#pragma once #include "args.hh" #include "primops/flake.hh" #include "common-eval-args.hh" #include namespace nix { extern std::string programPath; struct Value; class Bindings; class EvalState; class Store; /* A command that require a Nix store. */ struct StoreCommand : virtual Command { StoreCommand(); void run() override; ref getStore(); virtual ref createStore(); virtual void run(ref) = 0; private: std::shared_ptr _store; }; struct Buildable { Path drvPath; // may be empty std::map outputs; }; typedef std::vector Buildables; struct GitRepoCommand : virtual Args { std::string gitPath = absPath("."); GitRepoCommand () { expectArg("git-path", &gitPath, true); } }; struct FlakeCommand : virtual Args { FlakeUri flakeUri; FlakeCommand() { expectArg("flake-uri", &flakeUri); } }; struct Installable { virtual std::string what() = 0; virtual Buildables toBuildables() { throw Error("argument '%s' cannot be built", what()); } Buildable toBuildable(); virtual std::optional installableToFlakeUri() { return std::nullopt; } virtual Value * toValue(EvalState & state) { throw Error("argument '%s' cannot be evaluated", what()); } }; struct SourceExprCommand : virtual Args, StoreCommand, MixEvalArgs { std::optional file; SourceExprCommand(); ref getEvalState(); std::vector> parseInstallables( ref store, std::vector ss); std::shared_ptr parseInstallable( ref store, const std::string & installable); private: std::shared_ptr evalState; }; enum RealiseMode { Build, NoBuild, DryRun }; /* A command that operates on a list of "installables", which can be store paths, attribute paths, Nix expressions, etc. */ struct InstallablesCommand : virtual Args, SourceExprCommand { std::vector> installables; InstallablesCommand() { expectArgs("installables", &_installables); } void prepare() override; private: std::vector _installables; }; struct InstallableCommand : virtual Args, SourceExprCommand { std::shared_ptr installable; InstallableCommand() { expectArg("installable", &_installable); } void prepare() override; private: std::string _installable; }; /* A command that operates on zero or more store paths. */ struct StorePathsCommand : public InstallablesCommand { private: bool recursive = false; bool all = false; public: StorePathsCommand(bool recursive = false); using StoreCommand::run; virtual void run(ref store, Paths storePaths) = 0; void run(ref store) override; }; /* A command that operates on exactly one store path. */ struct StorePathCommand : public InstallablesCommand { using StoreCommand::run; virtual void run(ref store, const Path & storePath) = 0; void run(ref store) override; }; /* A helper class for registering commands globally. */ struct RegisterCommand { static std::vector> * commands; RegisterCommand(ref command) { if (!commands) commands = new std::vector>; commands->push_back(command); } }; Buildables build(ref store, RealiseMode mode, std::vector> installables); PathSet toStorePaths(ref store, RealiseMode mode, std::vector> installables); Path toStorePath(ref store, RealiseMode mode, std::shared_ptr installable); PathSet toDerivations(ref store, std::vector> installables, bool useDeriver = false); }