1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-20 23:28:26 -04:00
nix/src/libexpr/primops/flake.hh

112 lines
3 KiB
C++
Raw Normal View History

2019-02-12 12:23:11 -05:00
#include "types.hh"
#include "flakeref.hh"
#include <variant>
namespace nix {
2019-04-30 05:03:31 -04:00
static const size_t FLAG_REGISTRY = 0;
static const size_t USER_REGISTRY = 1;
static const size_t GLOBAL_REGISTRY = 2;
struct Value;
class EvalState;
2019-02-12 12:23:11 -05:00
struct FlakeRegistry
{
2019-04-08 13:03:00 -04:00
std::map<FlakeRef, FlakeRef> entries;
2019-02-12 12:23:11 -05:00
};
2019-03-29 11:18:25 -04:00
struct LockFile
{
2019-05-01 11:01:03 -04:00
struct NonFlakeEntry
{
FlakeRef ref;
Hash contentHash;
NonFlakeEntry(const FlakeRef & flakeRef, const Hash & hash) : ref(flakeRef), contentHash(hash) {};
};
2019-03-29 11:18:25 -04:00
struct FlakeEntry
{
FlakeRef ref;
2019-05-01 11:01:03 -04:00
Hash contentHash;
2019-04-16 10:18:47 -04:00
std::map<FlakeRef, FlakeEntry> flakeEntries;
2019-05-01 11:01:03 -04:00
std::map<FlakeAlias, NonFlakeEntry> nonFlakeEntries;
FlakeEntry(const FlakeRef & flakeRef, const Hash & hash) : ref(flakeRef), contentHash(hash) {};
2019-03-29 11:18:25 -04:00
};
2019-04-16 10:18:47 -04:00
std::map<FlakeRef, FlakeEntry> flakeEntries;
2019-05-01 11:01:03 -04:00
std::map<FlakeId, NonFlakeEntry> nonFlakeEntries;
2019-03-29 11:18:25 -04:00
};
2019-03-21 04:30:16 -04:00
typedef std::vector<std::shared_ptr<FlakeRegistry>> Registries;
2019-03-10 01:05:05 -05:00
Path getUserRegistryPath();
enum RegistryAccess { DisallowRegistry, AllowRegistry, AllowRegistryAtTop };
2019-05-01 05:38:48 -04:00
void makeFlakeValue(EvalState & state, const FlakeRef & flakeRef, RegistryAccess registryAccess, Value & v, bool recreateLockFile);
2019-03-21 04:30:16 -04:00
std::shared_ptr<FlakeRegistry> readRegistry(const Path &);
2019-03-10 01:05:05 -05:00
2019-04-16 08:27:54 -04:00
void writeRegistry(const FlakeRegistry &, const Path &);
struct SourceInfo
{
FlakeRef resolvedRef;
Path storePath;
std::optional<uint64_t> revCount;
// date
SourceInfo(const FlakeRef & resolvRef) : resolvedRef(resolvRef) {};
};
2019-02-21 00:53:01 -05:00
struct Flake
{
FlakeId id;
FlakeRef originalRef;
FlakeRef resolvedRef;
2019-02-21 00:53:01 -05:00
std::string description;
std::optional<uint64_t> revCount;
Path storePath;
2019-05-01 11:01:03 -04:00
Hash hash; // content hash
2019-02-21 00:53:01 -05:00
std::vector<FlakeRef> requires;
2019-03-21 04:30:16 -04:00
std::map<FlakeAlias, FlakeRef> nonFlakeRequires;
2019-02-21 00:53:01 -05:00
Value * vProvides; // FIXME: gc
// date
// content hash
Flake(const FlakeRef & origRef, const SourceInfo & sourceInfo) : originalRef(origRef),
resolvedRef(sourceInfo.resolvedRef), revCount(sourceInfo.revCount), storePath(sourceInfo.storePath) {};
};
struct NonFlake
{
2019-03-21 04:30:16 -04:00
FlakeAlias alias;
FlakeRef originalRef;
FlakeRef resolvedRef;
std::optional<uint64_t> revCount;
Path storePath;
2019-05-01 11:01:03 -04:00
Hash hash; // content hash
// date
NonFlake(const FlakeRef & origRef, const SourceInfo & sourceInfo) : originalRef(origRef),
resolvedRef(sourceInfo.resolvedRef), revCount(sourceInfo.revCount), storePath(sourceInfo.storePath) {};
2019-02-21 00:53:01 -05:00
};
2019-04-16 02:21:52 -04:00
std::shared_ptr<FlakeRegistry> getGlobalRegistry();
2019-03-29 11:18:25 -04:00
Flake getFlake(EvalState &, const FlakeRef &, bool impureIsAllowed);
2019-04-19 08:23:35 -04:00
struct ResolvedFlake
{
2019-03-29 11:18:25 -04:00
Flake flake;
2019-04-19 08:23:35 -04:00
std::vector<ResolvedFlake> flakeDeps; // The flake dependencies
2019-03-29 11:18:25 -04:00
std::vector<NonFlake> nonFlakeDeps;
2019-04-19 08:23:35 -04:00
ResolvedFlake(const Flake & flake) : flake(flake) {}
};
2019-05-01 05:38:48 -04:00
ResolvedFlake resolveFlake(EvalState &, const FlakeRef &, RegistryAccess, bool recreateLockFile);
2019-04-16 08:27:54 -04:00
2019-05-01 05:38:48 -04:00
void updateLockFile(EvalState &, const FlakeUri &, bool recreateLockFile);
2019-03-21 04:30:16 -04:00
2019-03-21 04:30:16 -04:00
void gitCloneFlake (std::string flakeUri, EvalState &, Registries, Path);
2019-02-12 12:23:11 -05:00
}