2009-12-15 05:01:36 +08:00
|
|
|
/*
|
2010-02-03 03:26:11 +08:00
|
|
|
* Copyright (c) 2009, 2010 Petri Lehtinen <petri@digip.org>
|
2009-12-15 05:01:36 +08:00
|
|
|
*
|
|
|
|
* Jansson is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the MIT license. See LICENSE for details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <jansson.h>
|
|
|
|
|
|
|
|
static int getenv_int(const char *name)
|
|
|
|
{
|
|
|
|
char *value, *end;
|
|
|
|
long result;
|
|
|
|
|
|
|
|
value = getenv(name);
|
|
|
|
if(!value)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
result = strtol(value, &end, 10);
|
|
|
|
if(*end != '\0')
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return (int)result;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
int indent = 0;
|
2010-06-15 20:27:35 +08:00
|
|
|
size_t flags = 0;
|
2009-12-15 05:01:36 +08:00
|
|
|
|
|
|
|
json_t *json;
|
2010-10-27 02:05:40 +08:00
|
|
|
json_error_t error;
|
2009-12-15 05:01:36 +08:00
|
|
|
|
|
|
|
if(argc != 1) {
|
|
|
|
fprintf(stderr, "usage: %s\n", argv[0]);
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
indent = getenv_int("JSON_INDENT");
|
|
|
|
if(indent < 0 || indent > 255) {
|
|
|
|
fprintf(stderr, "invalid value for JSON_INDENT: %d\n", indent);
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(indent > 0)
|
|
|
|
flags |= JSON_INDENT(indent);
|
|
|
|
|
|
|
|
if(getenv_int("JSON_COMPACT") > 0)
|
|
|
|
flags |= JSON_COMPACT;
|
|
|
|
|
|
|
|
if(getenv_int("JSON_ENSURE_ASCII"))
|
|
|
|
flags |= JSON_ENSURE_ASCII;
|
|
|
|
|
2010-02-10 03:29:33 +08:00
|
|
|
if(getenv_int("JSON_PRESERVE_ORDER"))
|
|
|
|
flags |= JSON_PRESERVE_ORDER;
|
|
|
|
|
2009-12-07 19:16:45 +08:00
|
|
|
if(getenv_int("JSON_SORT_KEYS"))
|
|
|
|
flags |= JSON_SORT_KEYS;
|
|
|
|
|
2010-08-14 03:19:20 +08:00
|
|
|
json = json_loadf(stdin, 0, &error);
|
2009-12-15 05:01:36 +08:00
|
|
|
if(!json) {
|
2010-10-27 02:05:40 +08:00
|
|
|
fprintf(stderr, "%d\n%s\n", error.line, error.text);
|
2009-12-15 05:01:36 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
json_dumpf(json, stdout, flags);
|
|
|
|
json_decref(json);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|