forked from robbplo/js-truncate-stringify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlib.ts
407 lines (370 loc) · 10.9 KB
/
lib.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
import { JsonStreamStringify } from 'json-stream-stringify';
import { console } from 'node:inspector/promises';
import { Writable} from "node:stream";
const MAX_SIZE = 10000;
type JSONValue = string | number | boolean | null | Record<string, JSONValue> | JSONValue[];
export function nativeStringify(data: object, maxSize = MAX_SIZE) {
return JSON.stringify(data).slice(0, maxSize)
}
//export function nativeStringifyClosed(data: object, maxSize = MAX_SIZE) {
// const jsonStr = JSON.stringify(data).slice(0, maxSize);
// let stack = []; // Stack to track open brackets/braces.
// let inString = false; // Are we inside a string literal?
// let escape = false; // Was the previous character a backslash?
// let resultChars = []; // Accumulate characters for the output.
//
// // Process character by character up to maxSize (or end of string).
// let i = 0;
// for (; i < maxSize && i < jsonStr.length; i++) {
// const char = jsonStr[i];
// resultChars.push(char);
//
// if (inString) {
// if (escape) {
// escape = false;
// } else if (char === '\\') {
// escape = true;
// } else if (char === '"') {
// inString = false;
// }
// } else {
// if (char === '"') {
// inString = true;
// } else if (char === '{' || char === '[') {
// stack.push(char);
// } else if (char === '}' || char === ']') {
// // Pop from stack if it matches the expected opener.
// if (stack.length > 0) {
// const last = stack[stack.length - 1];
// if ((char === '}' && last === '{') || (char === ']' && last === '[')) {
// stack.pop();
// }
// }
// }
// }
// }
//
// let truncated = resultChars.join('');
//
// // (Optional) Remove a trailing comma if one exists.
// truncated = truncated.replace(/,\s*$/, '');
//
// // If we ended in the middle of a string literal, append the closing quote.
// if (inString) {
// truncated += '"';
// }
//
// // Append closing tokens for any open structures.
// while (stack.length > 0) {
// const opener = stack.pop();
// truncated += opener === '{' ? '}' : ']';
// }
//
// // (Optional) Remove any trailing partial token (e.g. dangling number/word)
// if (!inString) {
// truncated = truncated.replace(/[0-9a-zA-Z]+$/, '');
// }
//
// // Remove an incomplete object key if present.
// truncated = removeIncompleteObjectKey(truncated);
//
// return truncated;
//}
export function nativeStringifyClosed(data: object, maxSize = MAX_SIZE) {
let result = JSON.stringify(data).slice(0, maxSize)
if (result.length < maxSize) {
return result
}
let bracketStack = []
let inString = false;
let inKey = false;
let afterKey = false;
for (let i = 0; i < result.length; i++) {
switch (result[i]) {
case '\\': i += 1
break
case '"':
inString = !inString
// if in object
if (bracketStack[bracketStack.length - 1] == '}') {
if (afterKey) {
continue
} else {
if (inKey) {
inKey = false
afterKey = true
} else {
inKey = true
}
}
}
continue
case ',':
if (bracketStack[bracketStack.length - 1] == '}') {
if (!inString) {
inKey = false
afterKey = false
}
}
break
case '[':
if (!inString) {
bracketStack.push(']')
}
break
case '{':
if (!inString) {
afterKey = false
bracketStack.push('}')
}
break
case ']':
if (!inString) {
bracketStack.pop()
}
break
case '}':
if (!inString) {
bracketStack.pop()
}
break
}
}
if (bracketStack[bracketStack.length - 1] == '}') {
for (let i = result.length - 1; i >= 0; i--) {
if (result[i] == ':') {
result = result.slice(0, i + 1) + '"'
inString = true
break
} else if (result[i] == '{' || result[i] == ',') {
result = result.slice(0, i + 1)
break
}
}
}
if (result[result.length - 1] == '\\') {
result += '\\'
}
if (inString && afterKey) {
result += '...truncated..."'
}
bracketStack.forEach((bracket) => { result += bracket })
return result
}
export function truncateStringify(data: object, maxSize = MAX_SIZE) {
const result = JSON.stringify(data)
if (result.length < maxSize) {
return result
}
return stringifyWithLimit(data)
}
export function stringifyWithLimit(value: object, maxSize = MAX_SIZE) {
let output = '';
let bracketStack: string[] = []
function append(str: string) {
if (output.length + str.length > maxSize) {
// Enough room for only part of `str`
let available = maxSize - output.length;
output += str.slice(0, available) + '...truncated..."';
// We can either throw an error to bail out entirely or store a flag
bracketStack.forEach((bracket) => {
output += bracket
})
throw new Error('__truncated__');
}
output += str;
}
function build(val: any) {
if (val === null) {
append('null');
} else if (typeof val === 'string') {
append(JSON.stringify(val)); // let native JSON.stringify handle quotes
} else if (typeof val === 'number' || typeof val === 'boolean') {
append(String(val));
} else if (Array.isArray(val)) {
append('[');
bracketStack.push(']')
for (let i = 0; i < val.length; i++) {
if (i > 0) append(',');
build(val[i]);
}
append(']');
bracketStack.pop()
} else if (typeof val === 'object') {
append('{');
bracketStack.push('}')
let first = true;
for (const k in val) {
if (!Object.hasOwn(val, k)) continue;
if (!first) append(',');
append(JSON.stringify(k)); // key in quotes
append(':');
build(val[k]);
first = false;
}
append('}');
bracketStack.pop()
} else {
// Functions, symbols, etc. become null in standard JSON.
append('null');
}
}
try {
build(value);
} catch (err) {
if (err.message !== '__truncated__') throw err;
}
return output;
}
function streamerReplacer(key: string, value: any) {
if (typeof value === 'string') {
return value.slice(0, 256) + '...truncated..."';
}
return value
}
// async function* outWrite(source: any) {
// console.log(source)
// }
// class MyWriter extends Writable {
// remaining = 0;
// bufferx = "";
// write(chunk: unknown, encoding?: unknown, callback?: unknown): boolean {
// if (this.remaining < 0) {
// // console.log(this.buffer)
// console.log('done')
// // no write
// return true
// } else {
// let size = (chunk as any).length;
// this.remaining -= size;
// this.bufferx += chunk as string;
// return true
// }
// }
// }
// export async function stringifyWithStreamer(value: any, maxSize = MAX_SIZE) {
// // let writer = JSONStream.stringify();
// // writer.write("hallo")
// // writer.write("hallo")
// // writer.write("hallo")
// // writer.write("hallo")
// // writer.write("hallo")
// // console.log(writer.flush())
// const outWrite = new MyWriter();
// outWrite.remaining = 1000;
// outWrite.on('pipe', (src) => {
// console.log('Something is piping into the writer.');
// });
// const going = new JsonStreamStringify(value, streamerReplacer)
// going.on('data', (x) => {
// // console.log(x)
// })
// // going.pipe(process.stdout);
// // going.pipe(outWrite)
// // console.log(outWrite)
// let out: string = await new Promise(resolve => {
// outWrite.on('finish', () => {
// resolve(outWrite.bufferx)
// })
// going.pipe(outWrite)
// })
// console.log(out)
// return out
// }
function scoreType(value: any): number {
if (typeof value === 'number') {
return 8;
} else if (typeof value ==='string') {
return 2 + value.length;
} else if (typeof value ==='boolean') {
return 4;
} else if (value === null) {
return 4;
} else if (typeof value === 'undefined') {
return 0;
}
return NaN;
}
type Context = {
remaining: number;
}
const EMPTY_RECORD = Symbol('empty-record');
const EMPTY_VALUE = Symbol('empty-value');
type Accumulator = Record<string, JSONValue> | typeof EMPTY_RECORD | typeof EMPTY_VALUE
function emptyTokenReplacer(_key: string, value: unknown) {
if (Array.isArray(value)) {
let emptyRecordsCount = value.reduce((acc, item) => acc += item === EMPTY_RECORD, 0)
let emptyValueCount = value.reduce((acc, item) => acc += item === EMPTY_VALUE, 0)
value = value.filter(item => item !== EMPTY_RECORD && item !== EMPTY_VALUE);
if (emptyRecordsCount > 0 && Array.isArray(value)) {
value.push({__truncatedRecords: emptyRecordsCount});
}
if (emptyValueCount > 0 && Array.isArray(value)) {
value.push({__truncatedItems: emptyValueCount});
}
return value
}
return value
}
function _stringifyUpdateObject(value: JSONValue, context: Context): JSONValue {
if (Array.isArray(value)) {
throw new Error("ARRAY!>!")
}
if (typeof value === 'object' && value !== null) {
let out = Object.entries(value).reduce((acc, [key, val]) => {
if (Array.isArray(val)) {
val = val.map((x) => _stringifyUpdateObject(x, context))
} else if (typeof val === 'object') {
val = _stringifyUpdateObject(val, context)
} else {
if (context.remaining < 0) {
return acc
}
let score = scoreType(key) + scoreType(val);
// do we want to truncate large strings still?
if (score) {
context.remaining -= score;
if (context.remaining < 0) {
if (typeof acc === 'object') {
acc["__truncated"] = true
return acc
} else {
return acc
}
}
}
}
if (acc === EMPTY_RECORD || acc === EMPTY_VALUE) {
acc = {}
}
acc[key] = val;
return acc;
}, EMPTY_RECORD as Accumulator);
return out
}
if (context.remaining < 0) {
return EMPTY_VALUE
}
let score = scoreType(value);
if (score) {
context.remaining -= score;
let OVERFLOW_SLACK = 100
if(context.remaining < OVERFLOW_SLACK && typeof value === 'string') {
value = value.slice(0, -context.remaining) + '...truncated..."';
}
}
return value
}
export function stringifyUpdateObject(value: JSONValue, maxSize = MAX_SIZE) {
let context = {remaining: maxSize}
let out;
// console.log(JSON.stringify(value).length)
if (Array.isArray(value)) {
out = value.map((x) => _stringifyUpdateObject(x, context))
} else {
out = _stringifyUpdateObject(value, context)
}
// console.log(out)
// console.log(JSON.stringify(out))
return JSON.stringify(out, emptyTokenReplacer)
}