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 description() override
|
|
|
|
{
|
|
|
|
return "open the Nix expression of a Nix package in $EDITOR";
|
|
|
|
}
|
|
|
|
|
2020-12-09 13:55:24 +02:00
|
|
|
std::string doc() override
|
2017-05-08 19:39:33 +03:00
|
|
|
{
|
2020-12-09 13:55:24 +02:00
|
|
|
return
|
|
|
|
#include "edit.md"
|
|
|
|
;
|
2017-05-08 19:39:33 +03:00
|
|
|
}
|
|
|
|
|
2020-05-05 16:18:23 +03:00
|
|
|
Category category() override { return catSecondary; }
|
|
|
|
|
2017-05-08 19:39:33 +03:00
|
|
|
void run(ref<Store> store) override
|
|
|
|
{
|
|
|
|
auto state = getEvalState();
|
|
|
|
|
2020-02-07 15:22:01 +02:00
|
|
|
auto [v, pos] = installable->toValue(*state);
|
2017-05-08 19:39:33 +03:00
|
|
|
|
2022-03-04 21:54:50 +02:00
|
|
|
const auto [file, line] = [&] {
|
|
|
|
try {
|
|
|
|
return findPackageFilename(*state, *v, installable->what());
|
|
|
|
} catch (NoPositionInfo &) {
|
|
|
|
throw Error("cannot find position information for '%s", installable->what());
|
|
|
|
}
|
|
|
|
}();
|
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
|
|
|
|
2022-03-04 21:54:50 +02:00
|
|
|
auto args = editorFor(file, line);
|
2019-10-23 17:48:28 +03:00
|
|
|
|
2021-04-07 14:10:02 +03:00
|
|
|
restoreProcessContext();
|
|
|
|
|
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
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-10-06 14:36:55 +03:00
|
|
|
static auto rCmdEdit = registerCommand<CmdEdit>("edit");
|