message-compiler.global.js 62 KB

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