#pragma once #include "flakeref.hh" #include namespace nix { class Store; struct StorePath; } namespace nix::flake { using namespace fetchers; 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 { std::shared_ptr root = std::make_shared(); LockFile() {}; LockFile(const nlohmann::json & json, const Path & path); nlohmann::json toJson() const; std::string to_string() const; static LockFile read(const Path & path); void write(const Path & path) const; bool isImmutable() const; bool operator ==(const LockFile & other) const; std::shared_ptr findInput(const InputPath & path); }; std::ostream & operator <<(std::ostream & stream, const LockFile & lockFile); InputPath parseInputPath(std::string_view s); std::string printInputPath(const InputPath & path); std::string diffLockFiles(const LockFile & oldLocks, const LockFile & newLocks); }