Swap-Aggregator-Subgraph/node_modules/yaml/dist/schema/parseSeq.js
2022-07-03 07:27:35 +05:30

175 lines
4.6 KiB
JavaScript

"use strict";
exports.parseSeq = parseSeq;
var _constants = require("../constants");
var _errors = require("../errors");
var _Pair = require("./Pair");
var _parseUtils = require("./parseUtils");
var _Seq = require("./Seq");
var _Collection = require("./Collection");
function parseSeq(doc, cst) {
if (cst.type !== _constants.Type.SEQ && cst.type !== _constants.Type.FLOW_SEQ) {
const msg = `A ${cst.type} node cannot be resolved as a sequence`;
doc.errors.push(new _errors.YAMLSyntaxError(cst, msg));
return null;
}
const {
comments,
items
} = cst.type === _constants.Type.FLOW_SEQ ? resolveFlowSeqItems(doc, cst) : resolveBlockSeqItems(doc, cst);
const seq = new _Seq.YAMLSeq();
seq.items = items;
(0, _parseUtils.resolveComments)(seq, comments);
if (!doc.options.mapAsMap && items.some(it => it instanceof _Pair.Pair && it.key instanceof _Collection.Collection)) {
const warn = 'Keys with collection values will be stringified as YAML due to JS Object restrictions. Use mapAsMap: true to avoid this.';
doc.warnings.push(new _errors.YAMLWarning(cst, warn));
}
cst.resolved = seq;
return seq;
}
function resolveBlockSeqItems(doc, cst) {
const comments = [];
const items = [];
for (let i = 0; i < cst.items.length; ++i) {
const item = cst.items[i];
switch (item.type) {
case _constants.Type.BLANK_LINE:
comments.push({
before: items.length
});
break;
case _constants.Type.COMMENT:
comments.push({
comment: item.comment,
before: items.length
});
break;
case _constants.Type.SEQ_ITEM:
if (item.error) doc.errors.push(item.error);
items.push(doc.resolveNode(item.node));
if (item.hasProps) {
const msg = 'Sequence items cannot have tags or anchors before the - indicator';
doc.errors.push(new _errors.YAMLSemanticError(item, msg));
}
break;
default:
if (item.error) doc.errors.push(item.error);
doc.errors.push(new _errors.YAMLSyntaxError(item, `Unexpected ${item.type} node in sequence`));
}
}
return {
comments,
items
};
}
function resolveFlowSeqItems(doc, cst) {
const comments = [];
const items = [];
let explicitKey = false;
let key = undefined;
let keyStart = null;
let next = '[';
for (let i = 0; i < cst.items.length; ++i) {
const item = cst.items[i];
if (typeof item.char === 'string') {
const {
char,
offset
} = item;
if (char !== ':' && (explicitKey || key !== undefined)) {
if (explicitKey && key === undefined) key = next ? items.pop() : null;
items.push(new _Pair.Pair(key));
explicitKey = false;
key = undefined;
keyStart = null;
}
if (char === next) {
next = null;
} else if (!next && char === '?') {
explicitKey = true;
} else if (next !== '[' && char === ':' && key === undefined) {
if (next === ',') {
key = items.pop();
if (key instanceof _Pair.Pair) {
const msg = 'Chaining flow sequence pairs is invalid';
const err = new _errors.YAMLSemanticError(cst, msg);
err.offset = offset;
doc.errors.push(err);
}
if (!explicitKey) (0, _parseUtils.checkKeyLength)(doc.errors, cst, i, key, keyStart);
} else {
key = null;
}
keyStart = null;
explicitKey = false; // TODO: add error for non-explicit multiline plain key
next = null;
} else if (next === '[' || char !== ']' || i < cst.items.length - 1) {
const msg = `Flow sequence contains an unexpected ${char}`;
const err = new _errors.YAMLSyntaxError(cst, msg);
err.offset = offset;
doc.errors.push(err);
}
} else if (item.type === _constants.Type.BLANK_LINE) {
comments.push({
before: items.length
});
} else if (item.type === _constants.Type.COMMENT) {
comments.push({
comment: item.comment,
before: items.length
});
} else {
if (next) {
const msg = `Expected a ${next} in flow sequence`;
doc.errors.push(new _errors.YAMLSemanticError(item, msg));
}
const value = doc.resolveNode(item);
if (key === undefined) {
items.push(value);
} else {
items.push(new _Pair.Pair(key, value));
key = undefined;
}
keyStart = item.range.start;
next = ',';
}
}
(0, _parseUtils.checkFlowCollectionEnd)(doc.errors, cst);
if (key !== undefined) items.push(new _Pair.Pair(key));
return {
comments,
items
};
}