nix-super/src/libexpr/value-to-json.cc

104 lines
2.7 KiB
C++
Raw Normal View History

2013-11-19 01:33:06 +02:00
#include "value-to-json.hh"
#include "json.hh"
2013-11-19 01:03:11 +02:00
#include "eval-inline.hh"
#include "util.hh"
#include <cstdlib>
#include <iomanip>
2013-11-19 01:03:11 +02:00
namespace nix {
void printValueAsJSON(EvalState & state, bool strict,
Value & v, JSONPlaceholder & out, PathSet & context)
2013-11-19 01:03:11 +02:00
{
checkInterrupt();
if (strict) state.forceValue(v);
switch (v.normalType()) {
2013-11-19 01:03:11 +02:00
case nInt:
out.write(v.integer);
2013-11-19 01:03:11 +02:00
break;
case nBool:
out.write(v.boolean);
2013-11-19 01:03:11 +02:00
break;
case nString:
2013-11-19 01:03:11 +02:00
copyContext(v, context);
out.write(v.string.s);
2013-11-19 01:03:11 +02:00
break;
case nPath:
out.write(state.copyPathToStore(context, v.path));
2013-11-19 01:03:11 +02:00
break;
case nNull:
out.write(nullptr);
2013-11-19 01:03:11 +02:00
break;
case nAttrs: {
2019-10-27 11:15:51 +02:00
auto maybeString = state.tryAttrsToString(noPos, v, context, false, false);
if (maybeString) {
out.write(*maybeString);
break;
}
auto i = v.attrs->find(state.sOutPath);
2013-11-19 01:03:11 +02:00
if (i == v.attrs->end()) {
auto obj(out.object());
2013-11-19 01:03:11 +02:00
StringSet names;
2015-07-17 20:24:28 +03:00
for (auto & j : *v.attrs)
names.insert(j.name);
for (auto & j : names) {
Attr & a(*v.attrs->find(state.symbols.create(j)));
auto placeholder(obj.placeholder(j));
printValueAsJSON(state, strict, *a.value, placeholder, context);
2013-11-19 01:03:11 +02:00
}
} else
printValueAsJSON(state, strict, *i->value, out, context);
2013-11-19 01:03:11 +02:00
break;
}
case nList: {
auto list(out.list());
for (unsigned int n = 0; n < v.listSize(); ++n) {
auto placeholder(list.placeholder());
printValueAsJSON(state, strict, *v.listElems()[n], placeholder, context);
2013-11-19 01:03:11 +02:00
}
break;
}
case nExternal:
v.external->printValueAsJSON(state, strict, out, context);
break;
case nFloat:
out.write(v.fpoint);
break;
case nThunk:
throw TypeError("cannot convert %1% to JSON", showType(v));
case nFunction:
throw TypeError("cannot convert %1% to JSON", showType(v));
2013-11-19 01:03:11 +02:00
}
}
void printValueAsJSON(EvalState & state, bool strict,
Value & v, std::ostream & str, PathSet & context)
{
JSONPlaceholder out(str);
printValueAsJSON(state, strict, v, out, context);
}
2013-11-19 01:03:11 +02:00
void ExternalValueBase::printValueAsJSON(EvalState & state, bool strict,
JSONPlaceholder & out, PathSet & context) const
{
throw TypeError("cannot convert %1% to JSON", showType());
}
2013-11-19 01:03:11 +02:00
}