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
|
|
|
|
{
|
2019-04-08 20:03:00 +03:00
|
|
|
std::map<FlakeRef, FlakeRef> entries;
|
2019-02-12 19:23:11 +02:00
|
|
|
};
|
|
|
|
|
2019-03-29 17:18:25 +02:00
|
|
|
struct LockFile
|
|
|
|
{
|
|
|
|
struct FlakeEntry
|
|
|
|
{
|
|
|
|
FlakeRef ref;
|
|
|
|
std::map<FlakeId, FlakeEntry> flakeEntries;
|
|
|
|
std::map<FlakeId, FlakeRef> nonFlakeEntries;
|
|
|
|
FlakeEntry(const FlakeRef & flakeRef) : ref(flakeRef) {};
|
|
|
|
};
|
|
|
|
|
|
|
|
std::map<FlakeId, FlakeEntry> flakeEntries;
|
|
|
|
std::map<FlakeId, FlakeRef> nonFlakeEntries;
|
|
|
|
};
|
|
|
|
|
2019-03-10 08:05:05 +02:00
|
|
|
Path getUserRegistryPath();
|
|
|
|
|
2019-04-16 16:02:02 +03:00
|
|
|
enum RegistryAccess { DisallowRegistry, AllowRegistry, AllowRegistryAtTop };
|
|
|
|
|
|
|
|
void makeFlakeValue(EvalState & state, const FlakeRef & flakeRef, RegistryAccess registryAccess, 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-04-16 15:27:54 +03:00
|
|
|
void writeRegistry(const FlakeRegistry &, const Path &);
|
2019-02-21 07:53:01 +02:00
|
|
|
|
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-29 17:18:25 +02:00
|
|
|
LockFile lockFile;
|
2019-03-21 10:30:16 +02:00
|
|
|
std::map<FlakeAlias, 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
|
|
|
|
{
|
2019-03-21 10:30:16 +02:00
|
|
|
FlakeAlias alias;
|
2019-03-21 10:30:16 +02:00
|
|
|
FlakeRef ref;
|
|
|
|
Path path;
|
|
|
|
// date
|
|
|
|
// content hash
|
|
|
|
NonFlake(const FlakeRef flakeRef) : ref(flakeRef) {};
|
2019-02-21 07:53:01 +02:00
|
|
|
};
|
|
|
|
|
2019-04-16 09:21:52 +03:00
|
|
|
std::shared_ptr<FlakeRegistry> getGlobalRegistry();
|
|
|
|
|
2019-03-29 17:18:25 +02:00
|
|
|
Flake getFlake(EvalState &, const FlakeRef &, bool impureIsAllowed);
|
2019-02-21 07:53:01 +02:00
|
|
|
|
2019-03-21 10:30:16 +02:00
|
|
|
struct Dependencies
|
|
|
|
{
|
2019-03-29 17:18:25 +02:00
|
|
|
Flake flake;
|
|
|
|
std::vector<Dependencies> flakeDeps; // The flake dependencies
|
|
|
|
std::vector<NonFlake> nonFlakeDeps;
|
|
|
|
Dependencies(const Flake & flake) : flake(flake) {}
|
2019-03-21 10:30:16 +02:00
|
|
|
};
|
|
|
|
|
2019-04-16 16:02:02 +03:00
|
|
|
Dependencies resolveFlake(EvalState &, const FlakeRef &, RegistryAccess registryAccess, bool isTopFlake = true);
|
2019-04-16 15:27:54 +03:00
|
|
|
|
|
|
|
void updateLockFile(EvalState &, const Path & path);
|
2019-03-21 10:30:16 +02:00
|
|
|
|
2019-02-12 19:23:11 +02:00
|
|
|
}
|