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-02-12 17:23:11 +00:00
|
|
|
};
|
|
|
|
std::map<FlakeId, Entry> entries;
|
|
|
|
};
|
|
|
|
|
2019-02-12 20:55:43 +00:00
|
|
|
Value * makeFlakeRegistryValue(EvalState & state);
|
|
|
|
|
|
|
|
Value * makeFlakeValue(EvalState & state, std::string flakeUri, Value & v);
|
|
|
|
|
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;
|
|
|
|
std::vector<FlakeRef> requires;
|
|
|
|
std::unique_ptr<FlakeRegistry> lockFile;
|
|
|
|
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
|
|
|
}
|