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
|
|
|
|
{
|
2019-04-08 17:03:00 +00:00
|
|
|
std::map<FlakeRef, FlakeRef> entries;
|
2019-02-12 17:23:11 +00:00
|
|
|
};
|
|
|
|
|
2019-03-29 15:18:25 +00:00
|
|
|
struct LockFile
|
|
|
|
{
|
|
|
|
struct FlakeEntry
|
|
|
|
{
|
|
|
|
FlakeRef ref;
|
2019-04-16 14:18:47 +00:00
|
|
|
std::map<FlakeRef, FlakeEntry> flakeEntries;
|
2019-03-29 15:18:25 +00:00
|
|
|
std::map<FlakeId, FlakeRef> nonFlakeEntries;
|
|
|
|
FlakeEntry(const FlakeRef & flakeRef) : ref(flakeRef) {};
|
|
|
|
};
|
|
|
|
|
2019-04-16 14:18:47 +00:00
|
|
|
std::map<FlakeRef, FlakeEntry> flakeEntries;
|
2019-03-29 15:18:25 +00:00
|
|
|
std::map<FlakeId, FlakeRef> nonFlakeEntries;
|
|
|
|
};
|
|
|
|
|
2019-03-21 08:30:16 +00:00
|
|
|
typedef std::vector<std::shared_ptr<FlakeRegistry>> Registries;
|
|
|
|
|
2019-03-10 06:05:05 +00:00
|
|
|
Path getUserRegistryPath();
|
|
|
|
|
2019-04-16 13:02:02 +00:00
|
|
|
enum RegistryAccess { DisallowRegistry, AllowRegistry, AllowRegistryAtTop };
|
|
|
|
|
|
|
|
void makeFlakeValue(EvalState & state, const FlakeRef & flakeRef, RegistryAccess registryAccess, 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-04-16 12:27:54 +00:00
|
|
|
void writeRegistry(const FlakeRegistry &, const Path &);
|
2019-02-21 05:53:01 +00:00
|
|
|
|
2019-04-16 13:40:58 +00:00
|
|
|
struct FlakeSourceInfo
|
|
|
|
{
|
|
|
|
FlakeRef flakeRef;
|
|
|
|
Path storePath;
|
|
|
|
std::optional<Hash> rev;
|
|
|
|
std::optional<uint64_t> revCount;
|
|
|
|
// date
|
|
|
|
FlakeSourceInfo(const FlakeRef & flakeRef) : flakeRef(flakeRef) { }
|
|
|
|
};
|
|
|
|
|
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;
|
2019-04-16 13:40:58 +00:00
|
|
|
FlakeSourceInfo sourceInfo;
|
2019-02-21 05:53:01 +00:00
|
|
|
std::vector<FlakeRef> requires;
|
2019-03-21 08:30:16 +00:00
|
|
|
std::map<FlakeAlias, FlakeRef> nonFlakeRequires;
|
2019-02-21 05:53:01 +00:00
|
|
|
Value * vProvides; // FIXME: gc
|
2019-04-16 13:40:58 +00:00
|
|
|
Flake(const FlakeRef & flakeRef, FlakeSourceInfo && sourceInfo)
|
|
|
|
: ref(flakeRef), sourceInfo(sourceInfo) {};
|
2019-03-21 08:30:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct NonFlake
|
|
|
|
{
|
2019-03-21 08:30:16 +00:00
|
|
|
FlakeAlias alias;
|
2019-03-21 08:30:16 +00:00
|
|
|
FlakeRef ref;
|
|
|
|
Path path;
|
|
|
|
// date
|
|
|
|
// content hash
|
|
|
|
NonFlake(const FlakeRef flakeRef) : ref(flakeRef) {};
|
2019-02-21 05:53:01 +00:00
|
|
|
};
|
|
|
|
|
2019-04-16 06:21:52 +00:00
|
|
|
std::shared_ptr<FlakeRegistry> getGlobalRegistry();
|
|
|
|
|
2019-03-29 15:18:25 +00:00
|
|
|
Flake getFlake(EvalState &, const FlakeRef &, bool impureIsAllowed);
|
2019-02-21 05:53:01 +00:00
|
|
|
|
2019-04-19 12:23:35 +00:00
|
|
|
struct ResolvedFlake
|
2019-03-21 08:30:16 +00:00
|
|
|
{
|
2019-03-29 15:18:25 +00:00
|
|
|
Flake flake;
|
2019-04-19 12:23:35 +00:00
|
|
|
std::vector<ResolvedFlake> flakeDeps; // The flake dependencies
|
2019-03-29 15:18:25 +00:00
|
|
|
std::vector<NonFlake> nonFlakeDeps;
|
2019-04-19 12:23:35 +00:00
|
|
|
ResolvedFlake(const Flake & flake) : flake(flake) {}
|
2019-03-21 08:30:16 +00:00
|
|
|
};
|
|
|
|
|
2019-04-19 12:23:35 +00:00
|
|
|
ResolvedFlake resolveFlake(EvalState &, const FlakeRef &, RegistryAccess registryAccess, bool isTopFlake = true);
|
2019-04-16 12:27:54 +00:00
|
|
|
|
|
|
|
void updateLockFile(EvalState &, const Path & path);
|
2019-03-21 08:30:16 +00:00
|
|
|
|
2019-03-21 08:30:16 +00:00
|
|
|
void gitCloneFlake (std::string flakeUri, EvalState &, Registries, Path);
|
2019-02-12 17:23:11 +00:00
|
|
|
}
|