2019-06-04 17:45:16 +00:00
|
|
|
#pragma once
|
|
|
|
|
2019-02-12 17:23:11 +00:00
|
|
|
#include "types.hh"
|
|
|
|
#include "flakeref.hh"
|
2019-06-04 18:01:21 +00:00
|
|
|
#include "lockfile.hh"
|
2019-02-12 17:23:11 +00:00
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
2019-05-29 13:31:07 +00:00
|
|
|
struct Value;
|
|
|
|
class EvalState;
|
|
|
|
|
2020-01-21 15:27:53 +00:00
|
|
|
namespace fetchers { struct Tree; }
|
2019-05-21 12:55:43 +00:00
|
|
|
|
2020-01-21 15:27:53 +00:00
|
|
|
namespace flake {
|
2019-03-10 06:05:05 +00:00
|
|
|
|
2019-05-22 11:46:07 +00:00
|
|
|
enum HandleLockFile : unsigned int
|
2019-05-14 09:34:45 +00:00
|
|
|
{ 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
|
|
|
|
};
|
2019-04-16 13:02:02 +00:00
|
|
|
|
2019-08-30 14:27:51 +00:00
|
|
|
struct FlakeInput
|
|
|
|
{
|
|
|
|
FlakeRef ref;
|
|
|
|
bool isFlake = true;
|
|
|
|
FlakeInput(const FlakeRef & ref) : ref(ref) {};
|
|
|
|
};
|
|
|
|
|
2019-02-21 05:53:01 +00:00
|
|
|
struct Flake
|
|
|
|
{
|
2019-05-01 09:38:48 +00:00
|
|
|
FlakeRef originalRef;
|
2020-01-21 15:27:53 +00:00
|
|
|
FlakeRef resolvedRef;
|
2020-01-22 16:20:21 +00:00
|
|
|
std::optional<std::string> description;
|
2020-01-21 15:27:53 +00:00
|
|
|
std::shared_ptr<const fetchers::Tree> sourceInfo;
|
2019-08-30 14:27:51 +00:00
|
|
|
std::map<FlakeId, FlakeInput> inputs;
|
2019-05-29 21:09:23 +00:00
|
|
|
Value * vOutputs; // FIXME: gc
|
2019-07-11 11:54:53 +00:00
|
|
|
unsigned int edition;
|
2020-01-21 15:27:53 +00:00
|
|
|
~Flake();
|
2019-03-21 08:30:16 +00:00
|
|
|
};
|
|
|
|
|
2019-09-18 19:17:27 +00:00
|
|
|
Flake getFlake(EvalState & state, const FlakeRef & flakeRef, bool allowLookup);
|
2019-06-21 17:04:58 +00:00
|
|
|
|
2019-06-07 20:25:48 +00:00
|
|
|
/* Fingerprint of a locked flake; used as a cache key. */
|
|
|
|
typedef Hash Fingerprint;
|
|
|
|
|
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-06-04 17:10:35 +00:00
|
|
|
LockFile lockFile;
|
2019-06-07 20:25:48 +00:00
|
|
|
|
|
|
|
Fingerprint getFingerprint() const;
|
2019-03-21 08:30:16 +00:00
|
|
|
};
|
|
|
|
|
2019-05-14 09:34:45 +00:00
|
|
|
ResolvedFlake resolveFlake(EvalState &, const FlakeRef &, HandleLockFile);
|
2019-04-16 12:27:54 +00:00
|
|
|
|
2019-06-04 17:10:35 +00:00
|
|
|
void callFlake(EvalState & state,
|
|
|
|
const Flake & flake,
|
2019-08-30 14:27:51 +00:00
|
|
|
const LockedInputs & inputs,
|
2019-06-04 17:10:35 +00:00
|
|
|
Value & v);
|
|
|
|
|
|
|
|
void callFlake(EvalState & state,
|
|
|
|
const ResolvedFlake & resFlake,
|
|
|
|
Value & v);
|
2019-05-23 21:42:13 +00:00
|
|
|
|
2019-05-16 20:48:16 +00:00
|
|
|
void updateLockFile(EvalState &, const FlakeRef & flakeRef, bool recreateLockFile);
|
|
|
|
|
2019-02-12 17:23:11 +00:00
|
|
|
}
|
2019-05-29 13:31:07 +00:00
|
|
|
|
|
|
|
}
|