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