
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
'use strict';
const stringify = require('./stringify');
/**
* Constants
*/
const {
MAX_LENGTH,
CHAR_BACKSLASH, /* \ */
CHAR_BACKTICK, /* ` */
CHAR_COMMA, /* , */
CHAR_DOT, /* . */
CHAR_LEFT_PARENTHESES, /* ( */
CHAR_RIGHT_PARENTHESES, /* ) */
CHAR_LEFT_CURLY_BRACE, /* { */
CHAR_RIGHT_CURLY_BRACE, /* } */
CHAR_LEFT_SQUARE_BRACKET, /* [ */
CHAR_RIGHT_SQUARE_BRACKET, /* ] */
CHAR_DOUBLE_QUOTE, /* " */
CHAR_SINGLE_QUOTE, /* ' */
CHAR_NO_BREAK_SPACE,
CHAR_ZERO_WIDTH_NOBREAK_SPACE
} = require('./constants');
/**
* parse
*/
const parse = (input, options = {}) => {
if (typeof input !== 'string') {
throw new TypeError('Expected a string');
}
let opts = options || {};
let max = typeof opts.maxLength === 'number' ? Math.min(MAX_LENGTH, opts.maxLength) : MAX_LENGTH;
if (input.length > max) {
throw new SyntaxError(`Input length (${input.length}), exceeds max characters (${max})`);
}
let ast = { type: 'root', input, nodes: [] };
let stack = [ast];
let block = ast;
let prev = ast;
let brackets = 0;
let length = input.length;
let index = 0;
let depth = 0;
let value;
let memo = {};
/**
* Helpers
*/
const advance = () => input[index++];
const push = node => {
if (node.type === 'text' && prev.type === 'dot') {
prev.type = 'text';
}
if (prev && prev.type === 'text' && node.type === 'text') {
prev.value += node.value;
return;
}
block.nodes.push(node);
node.parent = block;
node.prev = prev;
prev = node;
return node;
};
push({ type: 'bos' });
while (index < length) {
block = stack[stack.length - 1];
value = advance();
/**
* Invalid chars
*/
if (value === CHAR_ZERO_WIDTH_NOBREAK_SPACE || value === CHAR_NO_BREAK_SPACE) {
continue;
}
/**
* Escaped chars
*/
if (value === CHAR_BACKSLASH) {
push({ type: 'text', value: (options.keepEscaping ? value : '') + advance() });
continue;
}
/**
* Right square bracket (literal): ']'
*/
if (value === CHAR_RIGHT_SQUARE_BRACKET) {
push({ type: 'text', value: '\\' + value });
continue;
}
/**
* Left square bracket: '['
*/
if (value === CHAR_LEFT_SQUARE_BRACKET) {
brackets++;
let closed = true;
let next;
while (index < length && (next = advance())) {
value += next;
if (next === CHAR_LEFT_SQUARE_BRACKET) {
brackets++;
continue;
}
if (next === CHAR_BACKSLASH) {
value += advance();
continue;
}
if (next === CHAR_RIGHT_SQUARE_BRACKET) {
brackets--;
if (brackets === 0) {
break;
}
}
}
push({ type: 'text', value });
continue;
}
/**
* Parentheses
*/
if (value === CHAR_LEFT_PARENTHESES) {
block = push({ type: 'paren', nodes: [] });
stack.push(block);
push({ type: 'text', value });
continue;
}
if (value === CHAR_RIGHT_PARENTHESES) {
if (block.type !== 'paren') {
push({ type: 'text', value });
continue;
}
block = stack.pop();
push({ type: 'text', value });
block = stack[stack.length - 1];
continue;
}
/**
* Quotes: '|"|`
*/
if (value === CHAR_DOUBLE_QUOTE || value === CHAR_SINGLE_QUOTE || value === CHAR_BACKTICK) {
let open = value;
let next;
if (options.keepQuotes !== true) {
value = '';
}
while (index < length && (next = advance())) {
if (next === CHAR_BACKSLASH) {
value += next + advance();
continue;
}
if (next === open) {
if (options.keepQuotes === true) value += next;
break;
}
value += next;
}
push({ type: 'text', value });
continue;
}
/**
* Left curly brace: '{'
*/
if (value === CHAR_LEFT_CURLY_BRACE) {
depth++;
let dollar = prev.value && prev.value.slice(-1) === '$' || block.dollar === true;
let brace = {
type: 'brace',
open: true,
close: false,
dollar,
depth,
commas: 0,
ranges: 0,
nodes: []
};
block = push(brace);
stack.push(block);
push({ type: 'open', value });
continue;
}
/**
* Right curly brace: '}'
*/
if (value === CHAR_RIGHT_CURLY_BRACE) {
if (block.type !== 'brace') {
push({ type: 'text', value });
continue;
}
let type = 'close';
block = stack.pop();
block.close = true;
push({ type, value });
depth--;
block = stack[stack.length - 1];
continue;
}
/**
* Comma: ','
*/
if (value === CHAR_COMMA && depth > 0) {
if (block.ranges > 0) {
block.ranges = 0;
let open = block.nodes.shift();
block.nodes = [open, { type: 'text', value: stringify(block) }];
}
push({ type: 'comma', value });
block.commas++;
continue;
}
/**
* Dot: '.'
*/
if (value === CHAR_DOT && depth > 0 && block.commas === 0) {
let siblings = block.nodes;
if (depth === 0 || siblings.length === 0) {
push({ type: 'text', value });
continue;
}
if (prev.type === 'dot') {
block.range = [];
prev.value += value;
prev.type = 'range';
if (block.nodes.length !== 3 && block.nodes.length !== 5) {
block.invalid = true;
block.ranges = 0;
prev.type = 'text';
continue;
}
block.ranges++;
block.args = [];
continue;
}
if (prev.type === 'range') {
siblings.pop();
let before = siblings[siblings.length - 1];
before.value += prev.value + value;
prev = before;
block.ranges--;
continue;
}
push({ type: 'dot', value });
continue;
}
/**
* Text
*/
push({ type: 'text', value });
}
// Mark imbalanced braces and brackets as invalid
do {
block = stack.pop();
if (block.type !== 'root') {
block.nodes.forEach(node => {
if (!node.nodes) {
if (node.type === 'open') node.isOpen = true;
if (node.type === 'close') node.isClose = true;
if (!node.nodes) node.type = 'text';
node.invalid = true;
}
});
// get the location of the block on parent.nodes (block's siblings)
let parent = stack[stack.length - 1];
let index = parent.nodes.indexOf(block);
// replace the (invalid) block with it's nodes
parent.nodes.splice(index, 1, ...block.nodes);
}
} while (stack.length > 0);
push({ type: 'eos' });
return ast;
};
module.exports = parse;
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334'use strict';const stringify = require('./stringify');/*** Constants*/const {MAX_LENGTH,CHAR_BACKSLASH, /* \ */CHAR_BACKTICK, /* ` */CHAR_COMMA, /* , */CHAR_DOT, /* . */CHAR_LEFT_PARENTHESES, /* ( */CHAR_RIGHT_PARENTHESES, /* ) */CHAR_LEFT_CURLY_BRACE, /* { */CHAR_RIGHT_CURLY_BRACE, /* } */CHAR_LEFT_SQUARE_BRACKET, /* [ */CHAR_RIGHT_SQUARE_BRACKET, /* ] */CHAR_DOUBLE_QUOTE, /* " */CHAR_SINGLE_QUOTE, /* ' */CHAR_NO_BREAK_SPACE,CHAR_ZERO_WIDTH_NOBREAK_SPACE} = require('./constants');/*** parse*/const parse = (input, options = {}) => {if (typeof input !== 'string') {throw new TypeError('Expected a string');}let opts = options || {};let max = typeof opts.maxLength === 'number' ? Math.min(MAX_LENGTH, opts.maxLength) : MAX_LENGTH;if (input.length > max) {throw new SyntaxError(`Input length (${input.length}), exceeds max characters (${max})`);}let ast = { type: 'root', input, nodes: [] };let stack = [ast];let block = ast;let prev = ast;let brackets = 0;let length = input.length;let index = 0;let depth = 0;let value;let memo = {};/*** Helpers*/const advance = () => input[index++];const push = node => {if (node.type === 'text' && prev.type === 'dot') {prev.type = 'text';}if (prev && prev.type === 'text' && node.type === 'text') {prev.value += node.value;return;}block.nodes.push(node);node.parent = block;node.prev = prev;prev = node;return node;};push({ type: 'bos' });while (index < length) {block = stack[stack.length - 1];value = advance();/*** Invalid chars*/if (value === CHAR_ZERO_WIDTH_NOBREAK_SPACE || value === CHAR_NO_BREAK_SPACE) {continue;}/*** Escaped chars*/if (value === CHAR_BACKSLASH) {push({ type: 'text', value: (options.keepEscaping ? value : '') + advance() });continue;}/*** Right square bracket (literal): ']'*/if (value === CHAR_RIGHT_SQUARE_BRACKET) {push({ type: 'text', value: '\\' + value });continue;}/*** Left square bracket: '['*/if (value === CHAR_LEFT_SQUARE_BRACKET) {brackets++;let closed = true;let next;while (index < length && (next = advance())) {value += next;if (next === CHAR_LEFT_SQUARE_BRACKET) {brackets++;continue;}if (next === CHAR_BACKSLASH) {value += advance();continue;}if (next === CHAR_RIGHT_SQUARE_BRACKET) {brackets--;if (brackets === 0) {break;}}}push({ type: 'text', value });continue;}/*** Parentheses*/if (value === CHAR_LEFT_PARENTHESES) {block = push({ type: 'paren', nodes: [] });stack.push(block);push({ type: 'text', value });continue;}if (value === CHAR_RIGHT_PARENTHESES) {if (block.type !== 'paren') {push({ type: 'text', value });continue;}block = stack.pop();push({ type: 'text', value });block = stack[stack.length - 1];continue;}/*** Quotes: '|"|`*/if (value === CHAR_DOUBLE_QUOTE || value === CHAR_SINGLE_QUOTE || value === CHAR_BACKTICK) {let open = value;let next;if (options.keepQuotes !== true) {value = '';}while (index < length && (next = advance())) {if (next === CHAR_BACKSLASH) {value += next + advance();continue;}if (next === open) {if (options.keepQuotes === true) value += next;break;}value += next;}push({ type: 'text', value });continue;}/*** Left curly brace: '{'*/if (value === CHAR_LEFT_CURLY_BRACE) {depth++;let dollar = prev.value && prev.value.slice(-1) === '$' || block.dollar === true;let brace = {type: 'brace',open: true,close: false,dollar,depth,commas: 0,ranges: 0,nodes: []};block = push(brace);stack.push(block);push({ type: 'open', value });continue;}/*** Right curly brace: '}'*/if (value === CHAR_RIGHT_CURLY_BRACE) {if (block.type !== 'brace') {push({ type: 'text', value });continue;}let type = 'close';block = stack.pop();block.close = true;push({ type, value });depth--;block = stack[stack.length - 1];continue;}/*** Comma: ','*/if (value === CHAR_COMMA && depth > 0) {if (block.ranges > 0) {block.ranges = 0;let open = block.nodes.shift();block.nodes = [open, { type: 'text', value: stringify(block) }];}push({ type: 'comma', value });block.commas++;continue;}/*** Dot: '.'*/if (value === CHAR_DOT && depth > 0 && block.commas === 0) {let siblings = block.nodes;if (depth === 0 || siblings.length === 0) {push({ type: 'text', value });continue;}if (prev.type === 'dot') {block.range = [];prev.value += value;prev.type = 'range';if (block.nodes.length !== 3 && block.nodes.length !== 5) {block.invalid = true;block.ranges = 0;prev.type = 'text';continue;}block.ranges++;block.args = [];continue;}if (prev.type === 'range') {siblings.pop();let before = siblings[siblings.length - 1];before.value += prev.value + value;prev = before;block.ranges--;continue;}push({ type: 'dot', value });continue;}/*** Text*/push({ type: 'text', value });}// Mark imbalanced braces and brackets as invaliddo {block = stack.pop();if (block.type !== 'root') {block.nodes.forEach(node => {if (!node.nodes) {if (node.type === 'open') node.isOpen = true;if (node.type === 'close') node.isClose = true;if (!node.nodes) node.type = 'text';node.invalid = true;}});// get the location of the block on parent.nodes (block's siblings)let parent = stack[stack.length - 1];let index = parent.nodes.indexOf(block);// replace the (invalid) block with it's nodesparent.nodes.splice(index, 1, ...block.nodes);}} while (stack.length > 0);push({ type: 'eos' });return ast;};module.exports = parse;