2010-04-19 12:47:56 +02:00
|
|
|
#include "util.hh"
|
|
|
|
#include "get-drvs.hh"
|
|
|
|
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
|
2010-04-19 14:10:04 +02:00
|
|
|
static void readLegacyManifest(const Path & path, DrvInfos & elems);
|
|
|
|
|
|
|
|
|
2010-04-19 12:47:56 +02:00
|
|
|
DrvInfos queryInstalled(EvalState & state, const Path & userEnv)
|
|
|
|
{
|
2010-04-19 14:10:04 +02:00
|
|
|
DrvInfos elems;
|
|
|
|
|
2010-04-19 12:47:56 +02:00
|
|
|
Path path = userEnv + "/manifest";
|
|
|
|
|
|
|
|
if (!pathExists(path))
|
|
|
|
return DrvInfos(); /* not an error, assume nothing installed */
|
|
|
|
|
2010-04-19 14:10:04 +02:00
|
|
|
readLegacyManifest(path, elems);
|
2010-04-19 12:47:56 +02:00
|
|
|
|
|
|
|
return elems;
|
2010-04-19 14:10:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Code for parsing manifests in the old textual ATerm format. */
|
|
|
|
|
|
|
|
static string parseStr(std::istream & str)
|
|
|
|
{
|
|
|
|
expect(str, "Str(");
|
|
|
|
string s = parseString(str);
|
|
|
|
expect(str, ",[])");
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static string parseWord(std::istream & str)
|
|
|
|
{
|
|
|
|
string res;
|
|
|
|
while (isalpha(str.peek()))
|
|
|
|
res += str.get();
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static MetaInfo parseMeta(std::istream & str)
|
|
|
|
{
|
|
|
|
MetaInfo meta;
|
|
|
|
|
|
|
|
expect(str, "Attrs([");
|
|
|
|
while (!endOfList(str)) {
|
|
|
|
expect(str, "Bind(");
|
|
|
|
|
|
|
|
MetaValue value;
|
|
|
|
|
|
|
|
string name = parseString(str);
|
|
|
|
expect(str, ",");
|
|
|
|
|
|
|
|
string type = parseWord(str);
|
|
|
|
|
|
|
|
if (type == "Str") {
|
|
|
|
expect(str, "(");
|
|
|
|
value.type = MetaValue::tpString;
|
|
|
|
value.stringValue = parseString(str);
|
|
|
|
expect(str, ",[])");
|
|
|
|
}
|
|
|
|
|
|
|
|
else if (type == "List") {
|
|
|
|
expect(str, "([");
|
|
|
|
value.type = MetaValue::tpStrings;
|
|
|
|
while (!endOfList(str))
|
|
|
|
value.stringValues.push_back(parseStr(str));
|
|
|
|
expect(str, ")");
|
|
|
|
}
|
|
|
|
|
|
|
|
else throw Error(format("unexpected token `%1%'") % type);
|
|
|
|
|
|
|
|
expect(str, ",NoPos)");
|
|
|
|
meta[name] = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(str, ")");
|
|
|
|
|
|
|
|
return meta;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void readLegacyManifest(const Path & path, DrvInfos & elems)
|
|
|
|
{
|
|
|
|
string manifest = readFile(path);
|
|
|
|
std::istringstream str(manifest);
|
|
|
|
expect(str, "List([");
|
|
|
|
|
|
|
|
unsigned int n = 0;
|
|
|
|
|
|
|
|
while (!endOfList(str)) {
|
|
|
|
DrvInfo elem;
|
|
|
|
expect(str, "Attrs([");
|
|
|
|
|
|
|
|
while (!endOfList(str)) {
|
|
|
|
expect(str, "Bind(");
|
|
|
|
string name = parseString(str);
|
|
|
|
expect(str, ",");
|
|
|
|
|
|
|
|
if (name == "meta") elem.setMetaInfo(parseMeta(str));
|
|
|
|
else {
|
|
|
|
string value = parseStr(str);
|
|
|
|
if (name == "name") elem.name = value;
|
|
|
|
else if (name == "outPath") elem.setOutPath(value);
|
|
|
|
else if (name == "drvPath") elem.setDrvPath(value);
|
|
|
|
else if (name == "system") elem.system = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(str, ",NoPos)");
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(str, ")");
|
|
|
|
|
|
|
|
if (elem.name != "") {
|
|
|
|
elem.attrPath = int2String(n++);
|
|
|
|
elems.push_back(elem);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(str, ")");
|
2010-04-19 12:47:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|