aboutsummaryrefslogtreecommitdiff
path: root/src/nix/describe-stores.cc
blob: f019ec9c2aa281e18988f4227ad46a411e5f8e11 (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
#include "command.hh"
#include "common-args.hh"
#include "shared.hh"
#include "store-api.hh"

#include <nlohmann/json.hpp>

using namespace nix;

struct CmdDescribeStores : Command, MixJSON
{
    std::string description() override
    {
        return "show registered store types and their available options";
    }

    Category category() override { return catUtility; }

    void run() override
    {

        if (json) {
            auto res = nlohmann::json::array();
            for (auto & implem : *Implementations::registered) {
                auto storeConfig = implem.getConfig();
                std::cout << storeConfig->toJSON().dump() << std::endl;
            }
        } else {
            throw Error("Only json is available for describe-stores");
        }
    }
};

static auto r1 = registerCommand<CmdDescribeStores>("describe-stores");