message-compiler.mjs 58 KB

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