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

54 lines
1.1 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;
2019-02-12 12:23:11 -05:00
struct FlakeRegistry
{
struct Entry
{
FlakeRef ref;
Entry(const FlakeRef & flakeRef) : ref(flakeRef) {};
2019-03-10 01:05:05 -05:00
Entry operator=(const Entry & entry) { return Entry(entry.ref); }
2019-02-12 12:23:11 -05:00
};
std::map<FlakeId, Entry> entries;
};
2019-03-10 01:05:05 -05:00
Path getUserRegistryPath();
Value * makeFlakeRegistryValue(EvalState & state);
Value * makeFlakeValue(EvalState & state, const FlakeRef & flakeRef, bool impureTopRef, Value & v);
2019-03-21 04:30:16 -04:00
std::shared_ptr<FlakeRegistry> readRegistry(const Path &);
2019-03-10 01:05:05 -05:00
void writeRegistry(FlakeRegistry, Path);
2019-02-21 00:53:01 -05:00
struct Flake
{
FlakeId id;
FlakeRef ref;
2019-02-21 00:53:01 -05:00
std::string description;
Path path;
std::optional<uint64_t> revCount;
2019-02-21 00:53:01 -05:00
std::vector<FlakeRef> requires;
2019-03-21 04:30:16 -04:00
std::shared_ptr<FlakeRegistry> lockFile;
2019-02-21 00:53:01 -05:00
Value * vProvides; // FIXME: gc
// commit hash
// date
// content hash
Flake(FlakeRef & flakeRef) : ref(flakeRef) {};
2019-02-21 00:53:01 -05:00
};
Flake getFlake(EvalState &, const FlakeRef &);
FlakeRegistry updateLockFile(EvalState &, Flake &);
2019-02-25 07:46:37 -05:00
void updateLockFile(EvalState &, std::string);
2019-02-12 12:23:11 -05:00
}