1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#include "lix/libcmd/command.hh"
#include "lix/libmain/shared.hh"
#include "lix/libexpr/eval.hh"
#include "lix/libexpr/attr-path.hh"
#include "lix/libcmd/editor-for.hh"
#include "lix/libutil/c-calls.hh"
#include "lix/libutil/current-process.hh"
#include "edit.hh"

#include <unistd.h>

namespace nix {

struct CmdEdit : InstallableCommand
{
    std::string description() override
    {
        return "open the Nix expression of a Nix package in $EDITOR";
    }

    std::string doc() override
    {
        return
          #include "edit.md"
          ;
    }

    Category category() override { return catSecondary; }

    void run(ref<Store> store, ref<Installable> installable) override
    {
        auto evaluator = getEvaluator();
        auto state = evaluator->begin(aio());

        auto const installableValue = InstallableValue::require(installable);

        const auto [file, line] = [&] {
            auto [v, pos] = installableValue->toValue(*state);

            try {
                return findPackageFilename(*state, v, installable->what());
            } catch (NoPositionInfo &) {
                throw Error("cannot find position information for '%s", installableValue->what());
            }
        }();

        logger->pause();

        auto args = editorFor(file, line);

        restoreProcessContext();

        printMsg(lvlChatty, "running editor: %s", concatMapStringsSep(" ", args, shellEscape));

        sys::execvp(args.front(), args);

        std::string command;
        for (const auto &arg : args) command += " '" + arg + "'";
        throw SysError("cannot run command%s", command);
    }
};

void registerNixEdit()
{
    registerCommand<CmdEdit>("edit");
}

}