2017-07-17 17:02:56 +00:00
|
|
|
#include "command.hh"
|
|
|
|
#include "globals.hh"
|
|
|
|
#include "eval.hh"
|
|
|
|
#include "eval-inline.hh"
|
|
|
|
#include "names.hh"
|
|
|
|
#include "get-drvs.hh"
|
2017-07-18 15:30:09 +00:00
|
|
|
#include "common-args.hh"
|
|
|
|
#include "json.hh"
|
2017-07-26 15:21:46 +00:00
|
|
|
#include "json-to-value.hh"
|
2017-07-17 17:02:56 +00:00
|
|
|
|
|
|
|
#include <regex>
|
2017-07-26 15:21:46 +00:00
|
|
|
#include <fstream>
|
2017-07-17 17:02:56 +00:00
|
|
|
|
|
|
|
using namespace nix;
|
|
|
|
|
|
|
|
std::string hilite(const std::string & s, const std::smatch & m)
|
|
|
|
{
|
|
|
|
return
|
|
|
|
m.empty()
|
|
|
|
? s
|
|
|
|
: std::string(m.prefix())
|
|
|
|
+ ANSI_RED + std::string(m.str()) + ANSI_NORMAL
|
|
|
|
+ std::string(m.suffix());
|
|
|
|
}
|
|
|
|
|
2017-07-18 15:30:09 +00:00
|
|
|
struct CmdSearch : SourceExprCommand, MixJSON
|
2017-07-17 17:02:56 +00:00
|
|
|
{
|
|
|
|
std::string re;
|
|
|
|
|
2017-07-26 15:21:46 +00:00
|
|
|
bool writeCache = true;
|
|
|
|
bool useCache = true;
|
|
|
|
|
2017-07-17 17:02:56 +00:00
|
|
|
CmdSearch()
|
|
|
|
{
|
|
|
|
expectArg("regex", &re, true);
|
2017-07-26 15:21:46 +00:00
|
|
|
|
|
|
|
mkFlag()
|
|
|
|
.longName("update-cache")
|
|
|
|
.shortName('u')
|
|
|
|
.description("update the package search cache")
|
2017-10-24 10:45:11 +00:00
|
|
|
.handler([&]() { writeCache = true; useCache = false; });
|
2017-07-26 15:21:46 +00:00
|
|
|
|
|
|
|
mkFlag()
|
|
|
|
.longName("no-cache")
|
|
|
|
.description("do not use or update the package search cache")
|
2017-10-24 10:45:11 +00:00
|
|
|
.handler([&]() { writeCache = false; useCache = false; });
|
2017-07-17 17:02:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string name() override
|
|
|
|
{
|
|
|
|
return "search";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string description() override
|
|
|
|
{
|
|
|
|
return "query available packages";
|
|
|
|
}
|
|
|
|
|
2017-09-07 18:42:11 +00:00
|
|
|
Examples examples() override
|
|
|
|
{
|
|
|
|
return {
|
|
|
|
Example{
|
|
|
|
"To show all available packages:",
|
|
|
|
"nix search"
|
|
|
|
},
|
|
|
|
Example{
|
|
|
|
"To show any packages containing 'blender' in its name or description:",
|
|
|
|
"nix search blender"
|
|
|
|
},
|
|
|
|
Example{
|
|
|
|
"To search for Firefox and Chromium:",
|
|
|
|
"nix search 'firefox|chromium'"
|
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2017-07-17 17:02:56 +00:00
|
|
|
void run(ref<Store> store) override
|
|
|
|
{
|
|
|
|
settings.readOnlyMode = true;
|
|
|
|
|
|
|
|
std::regex regex(re, std::regex::extended | std::regex::icase);
|
|
|
|
|
|
|
|
auto state = getEvalState();
|
|
|
|
|
|
|
|
bool first = true;
|
|
|
|
|
2017-11-14 13:27:01 +00:00
|
|
|
auto jsonOut = json ? std::make_unique<JSONObject>(std::cout) : nullptr;
|
2017-07-18 15:30:09 +00:00
|
|
|
|
2017-07-19 14:06:10 +00:00
|
|
|
auto sToplevel = state->symbols.create("_toplevel");
|
2017-07-26 15:21:46 +00:00
|
|
|
auto sRecurse = state->symbols.create("recurseForDerivations");
|
|
|
|
|
|
|
|
bool fromCache = false;
|
2017-07-19 14:06:10 +00:00
|
|
|
|
2017-07-26 15:21:46 +00:00
|
|
|
std::function<void(Value *, std::string, bool, JSONObject *)> doExpr;
|
|
|
|
|
|
|
|
doExpr = [&](Value * v, std::string attrPath, bool toplevel, JSONObject * cache) {
|
2017-07-30 11:27:57 +00:00
|
|
|
debug("at attribute '%s'", attrPath);
|
2017-07-17 17:02:56 +00:00
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
state->forceValue(*v);
|
|
|
|
|
|
|
|
if (v->type == tLambda && toplevel) {
|
|
|
|
Value * v2 = state->allocValue();
|
|
|
|
state->autoCallFunction(*state->allocBindings(1), *v, *v2);
|
|
|
|
v = v2;
|
|
|
|
state->forceValue(*v);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (state->isDerivation(*v)) {
|
|
|
|
|
|
|
|
DrvInfo drv(*state, attrPath, v->attrs);
|
|
|
|
|
|
|
|
DrvName parsed(drv.queryName());
|
|
|
|
|
|
|
|
std::smatch attrPathMatch;
|
|
|
|
std::regex_search(attrPath, attrPathMatch, regex);
|
|
|
|
|
|
|
|
auto name = parsed.name;
|
|
|
|
std::smatch nameMatch;
|
|
|
|
std::regex_search(name, nameMatch, regex);
|
|
|
|
|
|
|
|
std::string description = drv.queryMetaString("description");
|
|
|
|
std::replace(description.begin(), description.end(), '\n', ' ');
|
|
|
|
std::smatch descriptionMatch;
|
|
|
|
std::regex_search(description, descriptionMatch, regex);
|
|
|
|
|
|
|
|
if (!attrPathMatch.empty()
|
|
|
|
|| !nameMatch.empty()
|
|
|
|
|| !descriptionMatch.empty())
|
|
|
|
{
|
2017-07-18 15:30:09 +00:00
|
|
|
if (json) {
|
|
|
|
|
|
|
|
auto jsonElem = jsonOut->object(attrPath);
|
|
|
|
|
|
|
|
jsonElem.attr("pkgName", parsed.name);
|
|
|
|
jsonElem.attr("version", parsed.version);
|
|
|
|
jsonElem.attr("description", description);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
if (!first) std::cout << "\n";
|
|
|
|
first = false;
|
|
|
|
|
|
|
|
std::cout << fmt(
|
|
|
|
"Attribute name: %s\n"
|
|
|
|
"Package name: %s\n"
|
|
|
|
"Version: %s\n"
|
|
|
|
"Description: %s\n",
|
|
|
|
hilite(attrPath, attrPathMatch),
|
|
|
|
hilite(name, nameMatch),
|
|
|
|
parsed.version,
|
|
|
|
hilite(description, descriptionMatch));
|
|
|
|
}
|
2017-07-17 17:02:56 +00:00
|
|
|
}
|
2017-07-26 15:21:46 +00:00
|
|
|
|
|
|
|
if (cache) {
|
|
|
|
cache->attr("type", "derivation");
|
|
|
|
cache->attr("name", drv.queryName());
|
|
|
|
cache->attr("system", drv.querySystem());
|
|
|
|
if (description != "") {
|
|
|
|
auto meta(cache->object("meta"));
|
|
|
|
meta.attr("description", description);
|
|
|
|
}
|
|
|
|
}
|
2017-07-17 17:02:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
else if (v->type == tAttrs) {
|
|
|
|
|
|
|
|
if (!toplevel) {
|
|
|
|
auto attrs = v->attrs;
|
2017-07-26 15:21:46 +00:00
|
|
|
Bindings::iterator j = attrs->find(sRecurse);
|
|
|
|
if (j == attrs->end() || !state->forceBool(*j->value, *j->pos)) {
|
2017-07-30 11:27:57 +00:00
|
|
|
debug("skip attribute '%s'", attrPath);
|
2017-07-26 15:21:46 +00:00
|
|
|
return;
|
|
|
|
}
|
2017-07-17 17:02:56 +00:00
|
|
|
}
|
|
|
|
|
2017-07-26 15:21:46 +00:00
|
|
|
bool toplevel2 = false;
|
|
|
|
if (!fromCache) {
|
|
|
|
Bindings::iterator j = v->attrs->find(sToplevel);
|
|
|
|
toplevel2 = j != v->attrs->end() && state->forceBool(*j->value, *j->pos);
|
|
|
|
}
|
2017-07-17 17:02:56 +00:00
|
|
|
|
|
|
|
for (auto & i : *v->attrs) {
|
2017-07-26 15:21:46 +00:00
|
|
|
auto cache2 =
|
|
|
|
cache ? std::make_unique<JSONObject>(cache->object(i.name)) : nullptr;
|
2017-07-17 17:02:56 +00:00
|
|
|
doExpr(i.value,
|
|
|
|
attrPath == "" ? (std::string) i.name : attrPath + "." + (std::string) i.name,
|
2017-07-26 15:21:46 +00:00
|
|
|
toplevel2 || fromCache, cache2 ? cache2.get() : nullptr);
|
2017-07-17 17:02:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (AssertionError & e) {
|
2017-07-19 14:06:10 +00:00
|
|
|
} catch (Error & e) {
|
|
|
|
if (!toplevel) {
|
2017-07-30 11:27:57 +00:00
|
|
|
e.addPrefix(fmt("While evaluating the attribute '%s':\n", attrPath));
|
2017-07-19 14:06:10 +00:00
|
|
|
throw;
|
|
|
|
}
|
2017-07-17 17:02:56 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-07-26 15:21:46 +00:00
|
|
|
Path jsonCacheFileName = getCacheDir() + "/nix/package-search.json";
|
|
|
|
|
|
|
|
if (useCache && pathExists(jsonCacheFileName)) {
|
|
|
|
|
2017-08-29 13:22:05 +00:00
|
|
|
warn("using cached results; pass '-u' to update the cache");
|
|
|
|
|
2017-07-26 15:21:46 +00:00
|
|
|
Value vRoot;
|
|
|
|
parseJSON(*state, readFile(jsonCacheFileName), vRoot);
|
|
|
|
|
|
|
|
fromCache = true;
|
|
|
|
|
|
|
|
doExpr(&vRoot, "", true, nullptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
else {
|
|
|
|
Path tmpFile = fmt("%s.tmp.%d", jsonCacheFileName, getpid());
|
|
|
|
|
|
|
|
std::ofstream jsonCacheFile(tmpFile);
|
|
|
|
|
|
|
|
auto cache = writeCache ? std::make_unique<JSONObject>(jsonCacheFile, false) : nullptr;
|
|
|
|
|
|
|
|
doExpr(getSourceExpr(*state), "", true, cache.get());
|
|
|
|
|
|
|
|
if (rename(tmpFile.c_str(), jsonCacheFileName.c_str()) == -1)
|
2017-07-30 11:27:57 +00:00
|
|
|
throw SysError("cannot rename '%s' to '%s'", tmpFile, jsonCacheFileName);
|
2017-07-26 15:21:46 +00:00
|
|
|
}
|
2017-07-17 17:02:56 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static RegisterCommand r1(make_ref<CmdSearch>());
|