hnix/src/Nix/Builtins.hs

1186 lines
50 KiB
Haskell
Raw Normal View History

{-# LANGUAGE CPP #-}
{-# LANGUAGE AllowAmbiguousTypes #-}
2018-04-07 21:02:50 +02:00
{-# LANGUAGE ConstraintKinds #-}
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE FunctionalDependencies #-}
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE MultiParamTypeClasses #-}
{-# LANGUAGE MultiWayIf #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE PackageImports #-}
{-# LANGUAGE PartialTypeSignatures #-}
{-# LANGUAGE QuasiQuotes #-}
2018-04-07 21:02:50 +02:00
{-# LANGUAGE ScopedTypeVariables #-}
2018-04-08 00:34:54 +02:00
{-# LANGUAGE TemplateHaskell #-}
{-# LANGUAGE TupleSections #-}
2018-04-07 21:02:50 +02:00
{-# LANGUAGE TypeApplications #-}
{-# LANGUAGE UndecidableInstances #-}
{-# LANGUAGE ViewPatterns #-}
{-# OPTIONS_GHC -Wno-missing-signatures #-}
{-# OPTIONS_GHC -fno-warn-name-shadowing #-}
2019-03-16 01:20:10 +01:00
module Nix.Builtins (MonadBuiltins, withNixContext, builtins) where
2018-04-07 21:02:50 +02:00
import Control.Monad
2018-04-07 23:33:15 +02:00
import Control.Monad.Catch
2018-04-07 21:02:50 +02:00
import Control.Monad.ListM (sortByM)
2018-05-03 06:32:00 +02:00
import Control.Monad.Reader (asks)
-- Using package imports here because there is a bug in cabal2nix that forces
-- us to put the hashing package in the unconditional dependency list.
-- See https://github.com/NixOS/cabal2nix/issues/348 for more info
#if MIN_VERSION_hashing(0, 1, 0)
import "hashing" Crypto.Hash
import qualified "hashing" Crypto.Hash.MD5 as MD5
import qualified "hashing" Crypto.Hash.SHA1 as SHA1
import qualified "hashing" Crypto.Hash.SHA256 as SHA256
import qualified "hashing" Crypto.Hash.SHA512 as SHA512
#else
import qualified "cryptohash-md5" Crypto.Hash.MD5 as MD5
import qualified "cryptohash-sha1" Crypto.Hash.SHA1 as SHA1
import qualified "cryptohash-sha256" Crypto.Hash.SHA256 as SHA256
import qualified "cryptohash-sha512" Crypto.Hash.SHA512 as SHA512
#endif
2018-04-07 21:02:50 +02:00
import qualified Data.Aeson as A
import Data.Align (alignWith)
import Data.Array
import Data.Bits
2018-04-07 21:02:50 +02:00
import Data.ByteString (ByteString)
2018-04-08 09:26:48 +02:00
import qualified Data.ByteString as B
import Data.ByteString.Base16 as Base16
2018-04-07 21:02:50 +02:00
import Data.Char (isDigit)
import Data.Fix
import Data.Foldable (foldrM)
2018-04-07 21:02:50 +02:00
import qualified Data.HashMap.Lazy as M
import Data.List
import Data.Maybe
import Data.Scientific
import Data.String.Interpolate.IsString
2018-04-07 21:02:50 +02:00
import Data.Text (Text)
import qualified Data.Text as Text
import Data.Text.Encoding
import qualified Data.Text.Lazy as LazyText
import qualified Data.Text.Lazy.Builder as Builder
import Data.These (fromThese)
2018-05-03 06:32:00 +02:00
import qualified Data.Time.Clock.POSIX as Time
import Data.Traversable (for, mapM)
import qualified Data.Vector as V
2018-04-07 21:02:50 +02:00
import Nix.Atoms
import Nix.Convert
import Nix.Effects
import qualified Nix.Eval as Eval
2018-04-09 09:52:10 +02:00
import Nix.Exec
2018-04-07 21:02:50 +02:00
import Nix.Expr.Types
import Nix.Expr.Types.Annotated
import Nix.Frames
2018-12-09 19:57:58 +01:00
import Nix.Json
import Nix.Normal
2018-05-03 06:32:00 +02:00
import Nix.Options
2018-09-10 04:09:11 +02:00
import Nix.Parser hiding (nixPath)
import Nix.Render
2018-04-07 21:02:50 +02:00
import Nix.Scope
import Nix.String
2018-04-07 21:02:50 +02:00
import Nix.Thunk
import Nix.Utils
import Nix.Value
import Nix.XML
import System.Nix.Internal.Hash (printHashBytes32)
2018-04-07 21:02:50 +02:00
import System.FilePath
import System.Posix.Files (isRegularFile, isDirectory, isSymbolicLink)
import Text.Read
2018-04-07 21:02:50 +02:00
import Text.Regex.TDFA
-- | This constraint synonym establishes all the ways in which we must be able
-- to relate different Haskell values to the thunk representation that will
-- be chosen by the caller.
type MonadBuiltins e t f m =
( MonadNix e t f m
, FromValue NixString m t
, FromValue Path m t
, FromValue [t] m t
, FromValue (M.HashMap Text t) m t
, ToValue NixString m t
, ToValue Int m t
, ToValue () m t
, FromNix [NixString] m t
, ToNix t m (NValue t f m)
)
-- | Evaluate a nix expression in the default context
withNixContext :: forall e t f m r. (MonadBuiltins e t f m, Has e Options)
=> Maybe FilePath -> m r -> m r
withNixContext mpath action = do
base <- builtins
opts :: Options <- asks (view hasLens)
let i = wrapValue @t @m @(NValue t f m) $ nvList $
map (wrapValue @t @m @(NValue t f m)
. nvStr . hackyMakeNixStringWithoutContext . Text.pack) (include opts)
pushScope (M.singleton "__includes" i) $
pushScopes base $ case mpath of
Nothing -> action
Just path -> do
traceM $ "Setting __cur_file = " ++ show path
let ref = wrapValue @t @m @(NValue t f m) $ nvPath path
pushScope (M.singleton "__cur_file" ref) action
builtins :: (MonadBuiltins e t f m, Scoped t m)
2019-03-15 21:27:05 +01:00
=> m (Scopes m t)
builtins = do
ref <- thunk $ flip nvSet M.empty <$> buildMap
lst <- ([("builtins", ref)] ++) <$> topLevelBuiltins
2018-04-07 21:02:50 +02:00
pushScope (M.fromList lst) currentScopes
where
2018-04-28 22:49:34 +02:00
buildMap = M.fromList . map mapping <$> builtinsList
topLevelBuiltins = map mapping <$> fullBuiltinsList
fullBuiltinsList = map go <$> builtinsList
where
go b@(Builtin TopLevel _) = b
go (Builtin Normal (name, builtin)) =
Builtin TopLevel ("__" <> name, builtin)
2018-04-07 21:02:50 +02:00
data BuiltinType = Normal | TopLevel
2019-03-15 21:27:05 +01:00
data Builtin t = Builtin
{ _kind :: BuiltinType
2019-03-15 21:27:05 +01:00
, mapping :: (Text, t)
2018-04-07 21:02:50 +02:00
}
valueThunk :: forall e t f m. MonadBuiltins e t f m => NValue t f m -> t
valueThunk = wrapValue @_ @m
2018-04-09 09:52:10 +02:00
force' :: forall e t f m. MonadBuiltins e t f m => t -> m (NValue t f m)
force' = force ?? pure
builtinsList :: forall e t f m. MonadBuiltins e t f m => m [Builtin t]
2018-04-07 21:02:50 +02:00
builtinsList = sequence [
do version <- toValue (principledMakeNixStringWithoutContext "2.0")
pure $ Builtin Normal ("nixVersion", version)
2018-04-07 21:02:50 +02:00
, do version <- toValue (5 :: Int)
pure $ Builtin Normal ("langVersion", version)
, add0 Normal "nixPath" nixPath
2018-04-07 21:02:50 +02:00
, add TopLevel "abort" throw_ -- for now
, add2 Normal "add" add_
, add2 Normal "addErrorContext" addErrorContext
2018-04-22 19:48:55 +02:00
, add2 Normal "all" all_
, add2 Normal "any" any_
, add Normal "attrNames" attrNames
, add Normal "attrValues" attrValues
2018-04-22 19:48:55 +02:00
, add TopLevel "baseNameOf" baseNameOf
, add2 Normal "bitAnd" bitAnd
, add2 Normal "bitOr" bitOr
, add2 Normal "bitXor" bitXor
2018-04-07 21:02:50 +02:00
, add2 Normal "catAttrs" catAttrs
2018-04-22 19:48:55 +02:00
, add2 Normal "compareVersions" compareVersions_
, add Normal "concatLists" concatLists
, add' Normal "concatStringsSep" (arity2 principledIntercalateNixString)
2018-04-22 19:48:55 +02:00
, add0 Normal "currentSystem" currentSystem
2018-05-03 06:32:00 +02:00
, add0 Normal "currentTime" currentTime_
2018-04-07 21:02:50 +02:00
, add2 Normal "deepSeq" deepSeq
, add0 TopLevel "derivation" $(do
-- This is compiled in so that we only parse and evaluate it once,
-- at compile-time.
let Success expr = parseNixText [i|
/* This is the implementation of the derivation builtin function.
It's actually a wrapper around the derivationStrict primop. */
drvAttrs @ { outputs ? [ "out" ], ... }:
let
strict = derivationStrict drvAttrs;
commonAttrs = drvAttrs // (builtins.listToAttrs outputsList) //
{ all = map (x: x.value) outputsList;
inherit drvAttrs;
};
outputToAttrListElement = outputName:
{ name = outputName;
value = commonAttrs // {
outPath = builtins.getAttr outputName strict;
drvPath = strict.drvPath;
type = "derivation";
inherit outputName;
};
};
outputsList = map outputToAttrListElement outputs;
in (builtins.head outputsList).value|]
2018-04-22 19:48:55 +02:00
[| cata Eval.eval expr |]
)
2018-04-22 19:48:55 +02:00
, add TopLevel "derivationStrict" derivationStrict_
, add TopLevel "dirOf" dirOf
2018-04-29 00:01:12 +02:00
, add2 Normal "div" div_
2018-04-07 21:02:50 +02:00
, add2 Normal "elem" elem_
, add2 Normal "elemAt" elemAt_
2018-04-29 01:37:01 +02:00
, add Normal "exec" exec_
, add0 Normal "false" (return $ nvConstant $ NBool False)
2018-04-22 19:48:55 +02:00
, add Normal "fetchTarball" fetchTarball
Implement builtins.fetchurl Squashed commit of the following: commit 15b10d898e0457237f07cda9e5e9525bac0e95f6 Author: John Wiegley <johnw@newartisans.com> Date: Wed May 2 16:33:30 2018 -0700 Update Exec.hs commit d4a886dccf2715f1c1790e01adc242c352e7f427 Merge: 02afb27 4caacc1 Author: John Wiegley <johnw@newartisans.com> Date: Wed May 2 16:08:55 2018 -0700 Merge branch 'master' into http commit 02afb275f2078c1184a901da3ea0262630fefeea Author: John Wiegley <johnw@newartisans.com> Date: Wed May 2 16:08:42 2018 -0700 Update Exec.hs commit 3733ce5888adb7161d2f57a16204ab953e9c4d7d Author: John Wiegley <johnw@newartisans.com> Date: Wed May 2 16:07:08 2018 -0700 Update Builtins.hs commit 4402be6d04ac34156d50f8ee29f9af300de75ce5 Merge: 2c60097 13f3ebd Author: John Wiegley <johnw@newartisans.com> Date: Wed May 2 15:06:28 2018 -0700 Merge branch 'master' into http commit 2c600976bb3a5d9267a0f313487dd0ab1a6ce1f7 Merge: 4a9d1a5 555ce95 Author: John Wiegley <johnw@newartisans.com> Date: Wed May 2 14:25:59 2018 -0700 Merge branch 'master' into http commit 4a9d1a56d463567ad155a58fc39f5b24e2636120 Merge: 4dd46f2 431006f Author: John Wiegley <johnw@newartisans.com> Date: Wed May 2 14:20:57 2018 -0700 Merge branch 'master' into http commit 4dd46f21e3f594c4f7ae5bee8412a7841e566d4c Author: Ian-Woo Kim <ianwookim@gmail.com> Date: Sun Apr 29 12:51:11 2018 -0700 generated hnix.cabal commit c87ae993fb7dbb1117f03133862799e1549c4259 Author: Ian-Woo Kim <ianwookim@gmail.com> Date: Sat Apr 28 16:55:11 2018 -0700 remove dep from hnix.cabal commit 0bb8856c8759ad3c67a0b4eb1d26b6195da82667 Author: Ian-Woo Kim <ianwookim@gmail.com> Date: Sat Apr 28 16:53:54 2018 -0700 remove http-client stuff from default.nix commit d298756a2ba4376f8cb3c54fb723a00697e0821d Author: Ian-Woo Kim <ianwookim@gmail.com> Date: Sat Apr 28 15:49:59 2018 -0700 getURL is implemented for both http and https commit a3d66c07a097aedb03f30bcc636fcb3d5717e1fe Merge: c4cb48a a73eae5 Author: Ian-Woo Kim <ianwookim@gmail.com> Date: Sat Apr 28 15:14:32 2018 -0700 Merge branch 'builtin2' into http commit c4cb48a8a756e82fb7d389ff501b2a85001dba38 Author: Ian-Woo Kim <ianwookim@gmail.com> Date: Sat Apr 28 15:13:25 2018 -0700 add getURL function commit ff23fc18ed16075353a58725d7d08f41605a6070 Author: Ian-Woo Kim <ianwookim@gmail.com> Date: Sat Apr 28 15:06:40 2018 -0700 use http-client-* instead of HTTP commit fcbe40f3bea84607a9d7849a9f3d2fc3a6cb9bef Author: Ian-Woo Kim <ianwookim@gmail.com> Date: Sat Apr 28 14:58:07 2018 -0700 add HTTP commit a73eae573a193dbb8361e03b584a6cd55e7c427a Author: Ian-Woo Kim <ianwookim@gmail.com> Date: Sat Apr 28 14:36:24 2018 -0700 implement fetchurl (as a copy of fetchTarball)
2018-05-03 06:38:13 +02:00
, add Normal "fetchurl" fetchurl
2018-04-07 21:02:50 +02:00
, add2 Normal "filter" filter_
2018-04-22 19:48:55 +02:00
, add3 Normal "foldl'" foldl'_
, add Normal "fromJSON" fromJSON
, add Normal "functionArgs" functionArgs
, add2 Normal "genList" genList
, add Normal "genericClosure" genericClosure
2018-04-22 19:48:55 +02:00
, add2 Normal "getAttr" getAttr
, add Normal "getEnv" getEnv_
, add2 Normal "hasAttr" hasAttr
2018-04-29 07:18:46 +02:00
, add Normal "hasContext" hasContext
2018-04-22 19:48:55 +02:00
, add' Normal "hashString" hashString
, add Normal "head" head_
, add TopLevel "import" import_
, add2 Normal "intersectAttrs" intersectAttrs
2018-04-07 21:02:50 +02:00
, add Normal "isAttrs" isAttrs
2018-04-22 19:48:55 +02:00
, add Normal "isBool" isBool
, add Normal "isFloat" isFloat
2018-04-07 21:02:50 +02:00
, add Normal "isFunction" isFunction
, add Normal "isInt" isInt
2018-04-22 19:48:55 +02:00
, add Normal "isList" isList
, add TopLevel "isNull" isNull
, add Normal "isString" isString
, add Normal "length" length_
2018-04-07 21:02:50 +02:00
, add2 Normal "lessThan" lessThan
, add Normal "listToAttrs" listToAttrs
2018-04-22 19:48:55 +02:00
, add2 TopLevel "map" map_
, add2 TopLevel "mapAttrs" mapAttrs_
2018-04-22 19:48:55 +02:00
, add2 Normal "match" match_
2018-04-29 20:43:06 +02:00
, add2 Normal "mul" mul_
, add0 Normal "null" (return $ nvConstant NNull)
2018-04-22 19:48:55 +02:00
, add Normal "parseDrvName" parseDrvName
2018-04-07 21:02:50 +02:00
, add2 Normal "partition" partition_
2018-04-22 19:48:55 +02:00
, add Normal "pathExists" pathExists_
, add TopLevel "placeholder" placeHolder
2018-04-22 19:48:55 +02:00
, add Normal "readDir" readDir_
, add Normal "readFile" readFile_
, add2 Normal "findFile" findFile_
2018-04-22 19:48:55 +02:00
, add2 TopLevel "removeAttrs" removeAttrs
, add3 Normal "replaceStrings" replaceStrings
, add2 TopLevel "scopedImport" scopedImport
, add2 Normal "seq" seq_
, add2 Normal "sort" sort_
, add2 Normal "split" split_
, add Normal "splitVersion" splitVersion_
, add0 Normal "storeDir" (return $ nvStr $ principledMakeNixStringWithoutContext "/nix/store")
, add' Normal "stringLength" (arity1 $ Text.length . principledStringIgnoreContext)
2018-04-22 19:48:55 +02:00
, add' Normal "sub" (arity2 ((-) @Integer))
, add' Normal "substring" substring
, add Normal "tail" tail_
, add0 Normal "true" (return $ nvConstant $ NBool True)
2018-04-22 19:48:55 +02:00
, add TopLevel "throw" throw_
, add Normal "toJSON" prim_toJSON
2018-05-11 02:32:47 +02:00
, add2 Normal "toFile" toFile
2018-04-22 19:48:55 +02:00
, add Normal "toPath" toPath
, add TopLevel "toString" toString
, add Normal "toXML" toXML_
2018-04-29 01:37:01 +02:00
, add2 TopLevel "trace" trace_
2018-04-22 19:48:55 +02:00
, add Normal "tryEval" tryEval
, add Normal "typeOf" typeOf
, add Normal "unsafeDiscardStringContext" unsafeDiscardStringContext
, add2 Normal "unsafeGetAttrPos" unsafeGetAttrPos
2018-04-29 03:29:25 +02:00
, add Normal "valueSize" getRecursiveSize
2018-04-07 21:02:50 +02:00
]
where
wrap t n f = Builtin t (n, f)
arity1 f = Prim . pure . f
arity2 f = ((Prim . pure) .) . f
mkThunk n = thunk . withFrame Info
(ErrorCall $ "While calling builtin " ++ Text.unpack n ++ "\n")
add0 t n v = wrap t n <$> mkThunk n v
add t n v = wrap t n <$> mkThunk n (builtin (Text.unpack n) v)
add2 t n v = wrap t n <$> mkThunk n (builtin2 (Text.unpack n) v)
add3 t n v = wrap t n <$> mkThunk n (builtin3 (Text.unpack n) v)
2018-04-07 21:02:50 +02:00
add' :: ToBuiltin t f m a => BuiltinType -> Text -> a -> m (Builtin t)
add' t n v = wrap t n <$> mkThunk n (toBuiltin (Text.unpack n) v)
2018-04-07 21:02:50 +02:00
-- Primops
foldNixPath :: forall e t f m r. MonadBuiltins e t f m
=> (FilePath -> Maybe String -> NixPathEntryType -> r -> m r) -> r -> m r
foldNixPath f z = do
2018-11-17 22:21:03 +01:00
mres <- lookupVar "__includes"
dirs <- case mres of
Nothing -> return []
Just v -> fromNix v
menv <- getEnvVar "NIX_PATH"
foldrM go z $ map (fromInclude . principledStringIgnoreContext) dirs ++ case menv of
Nothing -> []
Just str -> uriAwareSplit (Text.pack str)
where
fromInclude x
| "://" `Text.isInfixOf` x = (x, PathEntryURI)
| otherwise = (x, PathEntryPath)
go (x, ty) rest = case Text.splitOn "=" x of
[p] -> f (Text.unpack p) Nothing ty rest
[n, p] -> f (Text.unpack p) (Just (Text.unpack n)) ty rest
_ -> throwError $ ErrorCall $ "Unexpected entry in NIX_PATH: " ++ show x
nixPath :: MonadBuiltins e t f m => m (NValue t f m)
nixPath = fmap nvList $ flip foldNixPath [] $ \p mn ty rest ->
pure $ valueThunk
(flip nvSet mempty $ M.fromList
[ case ty of
PathEntryPath -> ("path", valueThunk $ nvPath p)
PathEntryURI -> ("uri", valueThunk $ nvStr (hackyMakeNixStringWithoutContext (Text.pack p)))
, ("prefix", valueThunk $
nvStr (hackyMakeNixStringWithoutContext $ Text.pack (fromMaybe "" mn))) ]) : rest
toString :: MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m)
toString str = str >>= coerceToString DontCopyToStore CoerceAny >>= toNix
2018-04-07 21:02:50 +02:00
hasAttr :: forall e t f m. MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m) -> m (NValue t f m)
hasAttr x y =
fromValue x >>= fromStringNoContext >>= \key ->
2019-03-15 21:27:05 +01:00
fromValue @(AttrSet t, AttrSet SourcePos) y >>= \(aset, _) ->
toNix $ M.member key aset
2018-04-07 21:02:50 +02:00
attrsetGet :: MonadBuiltins e t f m => Text -> AttrSet t -> m t
attrsetGet k s = case M.lookup k s of
Just v -> pure v
Nothing ->
throwError $ ErrorCall $ "Attribute '" ++ Text.unpack k ++ "' required"
hasContext :: MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m)
2018-04-29 07:18:46 +02:00
hasContext =
toNix . stringHasContext <=< fromValue
2018-04-29 07:18:46 +02:00
getAttr :: forall e t f m. MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m) -> m (NValue t f m)
2018-05-10 09:07:13 +02:00
getAttr x y =
fromValue x >>= fromStringNoContext >>= \key ->
2019-03-15 21:27:05 +01:00
fromValue @(AttrSet t, AttrSet SourcePos) y >>= \(aset, _) ->
2018-05-10 09:07:13 +02:00
attrsetGet key aset >>= force'
2018-04-07 21:02:50 +02:00
unsafeGetAttrPos :: forall e t f m. MonadBuiltins e t f m
2019-03-15 21:27:05 +01:00
=> m (NValue t f m) -> m (NValue t f m) -> m (NValue t f m)
unsafeGetAttrPos x y = x >>= \x' -> y >>= \y' -> case (x', y') of
(NVStr ns, NVSet _ apos) -> case M.lookup (hackyStringIgnoreContext ns) apos of
Nothing -> pure $ nvConstant NNull
Just delta -> toValue delta
(x, y) -> throwError $ ErrorCall $ "Invalid types for builtins.unsafeGetAttrPos: "
++ show (x, y)
2018-04-07 21:02:50 +02:00
-- This function is a bit special in that it doesn't care about the contents
-- of the list.
length_ :: forall e t f m. MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m)
2019-03-15 21:27:05 +01:00
length_ = toValue . (length :: [t] -> Int) <=< fromValue
2018-04-07 21:02:50 +02:00
add_ :: MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m) -> m (NValue t f m)
add_ x y = x >>= \x' -> y >>= \y' -> case (x', y') of
(NVConstant (NInt x), NVConstant (NInt y)) ->
toNix ( x + y :: Integer)
(NVConstant (NFloat x), NVConstant (NInt y)) -> toNix (x + fromInteger y)
(NVConstant (NInt x), NVConstant (NFloat y)) -> toNix (fromInteger x + y)
(NVConstant (NFloat x), NVConstant (NFloat y)) -> toNix (x + y)
(_, _) ->
throwError $ Addition x' y'
mul_ :: MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m) -> m (NValue t f m)
2018-04-29 20:43:06 +02:00
mul_ x y = x >>= \x' -> y >>= \y' -> case (x', y') of
(NVConstant (NInt x), NVConstant (NInt y)) ->
toNix ( x * y :: Integer)
(NVConstant (NFloat x), NVConstant (NInt y)) -> toNix (x * fromInteger y)
(NVConstant (NInt x), NVConstant (NFloat y)) -> toNix (fromInteger x * y)
(NVConstant (NFloat x), NVConstant (NFloat y)) -> toNix (x * y)
(_, _) ->
throwError $ Multiplication x' y'
div_ :: MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m) -> m (NValue t f m)
2018-04-29 00:01:12 +02:00
div_ x y = x >>= \x' -> y >>= \y' -> case (x', y') of
(NVConstant (NInt x), NVConstant (NInt y)) | y /= 0 ->
2018-04-29 00:01:12 +02:00
toNix (floor (fromInteger x / fromInteger y :: Double) :: Integer)
(NVConstant (NFloat x), NVConstant (NInt y)) | y /= 0 ->
toNix (x / fromInteger y)
2018-11-17 22:08:02 +01:00
(NVConstant (NInt x), NVConstant (NFloat y)) | y /= 0 ->
toNix (fromInteger x / y)
2018-11-17 22:08:02 +01:00
(NVConstant (NFloat x), NVConstant (NFloat y)) | y /= 0 ->
toNix (x / y)
2018-04-29 00:01:12 +02:00
(_, _) ->
throwError $ Division x' y'
2018-04-07 21:02:50 +02:00
anyM :: Monad m => (a -> m Bool) -> [a] -> m Bool
anyM _ [] = return False
anyM p (x:xs) = do
q <- p x
if q then return True
else anyM p xs
any_ :: MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m) -> m (NValue t f m)
any_ fun xs = fun >>= \f ->
toNix <=< anyM fromValue <=< mapM ((f `callFunc`) . force')
<=< fromValue $ xs
2018-04-07 21:02:50 +02:00
allM :: Monad m => (a -> m Bool) -> [a] -> m Bool
allM _ [] = return True
allM p (x:xs) = do
q <- p x
if q then allM p xs
else return False
all_ :: MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m) -> m (NValue t f m)
all_ fun xs = fun >>= \f ->
toNix <=< allM fromValue <=< mapM ((f `callFunc`) . force')
<=< fromValue $ xs
2018-04-07 21:02:50 +02:00
foldl'_ :: forall e t f m. MonadBuiltins e t f m
2019-03-15 21:27:05 +01:00
=> m (NValue t f m) -> m (NValue t f m) -> m (NValue t f m) -> m (NValue t f m)
foldl'_ fun z xs =
2019-03-15 21:27:05 +01:00
fun >>= \f -> fromValue @[t] xs >>= foldl' (go f) z
where
2018-04-25 10:10:15 +02:00
go f b a = f `callFunc` b >>= (`callFunc` force' a)
2018-04-07 21:02:50 +02:00
head_ :: MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m)
head_ = fromValue >=> \case
[] -> throwError $ ErrorCall "builtins.head: empty list"
h:_ -> force' h
2018-04-07 21:02:50 +02:00
tail_ :: MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m)
tail_ = fromValue >=> \case
[] -> throwError $ ErrorCall "builtins.tail: empty list"
_:t -> return $ nvList t
2018-04-07 21:02:50 +02:00
data VersionComponent
= VersionComponent_Pre -- ^ The string "pre"
| VersionComponent_String Text -- ^ A string other than "pre"
| VersionComponent_Number Integer -- ^ A number
deriving (Show, Read, Eq, Ord)
versionComponentToString :: VersionComponent -> Text
versionComponentToString = \case
VersionComponent_Pre -> "pre"
VersionComponent_String s -> s
VersionComponent_Number n -> Text.pack $ show n
-- | Based on https://github.com/NixOS/nix/blob/4ee4fda521137fed6af0446948b3877e0c5db803/src/libexpr/names.cc#L44
versionComponentSeparators :: String
versionComponentSeparators = ".-"
splitVersion :: Text -> [VersionComponent]
splitVersion s = case Text.uncons s of
Nothing -> []
Just (h, t)
| h `elem` versionComponentSeparators -> splitVersion t
| isDigit h ->
let (digits, rest) = Text.span isDigit s
2019-03-16 22:41:25 +01:00
in VersionComponent_Number
(fromMaybe (error $ "splitVersion: couldn't parse " <> show digits)
$ readMaybe
$ Text.unpack digits)
: splitVersion rest
2018-04-07 21:02:50 +02:00
| otherwise ->
let (chars, rest) = Text.span (\c -> not $ isDigit c || c `elem` versionComponentSeparators) s
thisComponent = case chars of
"pre" -> VersionComponent_Pre
x -> VersionComponent_String x
in thisComponent : splitVersion rest
splitVersion_ :: MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m)
splitVersion_ = fromValue >=> fromStringNoContext >=> \s ->
2019-03-16 22:41:25 +01:00
return $ nvList $ flip map (splitVersion s) $
valueThunk . nvStr
. principledMakeNixStringWithoutContext
. versionComponentToString
2018-04-07 21:02:50 +02:00
compareVersions :: Text -> Text -> Ordering
compareVersions s1 s2 =
mconcat $ alignWith f (splitVersion s1) (splitVersion s2)
where
z = VersionComponent_String ""
f = uncurry compare . fromThese z z
compareVersions_ :: MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m) -> m (NValue t f m)
compareVersions_ t1 t2 =
fromValue t1 >>= fromStringNoContext >>= \s1 ->
fromValue t2 >>= fromStringNoContext >>= \s2 ->
2018-11-18 00:39:45 +01:00
return $ nvConstant $ NInt $ case compareVersions s1 s2 of
LT -> -1
EQ -> 0
GT -> 1
2018-04-07 21:02:50 +02:00
splitDrvName :: Text -> (Text, Text)
splitDrvName s =
let sep = "-"
pieces = Text.splitOn sep s
isFirstVersionPiece p = case Text.uncons p of
Just (h, _) | isDigit h -> True
_ -> False
-- Like 'break', but always puts the first item into the first result
-- list
breakAfterFirstItem :: (a -> Bool) -> [a] -> ([a], [a])
breakAfterFirstItem f = \case
h : t ->
let (a, b) = break f t
in (h : a, b)
[] -> ([], [])
(namePieces, versionPieces) =
breakAfterFirstItem isFirstVersionPiece pieces
in (Text.intercalate sep namePieces, Text.intercalate sep versionPieces)
parseDrvName :: forall e t f m. MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m)
2018-11-21 07:21:53 +01:00
parseDrvName = fromValue >=> fromStringNoContext >=> \s -> do
let (name :: Text, version :: Text) = splitDrvName s
-- jww (2018-04-15): There should be an easier way to write this.
(toValue =<<) $ sequence $ M.fromList
[ ("name" :: Text,
thunk @t
(toValue $ principledMakeNixStringWithoutContext name))
, ("version",
thunk @t
(toValue $ principledMakeNixStringWithoutContext version)) ]
2018-04-07 21:02:50 +02:00
match_ :: forall e t f m. MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m) -> m (NValue t f m)
match_ pat str =
fromValue pat >>= fromStringNoContext >>= \p ->
fromValue str >>= \ns -> do
-- NOTE: Currently prim_match in nix/src/libexpr/primops.cc ignores the
-- context of its second argument. This is probably a bug but we're
-- going to preserve the behavior here until it is fixed upstream.
-- Relevant issue: https://github.com/NixOS/nix/issues/2547
let s = principledStringIgnoreContext ns
let re = makeRegex (encodeUtf8 p) :: Regex
let mkMatch t = if Text.null t
then toValue () -- Shorthand for Null
else toValue $ principledMakeNixStringWithoutContext t
case matchOnceText re (encodeUtf8 s) of
Just ("", sarr, "") -> do
let s = map fst (elems sarr)
nvList <$> traverse (mkMatch . decodeUtf8)
(if length s > 1 then tail s else s)
_ -> pure $ nvConstant NNull
split_ :: forall e t f m. MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m) -> m (NValue t f m)
split_ pat str =
fromValue pat >>= fromStringNoContext >>= \p ->
fromValue str >>= \ns -> do
-- NOTE: Currently prim_split in nix/src/libexpr/primops.cc ignores the
-- context of its second argument. This is probably a bug but we're
-- going to preserve the behavior here until it is fixed upstream.
-- Relevant issue: https://github.com/NixOS/nix/issues/2547
let s = principledStringIgnoreContext ns
let re = makeRegex (encodeUtf8 p) :: Regex
haystack = encodeUtf8 s
return $ nvList $
splitMatches 0 (map elems $ matchAllText re haystack) haystack
2018-04-08 09:26:48 +02:00
splitMatches
:: forall e t f m. MonadBuiltins e t f m
2018-04-08 09:26:48 +02:00
=> Int
-> [[(ByteString, (Int, Int))]]
-> ByteString
2019-03-15 21:27:05 +01:00
-> [t]
2018-04-08 09:26:48 +02:00
splitMatches _ [] haystack = [thunkStr haystack]
splitMatches _ ([]:_) _ = error "Error in splitMatches: this should never happen!"
splitMatches numDropped (((_,(start,len)):captures):mts) haystack =
2018-04-11 08:06:47 +02:00
thunkStr before : caps : splitMatches (numDropped + relStart + len) mts (B.drop len rest)
2018-04-08 09:26:48 +02:00
where
2018-04-11 08:06:47 +02:00
relStart = max 0 start - numDropped
(before,rest) = B.splitAt relStart haystack
caps = valueThunk $ nvList (map f captures)
f (a,(s,_)) = if s < 0 then valueThunk (nvConstant NNull) else thunkStr a
2018-04-08 09:26:48 +02:00
thunkStr s = valueThunk (nvStr (hackyMakeNixStringWithoutContext (decodeUtf8 s)))
2018-04-08 09:26:48 +02:00
substring :: MonadBuiltins e t f m => Int -> Int -> NixString -> Prim m NixString
2018-04-07 23:33:15 +02:00
substring start len str = Prim $
2018-04-07 21:02:50 +02:00
if start < 0 --NOTE: negative values of 'len' are OK
then throwError $ ErrorCall $ "builtins.substring: negative start position: " ++ show start
else pure $ principledModifyNixContents (Text.take len . Text.drop start) str
2018-04-07 21:02:50 +02:00
attrNames :: forall e t f m. MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m)
2019-03-15 21:27:05 +01:00
attrNames = fromValue @(AttrSet t)
>=> toNix . map principledMakeNixStringWithoutContext . sort . M.keys
2018-04-07 21:02:50 +02:00
attrValues :: forall e t f m. MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m)
2019-03-15 21:27:05 +01:00
attrValues = fromValue @(AttrSet t) >=>
toValue . fmap snd . sortOn (fst @Text @t) . M.toList
2018-04-07 21:02:50 +02:00
map_ :: forall e t f m. MonadBuiltins e t f m
2019-03-15 21:27:05 +01:00
=> m (NValue t f m) -> m (NValue t f m) -> m (NValue t f m)
map_ fun xs = fun >>= \f ->
toNix <=< traverse (thunk @t . withFrame Debug
(ErrorCall "While applying f in map:\n")
. (f `callFunc`) . force')
2019-03-15 21:27:05 +01:00
<=< fromValue @[t] $ xs
2018-04-07 21:02:50 +02:00
mapAttrs_ :: forall e t f m. MonadBuiltins e t f m
2019-03-15 21:27:05 +01:00
=> m (NValue t f m) -> m (NValue t f m) -> m (NValue t f m)
mapAttrs_ fun xs = fun >>= \f ->
2019-03-15 21:27:05 +01:00
fromValue @(AttrSet t) xs >>= \aset -> do
let pairs = M.toList aset
values <- for pairs $ \(key, value) ->
thunk @t $
withFrame Debug (ErrorCall "While applying f in mapAttrs:\n") $
2019-03-15 21:27:05 +01:00
callFunc ?? force' value
=<< callFunc f (pure (nvStr (principledMakeNixStringWithoutContext key)))
toNix . M.fromList . zip (map fst pairs) $ values
filter_ :: forall e t f m. MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m) -> m (NValue t f m)
filter_ fun xs = fun >>= \f ->
toNix <=< filterM (fromValue <=< callFunc f . force')
2019-03-15 21:27:05 +01:00
<=< fromValue @[t] $ xs
2018-04-07 21:02:50 +02:00
catAttrs :: forall e t f m. MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m) -> m (NValue t f m)
catAttrs attrName xs =
fromValue attrName >>= fromStringNoContext >>= \n ->
2019-03-15 21:27:05 +01:00
fromValue @[t] xs >>= \l ->
fmap (nvList . catMaybes) $
forM l $ fmap (M.lookup n) . fromValue
2018-04-07 21:02:50 +02:00
baseNameOf :: MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m)
2018-12-05 12:26:59 +01:00
baseNameOf x = do
2018-12-03 11:00:50 +01:00
ns <- coerceToString DontCopyToStore CoerceStringy =<< x
pure $ nvStr (principledModifyNixContents (Text.pack . takeFileName . Text.unpack) ns)
2018-04-07 21:02:50 +02:00
bitAnd :: forall e t f m. MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m) -> m (NValue t f m)
bitAnd x y =
fromValue @Integer x >>= \a ->
fromValue @Integer y >>= \b -> toNix (a .&. b)
bitOr :: forall e t f m. MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m) -> m (NValue t f m)
bitOr x y =
fromValue @Integer x >>= \a ->
fromValue @Integer y >>= \b -> toNix (a .|. b)
bitXor :: forall e t f m. MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m) -> m (NValue t f m)
bitXor x y =
fromValue @Integer x >>= \a ->
fromValue @Integer y >>= \b -> toNix (a `xor` b)
dirOf :: MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m)
dirOf x = x >>= \case
2018-11-17 22:23:41 +01:00
NVStr ns -> pure $ nvStr (principledModifyNixContents (Text.pack . takeDirectory . Text.unpack) ns)
NVPath path -> pure $ nvPath $ takeDirectory path
v -> throwError $ ErrorCall $ "dirOf: expected string or path, got " ++ show v
2018-04-07 21:02:50 +02:00
2018-04-28 22:49:22 +02:00
-- jww (2018-04-28): This should only be a string argument, and not coerced?
unsafeDiscardStringContext :: MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m)
unsafeDiscardStringContext mnv = do
ns <- fromValue mnv
toNix $ principledMakeNixStringWithoutContext $ principledStringIgnoreContext ns
2018-04-07 21:02:50 +02:00
2019-03-17 21:33:54 +01:00
seq_ :: MonadBuiltins e t f m
=> m (NValue t f m) -> m (NValue t f m) -> m (NValue t f m)
seq_ a b = a >> b
2018-04-07 21:02:50 +02:00
2019-03-17 21:33:54 +01:00
deepSeq :: MonadBuiltins e t f m
=> m (NValue t f m) -> m (NValue t f m) -> m (NValue t f m)
2018-04-07 21:02:50 +02:00
deepSeq a b = do
-- We evaluate 'a' only for its effects, so data cycles are ignored.
normalForm_ =<< a
2018-04-07 21:02:50 +02:00
-- Then we evaluate the other argument to deepseq, thus this function
-- should always produce a result (unlike applying 'deepseq' on infinitely
-- recursive data structures in Haskell).
b
2018-04-07 21:02:50 +02:00
elem_ :: forall e t f m. MonadBuiltins e t f m
2019-03-15 21:27:05 +01:00
=> m (NValue t f m) -> m (NValue t f m) -> m (NValue t f m)
elem_ x xs = x >>= \x' ->
toValue <=< anyM (valueEqM x' <=< force') <=< fromValue @[t] $ xs
elemAt :: [a] -> Int -> Maybe a
elemAt ls i = case drop i ls of
[] -> Nothing
a:_ -> Just a
2018-04-07 21:02:50 +02:00
2019-03-17 21:33:54 +01:00
elemAt_ :: MonadBuiltins e t f m
=> m (NValue t f m) -> m (NValue t f m) -> m (NValue t f m)
elemAt_ xs n = fromValue n >>= \n' -> fromValue xs >>= \xs' ->
case elemAt xs' n' of
Just a -> force' a
Nothing -> throwError $ ErrorCall $ "builtins.elem: Index " ++ show n'
++ " too large for list of length " ++ show (length xs')
2018-04-07 21:02:50 +02:00
2019-03-17 21:33:54 +01:00
genList :: forall e t f m. MonadBuiltins e t f m
=> m (NValue t f m) -> m (NValue t f m) -> m (NValue t f m)
genList generator = fromValue @Integer >=> \n ->
if n >= 0
then generator >>= \f ->
toNix =<< forM [0 .. n - 1]
(\i -> thunk @t $ f `callFunc` toNix i)
else throwError $ ErrorCall $ "builtins.genList: Expected a non-negative number, got "
++ show n
2018-04-07 21:02:50 +02:00
2019-03-17 21:33:54 +01:00
genericClosure :: forall e t f m. MonadBuiltins e t f m
=> m (NValue t f m) -> m (NValue t f m)
2019-03-15 21:27:05 +01:00
genericClosure = fromValue @(AttrSet t) >=> \s ->
case (M.lookup "startSet" s, M.lookup "operator" s) of
(Nothing, Nothing) ->
throwError $ ErrorCall $
"builtins.genericClosure: "
++ "Attributes 'startSet' and 'operator' required"
(Nothing, Just _) ->
throwError $ ErrorCall $
"builtins.genericClosure: Attribute 'startSet' required"
(Just _, Nothing) ->
throwError $ ErrorCall $
"builtins.genericClosure: Attribute 'operator' required"
(Just startSet, Just operator) ->
2019-03-15 21:27:05 +01:00
fromValue @[t] startSet >>= \ss ->
force operator $ \op ->
toValue @[t] =<< snd <$> go op ss []
where
go :: NValue t f m -> [t] -> [NValue t f m] -> m ([NValue t f m], [t])
go _ [] ks = pure (ks, [])
go op (t:ts) ks =
2019-03-15 21:27:05 +01:00
force t $ \v -> fromValue @(AttrSet t) t >>= \s ->
case M.lookup "key" s of
Nothing ->
throwError $ ErrorCall $
"builtins.genericClosure: Attribute 'key' required"
Just k -> force k $ \k' -> do
ys <- fromValue @[t] =<< (op `callFunc` pure v)
case ks of
[] -> checkComparable k' k'
j:_ -> checkComparable k' j
fmap (t:) <$> go op (ts ++ ys) (k':ks)
replaceStrings :: MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m) -> m (NValue t f m) -> m (NValue t f m)
replaceStrings tfrom tto ts =
fromNix tfrom >>= \(nsFrom :: [NixString]) ->
fromNix tto >>= \(nsTo :: [NixString]) ->
fromValue ts >>= \(ns :: NixString) -> do
let from = map principledStringIgnoreContext nsFrom
when (length nsFrom /= length nsTo) $
throwError $ ErrorCall $
"'from' and 'to' arguments to 'replaceStrings'"
++ " have different lengths"
let lookupPrefix s = do
(prefix, replacement) <-
find ((`Text.isPrefixOf` s) . fst) $ zip from nsTo
let rest = Text.drop (Text.length prefix) s
return (prefix, replacement, rest)
finish b = principledMakeNixString (LazyText.toStrict $ Builder.toLazyText b)
go orig result ctx = case lookupPrefix orig of
Nothing -> case Text.uncons orig of
Nothing -> finish result ctx
Just (h, t) -> go t (result <> Builder.singleton h) ctx
Just (prefix, replacementNS, rest) ->
let replacement = principledStringIgnoreContext replacementNS
newCtx = principledGetContext replacementNS
in case prefix of
"" -> case Text.uncons rest of
Nothing -> finish (result <> Builder.fromText replacement) (ctx <> newCtx)
Just (h, t) -> go t (mconcat
[ result
, Builder.fromText replacement
, Builder.singleton h
]) (ctx <> newCtx)
_ -> go rest (result <> Builder.fromText replacement) (ctx <> newCtx)
toNix $ go (principledStringIgnoreContext ns) mempty $ principledGetContext ns
2018-04-07 21:02:50 +02:00
removeAttrs :: forall e t f m. MonadBuiltins e t f m
2019-03-15 21:27:05 +01:00
=> m (NValue t f m) -> m (NValue t f m) -> m (NValue t f m)
removeAttrs set = fromNix >=> \(nsToRemove :: [NixString]) ->
2019-03-15 21:27:05 +01:00
fromValue @(AttrSet t,
AttrSet SourcePos) set >>= \(m, p) -> do
toRemove <- mapM fromStringNoContext nsToRemove
toNix (go m toRemove, go p toRemove)
2018-04-07 21:02:50 +02:00
where
go = foldl' (flip M.delete)
intersectAttrs :: forall e t f m. MonadBuiltins e t f m
2019-03-15 21:27:05 +01:00
=> m (NValue t f m) -> m (NValue t f m) -> m (NValue t f m)
intersectAttrs set1 set2 =
2019-03-15 21:27:05 +01:00
fromValue @(AttrSet t,
AttrSet SourcePos) set1 >>= \(s1, p1) ->
2019-03-15 21:27:05 +01:00
fromValue @(AttrSet t,
AttrSet SourcePos) set2 >>= \(s2, p2) ->
return $ nvSet (s2 `M.intersection` s1) (p2 `M.intersection` p1)
functionArgs :: forall e t f m. MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m)
functionArgs fun = fun >>= \case
2019-03-15 21:27:05 +01:00
NVClosure p _ -> toValue @(AttrSet t) $
valueThunk . nvConstant . NBool <$>
case p of
Param name -> M.singleton name False
ParamSet s _ _ -> isJust <$> M.fromList s
v -> throwError $ ErrorCall $
"builtins.functionArgs: expected function, got " ++ show v
2018-04-07 21:02:50 +02:00
toFile :: MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m) -> m (NValue t f m)
2018-05-11 02:32:47 +02:00
toFile name s = do
name' <- fromStringNoContext =<< fromValue name
2018-05-11 02:32:47 +02:00
s' <- fromValue s
2018-11-21 07:50:24 +01:00
-- TODO Using hacky here because we still need to turn the context into
-- runtime references of the resulting file.
-- See prim_toFile in nix/src/libexpr/primops.cc
mres <- toFile_ (Text.unpack name') (Text.unpack $ hackyStringIgnoreContext s')
let t = Text.pack $ unStorePath mres
2018-11-21 07:50:24 +01:00
sc = StringContext t DirectPath
toNix $ principledMakeNixStringWithSingletonContext t sc
2018-05-11 02:32:47 +02:00
toPath :: MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m)
toPath = fromValue @Path >=> toNix @Path
2018-04-07 21:02:50 +02:00
pathExists_ :: MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m)
pathExists_ path = path >>= \case
NVPath p -> toNix =<< pathExists p
NVStr ns -> toNix =<< pathExists (Text.unpack (hackyStringIgnoreContext ns))
v -> throwError $ ErrorCall $
"builtins.pathExists: expected path, got " ++ show v
2018-04-07 21:02:50 +02:00
hasKind :: forall a e t f m. (MonadBuiltins e t f m, FromValue a m (NValue t f m))
2019-03-15 21:27:05 +01:00
=> m (NValue t f m) -> m (NValue t f m)
hasKind = fromValueMay >=> toNix . \case Just (_ :: a) -> True; _ -> False
2018-04-07 21:02:50 +02:00
isAttrs :: forall e t f m. MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m)
2019-03-15 21:27:05 +01:00
isAttrs = hasKind @(AttrSet t)
2018-04-07 21:02:50 +02:00
isList :: forall e t f m. MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m)
2019-03-15 21:27:05 +01:00
isList = hasKind @[t]
2018-04-07 21:02:50 +02:00
isString :: forall e t f m. MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m)
isString = hasKind @NixString
2018-04-07 21:02:50 +02:00
isInt :: forall e t f m. MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m)
isInt = hasKind @Int
2018-04-07 21:02:50 +02:00
isFloat :: forall e t f m. MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m)
isFloat = hasKind @Float
2018-04-07 21:02:50 +02:00
isBool :: forall e t f m. MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m)
isBool = hasKind @Bool
isNull :: forall e t f m. MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m)
isNull = hasKind @()
2018-04-07 21:02:50 +02:00
isFunction :: MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m)
isFunction func = func >>= \case
NVClosure {} -> toValue True
_ -> toValue False
2018-04-07 21:02:50 +02:00
throw_ :: MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m)
throw_ mnv = do
ns <- coerceToString CopyToStore CoerceStringy =<< mnv
throwError . ErrorCall . Text.unpack $ principledStringIgnoreContext ns
2018-04-07 21:02:50 +02:00
import_ :: forall e t f m. MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m)
import_ = scopedImport (pure (nvSet M.empty M.empty))
2018-04-07 21:02:50 +02:00
scopedImport :: forall e t f m. MonadBuiltins e t f m
2019-03-15 21:27:05 +01:00
=> m (NValue t f m) -> m (NValue t f m) -> m (NValue t f m)
scopedImport asetArg pathArg =
2019-03-15 21:27:05 +01:00
fromValue @(AttrSet t) asetArg >>= \s ->
fromValue pathArg >>= \(Path p) -> do
path <- pathToDefaultNix @t @f @m p
2018-11-17 22:21:03 +01:00
mres <- lookupVar "__cur_file"
path' <- case mres of
Nothing -> do
traceM "No known current directory"
return path
2019-03-15 21:27:05 +01:00
Just p -> fromValue @_ @_ @t p >>= \(Path p') -> do
traceM $ "Current file being evaluated is: " ++ show p'
return $ takeDirectory p' </> path
2019-03-15 21:27:05 +01:00
clearScopes @t $
withNixContext (Just path') $
pushScope s $
importPath @t @f @m path'
2018-04-07 21:02:50 +02:00
getEnv_ :: MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m)
getEnv_ = fromValue >=> fromStringNoContext >=> \s -> do
mres <- getEnvVar (Text.unpack s)
toNix $ principledMakeNixStringWithoutContext $
case mres of
Nothing -> ""
Just v -> Text.pack v
2018-04-07 21:02:50 +02:00
sort_ :: MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m) -> m (NValue t f m)
sort_ comparator xs = comparator >>= \comp ->
fromValue xs >>= sortByM (cmp comp) >>= toValue
where
cmp f a b = do
isLessThan <- f `callFunc` force' a >>= (`callFunc` force' b)
fromValue isLessThan >>= \case
True -> pure LT
False -> do
isGreaterThan <- f `callFunc` force' b >>= (`callFunc` force' a)
fromValue isGreaterThan <&> \case
True -> GT
False -> EQ
lessThan :: MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m) -> m (NValue t f m)
lessThan ta tb = ta >>= \va -> tb >>= \vb -> do
let badType = throwError $ ErrorCall $
"builtins.lessThan: expected two numbers or two strings, "
++ "got " ++ show va ++ " and " ++ show vb
nvConstant . NBool <$> case (va, vb) of
2018-04-07 21:02:50 +02:00
(NVConstant ca, NVConstant cb) -> case (ca, cb) of
(NInt a, NInt b) -> pure $ a < b
(NFloat a, NInt b) -> pure $ a < fromInteger b
(NInt a, NFloat b) -> pure $ fromInteger a < b
(NFloat a, NFloat b) -> pure $ a < b
_ -> badType
(NVStr a, NVStr b) -> pure $ principledStringIgnoreContext a < principledStringIgnoreContext b
2018-04-07 21:02:50 +02:00
_ -> badType
concatLists :: forall e t f m. MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m)
2019-03-15 21:27:05 +01:00
concatLists = fromValue @[t]
>=> mapM (fromValue @[t] >=> pure)
>=> toValue . concat
listToAttrs :: forall e t f m. MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m)
2019-03-15 21:27:05 +01:00
listToAttrs = fromValue @[t] >=> \l ->
fmap (flip nvSet M.empty . M.fromList . reverse) $
2019-03-15 21:27:05 +01:00
forM l $ fromValue @(AttrSet t) >=> \s -> do
name <- fromStringNoContext =<< fromValue =<< attrsetGet "name" s
val <- attrsetGet "value" s
pure (name, val)
-- prim_hashString from nix/src/libexpr/primops.cc
-- fail if context in the algo arg
-- propagate context from the s arg
hashString :: MonadBuiltins e t f m => NixString -> NixString -> Prim m NixString
hashString nsAlgo ns = Prim $ do
algo <- fromStringNoContext nsAlgo
let f g = pure $ principledModifyNixContents g ns
case algo of
"md5" -> f $ \s ->
#if MIN_VERSION_hashing(0, 1, 0)
Text.pack $ show (hash (encodeUtf8 s) :: MD5.MD5)
#else
decodeUtf8 $ Base16.encode $ MD5.hash $ encodeUtf8 s
#endif
"sha1" -> f $ \s ->
#if MIN_VERSION_hashing(0, 1, 0)
Text.pack $ show (hash (encodeUtf8 s) :: SHA1.SHA1)
#else
decodeUtf8 $ Base16.encode $ SHA1.hash $ encodeUtf8 s
#endif
"sha256" -> f $ \s ->
#if MIN_VERSION_hashing(0, 1, 0)
Text.pack $ show (hash (encodeUtf8 s) :: SHA256.SHA256)
#else
decodeUtf8 $ Base16.encode $ SHA256.hash $ encodeUtf8 s
#endif
"sha512" -> f $ \s ->
#if MIN_VERSION_hashing(0, 1, 0)
Text.pack $ show (hash (encodeUtf8 s) :: SHA512.SHA512)
#else
decodeUtf8 $ Base16.encode $ SHA512.hash $ encodeUtf8 s
#endif
_ -> throwError $ ErrorCall $ "builtins.hashString: "
2018-04-07 21:02:50 +02:00
++ "expected \"md5\", \"sha1\", \"sha256\", or \"sha512\", got " ++ show algo
placeHolder :: MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m)
2018-11-21 07:54:15 +01:00
placeHolder = fromValue >=> fromStringNoContext >=> \t -> do
h <- runPrim (hashString (principledMakeNixStringWithoutContext "sha256")
(principledMakeNixStringWithoutContext ("nix-output:" <> t)))
toNix $ principledMakeNixStringWithoutContext $ Text.cons '/' $ printHashBytes32 $
-- The result coming out of hashString is base16 encoded
fst $ Base16.decode $ encodeUtf8 $ principledStringIgnoreContext h
2018-04-29 00:35:01 +02:00
absolutePathFromValue :: MonadBuiltins e t f m => NValue t f m -> m FilePath
2018-04-07 21:02:50 +02:00
absolutePathFromValue = \case
NVStr ns -> do
let path = Text.unpack $ hackyStringIgnoreContext ns
2018-04-07 21:02:50 +02:00
unless (isAbsolute path) $
throwError $ ErrorCall $ "string " ++ show path ++ " doesn't represent an absolute path"
2018-04-07 21:02:50 +02:00
pure path
NVPath path -> pure path
v -> throwError $ ErrorCall $ "expected a path, got " ++ show v
2018-04-07 21:02:50 +02:00
readFile_ :: MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m)
readFile_ path =
path >>= absolutePathFromValue >>= Nix.Render.readFile >>= toNix
2018-04-07 21:02:50 +02:00
findFile_ :: forall e t f m. MonadBuiltins e t f m
2019-03-15 21:27:05 +01:00
=> m (NValue t f m) -> m (NValue t f m) -> m (NValue t f m)
findFile_ aset filePath =
aset >>= \aset' ->
filePath >>= \filePath' ->
case (aset', filePath') of
2018-07-28 19:23:23 +02:00
(NVList x, NVStr ns) -> do
mres <- findPath @t @f @m x (Text.unpack (hackyStringIgnoreContext ns))
pure $ nvPath mres
(NVList _, y) -> throwError $ ErrorCall $ "expected a string, got " ++ show y
(x, NVStr _) -> throwError $ ErrorCall $ "expected a list, got " ++ show x
(x, y) -> throwError $ ErrorCall $ "Invalid types for builtins.findFile: " ++ show (x, y)
2018-04-07 21:02:50 +02:00
data FileType
= FileTypeRegular
| FileTypeDirectory
| FileTypeSymlink
| FileTypeUnknown
2018-04-07 21:02:50 +02:00
deriving (Show, Read, Eq, Ord)
2019-03-16 01:20:10 +01:00
instance Convertible e t f m => ToNix FileType m (NValue t f m) where
toNix = toNix . principledMakeNixStringWithoutContext . \case
FileTypeRegular -> "regular" :: Text
FileTypeDirectory -> "directory"
FileTypeSymlink -> "symlink"
FileTypeUnknown -> "unknown"
2018-04-07 21:02:50 +02:00
readDir_ :: forall e t f m. MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m)
2018-04-07 21:02:50 +02:00
readDir_ pathThunk = do
path <- absolutePathFromValue =<< pathThunk
2018-04-07 21:02:50 +02:00
items <- listDirectory path
itemsWithTypes <- forM items $ \item -> do
s <- getSymbolicLinkStatus $ path </> item
2018-04-07 21:02:50 +02:00
let t = if
| isRegularFile s -> FileTypeRegular
| isDirectory s -> FileTypeDirectory
| isSymbolicLink s -> FileTypeSymlink
| otherwise -> FileTypeUnknown
2018-04-07 21:02:50 +02:00
pure (Text.pack item, t)
2018-04-16 07:01:01 +02:00
toNix (M.fromList itemsWithTypes)
2018-04-07 21:02:50 +02:00
fromJSON :: forall e t f m. MonadBuiltins e t f m
=> m (NValue t f m) -> m (NValue t f m)
fromJSON = fromValue >=> fromStringNoContext >=> \encoded ->
2018-04-07 21:02:50 +02:00
case A.eitherDecodeStrict' @A.Value $ encodeUtf8 encoded of
Left jsonError ->
throwError $ ErrorCall $ "builtins.fromJSON: " ++ jsonError
Right v -> jsonToNValue v
where
jsonToNValue = \case
A.Object m -> flip nvSet M.empty
<$> traverse (thunk . jsonToNValue) m
A.Array l -> nvList <$>
traverse (\x -> thunk @t @m @(NValue t f m)
2019-03-16 01:20:10 +01:00
. whileForcingThunk @t @f (CoercionFromJson @t @f @m x)
. jsonToNValue $ x)
(V.toList l)
A.String s -> pure $ nvStr $ hackyMakeNixStringWithoutContext s
A.Number n -> pure $ nvConstant $ case floatingOrInteger n of
Left r -> NFloat r
Right i -> NInt i
A.Bool b -> pure $ nvConstant $ NBool b
A.Null -> pure $ nvConstant NNull
prim_toJSON
:: MonadBuiltins e t f m
2019-03-15 21:27:05 +01:00
=> m (NValue t f m)
-> m (NValue t f m)
prim_toJSON x = x >>= nvalueToJSONNixString >>= pure . nvStr
2018-04-07 21:02:50 +02:00
toXML_ :: MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m)
toXML_ v = v >>= normalForm >>= pure . nvStr . toXML
2018-04-07 21:02:50 +02:00
typeOf :: MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m)
typeOf v = v >>= toNix . principledMakeNixStringWithoutContext . \case
2018-04-07 21:02:50 +02:00
NVConstant a -> case a of
2018-04-16 07:01:01 +02:00
NInt _ -> "int"
2018-04-07 21:02:50 +02:00
NFloat _ -> "float"
2018-04-16 07:01:01 +02:00
NBool _ -> "bool"
NNull -> "null"
2018-07-28 19:23:23 +02:00
NVStr _ -> "string"
2018-04-16 07:01:01 +02:00
NVList _ -> "list"
NVSet _ _ -> "set"
NVClosure {} -> "lambda"
NVPath _ -> "path"
2018-04-07 21:02:50 +02:00
NVBuiltin _ _ -> "lambda"
_ -> error "Pattern synonyms obscure complete patterns"
2018-04-07 21:02:50 +02:00
tryEval :: forall e t f m. MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m)
tryEval e = catch (onSuccess <$> e) (pure . onError)
2018-04-07 23:33:15 +02:00
where
onSuccess v = flip nvSet M.empty $ M.fromList
[ ("success", valueThunk (nvConstant (NBool True)))
2018-04-07 23:33:15 +02:00
, ("value", valueThunk v)
]
2019-03-15 21:27:05 +01:00
onError :: SomeException -> NValue t f m
onError _ = flip nvSet M.empty $ M.fromList
[ ("success", valueThunk (nvConstant (NBool False)))
, ("value", valueThunk (nvConstant (NBool False)))
2018-04-07 23:33:15 +02:00
]
trace_ :: forall e t f m. MonadBuiltins e t f m
=> m (NValue t f m) -> m (NValue t f m) -> m (NValue t f m)
2018-04-28 23:28:16 +02:00
trace_ msg action = do
traceEffect @t @f @m
. Text.unpack
. principledStringIgnoreContext
=<< fromValue msg
2018-04-28 23:28:16 +02:00
action
-- TODO: remember error context
addErrorContext :: forall e t f m. MonadBuiltins e t f m
=> m (NValue t f m) -> m (NValue t f m) -> m (NValue t f m)
addErrorContext _ action = action
exec_ :: forall e t f m. MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m)
2018-04-29 01:37:01 +02:00
exec_ xs = do
2019-03-15 21:27:05 +01:00
ls <- fromValue @[t] xs
xs <- traverse (coerceToString DontCopyToStore CoerceStringy <=< force') ls
-- TODO Still need to do something with the context here
-- See prim_exec in nix/src/libexpr/primops.cc
-- Requires the implementation of EvalState::realiseContext
2018-11-21 07:55:56 +01:00
exec (map (Text.unpack . hackyStringIgnoreContext) xs)
2018-04-29 01:37:01 +02:00
fetchurl :: forall e t f m. MonadBuiltins e t f m => m (NValue t f m) -> m (NValue t f m)
Implement builtins.fetchurl Squashed commit of the following: commit 15b10d898e0457237f07cda9e5e9525bac0e95f6 Author: John Wiegley <johnw@newartisans.com> Date: Wed May 2 16:33:30 2018 -0700 Update Exec.hs commit d4a886dccf2715f1c1790e01adc242c352e7f427 Merge: 02afb27 4caacc1 Author: John Wiegley <johnw@newartisans.com> Date: Wed May 2 16:08:55 2018 -0700 Merge branch 'master' into http commit 02afb275f2078c1184a901da3ea0262630fefeea Author: John Wiegley <johnw@newartisans.com> Date: Wed May 2 16:08:42 2018 -0700 Update Exec.hs commit 3733ce5888adb7161d2f57a16204ab953e9c4d7d Author: John Wiegley <johnw@newartisans.com> Date: Wed May 2 16:07:08 2018 -0700 Update Builtins.hs commit 4402be6d04ac34156d50f8ee29f9af300de75ce5 Merge: 2c60097 13f3ebd Author: John Wiegley <johnw@newartisans.com> Date: Wed May 2 15:06:28 2018 -0700 Merge branch 'master' into http commit 2c600976bb3a5d9267a0f313487dd0ab1a6ce1f7 Merge: 4a9d1a5 555ce95 Author: John Wiegley <johnw@newartisans.com> Date: Wed May 2 14:25:59 2018 -0700 Merge branch 'master' into http commit 4a9d1a56d463567ad155a58fc39f5b24e2636120 Merge: 4dd46f2 431006f Author: John Wiegley <johnw@newartisans.com> Date: Wed May 2 14:20:57 2018 -0700 Merge branch 'master' into http commit 4dd46f21e3f594c4f7ae5bee8412a7841e566d4c Author: Ian-Woo Kim <ianwookim@gmail.com> Date: Sun Apr 29 12:51:11 2018 -0700 generated hnix.cabal commit c87ae993fb7dbb1117f03133862799e1549c4259 Author: Ian-Woo Kim <ianwookim@gmail.com> Date: Sat Apr 28 16:55:11 2018 -0700 remove dep from hnix.cabal commit 0bb8856c8759ad3c67a0b4eb1d26b6195da82667 Author: Ian-Woo Kim <ianwookim@gmail.com> Date: Sat Apr 28 16:53:54 2018 -0700 remove http-client stuff from default.nix commit d298756a2ba4376f8cb3c54fb723a00697e0821d Author: Ian-Woo Kim <ianwookim@gmail.com> Date: Sat Apr 28 15:49:59 2018 -0700 getURL is implemented for both http and https commit a3d66c07a097aedb03f30bcc636fcb3d5717e1fe Merge: c4cb48a a73eae5 Author: Ian-Woo Kim <ianwookim@gmail.com> Date: Sat Apr 28 15:14:32 2018 -0700 Merge branch 'builtin2' into http commit c4cb48a8a756e82fb7d389ff501b2a85001dba38 Author: Ian-Woo Kim <ianwookim@gmail.com> Date: Sat Apr 28 15:13:25 2018 -0700 add getURL function commit ff23fc18ed16075353a58725d7d08f41605a6070 Author: Ian-Woo Kim <ianwookim@gmail.com> Date: Sat Apr 28 15:06:40 2018 -0700 use http-client-* instead of HTTP commit fcbe40f3bea84607a9d7849a9f3d2fc3a6cb9bef Author: Ian-Woo Kim <ianwookim@gmail.com> Date: Sat Apr 28 14:58:07 2018 -0700 add HTTP commit a73eae573a193dbb8361e03b584a6cd55e7c427a Author: Ian-Woo Kim <ianwookim@gmail.com> Date: Sat Apr 28 14:36:24 2018 -0700 implement fetchurl (as a copy of fetchTarball)
2018-05-03 06:38:13 +02:00
fetchurl v = v >>= \case
NVSet s _ -> attrsetGet "url" s >>= force ?? (go (M.lookup "sha256" s))
v@NVStr {} -> go Nothing v
v -> throwError $ ErrorCall $ "builtins.fetchurl: Expected URI or set, got "
++ show v
where
2019-03-15 21:27:05 +01:00
go :: Maybe t -> NValue t f m -> m (NValue t f m)
2018-05-03 06:39:23 +02:00
go _msha = \case
NVStr ns -> noContextAttrs ns >>= getURL >>= \case -- msha
2018-11-16 23:06:34 +01:00
Left e -> throwError e
Right p -> toValue p
2018-05-03 06:39:23 +02:00
v -> throwError $ ErrorCall $
"builtins.fetchurl: Expected URI or string, got " ++ show v
noContextAttrs ns = case principledGetStringNoContext ns of
Nothing -> throwError $ ErrorCall $
"builtins.fetchurl: unsupported arguments to url"
Just t -> pure t
Implement builtins.fetchurl Squashed commit of the following: commit 15b10d898e0457237f07cda9e5e9525bac0e95f6 Author: John Wiegley <johnw@newartisans.com> Date: Wed May 2 16:33:30 2018 -0700 Update Exec.hs commit d4a886dccf2715f1c1790e01adc242c352e7f427 Merge: 02afb27 4caacc1 Author: John Wiegley <johnw@newartisans.com> Date: Wed May 2 16:08:55 2018 -0700 Merge branch 'master' into http commit 02afb275f2078c1184a901da3ea0262630fefeea Author: John Wiegley <johnw@newartisans.com> Date: Wed May 2 16:08:42 2018 -0700 Update Exec.hs commit 3733ce5888adb7161d2f57a16204ab953e9c4d7d Author: John Wiegley <johnw@newartisans.com> Date: Wed May 2 16:07:08 2018 -0700 Update Builtins.hs commit 4402be6d04ac34156d50f8ee29f9af300de75ce5 Merge: 2c60097 13f3ebd Author: John Wiegley <johnw@newartisans.com> Date: Wed May 2 15:06:28 2018 -0700 Merge branch 'master' into http commit 2c600976bb3a5d9267a0f313487dd0ab1a6ce1f7 Merge: 4a9d1a5 555ce95 Author: John Wiegley <johnw@newartisans.com> Date: Wed May 2 14:25:59 2018 -0700 Merge branch 'master' into http commit 4a9d1a56d463567ad155a58fc39f5b24e2636120 Merge: 4dd46f2 431006f Author: John Wiegley <johnw@newartisans.com> Date: Wed May 2 14:20:57 2018 -0700 Merge branch 'master' into http commit 4dd46f21e3f594c4f7ae5bee8412a7841e566d4c Author: Ian-Woo Kim <ianwookim@gmail.com> Date: Sun Apr 29 12:51:11 2018 -0700 generated hnix.cabal commit c87ae993fb7dbb1117f03133862799e1549c4259 Author: Ian-Woo Kim <ianwookim@gmail.com> Date: Sat Apr 28 16:55:11 2018 -0700 remove dep from hnix.cabal commit 0bb8856c8759ad3c67a0b4eb1d26b6195da82667 Author: Ian-Woo Kim <ianwookim@gmail.com> Date: Sat Apr 28 16:53:54 2018 -0700 remove http-client stuff from default.nix commit d298756a2ba4376f8cb3c54fb723a00697e0821d Author: Ian-Woo Kim <ianwookim@gmail.com> Date: Sat Apr 28 15:49:59 2018 -0700 getURL is implemented for both http and https commit a3d66c07a097aedb03f30bcc636fcb3d5717e1fe Merge: c4cb48a a73eae5 Author: Ian-Woo Kim <ianwookim@gmail.com> Date: Sat Apr 28 15:14:32 2018 -0700 Merge branch 'builtin2' into http commit c4cb48a8a756e82fb7d389ff501b2a85001dba38 Author: Ian-Woo Kim <ianwookim@gmail.com> Date: Sat Apr 28 15:13:25 2018 -0700 add getURL function commit ff23fc18ed16075353a58725d7d08f41605a6070 Author: Ian-Woo Kim <ianwookim@gmail.com> Date: Sat Apr 28 15:06:40 2018 -0700 use http-client-* instead of HTTP commit fcbe40f3bea84607a9d7849a9f3d2fc3a6cb9bef Author: Ian-Woo Kim <ianwookim@gmail.com> Date: Sat Apr 28 14:58:07 2018 -0700 add HTTP commit a73eae573a193dbb8361e03b584a6cd55e7c427a Author: Ian-Woo Kim <ianwookim@gmail.com> Date: Sat Apr 28 14:36:24 2018 -0700 implement fetchurl (as a copy of fetchTarball)
2018-05-03 06:38:13 +02:00
partition_ :: forall e t f m. MonadBuiltins e t f m
2019-03-15 21:27:05 +01:00
=> m (NValue t f m) -> m (NValue t f m) -> m (NValue t f m)
partition_ fun xs = fun >>= \f ->
2019-03-15 21:27:05 +01:00
fromValue @[t] xs >>= \l -> do
let match t = f `callFunc` force' t >>= fmap (, t) . fromValue
selection <- traverse match l
let (right, wrong) = partition fst selection
let makeSide = valueThunk . nvList . map snd
2019-03-15 21:27:05 +01:00
toValue @(AttrSet t) $
M.fromList [("right", makeSide right), ("wrong", makeSide wrong)]
2018-04-07 21:02:50 +02:00
currentSystem :: MonadBuiltins e t f m => m (NValue t f m)
2018-04-07 21:02:50 +02:00
currentSystem = do
os <- getCurrentSystemOS
arch <- getCurrentSystemArch
return $ nvStr $ principledMakeNixStringWithoutContext (arch <> "-" <> os)
2018-04-07 21:02:50 +02:00
currentTime_ :: MonadBuiltins e t f m => m (NValue t f m)
2018-05-03 06:32:00 +02:00
currentTime_ = do
opts :: Options <- asks (view hasLens)
toNix @Integer $ round $ Time.utcTimeToPOSIXSeconds (currentTime opts)
derivationStrict_ :: MonadBuiltins e t f m
=> m (NValue t f m) -> m (NValue t f m)
derivationStrict_ = (>>= derivationStrict)
2018-04-08 00:34:54 +02:00
2018-04-07 21:02:50 +02:00
newtype Prim m a = Prim { runPrim :: m a }
-- | Types that support conversion to nix in a particular monad
class ToBuiltin t f m a | a -> m where
2019-03-15 21:27:05 +01:00
toBuiltin :: String -> a -> m (NValue t f m)
2018-04-07 21:02:50 +02:00
instance (MonadBuiltins e t f m, ToNix a m (NValue t f m))
=> ToBuiltin t f m (Prim m a) where
toBuiltin _ p = toNix =<< runPrim p
2018-04-07 21:02:50 +02:00
instance ( MonadBuiltins e t f m
, FromNix a m (NValue t f m)
, ToBuiltin t f m b)
=> ToBuiltin t f m (a -> b) where
2019-03-16 01:20:10 +01:00
toBuiltin name f = return $ nvBuiltin name
(fromNix >=> fmap wrapValue . toBuiltin name . f)