2019-02-12 17:23:11 +00:00
|
|
|
#include "types.hh"
|
|
|
|
#include "flakeref.hh"
|
|
|
|
|
|
|
|
#include <variant>
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
2019-02-12 20:55:43 +00:00
|
|
|
struct Value;
|
|
|
|
class EvalState;
|
|
|
|
|
2019-02-12 17:23:11 +00:00
|
|
|
struct FlakeRegistry
|
|
|
|
{
|
|
|
|
struct Entry
|
|
|
|
{
|
|
|
|
FlakeRef ref;
|
2019-02-21 05:53:01 +00:00
|
|
|
Entry(const FlakeRef & flakeRef) : ref(flakeRef) {};
|
2019-03-10 06:05:05 +00:00
|
|
|
Entry operator=(const Entry & entry) { return Entry(entry.ref); }
|
2019-02-12 17:23:11 +00:00
|
|
|
};
|
|
|
|
std::map<FlakeId, Entry> entries;
|
|
|
|
};
|
|
|
|
|
2019-03-10 06:05:05 +00:00
|
|
|
Path getUserRegistryPath();
|
|
|
|
|
2019-02-12 20:55:43 +00:00
|
|
|
Value * makeFlakeRegistryValue(EvalState & state);
|
|
|
|
|
2019-04-08 12:21:13 +00:00
|
|
|
Value * makeFlakeValue(EvalState & state, const FlakeRef & flakeRef, bool impureTopRef, Value & v);
|
2019-02-12 20:55:43 +00:00
|
|
|
|
2019-03-21 08:30:16 +00:00
|
|
|
std::shared_ptr<FlakeRegistry> readRegistry(const Path &);
|
2019-03-10 06:05:05 +00:00
|
|
|
|
2019-02-21 05:53:01 +00:00
|
|
|
void writeRegistry(FlakeRegistry, Path);
|
|
|
|
|
2019-02-21 05:53:01 +00:00
|
|
|
struct Flake
|
|
|
|
{
|
|
|
|
FlakeId id;
|
2019-02-21 05:53:01 +00:00
|
|
|
FlakeRef ref;
|
2019-02-21 05:53:01 +00:00
|
|
|
std::string description;
|
|
|
|
Path path;
|
2019-04-08 20:46:25 +00:00
|
|
|
std::optional<uint64_t> revCount;
|
2019-02-21 05:53:01 +00:00
|
|
|
std::vector<FlakeRef> requires;
|
2019-03-21 08:30:16 +00:00
|
|
|
std::shared_ptr<FlakeRegistry> lockFile;
|
2019-02-21 05:53:01 +00:00
|
|
|
Value * vProvides; // FIXME: gc
|
|
|
|
// commit hash
|
|
|
|
// date
|
|
|
|
// content hash
|
2019-02-21 05:53:01 +00:00
|
|
|
Flake(FlakeRef & flakeRef) : ref(flakeRef) {};
|
2019-02-21 05:53:01 +00:00
|
|
|
};
|
|
|
|
|
2019-02-21 05:53:01 +00:00
|
|
|
Flake getFlake(EvalState &, const FlakeRef &);
|
|
|
|
|
|
|
|
FlakeRegistry updateLockFile(EvalState &, Flake &);
|
2019-02-25 12:46:37 +00:00
|
|
|
|
2019-02-21 05:53:01 +00:00
|
|
|
void updateLockFile(EvalState &, std::string);
|
2019-02-12 17:23:11 +00:00
|
|
|
}
|