123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909 |
- "use strict";
- var __importDefault = (this && this.__importDefault) || function (mod) {
- return (mod && mod.__esModule) ? mod : { "default": mod };
- };
- Object.defineProperty(exports, "__esModule", { value: true });
- var decode_codepoint_1 = __importDefault(require("entities/lib/decode_codepoint"));
- var entities_json_1 = __importDefault(require("entities/lib/maps/entities.json"));
- var legacy_json_1 = __importDefault(require("entities/lib/maps/legacy.json"));
- var xml_json_1 = __importDefault(require("entities/lib/maps/xml.json"));
- function whitespace(c) {
- return c === " " || c === "\n" || c === "\t" || c === "\f" || c === "\r";
- }
- function isASCIIAlpha(c) {
- return (c >= "a" && c <= "z") || (c >= "A" && c <= "Z");
- }
- function ifElseState(upper, SUCCESS, FAILURE) {
- var lower = upper.toLowerCase();
- if (upper === lower) {
- return function (t, c) {
- if (c === lower) {
- t._state = SUCCESS;
- }
- else {
- t._state = FAILURE;
- t._index--;
- }
- };
- }
- return function (t, c) {
- if (c === lower || c === upper) {
- t._state = SUCCESS;
- }
- else {
- t._state = FAILURE;
- t._index--;
- }
- };
- }
- function consumeSpecialNameChar(upper, NEXT_STATE) {
- var lower = upper.toLowerCase();
- return function (t, c) {
- if (c === lower || c === upper) {
- t._state = NEXT_STATE;
- }
- else {
- t._state = 3 ;
- t._index--;
- }
- };
- }
- var stateBeforeCdata1 = ifElseState("C", 24 , 16 );
- var stateBeforeCdata2 = ifElseState("D", 25 , 16 );
- var stateBeforeCdata3 = ifElseState("A", 26 , 16 );
- var stateBeforeCdata4 = ifElseState("T", 27 , 16 );
- var stateBeforeCdata5 = ifElseState("A", 28 , 16 );
- var stateBeforeScript1 = consumeSpecialNameChar("R", 35 );
- var stateBeforeScript2 = consumeSpecialNameChar("I", 36 );
- var stateBeforeScript3 = consumeSpecialNameChar("P", 37 );
- var stateBeforeScript4 = consumeSpecialNameChar("T", 38 );
- var stateAfterScript1 = ifElseState("R", 40 , 1 );
- var stateAfterScript2 = ifElseState("I", 41 , 1 );
- var stateAfterScript3 = ifElseState("P", 42 , 1 );
- var stateAfterScript4 = ifElseState("T", 43 , 1 );
- var stateBeforeStyle1 = consumeSpecialNameChar("Y", 45 );
- var stateBeforeStyle2 = consumeSpecialNameChar("L", 46 );
- var stateBeforeStyle3 = consumeSpecialNameChar("E", 47 );
- var stateAfterStyle1 = ifElseState("Y", 49 , 1 );
- var stateAfterStyle2 = ifElseState("L", 50 , 1 );
- var stateAfterStyle3 = ifElseState("E", 51 , 1 );
- var stateBeforeSpecialT = consumeSpecialNameChar("I", 54 );
- var stateBeforeTitle1 = consumeSpecialNameChar("T", 55 );
- var stateBeforeTitle2 = consumeSpecialNameChar("L", 56 );
- var stateBeforeTitle3 = consumeSpecialNameChar("E", 57 );
- var stateAfterSpecialTEnd = ifElseState("I", 58 , 1 );
- var stateAfterTitle1 = ifElseState("T", 59 , 1 );
- var stateAfterTitle2 = ifElseState("L", 60 , 1 );
- var stateAfterTitle3 = ifElseState("E", 61 , 1 );
- var stateBeforeEntity = ifElseState("#", 63 , 64 );
- var stateBeforeNumericEntity = ifElseState("X", 66 , 65 );
- var Tokenizer = (function () {
- function Tokenizer(options, cbs) {
- var _a;
-
- this._state = 1 ;
-
- this.buffer = "";
-
- this.sectionStart = 0;
-
- this._index = 0;
-
- this.bufferOffset = 0;
-
- this.baseState = 1 ;
-
- this.special = 1 ;
-
- this.running = true;
-
- this.ended = false;
- this.cbs = cbs;
- this.xmlMode = !!(options === null || options === void 0 ? void 0 : options.xmlMode);
- this.decodeEntities = (_a = options === null || options === void 0 ? void 0 : options.decodeEntities) !== null && _a !== void 0 ? _a : true;
- }
- Tokenizer.prototype.reset = function () {
- this._state = 1 ;
- this.buffer = "";
- this.sectionStart = 0;
- this._index = 0;
- this.bufferOffset = 0;
- this.baseState = 1 ;
- this.special = 1 ;
- this.running = true;
- this.ended = false;
- };
- Tokenizer.prototype.write = function (chunk) {
- if (this.ended)
- this.cbs.onerror(Error(".write() after done!"));
- this.buffer += chunk;
- this.parse();
- };
- Tokenizer.prototype.end = function (chunk) {
- if (this.ended)
- this.cbs.onerror(Error(".end() after done!"));
- if (chunk)
- this.write(chunk);
- this.ended = true;
- if (this.running)
- this.finish();
- };
- Tokenizer.prototype.pause = function () {
- this.running = false;
- };
- Tokenizer.prototype.resume = function () {
- this.running = true;
- if (this._index < this.buffer.length) {
- this.parse();
- }
- if (this.ended) {
- this.finish();
- }
- };
-
- Tokenizer.prototype.getAbsoluteIndex = function () {
- return this.bufferOffset + this._index;
- };
- Tokenizer.prototype.stateText = function (c) {
- if (c === "<") {
- if (this._index > this.sectionStart) {
- this.cbs.ontext(this.getSection());
- }
- this._state = 2 ;
- this.sectionStart = this._index;
- }
- else if (this.decodeEntities &&
- c === "&" &&
- (this.special === 1 || this.special === 4 )) {
- if (this._index > this.sectionStart) {
- this.cbs.ontext(this.getSection());
- }
- this.baseState = 1 ;
- this._state = 62 ;
- this.sectionStart = this._index;
- }
- };
-
- Tokenizer.prototype.isTagStartChar = function (c) {
- return (isASCIIAlpha(c) ||
- (this.xmlMode && !whitespace(c) && c !== "/" && c !== ">"));
- };
- Tokenizer.prototype.stateBeforeTagName = function (c) {
- if (c === "/") {
- this._state = 5 ;
- }
- else if (c === "<") {
- this.cbs.ontext(this.getSection());
- this.sectionStart = this._index;
- }
- else if (c === ">" ||
- this.special !== 1 ||
- whitespace(c)) {
- this._state = 1 ;
- }
- else if (c === "!") {
- this._state = 15 ;
- this.sectionStart = this._index + 1;
- }
- else if (c === "?") {
- this._state = 17 ;
- this.sectionStart = this._index + 1;
- }
- else if (!this.isTagStartChar(c)) {
- this._state = 1 ;
- }
- else {
- this._state =
- !this.xmlMode && (c === "s" || c === "S")
- ? 32
- : !this.xmlMode && (c === "t" || c === "T")
- ? 52
- : 3 ;
- this.sectionStart = this._index;
- }
- };
- Tokenizer.prototype.stateInTagName = function (c) {
- if (c === "/" || c === ">" || whitespace(c)) {
- this.emitToken("onopentagname");
- this._state = 8 ;
- this._index--;
- }
- };
- Tokenizer.prototype.stateBeforeClosingTagName = function (c) {
- if (whitespace(c)) {
-
- }
- else if (c === ">") {
- this._state = 1 ;
- }
- else if (this.special !== 1 ) {
- if (this.special !== 4 && (c === "s" || c === "S")) {
- this._state = 33 ;
- }
- else if (this.special === 4 &&
- (c === "t" || c === "T")) {
- this._state = 53 ;
- }
- else {
- this._state = 1 ;
- this._index--;
- }
- }
- else if (!this.isTagStartChar(c)) {
- this._state = 20 ;
- this.sectionStart = this._index;
- }
- else {
- this._state = 6 ;
- this.sectionStart = this._index;
- }
- };
- Tokenizer.prototype.stateInClosingTagName = function (c) {
- if (c === ">" || whitespace(c)) {
- this.emitToken("onclosetag");
- this._state = 7 ;
- this._index--;
- }
- };
- Tokenizer.prototype.stateAfterClosingTagName = function (c) {
-
- if (c === ">") {
- this._state = 1 ;
- this.sectionStart = this._index + 1;
- }
- };
- Tokenizer.prototype.stateBeforeAttributeName = function (c) {
- if (c === ">") {
- this.cbs.onopentagend();
- this._state = 1 ;
- this.sectionStart = this._index + 1;
- }
- else if (c === "/") {
- this._state = 4 ;
- }
- else if (!whitespace(c)) {
- this._state = 9 ;
- this.sectionStart = this._index;
- }
- };
- Tokenizer.prototype.stateInSelfClosingTag = function (c) {
- if (c === ">") {
- this.cbs.onselfclosingtag();
- this._state = 1 ;
- this.sectionStart = this._index + 1;
- this.special = 1 ;
- }
- else if (!whitespace(c)) {
- this._state = 8 ;
- this._index--;
- }
- };
- Tokenizer.prototype.stateInAttributeName = function (c) {
- if (c === "=" || c === "/" || c === ">" || whitespace(c)) {
- this.cbs.onattribname(this.getSection());
- this.sectionStart = -1;
- this._state = 10 ;
- this._index--;
- }
- };
- Tokenizer.prototype.stateAfterAttributeName = function (c) {
- if (c === "=") {
- this._state = 11 ;
- }
- else if (c === "/" || c === ">") {
- this.cbs.onattribend(undefined);
- this._state = 8 ;
- this._index--;
- }
- else if (!whitespace(c)) {
- this.cbs.onattribend(undefined);
- this._state = 9 ;
- this.sectionStart = this._index;
- }
- };
- Tokenizer.prototype.stateBeforeAttributeValue = function (c) {
- if (c === '"') {
- this._state = 12 ;
- this.sectionStart = this._index + 1;
- }
- else if (c === "'") {
- this._state = 13 ;
- this.sectionStart = this._index + 1;
- }
- else if (!whitespace(c)) {
- this._state = 14 ;
- this.sectionStart = this._index;
- this._index--;
- }
- };
- Tokenizer.prototype.handleInAttributeValue = function (c, quote) {
- if (c === quote) {
- this.emitToken("onattribdata");
- this.cbs.onattribend(quote);
- this._state = 8 ;
- }
- else if (this.decodeEntities && c === "&") {
- this.emitToken("onattribdata");
- this.baseState = this._state;
- this._state = 62 ;
- this.sectionStart = this._index;
- }
- };
- Tokenizer.prototype.stateInAttributeValueDoubleQuotes = function (c) {
- this.handleInAttributeValue(c, '"');
- };
- Tokenizer.prototype.stateInAttributeValueSingleQuotes = function (c) {
- this.handleInAttributeValue(c, "'");
- };
- Tokenizer.prototype.stateInAttributeValueNoQuotes = function (c) {
- if (whitespace(c) || c === ">") {
- this.emitToken("onattribdata");
- this.cbs.onattribend(null);
- this._state = 8 ;
- this._index--;
- }
- else if (this.decodeEntities && c === "&") {
- this.emitToken("onattribdata");
- this.baseState = this._state;
- this._state = 62 ;
- this.sectionStart = this._index;
- }
- };
- Tokenizer.prototype.stateBeforeDeclaration = function (c) {
- this._state =
- c === "["
- ? 23
- : c === "-"
- ? 18
- : 16 ;
- };
- Tokenizer.prototype.stateInDeclaration = function (c) {
- if (c === ">") {
- this.cbs.ondeclaration(this.getSection());
- this._state = 1 ;
- this.sectionStart = this._index + 1;
- }
- };
- Tokenizer.prototype.stateInProcessingInstruction = function (c) {
- if (c === ">") {
- this.cbs.onprocessinginstruction(this.getSection());
- this._state = 1 ;
- this.sectionStart = this._index + 1;
- }
- };
- Tokenizer.prototype.stateBeforeComment = function (c) {
- if (c === "-") {
- this._state = 19 ;
- this.sectionStart = this._index + 1;
- }
- else {
- this._state = 16 ;
- }
- };
- Tokenizer.prototype.stateInComment = function (c) {
- if (c === "-")
- this._state = 21 ;
- };
- Tokenizer.prototype.stateInSpecialComment = function (c) {
- if (c === ">") {
- this.cbs.oncomment(this.buffer.substring(this.sectionStart, this._index));
- this._state = 1 ;
- this.sectionStart = this._index + 1;
- }
- };
- Tokenizer.prototype.stateAfterComment1 = function (c) {
- if (c === "-") {
- this._state = 22 ;
- }
- else {
- this._state = 19 ;
- }
- };
- Tokenizer.prototype.stateAfterComment2 = function (c) {
- if (c === ">") {
-
- this.cbs.oncomment(this.buffer.substring(this.sectionStart, this._index - 2));
- this._state = 1 ;
- this.sectionStart = this._index + 1;
- }
- else if (c !== "-") {
- this._state = 19 ;
- }
-
- };
- Tokenizer.prototype.stateBeforeCdata6 = function (c) {
- if (c === "[") {
- this._state = 29 ;
- this.sectionStart = this._index + 1;
- }
- else {
- this._state = 16 ;
- this._index--;
- }
- };
- Tokenizer.prototype.stateInCdata = function (c) {
- if (c === "]")
- this._state = 30 ;
- };
- Tokenizer.prototype.stateAfterCdata1 = function (c) {
- if (c === "]")
- this._state = 31 ;
- else
- this._state = 29 ;
- };
- Tokenizer.prototype.stateAfterCdata2 = function (c) {
- if (c === ">") {
-
- this.cbs.oncdata(this.buffer.substring(this.sectionStart, this._index - 2));
- this._state = 1 ;
- this.sectionStart = this._index + 1;
- }
- else if (c !== "]") {
- this._state = 29 ;
- }
-
- };
- Tokenizer.prototype.stateBeforeSpecialS = function (c) {
- if (c === "c" || c === "C") {
- this._state = 34 ;
- }
- else if (c === "t" || c === "T") {
- this._state = 44 ;
- }
- else {
- this._state = 3 ;
- this._index--;
- }
- };
- Tokenizer.prototype.stateBeforeSpecialSEnd = function (c) {
- if (this.special === 2 && (c === "c" || c === "C")) {
- this._state = 39 ;
- }
- else if (this.special === 3 && (c === "t" || c === "T")) {
- this._state = 48 ;
- }
- else
- this._state = 1 ;
- };
- Tokenizer.prototype.stateBeforeSpecialLast = function (c, special) {
- if (c === "/" || c === ">" || whitespace(c)) {
- this.special = special;
- }
- this._state = 3 ;
- this._index--;
- };
- Tokenizer.prototype.stateAfterSpecialLast = function (c, sectionStartOffset) {
- if (c === ">" || whitespace(c)) {
- this.special = 1 ;
- this._state = 6 ;
- this.sectionStart = this._index - sectionStartOffset;
- this._index--;
- }
- else
- this._state = 1 ;
- };
-
- Tokenizer.prototype.parseFixedEntity = function (map) {
- if (map === void 0) { map = this.xmlMode ? xml_json_1.default : entities_json_1.default; }
-
- if (this.sectionStart + 1 < this._index) {
- var entity = this.buffer.substring(this.sectionStart + 1, this._index);
- if (Object.prototype.hasOwnProperty.call(map, entity)) {
- this.emitPartial(map[entity]);
- this.sectionStart = this._index + 1;
- }
- }
- };
-
- Tokenizer.prototype.parseLegacyEntity = function () {
- var start = this.sectionStart + 1;
-
- var limit = Math.min(this._index - start, 6);
- while (limit >= 2) {
-
- var entity = this.buffer.substr(start, limit);
- if (Object.prototype.hasOwnProperty.call(legacy_json_1.default, entity)) {
- this.emitPartial(legacy_json_1.default[entity]);
- this.sectionStart += limit + 1;
- return;
- }
- limit--;
- }
- };
- Tokenizer.prototype.stateInNamedEntity = function (c) {
- if (c === ";") {
- this.parseFixedEntity();
-
- if (this.baseState === 1 &&
- this.sectionStart + 1 < this._index &&
- !this.xmlMode) {
- this.parseLegacyEntity();
- }
- this._state = this.baseState;
- }
- else if ((c < "0" || c > "9") && !isASCIIAlpha(c)) {
- if (this.xmlMode || this.sectionStart + 1 === this._index) {
-
- }
- else if (this.baseState !== 1 ) {
- if (c !== "=") {
-
- this.parseFixedEntity(legacy_json_1.default);
- }
- }
- else {
- this.parseLegacyEntity();
- }
- this._state = this.baseState;
- this._index--;
- }
- };
- Tokenizer.prototype.decodeNumericEntity = function (offset, base, strict) {
- var sectionStart = this.sectionStart + offset;
- if (sectionStart !== this._index) {
-
- var entity = this.buffer.substring(sectionStart, this._index);
- var parsed = parseInt(entity, base);
- this.emitPartial(decode_codepoint_1.default(parsed));
- this.sectionStart = strict ? this._index + 1 : this._index;
- }
- this._state = this.baseState;
- };
- Tokenizer.prototype.stateInNumericEntity = function (c) {
- if (c === ";") {
- this.decodeNumericEntity(2, 10, true);
- }
- else if (c < "0" || c > "9") {
- if (!this.xmlMode) {
- this.decodeNumericEntity(2, 10, false);
- }
- else {
- this._state = this.baseState;
- }
- this._index--;
- }
- };
- Tokenizer.prototype.stateInHexEntity = function (c) {
- if (c === ";") {
- this.decodeNumericEntity(3, 16, true);
- }
- else if ((c < "a" || c > "f") &&
- (c < "A" || c > "F") &&
- (c < "0" || c > "9")) {
- if (!this.xmlMode) {
- this.decodeNumericEntity(3, 16, false);
- }
- else {
- this._state = this.baseState;
- }
- this._index--;
- }
- };
- Tokenizer.prototype.cleanup = function () {
- if (this.sectionStart < 0) {
- this.buffer = "";
- this.bufferOffset += this._index;
- this._index = 0;
- }
- else if (this.running) {
- if (this._state === 1 ) {
- if (this.sectionStart !== this._index) {
- this.cbs.ontext(this.buffer.substr(this.sectionStart));
- }
- this.buffer = "";
- this.bufferOffset += this._index;
- this._index = 0;
- }
- else if (this.sectionStart === this._index) {
-
- this.buffer = "";
- this.bufferOffset += this._index;
- this._index = 0;
- }
- else {
-
- this.buffer = this.buffer.substr(this.sectionStart);
- this._index -= this.sectionStart;
- this.bufferOffset += this.sectionStart;
- }
- this.sectionStart = 0;
- }
- };
-
- Tokenizer.prototype.parse = function () {
- while (this._index < this.buffer.length && this.running) {
- var c = this.buffer.charAt(this._index);
- if (this._state === 1 ) {
- this.stateText(c);
- }
- else if (this._state === 12 ) {
- this.stateInAttributeValueDoubleQuotes(c);
- }
- else if (this._state === 9 ) {
- this.stateInAttributeName(c);
- }
- else if (this._state === 19 ) {
- this.stateInComment(c);
- }
- else if (this._state === 20 ) {
- this.stateInSpecialComment(c);
- }
- else if (this._state === 8 ) {
- this.stateBeforeAttributeName(c);
- }
- else if (this._state === 3 ) {
- this.stateInTagName(c);
- }
- else if (this._state === 6 ) {
- this.stateInClosingTagName(c);
- }
- else if (this._state === 2 ) {
- this.stateBeforeTagName(c);
- }
- else if (this._state === 10 ) {
- this.stateAfterAttributeName(c);
- }
- else if (this._state === 13 ) {
- this.stateInAttributeValueSingleQuotes(c);
- }
- else if (this._state === 11 ) {
- this.stateBeforeAttributeValue(c);
- }
- else if (this._state === 5 ) {
- this.stateBeforeClosingTagName(c);
- }
- else if (this._state === 7 ) {
- this.stateAfterClosingTagName(c);
- }
- else if (this._state === 32 ) {
- this.stateBeforeSpecialS(c);
- }
- else if (this._state === 21 ) {
- this.stateAfterComment1(c);
- }
- else if (this._state === 14 ) {
- this.stateInAttributeValueNoQuotes(c);
- }
- else if (this._state === 4 ) {
- this.stateInSelfClosingTag(c);
- }
- else if (this._state === 16 ) {
- this.stateInDeclaration(c);
- }
- else if (this._state === 15 ) {
- this.stateBeforeDeclaration(c);
- }
- else if (this._state === 22 ) {
- this.stateAfterComment2(c);
- }
- else if (this._state === 18 ) {
- this.stateBeforeComment(c);
- }
- else if (this._state === 33 ) {
- this.stateBeforeSpecialSEnd(c);
- }
- else if (this._state === 53 ) {
- stateAfterSpecialTEnd(this, c);
- }
- else if (this._state === 39 ) {
- stateAfterScript1(this, c);
- }
- else if (this._state === 40 ) {
- stateAfterScript2(this, c);
- }
- else if (this._state === 41 ) {
- stateAfterScript3(this, c);
- }
- else if (this._state === 34 ) {
- stateBeforeScript1(this, c);
- }
- else if (this._state === 35 ) {
- stateBeforeScript2(this, c);
- }
- else if (this._state === 36 ) {
- stateBeforeScript3(this, c);
- }
- else if (this._state === 37 ) {
- stateBeforeScript4(this, c);
- }
- else if (this._state === 38 ) {
- this.stateBeforeSpecialLast(c, 2 );
- }
- else if (this._state === 42 ) {
- stateAfterScript4(this, c);
- }
- else if (this._state === 43 ) {
- this.stateAfterSpecialLast(c, 6);
- }
- else if (this._state === 44 ) {
- stateBeforeStyle1(this, c);
- }
- else if (this._state === 29 ) {
- this.stateInCdata(c);
- }
- else if (this._state === 45 ) {
- stateBeforeStyle2(this, c);
- }
- else if (this._state === 46 ) {
- stateBeforeStyle3(this, c);
- }
- else if (this._state === 47 ) {
- this.stateBeforeSpecialLast(c, 3 );
- }
- else if (this._state === 48 ) {
- stateAfterStyle1(this, c);
- }
- else if (this._state === 49 ) {
- stateAfterStyle2(this, c);
- }
- else if (this._state === 50 ) {
- stateAfterStyle3(this, c);
- }
- else if (this._state === 51 ) {
- this.stateAfterSpecialLast(c, 5);
- }
- else if (this._state === 52 ) {
- stateBeforeSpecialT(this, c);
- }
- else if (this._state === 54 ) {
- stateBeforeTitle1(this, c);
- }
- else if (this._state === 55 ) {
- stateBeforeTitle2(this, c);
- }
- else if (this._state === 56 ) {
- stateBeforeTitle3(this, c);
- }
- else if (this._state === 57 ) {
- this.stateBeforeSpecialLast(c, 4 );
- }
- else if (this._state === 58 ) {
- stateAfterTitle1(this, c);
- }
- else if (this._state === 59 ) {
- stateAfterTitle2(this, c);
- }
- else if (this._state === 60 ) {
- stateAfterTitle3(this, c);
- }
- else if (this._state === 61 ) {
- this.stateAfterSpecialLast(c, 5);
- }
- else if (this._state === 17 ) {
- this.stateInProcessingInstruction(c);
- }
- else if (this._state === 64 ) {
- this.stateInNamedEntity(c);
- }
- else if (this._state === 23 ) {
- stateBeforeCdata1(this, c);
- }
- else if (this._state === 62 ) {
- stateBeforeEntity(this, c);
- }
- else if (this._state === 24 ) {
- stateBeforeCdata2(this, c);
- }
- else if (this._state === 25 ) {
- stateBeforeCdata3(this, c);
- }
- else if (this._state === 30 ) {
- this.stateAfterCdata1(c);
- }
- else if (this._state === 31 ) {
- this.stateAfterCdata2(c);
- }
- else if (this._state === 26 ) {
- stateBeforeCdata4(this, c);
- }
- else if (this._state === 27 ) {
- stateBeforeCdata5(this, c);
- }
- else if (this._state === 28 ) {
- this.stateBeforeCdata6(c);
- }
- else if (this._state === 66 ) {
- this.stateInHexEntity(c);
- }
- else if (this._state === 65 ) {
- this.stateInNumericEntity(c);
-
- }
- else if (this._state === 63 ) {
- stateBeforeNumericEntity(this, c);
- }
- else {
- this.cbs.onerror(Error("unknown _state"), this._state);
- }
- this._index++;
- }
- this.cleanup();
- };
- Tokenizer.prototype.finish = function () {
-
- if (this.sectionStart < this._index) {
- this.handleTrailingData();
- }
- this.cbs.onend();
- };
- Tokenizer.prototype.handleTrailingData = function () {
- var data = this.buffer.substr(this.sectionStart);
- if (this._state === 29 ||
- this._state === 30 ||
- this._state === 31 ) {
- this.cbs.oncdata(data);
- }
- else if (this._state === 19 ||
- this._state === 21 ||
- this._state === 22 ) {
- this.cbs.oncomment(data);
- }
- else if (this._state === 64 && !this.xmlMode) {
- this.parseLegacyEntity();
- if (this.sectionStart < this._index) {
- this._state = this.baseState;
- this.handleTrailingData();
- }
- }
- else if (this._state === 65 && !this.xmlMode) {
- this.decodeNumericEntity(2, 10, false);
- if (this.sectionStart < this._index) {
- this._state = this.baseState;
- this.handleTrailingData();
- }
- }
- else if (this._state === 66 && !this.xmlMode) {
- this.decodeNumericEntity(3, 16, false);
- if (this.sectionStart < this._index) {
- this._state = this.baseState;
- this.handleTrailingData();
- }
- }
- else if (this._state !== 3 &&
- this._state !== 8 &&
- this._state !== 11 &&
- this._state !== 10 &&
- this._state !== 9 &&
- this._state !== 13 &&
- this._state !== 12 &&
- this._state !== 14 &&
- this._state !== 6 ) {
- this.cbs.ontext(data);
- }
-
- };
- Tokenizer.prototype.getSection = function () {
- return this.buffer.substring(this.sectionStart, this._index);
- };
- Tokenizer.prototype.emitToken = function (name) {
- this.cbs[name](this.getSection());
- this.sectionStart = -1;
- };
- Tokenizer.prototype.emitPartial = function (value) {
- if (this.baseState !== 1 ) {
- this.cbs.onattribdata(value);
- }
- else {
- this.cbs.ontext(value);
- }
- };
- return Tokenizer;
- }());
- exports.default = Tokenizer;
|