UNPKG

ttk-app-core

Version:
620 lines (525 loc) 23.7 kB
/*jshint curly:true, eqeqeq:true, laxbreak:true, noempty:false */ /* The MIT License (MIT) Copyright (c) 2007-2017 Einar Lielmanis, Liam Newman, and contributors. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ var InputScanner = require('../core/inputscanner').InputScanner; var Token = require('../core/token').Token; var acorn = require('../core/acorn'); function trim(s) { return s.replace(/^\s+|\s+$/g, ''); } function in_array(what, arr) { for (var i = 0; i < arr.length; i += 1) { if (arr[i] === what) { return true; } } return false; } function Tokenizer(input_string, opts) { var whitespace = "\n\r\t ".split(''); var digit = /[0-9]/; var digit_bin = /[01]/; var digit_oct = /[01234567]/; var digit_hex = /[0123456789abcdefABCDEF]/; this.positionable_operators = '!= !== % & && * ** + - / : < << <= == === > >= >> >>> ? ^ | ||'.split(' '); var punct = this.positionable_operators.concat( // non-positionable operators - these do not follow operator position settings '! %= &= *= **= ++ += , -- -= /= :: <<= = => >>= >>>= ^= |= ~ ...'.split(' ')); // words which should always start on new line. this.line_starters = 'continue,try,throw,return,var,let,const,if,switch,case,default,for,while,break,function,import,export'.split(','); var reserved_words = this.line_starters.concat(['do', 'in', 'of', 'else', 'get', 'set', 'new', 'catch', 'finally', 'typeof', 'yield', 'async', 'await', 'from', 'as']); // /* ... */ comment ends with nearest */ or end of file var block_comment_pattern = /([\s\S]*?)((?:\*\/)|$)/g; // comment ends just before nearest linefeed or end of file var comment_pattern = /([^\n\r\u2028\u2029]*)/g; var directives_block_pattern = /\/\* beautify( \w+[:]\w+)+ \*\//g; var directive_pattern = / (\w+)[:](\w+)/g; var directives_end_ignore_pattern = /([\s\S]*?)((?:\/\*\sbeautify\signore:end\s\*\/)|$)/g; var template_pattern = /((<\?php|<\?=)[\s\S]*?\?>)|(<%[\s\S]*?%>)/g; var n_newlines, whitespace_before_token, in_html_comment, tokens; var input; this.tokenize = function() { input = new InputScanner(input_string); in_html_comment = false; tokens = []; var next, last; var token_values; var open = null; var open_stack = []; var comments = []; while (!(last && last.type === 'TK_EOF')) { token_values = tokenize_next(); next = new Token(token_values[1], token_values[0], n_newlines, whitespace_before_token); while (next.type === 'TK_COMMENT' || next.type === 'TK_BLOCK_COMMENT' || next.type === 'TK_UNKNOWN') { if (next.type === 'TK_BLOCK_COMMENT') { next.directives = token_values[2]; } comments.push(next); token_values = tokenize_next(); next = new Token(token_values[1], token_values[0], n_newlines, whitespace_before_token); } if (comments.length) { next.comments_before = comments; comments = []; } if (next.type === 'TK_START_BLOCK' || next.type === 'TK_START_EXPR') { next.parent = last; open_stack.push(open); open = next; } else if ((next.type === 'TK_END_BLOCK' || next.type === 'TK_END_EXPR') && (open && ( (next.text === ']' && open.text === '[') || (next.text === ')' && open.text === '(') || (next.text === '}' && open.text === '{')))) { next.parent = open.parent; next.opened = open; open = open_stack.pop(); } tokens.push(next); last = next; } return tokens; }; function get_directives(text) { if (!text.match(directives_block_pattern)) { return null; } var directives = {}; directive_pattern.lastIndex = 0; var directive_match = directive_pattern.exec(text); while (directive_match) { directives[directive_match[1]] = directive_match[2]; directive_match = directive_pattern.exec(text); } return directives; } function tokenize_next() { var resulting_string; var whitespace_on_this_line = []; n_newlines = 0; whitespace_before_token = ''; var c = input.next(); if (c === null) { return ['', 'TK_EOF']; } var last_token; if (tokens.length) { last_token = tokens[tokens.length - 1]; } else { // For the sake of tokenizing we can pretend that there was on open brace to start last_token = new Token('TK_START_BLOCK', '{'); } while (in_array(c, whitespace)) { if (acorn.newline.test(c)) { if (!(c === '\n' && input.peek(-2) === '\r')) { n_newlines += 1; whitespace_on_this_line = []; } } else { whitespace_on_this_line.push(c); } c = input.next(); if (c === null) { return ['', 'TK_EOF']; } } if (whitespace_on_this_line.length) { whitespace_before_token = whitespace_on_this_line.join(''); } if (digit.test(c) || (c === '.' && input.testChar(digit))) { var allow_decimal = true; var allow_e = true; var local_digit = digit; if (c === '0' && input.testChar(/[XxOoBb]/)) { // switch to hex/oct/bin number, no decimal or e, just hex/oct/bin digits allow_decimal = false; allow_e = false; if (input.testChar(/[Bb]/)) { local_digit = digit_bin; } else if (input.testChar(/[Oo]/)) { local_digit = digit_oct; } else { local_digit = digit_hex; } c += input.next(); } else if (c === '.') { // Already have a decimal for this literal, don't allow another allow_decimal = false; } else { // we know this first loop will run. It keeps the logic simpler. c = ''; input.back(); } // Add the digits while (input.testChar(local_digit)) { c += input.next(); if (allow_decimal && input.peek() === '.') { c += input.next(); allow_decimal = false; } // a = 1.e-7 is valid, so we test for . then e in one loop if (allow_e && input.testChar(/[Ee]/)) { c += input.next(); if (input.testChar(/[+-]/)) { c += input.next(); } allow_e = false; allow_decimal = false; } } return [c, 'TK_WORD']; } if (acorn.isIdentifierStart(input.peekCharCode(-1))) { if (input.hasNext()) { while (acorn.isIdentifierChar(input.peekCharCode())) { c += input.next(); if (!input.hasNext()) { break; } } } if (!(last_token.type === 'TK_DOT' || (last_token.type === 'TK_RESERVED' && in_array(last_token.text, ['set', 'get']))) && in_array(c, reserved_words)) { if (c === 'in' || c === 'of') { // hack for 'in' and 'of' operators return [c, 'TK_OPERATOR']; } return [c, 'TK_RESERVED']; } return [c, 'TK_WORD']; } if (c === '(' || c === '[') { return [c, 'TK_START_EXPR']; } if (c === ')' || c === ']') { return [c, 'TK_END_EXPR']; } if (c === '{') { return [c, 'TK_START_BLOCK']; } if (c === '}') { return [c, 'TK_END_BLOCK']; } if (c === ';') { return [c, 'TK_SEMICOLON']; } if (c === '/') { var comment = ''; var comment_match; // peek for comment /* ... */ if (input.peek() === '*') { input.next(); comment_match = input.match(block_comment_pattern); comment = '/*' + comment_match[0]; var directives = get_directives(comment); if (directives && directives.ignore === 'start') { comment_match = input.match(directives_end_ignore_pattern); comment += comment_match[0]; } comment = comment.replace(acorn.allLineBreaks, '\n'); return [comment, 'TK_BLOCK_COMMENT', directives]; } // peek for comment // ... if (input.peek() === '/') { input.next(); comment_match = input.match(comment_pattern); comment = '//' + comment_match[0]; return [comment, 'TK_COMMENT']; } } var startXmlRegExp = /<()([-a-zA-Z:0-9_.]+|{[\s\S]+?}|!\[CDATA\[[\s\S]*?\]\])(\s+{[\s\S]+?}|\s+[-a-zA-Z:0-9_.]+|\s+[-a-zA-Z:0-9_.]+\s*=\s*('[^']*'|"[^"]*"|{[\s\S]+?}))*\s*(\/?)\s*>/g; if (c === '`' || c === "'" || c === '"' || // string ( (c === '/') || // regexp (opts.e4x && c === "<" && input.test(startXmlRegExp, -1)) // xml ) && ( // regex and xml can only appear in specific locations during parsing (last_token.type === 'TK_RESERVED' && in_array(last_token.text, ['return', 'case', 'throw', 'else', 'do', 'typeof', 'yield'])) || (last_token.type === 'TK_END_EXPR' && last_token.text === ')' && last_token.parent && last_token.parent.type === 'TK_RESERVED' && in_array(last_token.parent.text, ['if', 'while', 'for'])) || (in_array(last_token.type, ['TK_COMMENT', 'TK_START_EXPR', 'TK_START_BLOCK', 'TK_END_BLOCK', 'TK_OPERATOR', 'TK_EQUALS', 'TK_EOF', 'TK_SEMICOLON', 'TK_COMMA' ])) )) { var sep = c, esc = false, has_char_escapes = false; resulting_string = c; if (sep === '/') { // // handle regexp // var in_char_class = false; while (input.hasNext() && ((esc || in_char_class || input.peek() !== sep) && !input.testChar(acorn.newline))) { resulting_string += input.peek(); if (!esc) { esc = input.peek() === '\\'; if (input.peek() === '[') { in_char_class = true; } else if (input.peek() === ']') { in_char_class = false; } } else { esc = false; } input.next(); } } else if (opts.e4x && sep === '<') { // // handle e4x xml literals // var xmlRegExp = /[\s\S]*?<(\/?)([-a-zA-Z:0-9_.]+|{[\s\S]+?}|!\[CDATA\[[\s\S]*?\]\])(\s+{[\s\S]+?}|\s+[-a-zA-Z:0-9_.]+|\s+[-a-zA-Z:0-9_.]+\s*=\s*('[^']*'|"[^"]*"|{[\s\S]+?}))*\s*(\/?)\s*>/g; input.back(); var xmlStr = ''; var match = input.match(startXmlRegExp); if (match) { // Trim root tag to attempt to var rootTag = match[2].replace(/^{\s+/, '{').replace(/\s+}$/, '}'); var isCurlyRoot = rootTag.indexOf('{') === 0; var depth = 0; while (match) { var isEndTag = !!match[1]; var tagName = match[2]; var isSingletonTag = (!!match[match.length - 1]) || (tagName.slice(0, 8) === "![CDATA["); if (!isSingletonTag && (tagName === rootTag || (isCurlyRoot && tagName.replace(/^{\s+/, '{').replace(/\s+}$/, '}')))) { if (isEndTag) { --depth; } else { ++depth; } } xmlStr += match[0]; if (depth <= 0) { break; } match = input.match(xmlRegExp); } // if we didn't close correctly, keep unformatted. if (!match) { xmlStr += input.match(/[\s\S]*/g)[0]; } xmlStr = xmlStr.replace(acorn.allLineBreaks, '\n'); return [xmlStr, "TK_STRING"]; } } else { // // handle string // var parse_string = function(delimiter, allow_unescaped_newlines, start_sub) { // Template strings can travers lines without escape characters. // Other strings cannot var current_char; while (input.hasNext()) { current_char = input.peek(); if (!(esc || (current_char !== delimiter && (allow_unescaped_newlines || !acorn.newline.test(current_char))))) { break; } // Handle \r\n linebreaks after escapes or in template strings if ((esc || allow_unescaped_newlines) && acorn.newline.test(current_char)) { if (current_char === '\r' && input.peek(1) === '\n') { input.next(); current_char = input.peek(); } resulting_string += '\n'; } else { resulting_string += current_char; } if (esc) { if (current_char === 'x' || current_char === 'u') { has_char_escapes = true; } esc = false; } else { esc = current_char === '\\'; } input.next(); if (start_sub && resulting_string.indexOf(start_sub, resulting_string.length - start_sub.length) !== -1) { if (delimiter === '`') { parse_string('}', allow_unescaped_newlines, '`'); } else { parse_string('`', allow_unescaped_newlines, '${'); } if (input.hasNext()) { resulting_string += input.next(); } } } }; if (sep === '`') { parse_string('`', true, '${'); } else { parse_string(sep); } } if (has_char_escapes && opts.unescape_strings) { resulting_string = unescape_string(resulting_string); } if (input.peek() === sep) { resulting_string += sep; input.next(); if (sep === '/') { // regexps may have modifiers /regexp/MOD , so fetch those, too // Only [gim] are valid, but if the user puts in garbage, do what we can to take it. while (input.hasNext() && acorn.isIdentifierStart(input.peekCharCode())) { resulting_string += input.next(); } } } return [resulting_string, 'TK_STRING']; } if (c === '#') { if (tokens.length === 0 && input.peek() === '!') { // shebang resulting_string = c; while (input.hasNext() && c !== '\n') { c = input.next(); resulting_string += c; } return [trim(resulting_string) + '\n', 'TK_UNKNOWN']; } // Spidermonkey-specific sharp variables for circular references // https://developer.mozilla.org/En/Sharp_variables_in_JavaScript // http://mxr.mozilla.org/mozilla-central/source/js/src/jsscan.cpp around line 1935 var sharp = '#'; if (input.hasNext() && input.testChar(digit)) { do { c = input.next(); sharp += c; } while (input.hasNext() && c !== '#' && c !== '='); if (c === '#') { // } else if (input.peek() === '[' && input.peek(1) === ']') { sharp += '[]'; input.next(); input.next(); } else if (input.peek() === '{' && input.peek(1) === '}') { sharp += '{}'; input.next(); input.next(); } return [sharp, 'TK_WORD']; } } if (c === '<' && (input.peek() === '?' || input.peek() === '%')) { input.back(); var template_match = input.match(template_pattern); if (template_match) { c = template_match[0]; c = c.replace(acorn.allLineBreaks, '\n'); return [c, 'TK_STRING']; } } if (c === '<' && input.match(/\!--/g)) { c = '<!--'; while (input.hasNext() && !input.testChar(acorn.newline)) { c += input.next(); } in_html_comment = true; return [c, 'TK_COMMENT']; } if (c === '-' && in_html_comment && input.match(/->/g)) { in_html_comment = false; return ['-->', 'TK_COMMENT']; } if (c === '.') { if (input.peek() === '.' && input.peek(1) === '.') { c += input.next() + input.next(); return [c, 'TK_OPERATOR']; } return [c, 'TK_DOT']; } if (in_array(c, punct)) { while (input.hasNext() && in_array(c + input.peek(), punct)) { c += input.next(); if (!input.hasNext()) { break; } } if (c === ',') { return [c, 'TK_COMMA']; } else if (c === '=') { return [c, 'TK_EQUALS']; } else { return [c, 'TK_OPERATOR']; } } return [c, 'TK_UNKNOWN']; } function unescape_string(s) { // You think that a regex would work for this // return s.replace(/\\x([0-9a-f]{2})/gi, function(match, val) { // return String.fromCharCode(parseInt(val, 16)); // }) // However, dealing with '\xff', '\\xff', '\\\xff' makes this more fun. var out = '', escaped = 0; var input_scan = new InputScanner(s); var matched = null; while (input_scan.hasNext()) { // Keep any whitespace, non-slash characters // also keep slash pairs. matched = input_scan.match(/([\s]|[^\\]|\\\\)+/g); if (matched) { out += matched[0]; } if (input_scan.peek() === '\\') { input_scan.next(); if (input_scan.peek() === 'x') { matched = input_scan.match(/x([0-9A-Fa-f]{2})/g); } else if (input_scan.peek() === 'u') { matched = input_scan.match(/u([0-9A-Fa-f]{4})/g); } else { out += '\\'; if (input_scan.hasNext()) { out += input_scan.next(); } continue; } // If there's some error decoding, return the original string if (!matched) { return s; } escaped = parseInt(matched[1], 16); if (escaped > 0x7e && escaped <= 0xff && matched[0].indexOf('x') === 0) { // we bail out on \x7f..\xff, // leaving whole string escaped, // as it's probably completely binary return s; } else if (escaped >= 0x00 && escaped < 0x20) { // leave 0x00...0x1f escaped out += '\\' + matched[0]; continue; } else if (escaped === 0x22 || escaped === 0x27 || escaped === 0x5c) { // single-quote, apostrophe, backslash - escape these out += '\\' + String.fromCharCode(escaped); } else { out += String.fromCharCode(escaped); } } } return out; } } module.exports.Tokenizer = Tokenizer;