Update checked-in dependencies
This commit is contained in:
parent
cec3af8bb0
commit
6fdd5c2f4c
244 changed files with 48037 additions and 4284 deletions
0
node_modules/js-yaml/lib/js-yaml/common.js → node_modules/js-yaml/lib/common.js
generated
vendored
0
node_modules/js-yaml/lib/js-yaml/common.js → node_modules/js-yaml/lib/common.js
generated
vendored
300
node_modules/js-yaml/lib/js-yaml/dumper.js → node_modules/js-yaml/lib/dumper.js
generated
vendored
300
node_modules/js-yaml/lib/js-yaml/dumper.js → node_modules/js-yaml/lib/dumper.js
generated
vendored
|
|
@ -4,14 +4,15 @@
|
|||
|
||||
var common = require('./common');
|
||||
var YAMLException = require('./exception');
|
||||
var DEFAULT_FULL_SCHEMA = require('./schema/default_full');
|
||||
var DEFAULT_SAFE_SCHEMA = require('./schema/default_safe');
|
||||
var DEFAULT_SCHEMA = require('./schema/default');
|
||||
|
||||
var _toString = Object.prototype.toString;
|
||||
var _hasOwnProperty = Object.prototype.hasOwnProperty;
|
||||
|
||||
var CHAR_BOM = 0xFEFF;
|
||||
var CHAR_TAB = 0x09; /* Tab */
|
||||
var CHAR_LINE_FEED = 0x0A; /* LF */
|
||||
var CHAR_CARRIAGE_RETURN = 0x0D; /* CR */
|
||||
var CHAR_SPACE = 0x20; /* Space */
|
||||
var CHAR_EXCLAMATION = 0x21; /* ! */
|
||||
var CHAR_DOUBLE_QUOTE = 0x22; /* " */
|
||||
|
|
@ -23,6 +24,7 @@ var CHAR_ASTERISK = 0x2A; /* * */
|
|||
var CHAR_COMMA = 0x2C; /* , */
|
||||
var CHAR_MINUS = 0x2D; /* - */
|
||||
var CHAR_COLON = 0x3A; /* : */
|
||||
var CHAR_EQUALS = 0x3D; /* = */
|
||||
var CHAR_GREATER_THAN = 0x3E; /* > */
|
||||
var CHAR_QUESTION = 0x3F; /* ? */
|
||||
var CHAR_COMMERCIAL_AT = 0x40; /* @ */
|
||||
|
|
@ -56,6 +58,8 @@ var DEPRECATED_BOOLEANS_SYNTAX = [
|
|||
'n', 'N', 'no', 'No', 'NO', 'off', 'Off', 'OFF'
|
||||
];
|
||||
|
||||
var DEPRECATED_BASE60_SYNTAX = /^[-+]?[0-9_]+(?::[0-9_]+)+(?:\.[0-9_]*)?$/;
|
||||
|
||||
function compileStyleMap(schema, map) {
|
||||
var result, keys, index, length, tag, style, type;
|
||||
|
||||
|
|
@ -104,8 +108,12 @@ function encodeHex(character) {
|
|||
return '\\' + handle + common.repeat('0', length - string.length) + string;
|
||||
}
|
||||
|
||||
|
||||
var QUOTING_TYPE_SINGLE = 1,
|
||||
QUOTING_TYPE_DOUBLE = 2;
|
||||
|
||||
function State(options) {
|
||||
this.schema = options['schema'] || DEFAULT_FULL_SCHEMA;
|
||||
this.schema = options['schema'] || DEFAULT_SCHEMA;
|
||||
this.indent = Math.max(1, (options['indent'] || 2));
|
||||
this.noArrayIndent = options['noArrayIndent'] || false;
|
||||
this.skipInvalid = options['skipInvalid'] || false;
|
||||
|
|
@ -116,6 +124,9 @@ function State(options) {
|
|||
this.noRefs = options['noRefs'] || false;
|
||||
this.noCompatMode = options['noCompatMode'] || false;
|
||||
this.condenseFlow = options['condenseFlow'] || false;
|
||||
this.quotingType = options['quotingType'] === '"' ? QUOTING_TYPE_DOUBLE : QUOTING_TYPE_SINGLE;
|
||||
this.forceQuotes = options['forceQuotes'] || false;
|
||||
this.replacer = typeof options['replacer'] === 'function' ? options['replacer'] : null;
|
||||
|
||||
this.implicitTypes = this.schema.compiledImplicit;
|
||||
this.explicitTypes = this.schema.compiledExplicit;
|
||||
|
|
@ -184,31 +195,60 @@ function isWhitespace(c) {
|
|||
function isPrintable(c) {
|
||||
return (0x00020 <= c && c <= 0x00007E)
|
||||
|| ((0x000A1 <= c && c <= 0x00D7FF) && c !== 0x2028 && c !== 0x2029)
|
||||
|| ((0x0E000 <= c && c <= 0x00FFFD) && c !== 0xFEFF /* BOM */)
|
||||
|| ((0x0E000 <= c && c <= 0x00FFFD) && c !== CHAR_BOM)
|
||||
|| (0x10000 <= c && c <= 0x10FFFF);
|
||||
}
|
||||
|
||||
// Simplified test for values allowed after the first character in plain style.
|
||||
function isPlainSafe(c) {
|
||||
// Uses a subset of nb-char - c-flow-indicator - ":" - "#"
|
||||
// where nb-char ::= c-printable - b-char - c-byte-order-mark.
|
||||
return isPrintable(c) && c !== 0xFEFF
|
||||
// - c-flow-indicator
|
||||
&& c !== CHAR_COMMA
|
||||
&& c !== CHAR_LEFT_SQUARE_BRACKET
|
||||
&& c !== CHAR_RIGHT_SQUARE_BRACKET
|
||||
&& c !== CHAR_LEFT_CURLY_BRACKET
|
||||
&& c !== CHAR_RIGHT_CURLY_BRACKET
|
||||
// - ":" - "#"
|
||||
&& c !== CHAR_COLON
|
||||
&& c !== CHAR_SHARP;
|
||||
// [34] ns-char ::= nb-char - s-white
|
||||
// [27] nb-char ::= c-printable - b-char - c-byte-order-mark
|
||||
// [26] b-char ::= b-line-feed | b-carriage-return
|
||||
// Including s-white (for some reason, examples doesn't match specs in this aspect)
|
||||
// ns-char ::= c-printable - b-line-feed - b-carriage-return - c-byte-order-mark
|
||||
function isNsCharOrWhitespace(c) {
|
||||
return isPrintable(c)
|
||||
&& c !== CHAR_BOM
|
||||
// - b-char
|
||||
&& c !== CHAR_CARRIAGE_RETURN
|
||||
&& c !== CHAR_LINE_FEED;
|
||||
}
|
||||
|
||||
// [127] ns-plain-safe(c) ::= c = flow-out ⇒ ns-plain-safe-out
|
||||
// c = flow-in ⇒ ns-plain-safe-in
|
||||
// c = block-key ⇒ ns-plain-safe-out
|
||||
// c = flow-key ⇒ ns-plain-safe-in
|
||||
// [128] ns-plain-safe-out ::= ns-char
|
||||
// [129] ns-plain-safe-in ::= ns-char - c-flow-indicator
|
||||
// [130] ns-plain-char(c) ::= ( ns-plain-safe(c) - “:” - “#” )
|
||||
// | ( /* An ns-char preceding */ “#” )
|
||||
// | ( “:” /* Followed by an ns-plain-safe(c) */ )
|
||||
function isPlainSafe(c, prev, inblock) {
|
||||
var cIsNsCharOrWhitespace = isNsCharOrWhitespace(c);
|
||||
var cIsNsChar = cIsNsCharOrWhitespace && !isWhitespace(c);
|
||||
return (
|
||||
// ns-plain-safe
|
||||
inblock ? // c = flow-in
|
||||
cIsNsCharOrWhitespace
|
||||
: cIsNsCharOrWhitespace
|
||||
// - c-flow-indicator
|
||||
&& c !== CHAR_COMMA
|
||||
&& c !== CHAR_LEFT_SQUARE_BRACKET
|
||||
&& c !== CHAR_RIGHT_SQUARE_BRACKET
|
||||
&& c !== CHAR_LEFT_CURLY_BRACKET
|
||||
&& c !== CHAR_RIGHT_CURLY_BRACKET
|
||||
)
|
||||
// ns-plain-char
|
||||
&& c !== CHAR_SHARP // false on '#'
|
||||
&& !(prev === CHAR_COLON && !cIsNsChar) // false on ': '
|
||||
|| (isNsCharOrWhitespace(prev) && !isWhitespace(prev) && c === CHAR_SHARP) // change to true on '[^ ]#'
|
||||
|| (prev === CHAR_COLON && cIsNsChar); // change to true on ':[^ ]'
|
||||
}
|
||||
|
||||
// Simplified test for values allowed as the first character in plain style.
|
||||
function isPlainSafeFirst(c) {
|
||||
// Uses a subset of ns-char - c-indicator
|
||||
// where ns-char = nb-char - s-white.
|
||||
return isPrintable(c) && c !== 0xFEFF
|
||||
// No support of ( ( “?” | “:” | “-” ) /* Followed by an ns-plain-safe(c)) */ ) part
|
||||
return isPrintable(c) && c !== CHAR_BOM
|
||||
&& !isWhitespace(c) // - s-white
|
||||
// - (c-indicator ::=
|
||||
// “-” | “?” | “:” | “,” | “[” | “]” | “{” | “}”
|
||||
|
|
@ -220,12 +260,13 @@ function isPlainSafeFirst(c) {
|
|||
&& c !== CHAR_RIGHT_SQUARE_BRACKET
|
||||
&& c !== CHAR_LEFT_CURLY_BRACKET
|
||||
&& c !== CHAR_RIGHT_CURLY_BRACKET
|
||||
// | “#” | “&” | “*” | “!” | “|” | “>” | “'” | “"”
|
||||
// | “#” | “&” | “*” | “!” | “|” | “=” | “>” | “'” | “"”
|
||||
&& c !== CHAR_SHARP
|
||||
&& c !== CHAR_AMPERSAND
|
||||
&& c !== CHAR_ASTERISK
|
||||
&& c !== CHAR_EXCLAMATION
|
||||
&& c !== CHAR_VERTICAL_LINE
|
||||
&& c !== CHAR_EQUALS
|
||||
&& c !== CHAR_GREATER_THAN
|
||||
&& c !== CHAR_SINGLE_QUOTE
|
||||
&& c !== CHAR_DOUBLE_QUOTE
|
||||
|
|
@ -235,6 +276,25 @@ function isPlainSafeFirst(c) {
|
|||
&& c !== CHAR_GRAVE_ACCENT;
|
||||
}
|
||||
|
||||
// Simplified test for values allowed as the last character in plain style.
|
||||
function isPlainSafeLast(c) {
|
||||
// just not whitespace or colon, it will be checked to be plain character later
|
||||
return !isWhitespace(c) && c !== CHAR_COLON;
|
||||
}
|
||||
|
||||
// Same as 'string'.codePointAt(pos), but works in older browsers.
|
||||
function codePointAt(string, pos) {
|
||||
var first = string.charCodeAt(pos), second;
|
||||
if (first >= 0xD800 && first <= 0xDBFF && pos + 1 < string.length) {
|
||||
second = string.charCodeAt(pos + 1);
|
||||
if (second >= 0xDC00 && second <= 0xDFFF) {
|
||||
// https://mathiasbynens.be/notes/javascript-encoding#surrogate-formulae
|
||||
return (first - 0xD800) * 0x400 + second - 0xDC00 + 0x10000;
|
||||
}
|
||||
}
|
||||
return first;
|
||||
}
|
||||
|
||||
// Determines whether block indentation indicator is required.
|
||||
function needIndentIndicator(string) {
|
||||
var leadingSpaceRe = /^\n* /;
|
||||
|
|
@ -254,30 +314,34 @@ var STYLE_PLAIN = 1,
|
|||
// STYLE_PLAIN or STYLE_SINGLE => no \n are in the string.
|
||||
// STYLE_LITERAL => no lines are suitable for folding (or lineWidth is -1).
|
||||
// STYLE_FOLDED => a line > lineWidth and can be folded (and lineWidth != -1).
|
||||
function chooseScalarStyle(string, singleLineOnly, indentPerLevel, lineWidth, testAmbiguousType) {
|
||||
function chooseScalarStyle(string, singleLineOnly, indentPerLevel, lineWidth,
|
||||
testAmbiguousType, quotingType, forceQuotes, inblock) {
|
||||
|
||||
var i;
|
||||
var char;
|
||||
var char = 0;
|
||||
var prevChar = null;
|
||||
var hasLineBreak = false;
|
||||
var hasFoldableLine = false; // only checked if shouldTrackWidth
|
||||
var shouldTrackWidth = lineWidth !== -1;
|
||||
var previousLineBreak = -1; // count the first line correctly
|
||||
var plain = isPlainSafeFirst(string.charCodeAt(0))
|
||||
&& !isWhitespace(string.charCodeAt(string.length - 1));
|
||||
var plain = isPlainSafeFirst(codePointAt(string, 0))
|
||||
&& isPlainSafeLast(codePointAt(string, string.length - 1));
|
||||
|
||||
if (singleLineOnly) {
|
||||
if (singleLineOnly || forceQuotes) {
|
||||
// Case: no block styles.
|
||||
// Check for disallowed characters to rule out plain and single.
|
||||
for (i = 0; i < string.length; i++) {
|
||||
char = string.charCodeAt(i);
|
||||
for (i = 0; i < string.length; char >= 0x10000 ? i += 2 : i++) {
|
||||
char = codePointAt(string, i);
|
||||
if (!isPrintable(char)) {
|
||||
return STYLE_DOUBLE;
|
||||
}
|
||||
plain = plain && isPlainSafe(char);
|
||||
plain = plain && isPlainSafe(char, prevChar, inblock);
|
||||
prevChar = char;
|
||||
}
|
||||
} else {
|
||||
// Case: block styles permitted.
|
||||
for (i = 0; i < string.length; i++) {
|
||||
char = string.charCodeAt(i);
|
||||
for (i = 0; i < string.length; char >= 0x10000 ? i += 2 : i++) {
|
||||
char = codePointAt(string, i);
|
||||
if (char === CHAR_LINE_FEED) {
|
||||
hasLineBreak = true;
|
||||
// Check if any line can be folded.
|
||||
|
|
@ -291,7 +355,8 @@ function chooseScalarStyle(string, singleLineOnly, indentPerLevel, lineWidth, te
|
|||
} else if (!isPrintable(char)) {
|
||||
return STYLE_DOUBLE;
|
||||
}
|
||||
plain = plain && isPlainSafe(char);
|
||||
plain = plain && isPlainSafe(char, prevChar, inblock);
|
||||
prevChar = char;
|
||||
}
|
||||
// in case the end is missing a \n
|
||||
hasFoldableLine = hasFoldableLine || (shouldTrackWidth &&
|
||||
|
|
@ -304,8 +369,10 @@ function chooseScalarStyle(string, singleLineOnly, indentPerLevel, lineWidth, te
|
|||
if (!hasLineBreak && !hasFoldableLine) {
|
||||
// Strings interpretable as another type have to be quoted;
|
||||
// e.g. the string 'true' vs. the boolean true.
|
||||
return plain && !testAmbiguousType(string)
|
||||
? STYLE_PLAIN : STYLE_SINGLE;
|
||||
if (plain && !forceQuotes && !testAmbiguousType(string)) {
|
||||
return STYLE_PLAIN;
|
||||
}
|
||||
return quotingType === QUOTING_TYPE_DOUBLE ? STYLE_DOUBLE : STYLE_SINGLE;
|
||||
}
|
||||
// Edge case: block indentation indicator can only have one digit.
|
||||
if (indentPerLevel > 9 && needIndentIndicator(string)) {
|
||||
|
|
@ -313,7 +380,10 @@ function chooseScalarStyle(string, singleLineOnly, indentPerLevel, lineWidth, te
|
|||
}
|
||||
// At this point we know block styles are valid.
|
||||
// Prefer literal style unless we want to fold.
|
||||
return hasFoldableLine ? STYLE_FOLDED : STYLE_LITERAL;
|
||||
if (!forceQuotes) {
|
||||
return hasFoldableLine ? STYLE_FOLDED : STYLE_LITERAL;
|
||||
}
|
||||
return quotingType === QUOTING_TYPE_DOUBLE ? STYLE_DOUBLE : STYLE_SINGLE;
|
||||
}
|
||||
|
||||
// Note: line breaking/folding is implemented for only the folded style.
|
||||
|
|
@ -322,14 +392,15 @@ function chooseScalarStyle(string, singleLineOnly, indentPerLevel, lineWidth, te
|
|||
// • No ending newline => unaffected; already using strip "-" chomping.
|
||||
// • Ending newline => removed then restored.
|
||||
// Importantly, this keeps the "+" chomp indicator from gaining an extra line.
|
||||
function writeScalar(state, string, level, iskey) {
|
||||
function writeScalar(state, string, level, iskey, inblock) {
|
||||
state.dump = (function () {
|
||||
if (string.length === 0) {
|
||||
return "''";
|
||||
return state.quotingType === QUOTING_TYPE_DOUBLE ? '""' : "''";
|
||||
}
|
||||
if (!state.noCompatMode &&
|
||||
DEPRECATED_BOOLEANS_SYNTAX.indexOf(string) !== -1) {
|
||||
return "'" + string + "'";
|
||||
if (!state.noCompatMode) {
|
||||
if (DEPRECATED_BOOLEANS_SYNTAX.indexOf(string) !== -1 || DEPRECATED_BASE60_SYNTAX.test(string)) {
|
||||
return state.quotingType === QUOTING_TYPE_DOUBLE ? ('"' + string + '"') : ("'" + string + "'");
|
||||
}
|
||||
}
|
||||
|
||||
var indent = state.indent * Math.max(1, level); // no 0-indent scalars
|
||||
|
|
@ -351,7 +422,9 @@ function writeScalar(state, string, level, iskey) {
|
|||
return testImplicitResolving(state, string);
|
||||
}
|
||||
|
||||
switch (chooseScalarStyle(string, singleLineOnly, state.indent, lineWidth, testAmbiguity)) {
|
||||
switch (chooseScalarStyle(string, singleLineOnly, state.indent, lineWidth,
|
||||
testAmbiguity, state.quotingType, state.forceQuotes && !iskey, inblock)) {
|
||||
|
||||
case STYLE_PLAIN:
|
||||
return string;
|
||||
case STYLE_SINGLE:
|
||||
|
|
@ -468,25 +541,19 @@ function foldLine(line, width) {
|
|||
// Escapes a double-quoted string.
|
||||
function escapeString(string) {
|
||||
var result = '';
|
||||
var char, nextChar;
|
||||
var char = 0;
|
||||
var escapeSeq;
|
||||
|
||||
for (var i = 0; i < string.length; i++) {
|
||||
char = string.charCodeAt(i);
|
||||
// Check for surrogate pairs (reference Unicode 3.0 section "3.7 Surrogates").
|
||||
if (char >= 0xD800 && char <= 0xDBFF/* high surrogate */) {
|
||||
nextChar = string.charCodeAt(i + 1);
|
||||
if (nextChar >= 0xDC00 && nextChar <= 0xDFFF/* low surrogate */) {
|
||||
// Combine the surrogate pair and store it escaped.
|
||||
result += encodeHex((char - 0xD800) * 0x400 + nextChar - 0xDC00 + 0x10000);
|
||||
// Advance index one extra since we already used that char here.
|
||||
i++; continue;
|
||||
}
|
||||
}
|
||||
for (var i = 0; i < string.length; char >= 0x10000 ? i += 2 : i++) {
|
||||
char = codePointAt(string, i);
|
||||
escapeSeq = ESCAPE_SEQUENCES[char];
|
||||
result += !escapeSeq && isPrintable(char)
|
||||
? string[i]
|
||||
: escapeSeq || encodeHex(char);
|
||||
|
||||
if (!escapeSeq && isPrintable(char)) {
|
||||
result += string[i];
|
||||
if (char >= 0x10000) result += string[i + 1];
|
||||
} else {
|
||||
result += escapeSeq || encodeHex(char);
|
||||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
|
|
@ -496,12 +563,22 @@ function writeFlowSequence(state, level, object) {
|
|||
var _result = '',
|
||||
_tag = state.tag,
|
||||
index,
|
||||
length;
|
||||
length,
|
||||
value;
|
||||
|
||||
for (index = 0, length = object.length; index < length; index += 1) {
|
||||
// Write only valid elements.
|
||||
if (writeNode(state, level, object[index], false, false)) {
|
||||
if (index !== 0) _result += ',' + (!state.condenseFlow ? ' ' : '');
|
||||
value = object[index];
|
||||
|
||||
if (state.replacer) {
|
||||
value = state.replacer.call(object, String(index), value);
|
||||
}
|
||||
|
||||
// Write only valid elements, put null instead of invalid elements.
|
||||
if (writeNode(state, level, value, false, false) ||
|
||||
(typeof value === 'undefined' &&
|
||||
writeNode(state, level, null, false, false))) {
|
||||
|
||||
if (_result !== '') _result += ',' + (!state.condenseFlow ? ' ' : '');
|
||||
_result += state.dump;
|
||||
}
|
||||
}
|
||||
|
|
@ -514,12 +591,22 @@ function writeBlockSequence(state, level, object, compact) {
|
|||
var _result = '',
|
||||
_tag = state.tag,
|
||||
index,
|
||||
length;
|
||||
length,
|
||||
value;
|
||||
|
||||
for (index = 0, length = object.length; index < length; index += 1) {
|
||||
// Write only valid elements.
|
||||
if (writeNode(state, level + 1, object[index], true, true)) {
|
||||
if (!compact || index !== 0) {
|
||||
value = object[index];
|
||||
|
||||
if (state.replacer) {
|
||||
value = state.replacer.call(object, String(index), value);
|
||||
}
|
||||
|
||||
// Write only valid elements, put null instead of invalid elements.
|
||||
if (writeNode(state, level + 1, value, true, true, false, true) ||
|
||||
(typeof value === 'undefined' &&
|
||||
writeNode(state, level + 1, null, true, true, false, true))) {
|
||||
|
||||
if (!compact || _result !== '') {
|
||||
_result += generateNextLine(state, level);
|
||||
}
|
||||
|
||||
|
|
@ -548,13 +635,19 @@ function writeFlowMapping(state, level, object) {
|
|||
pairBuffer;
|
||||
|
||||
for (index = 0, length = objectKeyList.length; index < length; index += 1) {
|
||||
pairBuffer = state.condenseFlow ? '"' : '';
|
||||
|
||||
if (index !== 0) pairBuffer += ', ';
|
||||
pairBuffer = '';
|
||||
if (_result !== '') pairBuffer += ', ';
|
||||
|
||||
if (state.condenseFlow) pairBuffer += '"';
|
||||
|
||||
objectKey = objectKeyList[index];
|
||||
objectValue = object[objectKey];
|
||||
|
||||
if (state.replacer) {
|
||||
objectValue = state.replacer.call(object, objectKey, objectValue);
|
||||
}
|
||||
|
||||
if (!writeNode(state, level, objectKey, false, false)) {
|
||||
continue; // Skip this pair because of invalid key;
|
||||
}
|
||||
|
|
@ -603,13 +696,17 @@ function writeBlockMapping(state, level, object, compact) {
|
|||
for (index = 0, length = objectKeyList.length; index < length; index += 1) {
|
||||
pairBuffer = '';
|
||||
|
||||
if (!compact || index !== 0) {
|
||||
if (!compact || _result !== '') {
|
||||
pairBuffer += generateNextLine(state, level);
|
||||
}
|
||||
|
||||
objectKey = objectKeyList[index];
|
||||
objectValue = object[objectKey];
|
||||
|
||||
if (state.replacer) {
|
||||
objectValue = state.replacer.call(object, objectKey, objectValue);
|
||||
}
|
||||
|
||||
if (!writeNode(state, level + 1, objectKey, true, true, true)) {
|
||||
continue; // Skip this pair because of invalid key.
|
||||
}
|
||||
|
|
@ -663,7 +760,15 @@ function detectType(state, object, explicit) {
|
|||
(!type.instanceOf || ((typeof object === 'object') && (object instanceof type.instanceOf))) &&
|
||||
(!type.predicate || type.predicate(object))) {
|
||||
|
||||
state.tag = explicit ? type.tag : '?';
|
||||
if (explicit) {
|
||||
if (type.multi && type.representName) {
|
||||
state.tag = type.representName(object);
|
||||
} else {
|
||||
state.tag = type.tag;
|
||||
}
|
||||
} else {
|
||||
state.tag = '?';
|
||||
}
|
||||
|
||||
if (type.represent) {
|
||||
style = state.styleMap[type.tag] || type.defaultStyle;
|
||||
|
|
@ -689,7 +794,7 @@ function detectType(state, object, explicit) {
|
|||
// Serializes `object` and writes it to global `result`.
|
||||
// Returns true on success, or false on invalid object.
|
||||
//
|
||||
function writeNode(state, level, object, block, compact, iskey) {
|
||||
function writeNode(state, level, object, block, compact, iskey, isblockseq) {
|
||||
state.tag = null;
|
||||
state.dump = object;
|
||||
|
||||
|
|
@ -698,6 +803,8 @@ function writeNode(state, level, object, block, compact, iskey) {
|
|||
}
|
||||
|
||||
var type = _toString.call(state.dump);
|
||||
var inblock = block;
|
||||
var tagStr;
|
||||
|
||||
if (block) {
|
||||
block = (state.flowLevel < 0 || state.flowLevel > level);
|
||||
|
|
@ -735,29 +842,59 @@ function writeNode(state, level, object, block, compact, iskey) {
|
|||
}
|
||||
}
|
||||
} else if (type === '[object Array]') {
|
||||
var arrayLevel = (state.noArrayIndent && (level > 0)) ? level - 1 : level;
|
||||
if (block && (state.dump.length !== 0)) {
|
||||
writeBlockSequence(state, arrayLevel, state.dump, compact);
|
||||
if (state.noArrayIndent && !isblockseq && level > 0) {
|
||||
writeBlockSequence(state, level - 1, state.dump, compact);
|
||||
} else {
|
||||
writeBlockSequence(state, level, state.dump, compact);
|
||||
}
|
||||
if (duplicate) {
|
||||
state.dump = '&ref_' + duplicateIndex + state.dump;
|
||||
}
|
||||
} else {
|
||||
writeFlowSequence(state, arrayLevel, state.dump);
|
||||
writeFlowSequence(state, level, state.dump);
|
||||
if (duplicate) {
|
||||
state.dump = '&ref_' + duplicateIndex + ' ' + state.dump;
|
||||
}
|
||||
}
|
||||
} else if (type === '[object String]') {
|
||||
if (state.tag !== '?') {
|
||||
writeScalar(state, state.dump, level, iskey);
|
||||
writeScalar(state, state.dump, level, iskey, inblock);
|
||||
}
|
||||
} else if (type === '[object Undefined]') {
|
||||
return false;
|
||||
} else {
|
||||
if (state.skipInvalid) return false;
|
||||
throw new YAMLException('unacceptable kind of an object to dump ' + type);
|
||||
}
|
||||
|
||||
if (state.tag !== null && state.tag !== '?') {
|
||||
state.dump = '!<' + state.tag + '> ' + state.dump;
|
||||
// Need to encode all characters except those allowed by the spec:
|
||||
//
|
||||
// [35] ns-dec-digit ::= [#x30-#x39] /* 0-9 */
|
||||
// [36] ns-hex-digit ::= ns-dec-digit
|
||||
// | [#x41-#x46] /* A-F */ | [#x61-#x66] /* a-f */
|
||||
// [37] ns-ascii-letter ::= [#x41-#x5A] /* A-Z */ | [#x61-#x7A] /* a-z */
|
||||
// [38] ns-word-char ::= ns-dec-digit | ns-ascii-letter | “-”
|
||||
// [39] ns-uri-char ::= “%” ns-hex-digit ns-hex-digit | ns-word-char | “#”
|
||||
// | “;” | “/” | “?” | “:” | “@” | “&” | “=” | “+” | “$” | “,”
|
||||
// | “_” | “.” | “!” | “~” | “*” | “'” | “(” | “)” | “[” | “]”
|
||||
//
|
||||
// Also need to encode '!' because it has special meaning (end of tag prefix).
|
||||
//
|
||||
tagStr = encodeURI(
|
||||
state.tag[0] === '!' ? state.tag.slice(1) : state.tag
|
||||
).replace(/!/g, '%21');
|
||||
|
||||
if (state.tag[0] === '!') {
|
||||
tagStr = '!' + tagStr;
|
||||
} else if (tagStr.slice(0, 18) === 'tag:yaml.org,2002:') {
|
||||
tagStr = '!!' + tagStr.slice(18);
|
||||
} else {
|
||||
tagStr = '!<' + tagStr + '>';
|
||||
}
|
||||
|
||||
state.dump = tagStr + ' ' + state.dump;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -814,14 +951,15 @@ function dump(input, options) {
|
|||
|
||||
if (!state.noRefs) getDuplicateReferences(input, state);
|
||||
|
||||
if (writeNode(state, 0, input, true, true)) return state.dump + '\n';
|
||||
var value = input;
|
||||
|
||||
if (state.replacer) {
|
||||
value = state.replacer.call({ '': value }, '', value);
|
||||
}
|
||||
|
||||
if (writeNode(state, 0, value, true, true)) return state.dump + '\n';
|
||||
|
||||
return '';
|
||||
}
|
||||
|
||||
function safeDump(input, options) {
|
||||
return dump(input, common.extend({ schema: DEFAULT_SAFE_SCHEMA }, options));
|
||||
}
|
||||
|
||||
module.exports.dump = dump;
|
||||
module.exports.safeDump = safeDump;
|
||||
module.exports.dump = dump;
|
||||
32
node_modules/js-yaml/lib/js-yaml/exception.js → node_modules/js-yaml/lib/exception.js
generated
vendored
32
node_modules/js-yaml/lib/js-yaml/exception.js → node_modules/js-yaml/lib/exception.js
generated
vendored
|
|
@ -2,6 +2,26 @@
|
|||
//
|
||||
'use strict';
|
||||
|
||||
|
||||
function formatError(exception, compact) {
|
||||
var where = '', message = exception.reason || '(unknown reason)';
|
||||
|
||||
if (!exception.mark) return message;
|
||||
|
||||
if (exception.mark.name) {
|
||||
where += 'in "' + exception.mark.name + '" ';
|
||||
}
|
||||
|
||||
where += '(' + (exception.mark.line + 1) + ':' + (exception.mark.column + 1) + ')';
|
||||
|
||||
if (!compact && exception.mark.snippet) {
|
||||
where += '\n\n' + exception.mark.snippet;
|
||||
}
|
||||
|
||||
return message + ' ' + where;
|
||||
}
|
||||
|
||||
|
||||
function YAMLException(reason, mark) {
|
||||
// Super constructor
|
||||
Error.call(this);
|
||||
|
|
@ -9,7 +29,7 @@ function YAMLException(reason, mark) {
|
|||
this.name = 'YAMLException';
|
||||
this.reason = reason;
|
||||
this.mark = mark;
|
||||
this.message = (this.reason || '(unknown reason)') + (this.mark ? ' ' + this.mark.toString() : '');
|
||||
this.message = formatError(this, false);
|
||||
|
||||
// Include stack trace in error object
|
||||
if (Error.captureStackTrace) {
|
||||
|
|
@ -28,15 +48,7 @@ YAMLException.prototype.constructor = YAMLException;
|
|||
|
||||
|
||||
YAMLException.prototype.toString = function toString(compact) {
|
||||
var result = this.name + ': ';
|
||||
|
||||
result += this.reason || '(unknown reason)';
|
||||
|
||||
if (!compact && this.mark) {
|
||||
result += ' ' + this.mark.toString();
|
||||
}
|
||||
|
||||
return result;
|
||||
return this.name + ': ' + formatError(this, compact);
|
||||
};
|
||||
|
||||
|
||||
39
node_modules/js-yaml/lib/js-yaml.js
generated
vendored
39
node_modules/js-yaml/lib/js-yaml.js
generated
vendored
|
|
@ -1,39 +0,0 @@
|
|||
'use strict';
|
||||
|
||||
|
||||
var loader = require('./js-yaml/loader');
|
||||
var dumper = require('./js-yaml/dumper');
|
||||
|
||||
|
||||
function deprecated(name) {
|
||||
return function () {
|
||||
throw new Error('Function ' + name + ' is deprecated and cannot be used.');
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
module.exports.Type = require('./js-yaml/type');
|
||||
module.exports.Schema = require('./js-yaml/schema');
|
||||
module.exports.FAILSAFE_SCHEMA = require('./js-yaml/schema/failsafe');
|
||||
module.exports.JSON_SCHEMA = require('./js-yaml/schema/json');
|
||||
module.exports.CORE_SCHEMA = require('./js-yaml/schema/core');
|
||||
module.exports.DEFAULT_SAFE_SCHEMA = require('./js-yaml/schema/default_safe');
|
||||
module.exports.DEFAULT_FULL_SCHEMA = require('./js-yaml/schema/default_full');
|
||||
module.exports.load = loader.load;
|
||||
module.exports.loadAll = loader.loadAll;
|
||||
module.exports.safeLoad = loader.safeLoad;
|
||||
module.exports.safeLoadAll = loader.safeLoadAll;
|
||||
module.exports.dump = dumper.dump;
|
||||
module.exports.safeDump = dumper.safeDump;
|
||||
module.exports.YAMLException = require('./js-yaml/exception');
|
||||
|
||||
// Deprecated schema names from JS-YAML 2.0.x
|
||||
module.exports.MINIMAL_SCHEMA = require('./js-yaml/schema/failsafe');
|
||||
module.exports.SAFE_SCHEMA = require('./js-yaml/schema/default_safe');
|
||||
module.exports.DEFAULT_SCHEMA = require('./js-yaml/schema/default_full');
|
||||
|
||||
// Deprecated functions from JS-YAML 1.x.x
|
||||
module.exports.scan = deprecated('scan');
|
||||
module.exports.parse = deprecated('parse');
|
||||
module.exports.compose = deprecated('compose');
|
||||
module.exports.addConstructor = deprecated('addConstructor');
|
||||
76
node_modules/js-yaml/lib/js-yaml/mark.js
generated
vendored
76
node_modules/js-yaml/lib/js-yaml/mark.js
generated
vendored
|
|
@ -1,76 +0,0 @@
|
|||
'use strict';
|
||||
|
||||
|
||||
var common = require('./common');
|
||||
|
||||
|
||||
function Mark(name, buffer, position, line, column) {
|
||||
this.name = name;
|
||||
this.buffer = buffer;
|
||||
this.position = position;
|
||||
this.line = line;
|
||||
this.column = column;
|
||||
}
|
||||
|
||||
|
||||
Mark.prototype.getSnippet = function getSnippet(indent, maxLength) {
|
||||
var head, start, tail, end, snippet;
|
||||
|
||||
if (!this.buffer) return null;
|
||||
|
||||
indent = indent || 4;
|
||||
maxLength = maxLength || 75;
|
||||
|
||||
head = '';
|
||||
start = this.position;
|
||||
|
||||
while (start > 0 && '\x00\r\n\x85\u2028\u2029'.indexOf(this.buffer.charAt(start - 1)) === -1) {
|
||||
start -= 1;
|
||||
if (this.position - start > (maxLength / 2 - 1)) {
|
||||
head = ' ... ';
|
||||
start += 5;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
tail = '';
|
||||
end = this.position;
|
||||
|
||||
while (end < this.buffer.length && '\x00\r\n\x85\u2028\u2029'.indexOf(this.buffer.charAt(end)) === -1) {
|
||||
end += 1;
|
||||
if (end - this.position > (maxLength / 2 - 1)) {
|
||||
tail = ' ... ';
|
||||
end -= 5;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
snippet = this.buffer.slice(start, end);
|
||||
|
||||
return common.repeat(' ', indent) + head + snippet + tail + '\n' +
|
||||
common.repeat(' ', indent + this.position - start + head.length) + '^';
|
||||
};
|
||||
|
||||
|
||||
Mark.prototype.toString = function toString(compact) {
|
||||
var snippet, where = '';
|
||||
|
||||
if (this.name) {
|
||||
where += 'in "' + this.name + '" ';
|
||||
}
|
||||
|
||||
where += 'at line ' + (this.line + 1) + ', column ' + (this.column + 1);
|
||||
|
||||
if (!compact) {
|
||||
snippet = this.getSnippet();
|
||||
|
||||
if (snippet) {
|
||||
where += ':\n' + snippet;
|
||||
}
|
||||
}
|
||||
|
||||
return where;
|
||||
};
|
||||
|
||||
|
||||
module.exports = Mark;
|
||||
108
node_modules/js-yaml/lib/js-yaml/schema.js
generated
vendored
108
node_modules/js-yaml/lib/js-yaml/schema.js
generated
vendored
|
|
@ -1,108 +0,0 @@
|
|||
'use strict';
|
||||
|
||||
/*eslint-disable max-len*/
|
||||
|
||||
var common = require('./common');
|
||||
var YAMLException = require('./exception');
|
||||
var Type = require('./type');
|
||||
|
||||
|
||||
function compileList(schema, name, result) {
|
||||
var exclude = [];
|
||||
|
||||
schema.include.forEach(function (includedSchema) {
|
||||
result = compileList(includedSchema, name, result);
|
||||
});
|
||||
|
||||
schema[name].forEach(function (currentType) {
|
||||
result.forEach(function (previousType, previousIndex) {
|
||||
if (previousType.tag === currentType.tag && previousType.kind === currentType.kind) {
|
||||
exclude.push(previousIndex);
|
||||
}
|
||||
});
|
||||
|
||||
result.push(currentType);
|
||||
});
|
||||
|
||||
return result.filter(function (type, index) {
|
||||
return exclude.indexOf(index) === -1;
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
function compileMap(/* lists... */) {
|
||||
var result = {
|
||||
scalar: {},
|
||||
sequence: {},
|
||||
mapping: {},
|
||||
fallback: {}
|
||||
}, index, length;
|
||||
|
||||
function collectType(type) {
|
||||
result[type.kind][type.tag] = result['fallback'][type.tag] = type;
|
||||
}
|
||||
|
||||
for (index = 0, length = arguments.length; index < length; index += 1) {
|
||||
arguments[index].forEach(collectType);
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
function Schema(definition) {
|
||||
this.include = definition.include || [];
|
||||
this.implicit = definition.implicit || [];
|
||||
this.explicit = definition.explicit || [];
|
||||
|
||||
this.implicit.forEach(function (type) {
|
||||
if (type.loadKind && type.loadKind !== 'scalar') {
|
||||
throw new YAMLException('There is a non-scalar type in the implicit list of a schema. Implicit resolving of such types is not supported.');
|
||||
}
|
||||
});
|
||||
|
||||
this.compiledImplicit = compileList(this, 'implicit', []);
|
||||
this.compiledExplicit = compileList(this, 'explicit', []);
|
||||
this.compiledTypeMap = compileMap(this.compiledImplicit, this.compiledExplicit);
|
||||
}
|
||||
|
||||
|
||||
Schema.DEFAULT = null;
|
||||
|
||||
|
||||
Schema.create = function createSchema() {
|
||||
var schemas, types;
|
||||
|
||||
switch (arguments.length) {
|
||||
case 1:
|
||||
schemas = Schema.DEFAULT;
|
||||
types = arguments[0];
|
||||
break;
|
||||
|
||||
case 2:
|
||||
schemas = arguments[0];
|
||||
types = arguments[1];
|
||||
break;
|
||||
|
||||
default:
|
||||
throw new YAMLException('Wrong number of arguments for Schema.create function');
|
||||
}
|
||||
|
||||
schemas = common.toArray(schemas);
|
||||
types = common.toArray(types);
|
||||
|
||||
if (!schemas.every(function (schema) { return schema instanceof Schema; })) {
|
||||
throw new YAMLException('Specified list of super schemas (or a single Schema object) contains a non-Schema object.');
|
||||
}
|
||||
|
||||
if (!types.every(function (type) { return type instanceof Type; })) {
|
||||
throw new YAMLException('Specified list of YAML types (or a single Type object) contains a non-Type object.');
|
||||
}
|
||||
|
||||
return new Schema({
|
||||
include: schemas,
|
||||
explicit: types
|
||||
});
|
||||
};
|
||||
|
||||
|
||||
module.exports = Schema;
|
||||
25
node_modules/js-yaml/lib/js-yaml/schema/default_full.js
generated
vendored
25
node_modules/js-yaml/lib/js-yaml/schema/default_full.js
generated
vendored
|
|
@ -1,25 +0,0 @@
|
|||
// JS-YAML's default schema for `load` function.
|
||||
// It is not described in the YAML specification.
|
||||
//
|
||||
// This schema is based on JS-YAML's default safe schema and includes
|
||||
// JavaScript-specific types: !!js/undefined, !!js/regexp and !!js/function.
|
||||
//
|
||||
// Also this schema is used as default base schema at `Schema.create` function.
|
||||
|
||||
|
||||
'use strict';
|
||||
|
||||
|
||||
var Schema = require('../schema');
|
||||
|
||||
|
||||
module.exports = Schema.DEFAULT = new Schema({
|
||||
include: [
|
||||
require('./default_safe')
|
||||
],
|
||||
explicit: [
|
||||
require('../type/js/undefined'),
|
||||
require('../type/js/regexp'),
|
||||
require('../type/js/function')
|
||||
]
|
||||
});
|
||||
92
node_modules/js-yaml/lib/js-yaml/type/js/function.js
generated
vendored
92
node_modules/js-yaml/lib/js-yaml/type/js/function.js
generated
vendored
|
|
@ -1,92 +0,0 @@
|
|||
'use strict';
|
||||
|
||||
var esprima;
|
||||
|
||||
// Browserified version does not have esprima
|
||||
//
|
||||
// 1. For node.js just require module as deps
|
||||
// 2. For browser try to require mudule via external AMD system.
|
||||
// If not found - try to fallback to window.esprima. If not
|
||||
// found too - then fail to parse.
|
||||
//
|
||||
try {
|
||||
// workaround to exclude package from browserify list.
|
||||
var _require = require;
|
||||
esprima = _require('esprima');
|
||||
} catch (_) {
|
||||
/*global window */
|
||||
if (typeof window !== 'undefined') esprima = window.esprima;
|
||||
}
|
||||
|
||||
var Type = require('../../type');
|
||||
|
||||
function resolveJavascriptFunction(data) {
|
||||
if (data === null) return false;
|
||||
|
||||
try {
|
||||
var source = '(' + data + ')',
|
||||
ast = esprima.parse(source, { range: true });
|
||||
|
||||
if (ast.type !== 'Program' ||
|
||||
ast.body.length !== 1 ||
|
||||
ast.body[0].type !== 'ExpressionStatement' ||
|
||||
(ast.body[0].expression.type !== 'ArrowFunctionExpression' &&
|
||||
ast.body[0].expression.type !== 'FunctionExpression')) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
} catch (err) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
function constructJavascriptFunction(data) {
|
||||
/*jslint evil:true*/
|
||||
|
||||
var source = '(' + data + ')',
|
||||
ast = esprima.parse(source, { range: true }),
|
||||
params = [],
|
||||
body;
|
||||
|
||||
if (ast.type !== 'Program' ||
|
||||
ast.body.length !== 1 ||
|
||||
ast.body[0].type !== 'ExpressionStatement' ||
|
||||
(ast.body[0].expression.type !== 'ArrowFunctionExpression' &&
|
||||
ast.body[0].expression.type !== 'FunctionExpression')) {
|
||||
throw new Error('Failed to resolve function');
|
||||
}
|
||||
|
||||
ast.body[0].expression.params.forEach(function (param) {
|
||||
params.push(param.name);
|
||||
});
|
||||
|
||||
body = ast.body[0].expression.body.range;
|
||||
|
||||
// Esprima's ranges include the first '{' and the last '}' characters on
|
||||
// function expressions. So cut them out.
|
||||
if (ast.body[0].expression.body.type === 'BlockStatement') {
|
||||
/*eslint-disable no-new-func*/
|
||||
return new Function(params, source.slice(body[0] + 1, body[1] - 1));
|
||||
}
|
||||
// ES6 arrow functions can omit the BlockStatement. In that case, just return
|
||||
// the body.
|
||||
/*eslint-disable no-new-func*/
|
||||
return new Function(params, 'return ' + source.slice(body[0], body[1]));
|
||||
}
|
||||
|
||||
function representJavascriptFunction(object /*, style*/) {
|
||||
return object.toString();
|
||||
}
|
||||
|
||||
function isFunction(object) {
|
||||
return Object.prototype.toString.call(object) === '[object Function]';
|
||||
}
|
||||
|
||||
module.exports = new Type('tag:yaml.org,2002:js/function', {
|
||||
kind: 'scalar',
|
||||
resolve: resolveJavascriptFunction,
|
||||
construct: constructJavascriptFunction,
|
||||
predicate: isFunction,
|
||||
represent: representJavascriptFunction
|
||||
});
|
||||
60
node_modules/js-yaml/lib/js-yaml/type/js/regexp.js
generated
vendored
60
node_modules/js-yaml/lib/js-yaml/type/js/regexp.js
generated
vendored
|
|
@ -1,60 +0,0 @@
|
|||
'use strict';
|
||||
|
||||
var Type = require('../../type');
|
||||
|
||||
function resolveJavascriptRegExp(data) {
|
||||
if (data === null) return false;
|
||||
if (data.length === 0) return false;
|
||||
|
||||
var regexp = data,
|
||||
tail = /\/([gim]*)$/.exec(data),
|
||||
modifiers = '';
|
||||
|
||||
// if regexp starts with '/' it can have modifiers and must be properly closed
|
||||
// `/foo/gim` - modifiers tail can be maximum 3 chars
|
||||
if (regexp[0] === '/') {
|
||||
if (tail) modifiers = tail[1];
|
||||
|
||||
if (modifiers.length > 3) return false;
|
||||
// if expression starts with /, is should be properly terminated
|
||||
if (regexp[regexp.length - modifiers.length - 1] !== '/') return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
function constructJavascriptRegExp(data) {
|
||||
var regexp = data,
|
||||
tail = /\/([gim]*)$/.exec(data),
|
||||
modifiers = '';
|
||||
|
||||
// `/foo/gim` - tail can be maximum 4 chars
|
||||
if (regexp[0] === '/') {
|
||||
if (tail) modifiers = tail[1];
|
||||
regexp = regexp.slice(1, regexp.length - modifiers.length - 1);
|
||||
}
|
||||
|
||||
return new RegExp(regexp, modifiers);
|
||||
}
|
||||
|
||||
function representJavascriptRegExp(object /*, style*/) {
|
||||
var result = '/' + object.source + '/';
|
||||
|
||||
if (object.global) result += 'g';
|
||||
if (object.multiline) result += 'm';
|
||||
if (object.ignoreCase) result += 'i';
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
function isRegExp(object) {
|
||||
return Object.prototype.toString.call(object) === '[object RegExp]';
|
||||
}
|
||||
|
||||
module.exports = new Type('tag:yaml.org,2002:js/regexp', {
|
||||
kind: 'scalar',
|
||||
resolve: resolveJavascriptRegExp,
|
||||
construct: constructJavascriptRegExp,
|
||||
predicate: isRegExp,
|
||||
represent: representJavascriptRegExp
|
||||
});
|
||||
28
node_modules/js-yaml/lib/js-yaml/type/js/undefined.js
generated
vendored
28
node_modules/js-yaml/lib/js-yaml/type/js/undefined.js
generated
vendored
|
|
@ -1,28 +0,0 @@
|
|||
'use strict';
|
||||
|
||||
var Type = require('../../type');
|
||||
|
||||
function resolveJavascriptUndefined() {
|
||||
return true;
|
||||
}
|
||||
|
||||
function constructJavascriptUndefined() {
|
||||
/*eslint-disable no-undefined*/
|
||||
return undefined;
|
||||
}
|
||||
|
||||
function representJavascriptUndefined() {
|
||||
return '';
|
||||
}
|
||||
|
||||
function isUndefined(object) {
|
||||
return typeof object === 'undefined';
|
||||
}
|
||||
|
||||
module.exports = new Type('tag:yaml.org,2002:js/undefined', {
|
||||
kind: 'scalar',
|
||||
resolve: resolveJavascriptUndefined,
|
||||
construct: constructJavascriptUndefined,
|
||||
predicate: isUndefined,
|
||||
represent: representJavascriptUndefined
|
||||
});
|
||||
248
node_modules/js-yaml/lib/js-yaml/loader.js → node_modules/js-yaml/lib/loader.js
generated
vendored
248
node_modules/js-yaml/lib/js-yaml/loader.js → node_modules/js-yaml/lib/loader.js
generated
vendored
|
|
@ -4,9 +4,8 @@
|
|||
|
||||
var common = require('./common');
|
||||
var YAMLException = require('./exception');
|
||||
var Mark = require('./mark');
|
||||
var DEFAULT_SAFE_SCHEMA = require('./schema/default_safe');
|
||||
var DEFAULT_FULL_SCHEMA = require('./schema/default_full');
|
||||
var makeSnippet = require('./snippet');
|
||||
var DEFAULT_SCHEMA = require('./schema/default');
|
||||
|
||||
|
||||
var _hasOwnProperty = Object.prototype.hasOwnProperty;
|
||||
|
|
@ -133,9 +132,12 @@ function State(input, options) {
|
|||
this.input = input;
|
||||
|
||||
this.filename = options['filename'] || null;
|
||||
this.schema = options['schema'] || DEFAULT_FULL_SCHEMA;
|
||||
this.schema = options['schema'] || DEFAULT_SCHEMA;
|
||||
this.onWarning = options['onWarning'] || null;
|
||||
// (Hidden) Remove? makes the loader to expect YAML 1.1 documents
|
||||
// if such documents have no explicit %YAML directive
|
||||
this.legacy = options['legacy'] || false;
|
||||
|
||||
this.json = options['json'] || false;
|
||||
this.listener = options['listener'] || null;
|
||||
|
||||
|
|
@ -148,6 +150,10 @@ function State(input, options) {
|
|||
this.lineStart = 0;
|
||||
this.lineIndent = 0;
|
||||
|
||||
// position of first leading tab in the current line,
|
||||
// used to make sure there are no tabs in the indentation
|
||||
this.firstTabInLine = -1;
|
||||
|
||||
this.documents = [];
|
||||
|
||||
/*
|
||||
|
|
@ -164,9 +170,17 @@ function State(input, options) {
|
|||
|
||||
|
||||
function generateError(state, message) {
|
||||
return new YAMLException(
|
||||
message,
|
||||
new Mark(state.filename, state.input, state.position, state.line, (state.position - state.lineStart)));
|
||||
var mark = {
|
||||
name: state.filename,
|
||||
buffer: state.input.slice(0, -1), // omit trailing \0
|
||||
position: state.position,
|
||||
line: state.line,
|
||||
column: state.position - state.lineStart
|
||||
};
|
||||
|
||||
mark.snippet = makeSnippet(mark);
|
||||
|
||||
return new YAMLException(message, mark);
|
||||
}
|
||||
|
||||
function throwError(state, message) {
|
||||
|
|
@ -238,6 +252,12 @@ var directiveHandlers = {
|
|||
throwError(state, 'ill-formed tag prefix (second argument) of the TAG directive');
|
||||
}
|
||||
|
||||
try {
|
||||
prefix = decodeURIComponent(prefix);
|
||||
} catch (err) {
|
||||
throwError(state, 'tag prefix is malformed: ' + prefix);
|
||||
}
|
||||
|
||||
state.tagMap[handle] = prefix;
|
||||
}
|
||||
};
|
||||
|
|
@ -284,7 +304,9 @@ function mergeMappings(state, destination, source, overridableKeys) {
|
|||
}
|
||||
}
|
||||
|
||||
function storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, valueNode, startLine, startPos) {
|
||||
function storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, valueNode,
|
||||
startLine, startLineStart, startPos) {
|
||||
|
||||
var index, quantity;
|
||||
|
||||
// The output is a plain object here, so keys can only be strings.
|
||||
|
|
@ -331,10 +353,22 @@ function storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, valu
|
|||
!_hasOwnProperty.call(overridableKeys, keyNode) &&
|
||||
_hasOwnProperty.call(_result, keyNode)) {
|
||||
state.line = startLine || state.line;
|
||||
state.lineStart = startLineStart || state.lineStart;
|
||||
state.position = startPos || state.position;
|
||||
throwError(state, 'duplicated mapping key');
|
||||
}
|
||||
_result[keyNode] = valueNode;
|
||||
|
||||
// used for this specific key only because Object.defineProperty is slow
|
||||
if (keyNode === '__proto__') {
|
||||
Object.defineProperty(_result, keyNode, {
|
||||
configurable: true,
|
||||
enumerable: true,
|
||||
writable: true,
|
||||
value: valueNode
|
||||
});
|
||||
} else {
|
||||
_result[keyNode] = valueNode;
|
||||
}
|
||||
delete overridableKeys[keyNode];
|
||||
}
|
||||
|
||||
|
|
@ -359,6 +393,7 @@ function readLineBreak(state) {
|
|||
|
||||
state.line += 1;
|
||||
state.lineStart = state.position;
|
||||
state.firstTabInLine = -1;
|
||||
}
|
||||
|
||||
function skipSeparationSpace(state, allowComments, checkIndent) {
|
||||
|
|
@ -367,6 +402,9 @@ function skipSeparationSpace(state, allowComments, checkIndent) {
|
|||
|
||||
while (ch !== 0) {
|
||||
while (is_WHITE_SPACE(ch)) {
|
||||
if (ch === 0x09/* Tab */ && state.firstTabInLine === -1) {
|
||||
state.firstTabInLine = state.position;
|
||||
}
|
||||
ch = state.input.charCodeAt(++state.position);
|
||||
}
|
||||
|
||||
|
|
@ -668,6 +706,8 @@ function readDoubleQuotedScalar(state, nodeIndent) {
|
|||
function readFlowCollection(state, nodeIndent) {
|
||||
var readNext = true,
|
||||
_line,
|
||||
_lineStart,
|
||||
_pos,
|
||||
_tag = state.tag,
|
||||
_result,
|
||||
_anchor = state.anchor,
|
||||
|
|
@ -676,7 +716,7 @@ function readFlowCollection(state, nodeIndent) {
|
|||
isPair,
|
||||
isExplicitPair,
|
||||
isMapping,
|
||||
overridableKeys = {},
|
||||
overridableKeys = Object.create(null),
|
||||
keyNode,
|
||||
keyTag,
|
||||
valueNode,
|
||||
|
|
@ -716,6 +756,9 @@ function readFlowCollection(state, nodeIndent) {
|
|||
return true;
|
||||
} else if (!readNext) {
|
||||
throwError(state, 'missed comma between flow collection entries');
|
||||
} else if (ch === 0x2C/* , */) {
|
||||
// "flow collection entries can never be completely empty", as per YAML 1.2, section 7.4
|
||||
throwError(state, "expected the node content, but found ','");
|
||||
}
|
||||
|
||||
keyTag = keyNode = valueNode = null;
|
||||
|
|
@ -731,7 +774,9 @@ function readFlowCollection(state, nodeIndent) {
|
|||
}
|
||||
}
|
||||
|
||||
_line = state.line;
|
||||
_line = state.line; // Save the current line.
|
||||
_lineStart = state.lineStart;
|
||||
_pos = state.position;
|
||||
composeNode(state, nodeIndent, CONTEXT_FLOW_IN, false, true);
|
||||
keyTag = state.tag;
|
||||
keyNode = state.result;
|
||||
|
|
@ -748,9 +793,9 @@ function readFlowCollection(state, nodeIndent) {
|
|||
}
|
||||
|
||||
if (isMapping) {
|
||||
storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, valueNode);
|
||||
storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, valueNode, _line, _lineStart, _pos);
|
||||
} else if (isPair) {
|
||||
_result.push(storeMappingPair(state, null, overridableKeys, keyTag, keyNode, valueNode));
|
||||
_result.push(storeMappingPair(state, null, overridableKeys, keyTag, keyNode, valueNode, _line, _lineStart, _pos));
|
||||
} else {
|
||||
_result.push(keyNode);
|
||||
}
|
||||
|
|
@ -922,6 +967,10 @@ function readBlockSequence(state, nodeIndent) {
|
|||
detected = false,
|
||||
ch;
|
||||
|
||||
// there is a leading tab before this token, so it can't be a block sequence/mapping;
|
||||
// it can still be flow sequence/mapping or a scalar
|
||||
if (state.firstTabInLine !== -1) return false;
|
||||
|
||||
if (state.anchor !== null) {
|
||||
state.anchorMap[state.anchor] = _result;
|
||||
}
|
||||
|
|
@ -929,6 +978,10 @@ function readBlockSequence(state, nodeIndent) {
|
|||
ch = state.input.charCodeAt(state.position);
|
||||
|
||||
while (ch !== 0) {
|
||||
if (state.firstTabInLine !== -1) {
|
||||
state.position = state.firstTabInLine;
|
||||
throwError(state, 'tab characters must not be used in indentation');
|
||||
}
|
||||
|
||||
if (ch !== 0x2D/* - */) {
|
||||
break;
|
||||
|
|
@ -979,11 +1032,13 @@ function readBlockMapping(state, nodeIndent, flowIndent) {
|
|||
var following,
|
||||
allowCompact,
|
||||
_line,
|
||||
_pos,
|
||||
_keyLine,
|
||||
_keyLineStart,
|
||||
_keyPos,
|
||||
_tag = state.tag,
|
||||
_anchor = state.anchor,
|
||||
_result = {},
|
||||
overridableKeys = {},
|
||||
overridableKeys = Object.create(null),
|
||||
keyTag = null,
|
||||
keyNode = null,
|
||||
valueNode = null,
|
||||
|
|
@ -991,6 +1046,10 @@ function readBlockMapping(state, nodeIndent, flowIndent) {
|
|||
detected = false,
|
||||
ch;
|
||||
|
||||
// there is a leading tab before this token, so it can't be a block sequence/mapping;
|
||||
// it can still be flow sequence/mapping or a scalar
|
||||
if (state.firstTabInLine !== -1) return false;
|
||||
|
||||
if (state.anchor !== null) {
|
||||
state.anchorMap[state.anchor] = _result;
|
||||
}
|
||||
|
|
@ -998,9 +1057,13 @@ function readBlockMapping(state, nodeIndent, flowIndent) {
|
|||
ch = state.input.charCodeAt(state.position);
|
||||
|
||||
while (ch !== 0) {
|
||||
if (!atExplicitKey && state.firstTabInLine !== -1) {
|
||||
state.position = state.firstTabInLine;
|
||||
throwError(state, 'tab characters must not be used in indentation');
|
||||
}
|
||||
|
||||
following = state.input.charCodeAt(state.position + 1);
|
||||
_line = state.line; // Save the current line.
|
||||
_pos = state.position;
|
||||
|
||||
//
|
||||
// Explicit notation case. There are two separate blocks:
|
||||
|
|
@ -1010,7 +1073,7 @@ function readBlockMapping(state, nodeIndent, flowIndent) {
|
|||
|
||||
if (ch === 0x3F/* ? */) {
|
||||
if (atExplicitKey) {
|
||||
storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, null);
|
||||
storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, null, _keyLine, _keyLineStart, _keyPos);
|
||||
keyTag = keyNode = valueNode = null;
|
||||
}
|
||||
|
||||
|
|
@ -1033,7 +1096,16 @@ function readBlockMapping(state, nodeIndent, flowIndent) {
|
|||
//
|
||||
// Implicit notation case. Flow-style node as the key first, then ":", and the value.
|
||||
//
|
||||
} else if (composeNode(state, flowIndent, CONTEXT_FLOW_OUT, false, true)) {
|
||||
} else {
|
||||
_keyLine = state.line;
|
||||
_keyLineStart = state.lineStart;
|
||||
_keyPos = state.position;
|
||||
|
||||
if (!composeNode(state, flowIndent, CONTEXT_FLOW_OUT, false, true)) {
|
||||
// Neither implicit nor explicit notation.
|
||||
// Reading is done. Go to the epilogue.
|
||||
break;
|
||||
}
|
||||
|
||||
if (state.line === _line) {
|
||||
ch = state.input.charCodeAt(state.position);
|
||||
|
|
@ -1050,7 +1122,7 @@ function readBlockMapping(state, nodeIndent, flowIndent) {
|
|||
}
|
||||
|
||||
if (atExplicitKey) {
|
||||
storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, null);
|
||||
storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, null, _keyLine, _keyLineStart, _keyPos);
|
||||
keyTag = keyNode = valueNode = null;
|
||||
}
|
||||
|
||||
|
|
@ -1077,15 +1149,18 @@ function readBlockMapping(state, nodeIndent, flowIndent) {
|
|||
state.anchor = _anchor;
|
||||
return true; // Keep the result of `composeNode`.
|
||||
}
|
||||
|
||||
} else {
|
||||
break; // Reading is done. Go to the epilogue.
|
||||
}
|
||||
|
||||
//
|
||||
// Common reading code for both explicit and implicit notations.
|
||||
//
|
||||
if (state.line === _line || state.lineIndent > nodeIndent) {
|
||||
if (atExplicitKey) {
|
||||
_keyLine = state.line;
|
||||
_keyLineStart = state.lineStart;
|
||||
_keyPos = state.position;
|
||||
}
|
||||
|
||||
if (composeNode(state, nodeIndent, CONTEXT_BLOCK_OUT, true, allowCompact)) {
|
||||
if (atExplicitKey) {
|
||||
keyNode = state.result;
|
||||
|
|
@ -1095,7 +1170,7 @@ function readBlockMapping(state, nodeIndent, flowIndent) {
|
|||
}
|
||||
|
||||
if (!atExplicitKey) {
|
||||
storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, valueNode, _line, _pos);
|
||||
storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, valueNode, _keyLine, _keyLineStart, _keyPos);
|
||||
keyTag = keyNode = valueNode = null;
|
||||
}
|
||||
|
||||
|
|
@ -1103,7 +1178,7 @@ function readBlockMapping(state, nodeIndent, flowIndent) {
|
|||
ch = state.input.charCodeAt(state.position);
|
||||
}
|
||||
|
||||
if (state.lineIndent > nodeIndent && (ch !== 0)) {
|
||||
if ((state.line === _line || state.lineIndent > nodeIndent) && (ch !== 0)) {
|
||||
throwError(state, 'bad indentation of a mapping entry');
|
||||
} else if (state.lineIndent < nodeIndent) {
|
||||
break;
|
||||
|
|
@ -1116,7 +1191,7 @@ function readBlockMapping(state, nodeIndent, flowIndent) {
|
|||
|
||||
// Special case: last mapping's node contains only the key in explicit notation.
|
||||
if (atExplicitKey) {
|
||||
storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, null);
|
||||
storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, null, _keyLine, _keyLineStart, _keyPos);
|
||||
}
|
||||
|
||||
// Expose the resulting mapping.
|
||||
|
|
@ -1205,6 +1280,12 @@ function readTagProperty(state) {
|
|||
throwError(state, 'tag name cannot contain such characters: ' + tagName);
|
||||
}
|
||||
|
||||
try {
|
||||
tagName = decodeURIComponent(tagName);
|
||||
} catch (err) {
|
||||
throwError(state, 'tag name is malformed: ' + tagName);
|
||||
}
|
||||
|
||||
if (isVerbatim) {
|
||||
state.tag = tagName;
|
||||
|
||||
|
|
@ -1272,7 +1353,7 @@ function readAlias(state) {
|
|||
|
||||
alias = state.input.slice(_position, state.position);
|
||||
|
||||
if (!state.anchorMap.hasOwnProperty(alias)) {
|
||||
if (!_hasOwnProperty.call(state.anchorMap, alias)) {
|
||||
throwError(state, 'unidentified alias "' + alias + '"');
|
||||
}
|
||||
|
||||
|
|
@ -1290,6 +1371,7 @@ function composeNode(state, parentIndent, nodeContext, allowToSeek, allowCompact
|
|||
hasContent = false,
|
||||
typeIndex,
|
||||
typeQuantity,
|
||||
typeList,
|
||||
type,
|
||||
flowIndent,
|
||||
blockIndent;
|
||||
|
|
@ -1391,42 +1473,66 @@ function composeNode(state, parentIndent, nodeContext, allowToSeek, allowCompact
|
|||
}
|
||||
}
|
||||
|
||||
if (state.tag !== null && state.tag !== '!') {
|
||||
if (state.tag === '?') {
|
||||
for (typeIndex = 0, typeQuantity = state.implicitTypes.length; typeIndex < typeQuantity; typeIndex += 1) {
|
||||
type = state.implicitTypes[typeIndex];
|
||||
if (state.tag === null) {
|
||||
if (state.anchor !== null) {
|
||||
state.anchorMap[state.anchor] = state.result;
|
||||
}
|
||||
|
||||
// Implicit resolving is not allowed for non-scalar types, and '?'
|
||||
// non-specific tag is only assigned to plain scalars. So, it isn't
|
||||
// needed to check for 'kind' conformity.
|
||||
} else if (state.tag === '?') {
|
||||
// Implicit resolving is not allowed for non-scalar types, and '?'
|
||||
// non-specific tag is only automatically assigned to plain scalars.
|
||||
//
|
||||
// We only need to check kind conformity in case user explicitly assigns '?'
|
||||
// tag, for example like this: "!<?> [0]"
|
||||
//
|
||||
if (state.result !== null && state.kind !== 'scalar') {
|
||||
throwError(state, 'unacceptable node kind for !<?> tag; it should be "scalar", not "' + state.kind + '"');
|
||||
}
|
||||
|
||||
if (type.resolve(state.result)) { // `state.result` updated in resolver if matched
|
||||
state.result = type.construct(state.result);
|
||||
state.tag = type.tag;
|
||||
if (state.anchor !== null) {
|
||||
state.anchorMap[state.anchor] = state.result;
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
} else if (_hasOwnProperty.call(state.typeMap[state.kind || 'fallback'], state.tag)) {
|
||||
type = state.typeMap[state.kind || 'fallback'][state.tag];
|
||||
for (typeIndex = 0, typeQuantity = state.implicitTypes.length; typeIndex < typeQuantity; typeIndex += 1) {
|
||||
type = state.implicitTypes[typeIndex];
|
||||
|
||||
if (state.result !== null && type.kind !== state.kind) {
|
||||
throwError(state, 'unacceptable node kind for !<' + state.tag + '> tag; it should be "' + type.kind + '", not "' + state.kind + '"');
|
||||
}
|
||||
|
||||
if (!type.resolve(state.result)) { // `state.result` updated in resolver if matched
|
||||
throwError(state, 'cannot resolve a node with !<' + state.tag + '> explicit tag');
|
||||
} else {
|
||||
if (type.resolve(state.result)) { // `state.result` updated in resolver if matched
|
||||
state.result = type.construct(state.result);
|
||||
state.tag = type.tag;
|
||||
if (state.anchor !== null) {
|
||||
state.anchorMap[state.anchor] = state.result;
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
} else if (state.tag !== '!') {
|
||||
if (_hasOwnProperty.call(state.typeMap[state.kind || 'fallback'], state.tag)) {
|
||||
type = state.typeMap[state.kind || 'fallback'][state.tag];
|
||||
} else {
|
||||
// looking for multi type
|
||||
type = null;
|
||||
typeList = state.typeMap.multi[state.kind || 'fallback'];
|
||||
|
||||
for (typeIndex = 0, typeQuantity = typeList.length; typeIndex < typeQuantity; typeIndex += 1) {
|
||||
if (state.tag.slice(0, typeList[typeIndex].tag.length) === typeList[typeIndex].tag) {
|
||||
type = typeList[typeIndex];
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (!type) {
|
||||
throwError(state, 'unknown tag !<' + state.tag + '>');
|
||||
}
|
||||
|
||||
if (state.result !== null && type.kind !== state.kind) {
|
||||
throwError(state, 'unacceptable node kind for !<' + state.tag + '> tag; it should be "' + type.kind + '", not "' + state.kind + '"');
|
||||
}
|
||||
|
||||
if (!type.resolve(state.result, state.tag)) { // `state.result` updated in resolver if matched
|
||||
throwError(state, 'cannot resolve a node with !<' + state.tag + '> explicit tag');
|
||||
} else {
|
||||
state.result = type.construct(state.result, state.tag);
|
||||
if (state.anchor !== null) {
|
||||
state.anchorMap[state.anchor] = state.result;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (state.listener !== null) {
|
||||
|
|
@ -1445,8 +1551,8 @@ function readDocument(state) {
|
|||
|
||||
state.version = null;
|
||||
state.checkLineBreaks = state.legacy;
|
||||
state.tagMap = {};
|
||||
state.anchorMap = {};
|
||||
state.tagMap = Object.create(null);
|
||||
state.anchorMap = Object.create(null);
|
||||
|
||||
while ((ch = state.input.charCodeAt(state.position)) !== 0) {
|
||||
skipSeparationSpace(state, true, -1);
|
||||
|
|
@ -1563,6 +1669,13 @@ function loadDocuments(input, options) {
|
|||
|
||||
var state = new State(input, options);
|
||||
|
||||
var nullpos = input.indexOf('\0');
|
||||
|
||||
if (nullpos !== -1) {
|
||||
state.position = nullpos;
|
||||
throwError(state, 'null byte is not allowed in input');
|
||||
}
|
||||
|
||||
// Use 0 as string terminator. That significantly simplifies bounds check.
|
||||
state.input += '\0';
|
||||
|
||||
|
|
@ -1580,13 +1693,18 @@ function loadDocuments(input, options) {
|
|||
|
||||
|
||||
function loadAll(input, iterator, options) {
|
||||
var documents = loadDocuments(input, options), index, length;
|
||||
if (iterator !== null && typeof iterator === 'object' && typeof options === 'undefined') {
|
||||
options = iterator;
|
||||
iterator = null;
|
||||
}
|
||||
|
||||
var documents = loadDocuments(input, options);
|
||||
|
||||
if (typeof iterator !== 'function') {
|
||||
return documents;
|
||||
}
|
||||
|
||||
for (index = 0, length = documents.length; index < length; index += 1) {
|
||||
for (var index = 0, length = documents.length; index < length; index += 1) {
|
||||
iterator(documents[index]);
|
||||
}
|
||||
}
|
||||
|
|
@ -1605,21 +1723,5 @@ function load(input, options) {
|
|||
}
|
||||
|
||||
|
||||
function safeLoadAll(input, output, options) {
|
||||
if (typeof output === 'function') {
|
||||
loadAll(input, output, common.extend({ schema: DEFAULT_SAFE_SCHEMA }, options));
|
||||
} else {
|
||||
return loadAll(input, common.extend({ schema: DEFAULT_SAFE_SCHEMA }, options));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function safeLoad(input, options) {
|
||||
return load(input, common.extend({ schema: DEFAULT_SAFE_SCHEMA }, options));
|
||||
}
|
||||
|
||||
|
||||
module.exports.loadAll = loadAll;
|
||||
module.exports.load = load;
|
||||
module.exports.safeLoadAll = safeLoadAll;
|
||||
module.exports.safeLoad = safeLoad;
|
||||
module.exports.loadAll = loadAll;
|
||||
module.exports.load = load;
|
||||
121
node_modules/js-yaml/lib/schema.js
generated
vendored
Normal file
121
node_modules/js-yaml/lib/schema.js
generated
vendored
Normal file
|
|
@ -0,0 +1,121 @@
|
|||
'use strict';
|
||||
|
||||
/*eslint-disable max-len*/
|
||||
|
||||
var YAMLException = require('./exception');
|
||||
var Type = require('./type');
|
||||
|
||||
|
||||
function compileList(schema, name) {
|
||||
var result = [];
|
||||
|
||||
schema[name].forEach(function (currentType) {
|
||||
var newIndex = result.length;
|
||||
|
||||
result.forEach(function (previousType, previousIndex) {
|
||||
if (previousType.tag === currentType.tag &&
|
||||
previousType.kind === currentType.kind &&
|
||||
previousType.multi === currentType.multi) {
|
||||
|
||||
newIndex = previousIndex;
|
||||
}
|
||||
});
|
||||
|
||||
result[newIndex] = currentType;
|
||||
});
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
function compileMap(/* lists... */) {
|
||||
var result = {
|
||||
scalar: {},
|
||||
sequence: {},
|
||||
mapping: {},
|
||||
fallback: {},
|
||||
multi: {
|
||||
scalar: [],
|
||||
sequence: [],
|
||||
mapping: [],
|
||||
fallback: []
|
||||
}
|
||||
}, index, length;
|
||||
|
||||
function collectType(type) {
|
||||
if (type.multi) {
|
||||
result.multi[type.kind].push(type);
|
||||
result.multi['fallback'].push(type);
|
||||
} else {
|
||||
result[type.kind][type.tag] = result['fallback'][type.tag] = type;
|
||||
}
|
||||
}
|
||||
|
||||
for (index = 0, length = arguments.length; index < length; index += 1) {
|
||||
arguments[index].forEach(collectType);
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
function Schema(definition) {
|
||||
return this.extend(definition);
|
||||
}
|
||||
|
||||
|
||||
Schema.prototype.extend = function extend(definition) {
|
||||
var implicit = [];
|
||||
var explicit = [];
|
||||
|
||||
if (definition instanceof Type) {
|
||||
// Schema.extend(type)
|
||||
explicit.push(definition);
|
||||
|
||||
} else if (Array.isArray(definition)) {
|
||||
// Schema.extend([ type1, type2, ... ])
|
||||
explicit = explicit.concat(definition);
|
||||
|
||||
} else if (definition && (Array.isArray(definition.implicit) || Array.isArray(definition.explicit))) {
|
||||
// Schema.extend({ explicit: [ type1, type2, ... ], implicit: [ type1, type2, ... ] })
|
||||
if (definition.implicit) implicit = implicit.concat(definition.implicit);
|
||||
if (definition.explicit) explicit = explicit.concat(definition.explicit);
|
||||
|
||||
} else {
|
||||
throw new YAMLException('Schema.extend argument should be a Type, [ Type ], ' +
|
||||
'or a schema definition ({ implicit: [...], explicit: [...] })');
|
||||
}
|
||||
|
||||
implicit.forEach(function (type) {
|
||||
if (!(type instanceof Type)) {
|
||||
throw new YAMLException('Specified list of YAML types (or a single Type object) contains a non-Type object.');
|
||||
}
|
||||
|
||||
if (type.loadKind && type.loadKind !== 'scalar') {
|
||||
throw new YAMLException('There is a non-scalar type in the implicit list of a schema. Implicit resolving of such types is not supported.');
|
||||
}
|
||||
|
||||
if (type.multi) {
|
||||
throw new YAMLException('There is a multi type in the implicit list of a schema. Multi tags can only be listed as explicit.');
|
||||
}
|
||||
});
|
||||
|
||||
explicit.forEach(function (type) {
|
||||
if (!(type instanceof Type)) {
|
||||
throw new YAMLException('Specified list of YAML types (or a single Type object) contains a non-Type object.');
|
||||
}
|
||||
});
|
||||
|
||||
var result = Object.create(Schema.prototype);
|
||||
|
||||
result.implicit = (this.implicit || []).concat(implicit);
|
||||
result.explicit = (this.explicit || []).concat(explicit);
|
||||
|
||||
result.compiledImplicit = compileList(result, 'implicit');
|
||||
result.compiledExplicit = compileList(result, 'explicit');
|
||||
result.compiledTypeMap = compileMap(result.compiledImplicit, result.compiledExplicit);
|
||||
|
||||
return result;
|
||||
};
|
||||
|
||||
|
||||
module.exports = Schema;
|
||||
|
|
@ -8,11 +8,4 @@
|
|||
'use strict';
|
||||
|
||||
|
||||
var Schema = require('../schema');
|
||||
|
||||
|
||||
module.exports = new Schema({
|
||||
include: [
|
||||
require('./json')
|
||||
]
|
||||
});
|
||||
module.exports = require('./json');
|
||||
|
|
@ -8,13 +8,7 @@
|
|||
'use strict';
|
||||
|
||||
|
||||
var Schema = require('../schema');
|
||||
|
||||
|
||||
module.exports = new Schema({
|
||||
include: [
|
||||
require('./core')
|
||||
],
|
||||
module.exports = require('./core').extend({
|
||||
implicit: [
|
||||
require('../type/timestamp'),
|
||||
require('../type/merge')
|
||||
|
|
@ -9,13 +9,7 @@
|
|||
'use strict';
|
||||
|
||||
|
||||
var Schema = require('../schema');
|
||||
|
||||
|
||||
module.exports = new Schema({
|
||||
include: [
|
||||
require('./failsafe')
|
||||
],
|
||||
module.exports = require('./failsafe').extend({
|
||||
implicit: [
|
||||
require('../type/null'),
|
||||
require('../type/bool'),
|
||||
101
node_modules/js-yaml/lib/snippet.js
generated
vendored
Normal file
101
node_modules/js-yaml/lib/snippet.js
generated
vendored
Normal file
|
|
@ -0,0 +1,101 @@
|
|||
'use strict';
|
||||
|
||||
|
||||
var common = require('./common');
|
||||
|
||||
|
||||
// get snippet for a single line, respecting maxLength
|
||||
function getLine(buffer, lineStart, lineEnd, position, maxLineLength) {
|
||||
var head = '';
|
||||
var tail = '';
|
||||
var maxHalfLength = Math.floor(maxLineLength / 2) - 1;
|
||||
|
||||
if (position - lineStart > maxHalfLength) {
|
||||
head = ' ... ';
|
||||
lineStart = position - maxHalfLength + head.length;
|
||||
}
|
||||
|
||||
if (lineEnd - position > maxHalfLength) {
|
||||
tail = ' ...';
|
||||
lineEnd = position + maxHalfLength - tail.length;
|
||||
}
|
||||
|
||||
return {
|
||||
str: head + buffer.slice(lineStart, lineEnd).replace(/\t/g, '→') + tail,
|
||||
pos: position - lineStart + head.length // relative position
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
function padStart(string, max) {
|
||||
return common.repeat(' ', max - string.length) + string;
|
||||
}
|
||||
|
||||
|
||||
function makeSnippet(mark, options) {
|
||||
options = Object.create(options || null);
|
||||
|
||||
if (!mark.buffer) return null;
|
||||
|
||||
if (!options.maxLength) options.maxLength = 79;
|
||||
if (typeof options.indent !== 'number') options.indent = 1;
|
||||
if (typeof options.linesBefore !== 'number') options.linesBefore = 3;
|
||||
if (typeof options.linesAfter !== 'number') options.linesAfter = 2;
|
||||
|
||||
var re = /\r?\n|\r|\0/g;
|
||||
var lineStarts = [ 0 ];
|
||||
var lineEnds = [];
|
||||
var match;
|
||||
var foundLineNo = -1;
|
||||
|
||||
while ((match = re.exec(mark.buffer))) {
|
||||
lineEnds.push(match.index);
|
||||
lineStarts.push(match.index + match[0].length);
|
||||
|
||||
if (mark.position <= match.index && foundLineNo < 0) {
|
||||
foundLineNo = lineStarts.length - 2;
|
||||
}
|
||||
}
|
||||
|
||||
if (foundLineNo < 0) foundLineNo = lineStarts.length - 1;
|
||||
|
||||
var result = '', i, line;
|
||||
var lineNoLength = Math.min(mark.line + options.linesAfter, lineEnds.length).toString().length;
|
||||
var maxLineLength = options.maxLength - (options.indent + lineNoLength + 3);
|
||||
|
||||
for (i = 1; i <= options.linesBefore; i++) {
|
||||
if (foundLineNo - i < 0) break;
|
||||
line = getLine(
|
||||
mark.buffer,
|
||||
lineStarts[foundLineNo - i],
|
||||
lineEnds[foundLineNo - i],
|
||||
mark.position - (lineStarts[foundLineNo] - lineStarts[foundLineNo - i]),
|
||||
maxLineLength
|
||||
);
|
||||
result = common.repeat(' ', options.indent) + padStart((mark.line - i + 1).toString(), lineNoLength) +
|
||||
' | ' + line.str + '\n' + result;
|
||||
}
|
||||
|
||||
line = getLine(mark.buffer, lineStarts[foundLineNo], lineEnds[foundLineNo], mark.position, maxLineLength);
|
||||
result += common.repeat(' ', options.indent) + padStart((mark.line + 1).toString(), lineNoLength) +
|
||||
' | ' + line.str + '\n';
|
||||
result += common.repeat('-', options.indent + lineNoLength + 3 + line.pos) + '^' + '\n';
|
||||
|
||||
for (i = 1; i <= options.linesAfter; i++) {
|
||||
if (foundLineNo + i >= lineEnds.length) break;
|
||||
line = getLine(
|
||||
mark.buffer,
|
||||
lineStarts[foundLineNo + i],
|
||||
lineEnds[foundLineNo + i],
|
||||
mark.position - (lineStarts[foundLineNo] - lineStarts[foundLineNo + i]),
|
||||
maxLineLength
|
||||
);
|
||||
result += common.repeat(' ', options.indent) + padStart((mark.line + i + 1).toString(), lineNoLength) +
|
||||
' | ' + line.str + '\n';
|
||||
}
|
||||
|
||||
return result.replace(/\n$/, '');
|
||||
}
|
||||
|
||||
|
||||
module.exports = makeSnippet;
|
||||
23
node_modules/js-yaml/lib/js-yaml/type.js → node_modules/js-yaml/lib/type.js
generated
vendored
23
node_modules/js-yaml/lib/js-yaml/type.js → node_modules/js-yaml/lib/type.js
generated
vendored
|
|
@ -4,11 +4,13 @@ var YAMLException = require('./exception');
|
|||
|
||||
var TYPE_CONSTRUCTOR_OPTIONS = [
|
||||
'kind',
|
||||
'multi',
|
||||
'resolve',
|
||||
'construct',
|
||||
'instanceOf',
|
||||
'predicate',
|
||||
'represent',
|
||||
'representName',
|
||||
'defaultStyle',
|
||||
'styleAliases'
|
||||
];
|
||||
|
|
@ -43,15 +45,18 @@ function Type(tag, options) {
|
|||
});
|
||||
|
||||
// TODO: Add tag format check.
|
||||
this.tag = tag;
|
||||
this.kind = options['kind'] || null;
|
||||
this.resolve = options['resolve'] || function () { return true; };
|
||||
this.construct = options['construct'] || function (data) { return data; };
|
||||
this.instanceOf = options['instanceOf'] || null;
|
||||
this.predicate = options['predicate'] || null;
|
||||
this.represent = options['represent'] || null;
|
||||
this.defaultStyle = options['defaultStyle'] || null;
|
||||
this.styleAliases = compileStyleAliases(options['styleAliases'] || null);
|
||||
this.options = options; // keep original options in case user wants to extend this type later
|
||||
this.tag = tag;
|
||||
this.kind = options['kind'] || null;
|
||||
this.resolve = options['resolve'] || function () { return true; };
|
||||
this.construct = options['construct'] || function (data) { return data; };
|
||||
this.instanceOf = options['instanceOf'] || null;
|
||||
this.predicate = options['predicate'] || null;
|
||||
this.represent = options['represent'] || null;
|
||||
this.representName = options['representName'] || null;
|
||||
this.defaultStyle = options['defaultStyle'] || null;
|
||||
this.multi = options['multi'] || false;
|
||||
this.styleAliases = compileStyleAliases(options['styleAliases'] || null);
|
||||
|
||||
if (YAML_NODE_KINDS.indexOf(this.kind) === -1) {
|
||||
throw new YAMLException('Unknown kind "' + this.kind + '" is specified for "' + tag + '" YAML type.');
|
||||
|
|
@ -2,15 +2,8 @@
|
|||
|
||||
/*eslint-disable no-bitwise*/
|
||||
|
||||
var NodeBuffer;
|
||||
|
||||
try {
|
||||
// A trick for browserified version, to not include `Buffer` shim
|
||||
var _require = require;
|
||||
NodeBuffer = _require('buffer').Buffer;
|
||||
} catch (__) {}
|
||||
|
||||
var Type = require('../type');
|
||||
var Type = require('../type');
|
||||
|
||||
|
||||
// [ 64, 65, 66 ] -> [ padding, CR, LF ]
|
||||
|
|
@ -74,13 +67,7 @@ function constructYamlBinary(data) {
|
|||
result.push((bits >> 4) & 0xFF);
|
||||
}
|
||||
|
||||
// Wrap into Buffer for NodeJS and leave Array for browser
|
||||
if (NodeBuffer) {
|
||||
// Support node 6.+ Buffer API when available
|
||||
return NodeBuffer.from ? NodeBuffer.from(result) : new NodeBuffer(result);
|
||||
}
|
||||
|
||||
return result;
|
||||
return new Uint8Array(result);
|
||||
}
|
||||
|
||||
function representYamlBinary(object /*, style*/) {
|
||||
|
|
@ -125,8 +112,8 @@ function representYamlBinary(object /*, style*/) {
|
|||
return result;
|
||||
}
|
||||
|
||||
function isBinary(object) {
|
||||
return NodeBuffer && NodeBuffer.isBuffer(object);
|
||||
function isBinary(obj) {
|
||||
return Object.prototype.toString.call(obj) === '[object Uint8Array]';
|
||||
}
|
||||
|
||||
module.exports = new Type('tag:yaml.org,2002:binary', {
|
||||
23
node_modules/js-yaml/lib/js-yaml/type/float.js → node_modules/js-yaml/lib/type/float.js
generated
vendored
23
node_modules/js-yaml/lib/js-yaml/type/float.js → node_modules/js-yaml/lib/type/float.js
generated
vendored
|
|
@ -5,12 +5,10 @@ var Type = require('../type');
|
|||
|
||||
var YAML_FLOAT_PATTERN = new RegExp(
|
||||
// 2.5e4, 2.5 and integers
|
||||
'^(?:[-+]?(?:0|[1-9][0-9_]*)(?:\\.[0-9_]*)?(?:[eE][-+]?[0-9]+)?' +
|
||||
'^(?:[-+]?(?:[0-9][0-9_]*)(?:\\.[0-9_]*)?(?:[eE][-+]?[0-9]+)?' +
|
||||
// .2e4, .2
|
||||
// special case, seems not from spec
|
||||
'|\\.[0-9_]+(?:[eE][-+]?[0-9]+)?' +
|
||||
// 20:59
|
||||
'|[-+]?[0-9][0-9_]*(?::[0-5]?[0-9])+\\.[0-9_]*' +
|
||||
// .inf
|
||||
'|[-+]?\\.(?:inf|Inf|INF)' +
|
||||
// .nan
|
||||
|
|
@ -30,11 +28,10 @@ function resolveYamlFloat(data) {
|
|||
}
|
||||
|
||||
function constructYamlFloat(data) {
|
||||
var value, sign, base, digits;
|
||||
var value, sign;
|
||||
|
||||
value = data.replace(/_/g, '').toLowerCase();
|
||||
sign = value[0] === '-' ? -1 : 1;
|
||||
digits = [];
|
||||
|
||||
if ('+-'.indexOf(value[0]) >= 0) {
|
||||
value = value.slice(1);
|
||||
|
|
@ -45,22 +42,6 @@ function constructYamlFloat(data) {
|
|||
|
||||
} else if (value === '.nan') {
|
||||
return NaN;
|
||||
|
||||
} else if (value.indexOf(':') >= 0) {
|
||||
value.split(':').forEach(function (v) {
|
||||
digits.unshift(parseFloat(v, 10));
|
||||
});
|
||||
|
||||
value = 0.0;
|
||||
base = 1;
|
||||
|
||||
digits.forEach(function (d) {
|
||||
value += d * base;
|
||||
base *= 60;
|
||||
});
|
||||
|
||||
return sign * value;
|
||||
|
||||
}
|
||||
return sign * parseFloat(value, 10);
|
||||
}
|
||||
53
node_modules/js-yaml/lib/js-yaml/type/int.js → node_modules/js-yaml/lib/type/int.js
generated
vendored
53
node_modules/js-yaml/lib/js-yaml/type/int.js → node_modules/js-yaml/lib/type/int.js
generated
vendored
|
|
@ -68,17 +68,22 @@ function resolveYamlInteger(data) {
|
|||
return hasDigits && ch !== '_';
|
||||
}
|
||||
|
||||
// base 8
|
||||
for (; index < max; index++) {
|
||||
ch = data[index];
|
||||
if (ch === '_') continue;
|
||||
if (!isOctCode(data.charCodeAt(index))) return false;
|
||||
hasDigits = true;
|
||||
|
||||
if (ch === 'o') {
|
||||
// base 8
|
||||
index++;
|
||||
|
||||
for (; index < max; index++) {
|
||||
ch = data[index];
|
||||
if (ch === '_') continue;
|
||||
if (!isOctCode(data.charCodeAt(index))) return false;
|
||||
hasDigits = true;
|
||||
}
|
||||
return hasDigits && ch !== '_';
|
||||
}
|
||||
return hasDigits && ch !== '_';
|
||||
}
|
||||
|
||||
// base 10 (except 0) or base 60
|
||||
// base 10 (except 0)
|
||||
|
||||
// value should not start with `_`;
|
||||
if (ch === '_') return false;
|
||||
|
|
@ -86,7 +91,6 @@ function resolveYamlInteger(data) {
|
|||
for (; index < max; index++) {
|
||||
ch = data[index];
|
||||
if (ch === '_') continue;
|
||||
if (ch === ':') break;
|
||||
if (!isDecCode(data.charCodeAt(index))) {
|
||||
return false;
|
||||
}
|
||||
|
|
@ -96,15 +100,11 @@ function resolveYamlInteger(data) {
|
|||
// Should have digits and should not end with `_`
|
||||
if (!hasDigits || ch === '_') return false;
|
||||
|
||||
// if !base60 - done;
|
||||
if (ch !== ':') return true;
|
||||
|
||||
// base60 almost not used, no needs to optimize
|
||||
return /^(:[0-5]?[0-9])+$/.test(data.slice(index));
|
||||
return true;
|
||||
}
|
||||
|
||||
function constructYamlInteger(data) {
|
||||
var value = data, sign = 1, ch, base, digits = [];
|
||||
var value = data, sign = 1, ch;
|
||||
|
||||
if (value.indexOf('_') !== -1) {
|
||||
value = value.replace(/_/g, '');
|
||||
|
|
@ -122,25 +122,8 @@ function constructYamlInteger(data) {
|
|||
|
||||
if (ch === '0') {
|
||||
if (value[1] === 'b') return sign * parseInt(value.slice(2), 2);
|
||||
if (value[1] === 'x') return sign * parseInt(value, 16);
|
||||
return sign * parseInt(value, 8);
|
||||
}
|
||||
|
||||
if (value.indexOf(':') !== -1) {
|
||||
value.split(':').forEach(function (v) {
|
||||
digits.unshift(parseInt(v, 10));
|
||||
});
|
||||
|
||||
value = 0;
|
||||
base = 1;
|
||||
|
||||
digits.forEach(function (d) {
|
||||
value += (d * base);
|
||||
base *= 60;
|
||||
});
|
||||
|
||||
return sign * value;
|
||||
|
||||
if (value[1] === 'x') return sign * parseInt(value.slice(2), 16);
|
||||
if (value[1] === 'o') return sign * parseInt(value.slice(2), 8);
|
||||
}
|
||||
|
||||
return sign * parseInt(value, 10);
|
||||
|
|
@ -158,7 +141,7 @@ module.exports = new Type('tag:yaml.org,2002:int', {
|
|||
predicate: isInteger,
|
||||
represent: {
|
||||
binary: function (obj) { return obj >= 0 ? '0b' + obj.toString(2) : '-0b' + obj.toString(2).slice(1); },
|
||||
octal: function (obj) { return obj >= 0 ? '0' + obj.toString(8) : '-0' + obj.toString(8).slice(1); },
|
||||
octal: function (obj) { return obj >= 0 ? '0o' + obj.toString(8) : '-0o' + obj.toString(8).slice(1); },
|
||||
decimal: function (obj) { return obj.toString(10); },
|
||||
/* eslint-disable max-len */
|
||||
hexadecimal: function (obj) { return obj >= 0 ? '0x' + obj.toString(16).toUpperCase() : '-0x' + obj.toString(16).toUpperCase().slice(1); }
|
||||
0
node_modules/js-yaml/lib/js-yaml/type/map.js → node_modules/js-yaml/lib/type/map.js
generated
vendored
0
node_modules/js-yaml/lib/js-yaml/type/map.js → node_modules/js-yaml/lib/type/map.js
generated
vendored
|
|
@ -28,7 +28,8 @@ module.exports = new Type('tag:yaml.org,2002:null', {
|
|||
canonical: function () { return '~'; },
|
||||
lowercase: function () { return 'null'; },
|
||||
uppercase: function () { return 'NULL'; },
|
||||
camelcase: function () { return 'Null'; }
|
||||
camelcase: function () { return 'Null'; },
|
||||
empty: function () { return ''; }
|
||||
},
|
||||
defaultStyle: 'lowercase'
|
||||
});
|
||||
0
node_modules/js-yaml/lib/js-yaml/type/seq.js → node_modules/js-yaml/lib/type/seq.js
generated
vendored
0
node_modules/js-yaml/lib/js-yaml/type/seq.js → node_modules/js-yaml/lib/type/seq.js
generated
vendored
0
node_modules/js-yaml/lib/js-yaml/type/set.js → node_modules/js-yaml/lib/type/set.js
generated
vendored
0
node_modules/js-yaml/lib/js-yaml/type/set.js → node_modules/js-yaml/lib/type/set.js
generated
vendored
0
node_modules/js-yaml/lib/js-yaml/type/str.js → node_modules/js-yaml/lib/type/str.js
generated
vendored
0
node_modules/js-yaml/lib/js-yaml/type/str.js → node_modules/js-yaml/lib/type/str.js
generated
vendored
Loading…
Add table
Add a link
Reference in a new issue