2 * Copyright (C) 2016-2019 "IoT.bzh"
3 * Author José Bollo <jose.bollo@iot.bzh>
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
9 * http://www.apache.org/licenses/LICENSE-2.0
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
18 * This simple program expands the object { "$ref": "#/path/to/a/target" }
25 * "b": { "$ref": "#/type/a" }
29 * will be exapanded to
38 * Invocation: program [file|-]...
40 * without arguments, it reads the input.
48 #include <json-c/json.h>
50 #define oom(x) do{if(!(x)){fprintf(stderr,"out of memory\n");exit(1);}}while(0)
53 * root of the JSON being parsed
55 struct json_object *root = NULL;
57 char *make_desc(struct json_object *o)
60 char *desc, c, buf[3];
64 a = b = json_object_to_json_string_ext(root, 0);
67 len += 1 + ('"' == c);
70 len += 7 * (1 + len / 72);
104 if (pos >= 77 && !e) {
130 * process a file and prints its expansion on stdout
132 void process(char *filename)
137 if (!strcmp(filename, "-"))
138 filename = "/dev/stdin";
141 if (access(filename, R_OK)) {
142 fprintf(stderr, "can't access file %s\n", filename);
147 root = json_object_from_file(filename);
149 fprintf(stderr, "reading file %s produced null\n", filename);
153 /* create the description */
154 desc = make_desc(root);
159 json_object_put(root);
163 /** process the list of files or stdin if none */
164 int main(int ac, char **av)
169 do { process(*av); } while(*++av);