2016-02-09 20:28:29 +00:00
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "args.hh"
|
|
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
2017-04-25 10:06:32 +00:00
|
|
|
|
struct Value;
|
|
|
|
|
class EvalState;
|
|
|
|
|
|
2016-02-09 20:28:29 +00:00
|
|
|
|
/* A command is an argument parser that can be executed by calling its
|
|
|
|
|
run() method. */
|
|
|
|
|
struct Command : virtual Args
|
|
|
|
|
{
|
|
|
|
|
virtual std::string name() = 0;
|
|
|
|
|
virtual void prepare() { };
|
|
|
|
|
virtual void run() = 0;
|
2016-04-21 12:58:32 +00:00
|
|
|
|
|
|
|
|
|
struct Example
|
|
|
|
|
{
|
|
|
|
|
std::string description;
|
|
|
|
|
std::string command;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
typedef std::list<Example> Examples;
|
|
|
|
|
|
|
|
|
|
virtual Examples examples() { return Examples(); }
|
|
|
|
|
|
|
|
|
|
void printHelp(const string & programName, std::ostream & out) override;
|
2016-02-09 20:28:29 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class Store;
|
|
|
|
|
|
|
|
|
|
/* A command that require a Nix store. */
|
|
|
|
|
struct StoreCommand : virtual Command
|
|
|
|
|
{
|
2016-03-21 17:03:36 +00:00
|
|
|
|
std::string storeUri;
|
|
|
|
|
StoreCommand();
|
2016-02-09 20:28:29 +00:00
|
|
|
|
void run() override;
|
2017-04-25 09:20:37 +00:00
|
|
|
|
ref<Store> getStore();
|
2017-03-16 13:25:54 +00:00
|
|
|
|
virtual ref<Store> createStore();
|
2016-02-09 20:28:29 +00:00
|
|
|
|
virtual void run(ref<Store>) = 0;
|
2017-04-25 09:20:37 +00:00
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
std::shared_ptr<Store> _store;
|
2016-02-09 20:28:29 +00:00
|
|
|
|
};
|
|
|
|
|
|
2017-07-14 15:10:13 +00:00
|
|
|
|
struct Whence { std::string outputName; Path drvPath; };
|
|
|
|
|
typedef std::map<Path, Whence> Buildables;
|
|
|
|
|
|
2017-04-25 10:06:32 +00:00
|
|
|
|
struct Installable
|
|
|
|
|
{
|
|
|
|
|
virtual std::string what() = 0;
|
|
|
|
|
|
2017-07-14 15:10:13 +00:00
|
|
|
|
virtual Buildables toBuildable()
|
2017-04-25 10:06:32 +00:00
|
|
|
|
{
|
|
|
|
|
throw Error("argument ‘%s’ cannot be built", what());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual Value * toValue(EvalState & state)
|
|
|
|
|
{
|
|
|
|
|
throw Error("argument ‘%s’ cannot be evaluated", what());
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* A command that operates on a list of "installables", which can be
|
|
|
|
|
store paths, attribute paths, Nix expressions, etc. */
|
|
|
|
|
struct InstallablesCommand : virtual Args, StoreCommand
|
|
|
|
|
{
|
|
|
|
|
std::vector<std::shared_ptr<Installable>> installables;
|
|
|
|
|
Path file;
|
|
|
|
|
|
|
|
|
|
InstallablesCommand()
|
|
|
|
|
{
|
|
|
|
|
mkFlag('f', "file", "file", "evaluate FILE rather than the default", &file);
|
|
|
|
|
expectArgs("installables", &_installables);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Return a value representing the Nix expression from which we
|
|
|
|
|
are installing. This is either the file specified by ‘--file’,
|
|
|
|
|
or an attribute set constructed from $NIX_PATH, e.g. ‘{ nixpkgs
|
|
|
|
|
= import ...; bla = import ...; }’. */
|
|
|
|
|
Value * getSourceExpr(EvalState & state);
|
|
|
|
|
|
2017-05-02 13:28:35 +00:00
|
|
|
|
std::vector<std::shared_ptr<Installable>> parseInstallables(ref<Store> store, Strings ss);
|
2017-04-25 10:06:32 +00:00
|
|
|
|
|
2017-07-14 12:23:38 +00:00
|
|
|
|
enum ToStorePathsMode { Build, NoBuild, DryRun };
|
|
|
|
|
|
|
|
|
|
PathSet toStorePaths(ref<Store> store, ToStorePathsMode mode);
|
2017-04-25 10:06:32 +00:00
|
|
|
|
|
|
|
|
|
ref<EvalState> getEvalState();
|
|
|
|
|
|
|
|
|
|
void prepare() override;
|
|
|
|
|
|
2017-05-02 13:28:35 +00:00
|
|
|
|
virtual bool useDefaultInstallables() { return true; }
|
|
|
|
|
|
2017-04-25 10:06:32 +00:00
|
|
|
|
private:
|
|
|
|
|
|
|
|
|
|
Strings _installables;
|
|
|
|
|
|
|
|
|
|
std::shared_ptr<EvalState> evalState;
|
|
|
|
|
|
|
|
|
|
Value * vSourceExpr = 0;
|
|
|
|
|
};
|
|
|
|
|
|
2017-04-25 11:20:26 +00:00
|
|
|
|
/* A command that operates on zero or more store paths. */
|
|
|
|
|
struct StorePathsCommand : public InstallablesCommand
|
|
|
|
|
{
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
|
|
bool recursive = false;
|
|
|
|
|
bool all = false;
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
StorePathsCommand();
|
|
|
|
|
|
|
|
|
|
using StoreCommand::run;
|
|
|
|
|
|
|
|
|
|
virtual void run(ref<Store> store, Paths storePaths) = 0;
|
|
|
|
|
|
|
|
|
|
void run(ref<Store> store) override;
|
2017-05-02 13:28:35 +00:00
|
|
|
|
|
|
|
|
|
bool useDefaultInstallables() override { return !all; }
|
2017-04-25 11:20:26 +00:00
|
|
|
|
};
|
|
|
|
|
|
2017-05-04 12:16:26 +00:00
|
|
|
|
/* 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;
|
|
|
|
|
};
|
|
|
|
|
|
2016-02-09 20:28:29 +00:00
|
|
|
|
typedef std::map<std::string, ref<Command>> Commands;
|
|
|
|
|
|
|
|
|
|
/* An argument parser that supports multiple subcommands,
|
2016-11-25 23:37:43 +00:00
|
|
|
|
i.e. ‘<command> <subcommand>’. */
|
2016-03-14 11:37:30 +00:00
|
|
|
|
class MultiCommand : virtual Args
|
2016-02-09 20:28:29 +00:00
|
|
|
|
{
|
2016-03-14 11:37:30 +00:00
|
|
|
|
public:
|
2016-02-09 20:28:29 +00:00
|
|
|
|
Commands commands;
|
|
|
|
|
|
|
|
|
|
std::shared_ptr<Command> command;
|
|
|
|
|
|
|
|
|
|
MultiCommand(const Commands & commands);
|
|
|
|
|
|
|
|
|
|
void printHelp(const string & programName, std::ostream & out) override;
|
|
|
|
|
|
|
|
|
|
bool processFlag(Strings::iterator & pos, Strings::iterator end) override;
|
|
|
|
|
|
|
|
|
|
bool processArgs(const Strings & args, bool finish) override;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* A helper class for registering commands globally. */
|
|
|
|
|
struct RegisterCommand
|
|
|
|
|
{
|
|
|
|
|
static Commands * commands;
|
|
|
|
|
|
|
|
|
|
RegisterCommand(ref<Command> command)
|
|
|
|
|
{
|
|
|
|
|
if (!commands) commands = new Commands;
|
|
|
|
|
commands->emplace(command->name(), command);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|