2017-05-08 16:39:33 +00:00
|
|
|
#include "command.hh"
|
|
|
|
#include "shared.hh"
|
|
|
|
#include "eval.hh"
|
|
|
|
#include "attr-path.hh"
|
2017-08-29 13:13:30 +00:00
|
|
|
#include "progress-bar.hh"
|
2017-05-08 16:39:33 +00:00
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
using namespace nix;
|
|
|
|
|
|
|
|
struct CmdEdit : InstallablesCommand
|
|
|
|
{
|
|
|
|
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();
|
|
|
|
|
|
|
|
for (auto & i : installables) {
|
|
|
|
auto v = i->toValue(*state);
|
|
|
|
|
|
|
|
Value * v2;
|
|
|
|
try {
|
|
|
|
auto dummyArgs = state->allocBindings(0);
|
|
|
|
v2 = findAlongAttrPath(*state, "meta.position", *dummyArgs, *v);
|
|
|
|
} catch (Error &) {
|
2017-07-30 11:27:57 +00:00
|
|
|
throw Error("package '%s' has no source location information", i->what());
|
2017-05-08 16:39:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
auto pos = state->forceString(*v2);
|
|
|
|
debug("position is %s", pos);
|
|
|
|
|
|
|
|
auto colon = pos.rfind(':');
|
|
|
|
if (colon == std::string::npos)
|
2017-07-30 11:27:57 +00:00
|
|
|
throw Error("cannot parse meta.position attribute '%s'", pos);
|
2017-05-08 16:39:33 +00:00
|
|
|
|
|
|
|
std::string filename(pos, 0, colon);
|
|
|
|
int lineno = std::stoi(std::string(pos, colon + 1));
|
|
|
|
|
|
|
|
auto editor = getEnv("EDITOR", "cat");
|
|
|
|
|
|
|
|
Strings args{editor};
|
|
|
|
|
|
|
|
if (editor.find("emacs") != std::string::npos ||
|
|
|
|
editor.find("nano") != std::string::npos ||
|
|
|
|
editor.find("vim") != std::string::npos)
|
|
|
|
args.push_back(fmt("+%d", lineno));
|
|
|
|
|
|
|
|
args.push_back(filename);
|
|
|
|
|
2017-08-29 13:13:30 +00:00
|
|
|
stopProgressBar();
|
|
|
|
|
2017-05-08 16:39:33 +00:00
|
|
|
execvp(editor.c_str(), stringsToCharPtrs(args).data());
|
|
|
|
|
2017-07-30 11:27:57 +00:00
|
|
|
throw SysError("cannot run editor '%s'", editor);
|
2017-05-08 16:39:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static RegisterCommand r1(make_ref<CmdEdit>());
|