mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 08:46:16 +02:00
59 lines
1.7 KiB
C++
59 lines
1.7 KiB
C++
#include "command.hh"
|
|
#include "store-api.hh"
|
|
#include "make-content-addressed.hh"
|
|
#include "common-args.hh"
|
|
|
|
#include <nlohmann/json.hpp>
|
|
|
|
using namespace nix;
|
|
|
|
using nlohmann::json;
|
|
|
|
struct CmdMakeContentAddressed : virtual CopyCommand, virtual StorePathsCommand, MixJSON
|
|
{
|
|
CmdMakeContentAddressed()
|
|
{
|
|
realiseMode = Realise::Outputs;
|
|
}
|
|
|
|
std::string description() override
|
|
{
|
|
return "rewrite a path or closure to content-addressed form";
|
|
}
|
|
|
|
std::string doc() override
|
|
{
|
|
return
|
|
#include "make-content-addressed.md"
|
|
;
|
|
}
|
|
|
|
using StorePathsCommand::run;
|
|
void run(ref<Store> srcStore, StorePaths && storePaths) override
|
|
{
|
|
auto dstStore = dstUri.empty() ? openStore() : openStore(dstUri);
|
|
|
|
auto remappings = makeContentAddressed(*srcStore, *dstStore,
|
|
StorePathSet(storePaths.begin(), storePaths.end()));
|
|
|
|
if (json) {
|
|
nlohmann::json jsonRewrites = json::object();
|
|
for (auto & path : storePaths) {
|
|
auto i = remappings.find(path);
|
|
assert(i != remappings.end());
|
|
jsonRewrites[srcStore->printStorePath(path)] = srcStore->printStorePath(i->second);
|
|
}
|
|
std::cout << json::object({"rewrites", jsonRewrites}).dump();
|
|
} else {
|
|
for (auto & path : storePaths) {
|
|
auto i = remappings.find(path);
|
|
assert(i != remappings.end());
|
|
notice("rewrote '%s' to '%s'",
|
|
srcStore->printStorePath(path),
|
|
srcStore->printStorePath(i->second));
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
static auto rCmdMakeContentAddressed = registerCommand2<CmdMakeContentAddressed>({"store", "make-content-addressed"});
|