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

148 lines
4 KiB
C++
Raw Normal View History

2019-02-12 12:23:11 -05:00
#include "types.hh"
#include "flakeref.hh"
#include <variant>
namespace nix {
struct Value;
class EvalState;
namespace flake {
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;
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 narHash;
NonFlakeEntry(const FlakeRef & flakeRef, const Hash & hash) : ref(flakeRef), narHash(hash) {};
bool operator ==(const NonFlakeEntry & other) const
{
return ref == other.ref && narHash == other.narHash;
}
2019-05-01 11:01:03 -04:00
};
2019-03-29 11:18:25 -04:00
struct FlakeEntry
{
FlakeRef ref;
Hash narHash;
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), narHash(hash) {};
bool operator ==(const FlakeEntry & other) const
{
return
ref == other.ref
&& narHash == other.narHash
&& flakeEntries == other.flakeEntries
&& nonFlakeEntries == other.nonFlakeEntries;
}
2019-03-29 11:18:25 -04:00
};
2019-04-16 10:18:47 -04:00
std::map<FlakeRef, FlakeEntry> flakeEntries;
std::map<FlakeAlias, NonFlakeEntry> nonFlakeEntries;
bool operator ==(const LockFile & other) const
{
return
flakeEntries == other.flakeEntries
&& nonFlakeEntries == other.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 HandleLockFile : unsigned int
{ AllPure // Everything is handled 100% purely
, TopRefUsesRegistries // The top FlakeRef uses the registries, apart from that, everything happens 100% purely
, UpdateLockFile // Update the existing lockfile and write it to file
, UseUpdatedLockFile // `UpdateLockFile` without writing to file
, RecreateLockFile // Recreate the lockfile from scratch and write it to file
, UseNewLockFile // `RecreateLockFile` without writing to file
};
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
{
// Immutable flakeref that this source tree was obtained from.
FlakeRef resolvedRef;
Path storePath;
// Number of ancestors of the most recent commit.
std::optional<uint64_t> revCount;
// NAR hash of the store path.
Hash narHash;
// A stable timestamp of this source tree. For Git and GitHub
// flakes, the commit date (not author date!) of the most recent
// commit.
std::optional<time_t> lastModified;
SourceInfo(const FlakeRef & resolvRef) : resolvedRef(resolvRef) {};
};
2019-02-21 00:53:01 -05:00
struct Flake
{
FlakeId id;
FlakeRef originalRef;
2019-02-21 00:53:01 -05:00
std::string description;
SourceInfo sourceInfo;
std::vector<FlakeRef> inputs;
std::map<FlakeAlias, FlakeRef> nonFlakeInputs;
Value * vOutputs; // FIXME: gc
2019-05-22 08:31:40 -04:00
unsigned int epoch;
Flake(const FlakeRef & origRef, const SourceInfo & sourceInfo)
: originalRef(origRef), sourceInfo(sourceInfo) {};
};
struct NonFlake
{
2019-03-21 04:30:16 -04:00
FlakeAlias alias;
FlakeRef originalRef;
SourceInfo sourceInfo;
NonFlake(const FlakeRef & origRef, const SourceInfo & sourceInfo)
: originalRef(origRef), sourceInfo(sourceInfo) {};
2019-02-21 00:53:01 -05:00
};
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;
std::map<FlakeRef, ResolvedFlake> flakeDeps; // The key in this map, is the originalRef as written in flake.nix
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) {}
};
ResolvedFlake resolveFlake(EvalState &, const FlakeRef &, HandleLockFile);
2019-04-16 08:27:54 -04:00
void callFlake(EvalState & state, const ResolvedFlake & resFlake, Value & v);
void updateLockFile(EvalState &, const FlakeRef & flakeRef, bool recreateLockFile);
void gitCloneFlake(FlakeRef flakeRef, EvalState &, Registries, const Path & destDir);
2019-03-21 04:30:16 -04:00
2019-02-12 12:23:11 -05:00
}
}