1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-20 23:28:26 -04:00
nix/src/libexpr/primops/flake.hh

82 lines
1.8 KiB
C++
Raw Normal View History

2019-02-12 12:23:11 -05:00
#include "types.hh"
#include "flakeref.hh"
#include <variant>
namespace nix {
struct Value;
class EvalState;
2019-02-12 12:23:11 -05:00
struct FlakeRegistry
{
2019-04-08 13:03:00 -04:00
std::map<FlakeRef, FlakeRef> entries;
2019-02-12 12:23:11 -05:00
};
2019-03-29 11:18:25 -04: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 01:05:05 -05:00
Path getUserRegistryPath();
2019-04-16 07:56:08 -04:00
void makeFlakeValue(EvalState & state, const FlakeRef & flakeRef, bool impureTopRef, Value & v);
2019-03-21 04:30:16 -04:00
std::shared_ptr<FlakeRegistry> readRegistry(const Path &);
2019-03-10 01:05:05 -05:00
2019-04-15 08:08:18 -04:00
void writeRegistry(const FlakeRegistry &, Path);
2019-02-21 00:53:01 -05:00
struct Flake
{
FlakeId id;
FlakeRef ref;
2019-02-21 00:53:01 -05:00
std::string description;
Path path;
std::optional<uint64_t> revCount;
2019-02-21 00:53:01 -05:00
std::vector<FlakeRef> requires;
2019-03-29 11:18:25 -04:00
LockFile lockFile;
2019-03-21 04:30:16 -04:00
std::map<FlakeAlias, FlakeRef> nonFlakeRequires;
2019-02-21 00:53:01 -05:00
Value * vProvides; // FIXME: gc
// date
// content hash
Flake(const FlakeRef flakeRef) : ref(flakeRef) {};
};
struct NonFlake
{
2019-03-21 04:30:16 -04:00
FlakeAlias alias;
FlakeRef ref;
Path path;
// date
// content hash
NonFlake(const FlakeRef flakeRef) : ref(flakeRef) {};
2019-02-21 00:53:01 -05:00
};
2019-04-16 02:21:52 -04:00
std::shared_ptr<FlakeRegistry> getGlobalRegistry();
2019-03-29 11:18:25 -04:00
Flake getFlake(EvalState &, const FlakeRef &, bool impureIsAllowed);
struct Dependencies
{
2019-03-29 11:18:25 -04:00
Flake flake;
std::vector<Dependencies> flakeDeps; // The flake dependencies
std::vector<NonFlake> nonFlakeDeps;
Dependencies(const Flake & flake) : flake(flake) {}
};
2019-04-08 13:03:00 -04:00
Dependencies resolveFlake(EvalState &, const FlakeRef &, bool impureTopRef, bool isTopFlake = true);
2019-02-25 07:46:37 -05:00
2019-03-21 04:30:16 -04:00
FlakeRegistry updateLockFile(EvalState &, Flake &);
void updateLockFile(EvalState &, Path path);
2019-02-12 12:23:11 -05:00
}