-
Notifications
You must be signed in to change notification settings - Fork 3.9k
/
json.js
262 lines (245 loc) · 7.39 KB
/
json.js
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
/**
* Copyright 2015 The AMP HTML Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS-IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @fileoverview This module declares JSON types as defined in the
* {@link http://json.org/}.
*/
import {childElementsByTag, isJsonScriptTag} from './dom';
import {isObject} from './types';
// NOTE Type are changed to {*} because of
// https://github.com/google/closure-compiler/issues/1999
/**
* JSON scalar. It's either string, number or boolean.
* @typedef {*} should be string|number|boolean|null
*/
let JSONScalarDef;
/**
* JSON object. It's a map with string keys and JSON values.
* @typedef {*} should be !Object<string, ?JSONValueDef>
*/
let JSONObjectDef;
/**
* JSON array. It's an array with JSON values.
* @typedef {*} should be !Array<?JSONValueDef>
*/
let JSONArrayDef;
/**
* JSON value. It's either a scalar, an object or an array.
* @typedef {*} should be !JSONScalarDef|!JSONObjectDef|!JSONArrayDef
*/
let JSONValueDef;
/**
* Recreates objects with prototype-less copies.
* @param {!JsonObject} obj
* @return {!JsonObject}
*/
export function recreateNonProtoObject(obj) {
const copy = Object.create(null);
for (const k in obj) {
if (!hasOwnProperty(obj, k)) {
continue;
}
const v = obj[k];
copy[k] = isObject(v) ? recreateNonProtoObject(v) : v;
}
return /** @type {!JsonObject} */ (copy);
}
/**
* Returns a value from an object for a field-based expression. The expression
* is a simple nested dot-notation of fields, such as `field1.field2`. If any
* field in a chain does not exist or is not an object or array, the returned
* value will be `undefined`.
*
* @param {!JsonObject} obj
* @param {string} expr
* @return {*}
*/
export function getValueForExpr(obj, expr) {
// The `.` indicates "the object itself".
if (expr == '.') {
return obj;
}
// Otherwise, navigate via properties.
const parts = expr.split('.');
let value = obj;
for (let i = 0; i < parts.length; i++) {
const part = parts[i];
if (
part &&
value &&
value[part] !== undefined &&
hasOwnProperty(value, part)
) {
value = value[part];
continue;
}
value = undefined;
break;
}
return value;
}
/**
* Simple wrapper around JSON.parse that casts the return value
* to JsonObject.
* Create a new wrapper if an array return value is desired.
* @param {*} json JSON string to parse
* @return {?JsonObject} May be extend to parse arrays.
*/
export function parseJson(json) {
return /** @type {?JsonObject} */ (JSON.parse(/** @type {string} */ (json)));
}
/**
* Parses the given `json` string without throwing an exception if not valid.
* Returns `undefined` if parsing fails.
* Returns the `Object` corresponding to the JSON string when parsing succeeds.
* @param {*} json JSON string to parse
* @param {function(!Error)=} opt_onFailed Optional function that will be called
* with the error if parsing fails.
* @return {?JsonObject} May be extend to parse arrays.
*/
export function tryParseJson(json, opt_onFailed) {
try {
return parseJson(json);
} catch (e) {
if (opt_onFailed) {
opt_onFailed(e);
}
return null;
}
}
/**
* Helper method to get the json config from an element <script> tag
* @param {!Element} element
* @return {?JsonObject}
* @throws {!Error} If element does not have exactly one <script> child
* with type="application/json", or if the <script> contents are not valid JSON.
*/
export function getChildJsonConfig(element) {
const scripts = childElementsByTag(element, 'script');
const n = scripts.length;
if (n !== 1) {
throw new Error(`Found ${scripts.length} <script> children. Expected 1.`);
}
const script = scripts[0];
if (!isJsonScriptTag(script)) {
throw new Error('<script> child must have type="application/json"');
}
try {
return parseJson(script.textContent);
} catch (unusedError) {
throw new Error('Failed to parse <script> contents. Is it valid JSON?');
}
}
/**
* Deeply checks strict equality of items in nested arrays and objects.
*
* @param {JSONValueDef} a
* @param {JSONValueDef} b
* @param {number} depth The maximum depth. Must be finite.
* @return {boolean}
* @throws {Error} If depth argument is not finite.
*/
export function deepEquals(a, b, depth = 5) {
if (!isFinite(depth) || depth < 0) {
throw new Error('Invalid depth: ' + depth);
}
if (a === b) {
return true;
}
/** @type {!Array<{a: JSONValueDef, b: JSONValueDef, depth: number}>} */
const queue = [{a, b, depth}];
while (queue.length > 0) {
const {a, b, depth} = queue.shift();
// Only check deep equality if depth > 0.
if (depth > 0) {
if (typeof a !== typeof b) {
return false;
} else if (Array.isArray(a) && Array.isArray(b)) {
if (a.length !== b.length) {
return false;
}
for (let i = 0; i < a.length; i++) {
queue.push({a: a[i], b: b[i], depth: depth - 1});
}
continue;
} else if (a && b && typeof a === 'object' && typeof b === 'object') {
const keysA = Object.keys(/** @type {!Object} */ (a));
const keysB = Object.keys(/** @type {!Object} */ (b));
if (keysA.length !== keysB.length) {
return false;
}
for (let i = 0; i < keysA.length; i++) {
const k = keysA[i];
queue.push({a: a[k], b: b[k], depth: depth - 1});
}
continue;
}
}
// If we get here, then depth == 0 or (a, b) are primitives.
if (a !== b) {
return false;
}
}
return true;
}
/**
* @param {*} obj
* @param {string} key
* @return {boolean}
*/
function hasOwnProperty(obj, key) {
if (obj == null || typeof obj != 'object') {
return false;
}
return Object.prototype.hasOwnProperty.call(
/** @type {!Object} */ (obj),
key
);
}
/**
* This helper function handles configurations specified in a JSON format.
*
* It allows the configuration is to be written in plain JS (which has better
* dev ergonomics like comments and trailing commas), and allows the
* configuration to be transformed into an efficient JSON-parsed representation
* in the dist build. See https://v8.dev/blog/cost-of-javascript-2019#json
*
* @param {!Object} obj
* @return {!JsonObject}
*/
export function jsonConfiguration(obj) {
return /** @type {!JsonObject} */ (obj);
}
/**
* This converts an Object into a suitable type to be used in `includeJsonLiteral`.
* This doesn't actually do any conversion, it only changes the closure type.
*
* @param {!Object|!Array|string|number|boolean|null} value
* @return {!InternalJsonLiteralTypeDef}
*/
export function jsonLiteral(value) {
return /** @type {!InternalJsonLiteralTypeDef} */ (value);
}
/**
* Allows inclusion of a variable (that's wrapped in a jsonLiteral
* call) to be included inside a jsonConfiguration.
*
* @param {!InternalJsonLiteralTypeDef} value
* @return {*}
*/
export function includeJsonLiteral(value) {
return value;
}