aboutsummaryrefslogtreecommitdiff
path: root/src/nix/path-from-hash-part.cc
blob: 7f7cda8d3d387b160eb08e711b93dc1f88382fb5 (plain)
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
#include "command.hh"
#include "store-api.hh"

using namespace nix;

struct CmdPathFromHashPart : StoreCommand
{
    std::string hashPart;

    CmdPathFromHashPart()
    {
        expectArgs({
            .label = "hash-part",
            .handler = {&hashPart},
        });
    }

    std::string description() override
    {
        return "get a store path from its hash part";
    }

    std::string doc() override
    {
        return
          #include "path-from-hash-part.md"
          ;
    }

    void run(ref<Store> store) override
    {
        if (auto storePath = store->queryPathFromHashPart(hashPart))
            logger->cout(store->printStorePath(*storePath));
        else
            throw Error("there is no store path corresponding to '%s'", hashPart);
    }
};

static auto rCmdPathFromHashPart = registerCommand2<CmdPathFromHashPart>({"store", "path-from-hash-part"});