2018-11-29 20:18:36 +02:00
|
|
|
#include "command.hh"
|
|
|
|
#include "common-args.hh"
|
|
|
|
#include "shared.hh"
|
|
|
|
#include "progress-bar.hh"
|
|
|
|
#include "eval.hh"
|
2019-04-16 15:10:05 +03:00
|
|
|
#include "primops/flake.hh"
|
|
|
|
|
2019-02-27 20:54:18 +02:00
|
|
|
#include <nlohmann/json.hpp>
|
2019-03-29 17:18:25 +02:00
|
|
|
#include <queue>
|
2018-11-29 20:18:36 +02:00
|
|
|
|
|
|
|
using namespace nix;
|
|
|
|
|
2019-05-22 14:46:07 +03:00
|
|
|
class FlakeCommand : virtual Args, public EvalCommand, public MixFlakeOptions
|
2019-05-16 23:48:16 +03:00
|
|
|
{
|
|
|
|
std::string flakeUri = ".";
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
FlakeCommand()
|
|
|
|
{
|
|
|
|
expectArg("flake-uri", &flakeUri, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
FlakeRef getFlakeRef()
|
|
|
|
{
|
|
|
|
if (flakeUri.find('/') != std::string::npos || flakeUri == ".")
|
|
|
|
return FlakeRef(flakeUri, true);
|
|
|
|
else
|
|
|
|
return FlakeRef(flakeUri);
|
|
|
|
}
|
|
|
|
|
|
|
|
Flake getFlake()
|
|
|
|
{
|
|
|
|
auto evalState = getEvalState();
|
2019-05-22 14:46:07 +03:00
|
|
|
return nix::getFlake(*evalState, getFlakeRef(), useRegistries);
|
|
|
|
}
|
|
|
|
|
|
|
|
ResolvedFlake resolveFlake()
|
|
|
|
{
|
|
|
|
return nix::resolveFlake(*getEvalState(), getFlakeRef(), getLockFileMode());
|
2019-05-16 23:48:16 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct CmdFlakeList : EvalCommand
|
2018-11-29 20:18:36 +02:00
|
|
|
{
|
|
|
|
std::string name() override
|
|
|
|
{
|
|
|
|
return "list";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string description() override
|
|
|
|
{
|
|
|
|
return "list available Nix flakes";
|
|
|
|
}
|
|
|
|
|
|
|
|
void run(nix::ref<nix::Store> store) override
|
|
|
|
{
|
2019-05-16 23:48:16 +03:00
|
|
|
auto registries = getEvalState()->getFlakeRegistries();
|
2018-11-29 20:18:36 +02:00
|
|
|
|
|
|
|
stopProgressBar();
|
|
|
|
|
2019-04-30 12:03:31 +03:00
|
|
|
for (auto & entry : registries[FLAG_REGISTRY]->entries)
|
2019-04-17 15:03:04 +03:00
|
|
|
std::cout << entry.first.to_string() << " flags " << entry.second.to_string() << "\n";
|
|
|
|
|
2019-04-30 12:03:31 +03:00
|
|
|
for (auto & entry : registries[USER_REGISTRY]->entries)
|
2019-04-17 15:03:04 +03:00
|
|
|
std::cout << entry.first.to_string() << " user " << entry.second.to_string() << "\n";
|
|
|
|
|
2019-04-30 12:03:31 +03:00
|
|
|
for (auto & entry : registries[GLOBAL_REGISTRY]->entries)
|
2019-04-17 15:03:04 +03:00
|
|
|
std::cout << entry.first.to_string() << " global " << entry.second.to_string() << "\n";
|
2018-11-29 20:18:36 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-05-22 14:57:19 +03:00
|
|
|
void printFlakeInfo(const Flake & flake, bool json) {
|
2019-03-21 10:30:16 +02:00
|
|
|
if (json) {
|
|
|
|
nlohmann::json j;
|
2019-03-21 10:30:16 +02:00
|
|
|
j["id"] = flake.id;
|
2019-05-01 12:38:48 +03:00
|
|
|
j["uri"] = flake.resolvedRef.to_string();
|
2019-03-21 10:30:16 +02:00
|
|
|
j["description"] = flake.description;
|
2019-05-01 12:38:48 +03:00
|
|
|
if (flake.resolvedRef.ref)
|
|
|
|
j["branch"] = *flake.resolvedRef.ref;
|
|
|
|
if (flake.resolvedRef.rev)
|
|
|
|
j["revision"] = flake.resolvedRef.rev->to_string(Base16, false);
|
|
|
|
if (flake.revCount)
|
|
|
|
j["revCount"] = *flake.revCount;
|
|
|
|
j["path"] = flake.storePath;
|
2019-05-22 15:31:40 +03:00
|
|
|
j["epoch"] = flake.epoch;
|
2019-03-21 10:30:16 +02:00
|
|
|
std::cout << j.dump(4) << std::endl;
|
|
|
|
} else {
|
2019-03-21 10:30:16 +02:00
|
|
|
std::cout << "ID: " << flake.id << "\n";
|
2019-05-01 12:38:48 +03:00
|
|
|
std::cout << "URI: " << flake.resolvedRef.to_string() << "\n";
|
2019-03-21 10:30:16 +02:00
|
|
|
std::cout << "Description: " << flake.description << "\n";
|
2019-05-01 12:38:48 +03:00
|
|
|
if (flake.resolvedRef.ref)
|
2019-05-16 23:48:16 +03:00
|
|
|
std::cout << "Branch: " << *flake.resolvedRef.ref << "\n";
|
2019-05-01 12:38:48 +03:00
|
|
|
if (flake.resolvedRef.rev)
|
|
|
|
std::cout << "Revision: " << flake.resolvedRef.rev->to_string(Base16, false) << "\n";
|
|
|
|
if (flake.revCount)
|
|
|
|
std::cout << "Revcount: " << *flake.revCount << "\n";
|
|
|
|
std::cout << "Path: " << flake.storePath << "\n";
|
2019-05-22 15:31:40 +03:00
|
|
|
std::cout << "Epoch: " << flake.epoch << "\n";
|
2019-03-21 10:30:16 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-22 14:57:19 +03:00
|
|
|
void printNonFlakeInfo(const NonFlake & nonFlake, bool json) {
|
2019-03-21 10:30:16 +02:00
|
|
|
if (json) {
|
|
|
|
nlohmann::json j;
|
2019-05-01 12:38:48 +03:00
|
|
|
j["id"] = nonFlake.alias;
|
|
|
|
j["uri"] = nonFlake.resolvedRef.to_string();
|
|
|
|
if (nonFlake.resolvedRef.ref)
|
|
|
|
j["branch"] = *nonFlake.resolvedRef.ref;
|
|
|
|
if (nonFlake.resolvedRef.rev)
|
|
|
|
j["revision"] = nonFlake.resolvedRef.rev->to_string(Base16, false);
|
|
|
|
if (nonFlake.revCount)
|
|
|
|
j["revCount"] = *nonFlake.revCount;
|
|
|
|
j["path"] = nonFlake.storePath;
|
2019-03-21 10:30:16 +02:00
|
|
|
std::cout << j.dump(4) << std::endl;
|
|
|
|
} else {
|
2019-05-01 12:38:48 +03:00
|
|
|
std::cout << "ID: " << nonFlake.alias << "\n";
|
|
|
|
std::cout << "URI: " << nonFlake.resolvedRef.to_string() << "\n";
|
|
|
|
if (nonFlake.resolvedRef.ref)
|
|
|
|
std::cout << "Branch: " << *nonFlake.resolvedRef.ref;
|
|
|
|
if (nonFlake.resolvedRef.rev)
|
|
|
|
std::cout << "Revision: " << nonFlake.resolvedRef.rev->to_string(Base16, false) << "\n";
|
|
|
|
if (nonFlake.revCount)
|
|
|
|
std::cout << "Revcount: " << *nonFlake.revCount << "\n";
|
|
|
|
std::cout << "Path: " << nonFlake.storePath << "\n";
|
2019-03-21 10:30:16 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-22 14:46:07 +03:00
|
|
|
// FIXME: merge info CmdFlakeInfo?
|
2019-05-16 23:48:16 +03:00
|
|
|
struct CmdFlakeDeps : FlakeCommand, MixJSON
|
2019-03-21 10:30:16 +02:00
|
|
|
{
|
|
|
|
std::string name() override
|
|
|
|
{
|
|
|
|
return "deps";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string description() override
|
|
|
|
{
|
|
|
|
return "list informaton about dependencies";
|
|
|
|
}
|
|
|
|
|
|
|
|
void run(nix::ref<nix::Store> store) override
|
|
|
|
{
|
2019-05-16 23:48:16 +03:00
|
|
|
auto evalState = getEvalState();
|
2019-03-21 10:30:16 +02:00
|
|
|
evalState->addRegistryOverrides(registryOverrides);
|
2019-03-21 10:30:16 +02:00
|
|
|
|
2019-04-19 15:23:35 +03:00
|
|
|
std::queue<ResolvedFlake> todo;
|
2019-05-22 14:57:19 +03:00
|
|
|
todo.push(resolveFlake());
|
2019-03-21 10:30:16 +02:00
|
|
|
|
2019-03-29 17:18:25 +02:00
|
|
|
while (!todo.empty()) {
|
2019-05-22 14:57:19 +03:00
|
|
|
auto resFlake = std::move(todo.front());
|
2019-03-29 17:18:25 +02:00
|
|
|
todo.pop();
|
|
|
|
|
2019-05-22 14:57:19 +03:00
|
|
|
for (auto & nonFlake : resFlake.nonFlakeDeps)
|
2019-03-29 17:18:25 +02:00
|
|
|
printNonFlakeInfo(nonFlake, json);
|
|
|
|
|
2019-05-22 14:57:19 +03:00
|
|
|
for (auto & info : resFlake.flakeDeps) {
|
|
|
|
printFlakeInfo(info.second.flake, json);
|
2019-05-14 12:34:45 +03:00
|
|
|
todo.push(info.second);
|
2019-05-22 14:57:19 +03:00
|
|
|
}
|
2019-03-29 17:18:25 +02:00
|
|
|
}
|
2019-03-21 10:30:16 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-05-16 23:48:16 +03:00
|
|
|
struct CmdFlakeUpdate : FlakeCommand
|
2019-02-21 07:53:01 +02:00
|
|
|
{
|
|
|
|
std::string name() override
|
|
|
|
{
|
|
|
|
return "update";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string description() override
|
|
|
|
{
|
|
|
|
return "update flake lock file";
|
|
|
|
}
|
|
|
|
|
|
|
|
void run(nix::ref<nix::Store> store) override
|
|
|
|
{
|
2019-05-16 23:48:16 +03:00
|
|
|
auto evalState = getEvalState();
|
|
|
|
|
|
|
|
auto flakeRef = getFlakeRef();
|
2019-02-21 07:53:01 +02:00
|
|
|
|
2019-05-16 23:48:16 +03:00
|
|
|
if (std::get_if<FlakeRef::IsPath>(&flakeRef.data))
|
|
|
|
updateLockFile(*evalState, flakeRef, true);
|
|
|
|
else
|
|
|
|
throw Error("cannot update lockfile of flake '%s'", flakeRef);
|
2019-02-21 07:53:01 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-05-16 23:48:16 +03:00
|
|
|
struct CmdFlakeInfo : FlakeCommand, MixJSON
|
2019-02-21 07:53:01 +02:00
|
|
|
{
|
|
|
|
std::string name() override
|
|
|
|
{
|
|
|
|
return "info";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string description() override
|
|
|
|
{
|
|
|
|
return "list info about a given flake";
|
|
|
|
}
|
|
|
|
|
2019-04-16 16:06:40 +03:00
|
|
|
CmdFlakeInfo () { }
|
2019-04-16 09:21:52 +03:00
|
|
|
|
2019-02-21 07:53:01 +02:00
|
|
|
void run(nix::ref<nix::Store> store) override
|
|
|
|
{
|
2019-05-16 23:48:16 +03:00
|
|
|
auto flake = getFlake();
|
2019-03-21 10:30:16 +02:00
|
|
|
printFlakeInfo(flake, json);
|
2019-02-21 07:53:01 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-03-10 08:05:05 +02:00
|
|
|
struct CmdFlakeAdd : MixEvalArgs, Command
|
|
|
|
{
|
2019-04-08 20:03:00 +03:00
|
|
|
FlakeUri alias;
|
|
|
|
FlakeUri uri;
|
2019-03-10 08:05:05 +02:00
|
|
|
|
|
|
|
std::string name() override
|
|
|
|
{
|
|
|
|
return "add";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string description() override
|
|
|
|
{
|
|
|
|
return "upsert flake in user flake registry";
|
|
|
|
}
|
|
|
|
|
|
|
|
CmdFlakeAdd()
|
|
|
|
{
|
2019-04-08 20:03:00 +03:00
|
|
|
expectArg("alias", &alias);
|
|
|
|
expectArg("flake-uri", &uri);
|
2019-03-10 08:05:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void run() override
|
|
|
|
{
|
2019-04-08 20:03:00 +03:00
|
|
|
FlakeRef aliasRef(alias);
|
2019-03-10 08:05:05 +02:00
|
|
|
Path userRegistryPath = getUserRegistryPath();
|
|
|
|
auto userRegistry = readRegistry(userRegistryPath);
|
2019-04-08 20:03:00 +03:00
|
|
|
userRegistry->entries.erase(aliasRef);
|
|
|
|
userRegistry->entries.insert_or_assign(aliasRef, FlakeRef(uri));
|
2019-03-10 08:05:05 +02:00
|
|
|
writeRegistry(*userRegistry, userRegistryPath);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct CmdFlakeRemove : virtual Args, MixEvalArgs, Command
|
|
|
|
{
|
2019-04-08 20:03:00 +03:00
|
|
|
FlakeUri alias;
|
2019-03-10 08:05:05 +02:00
|
|
|
|
|
|
|
std::string name() override
|
|
|
|
{
|
|
|
|
return "remove";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string description() override
|
|
|
|
{
|
|
|
|
return "remove flake from user flake registry";
|
|
|
|
}
|
|
|
|
|
|
|
|
CmdFlakeRemove()
|
|
|
|
{
|
2019-04-08 20:03:00 +03:00
|
|
|
expectArg("alias", &alias);
|
2019-03-10 08:05:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void run() override
|
|
|
|
{
|
|
|
|
Path userRegistryPath = getUserRegistryPath();
|
|
|
|
auto userRegistry = readRegistry(userRegistryPath);
|
2019-04-08 20:03:00 +03:00
|
|
|
userRegistry->entries.erase(FlakeRef(alias));
|
2019-03-10 08:05:05 +02:00
|
|
|
writeRegistry(*userRegistry, userRegistryPath);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-05-16 23:48:16 +03:00
|
|
|
struct CmdFlakePin : virtual Args, EvalCommand
|
2019-03-10 08:05:05 +02:00
|
|
|
{
|
2019-04-08 20:03:00 +03:00
|
|
|
FlakeUri alias;
|
2019-03-10 08:05:05 +02:00
|
|
|
|
|
|
|
std::string name() override
|
|
|
|
{
|
|
|
|
return "pin";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string description() override
|
|
|
|
{
|
|
|
|
return "pin flake require in user flake registry";
|
|
|
|
}
|
|
|
|
|
|
|
|
CmdFlakePin()
|
|
|
|
{
|
2019-04-08 20:03:00 +03:00
|
|
|
expectArg("alias", &alias);
|
2019-03-10 08:05:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void run(nix::ref<nix::Store> store) override
|
|
|
|
{
|
2019-05-16 23:48:16 +03:00
|
|
|
auto evalState = getEvalState();
|
2019-03-10 08:05:05 +02:00
|
|
|
|
|
|
|
Path userRegistryPath = getUserRegistryPath();
|
|
|
|
FlakeRegistry userRegistry = *readRegistry(userRegistryPath);
|
2019-04-08 20:03:00 +03:00
|
|
|
auto it = userRegistry.entries.find(FlakeRef(alias));
|
2019-03-10 08:05:05 +02:00
|
|
|
if (it != userRegistry.entries.end()) {
|
2019-05-01 12:38:48 +03:00
|
|
|
it->second = getFlake(*evalState, it->second, true).resolvedRef;
|
2019-03-10 08:05:05 +02:00
|
|
|
writeRegistry(userRegistry, userRegistryPath);
|
2019-04-16 09:21:52 +03:00
|
|
|
} else {
|
2019-05-22 23:56:46 +03:00
|
|
|
std::shared_ptr<FlakeRegistry> globalReg = evalState->getGlobalFlakeRegistry();
|
2019-04-16 09:21:52 +03:00
|
|
|
it = globalReg->entries.find(FlakeRef(alias));
|
|
|
|
if (it != globalReg->entries.end()) {
|
2019-05-01 12:38:48 +03:00
|
|
|
FlakeRef newRef = getFlake(*evalState, it->second, true).resolvedRef;
|
2019-04-16 09:21:52 +03:00
|
|
|
userRegistry.entries.insert_or_assign(alias, newRef);
|
|
|
|
writeRegistry(userRegistry, userRegistryPath);
|
|
|
|
} else
|
|
|
|
throw Error("the flake alias '%s' does not exist in the user or global registry", alias);
|
|
|
|
}
|
2019-03-10 08:05:05 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-04-09 00:36:12 +03:00
|
|
|
struct CmdFlakeInit : virtual Args, Command
|
|
|
|
{
|
|
|
|
std::string name() override
|
|
|
|
{
|
|
|
|
return "init";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string description() override
|
|
|
|
{
|
|
|
|
return "create a skeleton 'flake.nix' file in the current directory";
|
|
|
|
}
|
|
|
|
|
|
|
|
void run() override
|
|
|
|
{
|
|
|
|
Path flakeDir = absPath(".");
|
|
|
|
|
|
|
|
if (!pathExists(flakeDir + "/.git"))
|
|
|
|
throw Error("the directory '%s' is not a Git repository", flakeDir);
|
|
|
|
|
|
|
|
Path flakePath = flakeDir + "/flake.nix";
|
|
|
|
|
|
|
|
if (pathExists(flakePath))
|
|
|
|
throw Error("file '%s' already exists", flakePath);
|
|
|
|
|
|
|
|
writeFile(flakePath,
|
2019-04-09 00:39:38 +03:00
|
|
|
#include "flake-template.nix.gen.hh"
|
|
|
|
);
|
2019-04-09 00:36:12 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-05-16 23:48:16 +03:00
|
|
|
struct CmdFlakeClone : FlakeCommand
|
2019-03-21 10:30:16 +02:00
|
|
|
{
|
2019-05-22 14:46:07 +03:00
|
|
|
Path destDir;
|
2019-03-21 10:30:16 +02:00
|
|
|
|
|
|
|
std::string name() override
|
|
|
|
{
|
|
|
|
return "clone";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string description() override
|
|
|
|
{
|
|
|
|
return "clone flake repository";
|
|
|
|
}
|
|
|
|
|
|
|
|
CmdFlakeClone()
|
|
|
|
{
|
2019-05-22 14:46:07 +03:00
|
|
|
expectArg("dest-dir", &destDir, true);
|
2019-03-21 10:30:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void run(nix::ref<nix::Store> store) override
|
|
|
|
{
|
2019-05-16 23:48:16 +03:00
|
|
|
auto evalState = getEvalState();
|
2019-03-21 10:30:16 +02:00
|
|
|
|
|
|
|
Registries registries = evalState->getFlakeRegistries();
|
2019-05-22 14:46:07 +03:00
|
|
|
gitCloneFlake(getFlakeRef().to_string(), *evalState, registries, destDir);
|
2019-03-21 10:30:16 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-11-29 20:18:36 +02:00
|
|
|
struct CmdFlake : virtual MultiCommand, virtual Command
|
|
|
|
{
|
|
|
|
CmdFlake()
|
2019-02-21 07:53:01 +02:00
|
|
|
: MultiCommand({make_ref<CmdFlakeList>()
|
2019-03-10 08:05:05 +02:00
|
|
|
, make_ref<CmdFlakeUpdate>()
|
2019-02-21 07:53:01 +02:00
|
|
|
, make_ref<CmdFlakeInfo>()
|
2019-03-21 10:30:16 +02:00
|
|
|
, make_ref<CmdFlakeDeps>()
|
2019-03-10 08:05:05 +02:00
|
|
|
, make_ref<CmdFlakeAdd>()
|
|
|
|
, make_ref<CmdFlakeRemove>()
|
2019-04-09 00:36:12 +03:00
|
|
|
, make_ref<CmdFlakePin>()
|
|
|
|
, make_ref<CmdFlakeInit>()
|
2019-03-21 10:30:16 +02:00
|
|
|
, make_ref<CmdFlakeClone>()
|
2019-04-09 00:36:12 +03:00
|
|
|
})
|
2018-11-29 20:18:36 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string name() override
|
|
|
|
{
|
|
|
|
return "flake";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string description() override
|
|
|
|
{
|
|
|
|
return "manage Nix flakes";
|
|
|
|
}
|
|
|
|
|
|
|
|
void run() override
|
|
|
|
{
|
|
|
|
if (!command)
|
|
|
|
throw UsageError("'nix flake' requires a sub-command.");
|
|
|
|
command->run();
|
|
|
|
}
|
|
|
|
|
|
|
|
void printHelp(const string & programName, std::ostream & out) override
|
|
|
|
{
|
|
|
|
MultiCommand::printHelp(programName, out);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static RegisterCommand r1(make_ref<CmdFlake>());
|