]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/regenc.h
MdeModulePkg RegularExpressionDxe: Update Oniguruma to 6.9.0
[mirror_edk2.git] / MdeModulePkg / Universal / RegularExpressionDxe / Oniguruma / regenc.h
CommitLineData
14b0e578
CS
1#ifndef REGENC_H\r
2#define REGENC_H\r
3/**********************************************************************\r
4 regenc.h - Oniguruma (regular expression library)\r
5**********************************************************************/\r
6/*-\r
b602265d 7 * Copyright (c) 2002-2018 K.Kosako <sndgk393 AT ybb DOT ne DOT jp>\r
14b0e578
CS
8 * All rights reserved.\r
9 *\r
10 * Redistribution and use in source and binary forms, with or without\r
11 * modification, are permitted provided that the following conditions\r
12 * are met:\r
13 * 1. Redistributions of source code must retain the above copyright\r
14 * notice, this list of conditions and the following disclaimer.\r
15 * 2. Redistributions in binary form must reproduce the above copyright\r
16 * notice, this list of conditions and the following disclaimer in the\r
17 * documentation and/or other materials provided with the distribution.\r
18 *\r
19 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\r
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\r
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\r
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\r
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\r
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\r
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\r
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\r
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\r
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\r
29 * SUCH DAMAGE.\r
30 */\r
31\r
b602265d
DG
32#ifndef ONIGURUMA_EXPORT\r
33#define ONIGURUMA_EXPORT\r
14b0e578
CS
34#endif\r
35\r
b602265d
DG
36//#include "config.h"\r
37//#include <stddef.h>\r
38\r
14b0e578
CS
39#ifdef ONIG_ESCAPE_UCHAR_COLLISION\r
40#undef ONIG_ESCAPE_UCHAR_COLLISION\r
41#endif\r
42\r
43#include "oniguruma.h"\r
44\r
45typedef struct {\r
46 OnigCodePoint from;\r
47 OnigCodePoint to;\r
48} OnigPairCaseFoldCodes;\r
49\r
50\r
51#ifndef NULL\r
52#define NULL ((void* )0)\r
53#endif\r
54\r
55#ifndef TRUE\r
56#define TRUE 1\r
57#endif\r
58\r
59#ifndef FALSE\r
60#define FALSE 0\r
61#endif\r
62\r
63#ifndef ARG_UNUSED\r
64#if defined(__GNUC__)\r
65# define ARG_UNUSED __attribute__ ((unused))\r
66#else\r
67# define ARG_UNUSED\r
68#endif\r
69#endif\r
70\r
71#define ONIG_IS_NULL(p) (((void*)(p)) == (void*)0)\r
72#define ONIG_IS_NOT_NULL(p) (((void*)(p)) != (void*)0)\r
73#define ONIG_CHECK_NULL_RETURN(p) if (ONIG_IS_NULL(p)) return NULL\r
74#define ONIG_CHECK_NULL_RETURN_VAL(p,val) if (ONIG_IS_NULL(p)) return (val)\r
75\r
b602265d
DG
76#define MAX_CODE_POINT (~((OnigCodePoint )0))\r
77\r
78#define enclen(enc,p) ONIGENC_MBC_ENC_LEN(enc,p)\r
14b0e578
CS
79\r
80/* character types bit flag */\r
81#define BIT_CTYPE_NEWLINE (1<< ONIGENC_CTYPE_NEWLINE)\r
82#define BIT_CTYPE_ALPHA (1<< ONIGENC_CTYPE_ALPHA)\r
83#define BIT_CTYPE_BLANK (1<< ONIGENC_CTYPE_BLANK)\r
84#define BIT_CTYPE_CNTRL (1<< ONIGENC_CTYPE_CNTRL)\r
85#define BIT_CTYPE_DIGIT (1<< ONIGENC_CTYPE_DIGIT)\r
86#define BIT_CTYPE_GRAPH (1<< ONIGENC_CTYPE_GRAPH)\r
87#define BIT_CTYPE_LOWER (1<< ONIGENC_CTYPE_LOWER)\r
88#define BIT_CTYPE_PRINT (1<< ONIGENC_CTYPE_PRINT)\r
89#define BIT_CTYPE_PUNCT (1<< ONIGENC_CTYPE_PUNCT)\r
90#define BIT_CTYPE_SPACE (1<< ONIGENC_CTYPE_SPACE)\r
91#define BIT_CTYPE_UPPER (1<< ONIGENC_CTYPE_UPPER)\r
92#define BIT_CTYPE_XDIGIT (1<< ONIGENC_CTYPE_XDIGIT)\r
93#define BIT_CTYPE_WORD (1<< ONIGENC_CTYPE_WORD)\r
94#define BIT_CTYPE_ALNUM (1<< ONIGENC_CTYPE_ALNUM)\r
95#define BIT_CTYPE_ASCII (1<< ONIGENC_CTYPE_ASCII)\r
96\r
97#define CTYPE_TO_BIT(ctype) (1<<(ctype))\r
98#define CTYPE_IS_WORD_GRAPH_PRINT(ctype) \\r
99 ((ctype) == ONIGENC_CTYPE_WORD || (ctype) == ONIGENC_CTYPE_GRAPH ||\\r
100 (ctype) == ONIGENC_CTYPE_PRINT)\r
101\r
102\r
103typedef struct {\r
104 UChar *name;\r
105 int ctype;\r
106 short int len;\r
107} PosixBracketEntryType;\r
108\r
b602265d
DG
109struct PropertyNameCtype {\r
110 char *name;\r
111 int ctype;\r
112};\r
14b0e578
CS
113\r
114/* #define USE_CRNL_AS_LINE_TERMINATOR */\r
115#define USE_UNICODE_PROPERTIES\r
b602265d 116#define USE_UNICODE_EXTENDED_GRAPHEME_CLUSTER\r
14b0e578 117/* #define USE_UNICODE_CASE_FOLD_TURKISH_AZERI */\r
b602265d 118/* #define USE_UNICODE_ALL_LINE_TERMINATORS */ /* see Unicode.org UTS #18 */\r
14b0e578
CS
119\r
120\r
121#define ONIG_ENCODING_INIT_DEFAULT ONIG_ENCODING_ASCII\r
122\r
b602265d
DG
123\r
124#define ENC_FLAG_ASCII_COMPATIBLE (1<<0)\r
125#define ENC_FLAG_UNICODE (1<<1)\r
126\r
127\r
14b0e578 128/* for encoding system implementation (internal) */\r
b602265d
DG
129extern int onigenc_end(void);\r
130extern int onigenc_ascii_apply_all_case_fold P_((OnigCaseFoldType flag, OnigApplyAllCaseFoldFunc f, void* arg));\r
131extern int onigenc_ascii_get_case_fold_codes_by_str P_((OnigCaseFoldType flag, const OnigUChar* p, const OnigUChar* end, OnigCaseFoldCodeItem items[]));\r
132extern int onigenc_apply_all_case_fold_with_map P_((int map_size, const OnigPairCaseFoldCodes map[], int ess_tsett_flag, OnigCaseFoldType flag, OnigApplyAllCaseFoldFunc f, void* arg));\r
133extern int onigenc_get_case_fold_codes_by_str_with_map P_((int map_size, const OnigPairCaseFoldCodes map[], int ess_tsett_flag, OnigCaseFoldType flag, const OnigUChar* p, const OnigUChar* end, OnigCaseFoldCodeItem items[]));\r
134extern int onigenc_not_support_get_ctype_code_range P_((OnigCtype ctype, OnigCodePoint* sb_out, const OnigCodePoint* ranges[]));\r
135extern int onigenc_is_mbc_newline_0x0a P_((const UChar* p, const UChar* end));\r
14b0e578
CS
136\r
137\r
138/* methods for single byte encoding */\r
b602265d
DG
139extern int onigenc_ascii_mbc_case_fold P_((OnigCaseFoldType flag, const UChar** p, const UChar* end, UChar* lower));\r
140extern int onigenc_single_byte_mbc_enc_len P_((const UChar* p));\r
141extern OnigCodePoint onigenc_single_byte_mbc_to_code P_((const UChar* p, const UChar* end));\r
142extern int onigenc_single_byte_code_to_mbclen P_((OnigCodePoint code));\r
143extern int onigenc_single_byte_code_to_mbc P_((OnigCodePoint code, UChar *buf));\r
144extern UChar* onigenc_single_byte_left_adjust_char_head P_((const UChar* start, const UChar* s));\r
145extern int onigenc_always_true_is_allowed_reverse_match P_((const UChar* s, const UChar* end));\r
146extern int onigenc_always_false_is_allowed_reverse_match P_((const UChar* s, const UChar* end));\r
147extern int onigenc_always_true_is_valid_mbc_string P_((const UChar* s, const UChar* end));\r
148extern int onigenc_length_check_is_valid_mbc_string P_((OnigEncoding enc, const UChar* s, const UChar* end));\r
14b0e578
CS
149\r
150/* methods for multi byte encoding */\r
b602265d
DG
151extern OnigCodePoint onigenc_mbn_mbc_to_code P_((OnigEncoding enc, const UChar* p, const UChar* end));\r
152extern int onigenc_mbn_mbc_case_fold P_((OnigEncoding enc, OnigCaseFoldType flag, const UChar** p, const UChar* end, UChar* lower));\r
153extern int onigenc_mb2_code_to_mbclen P_((OnigCodePoint code));\r
154extern int onigenc_mb2_code_to_mbc P_((OnigEncoding enc, OnigCodePoint code, UChar *buf));\r
155extern int onigenc_minimum_property_name_to_ctype P_((OnigEncoding enc, UChar* p, UChar* end));\r
156extern int onigenc_unicode_property_name_to_ctype P_((OnigEncoding enc, UChar* p, UChar* end));\r
157extern int onigenc_is_mbc_word_ascii P_((OnigEncoding enc, UChar* s, const UChar* end));\r
158extern int onigenc_mb2_is_code_ctype P_((OnigEncoding enc, OnigCodePoint code, unsigned int ctype));\r
159extern int onigenc_mb4_code_to_mbclen P_((OnigCodePoint code));\r
160extern int onigenc_mb4_code_to_mbc P_((OnigEncoding enc, OnigCodePoint code, UChar *buf));\r
161extern int onigenc_mb4_is_code_ctype P_((OnigEncoding enc, OnigCodePoint code, unsigned int ctype));\r
162extern struct PropertyNameCtype* onigenc_euc_jp_lookup_property_name P_((register const char *str, register size_t len));\r
163extern struct PropertyNameCtype* onigenc_sjis_lookup_property_name P_((register const char *str, register size_t len));\r
14b0e578
CS
164\r
165/* in enc/unicode.c */\r
b602265d
DG
166extern int onigenc_unicode_is_code_ctype P_((OnigCodePoint code, unsigned int ctype));\r
167extern int onigenc_utf16_32_get_ctype_code_range P_((OnigCtype ctype, OnigCodePoint *sb_out, const OnigCodePoint* ranges[]));\r
168extern int onigenc_unicode_ctype_code_range P_((OnigCtype ctype, const OnigCodePoint* ranges[]));\r
169extern int onigenc_unicode_get_case_fold_codes_by_str P_((OnigEncoding enc, OnigCaseFoldType flag, const OnigUChar* p, const OnigUChar* end, OnigCaseFoldCodeItem items[]));\r
170extern int onigenc_unicode_mbc_case_fold P_((OnigEncoding enc, OnigCaseFoldType flag, const UChar** pp, const UChar* end, UChar* fold));\r
171extern int onigenc_unicode_apply_all_case_fold P_((OnigCaseFoldType flag, OnigApplyAllCaseFoldFunc f, void* arg));\r
172extern int onigenc_egcb_is_break_position P_((OnigEncoding enc, UChar* p, UChar* prev, const UChar* start, const UChar* end));\r
14b0e578
CS
173\r
174\r
175#define UTF16_IS_SURROGATE_FIRST(c) (((c) & 0xfc) == 0xd8)\r
176#define UTF16_IS_SURROGATE_SECOND(c) (((c) & 0xfc) == 0xdc)\r
177\r
b602265d
DG
178/* from unicode generated codes */\r
179#define FOLDS1_FOLD(i) (OnigUnicodeFolds1 + (i))\r
180#define FOLDS2_FOLD(i) (OnigUnicodeFolds2 + (i))\r
181#define FOLDS3_FOLD(i) (OnigUnicodeFolds3 + (i))\r
182#define FOLDS1_UNFOLDS_NUM(i) (OnigUnicodeFolds1[(i)+1])\r
183#define FOLDS2_UNFOLDS_NUM(i) (OnigUnicodeFolds2[(i)+2])\r
184#define FOLDS3_UNFOLDS_NUM(i) (OnigUnicodeFolds3[(i)+3])\r
185#define FOLDS1_UNFOLDS(i) (OnigUnicodeFolds1 + (i) + 2)\r
186#define FOLDS2_UNFOLDS(i) (OnigUnicodeFolds2 + (i) + 3)\r
187#define FOLDS3_UNFOLDS(i) (OnigUnicodeFolds3 + (i) + 4)\r
188#define FOLDS1_NEXT_INDEX(i) ((i) + 2 + OnigUnicodeFolds1[(i)+1])\r
189#define FOLDS2_NEXT_INDEX(i) ((i) + 3 + OnigUnicodeFolds2[(i)+2])\r
190#define FOLDS3_NEXT_INDEX(i) ((i) + 4 + OnigUnicodeFolds3[(i)+3])\r
191\r
192#define FOLDS_FOLD_ADDR_BUK(buk, addr) do {\\r
193 if ((buk)->fold_len == 1)\\r
194 addr = OnigUnicodeFolds1 + (buk)->index;\\r
195 else if ((buk)->fold_len == 2)\\r
196 addr = OnigUnicodeFolds2 + (buk)->index;\\r
197 else if ((buk)->fold_len == 3)\\r
198 addr = OnigUnicodeFolds3 + (buk)->index;\\r
199 else\\r
200 addr = 0;\\r
201} while (0)\r
202\r
203extern OnigCodePoint OnigUnicodeFolds1[];\r
204extern OnigCodePoint OnigUnicodeFolds2[];\r
205extern OnigCodePoint OnigUnicodeFolds3[];\r
206\r
207struct ByUnfoldKey {\r
208 OnigCodePoint code;\r
209 short int index;\r
210 short int fold_len;\r
211};\r
212\r
213extern const struct ByUnfoldKey* onigenc_unicode_unfold_key(OnigCodePoint code);\r
214extern int onigenc_unicode_fold1_key(OnigCodePoint code[]);\r
215extern int onigenc_unicode_fold2_key(OnigCodePoint code[]);\r
216extern int onigenc_unicode_fold3_key(OnigCodePoint code[]);\r
217\r
218extern int onig_codes_cmp(OnigCodePoint a[], OnigCodePoint b[], int n);\r
219extern int onig_codes_byte_at(OnigCodePoint code[], int at);\r
220\r
221\r
222\r
14b0e578
CS
223#define ONIGENC_ISO_8859_1_TO_LOWER_CASE(c) \\r
224 OnigEncISO_8859_1_ToLowerCaseTable[c]\r
225#define ONIGENC_ISO_8859_1_TO_UPPER_CASE(c) \\r
226 OnigEncISO_8859_1_ToUpperCaseTable[c]\r
227\r
b602265d
DG
228extern const UChar OnigEncISO_8859_1_ToLowerCaseTable[];\r
229extern const UChar OnigEncISO_8859_1_ToUpperCaseTable[];\r
14b0e578 230\r
b602265d 231extern int\r
14b0e578 232onigenc_with_ascii_strncmp P_((OnigEncoding enc, const UChar* p, const UChar* end, const UChar* sascii /* ascii */, int n));\r
b602265d 233extern UChar*\r
14b0e578
CS
234onigenc_step P_((OnigEncoding enc, const UChar* p, const UChar* end, int n));\r
235\r
236/* defined in regexec.c, but used in enc/xxx.c */\r
237extern int onig_is_in_code_range P_((const UChar* p, OnigCodePoint code));\r
238\r
b602265d
DG
239extern OnigEncoding OnigEncDefaultCharEncoding;\r
240extern const UChar OnigEncAsciiToLowerCaseTable[];\r
241extern const UChar OnigEncAsciiToUpperCaseTable[];\r
242extern const unsigned short OnigEncAsciiCtypeTable[];\r
243\r
14b0e578
CS
244\r
245#define ONIGENC_IS_ASCII_CODE(code) ((code) < 0x80)\r
246#define ONIGENC_ASCII_CODE_TO_LOWER_CASE(c) OnigEncAsciiToLowerCaseTable[c]\r
247#define ONIGENC_ASCII_CODE_TO_UPPER_CASE(c) OnigEncAsciiToUpperCaseTable[c]\r
248#define ONIGENC_IS_ASCII_CODE_CTYPE(code,ctype) \\r
249 ((OnigEncAsciiCtypeTable[code] & CTYPE_TO_BIT(ctype)) != 0)\r
b602265d
DG
250#define ONIGENC_IS_ASCII_CODE_WORD(code) \\r
251 ((OnigEncAsciiCtypeTable[code] & CTYPE_TO_BIT(ONIGENC_CTYPE_WORD)) != 0)\r
14b0e578
CS
252#define ONIGENC_IS_ASCII_CODE_CASE_AMBIG(code) \\r
253 (ONIGENC_IS_ASCII_CODE_CTYPE(code, ONIGENC_CTYPE_UPPER) ||\\r
254 ONIGENC_IS_ASCII_CODE_CTYPE(code, ONIGENC_CTYPE_LOWER))\r
255 \r
b602265d
DG
256#define ONIGENC_IS_UNICODE_ENCODING(enc) \\r
257 (((enc)->flag & ENC_FLAG_UNICODE) != 0)\r
258\r
259#define ONIGENC_IS_ASCII_COMPATIBLE_ENCODING(enc) \\r
260 (((enc)->flag & ENC_FLAG_ASCII_COMPATIBLE) != 0)\r
14b0e578
CS
261\r
262#endif /* REGENC_H */\r