onigposix.h 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. #ifndef ONIGPOSIX_H
  2. #define ONIGPOSIX_H
  3. /**********************************************************************
  4. onigposix.h - Oniguruma (regular expression library)
  5. **********************************************************************/
  6. /*-
  7. * Copyright (c) 2002-2005 K.Kosako <sndgk393 AT ybb DOT ne DOT jp>
  8. * All rights reserved.
  9. *
  10. * Redistribution and use in source and binary forms, with or without
  11. * modification, are permitted provided that the following conditions
  12. * are met:
  13. * 1. Redistributions of source code must retain the above copyright
  14. * notice, this list of conditions and the following disclaimer.
  15. * 2. Redistributions in binary form must reproduce the above copyright
  16. * notice, this list of conditions and the following disclaimer in the
  17. * documentation and/or other materials provided with the distribution.
  18. *
  19. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  20. * 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 AUTHOR OR CONTRIBUTORS BE LIABLE
  23. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  24. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  25. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  26. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  27. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  28. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  29. * SUCH DAMAGE.
  30. */
  31. #include <stdlib.h>
  32. #ifdef __cplusplus
  33. extern "C" {
  34. #endif
  35. /* options */
  36. #define REG_ICASE (1<<0)
  37. #define REG_NEWLINE (1<<1)
  38. #define REG_NOTBOL (1<<2)
  39. #define REG_NOTEOL (1<<3)
  40. #define REG_EXTENDED (1<<4) /* if not setted, Basic Onigular Expression */
  41. #define REG_NOSUB (1<<5)
  42. /* POSIX error codes */
  43. #define REG_NOMATCH 1
  44. #define REG_BADPAT 2
  45. #define REG_ECOLLATE 3
  46. #define REG_ECTYPE 4
  47. #define REG_EESCAPE 5
  48. #define REG_ESUBREG 6
  49. #define REG_EBRACK 7
  50. #define REG_EPAREN 8
  51. #define REG_EBRACE 9
  52. #define REG_BADBR 10
  53. #define REG_ERANGE 11
  54. #define REG_ESPACE 12
  55. #define REG_BADRPT 13
  56. /* extended error codes */
  57. #define REG_EONIG_INTERNAL 14
  58. #define REG_EONIG_BADWC 15
  59. #define REG_EONIG_BADARG 16
  60. #define REG_EONIG_THREAD 17
  61. /* character encodings (for reg_set_encoding()) */
  62. #define REG_POSIX_ENCODING_ASCII 0
  63. #define REG_POSIX_ENCODING_EUC_JP 1
  64. #define REG_POSIX_ENCODING_SJIS 2
  65. #define REG_POSIX_ENCODING_UTF8 3
  66. #define REG_POSIX_ENCODING_UTF16_BE 4
  67. #define REG_POSIX_ENCODING_UTF16_LE 5
  68. typedef int regoff_t;
  69. typedef struct {
  70. regoff_t rm_so;
  71. regoff_t rm_eo;
  72. } regmatch_t;
  73. /* POSIX regex_t */
  74. typedef struct {
  75. void* onig; /* Oniguruma regex_t* */
  76. size_t re_nsub;
  77. int comp_options;
  78. } regex_t;
  79. #ifndef P_
  80. #if defined(__STDC__) || defined(_WIN32)
  81. # define P_(args) args
  82. #else
  83. # define P_(args) ()
  84. #endif
  85. #endif
  86. #ifndef ONIG_EXTERN
  87. #if defined(_WIN32) && !defined(__GNUC__)
  88. #if defined(EXPORT)
  89. #define ONIG_EXTERN extern __declspec(dllexport)
  90. #else
  91. #define ONIG_EXTERN extern __declspec(dllimport)
  92. #endif
  93. #endif
  94. #endif
  95. #ifndef ONIG_EXTERN
  96. #define ONIG_EXTERN extern
  97. #endif
  98. #ifndef ONIGURUMA_H
  99. typedef unsigned int OnigOptionType;
  100. /* syntax */
  101. typedef struct {
  102. unsigned int op;
  103. unsigned int op2;
  104. unsigned int behavior;
  105. OnigOptionType options; /* default option */
  106. } OnigSyntaxType;
  107. ONIG_EXTERN OnigSyntaxType OnigSyntaxPosixBasic;
  108. ONIG_EXTERN OnigSyntaxType OnigSyntaxPosixExtended;
  109. ONIG_EXTERN OnigSyntaxType OnigSyntaxEmacs;
  110. ONIG_EXTERN OnigSyntaxType OnigSyntaxGrep;
  111. ONIG_EXTERN OnigSyntaxType OnigSyntaxGnuRegex;
  112. ONIG_EXTERN OnigSyntaxType OnigSyntaxJava;
  113. ONIG_EXTERN OnigSyntaxType OnigSyntaxPerl;
  114. ONIG_EXTERN OnigSyntaxType OnigSyntaxRuby;
  115. /* predefined syntaxes (see regsyntax.c) */
  116. #define ONIG_SYNTAX_POSIX_BASIC (&OnigSyntaxPosixBasic)
  117. #define ONIG_SYNTAX_POSIX_EXTENDED (&OnigSyntaxPosixExtended)
  118. #define ONIG_SYNTAX_EMACS (&OnigSyntaxEmacs)
  119. #define ONIG_SYNTAX_GREP (&OnigSyntaxGrep)
  120. #define ONIG_SYNTAX_GNU_REGEX (&OnigSyntaxGnuRegex)
  121. #define ONIG_SYNTAX_JAVA (&OnigSyntaxJava)
  122. #define ONIG_SYNTAX_PERL (&OnigSyntaxPerl)
  123. #define ONIG_SYNTAX_RUBY (&OnigSyntaxRuby)
  124. /* default syntax */
  125. #define ONIG_SYNTAX_DEFAULT OnigDefaultSyntax
  126. ONIG_EXTERN OnigSyntaxType* OnigDefaultSyntax;
  127. ONIG_EXTERN int onig_set_default_syntax P_((OnigSyntaxType* syntax));
  128. ONIG_EXTERN void onig_copy_syntax P_((OnigSyntaxType* to, OnigSyntaxType* from));
  129. ONIG_EXTERN const char* onig_version P_((void));
  130. ONIG_EXTERN const char* onig_copyright P_((void));
  131. #endif /* ONIGURUMA_H */
  132. ONIG_EXTERN int regcomp P_((regex_t* reg, const char* pat, int options));
  133. ONIG_EXTERN int regexec P_((regex_t* reg, const char* str, size_t nmatch, regmatch_t* matches, int options));
  134. ONIG_EXTERN void regfree P_((regex_t* reg));
  135. ONIG_EXTERN size_t regerror P_((int code, const regex_t* reg, char* buf, size_t size));
  136. /* extended API */
  137. ONIG_EXTERN void reg_set_encoding P_((int enc));
  138. ONIG_EXTERN int reg_name_to_group_numbers P_((regex_t* reg, const unsigned char* name, const unsigned char* name_end, int** nums));
  139. ONIG_EXTERN int reg_foreach_name P_((regex_t* reg, int (*func)(const unsigned char*, const unsigned char*,int,int*,regex_t*,void*), void* arg));
  140. ONIG_EXTERN int reg_number_of_names P_((regex_t* reg));
  141. #ifdef __cplusplus
  142. }
  143. #endif
  144. #endif /* ONIGPOSIX_H */