2023-03-08 04:06:43 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net>
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person
|
|
|
|
* obtaining a copy of this software and associated documentation files
|
|
|
|
* (the "Software"), to deal in the Software without restriction,
|
|
|
|
* including without limitation the rights to use, copy, modify, merge,
|
|
|
|
* publish, distribute, sublicense, and/or sell copies of the Software,
|
|
|
|
* and to permit persons to whom the Software is furnished to do so,
|
|
|
|
* subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
* included in all copies or portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
|
|
|
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
* SOFTWARE.
|
|
|
|
*/
|
|
|
|
#include <stdio.h>
|
2023-03-08 19:49:06 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <getopt.h>
|
2023-03-08 04:06:43 +00:00
|
|
|
|
2023-03-08 19:49:06 +00:00
|
|
|
#include <Array.h>
|
|
|
|
#include <HashMap.h>
|
|
|
|
#include <Memory.h>
|
2023-03-08 04:06:43 +00:00
|
|
|
#include <Json.h>
|
|
|
|
|
2023-03-08 20:31:49 +00:00
|
|
|
#define FLAG_ENCODE (1 << 0)
|
|
|
|
#define FLAG_SELECT (1 << 1)
|
|
|
|
|
|
|
|
static void
|
|
|
|
usage(char *prog)
|
2023-03-08 04:06:43 +00:00
|
|
|
{
|
2023-03-18 14:32:09 +00:00
|
|
|
StreamPrintf(StreamStderr(), "Usage: %s [-s query|-e str]\n", prog);
|
2023-03-08 20:31:49 +00:00
|
|
|
}
|
2023-03-08 04:06:43 +00:00
|
|
|
|
2023-03-08 20:31:49 +00:00
|
|
|
static void
|
|
|
|
query(char *select, HashMap * json)
|
|
|
|
{
|
|
|
|
char *key;
|
|
|
|
JsonValue *val = JsonValueObject(json);
|
2023-03-08 04:06:43 +00:00
|
|
|
|
2023-03-08 20:31:49 +00:00
|
|
|
key = strtok(select, "->");
|
2023-03-08 04:06:43 +00:00
|
|
|
|
2023-03-08 20:31:49 +00:00
|
|
|
while (key)
|
2023-03-08 19:49:06 +00:00
|
|
|
{
|
2023-03-08 20:31:49 +00:00
|
|
|
char keyName[128];
|
|
|
|
size_t arrInd;
|
|
|
|
int expectArr = 0;
|
|
|
|
int func = 0;
|
2023-03-08 19:49:06 +00:00
|
|
|
|
2023-03-08 20:31:49 +00:00
|
|
|
expectArr = (sscanf(key, "%127[^[][%lu]", keyName, &arrInd) == 2);
|
2023-03-08 19:49:06 +00:00
|
|
|
|
2023-03-08 20:31:49 +00:00
|
|
|
if (keyName[0] == '@')
|
2023-03-08 19:49:06 +00:00
|
|
|
{
|
2023-03-08 20:31:49 +00:00
|
|
|
if (strcmp(keyName + 1, "length") == 0)
|
2023-03-08 19:49:06 +00:00
|
|
|
{
|
2023-03-08 20:31:49 +00:00
|
|
|
switch (JsonValueType(val))
|
2023-03-08 19:49:06 +00:00
|
|
|
{
|
2023-03-08 20:31:49 +00:00
|
|
|
case JSON_ARRAY:
|
|
|
|
val = JsonValueInteger(ArraySize(JsonValueAsArray(val)));
|
|
|
|
break;
|
|
|
|
case JSON_STRING:
|
|
|
|
val = JsonValueInteger(strlen(JsonValueAsString(val)));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
val = NULL;
|
|
|
|
break;
|
2023-03-08 19:49:06 +00:00
|
|
|
}
|
2023-03-08 20:31:49 +00:00
|
|
|
}
|
|
|
|
else if (JsonValueType(val) == JSON_OBJECT && strcmp(keyName + 1, "keys") == 0)
|
|
|
|
{
|
|
|
|
HashMap *obj = JsonValueAsObject(val);
|
|
|
|
Array *arr = ArrayCreate();
|
|
|
|
char *k;
|
|
|
|
void *v;
|
2023-03-08 19:49:06 +00:00
|
|
|
|
2023-03-08 20:31:49 +00:00
|
|
|
while (HashMapIterate(obj, &k, &v))
|
2023-03-08 19:49:06 +00:00
|
|
|
{
|
2023-03-08 20:31:49 +00:00
|
|
|
ArrayAdd(arr, JsonValueString(k));
|
2023-03-08 19:49:06 +00:00
|
|
|
}
|
|
|
|
|
2023-03-08 20:31:49 +00:00
|
|
|
val = JsonValueArray(arr);
|
2023-03-08 19:49:06 +00:00
|
|
|
}
|
2023-03-08 20:31:49 +00:00
|
|
|
else if (JsonValueType(val) == JSON_STRING && strcmp(keyName + 1, "decode") == 0)
|
2023-03-08 19:49:06 +00:00
|
|
|
{
|
2023-03-18 14:32:09 +00:00
|
|
|
StreamPrintf(StreamStdout(), "%s\n", JsonValueAsString(val));
|
2023-03-08 20:31:49 +00:00
|
|
|
val = NULL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
val = NULL;
|
|
|
|
break;
|
|
|
|
}
|
2023-03-08 19:49:06 +00:00
|
|
|
|
2023-03-08 20:31:49 +00:00
|
|
|
func = 1;
|
|
|
|
}
|
2023-03-08 22:47:40 +00:00
|
|
|
else if (keyName[0] == '^')
|
2023-03-08 20:31:49 +00:00
|
|
|
{
|
|
|
|
if (JsonValueType(val) == JSON_OBJECT)
|
|
|
|
{
|
|
|
|
HashMap *obj = JsonValueAsObject(val);
|
2023-03-08 19:49:06 +00:00
|
|
|
|
2023-03-08 20:31:49 +00:00
|
|
|
JsonValueFree(HashMapDelete(obj, keyName + 1));
|
2023-03-08 19:49:06 +00:00
|
|
|
}
|
2023-03-08 20:31:49 +00:00
|
|
|
else if (JsonValueType(val) == JSON_ARRAY)
|
2023-03-08 19:49:06 +00:00
|
|
|
{
|
2023-03-08 20:31:49 +00:00
|
|
|
size_t i;
|
|
|
|
|
|
|
|
if (sscanf(keyName + 1, "%lu", &i) == 1)
|
2023-03-08 19:49:06 +00:00
|
|
|
{
|
2023-03-08 20:31:49 +00:00
|
|
|
JsonValueFree(ArrayDelete(JsonValueAsArray(val), i));
|
2023-03-08 19:49:06 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
val = NULL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2023-03-08 20:31:49 +00:00
|
|
|
else
|
2023-03-08 19:49:06 +00:00
|
|
|
{
|
2023-03-08 20:31:49 +00:00
|
|
|
val = NULL;
|
|
|
|
break;
|
2023-03-08 19:49:06 +00:00
|
|
|
}
|
|
|
|
|
2023-03-08 20:31:49 +00:00
|
|
|
func = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!func)
|
|
|
|
{
|
|
|
|
if (JsonValueType(val) == JSON_OBJECT)
|
|
|
|
{
|
|
|
|
val = HashMapGet(JsonValueAsObject(val), keyName);
|
|
|
|
}
|
|
|
|
else
|
2023-03-08 19:49:06 +00:00
|
|
|
{
|
2023-03-08 20:31:49 +00:00
|
|
|
val = NULL;
|
2023-03-08 19:49:06 +00:00
|
|
|
break;
|
|
|
|
}
|
2023-03-08 20:31:49 +00:00
|
|
|
}
|
2023-03-08 19:49:06 +00:00
|
|
|
|
2023-03-08 20:31:49 +00:00
|
|
|
if (expectArr && JsonValueType(val) == JSON_ARRAY)
|
|
|
|
{
|
|
|
|
val = ArrayGet(JsonValueAsArray(val), arrInd);
|
2023-03-08 19:49:06 +00:00
|
|
|
}
|
|
|
|
|
2023-03-08 20:31:49 +00:00
|
|
|
if (!val)
|
2023-03-08 19:49:06 +00:00
|
|
|
{
|
2023-03-08 20:31:49 +00:00
|
|
|
break;
|
2023-03-08 19:49:06 +00:00
|
|
|
}
|
|
|
|
|
2023-03-08 20:31:49 +00:00
|
|
|
key = strtok(NULL, "->");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (val)
|
|
|
|
{
|
2023-03-18 14:32:09 +00:00
|
|
|
JsonEncodeValue(val, StreamStdout(), JSON_PRETTY);
|
|
|
|
StreamPutc(StreamStdout(), '\n');
|
2023-03-08 19:49:06 +00:00
|
|
|
}
|
2023-03-08 20:31:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
encode(char *str)
|
|
|
|
{
|
|
|
|
JsonValue *val = JsonValueString(str);
|
|
|
|
|
2023-03-18 14:32:09 +00:00
|
|
|
JsonEncodeValue(val, StreamStdout(), JSON_DEFAULT);
|
2023-03-08 20:31:49 +00:00
|
|
|
JsonValueFree(val);
|
2023-03-18 14:32:09 +00:00
|
|
|
StreamPutc(StreamStdout(), '\n');
|
2023-03-08 20:31:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
HashMap *json;
|
|
|
|
int flag = 0;
|
|
|
|
int ch;
|
2023-03-09 02:22:13 +00:00
|
|
|
char *input = NULL;
|
2023-03-08 20:31:49 +00:00
|
|
|
|
|
|
|
while ((ch = getopt(argc, argv, "s:e:")) != -1)
|
|
|
|
{
|
|
|
|
switch (ch)
|
|
|
|
{
|
|
|
|
case 's':
|
|
|
|
flag = FLAG_SELECT;
|
|
|
|
input = optarg;
|
|
|
|
break;
|
|
|
|
case 'e':
|
|
|
|
flag = FLAG_ENCODE;
|
|
|
|
input = optarg;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
usage(argv[0]);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (flag != FLAG_ENCODE)
|
|
|
|
{
|
2023-03-18 14:32:09 +00:00
|
|
|
json = JsonDecode(StreamStdin());
|
2023-03-08 20:31:49 +00:00
|
|
|
|
|
|
|
if (!json)
|
|
|
|
{
|
2023-03-18 14:32:09 +00:00
|
|
|
StreamPuts(StreamStderr(), "Malformed JSON.\n");
|
2023-03-08 20:31:49 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (flag)
|
2023-03-08 19:49:06 +00:00
|
|
|
{
|
2023-03-08 20:31:49 +00:00
|
|
|
case FLAG_SELECT:
|
|
|
|
query(input, json);
|
|
|
|
break;
|
|
|
|
case FLAG_ENCODE:
|
|
|
|
encode(input);
|
|
|
|
break;
|
|
|
|
default:
|
2023-03-18 14:32:09 +00:00
|
|
|
JsonEncode(json, StreamStdout(), JSON_PRETTY);
|
|
|
|
StreamPutc(StreamStdout(), '\n');
|
2023-03-08 20:31:49 +00:00
|
|
|
break;
|
2023-03-08 19:49:06 +00:00
|
|
|
}
|
2023-03-08 04:06:43 +00:00
|
|
|
|
2023-03-18 14:32:09 +00:00
|
|
|
StreamClose(StreamStdout());
|
|
|
|
StreamClose(StreamStderr());
|
|
|
|
StreamClose(StreamStdin());
|
|
|
|
|
2023-03-08 19:49:06 +00:00
|
|
|
MemoryFreeAll();
|
2023-03-08 04:06:43 +00:00
|
|
|
return 0;
|
|
|
|
}
|