2013-11-18 23:33:06 +00:00
|
|
|
#include "value-to-json.hh"
|
2013-11-18 23:03:11 +00:00
|
|
|
#include "eval-inline.hh"
|
|
|
|
#include "util.hh"
|
|
|
|
|
|
|
|
#include <cstdlib>
|
2014-09-29 22:41:18 +00:00
|
|
|
#include <iomanip>
|
2013-11-18 23:03:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
|
2013-11-18 23:33:06 +00:00
|
|
|
void escapeJSON(std::ostream & str, const string & s)
|
2013-11-18 23:03:11 +00:00
|
|
|
{
|
|
|
|
str << "\"";
|
2015-07-17 17:24:28 +00:00
|
|
|
for (auto & i : s)
|
|
|
|
if (i == '\"' || i == '\\') str << "\\" << i;
|
|
|
|
else if (i == '\n') str << "\\n";
|
|
|
|
else if (i == '\r') str << "\\r";
|
|
|
|
else if (i == '\t') str << "\\t";
|
|
|
|
else if (i >= 0 && i < 32)
|
|
|
|
str << "\\u" << std::setfill('0') << std::setw(4) << std::hex << (uint16_t) i << std::dec;
|
|
|
|
else str << i;
|
2013-11-18 23:03:11 +00:00
|
|
|
str << "\"";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void printValueAsJSON(EvalState & state, bool strict,
|
|
|
|
Value & v, std::ostream & str, PathSet & context)
|
|
|
|
{
|
|
|
|
checkInterrupt();
|
|
|
|
|
|
|
|
if (strict) state.forceValue(v);
|
|
|
|
|
|
|
|
switch (v.type) {
|
|
|
|
|
|
|
|
case tInt:
|
|
|
|
str << v.integer;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case tBool:
|
|
|
|
str << (v.boolean ? "true" : "false");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case tString:
|
|
|
|
copyContext(v, context);
|
|
|
|
escapeJSON(str, v.string.s);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case tPath:
|
|
|
|
escapeJSON(str, state.copyPathToStore(context, v.path));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case tNull:
|
|
|
|
str << "null";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case tAttrs: {
|
|
|
|
Bindings::iterator i = v.attrs->find(state.sOutPath);
|
|
|
|
if (i == v.attrs->end()) {
|
2013-11-18 23:33:06 +00:00
|
|
|
JSONObject json(str);
|
2013-11-18 23:03:11 +00:00
|
|
|
StringSet names;
|
2015-07-17 17:24:28 +00:00
|
|
|
for (auto & j : *v.attrs)
|
|
|
|
names.insert(j.name);
|
|
|
|
for (auto & j : names) {
|
|
|
|
Attr & a(*v.attrs->find(state.symbols.create(j)));
|
|
|
|
json.attr(j);
|
2013-11-18 23:03:11 +00:00
|
|
|
printValueAsJSON(state, strict, *a.value, str, context);
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
printValueAsJSON(state, strict, *i->value, str, context);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2015-07-23 20:05:09 +00:00
|
|
|
case tList1: case tList2: case tListN: {
|
2013-11-18 23:33:06 +00:00
|
|
|
JSONList json(str);
|
2015-07-23 20:05:09 +00:00
|
|
|
for (unsigned int n = 0; n < v.listSize(); ++n) {
|
2013-11-18 23:33:06 +00:00
|
|
|
json.elem();
|
2015-07-23 20:05:09 +00:00
|
|
|
printValueAsJSON(state, strict, *v.listElems()[n], str, context);
|
2013-11-18 23:03:11 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2015-07-17 17:24:28 +00:00
|
|
|
case tExternal:
|
2014-11-30 18:16:19 +00:00
|
|
|
v.external->printValueAsJSON(state, strict, str, context);
|
|
|
|
break;
|
|
|
|
|
2016-01-04 23:40:40 +00:00
|
|
|
case tFloat:
|
|
|
|
str << v.fpoint;
|
|
|
|
break;
|
|
|
|
|
2013-11-18 23:03:11 +00:00
|
|
|
default:
|
|
|
|
throw TypeError(format("cannot convert %1% to JSON") % showType(v));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-11-30 18:16:19 +00:00
|
|
|
void ExternalValueBase::printValueAsJSON(EvalState & state, bool strict,
|
2014-12-02 15:02:03 +00:00
|
|
|
std::ostream & str, PathSet & context) const
|
2014-11-30 18:16:19 +00:00
|
|
|
{
|
|
|
|
throw TypeError(format("cannot convert %1% to JSON") % showType());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-11-18 23:03:11 +00:00
|
|
|
}
|