Blame src/regenc.h

Packit Service bd74e6
#ifndef REGENC_H
Packit Service bd74e6
#define REGENC_H
Packit Service bd74e6
/**********************************************************************
Packit Service bd74e6
  regenc.h -  Oniguruma (regular expression library)
Packit Service bd74e6
**********************************************************************/
Packit Service bd74e6
/*-
Packit Service bd74e6
 * Copyright (c) 2002-2018  K.Kosako  <sndgk393 AT ybb DOT ne DOT jp>
Packit Service bd74e6
 * All rights reserved.
Packit Service bd74e6
 *
Packit Service bd74e6
 * Redistribution and use in source and binary forms, with or without
Packit Service bd74e6
 * modification, are permitted provided that the following conditions
Packit Service bd74e6
 * are met:
Packit Service bd74e6
 * 1. Redistributions of source code must retain the above copyright
Packit Service bd74e6
 *    notice, this list of conditions and the following disclaimer.
Packit Service bd74e6
 * 2. Redistributions in binary form must reproduce the above copyright
Packit Service bd74e6
 *    notice, this list of conditions and the following disclaimer in the
Packit Service bd74e6
 *    documentation and/or other materials provided with the distribution.
Packit Service bd74e6
 *
Packit Service bd74e6
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
Packit Service bd74e6
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Packit Service bd74e6
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
Packit Service bd74e6
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
Packit Service bd74e6
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Packit Service bd74e6
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
Packit Service bd74e6
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
Packit Service bd74e6
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
Packit Service bd74e6
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
Packit Service bd74e6
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
Packit Service bd74e6
 * SUCH DAMAGE.
Packit Service bd74e6
 */
Packit Service bd74e6
Packit Service bd74e6
#ifndef ONIGURUMA_EXPORT
Packit Service bd74e6
#define ONIGURUMA_EXPORT
Packit Service bd74e6
#endif
Packit Service bd74e6
Packit Service bd74e6
#include "config.h"
Packit Service bd74e6
Packit Service bd74e6
#ifdef ONIG_ESCAPE_UCHAR_COLLISION
Packit Service bd74e6
#undef ONIG_ESCAPE_UCHAR_COLLISION
Packit Service bd74e6
#endif
Packit Service bd74e6
Packit Service bd74e6
#include "oniguruma.h"
Packit Service bd74e6
Packit Service bd74e6
typedef struct {
Packit Service bd74e6
  OnigCodePoint from;
Packit Service bd74e6
  OnigCodePoint to;
Packit Service bd74e6
} OnigPairCaseFoldCodes;
Packit Service bd74e6
Packit Service bd74e6
Packit Service bd74e6
#ifndef NULL
Packit Service bd74e6
#define NULL   ((void* )0)
Packit Service bd74e6
#endif
Packit Service bd74e6
Packit Service bd74e6
#ifndef TRUE
Packit Service bd74e6
#define TRUE    1
Packit Service bd74e6
#endif
Packit Service bd74e6
Packit Service bd74e6
#ifndef FALSE
Packit Service bd74e6
#define FALSE   0
Packit Service bd74e6
#endif
Packit Service bd74e6
Packit Service bd74e6
#ifndef ARG_UNUSED
Packit Service bd74e6
#if defined(__GNUC__)
Packit Service bd74e6
#  define ARG_UNUSED  __attribute__ ((unused))
Packit Service bd74e6
#else
Packit Service bd74e6
#  define ARG_UNUSED
Packit Service bd74e6
#endif
Packit Service bd74e6
#endif
Packit Service bd74e6
Packit Service bd74e6
#define ONIG_IS_NULL(p)                    (((void*)(p)) == (void*)0)
Packit Service bd74e6
#define ONIG_IS_NOT_NULL(p)                (((void*)(p)) != (void*)0)
Packit Service bd74e6
#define ONIG_CHECK_NULL_RETURN(p)          if (ONIG_IS_NULL(p)) return NULL
Packit Service bd74e6
#define ONIG_CHECK_NULL_RETURN_VAL(p,val)  if (ONIG_IS_NULL(p)) return (val)
Packit Service bd74e6
Packit Service bd74e6
#define MAX_CODE_POINT         (~((OnigCodePoint )0))
Packit Service bd74e6
Packit Service bd74e6
#define enclen(enc,p)          ONIGENC_MBC_ENC_LEN(enc,p)
Packit Service bd74e6
Packit Service bd74e6
/* character types bit flag */
Packit Service bd74e6
#define BIT_CTYPE_NEWLINE  (1<< ONIGENC_CTYPE_NEWLINE)
Packit Service bd74e6
#define BIT_CTYPE_ALPHA    (1<< ONIGENC_CTYPE_ALPHA)
Packit Service bd74e6
#define BIT_CTYPE_BLANK    (1<< ONIGENC_CTYPE_BLANK)
Packit Service bd74e6
#define BIT_CTYPE_CNTRL    (1<< ONIGENC_CTYPE_CNTRL)
Packit Service bd74e6
#define BIT_CTYPE_DIGIT    (1<< ONIGENC_CTYPE_DIGIT)
Packit Service bd74e6
#define BIT_CTYPE_GRAPH    (1<< ONIGENC_CTYPE_GRAPH)
Packit Service bd74e6
#define BIT_CTYPE_LOWER    (1<< ONIGENC_CTYPE_LOWER)
Packit Service bd74e6
#define BIT_CTYPE_PRINT    (1<< ONIGENC_CTYPE_PRINT)
Packit Service bd74e6
#define BIT_CTYPE_PUNCT    (1<< ONIGENC_CTYPE_PUNCT)
Packit Service bd74e6
#define BIT_CTYPE_SPACE    (1<< ONIGENC_CTYPE_SPACE)
Packit Service bd74e6
#define BIT_CTYPE_UPPER    (1<< ONIGENC_CTYPE_UPPER)
Packit Service bd74e6
#define BIT_CTYPE_XDIGIT   (1<< ONIGENC_CTYPE_XDIGIT)
Packit Service bd74e6
#define BIT_CTYPE_WORD     (1<< ONIGENC_CTYPE_WORD)
Packit Service bd74e6
#define BIT_CTYPE_ALNUM    (1<< ONIGENC_CTYPE_ALNUM)
Packit Service bd74e6
#define BIT_CTYPE_ASCII    (1<< ONIGENC_CTYPE_ASCII)
Packit Service bd74e6
Packit Service bd74e6
#define CTYPE_TO_BIT(ctype)  (1<<(ctype))
Packit Service bd74e6
#define CTYPE_IS_WORD_GRAPH_PRINT(ctype) \
Packit Service bd74e6
  ((ctype) == ONIGENC_CTYPE_WORD || (ctype) == ONIGENC_CTYPE_GRAPH ||\
Packit Service bd74e6
   (ctype) == ONIGENC_CTYPE_PRINT)
Packit Service bd74e6
Packit Service bd74e6
Packit Service bd74e6
typedef struct {
Packit Service bd74e6
  UChar    *name;
Packit Service bd74e6
  int       ctype;
Packit Service bd74e6
  short int len;
Packit Service bd74e6
} PosixBracketEntryType;
Packit Service bd74e6
Packit Service bd74e6
struct PropertyNameCtype {
Packit Service bd74e6
  char *name;
Packit Service bd74e6
  int ctype;
Packit Service bd74e6
};
Packit Service bd74e6
Packit Service bd74e6
/* #define USE_CRNL_AS_LINE_TERMINATOR */
Packit Service bd74e6
#define USE_UNICODE_PROPERTIES
Packit Service bd74e6
#define USE_UNICODE_EXTENDED_GRAPHEME_CLUSTER
Packit Service bd74e6
/* #define USE_UNICODE_CASE_FOLD_TURKISH_AZERI */
Packit Service bd74e6
/* #define USE_UNICODE_ALL_LINE_TERMINATORS */  /* see Unicode.org UTS #18 */
Packit Service bd74e6
Packit Service bd74e6
Packit Service bd74e6
#define ONIG_ENCODING_INIT_DEFAULT           ONIG_ENCODING_ASCII
Packit Service bd74e6
Packit Service bd74e6
Packit Service bd74e6
#define ENC_FLAG_ASCII_COMPATIBLE      (1<<0)
Packit Service bd74e6
#define ENC_FLAG_UNICODE               (1<<1)
Packit Service bd74e6
Packit Service bd74e6
Packit Service bd74e6
/* for encoding system implementation (internal) */
Packit Service bd74e6
extern int onigenc_end(void);
Packit Service bd74e6
extern int onigenc_ascii_apply_all_case_fold P_((OnigCaseFoldType flag, OnigApplyAllCaseFoldFunc f, void* arg));
Packit Service bd74e6
extern int onigenc_ascii_get_case_fold_codes_by_str P_((OnigCaseFoldType flag, const OnigUChar* p, const OnigUChar* end, OnigCaseFoldCodeItem items[]));
Packit Service bd74e6
extern 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));
Packit Service bd74e6
extern 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[]));
Packit Service bd74e6
extern int onigenc_not_support_get_ctype_code_range P_((OnigCtype ctype, OnigCodePoint* sb_out, const OnigCodePoint* ranges[]));
Packit Service bd74e6
extern int onigenc_is_mbc_newline_0x0a P_((const UChar* p, const UChar* end));
Packit Service bd74e6
Packit Service bd74e6
Packit Service bd74e6
/* methods for single byte encoding */
Packit Service bd74e6
extern int onigenc_ascii_mbc_case_fold P_((OnigCaseFoldType flag, const UChar** p, const UChar* end, UChar* lower));
Packit Service bd74e6
extern int onigenc_single_byte_mbc_enc_len P_((const UChar* p));
Packit Service bd74e6
extern OnigCodePoint onigenc_single_byte_mbc_to_code P_((const UChar* p, const UChar* end));
Packit Service bd74e6
extern int onigenc_single_byte_code_to_mbclen P_((OnigCodePoint code));
Packit Service bd74e6
extern int onigenc_single_byte_code_to_mbc P_((OnigCodePoint code, UChar *buf));
Packit Service bd74e6
extern UChar* onigenc_single_byte_left_adjust_char_head P_((const UChar* start, const UChar* s));
Packit Service bd74e6
extern int onigenc_always_true_is_allowed_reverse_match P_((const UChar* s, const UChar* end));
Packit Service bd74e6
extern int onigenc_always_false_is_allowed_reverse_match P_((const UChar* s, const UChar* end));
Packit Service bd74e6
extern int onigenc_always_true_is_valid_mbc_string P_((const UChar* s, const UChar* end));
Packit Service bd74e6
extern int onigenc_length_check_is_valid_mbc_string P_((OnigEncoding enc, const UChar* s, const UChar* end));
Packit Service bd74e6
Packit Service bd74e6
/* methods for multi byte encoding */
Packit Service bd74e6
extern OnigCodePoint onigenc_mbn_mbc_to_code P_((OnigEncoding enc, const UChar* p, const UChar* end));
Packit Service bd74e6
extern int onigenc_mbn_mbc_case_fold P_((OnigEncoding enc, OnigCaseFoldType flag, const UChar** p, const UChar* end, UChar* lower));
Packit Service bd74e6
extern int onigenc_mb2_code_to_mbclen P_((OnigCodePoint code));
Packit Service bd74e6
extern int onigenc_mb2_code_to_mbc P_((OnigEncoding enc, OnigCodePoint code, UChar *buf));
Packit Service bd74e6
extern int onigenc_minimum_property_name_to_ctype P_((OnigEncoding enc, UChar* p, UChar* end));
Packit Service bd74e6
extern int onigenc_unicode_property_name_to_ctype P_((OnigEncoding enc, UChar* p, UChar* end));
Packit Service bd74e6
extern int onigenc_is_mbc_word_ascii P_((OnigEncoding enc, UChar* s, const UChar* end));
Packit Service bd74e6
extern int onigenc_mb2_is_code_ctype P_((OnigEncoding enc, OnigCodePoint code, unsigned int ctype));
Packit Service bd74e6
extern int onigenc_mb4_code_to_mbclen P_((OnigCodePoint code));
Packit Service bd74e6
extern int onigenc_mb4_code_to_mbc P_((OnigEncoding enc, OnigCodePoint code, UChar *buf));
Packit Service bd74e6
extern int onigenc_mb4_is_code_ctype P_((OnigEncoding enc, OnigCodePoint code, unsigned int ctype));
Packit Service bd74e6
extern struct PropertyNameCtype* euc_jp_lookup_property_name P_((register const char *str, register unsigned int len));
Packit Service bd74e6
extern struct PropertyNameCtype* sjis_lookup_property_name P_((register const char *str, register unsigned int len));
Packit Service bd74e6
/* extern const struct PropertyNameCtype* unicode_lookup_property_name P_((register const char *str, register unsigned int len)); */
Packit Service bd74e6
Packit Service bd74e6
/* in enc/unicode.c */
Packit Service bd74e6
extern int onigenc_unicode_is_code_ctype P_((OnigCodePoint code, unsigned int ctype));
Packit Service bd74e6
extern int onigenc_utf16_32_get_ctype_code_range P_((OnigCtype ctype, OnigCodePoint *sb_out, const OnigCodePoint* ranges[]));
Packit Service bd74e6
extern int onigenc_unicode_ctype_code_range P_((OnigCtype ctype, const OnigCodePoint* ranges[]));
Packit Service bd74e6
extern int onigenc_unicode_get_case_fold_codes_by_str P_((OnigEncoding enc, OnigCaseFoldType flag, const OnigUChar* p, const OnigUChar* end, OnigCaseFoldCodeItem items[]));
Packit Service bd74e6
extern int onigenc_unicode_mbc_case_fold P_((OnigEncoding enc, OnigCaseFoldType flag, const UChar** pp, const UChar* end, UChar* fold));
Packit Service bd74e6
extern int onigenc_unicode_apply_all_case_fold P_((OnigCaseFoldType flag, OnigApplyAllCaseFoldFunc f, void* arg));
Packit Service bd74e6
extern int onigenc_egcb_is_break_position P_((OnigEncoding enc, UChar* p, UChar* prev, const UChar* start, const UChar* end));
Packit Service bd74e6
Packit Service bd74e6
Packit Service bd74e6
#define UTF16_IS_SURROGATE_FIRST(c)    (((c) & 0xfc) == 0xd8)
Packit Service bd74e6
#define UTF16_IS_SURROGATE_SECOND(c)   (((c) & 0xfc) == 0xdc)
Packit Service bd74e6
Packit Service bd74e6
/* from unicode generated codes */
Packit Service bd74e6
#define FOLDS1_FOLD(i)         (OnigUnicodeFolds1 + (i))
Packit Service bd74e6
#define FOLDS2_FOLD(i)         (OnigUnicodeFolds2 + (i))
Packit Service bd74e6
#define FOLDS3_FOLD(i)         (OnigUnicodeFolds3 + (i))
Packit Service bd74e6
#define FOLDS1_UNFOLDS_NUM(i)  (OnigUnicodeFolds1[(i)+1])
Packit Service bd74e6
#define FOLDS2_UNFOLDS_NUM(i)  (OnigUnicodeFolds2[(i)+2])
Packit Service bd74e6
#define FOLDS3_UNFOLDS_NUM(i)  (OnigUnicodeFolds3[(i)+3])
Packit Service bd74e6
#define FOLDS1_UNFOLDS(i)      (OnigUnicodeFolds1 + (i) + 2)
Packit Service bd74e6
#define FOLDS2_UNFOLDS(i)      (OnigUnicodeFolds2 + (i) + 3)
Packit Service bd74e6
#define FOLDS3_UNFOLDS(i)      (OnigUnicodeFolds3 + (i) + 4)
Packit Service bd74e6
#define FOLDS1_NEXT_INDEX(i)   ((i) + 2 + OnigUnicodeFolds1[(i)+1])
Packit Service bd74e6
#define FOLDS2_NEXT_INDEX(i)   ((i) + 3 + OnigUnicodeFolds2[(i)+2])
Packit Service bd74e6
#define FOLDS3_NEXT_INDEX(i)   ((i) + 4 + OnigUnicodeFolds3[(i)+3])
Packit Service bd74e6
Packit Service bd74e6
#define FOLDS_FOLD_ADDR_BUK(buk, addr) do {\
Packit Service bd74e6
  if ((buk)->fold_len == 1)\
Packit Service bd74e6
    addr = OnigUnicodeFolds1 + (buk)->index;\
Packit Service bd74e6
  else if ((buk)->fold_len == 2)\
Packit Service bd74e6
    addr = OnigUnicodeFolds2 + (buk)->index;\
Packit Service bd74e6
  else if ((buk)->fold_len == 3)\
Packit Service bd74e6
    addr = OnigUnicodeFolds3 + (buk)->index;\
Packit Service bd74e6
  else\
Packit Service bd74e6
    addr = 0;\
Packit Service bd74e6
} while (0)
Packit Service bd74e6
Packit Service bd74e6
extern OnigCodePoint OnigUnicodeFolds1[];
Packit Service bd74e6
extern OnigCodePoint OnigUnicodeFolds2[];
Packit Service bd74e6
extern OnigCodePoint OnigUnicodeFolds3[];
Packit Service bd74e6
Packit Service bd74e6
struct ByUnfoldKey {
Packit Service bd74e6
  OnigCodePoint code;
Packit Service bd74e6
  short int     index;
Packit Service bd74e6
  short int     fold_len;
Packit Service bd74e6
};
Packit Service bd74e6
Packit Service bd74e6
extern const struct ByUnfoldKey* unicode_unfold_key(OnigCodePoint code);
Packit Service bd74e6
extern int unicode_fold1_key(OnigCodePoint code[]);
Packit Service bd74e6
extern int unicode_fold2_key(OnigCodePoint code[]);
Packit Service bd74e6
extern int unicode_fold3_key(OnigCodePoint code[]);
Packit Service bd74e6
Packit Service bd74e6
extern int onig_codes_cmp(OnigCodePoint a[], OnigCodePoint b[], int n);
Packit Service bd74e6
extern int onig_codes_byte_at(OnigCodePoint code[], int at);
Packit Service bd74e6
Packit Service bd74e6
Packit Service bd74e6
Packit Service bd74e6
#define ONIGENC_ISO_8859_1_TO_LOWER_CASE(c) \
Packit Service bd74e6
  OnigEncISO_8859_1_ToLowerCaseTable[c]
Packit Service bd74e6
#define ONIGENC_ISO_8859_1_TO_UPPER_CASE(c) \
Packit Service bd74e6
  OnigEncISO_8859_1_ToUpperCaseTable[c]
Packit Service bd74e6
Packit Service bd74e6
extern const UChar OnigEncISO_8859_1_ToLowerCaseTable[];
Packit Service bd74e6
extern const UChar OnigEncISO_8859_1_ToUpperCaseTable[];
Packit Service bd74e6
Packit Service bd74e6
extern int
Packit Service bd74e6
onigenc_with_ascii_strncmp P_((OnigEncoding enc, const UChar* p, const UChar* end, const UChar* sascii /* ascii */, int n));
Packit Service bd74e6
extern UChar*
Packit Service bd74e6
onigenc_step P_((OnigEncoding enc, const UChar* p, const UChar* end, int n));
Packit Service bd74e6
Packit Service bd74e6
/* defined in regexec.c, but used in enc/xxx.c */
Packit Service bd74e6
extern int  onig_is_in_code_range P_((const UChar* p, OnigCodePoint code));
Packit Service bd74e6
Packit Service bd74e6
extern OnigEncoding  OnigEncDefaultCharEncoding;
Packit Service bd74e6
extern const UChar  OnigEncAsciiToLowerCaseTable[];
Packit Service bd74e6
extern const UChar  OnigEncAsciiToUpperCaseTable[];
Packit Service bd74e6
extern const unsigned short OnigEncAsciiCtypeTable[];
Packit Service bd74e6
Packit Service bd74e6
Packit Service bd74e6
#define ONIGENC_IS_ASCII_CODE(code)  ((code) < 0x80)
Packit Service bd74e6
#define ONIGENC_ASCII_CODE_TO_LOWER_CASE(c) OnigEncAsciiToLowerCaseTable[c]
Packit Service bd74e6
#define ONIGENC_ASCII_CODE_TO_UPPER_CASE(c) OnigEncAsciiToUpperCaseTable[c]
Packit Service bd74e6
#define ONIGENC_IS_ASCII_CODE_CTYPE(code,ctype) \
Packit Service bd74e6
  ((OnigEncAsciiCtypeTable[code] & CTYPE_TO_BIT(ctype)) != 0)
Packit Service bd74e6
#define ONIGENC_IS_ASCII_CODE_WORD(code) \
Packit Service bd74e6
  ((OnigEncAsciiCtypeTable[code] & CTYPE_TO_BIT(ONIGENC_CTYPE_WORD)) != 0)
Packit Service bd74e6
#define ONIGENC_IS_ASCII_CODE_CASE_AMBIG(code) \
Packit Service bd74e6
 (ONIGENC_IS_ASCII_CODE_CTYPE(code, ONIGENC_CTYPE_UPPER) ||\
Packit Service bd74e6
  ONIGENC_IS_ASCII_CODE_CTYPE(code, ONIGENC_CTYPE_LOWER))
Packit Service bd74e6
   
Packit Service bd74e6
#define ONIGENC_IS_UNICODE_ENCODING(enc) \
Packit Service bd74e6
  (((enc)->flag & ENC_FLAG_UNICODE) != 0)
Packit Service bd74e6
Packit Service bd74e6
#define ONIGENC_IS_ASCII_COMPATIBLE_ENCODING(enc)  \
Packit Service bd74e6
  (((enc)->flag & ENC_FLAG_ASCII_COMPATIBLE) != 0)
Packit Service bd74e6
Packit Service bd74e6
#endif /* REGENC_H */