mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
51 lines
1.3 KiB
C++
51 lines
1.3 KiB
C++
#include "command.hh"
|
|
#include "shared.hh"
|
|
#include "store-api.hh"
|
|
#include "store-cast.hh"
|
|
#include "log-store.hh"
|
|
#include "sync.hh"
|
|
#include "thread-pool.hh"
|
|
|
|
#include <atomic>
|
|
|
|
using namespace nix;
|
|
|
|
struct CmdCopyLog : virtual CopyCommand, virtual InstallablesCommand
|
|
{
|
|
std::string description() override
|
|
{
|
|
return "copy build logs between Nix stores";
|
|
}
|
|
|
|
std::string doc() override
|
|
{
|
|
return
|
|
#include "store-copy-log.md"
|
|
;
|
|
}
|
|
|
|
Category category() override { return catUtility; }
|
|
|
|
void run(ref<Store> srcStore) override
|
|
{
|
|
auto & srcLogStore = require<LogStore>(*srcStore);
|
|
|
|
auto dstStore = getDstStore();
|
|
auto & dstLogStore = require<LogStore>(*dstStore);
|
|
|
|
StorePathSet drvPaths;
|
|
|
|
for (auto & i : installables)
|
|
for (auto & drvPath : i->toDrvPaths(getEvalStore()))
|
|
drvPaths.insert(drvPath);
|
|
|
|
for (auto & drvPath : drvPaths) {
|
|
if (auto log = srcLogStore.getBuildLog(drvPath))
|
|
dstLogStore.addBuildLog(drvPath, *log);
|
|
else
|
|
throw Error("build log for '%s' is not available", srcStore->printStorePath(drvPath));
|
|
}
|
|
}
|
|
};
|
|
|
|
static auto rCmdCopyLog = registerCommand2<CmdCopyLog>({"store", "copy-log"});
|