PageRenderTime 54ms CodeModel.GetById 29ms RepoModel.GetById 1ms app.codeStats 0ms

/tags/beta3/harbour/source/hbpcre/pcre.h

#
C Header | 258 lines | 159 code | 34 blank | 65 comment | 0 complexity | 486256ea704f54917d0c6f2c480e2784 MD5 | raw file
Possible License(s): AGPL-1.0, BSD-3-Clause, CC-BY-SA-3.0, LGPL-3.0, GPL-2.0, LGPL-2.0, LGPL-2.1
  1. /*************************************************
  2. * Perl-Compatible Regular Expressions *
  3. *************************************************/
  4. /* In its original form, this is the .in file that is transformed by
  5. "configure" into pcre.h.
  6. Copyright (c) 1997-2005 University of Cambridge
  7. -----------------------------------------------------------------------------
  8. Redistribution and use in source and binary forms, with or without
  9. modification, are permitted provided that the following conditions are met:
  10. * Redistributions of source code must retain the above copyright notice,
  11. this list of conditions and the following disclaimer.
  12. * Redistributions in binary form must reproduce the above copyright
  13. notice, this list of conditions and the following disclaimer in the
  14. documentation and/or other materials provided with the distribution.
  15. * Neither the name of the University of Cambridge nor the names of its
  16. contributors may be used to endorse or promote products derived from
  17. this software without specific prior written permission.
  18. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  19. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  20. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  21. ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  22. LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  23. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  24. SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  25. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  26. CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  27. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  28. POSSIBILITY OF SUCH DAMAGE.
  29. -----------------------------------------------------------------------------
  30. */
  31. #ifndef _PCRE_H
  32. #define _PCRE_H
  33. /* The file pcre.h is build by "configure". Do not edit it; instead
  34. make changes to pcre.in. */
  35. #define PCRE_MAJOR 6
  36. #define PCRE_MINOR 3
  37. #define PCRE_DATE 15-Aug-2005
  38. /* Win32 uses DLL by default; it needs special stuff for exported functions. */
  39. #ifdef _WIN32
  40. # ifdef PCRE_DEFINITION
  41. # ifdef DLL_EXPORT
  42. # define PCRE_DATA_SCOPE __declspec(dllexport)
  43. # endif
  44. # else
  45. # ifndef PCRE_STATIC
  46. # define PCRE_DATA_SCOPE extern __declspec(dllimport)
  47. # endif
  48. # endif
  49. #endif
  50. /* For other operating systems, we use the standard "extern". */
  51. #ifndef PCRE_DATA_SCOPE
  52. # ifdef __cplusplus
  53. # define PCRE_DATA_SCOPE extern "C"
  54. # else
  55. # define PCRE_DATA_SCOPE extern
  56. # endif
  57. #endif
  58. /* Have to include stdlib.h in order to ensure that size_t is defined;
  59. it is needed here for malloc. */
  60. #include <stdlib.h>
  61. /* Allow for C++ users */
  62. #ifdef __cplusplus
  63. extern "C" {
  64. #endif
  65. /* Options */
  66. #define PCRE_CASELESS 0x00000001
  67. #define PCRE_MULTILINE 0x00000002
  68. #define PCRE_DOTALL 0x00000004
  69. #define PCRE_EXTENDED 0x00000008
  70. #define PCRE_ANCHORED 0x00000010
  71. #define PCRE_DOLLAR_ENDONLY 0x00000020
  72. #define PCRE_EXTRA 0x00000040
  73. #define PCRE_NOTBOL 0x00000080
  74. #define PCRE_NOTEOL 0x00000100
  75. #define PCRE_UNGREEDY 0x00000200
  76. #define PCRE_NOTEMPTY 0x00000400
  77. #define PCRE_UTF8 0x00000800
  78. #define PCRE_NO_AUTO_CAPTURE 0x00001000
  79. #define PCRE_NO_UTF8_CHECK 0x00002000
  80. #define PCRE_AUTO_CALLOUT 0x00004000
  81. #define PCRE_PARTIAL 0x00008000
  82. #define PCRE_DFA_SHORTEST 0x00010000
  83. #define PCRE_DFA_RESTART 0x00020000
  84. #define PCRE_FIRSTLINE 0x00040000
  85. /* Exec-time and get/set-time error codes */
  86. #define PCRE_ERROR_NOMATCH (-1)
  87. #define PCRE_ERROR_NULL (-2)
  88. #define PCRE_ERROR_BADOPTION (-3)
  89. #define PCRE_ERROR_BADMAGIC (-4)
  90. #define PCRE_ERROR_UNKNOWN_NODE (-5)
  91. #define PCRE_ERROR_NOMEMORY (-6)
  92. #define PCRE_ERROR_NOSUBSTRING (-7)
  93. #define PCRE_ERROR_MATCHLIMIT (-8)
  94. #define PCRE_ERROR_CALLOUT (-9) /* Never used by PCRE itself */
  95. #define PCRE_ERROR_BADUTF8 (-10)
  96. #define PCRE_ERROR_BADUTF8_OFFSET (-11)
  97. #define PCRE_ERROR_PARTIAL (-12)
  98. #define PCRE_ERROR_BADPARTIAL (-13)
  99. #define PCRE_ERROR_INTERNAL (-14)
  100. #define PCRE_ERROR_BADCOUNT (-15)
  101. #define PCRE_ERROR_DFA_UITEM (-16)
  102. #define PCRE_ERROR_DFA_UCOND (-17)
  103. #define PCRE_ERROR_DFA_UMLIMIT (-18)
  104. #define PCRE_ERROR_DFA_WSSIZE (-19)
  105. #define PCRE_ERROR_DFA_RECURSE (-20)
  106. /* Request types for pcre_fullinfo() */
  107. #define PCRE_INFO_OPTIONS 0
  108. #define PCRE_INFO_SIZE 1
  109. #define PCRE_INFO_CAPTURECOUNT 2
  110. #define PCRE_INFO_BACKREFMAX 3
  111. #define PCRE_INFO_FIRSTBYTE 4
  112. #define PCRE_INFO_FIRSTCHAR 4 /* For backwards compatibility */
  113. #define PCRE_INFO_FIRSTTABLE 5
  114. #define PCRE_INFO_LASTLITERAL 6
  115. #define PCRE_INFO_NAMEENTRYSIZE 7
  116. #define PCRE_INFO_NAMECOUNT 8
  117. #define PCRE_INFO_NAMETABLE 9
  118. #define PCRE_INFO_STUDYSIZE 10
  119. #define PCRE_INFO_DEFAULT_TABLES 11
  120. /* Request types for pcre_config() */
  121. #define PCRE_CONFIG_UTF8 0
  122. #define PCRE_CONFIG_NEWLINE 1
  123. #define PCRE_CONFIG_LINK_SIZE 2
  124. #define PCRE_CONFIG_POSIX_MALLOC_THRESHOLD 3
  125. #define PCRE_CONFIG_MATCH_LIMIT 4
  126. #define PCRE_CONFIG_STACKRECURSE 5
  127. #define PCRE_CONFIG_UNICODE_PROPERTIES 6
  128. /* Bit flags for the pcre_extra structure */
  129. #define PCRE_EXTRA_STUDY_DATA 0x0001
  130. #define PCRE_EXTRA_MATCH_LIMIT 0x0002
  131. #define PCRE_EXTRA_CALLOUT_DATA 0x0004
  132. #define PCRE_EXTRA_TABLES 0x0008
  133. /* Types */
  134. struct real_pcre; /* declaration; the definition is private */
  135. typedef struct real_pcre pcre;
  136. /* The structure for passing additional data to pcre_exec(). This is defined in
  137. such as way as to be extensible. Always add new fields at the end, in order to
  138. remain compatible. */
  139. typedef struct pcre_extra {
  140. unsigned long int flags; /* Bits for which fields are set */
  141. void *study_data; /* Opaque data from pcre_study() */
  142. unsigned long int match_limit; /* Maximum number of calls to match() */
  143. void *callout_data; /* Data passed back in callouts */
  144. const unsigned char *tables; /* Pointer to character tables */
  145. } pcre_extra;
  146. /* The structure for passing out data via the pcre_callout_function. We use a
  147. structure so that new fields can be added on the end in future versions,
  148. without changing the API of the function, thereby allowing old clients to work
  149. without modification. */
  150. typedef struct pcre_callout_block {
  151. int version; /* Identifies version of block */
  152. /* ------------------------ Version 0 ------------------------------- */
  153. int callout_number; /* Number compiled into pattern */
  154. int *offset_vector; /* The offset vector */
  155. const char *subject; /* The subject being matched */
  156. int subject_length; /* The length of the subject */
  157. int start_match; /* Offset to start of this match attempt */
  158. int current_position; /* Where we currently are in the subject */
  159. int capture_top; /* Max current capture */
  160. int capture_last; /* Most recently closed capture */
  161. void *callout_data; /* Data passed in with the call */
  162. /* ------------------- Added for Version 1 -------------------------- */
  163. int pattern_position; /* Offset to next item in the pattern */
  164. int next_item_length; /* Length of next item in the pattern */
  165. /* ------------------------------------------------------------------ */
  166. } pcre_callout_block;
  167. /* Indirection for store get and free functions. These can be set to
  168. alternative malloc/free functions if required. Special ones are used in the
  169. non-recursive case for "frames". There is also an optional callout function
  170. that is triggered by the (?) regex item. For Virtual Pascal, these definitions
  171. have to take another form. */
  172. #ifndef VPCOMPAT
  173. PCRE_DATA_SCOPE void *(*pcre_malloc)(size_t);
  174. PCRE_DATA_SCOPE void (*pcre_free)(void *);
  175. PCRE_DATA_SCOPE void *(*pcre_stack_malloc)(size_t);
  176. PCRE_DATA_SCOPE void (*pcre_stack_free)(void *);
  177. PCRE_DATA_SCOPE int (*pcre_callout)(pcre_callout_block *);
  178. #else /* VPCOMPAT */
  179. PCRE_DATA_SCOPE void *pcre_malloc(size_t);
  180. PCRE_DATA_SCOPE void pcre_free(void *);
  181. PCRE_DATA_SCOPE void *pcre_stack_malloc(size_t);
  182. PCRE_DATA_SCOPE void pcre_stack_free(void *);
  183. PCRE_DATA_SCOPE int pcre_callout(pcre_callout_block *);
  184. #endif /* VPCOMPAT */
  185. /* Exported PCRE functions */
  186. PCRE_DATA_SCOPE pcre *pcre_compile(const char *, int, const char **, int *,
  187. const unsigned char *);
  188. PCRE_DATA_SCOPE pcre *pcre_compile2(const char *, int, int *, const char **,
  189. int *, const unsigned char *);
  190. PCRE_DATA_SCOPE int pcre_config(int, void *);
  191. PCRE_DATA_SCOPE int pcre_copy_named_substring(const pcre *, const char *,
  192. int *, int, const char *, char *, int);
  193. PCRE_DATA_SCOPE int pcre_copy_substring(const char *, int *, int, int, char *,
  194. int);
  195. PCRE_DATA_SCOPE int pcre_dfa_exec(const pcre *, const pcre_extra *,
  196. const char *, int, int, int, int *, int , int *, int);
  197. PCRE_DATA_SCOPE int pcre_exec(const pcre *, const pcre_extra *, const char *,
  198. int, int, int, int *, int);
  199. PCRE_DATA_SCOPE void pcre_free_substring(const char *);
  200. PCRE_DATA_SCOPE void pcre_free_substring_list(const char **);
  201. PCRE_DATA_SCOPE int pcre_fullinfo(const pcre *, const pcre_extra *, int,
  202. void *);
  203. PCRE_DATA_SCOPE int pcre_get_named_substring(const pcre *, const char *,
  204. int *, int, const char *, const char **);
  205. PCRE_DATA_SCOPE int pcre_get_stringnumber(const pcre *, const char *);
  206. PCRE_DATA_SCOPE int pcre_get_substring(const char *, int *, int, int,
  207. const char **);
  208. PCRE_DATA_SCOPE int pcre_get_substring_list(const char *, int *, int,
  209. const char ***);
  210. PCRE_DATA_SCOPE int pcre_info(const pcre *, int *, int *);
  211. PCRE_DATA_SCOPE const unsigned char *pcre_maketables(void);
  212. PCRE_DATA_SCOPE int pcre_refcount(pcre *, int);
  213. PCRE_DATA_SCOPE pcre_extra *pcre_study(const pcre *, int, const char **);
  214. PCRE_DATA_SCOPE const char *pcre_version(void);
  215. #ifdef __cplusplus
  216. } /* extern "C" */
  217. #endif
  218. #endif /* End of pcre.h */