pcre_tables.c 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727
  1. /*************************************************
  2. * Perl-Compatible Regular Expressions *
  3. *************************************************/
  4. /* PCRE is a library of functions to support regular expressions whose syntax
  5. and semantics are as close as possible to those of the Perl 5 language.
  6. Written by Philip Hazel
  7. Copyright (c) 1997-2017 University of Cambridge
  8. -----------------------------------------------------------------------------
  9. Redistribution and use in source and binary forms, with or without
  10. modification, are permitted provided that the following conditions are met:
  11. * Redistributions of source code must retain the above copyright notice,
  12. this list of conditions and the following disclaimer.
  13. * Redistributions in binary form must reproduce the above copyright
  14. notice, this list of conditions and the following disclaimer in the
  15. documentation and/or other materials provided with the distribution.
  16. * Neither the name of the University of Cambridge nor the names of its
  17. contributors may be used to endorse or promote products derived from
  18. this software without specific prior written permission.
  19. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  20. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  21. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  22. ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  23. LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  24. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  25. SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  26. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  27. CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  28. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  29. POSSIBILITY OF SUCH DAMAGE.
  30. -----------------------------------------------------------------------------
  31. */
  32. #ifndef PCRE_INCLUDED
  33. /* This module contains some fixed tables that are used by more than one of the
  34. PCRE code modules. The tables are also #included by the pcretest program, which
  35. uses macros to change their names from _pcre_xxx to xxxx, thereby avoiding name
  36. clashes with the library. */
  37. #ifdef HAVE_CONFIG_H
  38. #include "pcre_config.h"
  39. #endif
  40. #include "pcre_internal.h"
  41. #endif /* PCRE_INCLUDED */
  42. /* Table of sizes for the fixed-length opcodes. It's defined in a macro so that
  43. the definition is next to the definition of the opcodes in pcre_internal.h. */
  44. const pcre_uint8 PRIV(OP_lengths)[] = { OP_LENGTHS };
  45. /* Tables of horizontal and vertical whitespace characters, suitable for
  46. adding to classes. */
  47. const pcre_uint32 PRIV(hspace_list)[] = { HSPACE_LIST };
  48. const pcre_uint32 PRIV(vspace_list)[] = { VSPACE_LIST };
  49. /*************************************************
  50. * Tables for UTF-8 support *
  51. *************************************************/
  52. /* These are the breakpoints for different numbers of bytes in a UTF-8
  53. character. */
  54. #if (defined SUPPORT_UTF && defined COMPILE_PCRE8) \
  55. || (defined PCRE_INCLUDED && (defined SUPPORT_PCRE16 || defined SUPPORT_PCRE32))
  56. /* These tables are also required by pcretest in 16- or 32-bit mode. */
  57. const int PRIV(utf8_table1)[] =
  58. { 0x7f, 0x7ff, 0xffff, 0x1fffff, 0x3ffffff, 0x7fffffff};
  59. const int PRIV(utf8_table1_size) = sizeof(PRIV(utf8_table1)) / sizeof(int);
  60. /* These are the indicator bits and the mask for the data bits to set in the
  61. first byte of a character, indexed by the number of additional bytes. */
  62. const int PRIV(utf8_table2)[] = { 0, 0xc0, 0xe0, 0xf0, 0xf8, 0xfc};
  63. const int PRIV(utf8_table3)[] = { 0xff, 0x1f, 0x0f, 0x07, 0x03, 0x01};
  64. /* Table of the number of extra bytes, indexed by the first byte masked with
  65. 0x3f. The highest number for a valid UTF-8 first byte is in fact 0x3d. */
  66. const pcre_uint8 PRIV(utf8_table4)[] = {
  67. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  68. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  69. 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,
  70. 3,3,3,3,3,3,3,3,4,4,4,4,5,5,5,5 };
  71. #endif /* (SUPPORT_UTF && COMPILE_PCRE8) || (PCRE_INCLUDED && SUPPORT_PCRE[16|32])*/
  72. #ifdef SUPPORT_UTF
  73. /* Table to translate from particular type value to the general value. */
  74. const pcre_uint32 PRIV(ucp_gentype)[] = {
  75. ucp_C, ucp_C, ucp_C, ucp_C, ucp_C, /* Cc, Cf, Cn, Co, Cs */
  76. ucp_L, ucp_L, ucp_L, ucp_L, ucp_L, /* Ll, Lu, Lm, Lo, Lt */
  77. ucp_M, ucp_M, ucp_M, /* Mc, Me, Mn */
  78. ucp_N, ucp_N, ucp_N, /* Nd, Nl, No */
  79. ucp_P, ucp_P, ucp_P, ucp_P, ucp_P, /* Pc, Pd, Pe, Pf, Pi */
  80. ucp_P, ucp_P, /* Ps, Po */
  81. ucp_S, ucp_S, ucp_S, ucp_S, /* Sc, Sk, Sm, So */
  82. ucp_Z, ucp_Z, ucp_Z /* Zl, Zp, Zs */
  83. };
  84. /* This table encodes the rules for finding the end of an extended grapheme
  85. cluster. Every code point has a grapheme break property which is one of the
  86. ucp_gbXX values defined in ucp.h. The 2-dimensional table is indexed by the
  87. properties of two adjacent code points. The left property selects a word from
  88. the table, and the right property selects a bit from that word like this:
  89. ucp_gbtable[left-property] & (1 << right-property)
  90. The value is non-zero if a grapheme break is NOT permitted between the relevant
  91. two code points. The breaking rules are as follows:
  92. 1. Break at the start and end of text (pretty obviously).
  93. 2. Do not break between a CR and LF; otherwise, break before and after
  94. controls.
  95. 3. Do not break Hangul syllable sequences, the rules for which are:
  96. L may be followed by L, V, LV or LVT
  97. LV or V may be followed by V or T
  98. LVT or T may be followed by T
  99. 4. Do not break before extending characters.
  100. The next two rules are only for extended grapheme clusters (but that's what we
  101. are implementing).
  102. 5. Do not break before SpacingMarks.
  103. 6. Do not break after Prepend characters.
  104. 7. Otherwise, break everywhere.
  105. */
  106. const pcre_uint32 PRIV(ucp_gbtable[]) = {
  107. (1<<ucp_gbLF), /* 0 CR */
  108. 0, /* 1 LF */
  109. 0, /* 2 Control */
  110. (1<<ucp_gbExtend)|(1<<ucp_gbSpacingMark), /* 3 Extend */
  111. (1<<ucp_gbExtend)|(1<<ucp_gbPrepend)| /* 4 Prepend */
  112. (1<<ucp_gbSpacingMark)|(1<<ucp_gbL)|
  113. (1<<ucp_gbV)|(1<<ucp_gbT)|(1<<ucp_gbLV)|
  114. (1<<ucp_gbLVT)|(1<<ucp_gbOther),
  115. (1<<ucp_gbExtend)|(1<<ucp_gbSpacingMark), /* 5 SpacingMark */
  116. (1<<ucp_gbExtend)|(1<<ucp_gbSpacingMark)|(1<<ucp_gbL)| /* 6 L */
  117. (1<<ucp_gbV)|(1<<ucp_gbLV)|(1<<ucp_gbLVT),
  118. (1<<ucp_gbExtend)|(1<<ucp_gbSpacingMark)|(1<<ucp_gbV)| /* 7 V */
  119. (1<<ucp_gbT),
  120. (1<<ucp_gbExtend)|(1<<ucp_gbSpacingMark)|(1<<ucp_gbT), /* 8 T */
  121. (1<<ucp_gbExtend)|(1<<ucp_gbSpacingMark)|(1<<ucp_gbV)| /* 9 LV */
  122. (1<<ucp_gbT),
  123. (1<<ucp_gbExtend)|(1<<ucp_gbSpacingMark)|(1<<ucp_gbT), /* 10 LVT */
  124. (1<<ucp_gbRegionalIndicator), /* 11 RegionalIndicator */
  125. (1<<ucp_gbExtend)|(1<<ucp_gbSpacingMark) /* 12 Other */
  126. };
  127. #ifdef SUPPORT_JIT
  128. /* This table reverses PRIV(ucp_gentype). We can save the cost
  129. of a memory load. */
  130. const int PRIV(ucp_typerange)[] = {
  131. ucp_Cc, ucp_Cs,
  132. ucp_Ll, ucp_Lu,
  133. ucp_Mc, ucp_Mn,
  134. ucp_Nd, ucp_No,
  135. ucp_Pc, ucp_Ps,
  136. ucp_Sc, ucp_So,
  137. ucp_Zl, ucp_Zs,
  138. };
  139. #endif /* SUPPORT_JIT */
  140. /* The pcre_utt[] table below translates Unicode property names into type and
  141. code values. It is searched by binary chop, so must be in collating sequence of
  142. name. Originally, the table contained pointers to the name strings in the first
  143. field of each entry. However, that leads to a large number of relocations when
  144. a shared library is dynamically loaded. A significant reduction is made by
  145. putting all the names into a single, large string and then using offsets in the
  146. table itself. Maintenance is more error-prone, but frequent changes to this
  147. data are unlikely.
  148. July 2008: There is now a script called maint/GenerateUtt.py that can be used
  149. to generate this data automatically instead of maintaining it by hand.
  150. The script was updated in March 2009 to generate a new EBCDIC-compliant
  151. version. Like all other character and string literals that are compared against
  152. the regular expression pattern, we must use STR_ macros instead of literal
  153. strings to make sure that UTF-8 support works on EBCDIC platforms. */
  154. #define STRING_Any0 STR_A STR_n STR_y "\0"
  155. #define STRING_Arabic0 STR_A STR_r STR_a STR_b STR_i STR_c "\0"
  156. #define STRING_Armenian0 STR_A STR_r STR_m STR_e STR_n STR_i STR_a STR_n "\0"
  157. #define STRING_Avestan0 STR_A STR_v STR_e STR_s STR_t STR_a STR_n "\0"
  158. #define STRING_Balinese0 STR_B STR_a STR_l STR_i STR_n STR_e STR_s STR_e "\0"
  159. #define STRING_Bamum0 STR_B STR_a STR_m STR_u STR_m "\0"
  160. #define STRING_Bassa_Vah0 STR_B STR_a STR_s STR_s STR_a STR_UNDERSCORE STR_V STR_a STR_h "\0"
  161. #define STRING_Batak0 STR_B STR_a STR_t STR_a STR_k "\0"
  162. #define STRING_Bengali0 STR_B STR_e STR_n STR_g STR_a STR_l STR_i "\0"
  163. #define STRING_Bopomofo0 STR_B STR_o STR_p STR_o STR_m STR_o STR_f STR_o "\0"
  164. #define STRING_Brahmi0 STR_B STR_r STR_a STR_h STR_m STR_i "\0"
  165. #define STRING_Braille0 STR_B STR_r STR_a STR_i STR_l STR_l STR_e "\0"
  166. #define STRING_Buginese0 STR_B STR_u STR_g STR_i STR_n STR_e STR_s STR_e "\0"
  167. #define STRING_Buhid0 STR_B STR_u STR_h STR_i STR_d "\0"
  168. #define STRING_C0 STR_C "\0"
  169. #define STRING_Canadian_Aboriginal0 STR_C STR_a STR_n STR_a STR_d STR_i STR_a STR_n STR_UNDERSCORE STR_A STR_b STR_o STR_r STR_i STR_g STR_i STR_n STR_a STR_l "\0"
  170. #define STRING_Carian0 STR_C STR_a STR_r STR_i STR_a STR_n "\0"
  171. #define STRING_Caucasian_Albanian0 STR_C STR_a STR_u STR_c STR_a STR_s STR_i STR_a STR_n STR_UNDERSCORE STR_A STR_l STR_b STR_a STR_n STR_i STR_a STR_n "\0"
  172. #define STRING_Cc0 STR_C STR_c "\0"
  173. #define STRING_Cf0 STR_C STR_f "\0"
  174. #define STRING_Chakma0 STR_C STR_h STR_a STR_k STR_m STR_a "\0"
  175. #define STRING_Cham0 STR_C STR_h STR_a STR_m "\0"
  176. #define STRING_Cherokee0 STR_C STR_h STR_e STR_r STR_o STR_k STR_e STR_e "\0"
  177. #define STRING_Cn0 STR_C STR_n "\0"
  178. #define STRING_Co0 STR_C STR_o "\0"
  179. #define STRING_Common0 STR_C STR_o STR_m STR_m STR_o STR_n "\0"
  180. #define STRING_Coptic0 STR_C STR_o STR_p STR_t STR_i STR_c "\0"
  181. #define STRING_Cs0 STR_C STR_s "\0"
  182. #define STRING_Cuneiform0 STR_C STR_u STR_n STR_e STR_i STR_f STR_o STR_r STR_m "\0"
  183. #define STRING_Cypriot0 STR_C STR_y STR_p STR_r STR_i STR_o STR_t "\0"
  184. #define STRING_Cyrillic0 STR_C STR_y STR_r STR_i STR_l STR_l STR_i STR_c "\0"
  185. #define STRING_Deseret0 STR_D STR_e STR_s STR_e STR_r STR_e STR_t "\0"
  186. #define STRING_Devanagari0 STR_D STR_e STR_v STR_a STR_n STR_a STR_g STR_a STR_r STR_i "\0"
  187. #define STRING_Duployan0 STR_D STR_u STR_p STR_l STR_o STR_y STR_a STR_n "\0"
  188. #define STRING_Egyptian_Hieroglyphs0 STR_E STR_g STR_y STR_p STR_t STR_i STR_a STR_n STR_UNDERSCORE STR_H STR_i STR_e STR_r STR_o STR_g STR_l STR_y STR_p STR_h STR_s "\0"
  189. #define STRING_Elbasan0 STR_E STR_l STR_b STR_a STR_s STR_a STR_n "\0"
  190. #define STRING_Ethiopic0 STR_E STR_t STR_h STR_i STR_o STR_p STR_i STR_c "\0"
  191. #define STRING_Georgian0 STR_G STR_e STR_o STR_r STR_g STR_i STR_a STR_n "\0"
  192. #define STRING_Glagolitic0 STR_G STR_l STR_a STR_g STR_o STR_l STR_i STR_t STR_i STR_c "\0"
  193. #define STRING_Gothic0 STR_G STR_o STR_t STR_h STR_i STR_c "\0"
  194. #define STRING_Grantha0 STR_G STR_r STR_a STR_n STR_t STR_h STR_a "\0"
  195. #define STRING_Greek0 STR_G STR_r STR_e STR_e STR_k "\0"
  196. #define STRING_Gujarati0 STR_G STR_u STR_j STR_a STR_r STR_a STR_t STR_i "\0"
  197. #define STRING_Gurmukhi0 STR_G STR_u STR_r STR_m STR_u STR_k STR_h STR_i "\0"
  198. #define STRING_Han0 STR_H STR_a STR_n "\0"
  199. #define STRING_Hangul0 STR_H STR_a STR_n STR_g STR_u STR_l "\0"
  200. #define STRING_Hanunoo0 STR_H STR_a STR_n STR_u STR_n STR_o STR_o "\0"
  201. #define STRING_Hebrew0 STR_H STR_e STR_b STR_r STR_e STR_w "\0"
  202. #define STRING_Hiragana0 STR_H STR_i STR_r STR_a STR_g STR_a STR_n STR_a "\0"
  203. #define STRING_Imperial_Aramaic0 STR_I STR_m STR_p STR_e STR_r STR_i STR_a STR_l STR_UNDERSCORE STR_A STR_r STR_a STR_m STR_a STR_i STR_c "\0"
  204. #define STRING_Inherited0 STR_I STR_n STR_h STR_e STR_r STR_i STR_t STR_e STR_d "\0"
  205. #define STRING_Inscriptional_Pahlavi0 STR_I STR_n STR_s STR_c STR_r STR_i STR_p STR_t STR_i STR_o STR_n STR_a STR_l STR_UNDERSCORE STR_P STR_a STR_h STR_l STR_a STR_v STR_i "\0"
  206. #define STRING_Inscriptional_Parthian0 STR_I STR_n STR_s STR_c STR_r STR_i STR_p STR_t STR_i STR_o STR_n STR_a STR_l STR_UNDERSCORE STR_P STR_a STR_r STR_t STR_h STR_i STR_a STR_n "\0"
  207. #define STRING_Javanese0 STR_J STR_a STR_v STR_a STR_n STR_e STR_s STR_e "\0"
  208. #define STRING_Kaithi0 STR_K STR_a STR_i STR_t STR_h STR_i "\0"
  209. #define STRING_Kannada0 STR_K STR_a STR_n STR_n STR_a STR_d STR_a "\0"
  210. #define STRING_Katakana0 STR_K STR_a STR_t STR_a STR_k STR_a STR_n STR_a "\0"
  211. #define STRING_Kayah_Li0 STR_K STR_a STR_y STR_a STR_h STR_UNDERSCORE STR_L STR_i "\0"
  212. #define STRING_Kharoshthi0 STR_K STR_h STR_a STR_r STR_o STR_s STR_h STR_t STR_h STR_i "\0"
  213. #define STRING_Khmer0 STR_K STR_h STR_m STR_e STR_r "\0"
  214. #define STRING_Khojki0 STR_K STR_h STR_o STR_j STR_k STR_i "\0"
  215. #define STRING_Khudawadi0 STR_K STR_h STR_u STR_d STR_a STR_w STR_a STR_d STR_i "\0"
  216. #define STRING_L0 STR_L "\0"
  217. #define STRING_L_AMPERSAND0 STR_L STR_AMPERSAND "\0"
  218. #define STRING_Lao0 STR_L STR_a STR_o "\0"
  219. #define STRING_Latin0 STR_L STR_a STR_t STR_i STR_n "\0"
  220. #define STRING_Lepcha0 STR_L STR_e STR_p STR_c STR_h STR_a "\0"
  221. #define STRING_Limbu0 STR_L STR_i STR_m STR_b STR_u "\0"
  222. #define STRING_Linear_A0 STR_L STR_i STR_n STR_e STR_a STR_r STR_UNDERSCORE STR_A "\0"
  223. #define STRING_Linear_B0 STR_L STR_i STR_n STR_e STR_a STR_r STR_UNDERSCORE STR_B "\0"
  224. #define STRING_Lisu0 STR_L STR_i STR_s STR_u "\0"
  225. #define STRING_Ll0 STR_L STR_l "\0"
  226. #define STRING_Lm0 STR_L STR_m "\0"
  227. #define STRING_Lo0 STR_L STR_o "\0"
  228. #define STRING_Lt0 STR_L STR_t "\0"
  229. #define STRING_Lu0 STR_L STR_u "\0"
  230. #define STRING_Lycian0 STR_L STR_y STR_c STR_i STR_a STR_n "\0"
  231. #define STRING_Lydian0 STR_L STR_y STR_d STR_i STR_a STR_n "\0"
  232. #define STRING_M0 STR_M "\0"
  233. #define STRING_Mahajani0 STR_M STR_a STR_h STR_a STR_j STR_a STR_n STR_i "\0"
  234. #define STRING_Malayalam0 STR_M STR_a STR_l STR_a STR_y STR_a STR_l STR_a STR_m "\0"
  235. #define STRING_Mandaic0 STR_M STR_a STR_n STR_d STR_a STR_i STR_c "\0"
  236. #define STRING_Manichaean0 STR_M STR_a STR_n STR_i STR_c STR_h STR_a STR_e STR_a STR_n "\0"
  237. #define STRING_Mc0 STR_M STR_c "\0"
  238. #define STRING_Me0 STR_M STR_e "\0"
  239. #define STRING_Meetei_Mayek0 STR_M STR_e STR_e STR_t STR_e STR_i STR_UNDERSCORE STR_M STR_a STR_y STR_e STR_k "\0"
  240. #define STRING_Mende_Kikakui0 STR_M STR_e STR_n STR_d STR_e STR_UNDERSCORE STR_K STR_i STR_k STR_a STR_k STR_u STR_i "\0"
  241. #define STRING_Meroitic_Cursive0 STR_M STR_e STR_r STR_o STR_i STR_t STR_i STR_c STR_UNDERSCORE STR_C STR_u STR_r STR_s STR_i STR_v STR_e "\0"
  242. #define STRING_Meroitic_Hieroglyphs0 STR_M STR_e STR_r STR_o STR_i STR_t STR_i STR_c STR_UNDERSCORE STR_H STR_i STR_e STR_r STR_o STR_g STR_l STR_y STR_p STR_h STR_s "\0"
  243. #define STRING_Miao0 STR_M STR_i STR_a STR_o "\0"
  244. #define STRING_Mn0 STR_M STR_n "\0"
  245. #define STRING_Modi0 STR_M STR_o STR_d STR_i "\0"
  246. #define STRING_Mongolian0 STR_M STR_o STR_n STR_g STR_o STR_l STR_i STR_a STR_n "\0"
  247. #define STRING_Mro0 STR_M STR_r STR_o "\0"
  248. #define STRING_Myanmar0 STR_M STR_y STR_a STR_n STR_m STR_a STR_r "\0"
  249. #define STRING_N0 STR_N "\0"
  250. #define STRING_Nabataean0 STR_N STR_a STR_b STR_a STR_t STR_a STR_e STR_a STR_n "\0"
  251. #define STRING_Nd0 STR_N STR_d "\0"
  252. #define STRING_New_Tai_Lue0 STR_N STR_e STR_w STR_UNDERSCORE STR_T STR_a STR_i STR_UNDERSCORE STR_L STR_u STR_e "\0"
  253. #define STRING_Nko0 STR_N STR_k STR_o "\0"
  254. #define STRING_Nl0 STR_N STR_l "\0"
  255. #define STRING_No0 STR_N STR_o "\0"
  256. #define STRING_Ogham0 STR_O STR_g STR_h STR_a STR_m "\0"
  257. #define STRING_Ol_Chiki0 STR_O STR_l STR_UNDERSCORE STR_C STR_h STR_i STR_k STR_i "\0"
  258. #define STRING_Old_Italic0 STR_O STR_l STR_d STR_UNDERSCORE STR_I STR_t STR_a STR_l STR_i STR_c "\0"
  259. #define STRING_Old_North_Arabian0 STR_O STR_l STR_d STR_UNDERSCORE STR_N STR_o STR_r STR_t STR_h STR_UNDERSCORE STR_A STR_r STR_a STR_b STR_i STR_a STR_n "\0"
  260. #define STRING_Old_Permic0 STR_O STR_l STR_d STR_UNDERSCORE STR_P STR_e STR_r STR_m STR_i STR_c "\0"
  261. #define STRING_Old_Persian0 STR_O STR_l STR_d STR_UNDERSCORE STR_P STR_e STR_r STR_s STR_i STR_a STR_n "\0"
  262. #define STRING_Old_South_Arabian0 STR_O STR_l STR_d STR_UNDERSCORE STR_S STR_o STR_u STR_t STR_h STR_UNDERSCORE STR_A STR_r STR_a STR_b STR_i STR_a STR_n "\0"
  263. #define STRING_Old_Turkic0 STR_O STR_l STR_d STR_UNDERSCORE STR_T STR_u STR_r STR_k STR_i STR_c "\0"
  264. #define STRING_Oriya0 STR_O STR_r STR_i STR_y STR_a "\0"
  265. #define STRING_Osmanya0 STR_O STR_s STR_m STR_a STR_n STR_y STR_a "\0"
  266. #define STRING_P0 STR_P "\0"
  267. #define STRING_Pahawh_Hmong0 STR_P STR_a STR_h STR_a STR_w STR_h STR_UNDERSCORE STR_H STR_m STR_o STR_n STR_g "\0"
  268. #define STRING_Palmyrene0 STR_P STR_a STR_l STR_m STR_y STR_r STR_e STR_n STR_e "\0"
  269. #define STRING_Pau_Cin_Hau0 STR_P STR_a STR_u STR_UNDERSCORE STR_C STR_i STR_n STR_UNDERSCORE STR_H STR_a STR_u "\0"
  270. #define STRING_Pc0 STR_P STR_c "\0"
  271. #define STRING_Pd0 STR_P STR_d "\0"
  272. #define STRING_Pe0 STR_P STR_e "\0"
  273. #define STRING_Pf0 STR_P STR_f "\0"
  274. #define STRING_Phags_Pa0 STR_P STR_h STR_a STR_g STR_s STR_UNDERSCORE STR_P STR_a "\0"
  275. #define STRING_Phoenician0 STR_P STR_h STR_o STR_e STR_n STR_i STR_c STR_i STR_a STR_n "\0"
  276. #define STRING_Pi0 STR_P STR_i "\0"
  277. #define STRING_Po0 STR_P STR_o "\0"
  278. #define STRING_Ps0 STR_P STR_s "\0"
  279. #define STRING_Psalter_Pahlavi0 STR_P STR_s STR_a STR_l STR_t STR_e STR_r STR_UNDERSCORE STR_P STR_a STR_h STR_l STR_a STR_v STR_i "\0"
  280. #define STRING_Rejang0 STR_R STR_e STR_j STR_a STR_n STR_g "\0"
  281. #define STRING_Runic0 STR_R STR_u STR_n STR_i STR_c "\0"
  282. #define STRING_S0 STR_S "\0"
  283. #define STRING_Samaritan0 STR_S STR_a STR_m STR_a STR_r STR_i STR_t STR_a STR_n "\0"
  284. #define STRING_Saurashtra0 STR_S STR_a STR_u STR_r STR_a STR_s STR_h STR_t STR_r STR_a "\0"
  285. #define STRING_Sc0 STR_S STR_c "\0"
  286. #define STRING_Sharada0 STR_S STR_h STR_a STR_r STR_a STR_d STR_a "\0"
  287. #define STRING_Shavian0 STR_S STR_h STR_a STR_v STR_i STR_a STR_n "\0"
  288. #define STRING_Siddham0 STR_S STR_i STR_d STR_d STR_h STR_a STR_m "\0"
  289. #define STRING_Sinhala0 STR_S STR_i STR_n STR_h STR_a STR_l STR_a "\0"
  290. #define STRING_Sk0 STR_S STR_k "\0"
  291. #define STRING_Sm0 STR_S STR_m "\0"
  292. #define STRING_So0 STR_S STR_o "\0"
  293. #define STRING_Sora_Sompeng0 STR_S STR_o STR_r STR_a STR_UNDERSCORE STR_S STR_o STR_m STR_p STR_e STR_n STR_g "\0"
  294. #define STRING_Sundanese0 STR_S STR_u STR_n STR_d STR_a STR_n STR_e STR_s STR_e "\0"
  295. #define STRING_Syloti_Nagri0 STR_S STR_y STR_l STR_o STR_t STR_i STR_UNDERSCORE STR_N STR_a STR_g STR_r STR_i "\0"
  296. #define STRING_Syriac0 STR_S STR_y STR_r STR_i STR_a STR_c "\0"
  297. #define STRING_Tagalog0 STR_T STR_a STR_g STR_a STR_l STR_o STR_g "\0"
  298. #define STRING_Tagbanwa0 STR_T STR_a STR_g STR_b STR_a STR_n STR_w STR_a "\0"
  299. #define STRING_Tai_Le0 STR_T STR_a STR_i STR_UNDERSCORE STR_L STR_e "\0"
  300. #define STRING_Tai_Tham0 STR_T STR_a STR_i STR_UNDERSCORE STR_T STR_h STR_a STR_m "\0"
  301. #define STRING_Tai_Viet0 STR_T STR_a STR_i STR_UNDERSCORE STR_V STR_i STR_e STR_t "\0"
  302. #define STRING_Takri0 STR_T STR_a STR_k STR_r STR_i "\0"
  303. #define STRING_Tamil0 STR_T STR_a STR_m STR_i STR_l "\0"
  304. #define STRING_Telugu0 STR_T STR_e STR_l STR_u STR_g STR_u "\0"
  305. #define STRING_Thaana0 STR_T STR_h STR_a STR_a STR_n STR_a "\0"
  306. #define STRING_Thai0 STR_T STR_h STR_a STR_i "\0"
  307. #define STRING_Tibetan0 STR_T STR_i STR_b STR_e STR_t STR_a STR_n "\0"
  308. #define STRING_Tifinagh0 STR_T STR_i STR_f STR_i STR_n STR_a STR_g STR_h "\0"
  309. #define STRING_Tirhuta0 STR_T STR_i STR_r STR_h STR_u STR_t STR_a "\0"
  310. #define STRING_Ugaritic0 STR_U STR_g STR_a STR_r STR_i STR_t STR_i STR_c "\0"
  311. #define STRING_Vai0 STR_V STR_a STR_i "\0"
  312. #define STRING_Warang_Citi0 STR_W STR_a STR_r STR_a STR_n STR_g STR_UNDERSCORE STR_C STR_i STR_t STR_i "\0"
  313. #define STRING_Xan0 STR_X STR_a STR_n "\0"
  314. #define STRING_Xps0 STR_X STR_p STR_s "\0"
  315. #define STRING_Xsp0 STR_X STR_s STR_p "\0"
  316. #define STRING_Xuc0 STR_X STR_u STR_c "\0"
  317. #define STRING_Xwd0 STR_X STR_w STR_d "\0"
  318. #define STRING_Yi0 STR_Y STR_i "\0"
  319. #define STRING_Z0 STR_Z "\0"
  320. #define STRING_Zl0 STR_Z STR_l "\0"
  321. #define STRING_Zp0 STR_Z STR_p "\0"
  322. #define STRING_Zs0 STR_Z STR_s "\0"
  323. const char PRIV(utt_names)[] =
  324. STRING_Any0
  325. STRING_Arabic0
  326. STRING_Armenian0
  327. STRING_Avestan0
  328. STRING_Balinese0
  329. STRING_Bamum0
  330. STRING_Bassa_Vah0
  331. STRING_Batak0
  332. STRING_Bengali0
  333. STRING_Bopomofo0
  334. STRING_Brahmi0
  335. STRING_Braille0
  336. STRING_Buginese0
  337. STRING_Buhid0
  338. STRING_C0
  339. STRING_Canadian_Aboriginal0
  340. STRING_Carian0
  341. STRING_Caucasian_Albanian0
  342. STRING_Cc0
  343. STRING_Cf0
  344. STRING_Chakma0
  345. STRING_Cham0
  346. STRING_Cherokee0
  347. STRING_Cn0
  348. STRING_Co0
  349. STRING_Common0
  350. STRING_Coptic0
  351. STRING_Cs0
  352. STRING_Cuneiform0
  353. STRING_Cypriot0
  354. STRING_Cyrillic0
  355. STRING_Deseret0
  356. STRING_Devanagari0
  357. STRING_Duployan0
  358. STRING_Egyptian_Hieroglyphs0
  359. STRING_Elbasan0
  360. STRING_Ethiopic0
  361. STRING_Georgian0
  362. STRING_Glagolitic0
  363. STRING_Gothic0
  364. STRING_Grantha0
  365. STRING_Greek0
  366. STRING_Gujarati0
  367. STRING_Gurmukhi0
  368. STRING_Han0
  369. STRING_Hangul0
  370. STRING_Hanunoo0
  371. STRING_Hebrew0
  372. STRING_Hiragana0
  373. STRING_Imperial_Aramaic0
  374. STRING_Inherited0
  375. STRING_Inscriptional_Pahlavi0
  376. STRING_Inscriptional_Parthian0
  377. STRING_Javanese0
  378. STRING_Kaithi0
  379. STRING_Kannada0
  380. STRING_Katakana0
  381. STRING_Kayah_Li0
  382. STRING_Kharoshthi0
  383. STRING_Khmer0
  384. STRING_Khojki0
  385. STRING_Khudawadi0
  386. STRING_L0
  387. STRING_L_AMPERSAND0
  388. STRING_Lao0
  389. STRING_Latin0
  390. STRING_Lepcha0
  391. STRING_Limbu0
  392. STRING_Linear_A0
  393. STRING_Linear_B0
  394. STRING_Lisu0
  395. STRING_Ll0
  396. STRING_Lm0
  397. STRING_Lo0
  398. STRING_Lt0
  399. STRING_Lu0
  400. STRING_Lycian0
  401. STRING_Lydian0
  402. STRING_M0
  403. STRING_Mahajani0
  404. STRING_Malayalam0
  405. STRING_Mandaic0
  406. STRING_Manichaean0
  407. STRING_Mc0
  408. STRING_Me0
  409. STRING_Meetei_Mayek0
  410. STRING_Mende_Kikakui0
  411. STRING_Meroitic_Cursive0
  412. STRING_Meroitic_Hieroglyphs0
  413. STRING_Miao0
  414. STRING_Mn0
  415. STRING_Modi0
  416. STRING_Mongolian0
  417. STRING_Mro0
  418. STRING_Myanmar0
  419. STRING_N0
  420. STRING_Nabataean0
  421. STRING_Nd0
  422. STRING_New_Tai_Lue0
  423. STRING_Nko0
  424. STRING_Nl0
  425. STRING_No0
  426. STRING_Ogham0
  427. STRING_Ol_Chiki0
  428. STRING_Old_Italic0
  429. STRING_Old_North_Arabian0
  430. STRING_Old_Permic0
  431. STRING_Old_Persian0
  432. STRING_Old_South_Arabian0
  433. STRING_Old_Turkic0
  434. STRING_Oriya0
  435. STRING_Osmanya0
  436. STRING_P0
  437. STRING_Pahawh_Hmong0
  438. STRING_Palmyrene0
  439. STRING_Pau_Cin_Hau0
  440. STRING_Pc0
  441. STRING_Pd0
  442. STRING_Pe0
  443. STRING_Pf0
  444. STRING_Phags_Pa0
  445. STRING_Phoenician0
  446. STRING_Pi0
  447. STRING_Po0
  448. STRING_Ps0
  449. STRING_Psalter_Pahlavi0
  450. STRING_Rejang0
  451. STRING_Runic0
  452. STRING_S0
  453. STRING_Samaritan0
  454. STRING_Saurashtra0
  455. STRING_Sc0
  456. STRING_Sharada0
  457. STRING_Shavian0
  458. STRING_Siddham0
  459. STRING_Sinhala0
  460. STRING_Sk0
  461. STRING_Sm0
  462. STRING_So0
  463. STRING_Sora_Sompeng0
  464. STRING_Sundanese0
  465. STRING_Syloti_Nagri0
  466. STRING_Syriac0
  467. STRING_Tagalog0
  468. STRING_Tagbanwa0
  469. STRING_Tai_Le0
  470. STRING_Tai_Tham0
  471. STRING_Tai_Viet0
  472. STRING_Takri0
  473. STRING_Tamil0
  474. STRING_Telugu0
  475. STRING_Thaana0
  476. STRING_Thai0
  477. STRING_Tibetan0
  478. STRING_Tifinagh0
  479. STRING_Tirhuta0
  480. STRING_Ugaritic0
  481. STRING_Vai0
  482. STRING_Warang_Citi0
  483. STRING_Xan0
  484. STRING_Xps0
  485. STRING_Xsp0
  486. STRING_Xuc0
  487. STRING_Xwd0
  488. STRING_Yi0
  489. STRING_Z0
  490. STRING_Zl0
  491. STRING_Zp0
  492. STRING_Zs0;
  493. const ucp_type_table PRIV(utt)[] = {
  494. { 0, PT_ANY, 0 },
  495. { 4, PT_SC, ucp_Arabic },
  496. { 11, PT_SC, ucp_Armenian },
  497. { 20, PT_SC, ucp_Avestan },
  498. { 28, PT_SC, ucp_Balinese },
  499. { 37, PT_SC, ucp_Bamum },
  500. { 43, PT_SC, ucp_Bassa_Vah },
  501. { 53, PT_SC, ucp_Batak },
  502. { 59, PT_SC, ucp_Bengali },
  503. { 67, PT_SC, ucp_Bopomofo },
  504. { 76, PT_SC, ucp_Brahmi },
  505. { 83, PT_SC, ucp_Braille },
  506. { 91, PT_SC, ucp_Buginese },
  507. { 100, PT_SC, ucp_Buhid },
  508. { 106, PT_GC, ucp_C },
  509. { 108, PT_SC, ucp_Canadian_Aboriginal },
  510. { 128, PT_SC, ucp_Carian },
  511. { 135, PT_SC, ucp_Caucasian_Albanian },
  512. { 154, PT_PC, ucp_Cc },
  513. { 157, PT_PC, ucp_Cf },
  514. { 160, PT_SC, ucp_Chakma },
  515. { 167, PT_SC, ucp_Cham },
  516. { 172, PT_SC, ucp_Cherokee },
  517. { 181, PT_PC, ucp_Cn },
  518. { 184, PT_PC, ucp_Co },
  519. { 187, PT_SC, ucp_Common },
  520. { 194, PT_SC, ucp_Coptic },
  521. { 201, PT_PC, ucp_Cs },
  522. { 204, PT_SC, ucp_Cuneiform },
  523. { 214, PT_SC, ucp_Cypriot },
  524. { 222, PT_SC, ucp_Cyrillic },
  525. { 231, PT_SC, ucp_Deseret },
  526. { 239, PT_SC, ucp_Devanagari },
  527. { 250, PT_SC, ucp_Duployan },
  528. { 259, PT_SC, ucp_Egyptian_Hieroglyphs },
  529. { 280, PT_SC, ucp_Elbasan },
  530. { 288, PT_SC, ucp_Ethiopic },
  531. { 297, PT_SC, ucp_Georgian },
  532. { 306, PT_SC, ucp_Glagolitic },
  533. { 317, PT_SC, ucp_Gothic },
  534. { 324, PT_SC, ucp_Grantha },
  535. { 332, PT_SC, ucp_Greek },
  536. { 338, PT_SC, ucp_Gujarati },
  537. { 347, PT_SC, ucp_Gurmukhi },
  538. { 356, PT_SC, ucp_Han },
  539. { 360, PT_SC, ucp_Hangul },
  540. { 367, PT_SC, ucp_Hanunoo },
  541. { 375, PT_SC, ucp_Hebrew },
  542. { 382, PT_SC, ucp_Hiragana },
  543. { 391, PT_SC, ucp_Imperial_Aramaic },
  544. { 408, PT_SC, ucp_Inherited },
  545. { 418, PT_SC, ucp_Inscriptional_Pahlavi },
  546. { 440, PT_SC, ucp_Inscriptional_Parthian },
  547. { 463, PT_SC, ucp_Javanese },
  548. { 472, PT_SC, ucp_Kaithi },
  549. { 479, PT_SC, ucp_Kannada },
  550. { 487, PT_SC, ucp_Katakana },
  551. { 496, PT_SC, ucp_Kayah_Li },
  552. { 505, PT_SC, ucp_Kharoshthi },
  553. { 516, PT_SC, ucp_Khmer },
  554. { 522, PT_SC, ucp_Khojki },
  555. { 529, PT_SC, ucp_Khudawadi },
  556. { 539, PT_GC, ucp_L },
  557. { 541, PT_LAMP, 0 },
  558. { 544, PT_SC, ucp_Lao },
  559. { 548, PT_SC, ucp_Latin },
  560. { 554, PT_SC, ucp_Lepcha },
  561. { 561, PT_SC, ucp_Limbu },
  562. { 567, PT_SC, ucp_Linear_A },
  563. { 576, PT_SC, ucp_Linear_B },
  564. { 585, PT_SC, ucp_Lisu },
  565. { 590, PT_PC, ucp_Ll },
  566. { 593, PT_PC, ucp_Lm },
  567. { 596, PT_PC, ucp_Lo },
  568. { 599, PT_PC, ucp_Lt },
  569. { 602, PT_PC, ucp_Lu },
  570. { 605, PT_SC, ucp_Lycian },
  571. { 612, PT_SC, ucp_Lydian },
  572. { 619, PT_GC, ucp_M },
  573. { 621, PT_SC, ucp_Mahajani },
  574. { 630, PT_SC, ucp_Malayalam },
  575. { 640, PT_SC, ucp_Mandaic },
  576. { 648, PT_SC, ucp_Manichaean },
  577. { 659, PT_PC, ucp_Mc },
  578. { 662, PT_PC, ucp_Me },
  579. { 665, PT_SC, ucp_Meetei_Mayek },
  580. { 678, PT_SC, ucp_Mende_Kikakui },
  581. { 692, PT_SC, ucp_Meroitic_Cursive },
  582. { 709, PT_SC, ucp_Meroitic_Hieroglyphs },
  583. { 730, PT_SC, ucp_Miao },
  584. { 735, PT_PC, ucp_Mn },
  585. { 738, PT_SC, ucp_Modi },
  586. { 743, PT_SC, ucp_Mongolian },
  587. { 753, PT_SC, ucp_Mro },
  588. { 757, PT_SC, ucp_Myanmar },
  589. { 765, PT_GC, ucp_N },
  590. { 767, PT_SC, ucp_Nabataean },
  591. { 777, PT_PC, ucp_Nd },
  592. { 780, PT_SC, ucp_New_Tai_Lue },
  593. { 792, PT_SC, ucp_Nko },
  594. { 796, PT_PC, ucp_Nl },
  595. { 799, PT_PC, ucp_No },
  596. { 802, PT_SC, ucp_Ogham },
  597. { 808, PT_SC, ucp_Ol_Chiki },
  598. { 817, PT_SC, ucp_Old_Italic },
  599. { 828, PT_SC, ucp_Old_North_Arabian },
  600. { 846, PT_SC, ucp_Old_Permic },
  601. { 857, PT_SC, ucp_Old_Persian },
  602. { 869, PT_SC, ucp_Old_South_Arabian },
  603. { 887, PT_SC, ucp_Old_Turkic },
  604. { 898, PT_SC, ucp_Oriya },
  605. { 904, PT_SC, ucp_Osmanya },
  606. { 912, PT_GC, ucp_P },
  607. { 914, PT_SC, ucp_Pahawh_Hmong },
  608. { 927, PT_SC, ucp_Palmyrene },
  609. { 937, PT_SC, ucp_Pau_Cin_Hau },
  610. { 949, PT_PC, ucp_Pc },
  611. { 952, PT_PC, ucp_Pd },
  612. { 955, PT_PC, ucp_Pe },
  613. { 958, PT_PC, ucp_Pf },
  614. { 961, PT_SC, ucp_Phags_Pa },
  615. { 970, PT_SC, ucp_Phoenician },
  616. { 981, PT_PC, ucp_Pi },
  617. { 984, PT_PC, ucp_Po },
  618. { 987, PT_PC, ucp_Ps },
  619. { 990, PT_SC, ucp_Psalter_Pahlavi },
  620. { 1006, PT_SC, ucp_Rejang },
  621. { 1013, PT_SC, ucp_Runic },
  622. { 1019, PT_GC, ucp_S },
  623. { 1021, PT_SC, ucp_Samaritan },
  624. { 1031, PT_SC, ucp_Saurashtra },
  625. { 1042, PT_PC, ucp_Sc },
  626. { 1045, PT_SC, ucp_Sharada },
  627. { 1053, PT_SC, ucp_Shavian },
  628. { 1061, PT_SC, ucp_Siddham },
  629. { 1069, PT_SC, ucp_Sinhala },
  630. { 1077, PT_PC, ucp_Sk },
  631. { 1080, PT_PC, ucp_Sm },
  632. { 1083, PT_PC, ucp_So },
  633. { 1086, PT_SC, ucp_Sora_Sompeng },
  634. { 1099, PT_SC, ucp_Sundanese },
  635. { 1109, PT_SC, ucp_Syloti_Nagri },
  636. { 1122, PT_SC, ucp_Syriac },
  637. { 1129, PT_SC, ucp_Tagalog },
  638. { 1137, PT_SC, ucp_Tagbanwa },
  639. { 1146, PT_SC, ucp_Tai_Le },
  640. { 1153, PT_SC, ucp_Tai_Tham },
  641. { 1162, PT_SC, ucp_Tai_Viet },
  642. { 1171, PT_SC, ucp_Takri },
  643. { 1177, PT_SC, ucp_Tamil },
  644. { 1183, PT_SC, ucp_Telugu },
  645. { 1190, PT_SC, ucp_Thaana },
  646. { 1197, PT_SC, ucp_Thai },
  647. { 1202, PT_SC, ucp_Tibetan },
  648. { 1210, PT_SC, ucp_Tifinagh },
  649. { 1219, PT_SC, ucp_Tirhuta },
  650. { 1227, PT_SC, ucp_Ugaritic },
  651. { 1236, PT_SC, ucp_Vai },
  652. { 1240, PT_SC, ucp_Warang_Citi },
  653. { 1252, PT_ALNUM, 0 },
  654. { 1256, PT_PXSPACE, 0 },
  655. { 1260, PT_SPACE, 0 },
  656. { 1264, PT_UCNC, 0 },
  657. { 1268, PT_WORD, 0 },
  658. { 1272, PT_SC, ucp_Yi },
  659. { 1275, PT_GC, ucp_Z },
  660. { 1277, PT_PC, ucp_Zl },
  661. { 1280, PT_PC, ucp_Zp },
  662. { 1283, PT_PC, ucp_Zs }
  663. };
  664. const int PRIV(utt_size) = sizeof(PRIV(utt)) / sizeof(ucp_type_table);
  665. #endif /* SUPPORT_UTF */
  666. /* End of pcre_tables.c */