2018-06-21 03:34:07 +00:00
|
|
|
module dyaml.tojson;
|
|
|
|
import std.datetime;
|
|
|
|
import std.json;
|
|
|
|
import std.stdio;
|
|
|
|
import dyaml;
|
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
|
|
|
auto doc = Loader.fromFile(stdin).load();
|
|
|
|
auto json = doc.toJSON;
|
|
|
|
writeln(json.toPrettyString);
|
|
|
|
}
|
|
|
|
|
|
|
|
JSONValue toJSON(Node node)
|
|
|
|
{
|
|
|
|
JSONValue output;
|
2019-01-28 01:56:00 +00:00
|
|
|
final switch (node.type)
|
2018-06-21 03:34:07 +00:00
|
|
|
{
|
2019-01-28 01:56:00 +00:00
|
|
|
case NodeType.sequence:
|
|
|
|
output = JSONValue(string[].init);
|
|
|
|
foreach (Node seqNode; node)
|
|
|
|
{
|
|
|
|
output.array ~= seqNode.toJSON();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case NodeType.mapping:
|
|
|
|
output = JSONValue(string[string].init);
|
|
|
|
foreach (Node keyNode, Node valueNode; node)
|
|
|
|
{
|
|
|
|
output[keyNode.as!string] = valueNode.toJSON();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case NodeType.string:
|
|
|
|
output = node.as!string;
|
|
|
|
break;
|
|
|
|
case NodeType.integer:
|
|
|
|
output = node.as!long;
|
|
|
|
break;
|
|
|
|
case NodeType.decimal:
|
|
|
|
output = node.as!real;
|
|
|
|
break;
|
|
|
|
case NodeType.boolean:
|
|
|
|
output = node.as!bool;
|
|
|
|
break;
|
|
|
|
case NodeType.timestamp:
|
|
|
|
output = node.as!SysTime.toISOExtString();
|
|
|
|
break;
|
|
|
|
case NodeType.merge:
|
|
|
|
case NodeType.null_:
|
|
|
|
case NodeType.binary:
|
|
|
|
case NodeType.invalid:
|
2018-06-21 03:34:07 +00:00
|
|
|
}
|
|
|
|
return output;
|
|
|
|
}
|