message-compiler.node.mjs 60 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660
  1. /*!
  2. * message-compiler v9.13.1
  3. * (c) 2024 kazuya kawaguchi
  4. * Released under the MIT License.
  5. */
  6. import { format, assign, join, isString } from '@intlify/shared';
  7. import { SourceMapGenerator } from 'source-map-js';
  8. const LOCATION_STUB = {
  9. start: { line: 1, column: 1, offset: 0 },
  10. end: { line: 1, column: 1, offset: 0 }
  11. };
  12. function createPosition(line, column, offset) {
  13. return { line, column, offset };
  14. }
  15. function createLocation(start, end, source) {
  16. const loc = { start, end };
  17. if (source != null) {
  18. loc.source = source;
  19. }
  20. return loc;
  21. }
  22. const CompileWarnCodes = {
  23. USE_MODULO_SYNTAX: 1,
  24. __EXTEND_POINT__: 2
  25. };
  26. /** @internal */
  27. const warnMessages = {
  28. [CompileWarnCodes.USE_MODULO_SYNTAX]: `Use modulo before '{{0}}'.`
  29. };
  30. function createCompileWarn(code, loc, ...args) {
  31. const msg = (process.env.NODE_ENV !== 'production') ? format(warnMessages[code] || '', ...(args || [])) : code;
  32. const message = { message: String(msg), code };
  33. if (loc) {
  34. message.location = loc;
  35. }
  36. return message;
  37. }
  38. const CompileErrorCodes = {
  39. // tokenizer error codes
  40. EXPECTED_TOKEN: 1,
  41. INVALID_TOKEN_IN_PLACEHOLDER: 2,
  42. UNTERMINATED_SINGLE_QUOTE_IN_PLACEHOLDER: 3,
  43. UNKNOWN_ESCAPE_SEQUENCE: 4,
  44. INVALID_UNICODE_ESCAPE_SEQUENCE: 5,
  45. UNBALANCED_CLOSING_BRACE: 6,
  46. UNTERMINATED_CLOSING_BRACE: 7,
  47. EMPTY_PLACEHOLDER: 8,
  48. NOT_ALLOW_NEST_PLACEHOLDER: 9,
  49. INVALID_LINKED_FORMAT: 10,
  50. // parser error codes
  51. MUST_HAVE_MESSAGES_IN_PLURAL: 11,
  52. UNEXPECTED_EMPTY_LINKED_MODIFIER: 12,
  53. UNEXPECTED_EMPTY_LINKED_KEY: 13,
  54. UNEXPECTED_LEXICAL_ANALYSIS: 14,
  55. // generator error codes
  56. UNHANDLED_CODEGEN_NODE_TYPE: 15,
  57. // minifier error codes
  58. UNHANDLED_MINIFIER_NODE_TYPE: 16,
  59. // Special value for higher-order compilers to pick up the last code
  60. // to avoid collision of error codes. This should always be kept as the last
  61. // item.
  62. __EXTEND_POINT__: 17
  63. };
  64. /** @internal */
  65. const errorMessages = {
  66. // tokenizer error messages
  67. [CompileErrorCodes.EXPECTED_TOKEN]: `Expected token: '{0}'`,
  68. [CompileErrorCodes.INVALID_TOKEN_IN_PLACEHOLDER]: `Invalid token in placeholder: '{0}'`,
  69. [CompileErrorCodes.UNTERMINATED_SINGLE_QUOTE_IN_PLACEHOLDER]: `Unterminated single quote in placeholder`,
  70. [CompileErrorCodes.UNKNOWN_ESCAPE_SEQUENCE]: `Unknown escape sequence: \\{0}`,
  71. [CompileErrorCodes.INVALID_UNICODE_ESCAPE_SEQUENCE]: `Invalid unicode escape sequence: {0}`,
  72. [CompileErrorCodes.UNBALANCED_CLOSING_BRACE]: `Unbalanced closing brace`,
  73. [CompileErrorCodes.UNTERMINATED_CLOSING_BRACE]: `Unterminated closing brace`,
  74. [CompileErrorCodes.EMPTY_PLACEHOLDER]: `Empty placeholder`,
  75. [CompileErrorCodes.NOT_ALLOW_NEST_PLACEHOLDER]: `Not allowed nest placeholder`,
  76. [CompileErrorCodes.INVALID_LINKED_FORMAT]: `Invalid linked format`,
  77. // parser error messages
  78. [CompileErrorCodes.MUST_HAVE_MESSAGES_IN_PLURAL]: `Plural must have messages`,
  79. [CompileErrorCodes.UNEXPECTED_EMPTY_LINKED_MODIFIER]: `Unexpected empty linked modifier`,
  80. [CompileErrorCodes.UNEXPECTED_EMPTY_LINKED_KEY]: `Unexpected empty linked key`,
  81. [CompileErrorCodes.UNEXPECTED_LEXICAL_ANALYSIS]: `Unexpected lexical analysis in token: '{0}'`,
  82. // generator error messages
  83. [CompileErrorCodes.UNHANDLED_CODEGEN_NODE_TYPE]: `unhandled codegen node type: '{0}'`,
  84. // minimizer error messages
  85. [CompileErrorCodes.UNHANDLED_MINIFIER_NODE_TYPE]: `unhandled mimifier node type: '{0}'`
  86. };
  87. function createCompileError(code, loc, options = {}) {
  88. const { domain, messages, args } = options;
  89. const msg = (process.env.NODE_ENV !== 'production')
  90. ? format((messages || errorMessages)[code] || '', ...(args || []))
  91. : code;
  92. const error = new SyntaxError(String(msg));
  93. error.code = code;
  94. if (loc) {
  95. error.location = loc;
  96. }
  97. error.domain = domain;
  98. return error;
  99. }
  100. /** @internal */
  101. function defaultOnError(error) {
  102. throw error;
  103. }
  104. // eslint-disable-next-line no-useless-escape
  105. const RE_HTML_TAG = /<\/?[\w\s="/.':;#-\/]+>/;
  106. const detectHtmlTag = (source) => RE_HTML_TAG.test(source);
  107. const CHAR_SP = ' ';
  108. const CHAR_CR = '\r';
  109. const CHAR_LF = '\n';
  110. const CHAR_LS = String.fromCharCode(0x2028);
  111. const CHAR_PS = String.fromCharCode(0x2029);
  112. function createScanner(str) {
  113. const _buf = str;
  114. let _index = 0;
  115. let _line = 1;
  116. let _column = 1;
  117. let _peekOffset = 0;
  118. const isCRLF = (index) => _buf[index] === CHAR_CR && _buf[index + 1] === CHAR_LF;
  119. const isLF = (index) => _buf[index] === CHAR_LF;
  120. const isPS = (index) => _buf[index] === CHAR_PS;
  121. const isLS = (index) => _buf[index] === CHAR_LS;
  122. const isLineEnd = (index) => isCRLF(index) || isLF(index) || isPS(index) || isLS(index);
  123. const index = () => _index;
  124. const line = () => _line;
  125. const column = () => _column;
  126. const peekOffset = () => _peekOffset;
  127. const charAt = (offset) => isCRLF(offset) || isPS(offset) || isLS(offset) ? CHAR_LF : _buf[offset];
  128. const currentChar = () => charAt(_index);
  129. const currentPeek = () => charAt(_index + _peekOffset);
  130. function next() {
  131. _peekOffset = 0;
  132. if (isLineEnd(_index)) {
  133. _line++;
  134. _column = 0;
  135. }
  136. if (isCRLF(_index)) {
  137. _index++;
  138. }
  139. _index++;
  140. _column++;
  141. return _buf[_index];
  142. }
  143. function peek() {
  144. if (isCRLF(_index + _peekOffset)) {
  145. _peekOffset++;
  146. }
  147. _peekOffset++;
  148. return _buf[_index + _peekOffset];
  149. }
  150. function reset() {
  151. _index = 0;
  152. _line = 1;
  153. _column = 1;
  154. _peekOffset = 0;
  155. }
  156. function resetPeek(offset = 0) {
  157. _peekOffset = offset;
  158. }
  159. function skipToPeek() {
  160. const target = _index + _peekOffset;
  161. // eslint-disable-next-line no-unmodified-loop-condition
  162. while (target !== _index) {
  163. next();
  164. }
  165. _peekOffset = 0;
  166. }
  167. return {
  168. index,
  169. line,
  170. column,
  171. peekOffset,
  172. charAt,
  173. currentChar,
  174. currentPeek,
  175. next,
  176. peek,
  177. reset,
  178. resetPeek,
  179. skipToPeek
  180. };
  181. }
  182. const EOF = undefined;
  183. const DOT = '.';
  184. const LITERAL_DELIMITER = "'";
  185. const ERROR_DOMAIN$3 = 'tokenizer';
  186. function createTokenizer(source, options = {}) {
  187. const location = options.location !== false;
  188. const _scnr = createScanner(source);
  189. const currentOffset = () => _scnr.index();
  190. const currentPosition = () => createPosition(_scnr.line(), _scnr.column(), _scnr.index());
  191. const _initLoc = currentPosition();
  192. const _initOffset = currentOffset();
  193. const _context = {
  194. currentType: 14 /* TokenTypes.EOF */,
  195. offset: _initOffset,
  196. startLoc: _initLoc,
  197. endLoc: _initLoc,
  198. lastType: 14 /* TokenTypes.EOF */,
  199. lastOffset: _initOffset,
  200. lastStartLoc: _initLoc,
  201. lastEndLoc: _initLoc,
  202. braceNest: 0,
  203. inLinked: false,
  204. text: ''
  205. };
  206. const context = () => _context;
  207. const { onError } = options;
  208. function emitError(code, pos, offset, ...args) {
  209. const ctx = context();
  210. pos.column += offset;
  211. pos.offset += offset;
  212. if (onError) {
  213. const loc = location ? createLocation(ctx.startLoc, pos) : null;
  214. const err = createCompileError(code, loc, {
  215. domain: ERROR_DOMAIN$3,
  216. args
  217. });
  218. onError(err);
  219. }
  220. }
  221. function getToken(context, type, value) {
  222. context.endLoc = currentPosition();
  223. context.currentType = type;
  224. const token = { type };
  225. if (location) {
  226. token.loc = createLocation(context.startLoc, context.endLoc);
  227. }
  228. if (value != null) {
  229. token.value = value;
  230. }
  231. return token;
  232. }
  233. const getEndToken = (context) => getToken(context, 14 /* TokenTypes.EOF */);
  234. function eat(scnr, ch) {
  235. if (scnr.currentChar() === ch) {
  236. scnr.next();
  237. return ch;
  238. }
  239. else {
  240. emitError(CompileErrorCodes.EXPECTED_TOKEN, currentPosition(), 0, ch);
  241. return '';
  242. }
  243. }
  244. function peekSpaces(scnr) {
  245. let buf = '';
  246. while (scnr.currentPeek() === CHAR_SP || scnr.currentPeek() === CHAR_LF) {
  247. buf += scnr.currentPeek();
  248. scnr.peek();
  249. }
  250. return buf;
  251. }
  252. function skipSpaces(scnr) {
  253. const buf = peekSpaces(scnr);
  254. scnr.skipToPeek();
  255. return buf;
  256. }
  257. function isIdentifierStart(ch) {
  258. if (ch === EOF) {
  259. return false;
  260. }
  261. const cc = ch.charCodeAt(0);
  262. return ((cc >= 97 && cc <= 122) || // a-z
  263. (cc >= 65 && cc <= 90) || // A-Z
  264. cc === 95 // _
  265. );
  266. }
  267. function isNumberStart(ch) {
  268. if (ch === EOF) {
  269. return false;
  270. }
  271. const cc = ch.charCodeAt(0);
  272. return cc >= 48 && cc <= 57; // 0-9
  273. }
  274. function isNamedIdentifierStart(scnr, context) {
  275. const { currentType } = context;
  276. if (currentType !== 2 /* TokenTypes.BraceLeft */) {
  277. return false;
  278. }
  279. peekSpaces(scnr);
  280. const ret = isIdentifierStart(scnr.currentPeek());
  281. scnr.resetPeek();
  282. return ret;
  283. }
  284. function isListIdentifierStart(scnr, context) {
  285. const { currentType } = context;
  286. if (currentType !== 2 /* TokenTypes.BraceLeft */) {
  287. return false;
  288. }
  289. peekSpaces(scnr);
  290. const ch = scnr.currentPeek() === '-' ? scnr.peek() : scnr.currentPeek();
  291. const ret = isNumberStart(ch);
  292. scnr.resetPeek();
  293. return ret;
  294. }
  295. function isLiteralStart(scnr, context) {
  296. const { currentType } = context;
  297. if (currentType !== 2 /* TokenTypes.BraceLeft */) {
  298. return false;
  299. }
  300. peekSpaces(scnr);
  301. const ret = scnr.currentPeek() === LITERAL_DELIMITER;
  302. scnr.resetPeek();
  303. return ret;
  304. }
  305. function isLinkedDotStart(scnr, context) {
  306. const { currentType } = context;
  307. if (currentType !== 8 /* TokenTypes.LinkedAlias */) {
  308. return false;
  309. }
  310. peekSpaces(scnr);
  311. const ret = scnr.currentPeek() === "." /* TokenChars.LinkedDot */;
  312. scnr.resetPeek();
  313. return ret;
  314. }
  315. function isLinkedModifierStart(scnr, context) {
  316. const { currentType } = context;
  317. if (currentType !== 9 /* TokenTypes.LinkedDot */) {
  318. return false;
  319. }
  320. peekSpaces(scnr);
  321. const ret = isIdentifierStart(scnr.currentPeek());
  322. scnr.resetPeek();
  323. return ret;
  324. }
  325. function isLinkedDelimiterStart(scnr, context) {
  326. const { currentType } = context;
  327. if (!(currentType === 8 /* TokenTypes.LinkedAlias */ ||
  328. currentType === 12 /* TokenTypes.LinkedModifier */)) {
  329. return false;
  330. }
  331. peekSpaces(scnr);
  332. const ret = scnr.currentPeek() === ":" /* TokenChars.LinkedDelimiter */;
  333. scnr.resetPeek();
  334. return ret;
  335. }
  336. function isLinkedReferStart(scnr, context) {
  337. const { currentType } = context;
  338. if (currentType !== 10 /* TokenTypes.LinkedDelimiter */) {
  339. return false;
  340. }
  341. const fn = () => {
  342. const ch = scnr.currentPeek();
  343. if (ch === "{" /* TokenChars.BraceLeft */) {
  344. return isIdentifierStart(scnr.peek());
  345. }
  346. else if (ch === "@" /* TokenChars.LinkedAlias */ ||
  347. ch === "%" /* TokenChars.Modulo */ ||
  348. ch === "|" /* TokenChars.Pipe */ ||
  349. ch === ":" /* TokenChars.LinkedDelimiter */ ||
  350. ch === "." /* TokenChars.LinkedDot */ ||
  351. ch === CHAR_SP ||
  352. !ch) {
  353. return false;
  354. }
  355. else if (ch === CHAR_LF) {
  356. scnr.peek();
  357. return fn();
  358. }
  359. else {
  360. // other characters
  361. return isTextStart(scnr, false);
  362. }
  363. };
  364. const ret = fn();
  365. scnr.resetPeek();
  366. return ret;
  367. }
  368. function isPluralStart(scnr) {
  369. peekSpaces(scnr);
  370. const ret = scnr.currentPeek() === "|" /* TokenChars.Pipe */;
  371. scnr.resetPeek();
  372. return ret;
  373. }
  374. function detectModuloStart(scnr) {
  375. const spaces = peekSpaces(scnr);
  376. const ret = scnr.currentPeek() === "%" /* TokenChars.Modulo */ &&
  377. scnr.peek() === "{" /* TokenChars.BraceLeft */;
  378. scnr.resetPeek();
  379. return {
  380. isModulo: ret,
  381. hasSpace: spaces.length > 0
  382. };
  383. }
  384. function isTextStart(scnr, reset = true) {
  385. const fn = (hasSpace = false, prev = '', detectModulo = false) => {
  386. const ch = scnr.currentPeek();
  387. if (ch === "{" /* TokenChars.BraceLeft */) {
  388. return prev === "%" /* TokenChars.Modulo */ ? false : hasSpace;
  389. }
  390. else if (ch === "@" /* TokenChars.LinkedAlias */ || !ch) {
  391. return prev === "%" /* TokenChars.Modulo */ ? true : hasSpace;
  392. }
  393. else if (ch === "%" /* TokenChars.Modulo */) {
  394. scnr.peek();
  395. return fn(hasSpace, "%" /* TokenChars.Modulo */, true);
  396. }
  397. else if (ch === "|" /* TokenChars.Pipe */) {
  398. return prev === "%" /* TokenChars.Modulo */ || detectModulo
  399. ? true
  400. : !(prev === CHAR_SP || prev === CHAR_LF);
  401. }
  402. else if (ch === CHAR_SP) {
  403. scnr.peek();
  404. return fn(true, CHAR_SP, detectModulo);
  405. }
  406. else if (ch === CHAR_LF) {
  407. scnr.peek();
  408. return fn(true, CHAR_LF, detectModulo);
  409. }
  410. else {
  411. return true;
  412. }
  413. };
  414. const ret = fn();
  415. reset && scnr.resetPeek();
  416. return ret;
  417. }
  418. function takeChar(scnr, fn) {
  419. const ch = scnr.currentChar();
  420. if (ch === EOF) {
  421. return EOF;
  422. }
  423. if (fn(ch)) {
  424. scnr.next();
  425. return ch;
  426. }
  427. return null;
  428. }
  429. function isIdentifier(ch) {
  430. const cc = ch.charCodeAt(0);
  431. return ((cc >= 97 && cc <= 122) || // a-z
  432. (cc >= 65 && cc <= 90) || // A-Z
  433. (cc >= 48 && cc <= 57) || // 0-9
  434. cc === 95 || // _
  435. cc === 36 // $
  436. );
  437. }
  438. function takeIdentifierChar(scnr) {
  439. return takeChar(scnr, isIdentifier);
  440. }
  441. function isNamedIdentifier(ch) {
  442. const cc = ch.charCodeAt(0);
  443. return ((cc >= 97 && cc <= 122) || // a-z
  444. (cc >= 65 && cc <= 90) || // A-Z
  445. (cc >= 48 && cc <= 57) || // 0-9
  446. cc === 95 || // _
  447. cc === 36 || // $
  448. cc === 45 // -
  449. );
  450. }
  451. function takeNamedIdentifierChar(scnr) {
  452. return takeChar(scnr, isNamedIdentifier);
  453. }
  454. function isDigit(ch) {
  455. const cc = ch.charCodeAt(0);
  456. return cc >= 48 && cc <= 57; // 0-9
  457. }
  458. function takeDigit(scnr) {
  459. return takeChar(scnr, isDigit);
  460. }
  461. function isHexDigit(ch) {
  462. const cc = ch.charCodeAt(0);
  463. return ((cc >= 48 && cc <= 57) || // 0-9
  464. (cc >= 65 && cc <= 70) || // A-F
  465. (cc >= 97 && cc <= 102)); // a-f
  466. }
  467. function takeHexDigit(scnr) {
  468. return takeChar(scnr, isHexDigit);
  469. }
  470. function getDigits(scnr) {
  471. let ch = '';
  472. let num = '';
  473. while ((ch = takeDigit(scnr))) {
  474. num += ch;
  475. }
  476. return num;
  477. }
  478. function readModulo(scnr) {
  479. skipSpaces(scnr);
  480. const ch = scnr.currentChar();
  481. if (ch !== "%" /* TokenChars.Modulo */) {
  482. emitError(CompileErrorCodes.EXPECTED_TOKEN, currentPosition(), 0, ch);
  483. }
  484. scnr.next();
  485. return "%" /* TokenChars.Modulo */;
  486. }
  487. function readText(scnr) {
  488. let buf = '';
  489. // eslint-disable-next-line no-constant-condition
  490. while (true) {
  491. const ch = scnr.currentChar();
  492. if (ch === "{" /* TokenChars.BraceLeft */ ||
  493. ch === "}" /* TokenChars.BraceRight */ ||
  494. ch === "@" /* TokenChars.LinkedAlias */ ||
  495. ch === "|" /* TokenChars.Pipe */ ||
  496. !ch) {
  497. break;
  498. }
  499. else if (ch === "%" /* TokenChars.Modulo */) {
  500. if (isTextStart(scnr)) {
  501. buf += ch;
  502. scnr.next();
  503. }
  504. else {
  505. break;
  506. }
  507. }
  508. else if (ch === CHAR_SP || ch === CHAR_LF) {
  509. if (isTextStart(scnr)) {
  510. buf += ch;
  511. scnr.next();
  512. }
  513. else if (isPluralStart(scnr)) {
  514. break;
  515. }
  516. else {
  517. buf += ch;
  518. scnr.next();
  519. }
  520. }
  521. else {
  522. buf += ch;
  523. scnr.next();
  524. }
  525. }
  526. return buf;
  527. }
  528. function readNamedIdentifier(scnr) {
  529. skipSpaces(scnr);
  530. let ch = '';
  531. let name = '';
  532. while ((ch = takeNamedIdentifierChar(scnr))) {
  533. name += ch;
  534. }
  535. if (scnr.currentChar() === EOF) {
  536. emitError(CompileErrorCodes.UNTERMINATED_CLOSING_BRACE, currentPosition(), 0);
  537. }
  538. return name;
  539. }
  540. function readListIdentifier(scnr) {
  541. skipSpaces(scnr);
  542. let value = '';
  543. if (scnr.currentChar() === '-') {
  544. scnr.next();
  545. value += `-${getDigits(scnr)}`;
  546. }
  547. else {
  548. value += getDigits(scnr);
  549. }
  550. if (scnr.currentChar() === EOF) {
  551. emitError(CompileErrorCodes.UNTERMINATED_CLOSING_BRACE, currentPosition(), 0);
  552. }
  553. return value;
  554. }
  555. function isLiteral(ch) {
  556. return ch !== LITERAL_DELIMITER && ch !== CHAR_LF;
  557. }
  558. function readLiteral(scnr) {
  559. skipSpaces(scnr);
  560. // eslint-disable-next-line no-useless-escape
  561. eat(scnr, `\'`);
  562. let ch = '';
  563. let literal = '';
  564. while ((ch = takeChar(scnr, isLiteral))) {
  565. if (ch === '\\') {
  566. literal += readEscapeSequence(scnr);
  567. }
  568. else {
  569. literal += ch;
  570. }
  571. }
  572. const current = scnr.currentChar();
  573. if (current === CHAR_LF || current === EOF) {
  574. emitError(CompileErrorCodes.UNTERMINATED_SINGLE_QUOTE_IN_PLACEHOLDER, currentPosition(), 0);
  575. // TODO: Is it correct really?
  576. if (current === CHAR_LF) {
  577. scnr.next();
  578. // eslint-disable-next-line no-useless-escape
  579. eat(scnr, `\'`);
  580. }
  581. return literal;
  582. }
  583. // eslint-disable-next-line no-useless-escape
  584. eat(scnr, `\'`);
  585. return literal;
  586. }
  587. function readEscapeSequence(scnr) {
  588. const ch = scnr.currentChar();
  589. switch (ch) {
  590. case '\\':
  591. case `\'`: // eslint-disable-line no-useless-escape
  592. scnr.next();
  593. return `\\${ch}`;
  594. case 'u':
  595. return readUnicodeEscapeSequence(scnr, ch, 4);
  596. case 'U':
  597. return readUnicodeEscapeSequence(scnr, ch, 6);
  598. default:
  599. emitError(CompileErrorCodes.UNKNOWN_ESCAPE_SEQUENCE, currentPosition(), 0, ch);
  600. return '';
  601. }
  602. }
  603. function readUnicodeEscapeSequence(scnr, unicode, digits) {
  604. eat(scnr, unicode);
  605. let sequence = '';
  606. for (let i = 0; i < digits; i++) {
  607. const ch = takeHexDigit(scnr);
  608. if (!ch) {
  609. emitError(CompileErrorCodes.INVALID_UNICODE_ESCAPE_SEQUENCE, currentPosition(), 0, `\\${unicode}${sequence}${scnr.currentChar()}`);
  610. break;
  611. }
  612. sequence += ch;
  613. }
  614. return `\\${unicode}${sequence}`;
  615. }
  616. function isInvalidIdentifier(ch) {
  617. return (ch !== "{" /* TokenChars.BraceLeft */ &&
  618. ch !== "}" /* TokenChars.BraceRight */ &&
  619. ch !== CHAR_SP &&
  620. ch !== CHAR_LF);
  621. }
  622. function readInvalidIdentifier(scnr) {
  623. skipSpaces(scnr);
  624. let ch = '';
  625. let identifiers = '';
  626. while ((ch = takeChar(scnr, isInvalidIdentifier))) {
  627. identifiers += ch;
  628. }
  629. return identifiers;
  630. }
  631. function readLinkedModifier(scnr) {
  632. let ch = '';
  633. let name = '';
  634. while ((ch = takeIdentifierChar(scnr))) {
  635. name += ch;
  636. }
  637. return name;
  638. }
  639. function readLinkedRefer(scnr) {
  640. const fn = (buf) => {
  641. const ch = scnr.currentChar();
  642. if (ch === "{" /* TokenChars.BraceLeft */ ||
  643. ch === "%" /* TokenChars.Modulo */ ||
  644. ch === "@" /* TokenChars.LinkedAlias */ ||
  645. ch === "|" /* TokenChars.Pipe */ ||
  646. ch === "(" /* TokenChars.ParenLeft */ ||
  647. ch === ")" /* TokenChars.ParenRight */ ||
  648. !ch) {
  649. return buf;
  650. }
  651. else if (ch === CHAR_SP) {
  652. return buf;
  653. }
  654. else if (ch === CHAR_LF || ch === DOT) {
  655. buf += ch;
  656. scnr.next();
  657. return fn(buf);
  658. }
  659. else {
  660. buf += ch;
  661. scnr.next();
  662. return fn(buf);
  663. }
  664. };
  665. return fn('');
  666. }
  667. function readPlural(scnr) {
  668. skipSpaces(scnr);
  669. const plural = eat(scnr, "|" /* TokenChars.Pipe */);
  670. skipSpaces(scnr);
  671. return plural;
  672. }
  673. // TODO: We need refactoring of token parsing ...
  674. function readTokenInPlaceholder(scnr, context) {
  675. let token = null;
  676. const ch = scnr.currentChar();
  677. switch (ch) {
  678. case "{" /* TokenChars.BraceLeft */:
  679. if (context.braceNest >= 1) {
  680. emitError(CompileErrorCodes.NOT_ALLOW_NEST_PLACEHOLDER, currentPosition(), 0);
  681. }
  682. scnr.next();
  683. token = getToken(context, 2 /* TokenTypes.BraceLeft */, "{" /* TokenChars.BraceLeft */);
  684. skipSpaces(scnr);
  685. context.braceNest++;
  686. return token;
  687. case "}" /* TokenChars.BraceRight */:
  688. if (context.braceNest > 0 &&
  689. context.currentType === 2 /* TokenTypes.BraceLeft */) {
  690. emitError(CompileErrorCodes.EMPTY_PLACEHOLDER, currentPosition(), 0);
  691. }
  692. scnr.next();
  693. token = getToken(context, 3 /* TokenTypes.BraceRight */, "}" /* TokenChars.BraceRight */);
  694. context.braceNest--;
  695. context.braceNest > 0 && skipSpaces(scnr);
  696. if (context.inLinked && context.braceNest === 0) {
  697. context.inLinked = false;
  698. }
  699. return token;
  700. case "@" /* TokenChars.LinkedAlias */:
  701. if (context.braceNest > 0) {
  702. emitError(CompileErrorCodes.UNTERMINATED_CLOSING_BRACE, currentPosition(), 0);
  703. }
  704. token = readTokenInLinked(scnr, context) || getEndToken(context);
  705. context.braceNest = 0;
  706. return token;
  707. default: {
  708. let validNamedIdentifier = true;
  709. let validListIdentifier = true;
  710. let validLiteral = true;
  711. if (isPluralStart(scnr)) {
  712. if (context.braceNest > 0) {
  713. emitError(CompileErrorCodes.UNTERMINATED_CLOSING_BRACE, currentPosition(), 0);
  714. }
  715. token = getToken(context, 1 /* TokenTypes.Pipe */, readPlural(scnr));
  716. // reset
  717. context.braceNest = 0;
  718. context.inLinked = false;
  719. return token;
  720. }
  721. if (context.braceNest > 0 &&
  722. (context.currentType === 5 /* TokenTypes.Named */ ||
  723. context.currentType === 6 /* TokenTypes.List */ ||
  724. context.currentType === 7 /* TokenTypes.Literal */)) {
  725. emitError(CompileErrorCodes.UNTERMINATED_CLOSING_BRACE, currentPosition(), 0);
  726. context.braceNest = 0;
  727. return readToken(scnr, context);
  728. }
  729. if ((validNamedIdentifier = isNamedIdentifierStart(scnr, context))) {
  730. token = getToken(context, 5 /* TokenTypes.Named */, readNamedIdentifier(scnr));
  731. skipSpaces(scnr);
  732. return token;
  733. }
  734. if ((validListIdentifier = isListIdentifierStart(scnr, context))) {
  735. token = getToken(context, 6 /* TokenTypes.List */, readListIdentifier(scnr));
  736. skipSpaces(scnr);
  737. return token;
  738. }
  739. if ((validLiteral = isLiteralStart(scnr, context))) {
  740. token = getToken(context, 7 /* TokenTypes.Literal */, readLiteral(scnr));
  741. skipSpaces(scnr);
  742. return token;
  743. }
  744. if (!validNamedIdentifier && !validListIdentifier && !validLiteral) {
  745. // TODO: we should be re-designed invalid cases, when we will extend message syntax near the future ...
  746. token = getToken(context, 13 /* TokenTypes.InvalidPlace */, readInvalidIdentifier(scnr));
  747. emitError(CompileErrorCodes.INVALID_TOKEN_IN_PLACEHOLDER, currentPosition(), 0, token.value);
  748. skipSpaces(scnr);
  749. return token;
  750. }
  751. break;
  752. }
  753. }
  754. return token;
  755. }
  756. // TODO: We need refactoring of token parsing ...
  757. function readTokenInLinked(scnr, context) {
  758. const { currentType } = context;
  759. let token = null;
  760. const ch = scnr.currentChar();
  761. if ((currentType === 8 /* TokenTypes.LinkedAlias */ ||
  762. currentType === 9 /* TokenTypes.LinkedDot */ ||
  763. currentType === 12 /* TokenTypes.LinkedModifier */ ||
  764. currentType === 10 /* TokenTypes.LinkedDelimiter */) &&
  765. (ch === CHAR_LF || ch === CHAR_SP)) {
  766. emitError(CompileErrorCodes.INVALID_LINKED_FORMAT, currentPosition(), 0);
  767. }
  768. switch (ch) {
  769. case "@" /* TokenChars.LinkedAlias */:
  770. scnr.next();
  771. token = getToken(context, 8 /* TokenTypes.LinkedAlias */, "@" /* TokenChars.LinkedAlias */);
  772. context.inLinked = true;
  773. return token;
  774. case "." /* TokenChars.LinkedDot */:
  775. skipSpaces(scnr);
  776. scnr.next();
  777. return getToken(context, 9 /* TokenTypes.LinkedDot */, "." /* TokenChars.LinkedDot */);
  778. case ":" /* TokenChars.LinkedDelimiter */:
  779. skipSpaces(scnr);
  780. scnr.next();
  781. return getToken(context, 10 /* TokenTypes.LinkedDelimiter */, ":" /* TokenChars.LinkedDelimiter */);
  782. default:
  783. if (isPluralStart(scnr)) {
  784. token = getToken(context, 1 /* TokenTypes.Pipe */, readPlural(scnr));
  785. // reset
  786. context.braceNest = 0;
  787. context.inLinked = false;
  788. return token;
  789. }
  790. if (isLinkedDotStart(scnr, context) ||
  791. isLinkedDelimiterStart(scnr, context)) {
  792. skipSpaces(scnr);
  793. return readTokenInLinked(scnr, context);
  794. }
  795. if (isLinkedModifierStart(scnr, context)) {
  796. skipSpaces(scnr);
  797. return getToken(context, 12 /* TokenTypes.LinkedModifier */, readLinkedModifier(scnr));
  798. }
  799. if (isLinkedReferStart(scnr, context)) {
  800. skipSpaces(scnr);
  801. if (ch === "{" /* TokenChars.BraceLeft */) {
  802. // scan the placeholder
  803. return readTokenInPlaceholder(scnr, context) || token;
  804. }
  805. else {
  806. return getToken(context, 11 /* TokenTypes.LinkedKey */, readLinkedRefer(scnr));
  807. }
  808. }
  809. if (currentType === 8 /* TokenTypes.LinkedAlias */) {
  810. emitError(CompileErrorCodes.INVALID_LINKED_FORMAT, currentPosition(), 0);
  811. }
  812. context.braceNest = 0;
  813. context.inLinked = false;
  814. return readToken(scnr, context);
  815. }
  816. }
  817. // TODO: We need refactoring of token parsing ...
  818. function readToken(scnr, context) {
  819. let token = { type: 14 /* TokenTypes.EOF */ };
  820. if (context.braceNest > 0) {
  821. return readTokenInPlaceholder(scnr, context) || getEndToken(context);
  822. }
  823. if (context.inLinked) {
  824. return readTokenInLinked(scnr, context) || getEndToken(context);
  825. }
  826. const ch = scnr.currentChar();
  827. switch (ch) {
  828. case "{" /* TokenChars.BraceLeft */:
  829. return readTokenInPlaceholder(scnr, context) || getEndToken(context);
  830. case "}" /* TokenChars.BraceRight */:
  831. emitError(CompileErrorCodes.UNBALANCED_CLOSING_BRACE, currentPosition(), 0);
  832. scnr.next();
  833. return getToken(context, 3 /* TokenTypes.BraceRight */, "}" /* TokenChars.BraceRight */);
  834. case "@" /* TokenChars.LinkedAlias */:
  835. return readTokenInLinked(scnr, context) || getEndToken(context);
  836. default: {
  837. if (isPluralStart(scnr)) {
  838. token = getToken(context, 1 /* TokenTypes.Pipe */, readPlural(scnr));
  839. // reset
  840. context.braceNest = 0;
  841. context.inLinked = false;
  842. return token;
  843. }
  844. const { isModulo, hasSpace } = detectModuloStart(scnr);
  845. if (isModulo) {
  846. return hasSpace
  847. ? getToken(context, 0 /* TokenTypes.Text */, readText(scnr))
  848. : getToken(context, 4 /* TokenTypes.Modulo */, readModulo(scnr));
  849. }
  850. if (isTextStart(scnr)) {
  851. return getToken(context, 0 /* TokenTypes.Text */, readText(scnr));
  852. }
  853. break;
  854. }
  855. }
  856. return token;
  857. }
  858. function nextToken() {
  859. const { currentType, offset, startLoc, endLoc } = _context;
  860. _context.lastType = currentType;
  861. _context.lastOffset = offset;
  862. _context.lastStartLoc = startLoc;
  863. _context.lastEndLoc = endLoc;
  864. _context.offset = currentOffset();
  865. _context.startLoc = currentPosition();
  866. if (_scnr.currentChar() === EOF) {
  867. return getToken(_context, 14 /* TokenTypes.EOF */);
  868. }
  869. return readToken(_scnr, _context);
  870. }
  871. return {
  872. nextToken,
  873. currentOffset,
  874. currentPosition,
  875. context
  876. };
  877. }
  878. const ERROR_DOMAIN$2 = 'parser';
  879. // Backslash backslash, backslash quote, uHHHH, UHHHHHH.
  880. const KNOWN_ESCAPES = /(?:\\\\|\\'|\\u([0-9a-fA-F]{4})|\\U([0-9a-fA-F]{6}))/g;
  881. function fromEscapeSequence(match, codePoint4, codePoint6) {
  882. switch (match) {
  883. case `\\\\`:
  884. return `\\`;
  885. // eslint-disable-next-line no-useless-escape
  886. case `\\\'`:
  887. // eslint-disable-next-line no-useless-escape
  888. return `\'`;
  889. default: {
  890. const codePoint = parseInt(codePoint4 || codePoint6, 16);
  891. if (codePoint <= 0xd7ff || codePoint >= 0xe000) {
  892. return String.fromCodePoint(codePoint);
  893. }
  894. // invalid ...
  895. // Replace them with U+FFFD REPLACEMENT CHARACTER.
  896. return '�';
  897. }
  898. }
  899. }
  900. function createParser(options = {}) {
  901. const location = options.location !== false;
  902. const { onError, onWarn } = options;
  903. function emitError(tokenzer, code, start, offset, ...args) {
  904. const end = tokenzer.currentPosition();
  905. end.offset += offset;
  906. end.column += offset;
  907. if (onError) {
  908. const loc = location ? createLocation(start, end) : null;
  909. const err = createCompileError(code, loc, {
  910. domain: ERROR_DOMAIN$2,
  911. args
  912. });
  913. onError(err);
  914. }
  915. }
  916. function emitWarn(tokenzer, code, start, offset, ...args) {
  917. const end = tokenzer.currentPosition();
  918. end.offset += offset;
  919. end.column += offset;
  920. if (onWarn) {
  921. const loc = location ? createLocation(start, end) : null;
  922. onWarn(createCompileWarn(code, loc, args));
  923. }
  924. }
  925. function startNode(type, offset, loc) {
  926. const node = { type };
  927. if (location) {
  928. node.start = offset;
  929. node.end = offset;
  930. node.loc = { start: loc, end: loc };
  931. }
  932. return node;
  933. }
  934. function endNode(node, offset, pos, type) {
  935. if (type) {
  936. node.type = type;
  937. }
  938. if (location) {
  939. node.end = offset;
  940. if (node.loc) {
  941. node.loc.end = pos;
  942. }
  943. }
  944. }
  945. function parseText(tokenizer, value) {
  946. const context = tokenizer.context();
  947. const node = startNode(3 /* NodeTypes.Text */, context.offset, context.startLoc);
  948. node.value = value;
  949. endNode(node, tokenizer.currentOffset(), tokenizer.currentPosition());
  950. return node;
  951. }
  952. function parseList(tokenizer, index) {
  953. const context = tokenizer.context();
  954. const { lastOffset: offset, lastStartLoc: loc } = context; // get brace left loc
  955. const node = startNode(5 /* NodeTypes.List */, offset, loc);
  956. node.index = parseInt(index, 10);
  957. tokenizer.nextToken(); // skip brach right
  958. endNode(node, tokenizer.currentOffset(), tokenizer.currentPosition());
  959. return node;
  960. }
  961. function parseNamed(tokenizer, key, modulo) {
  962. const context = tokenizer.context();
  963. const { lastOffset: offset, lastStartLoc: loc } = context; // get brace left loc
  964. const node = startNode(4 /* NodeTypes.Named */, offset, loc);
  965. node.key = key;
  966. if (modulo === true) {
  967. node.modulo = true;
  968. }
  969. tokenizer.nextToken(); // skip brach right
  970. endNode(node, tokenizer.currentOffset(), tokenizer.currentPosition());
  971. return node;
  972. }
  973. function parseLiteral(tokenizer, value) {
  974. const context = tokenizer.context();
  975. const { lastOffset: offset, lastStartLoc: loc } = context; // get brace left loc
  976. const node = startNode(9 /* NodeTypes.Literal */, offset, loc);
  977. node.value = value.replace(KNOWN_ESCAPES, fromEscapeSequence);
  978. tokenizer.nextToken(); // skip brach right
  979. endNode(node, tokenizer.currentOffset(), tokenizer.currentPosition());
  980. return node;
  981. }
  982. function parseLinkedModifier(tokenizer) {
  983. const token = tokenizer.nextToken();
  984. const context = tokenizer.context();
  985. const { lastOffset: offset, lastStartLoc: loc } = context; // get linked dot loc
  986. const node = startNode(8 /* NodeTypes.LinkedModifier */, offset, loc);
  987. if (token.type !== 12 /* TokenTypes.LinkedModifier */) {
  988. // empty modifier
  989. emitError(tokenizer, CompileErrorCodes.UNEXPECTED_EMPTY_LINKED_MODIFIER, context.lastStartLoc, 0);
  990. node.value = '';
  991. endNode(node, offset, loc);
  992. return {
  993. nextConsumeToken: token,
  994. node
  995. };
  996. }
  997. // check token
  998. if (token.value == null) {
  999. emitError(tokenizer, CompileErrorCodes.UNEXPECTED_LEXICAL_ANALYSIS, context.lastStartLoc, 0, getTokenCaption(token));
  1000. }
  1001. node.value = token.value || '';
  1002. endNode(node, tokenizer.currentOffset(), tokenizer.currentPosition());
  1003. return {
  1004. node
  1005. };
  1006. }
  1007. function parseLinkedKey(tokenizer, value) {
  1008. const context = tokenizer.context();
  1009. const node = startNode(7 /* NodeTypes.LinkedKey */, context.offset, context.startLoc);
  1010. node.value = value;
  1011. endNode(node, tokenizer.currentOffset(), tokenizer.currentPosition());
  1012. return node;
  1013. }
  1014. function parseLinked(tokenizer) {
  1015. const context = tokenizer.context();
  1016. const linkedNode = startNode(6 /* NodeTypes.Linked */, context.offset, context.startLoc);
  1017. let token = tokenizer.nextToken();
  1018. if (token.type === 9 /* TokenTypes.LinkedDot */) {
  1019. const parsed = parseLinkedModifier(tokenizer);
  1020. linkedNode.modifier = parsed.node;
  1021. token = parsed.nextConsumeToken || tokenizer.nextToken();
  1022. }
  1023. // asset check token
  1024. if (token.type !== 10 /* TokenTypes.LinkedDelimiter */) {
  1025. emitError(tokenizer, CompileErrorCodes.UNEXPECTED_LEXICAL_ANALYSIS, context.lastStartLoc, 0, getTokenCaption(token));
  1026. }
  1027. token = tokenizer.nextToken();
  1028. // skip brace left
  1029. if (token.type === 2 /* TokenTypes.BraceLeft */) {
  1030. token = tokenizer.nextToken();
  1031. }
  1032. switch (token.type) {
  1033. case 11 /* TokenTypes.LinkedKey */:
  1034. if (token.value == null) {
  1035. emitError(tokenizer, CompileErrorCodes.UNEXPECTED_LEXICAL_ANALYSIS, context.lastStartLoc, 0, getTokenCaption(token));
  1036. }
  1037. linkedNode.key = parseLinkedKey(tokenizer, token.value || '');
  1038. break;
  1039. case 5 /* TokenTypes.Named */:
  1040. if (token.value == null) {
  1041. emitError(tokenizer, CompileErrorCodes.UNEXPECTED_LEXICAL_ANALYSIS, context.lastStartLoc, 0, getTokenCaption(token));
  1042. }
  1043. linkedNode.key = parseNamed(tokenizer, token.value || '');
  1044. break;
  1045. case 6 /* TokenTypes.List */:
  1046. if (token.value == null) {
  1047. emitError(tokenizer, CompileErrorCodes.UNEXPECTED_LEXICAL_ANALYSIS, context.lastStartLoc, 0, getTokenCaption(token));
  1048. }
  1049. linkedNode.key = parseList(tokenizer, token.value || '');
  1050. break;
  1051. case 7 /* TokenTypes.Literal */:
  1052. if (token.value == null) {
  1053. emitError(tokenizer, CompileErrorCodes.UNEXPECTED_LEXICAL_ANALYSIS, context.lastStartLoc, 0, getTokenCaption(token));
  1054. }
  1055. linkedNode.key = parseLiteral(tokenizer, token.value || '');
  1056. break;
  1057. default: {
  1058. // empty key
  1059. emitError(tokenizer, CompileErrorCodes.UNEXPECTED_EMPTY_LINKED_KEY, context.lastStartLoc, 0);
  1060. const nextContext = tokenizer.context();
  1061. const emptyLinkedKeyNode = startNode(7 /* NodeTypes.LinkedKey */, nextContext.offset, nextContext.startLoc);
  1062. emptyLinkedKeyNode.value = '';
  1063. endNode(emptyLinkedKeyNode, nextContext.offset, nextContext.startLoc);
  1064. linkedNode.key = emptyLinkedKeyNode;
  1065. endNode(linkedNode, nextContext.offset, nextContext.startLoc);
  1066. return {
  1067. nextConsumeToken: token,
  1068. node: linkedNode
  1069. };
  1070. }
  1071. }
  1072. endNode(linkedNode, tokenizer.currentOffset(), tokenizer.currentPosition());
  1073. return {
  1074. node: linkedNode
  1075. };
  1076. }
  1077. function parseMessage(tokenizer) {
  1078. const context = tokenizer.context();
  1079. const startOffset = context.currentType === 1 /* TokenTypes.Pipe */
  1080. ? tokenizer.currentOffset()
  1081. : context.offset;
  1082. const startLoc = context.currentType === 1 /* TokenTypes.Pipe */
  1083. ? context.endLoc
  1084. : context.startLoc;
  1085. const node = startNode(2 /* NodeTypes.Message */, startOffset, startLoc);
  1086. node.items = [];
  1087. let nextToken = null;
  1088. let modulo = null;
  1089. do {
  1090. const token = nextToken || tokenizer.nextToken();
  1091. nextToken = null;
  1092. switch (token.type) {
  1093. case 0 /* TokenTypes.Text */:
  1094. if (token.value == null) {
  1095. emitError(tokenizer, CompileErrorCodes.UNEXPECTED_LEXICAL_ANALYSIS, context.lastStartLoc, 0, getTokenCaption(token));
  1096. }
  1097. node.items.push(parseText(tokenizer, token.value || ''));
  1098. break;
  1099. case 6 /* TokenTypes.List */:
  1100. if (token.value == null) {
  1101. emitError(tokenizer, CompileErrorCodes.UNEXPECTED_LEXICAL_ANALYSIS, context.lastStartLoc, 0, getTokenCaption(token));
  1102. }
  1103. node.items.push(parseList(tokenizer, token.value || ''));
  1104. break;
  1105. case 4 /* TokenTypes.Modulo */:
  1106. modulo = true;
  1107. break;
  1108. case 5 /* TokenTypes.Named */:
  1109. if (token.value == null) {
  1110. emitError(tokenizer, CompileErrorCodes.UNEXPECTED_LEXICAL_ANALYSIS, context.lastStartLoc, 0, getTokenCaption(token));
  1111. }
  1112. node.items.push(parseNamed(tokenizer, token.value || '', !!modulo));
  1113. if (modulo) {
  1114. emitWarn(tokenizer, CompileWarnCodes.USE_MODULO_SYNTAX, context.lastStartLoc, 0, getTokenCaption(token));
  1115. modulo = null;
  1116. }
  1117. break;
  1118. case 7 /* TokenTypes.Literal */:
  1119. if (token.value == null) {
  1120. emitError(tokenizer, CompileErrorCodes.UNEXPECTED_LEXICAL_ANALYSIS, context.lastStartLoc, 0, getTokenCaption(token));
  1121. }
  1122. node.items.push(parseLiteral(tokenizer, token.value || ''));
  1123. break;
  1124. case 8 /* TokenTypes.LinkedAlias */: {
  1125. const parsed = parseLinked(tokenizer);
  1126. node.items.push(parsed.node);
  1127. nextToken = parsed.nextConsumeToken || null;
  1128. break;
  1129. }
  1130. }
  1131. } while (context.currentType !== 14 /* TokenTypes.EOF */ &&
  1132. context.currentType !== 1 /* TokenTypes.Pipe */);
  1133. // adjust message node loc
  1134. const endOffset = context.currentType === 1 /* TokenTypes.Pipe */
  1135. ? context.lastOffset
  1136. : tokenizer.currentOffset();
  1137. const endLoc = context.currentType === 1 /* TokenTypes.Pipe */
  1138. ? context.lastEndLoc
  1139. : tokenizer.currentPosition();
  1140. endNode(node, endOffset, endLoc);
  1141. return node;
  1142. }
  1143. function parsePlural(tokenizer, offset, loc, msgNode) {
  1144. const context = tokenizer.context();
  1145. let hasEmptyMessage = msgNode.items.length === 0;
  1146. const node = startNode(1 /* NodeTypes.Plural */, offset, loc);
  1147. node.cases = [];
  1148. node.cases.push(msgNode);
  1149. do {
  1150. const msg = parseMessage(tokenizer);
  1151. if (!hasEmptyMessage) {
  1152. hasEmptyMessage = msg.items.length === 0;
  1153. }
  1154. node.cases.push(msg);
  1155. } while (context.currentType !== 14 /* TokenTypes.EOF */);
  1156. if (hasEmptyMessage) {
  1157. emitError(tokenizer, CompileErrorCodes.MUST_HAVE_MESSAGES_IN_PLURAL, loc, 0);
  1158. }
  1159. endNode(node, tokenizer.currentOffset(), tokenizer.currentPosition());
  1160. return node;
  1161. }
  1162. function parseResource(tokenizer) {
  1163. const context = tokenizer.context();
  1164. const { offset, startLoc } = context;
  1165. const msgNode = parseMessage(tokenizer);
  1166. if (context.currentType === 14 /* TokenTypes.EOF */) {
  1167. return msgNode;
  1168. }
  1169. else {
  1170. return parsePlural(tokenizer, offset, startLoc, msgNode);
  1171. }
  1172. }
  1173. function parse(source) {
  1174. const tokenizer = createTokenizer(source, assign({}, options));
  1175. const context = tokenizer.context();
  1176. const node = startNode(0 /* NodeTypes.Resource */, context.offset, context.startLoc);
  1177. if (location && node.loc) {
  1178. node.loc.source = source;
  1179. }
  1180. node.body = parseResource(tokenizer);
  1181. if (options.onCacheKey) {
  1182. node.cacheKey = options.onCacheKey(source);
  1183. }
  1184. // assert whether achieved to EOF
  1185. if (context.currentType !== 14 /* TokenTypes.EOF */) {
  1186. emitError(tokenizer, CompileErrorCodes.UNEXPECTED_LEXICAL_ANALYSIS, context.lastStartLoc, 0, source[context.offset] || '');
  1187. }
  1188. endNode(node, tokenizer.currentOffset(), tokenizer.currentPosition());
  1189. return node;
  1190. }
  1191. return { parse };
  1192. }
  1193. function getTokenCaption(token) {
  1194. if (token.type === 14 /* TokenTypes.EOF */) {
  1195. return 'EOF';
  1196. }
  1197. const name = (token.value || '').replace(/\r?\n/gu, '\\n');
  1198. return name.length > 10 ? name.slice(0, 9) + '…' : name;
  1199. }
  1200. function createTransformer(ast, options = {} // eslint-disable-line
  1201. ) {
  1202. const _context = {
  1203. ast,
  1204. helpers: new Set()
  1205. };
  1206. const context = () => _context;
  1207. const helper = (name) => {
  1208. _context.helpers.add(name);
  1209. return name;
  1210. };
  1211. return { context, helper };
  1212. }
  1213. function traverseNodes(nodes, transformer) {
  1214. for (let i = 0; i < nodes.length; i++) {
  1215. traverseNode(nodes[i], transformer);
  1216. }
  1217. }
  1218. function traverseNode(node, transformer) {
  1219. // TODO: if we need pre-hook of transform, should be implemented to here
  1220. switch (node.type) {
  1221. case 1 /* NodeTypes.Plural */:
  1222. traverseNodes(node.cases, transformer);
  1223. transformer.helper("plural" /* HelperNameMap.PLURAL */);
  1224. break;
  1225. case 2 /* NodeTypes.Message */:
  1226. traverseNodes(node.items, transformer);
  1227. break;
  1228. case 6 /* NodeTypes.Linked */: {
  1229. const linked = node;
  1230. traverseNode(linked.key, transformer);
  1231. transformer.helper("linked" /* HelperNameMap.LINKED */);
  1232. transformer.helper("type" /* HelperNameMap.TYPE */);
  1233. break;
  1234. }
  1235. case 5 /* NodeTypes.List */:
  1236. transformer.helper("interpolate" /* HelperNameMap.INTERPOLATE */);
  1237. transformer.helper("list" /* HelperNameMap.LIST */);
  1238. break;
  1239. case 4 /* NodeTypes.Named */:
  1240. transformer.helper("interpolate" /* HelperNameMap.INTERPOLATE */);
  1241. transformer.helper("named" /* HelperNameMap.NAMED */);
  1242. break;
  1243. }
  1244. // TODO: if we need post-hook of transform, should be implemented to here
  1245. }
  1246. // transform AST
  1247. function transform(ast, options = {} // eslint-disable-line
  1248. ) {
  1249. const transformer = createTransformer(ast);
  1250. transformer.helper("normalize" /* HelperNameMap.NORMALIZE */);
  1251. // traverse
  1252. ast.body && traverseNode(ast.body, transformer);
  1253. // set meta information
  1254. const context = transformer.context();
  1255. ast.helpers = Array.from(context.helpers);
  1256. }
  1257. function optimize(ast) {
  1258. const body = ast.body;
  1259. if (body.type === 2 /* NodeTypes.Message */) {
  1260. optimizeMessageNode(body);
  1261. }
  1262. else {
  1263. body.cases.forEach(c => optimizeMessageNode(c));
  1264. }
  1265. return ast;
  1266. }
  1267. function optimizeMessageNode(message) {
  1268. if (message.items.length === 1) {
  1269. const item = message.items[0];
  1270. if (item.type === 3 /* NodeTypes.Text */ || item.type === 9 /* NodeTypes.Literal */) {
  1271. message.static = item.value;
  1272. delete item.value; // optimization for size
  1273. }
  1274. }
  1275. else {
  1276. const values = [];
  1277. for (let i = 0; i < message.items.length; i++) {
  1278. const item = message.items[i];
  1279. if (!(item.type === 3 /* NodeTypes.Text */ || item.type === 9 /* NodeTypes.Literal */)) {
  1280. break;
  1281. }
  1282. if (item.value == null) {
  1283. break;
  1284. }
  1285. values.push(item.value);
  1286. }
  1287. if (values.length === message.items.length) {
  1288. message.static = join(values);
  1289. for (let i = 0; i < message.items.length; i++) {
  1290. const item = message.items[i];
  1291. if (item.type === 3 /* NodeTypes.Text */ || item.type === 9 /* NodeTypes.Literal */) {
  1292. delete item.value; // optimization for size
  1293. }
  1294. }
  1295. }
  1296. }
  1297. }
  1298. const ERROR_DOMAIN$1 = 'minifier';
  1299. /* eslint-disable @typescript-eslint/no-explicit-any */
  1300. function minify(node) {
  1301. node.t = node.type;
  1302. switch (node.type) {
  1303. case 0 /* NodeTypes.Resource */: {
  1304. const resource = node;
  1305. minify(resource.body);
  1306. resource.b = resource.body;
  1307. delete resource.body;
  1308. break;
  1309. }
  1310. case 1 /* NodeTypes.Plural */: {
  1311. const plural = node;
  1312. const cases = plural.cases;
  1313. for (let i = 0; i < cases.length; i++) {
  1314. minify(cases[i]);
  1315. }
  1316. plural.c = cases;
  1317. delete plural.cases;
  1318. break;
  1319. }
  1320. case 2 /* NodeTypes.Message */: {
  1321. const message = node;
  1322. const items = message.items;
  1323. for (let i = 0; i < items.length; i++) {
  1324. minify(items[i]);
  1325. }
  1326. message.i = items;
  1327. delete message.items;
  1328. if (message.static) {
  1329. message.s = message.static;
  1330. delete message.static;
  1331. }
  1332. break;
  1333. }
  1334. case 3 /* NodeTypes.Text */:
  1335. case 9 /* NodeTypes.Literal */:
  1336. case 8 /* NodeTypes.LinkedModifier */:
  1337. case 7 /* NodeTypes.LinkedKey */: {
  1338. const valueNode = node;
  1339. if (valueNode.value) {
  1340. valueNode.v = valueNode.value;
  1341. delete valueNode.value;
  1342. }
  1343. break;
  1344. }
  1345. case 6 /* NodeTypes.Linked */: {
  1346. const linked = node;
  1347. minify(linked.key);
  1348. linked.k = linked.key;
  1349. delete linked.key;
  1350. if (linked.modifier) {
  1351. minify(linked.modifier);
  1352. linked.m = linked.modifier;
  1353. delete linked.modifier;
  1354. }
  1355. break;
  1356. }
  1357. case 5 /* NodeTypes.List */: {
  1358. const list = node;
  1359. list.i = list.index;
  1360. delete list.index;
  1361. break;
  1362. }
  1363. case 4 /* NodeTypes.Named */: {
  1364. const named = node;
  1365. named.k = named.key;
  1366. delete named.key;
  1367. break;
  1368. }
  1369. default:
  1370. if ((process.env.NODE_ENV !== 'production')) {
  1371. throw createCompileError(CompileErrorCodes.UNHANDLED_MINIFIER_NODE_TYPE, null, {
  1372. domain: ERROR_DOMAIN$1,
  1373. args: [node.type]
  1374. });
  1375. }
  1376. }
  1377. delete node.type;
  1378. }
  1379. /* eslint-enable @typescript-eslint/no-explicit-any */
  1380. // eslint-disable-next-line @typescript-eslint/triple-slash-reference
  1381. /// <reference types="source-map-js" />
  1382. const ERROR_DOMAIN = 'parser';
  1383. function createCodeGenerator(ast, options) {
  1384. const { sourceMap, filename, breakLineCode, needIndent: _needIndent } = options;
  1385. const location = options.location !== false;
  1386. const _context = {
  1387. filename,
  1388. code: '',
  1389. column: 1,
  1390. line: 1,
  1391. offset: 0,
  1392. map: undefined,
  1393. breakLineCode,
  1394. needIndent: _needIndent,
  1395. indentLevel: 0
  1396. };
  1397. if (location && ast.loc) {
  1398. _context.source = ast.loc.source;
  1399. }
  1400. const context = () => _context;
  1401. function push(code, node) {
  1402. _context.code += code;
  1403. if (_context.map) {
  1404. if (node && node.loc && node.loc !== LOCATION_STUB) {
  1405. addMapping(node.loc.start, getMappingName(node));
  1406. }
  1407. advancePositionWithSource(_context, code);
  1408. }
  1409. }
  1410. function _newline(n, withBreakLine = true) {
  1411. const _breakLineCode = withBreakLine ? breakLineCode : '';
  1412. push(_needIndent ? _breakLineCode + ` `.repeat(n) : _breakLineCode);
  1413. }
  1414. function indent(withNewLine = true) {
  1415. const level = ++_context.indentLevel;
  1416. withNewLine && _newline(level);
  1417. }
  1418. function deindent(withNewLine = true) {
  1419. const level = --_context.indentLevel;
  1420. withNewLine && _newline(level);
  1421. }
  1422. function newline() {
  1423. _newline(_context.indentLevel);
  1424. }
  1425. const helper = (key) => `_${key}`;
  1426. const needIndent = () => _context.needIndent;
  1427. function addMapping(loc, name) {
  1428. _context.map.addMapping({
  1429. name,
  1430. source: _context.filename,
  1431. original: {
  1432. line: loc.line,
  1433. column: loc.column - 1
  1434. },
  1435. generated: {
  1436. line: _context.line,
  1437. column: _context.column - 1
  1438. }
  1439. });
  1440. }
  1441. if (location && sourceMap) {
  1442. _context.map = new SourceMapGenerator();
  1443. _context.map.setSourceContent(filename, _context.source);
  1444. }
  1445. return {
  1446. context,
  1447. push,
  1448. indent,
  1449. deindent,
  1450. newline,
  1451. helper,
  1452. needIndent
  1453. };
  1454. }
  1455. function generateLinkedNode(generator, node) {
  1456. const { helper } = generator;
  1457. generator.push(`${helper("linked" /* HelperNameMap.LINKED */)}(`);
  1458. generateNode(generator, node.key);
  1459. if (node.modifier) {
  1460. generator.push(`, `);
  1461. generateNode(generator, node.modifier);
  1462. generator.push(`, _type`);
  1463. }
  1464. else {
  1465. generator.push(`, undefined, _type`);
  1466. }
  1467. generator.push(`)`);
  1468. }
  1469. function generateMessageNode(generator, node) {
  1470. const { helper, needIndent } = generator;
  1471. generator.push(`${helper("normalize" /* HelperNameMap.NORMALIZE */)}([`);
  1472. generator.indent(needIndent());
  1473. const length = node.items.length;
  1474. for (let i = 0; i < length; i++) {
  1475. generateNode(generator, node.items[i]);
  1476. if (i === length - 1) {
  1477. break;
  1478. }
  1479. generator.push(', ');
  1480. }
  1481. generator.deindent(needIndent());
  1482. generator.push('])');
  1483. }
  1484. function generatePluralNode(generator, node) {
  1485. const { helper, needIndent } = generator;
  1486. if (node.cases.length > 1) {
  1487. generator.push(`${helper("plural" /* HelperNameMap.PLURAL */)}([`);
  1488. generator.indent(needIndent());
  1489. const length = node.cases.length;
  1490. for (let i = 0; i < length; i++) {
  1491. generateNode(generator, node.cases[i]);
  1492. if (i === length - 1) {
  1493. break;
  1494. }
  1495. generator.push(', ');
  1496. }
  1497. generator.deindent(needIndent());
  1498. generator.push(`])`);
  1499. }
  1500. }
  1501. function generateResource(generator, node) {
  1502. if (node.body) {
  1503. generateNode(generator, node.body);
  1504. }
  1505. else {
  1506. generator.push('null');
  1507. }
  1508. }
  1509. function generateNode(generator, node) {
  1510. const { helper } = generator;
  1511. switch (node.type) {
  1512. case 0 /* NodeTypes.Resource */:
  1513. generateResource(generator, node);
  1514. break;
  1515. case 1 /* NodeTypes.Plural */:
  1516. generatePluralNode(generator, node);
  1517. break;
  1518. case 2 /* NodeTypes.Message */:
  1519. generateMessageNode(generator, node);
  1520. break;
  1521. case 6 /* NodeTypes.Linked */:
  1522. generateLinkedNode(generator, node);
  1523. break;
  1524. case 8 /* NodeTypes.LinkedModifier */:
  1525. generator.push(JSON.stringify(node.value), node);
  1526. break;
  1527. case 7 /* NodeTypes.LinkedKey */:
  1528. generator.push(JSON.stringify(node.value), node);
  1529. break;
  1530. case 5 /* NodeTypes.List */:
  1531. generator.push(`${helper("interpolate" /* HelperNameMap.INTERPOLATE */)}(${helper("list" /* HelperNameMap.LIST */)}(${node.index}))`, node);
  1532. break;
  1533. case 4 /* NodeTypes.Named */:
  1534. generator.push(`${helper("interpolate" /* HelperNameMap.INTERPOLATE */)}(${helper("named" /* HelperNameMap.NAMED */)}(${JSON.stringify(node.key)}))`, node);
  1535. break;
  1536. case 9 /* NodeTypes.Literal */:
  1537. generator.push(JSON.stringify(node.value), node);
  1538. break;
  1539. case 3 /* NodeTypes.Text */:
  1540. generator.push(JSON.stringify(node.value), node);
  1541. break;
  1542. default:
  1543. if ((process.env.NODE_ENV !== 'production')) {
  1544. throw createCompileError(CompileErrorCodes.UNHANDLED_CODEGEN_NODE_TYPE, null, {
  1545. domain: ERROR_DOMAIN,
  1546. args: [node.type]
  1547. });
  1548. }
  1549. }
  1550. }
  1551. // generate code from AST
  1552. const generate = (ast, options = {} // eslint-disable-line
  1553. ) => {
  1554. const mode = isString(options.mode) ? options.mode : 'normal';
  1555. const filename = isString(options.filename)
  1556. ? options.filename
  1557. : 'message.intl';
  1558. const sourceMap = !!options.sourceMap;
  1559. // prettier-ignore
  1560. const breakLineCode = options.breakLineCode != null
  1561. ? options.breakLineCode
  1562. : mode === 'arrow'
  1563. ? ';'
  1564. : '\n';
  1565. const needIndent = options.needIndent ? options.needIndent : mode !== 'arrow';
  1566. const helpers = ast.helpers || [];
  1567. const generator = createCodeGenerator(ast, {
  1568. mode,
  1569. filename,
  1570. sourceMap,
  1571. breakLineCode,
  1572. needIndent
  1573. });
  1574. generator.push(mode === 'normal' ? `function __msg__ (ctx) {` : `(ctx) => {`);
  1575. generator.indent(needIndent);
  1576. if (helpers.length > 0) {
  1577. generator.push(`const { ${join(helpers.map(s => `${s}: _${s}`), ', ')} } = ctx`);
  1578. generator.newline();
  1579. }
  1580. generator.push(`return `);
  1581. generateNode(generator, ast);
  1582. generator.deindent(needIndent);
  1583. generator.push(`}`);
  1584. delete ast.helpers;
  1585. const { code, map } = generator.context();
  1586. return {
  1587. ast,
  1588. code,
  1589. map: map ? map.toJSON() : undefined // eslint-disable-line @typescript-eslint/no-explicit-any
  1590. };
  1591. };
  1592. function getMappingName(node) {
  1593. switch (node.type) {
  1594. case 3 /* NodeTypes.Text */:
  1595. case 9 /* NodeTypes.Literal */:
  1596. case 8 /* NodeTypes.LinkedModifier */:
  1597. case 7 /* NodeTypes.LinkedKey */:
  1598. return node.value;
  1599. case 5 /* NodeTypes.List */:
  1600. return node.index.toString();
  1601. case 4 /* NodeTypes.Named */:
  1602. return node.key;
  1603. default:
  1604. return undefined;
  1605. }
  1606. }
  1607. function advancePositionWithSource(pos, source, numberOfCharacters = source.length) {
  1608. let linesCount = 0;
  1609. let lastNewLinePos = -1;
  1610. for (let i = 0; i < numberOfCharacters; i++) {
  1611. if (source.charCodeAt(i) === 10 /* newline char code */) {
  1612. linesCount++;
  1613. lastNewLinePos = i;
  1614. }
  1615. }
  1616. pos.offset += numberOfCharacters;
  1617. pos.line += linesCount;
  1618. pos.column =
  1619. lastNewLinePos === -1
  1620. ? pos.column + numberOfCharacters
  1621. : numberOfCharacters - lastNewLinePos;
  1622. return pos;
  1623. }
  1624. function baseCompile(source, options = {}) {
  1625. const assignedOptions = assign({}, options);
  1626. const jit = !!assignedOptions.jit;
  1627. const enalbeMinify = !!assignedOptions.minify;
  1628. const enambeOptimize = assignedOptions.optimize == null ? true : assignedOptions.optimize;
  1629. // parse source codes
  1630. const parser = createParser(assignedOptions);
  1631. const ast = parser.parse(source);
  1632. if (!jit) {
  1633. // transform ASTs
  1634. transform(ast, assignedOptions);
  1635. // generate javascript codes
  1636. return generate(ast, assignedOptions);
  1637. }
  1638. else {
  1639. // optimize ASTs
  1640. enambeOptimize && optimize(ast);
  1641. // minimize ASTs
  1642. enalbeMinify && minify(ast);
  1643. // In JIT mode, no ast transform, no code generation.
  1644. return { ast, code: '' };
  1645. }
  1646. }
  1647. export { CompileErrorCodes, CompileWarnCodes, ERROR_DOMAIN$2 as ERROR_DOMAIN, LOCATION_STUB, baseCompile, createCompileError, createCompileWarn, createLocation, createParser, createPosition, defaultOnError, detectHtmlTag, errorMessages, warnMessages };