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

71 lines
1.6 KiB
C++
Raw Normal View History

2019-06-04 13:45:16 -04:00
#pragma once
2019-02-12 12:23:11 -05:00
#include "types.hh"
#include "flakeref.hh"
#include "lockfile.hh"
2019-02-12 12:23:11 -05:00
namespace nix {
struct Value;
class EvalState;
namespace fetchers { struct Tree; }
namespace flake {
2019-03-10 01:05:05 -05:00
2020-01-24 07:07:03 -05:00
enum LockFileMode : unsigned int
{ AllPure // Everything is handled 100% purely
, TopRefUsesRegistries // The top FlakeRef uses the registries, apart from that, everything happens 100% purely
, UpdateLockFile // Update the existing lockfile and write it to file
, UseUpdatedLockFile // `UpdateLockFile` without writing to file
, RecreateLockFile // Recreate the lockfile from scratch and write it to file
, UseNewLockFile // `RecreateLockFile` without writing to file
};
struct FlakeInput
{
FlakeRef ref;
bool isFlake = true;
FlakeInput(const FlakeRef & ref) : ref(ref) {};
};
2019-02-21 00:53:01 -05:00
struct Flake
{
FlakeRef originalRef;
FlakeRef resolvedRef;
std::optional<std::string> description;
std::shared_ptr<const fetchers::Tree> sourceInfo;
std::map<FlakeId, FlakeInput> inputs;
Value * vOutputs; // FIXME: gc
2019-07-11 07:54:53 -04:00
unsigned int edition;
~Flake();
};
Flake getFlake(EvalState & state, const FlakeRef & flakeRef, bool allowLookup);
/* Fingerprint of a locked flake; used as a cache key. */
typedef Hash Fingerprint;
struct LockedFlake
{
2019-03-29 11:18:25 -04:00
Flake flake;
LockFile lockFile;
Fingerprint getFingerprint() const;
};
2020-01-24 07:07:03 -05:00
LockedFlake lockFlake(EvalState &, const FlakeRef &, LockFileMode);
2019-04-16 08:27:54 -04:00
void callFlake(EvalState & state,
const Flake & flake,
const LockedInputs & inputs,
Value & v);
void callFlake(EvalState & state,
const LockedFlake & resFlake,
Value & v);
2019-02-12 12:23:11 -05:00
}
}