2013-11-19 01:33:06 +02:00
|
|
|
#include "value-to-json.hh"
|
2016-08-26 19:55:55 +03:00
|
|
|
#include "json.hh"
|
2013-11-19 01:03:11 +02:00
|
|
|
#include "eval-inline.hh"
|
|
|
|
#include "util.hh"
|
|
|
|
|
|
|
|
#include <cstdlib>
|
2014-09-30 01:41:18 +03:00
|
|
|
#include <iomanip>
|
2013-11-19 01:03:11 +02:00
|
|
|
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
void printValueAsJSON(EvalState & state, bool strict,
|
2022-03-04 20:31:59 +02:00
|
|
|
Value & v, const PosIdx pos, JSONPlaceholder & out, PathSet & context)
|
2013-11-19 01:03:11 +02:00
|
|
|
{
|
|
|
|
checkInterrupt();
|
|
|
|
|
2021-10-26 00:13:35 +03:00
|
|
|
if (strict) state.forceValue(v, pos);
|
2013-11-19 01:03:11 +02:00
|
|
|
|
2020-12-17 15:45:45 +02:00
|
|
|
switch (v.type()) {
|
2013-11-19 01:03:11 +02:00
|
|
|
|
2020-12-12 03:09:10 +02:00
|
|
|
case nInt:
|
2016-08-26 19:55:55 +03:00
|
|
|
out.write(v.integer);
|
2013-11-19 01:03:11 +02:00
|
|
|
break;
|
|
|
|
|
2020-12-12 03:09:10 +02:00
|
|
|
case nBool:
|
2016-08-26 19:55:55 +03:00
|
|
|
out.write(v.boolean);
|
2013-11-19 01:03:11 +02:00
|
|
|
break;
|
|
|
|
|
2020-12-12 03:09:10 +02:00
|
|
|
case nString:
|
2013-11-19 01:03:11 +02:00
|
|
|
copyContext(v, context);
|
2016-08-26 19:55:55 +03:00
|
|
|
out.write(v.string.s);
|
2013-11-19 01:03:11 +02:00
|
|
|
break;
|
|
|
|
|
2020-12-12 03:09:10 +02:00
|
|
|
case nPath:
|
2016-08-26 19:55:55 +03:00
|
|
|
out.write(state.copyPathToStore(context, v.path));
|
2013-11-19 01:03:11 +02:00
|
|
|
break;
|
|
|
|
|
2020-12-12 03:09:10 +02:00
|
|
|
case nNull:
|
2016-08-26 19:55:55 +03:00
|
|
|
out.write(nullptr);
|
2013-11-19 01:03:11 +02:00
|
|
|
break;
|
|
|
|
|
2020-12-12 03:09:10 +02:00
|
|
|
case nAttrs: {
|
2021-10-27 22:48:48 +03:00
|
|
|
auto maybeString = state.tryAttrsToString(pos, v, context, false, false);
|
2019-10-27 11:15:51 +02:00
|
|
|
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()) {
|
2016-08-26 19:55:55 +03:00
|
|
|
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)
|
2022-03-05 15:40:24 +02:00
|
|
|
names.emplace(state.symbols[j.name]);
|
2015-07-17 20:24:28 +03:00
|
|
|
for (auto & j : names) {
|
|
|
|
Attr & a(*v.attrs->find(state.symbols.create(j)));
|
2016-08-26 19:55:55 +03:00
|
|
|
auto placeholder(obj.placeholder(j));
|
2022-03-04 20:31:59 +02:00
|
|
|
printValueAsJSON(state, strict, *a.value, a.pos, placeholder, context);
|
2013-11-19 01:03:11 +02:00
|
|
|
}
|
|
|
|
} else
|
2022-03-04 20:31:59 +02:00
|
|
|
printValueAsJSON(state, strict, *i->value, i->pos, out, context);
|
2013-11-19 01:03:11 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2020-12-12 03:09:10 +02:00
|
|
|
case nList: {
|
2016-08-26 19:55:55 +03:00
|
|
|
auto list(out.list());
|
2021-11-24 21:21:34 +02:00
|
|
|
for (auto elem : v.listItems()) {
|
2016-08-26 19:55:55 +03:00
|
|
|
auto placeholder(list.placeholder());
|
2021-11-24 21:21:34 +02:00
|
|
|
printValueAsJSON(state, strict, *elem, pos, placeholder, context);
|
2013-11-19 01:03:11 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2020-12-12 03:09:10 +02:00
|
|
|
case nExternal:
|
2016-08-26 19:55:55 +03:00
|
|
|
v.external->printValueAsJSON(state, strict, out, context);
|
2014-11-30 20:16:19 +02:00
|
|
|
break;
|
|
|
|
|
2020-12-12 03:09:10 +02:00
|
|
|
case nFloat:
|
2016-08-26 19:55:55 +03:00
|
|
|
out.write(v.fpoint);
|
2016-01-05 01:40:40 +02:00
|
|
|
break;
|
|
|
|
|
2020-12-12 03:09:10 +02:00
|
|
|
case nThunk:
|
|
|
|
case nFunction:
|
2021-10-27 22:48:48 +03:00
|
|
|
auto e = TypeError({
|
2021-10-26 00:13:35 +03:00
|
|
|
.msg = hintfmt("cannot convert %1% to JSON", showType(v)),
|
2022-03-04 20:31:59 +02:00
|
|
|
.errPos = state.positions[v.determinePos(pos)]
|
2021-10-26 00:13:35 +03:00
|
|
|
});
|
2022-03-04 20:31:59 +02:00
|
|
|
e.addTrace(state.positions[pos], hintfmt("message for the trace"));
|
2022-05-06 17:47:21 +03:00
|
|
|
state.debugThrowLastTrace(e);
|
2022-04-08 21:34:27 +03:00
|
|
|
throw e;
|
2013-11-19 01:03:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-26 19:55:55 +03:00
|
|
|
void printValueAsJSON(EvalState & state, bool strict,
|
2022-03-04 20:31:59 +02:00
|
|
|
Value & v, const PosIdx pos, std::ostream & str, PathSet & context)
|
2016-08-26 19:55:55 +03:00
|
|
|
{
|
|
|
|
JSONPlaceholder out(str);
|
2021-10-26 00:13:35 +03:00
|
|
|
printValueAsJSON(state, strict, v, pos, out, context);
|
2016-08-26 19:55:55 +03:00
|
|
|
}
|
2013-11-19 01:03:11 +02:00
|
|
|
|
2014-11-30 20:16:19 +02:00
|
|
|
void ExternalValueBase::printValueAsJSON(EvalState & state, bool strict,
|
2016-08-26 19:55:55 +03:00
|
|
|
JSONPlaceholder & out, PathSet & context) const
|
2014-11-30 20:16:19 +02:00
|
|
|
{
|
2022-04-08 21:34:27 +03:00
|
|
|
auto e = TypeError("cannot convert %1% to JSON", showType());
|
2022-05-06 17:47:21 +03:00
|
|
|
state.debugThrowLastTrace(e);
|
2014-11-30 20:16:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-11-19 01:03:11 +02:00
|
|
|
}
|