PageRenderTime 57ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/core/src/syslib/regex.h

#
C Header | 471 lines | 176 code | 94 blank | 201 comment | 0 complexity | c25f5e760a7c8daf54980d8e687812fe MD5 | raw file
Possible License(s): GPL-2.0, LGPL-3.0
  1. #ifdef __cplusplus
  2. extern "C" {
  3. #endif
  4. #ifndef __REGEXP_LIBRARY_H__
  5. #define __REGEXP_LIBRARY_H__
  6. /* POSIX says that <sys/types.h> must be included (by the caller) before
  7. <regex.h>. */
  8. #ifdef VMS
  9. /* VMS doesn't have `size_t' in <sys/types.h>, even though POSIX says it
  10. should be there. */
  11. #include <stddef.h>
  12. #endif
  13. /* The following bits are used to determine the regexp syntax we
  14. recognize. The set/not-set meanings are chosen so that Emacs syntax
  15. remains the value 0. The bits are given in alphabetical order, and
  16. the definitions shifted by one from the previous bit; thus, when we
  17. add or remove a bit, only one other definition need change. */
  18. typedef unsigned reg_syntax_t;
  19. /* If this bit is not set, then \ inside a bracket expression is literal.
  20. If set, then such a \ quotes the following character. */
  21. #define RE_BACKSLASH_ESCAPE_IN_LISTS (1)
  22. /* If this bit is not set, then + and ? are operators, and \+ and \? are
  23. literals.
  24. If set, then \+ and \? are operators and + and ? are literals. */
  25. #define RE_BK_PLUS_QM (RE_BACKSLASH_ESCAPE_IN_LISTS << 1)
  26. /* If this bit is set, then character classes are supported. They are:
  27. [:alpha:], [:upper:], [:lower:], [:digit:], [:alnum:], [:xdigit:],
  28. [:space:], [:print:], [:punct:], [:graph:], and [:cntrl:].
  29. If not set, then character classes are not supported. */
  30. #define RE_CHAR_CLASSES (RE_BK_PLUS_QM << 1)
  31. /* If this bit is set, then ^ and $ are always anchors (outside bracket
  32. expressions, of course).
  33. If this bit is not set, then it depends:
  34. ^ is an anchor if it is at the beginning of a regular
  35. expression or after an open-group or an alternation operator;
  36. $ is an anchor if it is at the end of a regular expression, or
  37. before a close-group or an alternation operator.
  38. This bit could be (re)combined with RE_CONTEXT_INDEP_OPS, because
  39. POSIX draft 11.2 says that * etc. in leading positions is undefined.
  40. We already implemented a previous draft which made those constructs
  41. invalid, though, so we haven't changed the code back. */
  42. #define RE_CONTEXT_INDEP_ANCHORS (RE_CHAR_CLASSES << 1)
  43. /* If this bit is set, then special characters are always special
  44. regardless of where they are in the pattern.
  45. If this bit is not set, then special characters are special only in
  46. some contexts; otherwise they are ordinary. Specifically,
  47. * + ? and intervals are only special when not after the beginning,
  48. open-group, or alternation operator. */
  49. #define RE_CONTEXT_INDEP_OPS (RE_CONTEXT_INDEP_ANCHORS << 1)
  50. /* If this bit is set, then *, +, ?, and { cannot be first in an re or
  51. immediately after an alternation or begin-group operator. */
  52. #define RE_CONTEXT_INVALID_OPS (RE_CONTEXT_INDEP_OPS << 1)
  53. /* If this bit is set, then . matches newline.
  54. If not set, then it doesn't. */
  55. #define RE_DOT_NEWLINE (RE_CONTEXT_INVALID_OPS << 1)
  56. /* If this bit is set, then . doesn't match NUL.
  57. If not set, then it does. */
  58. #define RE_DOT_NOT_NULL (RE_DOT_NEWLINE << 1)
  59. /* If this bit is set, nonmatching lists [^...] do not match newline.
  60. If not set, they do. */
  61. #define RE_HAT_LISTS_NOT_NEWLINE (RE_DOT_NOT_NULL << 1)
  62. /* If this bit is set, either \{...\} or {...} defines an
  63. interval, depending on RE_NO_BK_BRACES.
  64. If not set, \{, \}, {, and } are literals. */
  65. #define RE_INTERVALS (RE_HAT_LISTS_NOT_NEWLINE << 1)
  66. /* If this bit is set, +, ? and | aren't recognized as operators.
  67. If not set, they are. */
  68. #define RE_LIMITED_OPS (RE_INTERVALS << 1)
  69. /* If this bit is set, newline is an alternation operator.
  70. If not set, newline is literal. */
  71. #define RE_NEWLINE_ALT (RE_LIMITED_OPS << 1)
  72. /* If this bit is set, then `{...}' defines an interval, and \{ and \}
  73. are literals.
  74. If not set, then `\{...\}' defines an interval. */
  75. #define RE_NO_BK_BRACES (RE_NEWLINE_ALT << 1)
  76. /* If this bit is set, (...) defines a group, and \( and \) are literals.
  77. If not set, \(...\) defines a group, and ( and ) are literals. */
  78. #define RE_NO_BK_PARENS (RE_NO_BK_BRACES << 1)
  79. /* If this bit is set, then \<digit> matches <digit>.
  80. If not set, then \<digit> is a back-reference. */
  81. #define RE_NO_BK_REFS (RE_NO_BK_PARENS << 1)
  82. /* If this bit is set, then | is an alternation operator, and \| is literal.
  83. If not set, then \| is an alternation operator, and | is literal. */
  84. #define RE_NO_BK_VBAR (RE_NO_BK_REFS << 1)
  85. /* If this bit is set, then an ending range point collating higher
  86. than the starting range point, as in [z-a], is invalid.
  87. If not set, then when ending range point collates higher than the
  88. starting range point, the range is ignored. */
  89. #define RE_NO_EMPTY_RANGES (RE_NO_BK_VBAR << 1)
  90. /* If this bit is set, then an unmatched ) is ordinary.
  91. If not set, then an unmatched ) is invalid. */
  92. #define RE_UNMATCHED_RIGHT_PAREN_ORD (RE_NO_EMPTY_RANGES << 1)
  93. /* This global variable defines the particular regexp syntax to use (for
  94. some interfaces). When a regexp is compiled, the syntax used is
  95. stored in the pattern buffer, so changing this does not affect
  96. already-compiled regexps. */
  97. extern reg_syntax_t re_syntax_options;
  98. /* Define combinations of the above bits for the standard possibilities.
  99. (The [[[ comments delimit what gets put into the Texinfo file, so
  100. don't delete them!) */
  101. /* [[[begin syntaxes]]] */
  102. #define RE_SYNTAX_EMACS 0
  103. #define RE_SYNTAX_AWK \
  104. (RE_BACKSLASH_ESCAPE_IN_LISTS | RE_DOT_NOT_NULL \
  105. | RE_NO_BK_PARENS | RE_NO_BK_REFS \
  106. | RE_NO_BK_VBAR | RE_NO_EMPTY_RANGES \
  107. | RE_UNMATCHED_RIGHT_PAREN_ORD)
  108. #define RE_SYNTAX_POSIX_AWK \
  109. (RE_SYNTAX_POSIX_EXTENDED | RE_BACKSLASH_ESCAPE_IN_LISTS)
  110. #define RE_SYNTAX_GREP \
  111. (RE_BK_PLUS_QM | RE_CHAR_CLASSES \
  112. | RE_HAT_LISTS_NOT_NEWLINE | RE_INTERVALS \
  113. | RE_NEWLINE_ALT)
  114. #define RE_SYNTAX_EGREP \
  115. (RE_CHAR_CLASSES | RE_CONTEXT_INDEP_ANCHORS \
  116. | RE_CONTEXT_INDEP_OPS | RE_HAT_LISTS_NOT_NEWLINE \
  117. | RE_NEWLINE_ALT | RE_NO_BK_PARENS \
  118. | RE_NO_BK_VBAR)
  119. #define RE_SYNTAX_POSIX_EGREP \
  120. (RE_SYNTAX_EGREP | RE_INTERVALS | RE_NO_BK_BRACES)
  121. /* P1003.2/D11.2, section 4.20.7.1, lines 5078ff. */
  122. #define RE_SYNTAX_ED RE_SYNTAX_POSIX_BASIC
  123. #define RE_SYNTAX_SED RE_SYNTAX_POSIX_BASIC
  124. /* Syntax bits common to both basic and extended POSIX regex syntax. */
  125. #define _RE_SYNTAX_POSIX_COMMON \
  126. (RE_CHAR_CLASSES | RE_DOT_NEWLINE | RE_DOT_NOT_NULL \
  127. | RE_INTERVALS | RE_NO_EMPTY_RANGES)
  128. #define RE_SYNTAX_POSIX_BASIC \
  129. (_RE_SYNTAX_POSIX_COMMON | RE_BK_PLUS_QM)
  130. /* Differs from ..._POSIX_BASIC only in that RE_BK_PLUS_QM becomes
  131. RE_LIMITED_OPS, i.e., \? \+ \| are not recognized. Actually, this
  132. isn't minimal, since other operators, such as \`, aren't disabled. */
  133. #define RE_SYNTAX_POSIX_MINIMAL_BASIC \
  134. (_RE_SYNTAX_POSIX_COMMON | RE_LIMITED_OPS)
  135. #define RE_SYNTAX_POSIX_EXTENDED \
  136. (_RE_SYNTAX_POSIX_COMMON | RE_CONTEXT_INDEP_ANCHORS \
  137. | RE_CONTEXT_INDEP_OPS | RE_NO_BK_BRACES \
  138. | RE_NO_BK_PARENS | RE_NO_BK_VBAR \
  139. | RE_UNMATCHED_RIGHT_PAREN_ORD)
  140. /* Differs from ..._POSIX_EXTENDED in that RE_CONTEXT_INVALID_OPS
  141. replaces RE_CONTEXT_INDEP_OPS and RE_NO_BK_REFS is added. */
  142. #define RE_SYNTAX_POSIX_MINIMAL_EXTENDED \
  143. (_RE_SYNTAX_POSIX_COMMON | RE_CONTEXT_INDEP_ANCHORS \
  144. | RE_CONTEXT_INVALID_OPS | RE_NO_BK_BRACES \
  145. | RE_NO_BK_PARENS | RE_NO_BK_REFS \
  146. | RE_NO_BK_VBAR | RE_UNMATCHED_RIGHT_PAREN_ORD)
  147. /* [[[end syntaxes]]] */
  148. /* Maximum number of duplicates an interval can allow. Some systems
  149. (erroneously) define this in other header files, but we want our
  150. value, so remove any previous define. */
  151. #ifdef RE_DUP_MAX
  152. #undef RE_DUP_MAX
  153. #endif
  154. #define RE_DUP_MAX ((1 << 15) - 1)
  155. /* POSIX `cflags' bits (i.e., information for `regcomp'). */
  156. /* If this bit is set, then use extended regular expression syntax.
  157. If not set, then use basic regular expression syntax. */
  158. #define REG_EXTENDED 1
  159. /* If this bit is set, then ignore case when matching.
  160. If not set, then case is significant. */
  161. #define REG_ICASE (REG_EXTENDED << 1)
  162. /* If this bit is set, then anchors do not match at newline
  163. characters in the string.
  164. If not set, then anchors do match at newlines. */
  165. #define REG_NEWLINE (REG_ICASE << 1)
  166. /* If this bit is set, then report only success or fail in regexec.
  167. If not set, then returns differ between not matching and errors. */
  168. #define REG_NOSUB (REG_NEWLINE << 1)
  169. /* POSIX `eflags' bits (i.e., information for regexec). */
  170. /* If this bit is set, then the beginning-of-line operator doesn't match
  171. the beginning of the string (presumably because it's not the
  172. beginning of a line).
  173. If not set, then the beginning-of-line operator does match the
  174. beginning of the string. */
  175. #define REG_NOTBOL 1
  176. /* Like REG_NOTBOL, except for the end-of-line. */
  177. #define REG_NOTEOL (1 << 1)
  178. /* If any error codes are removed, changed, or added, update the
  179. `re_error_msg' table in regex.c. */
  180. typedef enum
  181. {
  182. REG_NOERROR = 0, /* Success. */
  183. REG_NOMATCH, /* Didn't find a match (for regexec). */
  184. /* POSIX regcomp return error codes. (In the order listed in the
  185. standard.) */
  186. REG_BADPAT, /* Invalid pattern. */
  187. REG_ECOLLATE, /* Not implemented. */
  188. REG_ECTYPE, /* Invalid character class name. */
  189. REG_EESCAPE, /* Trailing backslash. */
  190. REG_ESUBREG, /* Invalid back reference. */
  191. REG_EBRACK, /* Unmatched left bracket. */
  192. REG_EPAREN, /* Parenthesis imbalance. */
  193. REG_EBRACE, /* Unmatched \{. */
  194. REG_BADBR, /* Invalid contents of \{\}. */
  195. REG_ERANGE, /* Invalid range end. */
  196. REG_ESPACE, /* Ran out of memory. */
  197. REG_BADRPT, /* No preceding re for repetition op. */
  198. /* Error codes we've added. */
  199. REG_EEND, /* Premature end. */
  200. REG_ESIZE, /* Compiled pattern bigger than 2^16 bytes. */
  201. REG_ERPAREN /* Unmatched ) or \); not returned from regcomp. */
  202. } reg_errcode_t;
  203. /* This data structure represents a compiled pattern. Before calling
  204. the pattern compiler, the fields `buffer', `allocated', `fastmap',
  205. `translate', and `no_sub' can be set. After the pattern has been
  206. compiled, the `re_nsub' field is available. All other fields are
  207. private to the regex routines. */
  208. struct re_pattern_buffer
  209. {
  210. /* [[[begin pattern_buffer]]] */
  211. /* Space that holds the compiled pattern. It is declared as
  212. `unsigned char *' because its elements are
  213. sometimes used as array indexes. */
  214. unsigned char *buffer;
  215. /* Number of bytes to which `buffer' points. */
  216. unsigned long allocated;
  217. /* Number of bytes actually used in `buffer'. */
  218. unsigned long used;
  219. /* Syntax setting with which the pattern was compiled. */
  220. reg_syntax_t syntax;
  221. /* Pointer to a fastmap, if any, otherwise zero. re_search uses
  222. the fastmap, if there is one, to skip over impossible
  223. starting points for matches. */
  224. char *fastmap;
  225. /* Either a translate table to apply to all characters before
  226. comparing them, or zero for no translation. The translation
  227. is applied to a pattern when it is compiled and to a string
  228. when it is matched. */
  229. char *translate;
  230. /* Number of subexpressions found by the compiler. */
  231. size_t re_nsub;
  232. /* Zero if this pattern cannot match the empty string, one else.
  233. Well, in truth it's used only in `re_search_2', to see
  234. whether or not we should use the fastmap, so we don't set
  235. this absolutely perfectly; see `re_compile_fastmap' (the
  236. `duplicate' case). */
  237. unsigned can_be_null : 1;
  238. /* If REGS_UNALLOCATED, allocate space in the `regs' structure
  239. for `max (RE_NREGS, re_nsub + 1)' groups.
  240. If REGS_REALLOCATE, reallocate space if necessary.
  241. If REGS_FIXED, use what's there. */
  242. #define REGS_UNALLOCATED 0
  243. #define REGS_REALLOCATE 1
  244. #define REGS_FIXED 2
  245. unsigned regs_allocated : 2;
  246. /* Set to zero when `regex_compile' compiles a pattern; set to one
  247. by `re_compile_fastmap' if it updates the fastmap. */
  248. unsigned fastmap_accurate : 1;
  249. /* If set, `re_match_2' does not return information about
  250. subexpressions. */
  251. unsigned no_sub : 1;
  252. /* If set, a beginning-of-line anchor doesn't match at the
  253. beginning of the string. */
  254. unsigned not_bol : 1;
  255. /* Similarly for an end-of-line anchor. */
  256. unsigned not_eol : 1;
  257. /* If true, an anchor at a newline matches. */
  258. unsigned newline_anchor : 1;
  259. /* [[[end pattern_buffer]]] */
  260. };
  261. typedef struct re_pattern_buffer regex_t;
  262. /* search.c (search_buffer) in Emacs needs this one opcode value. It is
  263. defined both in `regex.c' and here. */
  264. #define RE_EXACTN_VALUE 1
  265. /* Type for byte offsets within the string. POSIX mandates this. */
  266. typedef int regoff_t;
  267. /* This is the structure we store register match data in. See
  268. regex.texinfo for a full description of what registers match. */
  269. struct re_registers
  270. {
  271. unsigned num_regs;
  272. regoff_t *start;
  273. regoff_t *end;
  274. };
  275. /* If `regs_allocated' is REGS_UNALLOCATED in the pattern buffer,
  276. `re_match_2' returns information about at least this many registers
  277. the first time a `regs' structure is passed. */
  278. #ifndef RE_NREGS
  279. #define RE_NREGS 30
  280. #endif
  281. /* POSIX specification for registers. Aside from the different names than
  282. `re_registers', POSIX uses an array of structures, instead of a
  283. structure of arrays. */
  284. typedef struct
  285. {
  286. regoff_t rm_so; /* Byte offset from string's start to substring's start. */
  287. regoff_t rm_eo; /* Byte offset from string's start to substring's end. */
  288. } regmatch_t;
  289. /* Declarations for routines. */
  290. /* To avoid duplicating every routine declaration -- once with a
  291. prototype (if we are ANSI), and once without (if we aren't) -- we
  292. use the following macro to declare argument types. This
  293. unfortunately clutters up the declarations a bit, but I think it's
  294. worth it. */
  295. #define _RE_ARGS(args) args
  296. /* Sets the current default syntax to SYNTAX, and return the old syntax.
  297. You can also simply assign to the `re_syntax_options' variable. */
  298. extern reg_syntax_t re_set_syntax _RE_ARGS ((reg_syntax_t syntax));
  299. /* Compile the regular expression PATTERN, with length LENGTH
  300. and syntax given by the global `re_syntax_options', into the buffer
  301. BUFFER. Return NULL if successful, and an error string if not. */
  302. extern const char *re_compile_pattern
  303. _RE_ARGS ((const char *pattern, int length,
  304. struct re_pattern_buffer *buffer));
  305. /* Compile a fastmap for the compiled pattern in BUFFER; used to
  306. accelerate searches. Return 0 if successful and -2 if was an
  307. internal error. */
  308. extern int re_compile_fastmap _RE_ARGS ((struct re_pattern_buffer *buffer));
  309. /* Search in the string STRING (with length LENGTH) for the pattern
  310. compiled into BUFFER. Start searching at position START, for RANGE
  311. characters. Return the starting position of the match, -1 for no
  312. match, or -2 for an internal error. Also return register
  313. information in REGS (if REGS and BUFFER->no_sub are nonzero). */
  314. extern int re_search
  315. _RE_ARGS ((struct re_pattern_buffer *buffer, const char *string,
  316. int length, int start, int range, struct re_registers *regs));
  317. /* Like `re_search', but search in the concatenation of STRING1 and
  318. STRING2. Also, stop searching at index START + STOP. */
  319. extern int re_search_2
  320. _RE_ARGS ((struct re_pattern_buffer *buffer, const char *string1,
  321. int length1, const char *string2, int length2,
  322. int start, int range, struct re_registers *regs, int stop));
  323. /* Like `re_search', but return how many characters in STRING the regexp
  324. in BUFFER matched, starting at position START. */
  325. extern int re_match
  326. _RE_ARGS ((struct re_pattern_buffer *buffer, const char *string,
  327. int length, int start, struct re_registers *regs));
  328. /* Relates to `re_match' as `re_search_2' relates to `re_search'. */
  329. extern int re_match_2
  330. _RE_ARGS ((struct re_pattern_buffer *buffer, const char *string1,
  331. int length1, const char *string2, int length2,
  332. int start, struct re_registers *regs, int stop));
  333. /* Set REGS to hold NUM_REGS registers, storing them in STARTS and
  334. ENDS. Subsequent matches using BUFFER and REGS will use this memory
  335. for recording register information. STARTS and ENDS must be
  336. allocated with malloc, and must each be at least `NUM_REGS * sizeof
  337. (regoff_t)' bytes long.
  338. If NUM_REGS == 0, then subsequent matches should allocate their own
  339. register data.
  340. Unless this function is called, the first search or match using
  341. PATTERN_BUFFER will allocate its own register data, without
  342. freeing the old data. */
  343. extern void re_set_registers
  344. _RE_ARGS ((struct re_pattern_buffer *buffer, struct re_registers *regs,
  345. unsigned num_regs, regoff_t *starts, regoff_t *ends));
  346. /* 4.2 bsd compatibility. */
  347. extern char *re_comp _RE_ARGS ((const char *));
  348. extern int re_exec _RE_ARGS ((const char *));
  349. /* POSIX compatibility. */
  350. extern int regcomp _RE_ARGS ((regex_t *preg, const char *pattern, int cflags));
  351. extern int regexec
  352. _RE_ARGS ((const regex_t *preg, const char *string, size_t nmatch,
  353. regmatch_t pmatch[], int eflags));
  354. extern size_t regerror
  355. _RE_ARGS ((int errcode, const regex_t *preg, char *errbuf,
  356. size_t errbuf_size));
  357. extern void regfree _RE_ARGS ((regex_t *preg));
  358. #endif /* not __REGEXP_LIBRARY_H__ */
  359. /*
  360. Local variables:
  361. make-backup-files: t
  362. version-control: t
  363. trim-versions-without-asking: nil
  364. End:
  365. */
  366. #ifdef __cplusplus
  367. }
  368. #endif