2017-05-08 19:39:33 +03:00
|
|
|
#include "command.hh"
|
|
|
|
#include "shared.hh"
|
|
|
|
#include "eval.hh"
|
|
|
|
#include "attr-path.hh"
|
2017-08-29 16:13:30 +03:00
|
|
|
#include "progress-bar.hh"
|
2017-05-08 19:39:33 +03:00
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
using namespace nix;
|
|
|
|
|
2017-08-29 17:18:00 +03:00
|
|
|
struct CmdEdit : InstallableCommand
|
2017-05-08 19:39:33 +03:00
|
|
|
{
|
|
|
|
std::string name() override
|
|
|
|
{
|
|
|
|
return "edit";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string description() override
|
|
|
|
{
|
|
|
|
return "open the Nix expression of a Nix package in $EDITOR";
|
|
|
|
}
|
|
|
|
|
|
|
|
Examples examples() override
|
|
|
|
{
|
|
|
|
return {
|
|
|
|
Example{
|
|
|
|
"To open the Nix expression of the GNU Hello package:",
|
|
|
|
"nix edit nixpkgs.hello"
|
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
void run(ref<Store> store) override
|
|
|
|
{
|
|
|
|
auto state = getEvalState();
|
|
|
|
|
2017-08-29 17:18:00 +03:00
|
|
|
auto v = installable->toValue(*state);
|
2017-05-08 19:39:33 +03:00
|
|
|
|
2017-08-29 17:18:00 +03:00
|
|
|
Value * v2;
|
|
|
|
try {
|
|
|
|
auto dummyArgs = state->allocBindings(0);
|
|
|
|
v2 = findAlongAttrPath(*state, "meta.position", *dummyArgs, *v);
|
|
|
|
} catch (Error &) {
|
|
|
|
throw Error("package '%s' has no source location information", installable->what());
|
|
|
|
}
|
2017-05-08 19:39:33 +03:00
|
|
|
|
2017-08-29 17:18:00 +03:00
|
|
|
auto pos = state->forceString(*v2);
|
|
|
|
debug("position is %s", pos);
|
2017-05-08 19:39:33 +03:00
|
|
|
|
2017-08-29 17:18:00 +03:00
|
|
|
auto colon = pos.rfind(':');
|
|
|
|
if (colon == std::string::npos)
|
|
|
|
throw Error("cannot parse meta.position attribute '%s'", pos);
|
2017-05-08 19:39:33 +03:00
|
|
|
|
2017-08-29 17:18:00 +03:00
|
|
|
std::string filename(pos, 0, colon);
|
2017-12-15 02:11:56 +02:00
|
|
|
int lineno;
|
|
|
|
try {
|
|
|
|
lineno = std::stoi(std::string(pos, colon + 1));
|
2019-09-22 22:29:33 +03:00
|
|
|
} catch (std::invalid_argument & e) {
|
2017-12-15 02:11:56 +02:00
|
|
|
throw Error("cannot parse line number '%s'", pos);
|
|
|
|
}
|
2017-05-08 19:39:33 +03:00
|
|
|
|
2017-08-29 17:18:00 +03:00
|
|
|
stopProgressBar();
|
2017-08-29 16:13:30 +03:00
|
|
|
|
2019-10-23 17:48:28 +03:00
|
|
|
auto args = editorFor(filename, lineno);
|
|
|
|
|
2018-04-17 13:16:04 +03:00
|
|
|
execvp(args.front().c_str(), stringsToCharPtrs(args).data());
|
2017-05-08 19:39:33 +03:00
|
|
|
|
2019-10-23 17:48:28 +03:00
|
|
|
std::string command;
|
|
|
|
for (const auto &arg : args) command += " '" + arg + "'";
|
|
|
|
throw SysError("cannot run command%s", command);
|
2017-05-08 19:39:33 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static RegisterCommand r1(make_ref<CmdEdit>());
|