aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2010-06-10 10:29:50 +0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2010-06-10 10:29:50 +0000
commitf16fe2af8d59fef156c29077a240a832d3e60ef2 (patch)
treee76a9db974af45eb58015aa638f0ce170f2565e7 /src
parent07ca66cf242eef3c7a6396e9353e48037034498b (diff)
* builtins.toXML: propagate the string context. This is a regression
from the old ATerm-based evaluator.
Diffstat (limited to 'src')
-rw-r--r--src/libexpr/eval.cc14
-rw-r--r--src/libexpr/eval.hh2
-rw-r--r--src/libexpr/value-to-xml.cc1
3 files changed, 12 insertions, 5 deletions
diff --git a/src/libexpr/eval.cc b/src/libexpr/eval.cc
index f95df5e4d..eb1d8d432 100644
--- a/src/libexpr/eval.cc
+++ b/src/libexpr/eval.cc
@@ -902,12 +902,18 @@ string EvalState::forceString(Value & v)
}
-string EvalState::forceString(Value & v, PathSet & context)
+void copyContext(const Value & v, PathSet & context)
{
- string s = forceString(v);
if (v.string.context)
for (const char * * p = v.string.context; *p; ++p)
context.insert(*p);
+}
+
+
+string EvalState::forceString(Value & v, PathSet & context)
+{
+ string s = forceString(v);
+ copyContext(v, context);
return s;
}
@@ -938,9 +944,7 @@ string EvalState::coerceToString(Value & v, PathSet & context,
string s;
if (v.type == tString) {
- if (v.string.context)
- for (const char * * p = v.string.context; *p; ++p)
- context.insert(*p);
+ copyContext(v, context);
return v.string.s;
}
diff --git a/src/libexpr/eval.hh b/src/libexpr/eval.hh
index 65c689a50..0cdf0b283 100644
--- a/src/libexpr/eval.hh
+++ b/src/libexpr/eval.hh
@@ -161,6 +161,8 @@ void mkString(Value & v, const char * s);
void mkString(Value & v, const string & s, const PathSet & context = PathSet());
void mkPath(Value & v, const char * s);
+void copyContext(const Value & v, PathSet & context);
+
typedef std::map<Path, Hash> DrvHashes;
diff --git a/src/libexpr/value-to-xml.cc b/src/libexpr/value-to-xml.cc
index e751fd300..8955a8a33 100644
--- a/src/libexpr/value-to-xml.cc
+++ b/src/libexpr/value-to-xml.cc
@@ -69,6 +69,7 @@ static void printValueAsXML(EvalState & state, bool strict, bool location,
case tString:
/* !!! show the context? */
+ copyContext(v, context);
doc.writeEmptyElement("string", singletonAttrs("value", v.string.s));
break;