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