-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathvalidate.js
389 lines (322 loc) · 12.4 KB
/
validate.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
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
'use strict';
var Lib = require('../lib');
var Plots = require('../plots/plots');
var PlotSchema = require('./plot_schema');
var dfltConfig = require('./plot_config').dfltConfig;
var isPlainObject = Lib.isPlainObject;
var isArray = Array.isArray;
var isArrayOrTypedArray = Lib.isArrayOrTypedArray;
/**
* Validate a data array and layout object.
*
* @param {array} data
* @param {object} layout
*
* @return {array} array of error objects each containing:
* - {string} code
* error code ('object', 'array', 'schema', 'unused', 'invisible' or 'value')
* - {string} container
* container where the error occurs ('data' or 'layout')
* - {number} trace
* trace index of the 'data' container where the error occurs
* - {array} path
* nested path to the key that causes the error
* - {string} astr
* attribute string variant of 'path' compatible with Plotly.restyle and
* Plotly.relayout.
* - {string} msg
* error message (shown in console in logger config argument is enable)
*/
module.exports = function validate(data, layout) {
if(data === undefined) data = [];
if(layout === undefined) layout = {};
var schema = PlotSchema.get();
var errorList = [];
var gd = {_context: Lib.extendFlat({}, dfltConfig)};
var dataIn, layoutIn;
if(isArray(data)) {
gd.data = Lib.extendDeep([], data);
dataIn = data;
} else {
gd.data = [];
dataIn = [];
errorList.push(format('array', 'data'));
}
if(isPlainObject(layout)) {
gd.layout = Lib.extendDeep({}, layout);
layoutIn = layout;
} else {
gd.layout = {};
layoutIn = {};
if(arguments.length > 1) {
errorList.push(format('object', 'layout'));
}
}
// N.B. dataIn and layoutIn are in general not the same as
// gd.data and gd.layout after supplyDefaults as some attributes
// in gd.data and gd.layout (still) get mutated during this step.
Plots.supplyDefaults(gd);
var dataOut = gd._fullData;
var len = dataIn.length;
for(var i = 0; i < len; i++) {
var traceIn = dataIn[i];
var base = ['data', i];
if(!isPlainObject(traceIn)) {
errorList.push(format('object', base));
continue;
}
var traceOut = dataOut[i];
var traceType = traceOut.type;
var traceSchema = schema.traces[traceType].attributes;
// PlotSchema does something fancy with trace 'type', reset it here
// to make the trace schema compatible with Lib.validate.
traceSchema.type = {
valType: 'enumerated',
values: [traceType]
};
if(traceOut.visible === false && traceIn.visible !== false) {
errorList.push(format('invisible', base));
}
crawl(traceIn, traceOut, traceSchema, errorList, base);
}
var layoutOut = gd._fullLayout;
var layoutSchema = fillLayoutSchema(schema, dataOut);
crawl(layoutIn, layoutOut, layoutSchema, errorList, 'layout');
// return undefined if no validation errors were found
return (errorList.length === 0) ? void(0) : errorList;
};
function crawl(objIn, objOut, schema, list, base, path) {
path = path || [];
var keys = Object.keys(objIn);
for(var i = 0; i < keys.length; i++) {
var k = keys[i];
var p = path.slice();
p.push(k);
var valIn = objIn[k];
var valOut = objOut[k];
var nestedSchema = getNestedSchema(schema, k);
var nestedValType = (nestedSchema || {}).valType;
var isInfoArray = nestedValType === 'info_array';
var isColorscale = nestedValType === 'colorscale';
var items = (nestedSchema || {}).items;
if(!isInSchema(schema, k)) {
list.push(format('schema', base, p));
} else if(isPlainObject(valIn) && isPlainObject(valOut) && nestedValType !== 'any') {
crawl(valIn, valOut, nestedSchema, list, base, p);
} else if(isInfoArray && isArray(valIn)) {
if(valIn.length > valOut.length) {
list.push(format('unused', base, p.concat(valOut.length)));
}
var len = valOut.length;
var arrayItems = Array.isArray(items);
if(arrayItems) len = Math.min(len, items.length);
var m, n, item, valInPart, valOutPart;
if(nestedSchema.dimensions === 2) {
for(n = 0; n < len; n++) {
if(isArray(valIn[n])) {
if(valIn[n].length > valOut[n].length) {
list.push(format('unused', base, p.concat(n, valOut[n].length)));
}
var len2 = valOut[n].length;
for(m = 0; m < (arrayItems ? Math.min(len2, items[n].length) : len2); m++) {
item = arrayItems ? items[n][m] : items;
valInPart = valIn[n][m];
valOutPart = valOut[n][m];
if(!Lib.validate(valInPart, item)) {
list.push(format('value', base, p.concat(n, m), valInPart));
} else if(valOutPart !== valInPart && valOutPart !== +valInPart) {
list.push(format('dynamic', base, p.concat(n, m), valInPart, valOutPart));
}
}
} else {
list.push(format('array', base, p.concat(n), valIn[n]));
}
}
} else {
for(n = 0; n < len; n++) {
item = arrayItems ? items[n] : items;
valInPart = valIn[n];
valOutPart = valOut[n];
if(!Lib.validate(valInPart, item)) {
list.push(format('value', base, p.concat(n), valInPart));
} else if(valOutPart !== valInPart && valOutPart !== +valInPart) {
list.push(format('dynamic', base, p.concat(n), valInPart, valOutPart));
}
}
}
} else if(nestedSchema.items && !isInfoArray && isArray(valIn)) {
var _nestedSchema = items[Object.keys(items)[0]];
var indexList = [];
var j, _p;
// loop over valOut items while keeping track of their
// corresponding input container index (given by _index)
for(j = 0; j < valOut.length; j++) {
var _index = valOut[j]._index || j;
_p = p.slice();
_p.push(_index);
if(isPlainObject(valIn[_index]) && isPlainObject(valOut[j])) {
indexList.push(_index);
var valInj = valIn[_index];
var valOutj = valOut[j];
if(isPlainObject(valInj) && valInj.visible !== false && valOutj.visible === false) {
list.push(format('invisible', base, _p));
} else crawl(valInj, valOutj, _nestedSchema, list, base, _p);
}
}
// loop over valIn to determine where it went wrong for some items
for(j = 0; j < valIn.length; j++) {
_p = p.slice();
_p.push(j);
if(!isPlainObject(valIn[j])) {
list.push(format('object', base, _p, valIn[j]));
} else if(indexList.indexOf(j) === -1) {
list.push(format('unused', base, _p));
}
}
} else if(!isPlainObject(valIn) && isPlainObject(valOut)) {
list.push(format('object', base, p, valIn));
} else if(!isArrayOrTypedArray(valIn) && isArrayOrTypedArray(valOut) && !isInfoArray && !isColorscale) {
list.push(format('array', base, p, valIn));
} else if(!(k in objOut)) {
list.push(format('unused', base, p, valIn));
} else if(!Lib.validate(valIn, nestedSchema)) {
list.push(format('value', base, p, valIn));
} else if(nestedSchema.valType === 'enumerated' &&
(
(nestedSchema.coerceNumber && valIn !== +valOut) ||
(!isArrayOrTypedArray(valIn) && valIn !== valOut) ||
(String(valIn) !== String(valOut))
)
) {
list.push(format('dynamic', base, p, valIn, valOut));
}
}
return list;
}
// the 'full' layout schema depends on the traces types presents
function fillLayoutSchema(schema, dataOut) {
var layoutSchema = schema.layout.layoutAttributes;
for(var i = 0; i < dataOut.length; i++) {
var traceOut = dataOut[i];
var traceSchema = schema.traces[traceOut.type];
var traceLayoutAttr = traceSchema.layoutAttributes;
if(traceLayoutAttr) {
if(traceOut.subplot) {
Lib.extendFlat(layoutSchema[traceSchema.attributes.subplot.dflt], traceLayoutAttr);
} else {
Lib.extendFlat(layoutSchema, traceLayoutAttr);
}
}
}
return layoutSchema;
}
// validation error codes
var code2msgFunc = {
object: function(base, astr) {
var prefix;
if(base === 'layout' && astr === '') prefix = 'The layout argument';
else if(base[0] === 'data' && astr === '') {
prefix = 'Trace ' + base[1] + ' in the data argument';
} else prefix = inBase(base) + 'key ' + astr;
return prefix + ' must be linked to an object container';
},
array: function(base, astr) {
var prefix;
if(base === 'data') prefix = 'The data argument';
else prefix = inBase(base) + 'key ' + astr;
return prefix + ' must be linked to an array container';
},
schema: function(base, astr) {
return inBase(base) + 'key ' + astr + ' is not part of the schema';
},
unused: function(base, astr, valIn) {
var target = isPlainObject(valIn) ? 'container' : 'key';
return inBase(base) + target + ' ' + astr + ' did not get coerced';
},
dynamic: function(base, astr, valIn, valOut) {
return [
inBase(base) + 'key',
astr,
'(set to \'' + valIn + '\')',
'got reset to',
'\'' + valOut + '\'',
'during defaults.'
].join(' ');
},
invisible: function(base, astr) {
return (
astr ? (inBase(base) + 'item ' + astr) : ('Trace ' + base[1])
) + ' got defaulted to be not visible';
},
value: function(base, astr, valIn) {
return [
inBase(base) + 'key ' + astr,
'is set to an invalid value (' + valIn + ')'
].join(' ');
}
};
function inBase(base) {
if(isArray(base)) return 'In data trace ' + base[1] + ', ';
return 'In ' + base + ', ';
}
function format(code, base, path, valIn, valOut) {
path = path || '';
var container, trace;
// container is either 'data' or 'layout
// trace is the trace index if 'data', null otherwise
if(isArray(base)) {
container = base[0];
trace = base[1];
} else {
container = base;
trace = null;
}
var astr = convertPathToAttributeString(path);
var msg = code2msgFunc[code](base, astr, valIn, valOut);
// log to console if logger config option is enabled
Lib.log(msg);
return {
code: code,
container: container,
trace: trace,
path: path,
astr: astr,
msg: msg
};
}
function isInSchema(schema, key) {
var parts = splitKey(key);
var keyMinusId = parts.keyMinusId;
var id = parts.id;
if((keyMinusId in schema) && schema[keyMinusId]._isSubplotObj && id) {
return true;
}
return (key in schema);
}
function getNestedSchema(schema, key) {
if(key in schema) return schema[key];
var parts = splitKey(key);
return schema[parts.keyMinusId];
}
var idRegex = Lib.counterRegex('([a-z]+)');
function splitKey(key) {
var idMatch = key.match(idRegex);
return {
keyMinusId: idMatch && idMatch[1],
id: idMatch && idMatch[2]
};
}
function convertPathToAttributeString(path) {
if(!isArray(path)) return String(path);
var astr = '';
for(var i = 0; i < path.length; i++) {
var p = path[i];
if(typeof p === 'number') {
astr = astr.substr(0, astr.length - 1) + '[' + p + ']';
} else {
astr += p;
}
if(i < path.length - 1) astr += '.';
}
return astr;
}