blob: 44e2e7dda4171b0260ec64cc9555e5419f14d2f8 [file] [log] [blame]
Nigel Tao193527b2020-02-26 21:55:01 +11001// Copyright 2020 The Wuffs Authors.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// https://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15// ----------------
16
17// print-json-token-debug-format.c parses JSON from stdin and prints the
18// resulting token stream, eliding any non-essential (e.g. whitespace) tokens.
19//
Nigel Taod1c928a2020-02-28 12:43:53 +110020// The output format is only for debugging or regression testing, and certainly
21// not for long term storage. It isn't guaranteed to be stable between versions
22// of this program and of the Wuffs standard library.
Nigel Tao193527b2020-02-26 21:55:01 +110023//
Nigel Taod1c928a2020-02-28 12:43:53 +110024// It prints 16 bytes (128 bits) per token, containing big-endian numbers:
25//
26// +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
27// | POS | LEN | LP| LN| MAJOR | MINOR |
28// | | | | | |VBC| VBD |
29// +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
30//
31// - POS (4 bytes) is the position: the sum of all previous tokens' lengths,
32// including elided tokens.
33// - LEN (2 bytes) is the length.
34// - LP (1 bytes) is the link_prev bit.
35// - LN (1 bytes) is the link_next bit
36// - MAJOR (4 bytes) is the value_major.
37//
38// The final 4 bytes are either value_minor (when the value_major is non-zero)
39// or 1 + 3 bytes for value_base_category and value_base_detail (otherwise).
40//
Nigel Tao193527b2020-02-26 21:55:01 +110041// Together with the hexadecimal WUFFS_BASE__TOKEN__ETC constants defined in
42// token-public.h, this format is somewhat human-readable when piped through a
Nigel Taod1c928a2020-02-28 12:43:53 +110043// hex-dump program (such as /usr/bin/hd), printing one token per line.
Nigel Tao193527b2020-02-26 21:55:01 +110044//
45// If the input or output is larger than the program's buffers (64 MiB and
46// 131072 tokens by default), there may be multiple valid tokenizations of any
47// given input. For example, if a source string "abcde" straddles an I/O
Nigel Taod1c928a2020-02-28 12:43:53 +110048// boundary, it may be tokenized as single (no-link) 5-length string or as a
49// 3-length link_next'ed string followed by a 2-length link_prev'ed string.
Nigel Tao193527b2020-02-26 21:55:01 +110050//
Nigel Taod1c928a2020-02-28 12:43:53 +110051// A Wuffs token stream, in general, can support inputs more than 0xFFFF_FFFF
Nigel Tao193527b2020-02-26 21:55:01 +110052// bytes long, but this program can not, as it tracks the tokens' cumulative
53// position as a uint32.
54
55#include <inttypes.h>
56#include <stdio.h>
57#include <string.h>
58#include <unistd.h>
59
60// Wuffs ships as a "single file C library" or "header file library" as per
61// https://github.com/nothings/stb/blob/master/docs/stb_howto.txt
62//
63// To use that single file as a "foo.c"-like implementation, instead of a
64// "foo.h"-like header, #define WUFFS_IMPLEMENTATION before #include'ing or
65// compiling it.
66#define WUFFS_IMPLEMENTATION
67
68// Defining the WUFFS_CONFIG__MODULE* macros are optional, but it lets users of
69// release/c/etc.c whitelist which parts of Wuffs to build. That file contains
70// the entire Wuffs standard library, implementing a variety of codecs and file
71// formats. Without this macro definition, an optimizing compiler or linker may
72// very well discard Wuffs code for unused codecs, but listing the Wuffs
73// modules we use makes that process explicit. Preprocessing means that such
74// code simply isn't compiled.
75#define WUFFS_CONFIG__MODULES
76#define WUFFS_CONFIG__MODULE__BASE
77#define WUFFS_CONFIG__MODULE__JSON
78
79// If building this program in an environment that doesn't easily accommodate
80// relative includes, you can use the script/inline-c-relative-includes.go
81// program to generate a stand-alone C++ file.
82#include "../release/c/wuffs-unsupported-snapshot.c"
83
84#ifndef SRC_BUFFER_SIZE
85#define SRC_BUFFER_SIZE (64 * 1024 * 1024)
86#endif
87#ifndef TOKEN_BUFFER_SIZE
88#define TOKEN_BUFFER_SIZE (128 * 1024)
89#endif
90
91uint8_t src_buffer[SRC_BUFFER_SIZE];
92wuffs_base__token tok_buffer[TOKEN_BUFFER_SIZE];
93
94wuffs_base__io_buffer src;
95wuffs_base__token_buffer tok;
96
97wuffs_json__decoder dec;
98wuffs_base__status dec_status;
99
Nigel Tao193527b2020-02-26 21:55:01 +1100100#define TRY(error_msg) \
101 do { \
102 const char* z = error_msg; \
103 if (z) { \
104 return z; \
105 } \
106 } while (false)
107
108const char* //
109read_src() {
110 if (src.meta.closed) {
111 return "main: internal error: read requested on a closed source";
112 }
113 wuffs_base__io_buffer__compact(&src);
114 if (src.meta.wi >= src.data.len) {
115 return "main: src buffer is full";
116 }
117 size_t n = fread(src.data.ptr + src.meta.wi, sizeof(uint8_t),
118 src.data.len - src.meta.wi, stdin);
119 src.meta.wi += n;
120 src.meta.closed = feof(stdin);
121 if ((n == 0) && !src.meta.closed) {
122 return "main: read error";
123 }
124 return NULL;
125}
126
127// ----
128
Nigel Tao67f00c12020-02-29 12:48:59 +1100129const char* vbc_names[8] = {
130 "0:Filler..........", //
131 "1:String..........", //
132 "2:UnicodeCodePoint", //
133 "3:Number..........", //
134 "4:Structure.......", //
135 "5:Reserved........", //
136 "6:Reserved........", //
137 "7:Reserved........", //
138};
139
140const int base38_decode[38] = {
141 ' ', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '?', //
142 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', //
143 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', //
144};
145
Nigel Tao193527b2020-02-26 21:55:01 +1100146const char* //
147main1(int argc, char** argv) {
Nigel Tao67f00c12020-02-29 12:48:59 +1100148 bool human_readable = false;
149 int i;
150 for (i = 1; i < argc; i++) {
151 if ((strcmp(argv[i], "-h") == 0) ||
152 (strcmp(argv[i], "--human-readable") == 0)) {
153 human_readable = true;
154 }
155 }
156
Nigel Tao193527b2020-02-26 21:55:01 +1100157 src = wuffs_base__make_io_buffer(
158 wuffs_base__make_slice_u8(src_buffer, SRC_BUFFER_SIZE),
159 wuffs_base__empty_io_buffer_meta());
160
161 tok = wuffs_base__make_token_buffer(
162 wuffs_base__make_slice_token(tok_buffer, TOKEN_BUFFER_SIZE),
163 wuffs_base__empty_token_buffer_meta());
164
165 wuffs_base__status init_status = wuffs_json__decoder__initialize(
166 &dec, sizeof__wuffs_json__decoder(), WUFFS_VERSION, 0);
167 if (!wuffs_base__status__is_ok(&init_status)) {
168 return wuffs_base__status__message(&init_status);
169 }
170
171 uint64_t pos = 0;
172 while (true) {
173 wuffs_base__status status =
174 wuffs_json__decoder__decode_tokens(&dec, &tok, &src);
175
176 while (tok.meta.ri < tok.meta.wi) {
177 wuffs_base__token* t = &tok.data.ptr[tok.meta.ri++];
Nigel Taod1c928a2020-02-28 12:43:53 +1100178 uint16_t len = wuffs_base__token__length(t);
Nigel Tao193527b2020-02-26 21:55:01 +1100179
180 if (wuffs_base__token__value(t) != 0) {
Nigel Taod1c928a2020-02-28 12:43:53 +1100181 uint8_t lp = wuffs_base__token__link_prev(t) ? 1 : 0;
182 uint8_t ln = wuffs_base__token__link_next(t) ? 1 : 0;
183 uint32_t vmajor = wuffs_base__token__value_major(t);
Nigel Tao67f00c12020-02-29 12:48:59 +1100184 uint32_t vminor = wuffs_base__token__value_minor(t);
185 uint8_t vbc = wuffs_base__token__value_base_category(t);
186 uint32_t vbd = wuffs_base__token__value_base_detail(t);
Nigel Tao193527b2020-02-26 21:55:01 +1100187
Nigel Tao67f00c12020-02-29 12:48:59 +1100188 if (human_readable) {
189 printf("pos=0x%08" PRIX32 " len=0x%04" PRIX16 " link=0b%d%d ",
190 (uint32_t)(pos), len, (int)(lp), (int)(ln));
191
192 if (vmajor) {
193 uint32_t m = vmajor;
194 uint32_t m0 = m / (38 * 38 * 38);
195 m -= m0 * (38 * 38 * 38);
196 uint32_t m1 = m / (38 * 38);
197 m -= m1 * (38 * 38);
198 uint32_t m2 = m / (38);
199 m -= m2 * (38);
200 uint32_t m3 = m;
201
202 printf("vmajor=0x%06" PRIX32 ":%c%c%c%c vminor=0x%06" PRIX32 "\n",
203 vmajor, base38_decode[m0], base38_decode[m1],
204 base38_decode[m2], base38_decode[m3], vminor);
205 } else {
206 printf("vbc=%s vbd=0x%06" PRIX32 "\n", vbc_names[vbc & 7], vbd);
207 }
208
Nigel Taod1c928a2020-02-28 12:43:53 +1100209 } else {
Nigel Tao67f00c12020-02-29 12:48:59 +1100210 uint8_t buf[16];
211 wuffs_base__store_u32be__no_bounds_check(&buf[0x0], (uint32_t)(pos));
212 wuffs_base__store_u16be__no_bounds_check(&buf[0x4], len);
213 wuffs_base__store_u8__no_bounds_check(&buf[0x0006], lp);
214 wuffs_base__store_u8__no_bounds_check(&buf[0x0007], ln);
215 wuffs_base__store_u32be__no_bounds_check(&buf[0x8], vmajor);
216 if (vmajor) {
217 wuffs_base__store_u32be__no_bounds_check(&buf[0xC], vminor);
218 } else {
219 wuffs_base__store_u8__no_bounds_check(&buf[0x000C], vbc);
220 wuffs_base__store_u24be__no_bounds_check(&buf[0xD], vbd);
221 }
222 const int stdout_fd = 1;
223 write(stdout_fd, &buf[0], 16);
Nigel Taod1c928a2020-02-28 12:43:53 +1100224 }
Nigel Tao193527b2020-02-26 21:55:01 +1100225 }
226
227 pos += len;
228 if (pos > 0xFFFFFFFF) {
229 return "main: input is too long";
230 }
231 }
232
233 if (status.repr == NULL) {
234 return NULL;
235 } else if (status.repr == wuffs_base__suspension__short_read) {
236 TRY(read_src());
237 } else if (status.repr == wuffs_base__suspension__short_write) {
238 wuffs_base__token_buffer__compact(&tok);
239 } else {
240 return wuffs_base__status__message(&status);
241 }
242 }
243}
244
245// ----
246
247int //
248compute_exit_code(const char* status_msg) {
249 if (!status_msg) {
250 return 0;
251 }
252 size_t n = strnlen(status_msg, 2047);
253 if (n >= 2047) {
254 status_msg = "main: internal error: error message is too long";
255 n = strnlen(status_msg, 2047);
256 }
257 fprintf(stderr, "%s\n", status_msg);
258 // Return an exit code of 1 for regular (forseen) errors, e.g. badly
259 // formatted or unsupported input.
260 //
261 // Return an exit code of 2 for internal (exceptional) errors, e.g. defensive
262 // run-time checks found that an internal invariant did not hold.
263 //
264 // Automated testing, including badly formatted inputs, can therefore
265 // discriminate between expected failure (exit code 1) and unexpected failure
266 // (other non-zero exit codes). Specifically, exit code 2 for internal
267 // invariant violation, exit code 139 (which is 128 + SIGSEGV on x86_64
268 // linux) for a segmentation fault (e.g. null pointer dereference).
269 return strstr(status_msg, "internal error:") ? 2 : 1;
270}
271
272int //
273main(int argc, char** argv) {
274 const char* z = main1(argc, argv);
275 int exit_code = compute_exit_code(z);
276 return exit_code;
277}