forked from lix-project/lix
* printTermAsXML: treat derivations specially; emit an element
<derivation outPath=... drvPath=...> attrs </derivation>. Only emit the attributes of any specific derivation only. This prevents exponententially large XML output due to the absense of sharing.
This commit is contained in:
parent
792878af91
commit
5011588459
|
@ -16,7 +16,30 @@ static XMLAttrs singletonAttrs(const string & name, const string & value)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static void printTermAsXML(Expr e, XMLWriter & doc, PathSet & context)
|
/* set<Expr> is safe because all the expressions are also reachable
|
||||||
|
from the stack, therefore can't be garbage-collected. */
|
||||||
|
typedef set<Expr> ExprSet;
|
||||||
|
|
||||||
|
|
||||||
|
static void printTermAsXML(Expr e, XMLWriter & doc, PathSet & context,
|
||||||
|
ExprSet & drvsSeen);
|
||||||
|
|
||||||
|
|
||||||
|
static void showAttrs(const ATermMap & attrs, XMLWriter & doc,
|
||||||
|
PathSet & context, ExprSet & drvsSeen)
|
||||||
|
{
|
||||||
|
StringSet names;
|
||||||
|
for (ATermMap::const_iterator i = attrs.begin(); i != attrs.end(); ++i)
|
||||||
|
names.insert(aterm2String(i->key));
|
||||||
|
for (StringSet::iterator i = names.begin(); i != names.end(); ++i) {
|
||||||
|
XMLOpenElement _(doc, "attr", singletonAttrs("name", *i));
|
||||||
|
printTermAsXML(attrs.get(toATerm(*i)), doc, context, drvsSeen);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static void printTermAsXML(Expr e, XMLWriter & doc, PathSet & context,
|
||||||
|
ExprSet & drvsSeen)
|
||||||
{
|
{
|
||||||
XMLAttrs attrs;
|
XMLAttrs attrs;
|
||||||
string s;
|
string s;
|
||||||
|
@ -46,22 +69,42 @@ static void printTermAsXML(Expr e, XMLWriter & doc, PathSet & context)
|
||||||
doc.writeEmptyElement("bool", singletonAttrs("value", "false"));
|
doc.writeEmptyElement("bool", singletonAttrs("value", "false"));
|
||||||
|
|
||||||
else if (matchAttrs(e, as)) {
|
else if (matchAttrs(e, as)) {
|
||||||
XMLOpenElement _(doc, "attrs");
|
|
||||||
ATermMap attrs;
|
ATermMap attrs;
|
||||||
queryAllAttrs(e, attrs);
|
queryAllAttrs(e, attrs);
|
||||||
StringSet names;
|
|
||||||
for (ATermMap::const_iterator i = attrs.begin(); i != attrs.end(); ++i)
|
Expr a = attrs.get(toATerm("type"));
|
||||||
names.insert(aterm2String(i->key));
|
if (a && matchStr(a, s, context) && s == "derivation") {
|
||||||
for (StringSet::iterator i = names.begin(); i != names.end(); ++i) {
|
|
||||||
XMLOpenElement _(doc, "attr", singletonAttrs("name", *i));
|
XMLAttrs xmlAttrs;
|
||||||
printTermAsXML(attrs.get(toATerm(*i)), doc, context);
|
Path outPath, drvPath;
|
||||||
|
|
||||||
|
a = attrs.get(toATerm("drvPath"));
|
||||||
|
if (matchStr(a, drvPath, context))
|
||||||
|
xmlAttrs["drvPath"] = drvPath;
|
||||||
|
|
||||||
|
a = attrs.get(toATerm("outPath"));
|
||||||
|
if (matchStr(a, outPath, context))
|
||||||
|
xmlAttrs["outPath"] = outPath;
|
||||||
|
|
||||||
|
XMLOpenElement _(doc, "derivation", xmlAttrs);
|
||||||
|
|
||||||
|
if (drvsSeen.find(e) == drvsSeen.end()) {
|
||||||
|
drvsSeen.insert(e);
|
||||||
|
showAttrs(attrs, doc, context, drvsSeen);
|
||||||
|
} else
|
||||||
|
doc.writeEmptyElement("repeated");
|
||||||
|
}
|
||||||
|
|
||||||
|
else {
|
||||||
|
XMLOpenElement _(doc, "attrs");
|
||||||
|
showAttrs(attrs, doc, context, drvsSeen);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
else if (matchList(e, es)) {
|
else if (matchList(e, es)) {
|
||||||
XMLOpenElement _(doc, "list");
|
XMLOpenElement _(doc, "list");
|
||||||
for (ATermIterator i(es); i; ++i)
|
for (ATermIterator i(es); i; ++i)
|
||||||
printTermAsXML(*i, doc, context);
|
printTermAsXML(*i, doc, context, drvsSeen);
|
||||||
}
|
}
|
||||||
|
|
||||||
else if (matchFunction(e, formals, body, pos)) {
|
else if (matchFunction(e, formals, body, pos)) {
|
||||||
|
@ -76,7 +119,7 @@ static void printTermAsXML(Expr e, XMLWriter & doc, PathSet & context)
|
||||||
if (matchValidValues(valids, valids2)) {
|
if (matchValidValues(valids, valids2)) {
|
||||||
for (ATermIterator j(valids2); j; ++j) {
|
for (ATermIterator j(valids2); j; ++j) {
|
||||||
XMLOpenElement _(doc, "value");
|
XMLOpenElement _(doc, "value");
|
||||||
printTermAsXML(*j, doc, context);
|
printTermAsXML(*j, doc, context, drvsSeen);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -91,7 +134,8 @@ void printTermAsXML(Expr e, std::ostream & out, PathSet & context)
|
||||||
{
|
{
|
||||||
XMLWriter doc(true, out);
|
XMLWriter doc(true, out);
|
||||||
XMLOpenElement root(doc, "expr");
|
XMLOpenElement root(doc, "expr");
|
||||||
printTermAsXML(e, doc, context);
|
ExprSet drvsSeen;
|
||||||
|
printTermAsXML(e, doc, context, drvsSeen);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue