1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-20 23:28:26 -04:00
nix/src/libexpr/value-to-json.cc

101 lines
2.5 KiB
C++
Raw Normal View History

2013-11-18 18:33:06 -05:00
#include "value-to-json.hh"
2013-11-18 18:03:11 -05:00
#include "eval-inline.hh"
#include "util.hh"
#include <cstdlib>
#include <iomanip>
2013-11-18 18:03:11 -05:00
namespace nix {
2013-11-18 18:33:06 -05:00
void escapeJSON(std::ostream & str, const string & s)
2013-11-18 18:03:11 -05:00
{
str << "\"";
2015-07-17 13:24:28 -04: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 18:03:11 -05: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 18:33:06 -05:00
JSONObject json(str);
2013-11-18 18:03:11 -05:00
StringSet names;
2015-07-17 13:24:28 -04: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 18:03:11 -05:00
printValueAsJSON(state, strict, *a.value, str, context);
}
} else
printValueAsJSON(state, strict, *i->value, str, context);
break;
}
case tList: {
2013-11-18 18:33:06 -05:00
JSONList json(str);
2013-11-18 18:03:11 -05:00
for (unsigned int n = 0; n < v.list.length; ++n) {
2013-11-18 18:33:06 -05:00
json.elem();
2013-11-18 18:03:11 -05:00
printValueAsJSON(state, strict, *v.list.elems[n], str, context);
}
break;
}
2015-07-17 13:24:28 -04:00
case tExternal:
v.external->printValueAsJSON(state, strict, str, context);
break;
2013-11-18 18:03:11 -05:00
default:
throw TypeError(format("cannot convert %1% to JSON") % showType(v));
}
}
void ExternalValueBase::printValueAsJSON(EvalState & state, bool strict,
std::ostream & str, PathSet & context) const
{
throw TypeError(format("cannot convert %1% to JSON") % showType());
}
2013-11-18 18:03:11 -05:00
}