regex.h
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:11k
源码类别:

通讯编程

开发平台:

Visual C++

  1. #ifndef _REGEX_H_
  2. #define _REGEX_H_ /* never again */
  3. /*
  4.  * regular expressions
  5.  *
  6.  * Copyright (c) 1998, 1999 Henry Spencer.  All rights reserved.
  7.  * 
  8.  * Development of this software was funded, in part, by Cray Research Inc.,
  9.  * UUNET Communications Services Inc., Sun Microsystems Inc., and Scriptics
  10.  * Corporation, none of whom are responsible for the results.  The author
  11.  * thanks all of them. 
  12.  * 
  13.  * Redistribution and use in source and binary forms -- with or without
  14.  * modification -- are permitted for any purpose, provided that
  15.  * redistributions in source form retain this entire copyright notice and
  16.  * indicate the origin and nature of any modifications.
  17.  *
  18.  * I'd appreciate being given credit for this package in the documentation
  19.  * of software which uses it, but that is not a requirement.
  20.  * 
  21.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
  22.  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
  23.  * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL
  24.  * HENRY SPENCER BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  25.  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  26.  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
  27.  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  28.  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  29.  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  30.  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  31.  *
  32.  *
  33.  *
  34.  * Prototypes etc. marked with "^" within comments get gathered up (and
  35.  * possibly edited) by the regfwd program and inserted near the bottom of
  36.  * this file.
  37.  *
  38.  * We offer the option of declaring one wide-character version of the
  39.  * RE functions as well as the char versions.  To do that, define
  40.  * __REG_WIDE_T to the type of wide characters (unfortunately, there
  41.  * is no consensus that wchar_t is suitable) and __REG_WIDE_COMPILE and
  42.  * __REG_WIDE_EXEC to the names to be used for the compile and execute
  43.  * functions (suggestion:  re_Xcomp and re_Xexec, where X is a letter
  44.  * suggestive of the wide type, e.g. re_ucomp and re_uexec for Unicode).
  45.  * For cranky old compilers, it may be necessary to do something like:
  46.  * #define __REG_WIDE_COMPILE(a,b,c,d) re_Xcomp(a,b,c,d)
  47.  * #define __REG_WIDE_EXEC(a,b,c,d,e,f,g) re_Xexec(a,b,c,d,e,f,g)
  48.  * rather than just #defining the names as parameterless macros.
  49.  *
  50.  * For some specialized purposes, it may be desirable to suppress the
  51.  * declarations of the "front end" functions, regcomp() and regexec(),
  52.  * or of the char versions of the compile and execute functions.  To
  53.  * suppress the front-end functions, define __REG_NOFRONT.  To suppress
  54.  * the char versions, define __REG_NOCHAR.
  55.  *
  56.  * The right place to do those defines (and some others you may want, see
  57.  * below) would be <sys/types.h>.  If you don't have control of that file,
  58.  * the right place to add your own defines to this file is marked below.
  59.  * This is normally done automatically, by the makefile and regmkhdr, based
  60.  * on the contents of regcustom.h.
  61.  */
  62. /*
  63.  * voodoo for C++
  64.  */
  65. #ifdef __cplusplus
  66. extern "C" {
  67. #endif
  68. /*
  69.  * Add your own defines, if needed, here.
  70.  */
  71. /*
  72.  * Location where a chunk of regcustom.h is automatically spliced into
  73.  * this file (working from its prototype, regproto.h).
  74.  */
  75. /* --- begin --- */
  76. /* ensure certain things don't sneak in from system headers */
  77. #ifdef __REG_WIDE_T
  78. #undef __REG_WIDE_T
  79. #endif
  80. #ifdef __REG_WIDE_COMPILE
  81. #undef __REG_WIDE_COMPILE
  82. #endif
  83. #ifdef __REG_WIDE_EXEC
  84. #undef __REG_WIDE_EXEC
  85. #endif
  86. #ifdef __REG_REGOFF_T
  87. #undef __REG_REGOFF_T
  88. #endif
  89. #ifdef __REG_VOID_T
  90. #undef __REG_VOID_T
  91. #endif
  92. #ifdef __REG_CONST
  93. #undef __REG_CONST
  94. #endif
  95. #ifdef __REG_NOFRONT
  96. #undef __REG_NOFRONT
  97. #endif
  98. #ifdef __REG_NOCHAR
  99. #undef __REG_NOCHAR
  100. #endif
  101. /* interface types */
  102. #define __REG_WIDE_T Tcl_UniChar
  103. #define __REG_REGOFF_T long /* not really right, but good enough... */
  104. #define __REG_VOID_T VOID
  105. #define __REG_CONST CONST
  106. /* names and declarations */
  107. #define __REG_WIDE_COMPILE TclReComp
  108. #define __REG_WIDE_EXEC TclReExec
  109. #define __REG_NOFRONT /* don't want regcomp() and regexec() */
  110. #define __REG_NOCHAR /* or the char versions */
  111. #define regfree TclReFree
  112. #define regerror TclReError
  113. /* --- end --- */
  114. /*
  115.  * interface types etc.
  116.  */
  117. /*
  118.  * regoff_t has to be large enough to hold either off_t or ssize_t,
  119.  * and must be signed; it's only a guess that long is suitable, so we
  120.  * offer <sys/types.h> an override.
  121.  */
  122. #ifdef __REG_REGOFF_T
  123. typedef __REG_REGOFF_T regoff_t;
  124. #else
  125. typedef long regoff_t;
  126. #endif
  127. /*
  128.  * For benefit of old compilers, we offer <sys/types.h> the option of
  129.  * overriding the `void' type used to declare nonexistent return types.
  130.  */
  131. #ifdef __REG_VOID_T
  132. typedef __REG_VOID_T re_void;
  133. #else
  134. typedef void re_void;
  135. #endif
  136. /*
  137.  * Also for benefit of old compilers, <sys/types.h> can supply a macro
  138.  * which expands to a substitute for `const'.
  139.  */
  140. #ifndef __REG_CONST
  141. #define __REG_CONST const
  142. #endif
  143. /*
  144.  * other interface types
  145.  */
  146. /* the biggie, a compiled RE (or rather, a front end to same) */
  147. typedef struct {
  148. int re_magic; /* magic number */
  149. size_t re_nsub; /* number of subexpressions */
  150. long re_info; /* information about RE */
  151. # define REG_UBACKREF 000001
  152. # define REG_ULOOKAHEAD 000002
  153. # define REG_UBOUNDS 000004
  154. # define REG_UBRACES 000010
  155. # define REG_UBSALNUM 000020
  156. # define REG_UPBOTCH 000040
  157. # define REG_UBBS 000100
  158. # define REG_UNONPOSIX 000200
  159. # define REG_UUNSPEC 000400
  160. # define REG_UUNPORT 001000
  161. # define REG_ULOCALE 002000
  162. # define REG_UEMPTYMATCH 004000
  163. # define REG_UIMPOSSIBLE 010000
  164. # define REG_USHORTEST 020000
  165. int re_csize; /* sizeof(character) */
  166. char *re_endp; /* backward compatibility kludge */
  167. /* the rest is opaque pointers to hidden innards */
  168. char *re_guts; /* `char *' is more portable than `void *' */
  169. char *re_fns;
  170. } regex_t;
  171. /* result reporting (may acquire more fields later) */
  172. typedef struct {
  173. regoff_t rm_so; /* start of substring */
  174. regoff_t rm_eo; /* end of substring */
  175. } regmatch_t;
  176. /* supplementary control and reporting */
  177. typedef struct {
  178. regmatch_t rm_extend; /* see REG_EXPECT */
  179. } rm_detail_t;
  180. /*
  181.  * compilation
  182.  ^ #ifndef __REG_NOCHAR
  183.  ^ int re_comp(regex_t *, __REG_CONST char *, size_t, int);
  184.  ^ #endif
  185.  ^ #ifndef __REG_NOFRONT
  186.  ^ int regcomp(regex_t *, __REG_CONST char *, int);
  187.  ^ #endif
  188.  ^ #ifdef __REG_WIDE_T
  189.  ^ int __REG_WIDE_COMPILE(regex_t *, __REG_CONST __REG_WIDE_T *, size_t, int);
  190.  ^ #endif
  191.  */
  192. #define REG_BASIC 000000 /* BREs (convenience) */
  193. #define REG_EXTENDED 000001 /* EREs */
  194. #define REG_ADVF 000002 /* advanced features in EREs */
  195. #define REG_ADVANCED 000003 /* AREs (which are also EREs) */
  196. #define REG_QUOTE 000004 /* no special characters, none */
  197. #define REG_NOSPEC REG_QUOTE /* historical synonym */
  198. #define REG_ICASE 000010 /* ignore case */
  199. #define REG_NOSUB 000020 /* don't care about subexpressions */
  200. #define REG_EXPANDED 000040 /* expanded format, white space & comments */
  201. #define REG_NLSTOP 000100 /* n doesn't match . or [^ ] */
  202. #define REG_NLANCH 000200 /* ^ matches after n, $ before */
  203. #define REG_NEWLINE 000300 /* newlines are line terminators */
  204. #define REG_PEND 000400 /* ugh -- backward-compatibility hack */
  205. #define REG_EXPECT 001000 /* report details on partial/limited matches */
  206. #define REG_BOSONLY 002000 /* temporary kludge for BOS-only matches */
  207. #define REG_DUMP 004000 /* none of your business :-) */
  208. #define REG_FAKE 010000 /* none of your business :-) */
  209. #define REG_PROGRESS 020000 /* none of your business :-) */
  210. /*
  211.  * execution
  212.  ^ #ifndef __REG_NOCHAR
  213.  ^ int re_exec(regex_t *, __REG_CONST char *, size_t,
  214.  ^ rm_detail_t *, size_t, regmatch_t [], int);
  215.  ^ #endif
  216.  ^ #ifndef __REG_NOFRONT
  217.  ^ int regexec(regex_t *, __REG_CONST char *, size_t, regmatch_t [], int);
  218.  ^ #endif
  219.  ^ #ifdef __REG_WIDE_T
  220.  ^ int __REG_WIDE_EXEC(regex_t *, __REG_CONST __REG_WIDE_T *, size_t,
  221.  ^ rm_detail_t *, size_t, regmatch_t [], int);
  222.  ^ #endif
  223.  */
  224. #define REG_NOTBOL 0001 /* BOS is not BOL */
  225. #define REG_NOTEOL 0002 /* EOS is not EOL */
  226. #define REG_STARTEND 0004 /* backward compatibility kludge */
  227. #define REG_FTRACE 0010 /* none of your business */
  228. #define REG_MTRACE 0020 /* none of your business */
  229. #define REG_SMALL 0040 /* none of your business */
  230. /*
  231.  * misc generics (may be more functions here eventually)
  232.  ^ re_void regfree(regex_t *);
  233.  */
  234. /*
  235.  * error reporting
  236.  * Be careful if modifying the list of error codes -- the table used by
  237.  * regerror() is generated automatically from this file!
  238.  *
  239.  * Note that there is no wide-char variant of regerror at this time; what
  240.  * kind of character is used for error reports is independent of what kind
  241.  * is used in matching.
  242.  *
  243.  ^ extern size_t regerror(int, __REG_CONST regex_t *, char *, size_t);
  244.  */
  245. #define REG_OKAY  0 /* no errors detected */
  246. #define REG_NOMATCH  1 /* failed to match */
  247. #define REG_BADPAT  2 /* invalid regexp */
  248. #define REG_ECOLLATE  3 /* invalid collating element */
  249. #define REG_ECTYPE  4 /* invalid character class */
  250. #define REG_EESCAPE  5 /* invalid escape  sequence */
  251. #define REG_ESUBREG  6 /* invalid backreference number */
  252. #define REG_EBRACK  7 /* brackets [] not balanced */
  253. #define REG_EPAREN  8 /* parentheses () not balanced */
  254. #define REG_EBRACE  9 /* braces {} not balanced */
  255. #define REG_BADBR 10 /* invalid repetition count(s) */
  256. #define REG_ERANGE 11 /* invalid character range */
  257. #define REG_ESPACE 12 /* out of memory */
  258. #define REG_BADRPT 13 /* quantifier operand invalid */
  259. #define REG_ASSERT 15 /* "can't happen" -- you found a bug */
  260. #define REG_INVARG 16 /* invalid argument to regex function */
  261. #define REG_MIXED 17 /* character widths of regex and string differ */
  262. #define REG_BADOPT 18 /* invalid embedded option */
  263. #define REG_ETOOBIG 19 /* nfa has too many states */
  264. /* two specials for debugging and testing */
  265. #define REG_ATOI 101 /* convert error-code name to number */
  266. #define REG_ITOA 102 /* convert error-code number to name */
  267. /*
  268.  * the prototypes, as possibly munched by regfwd
  269.  */
  270. /* =====^!^===== begin forwards =====^!^===== */
  271. /* automatically gathered by fwd; do not hand-edit */
  272. /* === regproto.h === */
  273. #ifndef __REG_NOCHAR
  274. int re_comp _ANSI_ARGS_((regex_t *, __REG_CONST char *, size_t, int));
  275. #endif
  276. #ifndef __REG_NOFRONT
  277. int regcomp _ANSI_ARGS_((regex_t *, __REG_CONST char *, int));
  278. #endif
  279. #ifdef __REG_WIDE_T
  280. int __REG_WIDE_COMPILE _ANSI_ARGS_((regex_t *, __REG_CONST __REG_WIDE_T *, size_t, int));
  281. #endif
  282. #ifndef __REG_NOCHAR
  283. int re_exec _ANSI_ARGS_((regex_t *, __REG_CONST char *, size_t, rm_detail_t *, size_t, regmatch_t [], int));
  284. #endif
  285. #ifndef __REG_NOFRONT
  286. int regexec _ANSI_ARGS_((regex_t *, __REG_CONST char *, size_t, regmatch_t [], int));
  287. #endif
  288. #ifdef __REG_WIDE_T
  289. int __REG_WIDE_EXEC _ANSI_ARGS_((regex_t *, __REG_CONST __REG_WIDE_T *, size_t, rm_detail_t *, size_t, regmatch_t [], int));
  290. #endif
  291. re_void regfree _ANSI_ARGS_((regex_t *));
  292. extern size_t regerror _ANSI_ARGS_((int, __REG_CONST regex_t *, char *, size_t));
  293. /* automatically gathered by fwd; do not hand-edit */
  294. /* =====^!^===== end forwards =====^!^===== */
  295. /*
  296.  * more C++ voodoo
  297.  */
  298. #ifdef __cplusplus
  299. }
  300. #endif
  301. #endif