nix-super/src/nix/command.hh

191 lines
3.9 KiB
C++
Raw Normal View History

#pragma once
#include "args.hh"
2019-04-08 20:03:00 +03:00
#include "primops/flake.hh"
#include "common-eval-args.hh"
#include <optional>
namespace nix {
extern std::string programPath;
2017-04-25 13:06:32 +03:00
struct Value;
class Bindings;
2017-04-25 13:06:32 +03:00
class EvalState;
class Store;
/* A command that require a Nix store. */
struct StoreCommand : virtual Command
{
StoreCommand();
void run() override;
ref<Store> getStore();
virtual ref<Store> createStore();
virtual void run(ref<Store>) = 0;
private:
std::shared_ptr<Store> _store;
};
2017-09-06 17:03:22 +03:00
struct Buildable
{
Path drvPath; // may be empty
std::map<std::string, Path> outputs;
};
typedef std::vector<Buildable> Buildables;
2019-02-21 07:53:01 +02:00
struct GitRepoCommand : virtual Args
{
std::string gitPath = absPath(".");
GitRepoCommand ()
{
expectArg("git-path", &gitPath, true);
}
};
2019-03-10 08:05:05 +02:00
struct FlakeCommand : virtual Args
2019-02-21 07:53:01 +02:00
{
2019-04-08 20:03:00 +03:00
FlakeUri flakeUri;
2019-02-21 07:53:01 +02:00
2019-02-21 07:53:01 +02:00
FlakeCommand()
{
expectArg("flake-uri", &flakeUri);
}
2019-02-21 07:53:01 +02:00
};
2017-04-25 13:06:32 +03:00
struct Installable
{
virtual std::string what() = 0;
2017-09-06 17:03:22 +03:00
virtual Buildables toBuildables()
2017-04-25 13:06:32 +03:00
{
throw Error("argument '%s' cannot be built", what());
2017-04-25 13:06:32 +03:00
}
2017-09-06 17:03:22 +03:00
Buildable toBuildable();
virtual std::optional<std::string> installableToFlakeUri()
{
return std::nullopt;
}
2017-04-25 13:06:32 +03:00
virtual Value * toValue(EvalState & state)
{
throw Error("argument '%s' cannot be evaluated", what());
2017-04-25 13:06:32 +03:00
}
};
struct SourceExprCommand : virtual Args, StoreCommand, MixEvalArgs
2017-04-25 13:06:32 +03:00
{
std::optional<Path> file;
2017-04-25 13:06:32 +03:00
SourceExprCommand();
2017-04-25 13:06:32 +03:00
2017-07-17 20:02:56 +03:00
ref<EvalState> getEvalState();
2019-04-08 17:11:17 +03:00
std::vector<std::shared_ptr<Installable>> parseInstallables(
ref<Store> store, std::vector<std::string> ss);
std::shared_ptr<Installable> parseInstallable(
ref<Store> store, const std::string & installable);
2017-07-17 20:02:56 +03:00
private:
std::shared_ptr<EvalState> evalState;
};
enum RealiseMode { Build, NoBuild, DryRun };
2017-07-17 20:02:56 +03:00
/* 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<std::shared_ptr<Installable>> installables;
InstallablesCommand()
{
expectArgs("installables", &_installables);
}
2017-04-25 13:06:32 +03:00
void prepare() override;
private:
std::vector<std::string> _installables;
2017-04-25 13:06:32 +03:00
};
struct InstallableCommand : virtual Args, SourceExprCommand
{
std::shared_ptr<Installable> 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:
2017-09-27 19:28:54 +03:00
StorePathsCommand(bool recursive = false);
using StoreCommand::run;
virtual void run(ref<Store> store, Paths storePaths) = 0;
void run(ref<Store> store) override;
};
/* A command that operates on exactly one store path. */
struct StorePathCommand : public InstallablesCommand
{
using StoreCommand::run;
virtual void run(ref<Store> store, const Path & storePath) = 0;
void run(ref<Store> store) override;
};
/* A helper class for registering commands globally. */
struct RegisterCommand
{
2018-11-22 16:59:52 +02:00
static std::vector<ref<Command>> * commands;
RegisterCommand(ref<Command> command)
{
2018-11-22 16:59:52 +02:00
if (!commands) commands = new std::vector<ref<Command>>;
commands->push_back(command);
}
};
2018-02-09 17:42:32 +02:00
Buildables build(ref<Store> store, RealiseMode mode,
std::vector<std::shared_ptr<Installable>> installables);
PathSet toStorePaths(ref<Store> store, RealiseMode mode,
std::vector<std::shared_ptr<Installable>> installables);
Path toStorePath(ref<Store> store, RealiseMode mode,
std::shared_ptr<Installable> installable);
PathSet toDerivations(ref<Store> store,
std::vector<std::shared_ptr<Installable>> installables,
bool useDeriver = false);
}