#pragma once #include "installable-value.hh" #include "args.hh" #include "common-eval-args.hh" #include "path.hh" #include "flake/lockfile.hh" #include namespace nix { extern std::string programPath; extern char * * savedArgv; class EvalState; struct Pos; class Store; static constexpr Command::Category catHelp = -1; static constexpr Command::Category catSecondary = 100; static constexpr Command::Category catUtility = 101; static constexpr Command::Category catNixInstallation = 102; static constexpr auto installablesCategory = "Options that change the interpretation of [installables](@docroot@/command-ref/new-cli/nix.md#installables)"; struct NixMultiCommand : virtual MultiCommand, virtual Command { nlohmann::json toJSON() override; }; // For the overloaded run methods #pragma GCC diagnostic ignored "-Woverloaded-virtual" /* A command that requires 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; }; /* A command that copies something between `--from` and `--to` stores. */ struct CopyCommand : virtual StoreCommand { std::string srcUri, dstUri; CopyCommand(); ref createStore() override; ref getDstStore(); }; struct EvalCommand : virtual StoreCommand, MixEvalArgs { bool startReplOnEvalErrors = false; bool ignoreExceptionsDuringTry = false; EvalCommand(); ~EvalCommand(); ref getEvalStore(); ref getEvalState(); private: std::shared_ptr evalStore; std::shared_ptr evalState; }; struct MixFlakeOptions : virtual Args, EvalCommand { flake::LockFlags lockFlags; std::optional needsFlakeInputCompletion = {}; MixFlakeOptions(); virtual std::vector getFlakesForCompletion() { return {}; } void completeFlakeInput(std::string_view prefix); void completionHook() override; }; struct SourceExprCommand : virtual Args, MixFlakeOptions { std::optional file; std::optional expr; SourceExprCommand(); Installables parseInstallables( ref store, std::vector ss); ref parseInstallable( ref store, const std::string & installable); virtual Strings getDefaultFlakeAttrPaths(); virtual Strings getDefaultFlakeAttrPathPrefixes(); void completeInstallable(std::string_view prefix); }; struct MixReadOnlyOption : virtual Args { MixReadOnlyOption(); }; /* Like InstallablesCommand but the installables are not loaded */ struct RawInstallablesCommand : virtual Args, SourceExprCommand { RawInstallablesCommand(); virtual void run(ref store, std::vector && rawInstallables) = 0; void run(ref store) override; // FIXME make const after CmdRepl's override is fixed up virtual void applyDefaultInstallables(std::vector & rawInstallables); bool readFromStdIn = false; std::vector getFlakesForCompletion() override; private: std::vector rawInstallables; }; /* A command that operates on a list of "installables", which can be store paths, attribute paths, Nix expressions, etc. */ struct InstallablesCommand : RawInstallablesCommand { virtual void run(ref store, Installables && installables) = 0; void run(ref store, std::vector && rawInstallables) override; }; /* A command that operates on exactly one "installable" */ struct InstallableCommand : virtual Args, SourceExprCommand { InstallableCommand(); virtual void run(ref store, ref installable) = 0; void run(ref store) override; std::vector getFlakesForCompletion() override { return {_installable}; } private: std::string _installable{"."}; }; struct MixOperateOnOptions : virtual Args { OperateOn operateOn = OperateOn::Output; MixOperateOnOptions(); }; /* A command that operates on zero or more store paths. */ struct BuiltPathsCommand : InstallablesCommand, virtual MixOperateOnOptions { private: bool recursive = false; bool all = false; protected: Realise realiseMode = Realise::Derivation; public: BuiltPathsCommand(bool recursive = false); virtual void run(ref store, BuiltPaths && paths) = 0; void run(ref store, Installables && installables) override; void applyDefaultInstallables(std::vector & rawInstallables) override; }; struct StorePathsCommand : public BuiltPathsCommand { StorePathsCommand(bool recursive = false); virtual void run(ref store, StorePaths && storePaths) = 0; void run(ref store, BuiltPaths && paths) override; }; /* A command that operates on exactly one store path. */ struct StorePathCommand : public StorePathsCommand { virtual void run(ref store, const StorePath & storePath) = 0; void run(ref store, StorePaths && storePaths) override; }; /* A helper class for registering commands globally. */ struct RegisterCommand { typedef std::map, std::function()>> Commands; static Commands * commands; RegisterCommand(std::vector && name, std::function()> command) { if (!commands) commands = new Commands; commands->emplace(name, command); } static nix::Commands getCommandsFor(const std::vector & prefix); }; template static RegisterCommand registerCommand(const std::string & name) { return RegisterCommand({name}, [](){ return make_ref(); }); } template static RegisterCommand registerCommand2(std::vector && name) { return RegisterCommand(std::move(name), [](){ return make_ref(); }); } struct MixProfile : virtual StoreCommand { std::optional profile; MixProfile(); /* If 'profile' is set, make it point at 'storePath'. */ void updateProfile(const StorePath & storePath); /* If 'profile' is set, make it point at the store path produced by 'buildables'. */ void updateProfile(const BuiltPaths & buildables); }; struct MixDefaultProfile : MixProfile { MixDefaultProfile(); }; struct MixEnvironment : virtual Args { StringSet keep, unset; Strings stringsEnv; std::vector vectorEnv; bool ignoreEnvironment; MixEnvironment(); /* Modify global environ based on ignoreEnvironment, keep, and unset. It's expected that exec will be called before this class goes out of scope, otherwise environ will become invalid. */ void setEnviron(); }; void completeFlakeRef(ref store, std::string_view prefix); void completeFlakeRefWithFragment( ref evalState, flake::LockFlags lockFlags, Strings attrPathPrefixes, const Strings & defaultFlakeAttrPaths, std::string_view prefix); std::string showVersions(const std::set & versions); void printClosureDiff( ref store, const StorePath & beforePath, const StorePath & afterPath, std::string_view indent); }