#pragma once ///@file #include "flakeref.hh" #include namespace nix { class Store; class StorePath; } namespace nix::flake { typedef std::vector InputPath; struct LockedNode; /** * A node in the lock file. It has outgoing edges to other nodes (its * inputs). Only the root node has this type; all other nodes have * type LockedNode. */ struct Node : std::enable_shared_from_this { typedef std::variant, InputPath> Edge; std::map inputs; virtual ~Node() { } }; /** * A non-root node in the lock file. */ struct LockedNode : Node { FlakeRef lockedRef, originalRef; bool isFlake = true; LockedNode( const FlakeRef & lockedRef, const FlakeRef & originalRef, bool isFlake = true) : lockedRef(lockedRef), originalRef(originalRef), isFlake(isFlake) { } LockedNode(const nlohmann::json & json); StorePath computeStorePath(Store & store) const; }; struct LockFile { ref root = make_ref(); LockFile() {}; LockFile(const nlohmann::json & json, const Path & path); typedef std::map, std::string> KeyMap; nlohmann::json toJSON() const; std::string to_string() const; static LockFile read(const Path & path); /** * Check whether this lock file has any unlocked inputs. */ std::optional isUnlocked() const; bool operator ==(const LockFile & other) const; // Needed for old gcc versions that don't synthesize it (like gcc 8.2.2 // that is still the default on aarch64-linux) bool operator !=(const LockFile & other) const; std::shared_ptr findInput(const InputPath & path); std::map getAllInputs() const; static std::string diff(const LockFile & oldLocks, const LockFile & newLocks); /** * Check that every 'follows' input target exists. */ void check(); }; std::ostream & operator <<(std::ostream & stream, const LockFile & lockFile); InputPath parseInputPath(std::string_view s); std::string printInputPath(const InputPath & path); }