forked from lix-project/lix
e8d6ee7c1b
This debug command prints a store derivation in JSON format. For example: $ nix show-derivation nixpkgs.hello { "/nix/store/ayjwpwwiyy04nh9z71rsdgd3q7bra7ch-hello-2.10.drv": { "outputs": { "out": { "path": "/nix/store/w5w4v29ql0qwqhczkdxs94ix2lh7ibgs-hello-2.10" } }, "inputSrcs": [ "/nix/store/9krlzvny65gdc8s7kpb6lkx8cd02c25b-default-builder.sh" ], "inputDrvs": { "/nix/store/13839aqdf6x4k3b785rw5f2l7857l6y3-bash-4.4-p12.drv": [ "out" ], "/nix/store/vgdx7fdc7d4iirmnwj2py1nrvr5qwzj7-hello-2.10.tar.gz.drv": [ "out" ], "/nix/store/x3kkd0vsqfflbvwf1055l9mr39bg0ms0-stdenv.drv": [ "out" ] }, "platform": "x86_64-linux", "builder": "/nix/store/qp5fw57d38bd1n07ss4zxh88zg67c3vg-bash-4.4-p12/bin/bash", "args": [ "-e", "/nix/store/9krlzvny65gdc8s7kpb6lkx8cd02c25b-default-builder.sh" ], "env": { "buildInputs": "", "builder": "/nix/store/qp5fw57d38bd1n07ss4zxh88zg67c3vg-bash-4.4-p12/bin/bash", "configureFlags": "", "doCheck": "1", "name": "hello-2.10", "nativeBuildInputs": "", "out": "/nix/store/w5w4v29ql0qwqhczkdxs94ix2lh7ibgs-hello-2.10", "propagatedBuildInputs": "", "propagatedNativeBuildInputs": "", "src": "/nix/store/3x7dwzq014bblazs7kq20p9hyzz0qh8g-hello-2.10.tar.gz", "stdenv": "/nix/store/6zngq1rdh0ans9qyckqimqibgnlvlfrm-stdenv", "system": "x86_64-linux" } } } This removes the need for pp-aterm.
215 lines
4.8 KiB
C++
215 lines
4.8 KiB
C++
#pragma once
|
||
|
||
#include "args.hh"
|
||
|
||
namespace nix {
|
||
|
||
struct Value;
|
||
class EvalState;
|
||
|
||
/* 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;
|
||
|
||
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;
|
||
};
|
||
|
||
class Store;
|
||
|
||
/* A command that require a Nix store. */
|
||
struct StoreCommand : virtual Command
|
||
{
|
||
std::string storeUri;
|
||
StoreCommand();
|
||
void run() override;
|
||
ref<Store> getStore();
|
||
virtual ref<Store> createStore();
|
||
virtual void run(ref<Store>) = 0;
|
||
|
||
private:
|
||
std::shared_ptr<Store> _store;
|
||
};
|
||
|
||
struct Buildable
|
||
{
|
||
Path drvPath; // may be empty
|
||
std::map<std::string, Path> outputs;
|
||
};
|
||
|
||
typedef std::vector<Buildable> Buildables;
|
||
|
||
struct Installable
|
||
{
|
||
virtual std::string what() = 0;
|
||
|
||
virtual Buildables toBuildables()
|
||
{
|
||
throw Error("argument '%s' cannot be built", what());
|
||
}
|
||
|
||
Buildable toBuildable();
|
||
|
||
virtual Value * toValue(EvalState & state)
|
||
{
|
||
throw Error("argument '%s' cannot be evaluated", what());
|
||
}
|
||
};
|
||
|
||
struct SourceExprCommand : virtual Args, StoreCommand
|
||
{
|
||
Path file;
|
||
|
||
SourceExprCommand()
|
||
{
|
||
mkFlag('f', "file", "file", "evaluate FILE rather than the default", &file);
|
||
}
|
||
|
||
/* 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);
|
||
|
||
ref<EvalState> getEvalState();
|
||
|
||
private:
|
||
|
||
std::shared_ptr<EvalState> evalState;
|
||
|
||
Value * vSourceExpr = 0;
|
||
};
|
||
|
||
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<std::shared_ptr<Installable>> installables;
|
||
|
||
InstallablesCommand()
|
||
{
|
||
expectArgs("installables", &_installables);
|
||
}
|
||
|
||
void prepare() override;
|
||
|
||
virtual bool useDefaultInstallables() { return true; }
|
||
|
||
private:
|
||
|
||
Strings _installables;
|
||
};
|
||
|
||
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:
|
||
|
||
StorePathsCommand();
|
||
|
||
using StoreCommand::run;
|
||
|
||
virtual void run(ref<Store> store, Paths storePaths) = 0;
|
||
|
||
void run(ref<Store> store) override;
|
||
|
||
bool useDefaultInstallables() override { return !all; }
|
||
};
|
||
|
||
/* 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;
|
||
};
|
||
|
||
typedef std::map<std::string, ref<Command>> Commands;
|
||
|
||
/* An argument parser that supports multiple subcommands,
|
||
i.e. ‘<command> <subcommand>’. */
|
||
class MultiCommand : virtual Args
|
||
{
|
||
public:
|
||
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);
|
||
}
|
||
};
|
||
|
||
std::shared_ptr<Installable> parseInstallable(
|
||
SourceExprCommand & cmd, ref<Store> store, const std::string & installable,
|
||
bool useDefaultInstallables);
|
||
|
||
Buildables toBuildables(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);
|
||
|
||
}
|