6 |
and semantics are as close as possible to those of the Perl 5 language. |
and semantics are as close as possible to those of the Perl 5 language. |
7 |
|
|
8 |
Written by Philip Hazel |
Written by Philip Hazel |
9 |
Copyright (c) 1997-2006 University of Cambridge |
Copyright (c) 1997-2007 University of Cambridge |
10 |
|
|
11 |
----------------------------------------------------------------------------- |
----------------------------------------------------------------------------- |
12 |
Redistribution and use in source and binary forms, with or without |
Redistribution and use in source and binary forms, with or without |
42 |
functions. */ |
functions. */ |
43 |
|
|
44 |
|
|
45 |
|
#ifdef HAVE_CONFIG_H |
46 |
|
#include <config.h> |
47 |
|
#endif |
48 |
|
|
49 |
|
|
50 |
|
/* Ensure that the PCREPOSIX_EXP_xxx macros are set appropriately for |
51 |
|
compiling these functions. This must come before including pcreposix.h, where |
52 |
|
they are set for an application (using these functions) if they have not |
53 |
|
previously been set. */ |
54 |
|
|
55 |
|
#if defined(_WIN32) && !defined(PCRE_STATIC) |
56 |
|
# define PCREPOSIX_EXP_DECL extern __declspec(dllexport) |
57 |
|
# define PCREPOSIX_EXP_DEFN __declspec(dllexport) |
58 |
|
#endif |
59 |
|
|
60 |
#include "pcre_internal.h" |
#include "pcre_internal.h" |
61 |
#include "pcreposix.h" |
#include "pcreposix.h" |
|
#include "stdlib.h" |
|
62 |
|
|
63 |
|
|
64 |
|
|
92 |
REG_BADPAT, /* unrecognized character after (?< */ |
REG_BADPAT, /* unrecognized character after (?< */ |
93 |
REG_BADPAT, /* lookbehind assertion is not fixed length */ |
REG_BADPAT, /* lookbehind assertion is not fixed length */ |
94 |
REG_BADPAT, /* malformed number or name after (?( */ |
REG_BADPAT, /* malformed number or name after (?( */ |
95 |
REG_BADPAT, /* conditional group containe more than two branches */ |
REG_BADPAT, /* conditional group contains more than two branches */ |
96 |
REG_BADPAT, /* assertion expected after (?( */ |
REG_BADPAT, /* assertion expected after (?( */ |
97 |
REG_BADPAT, /* (?R or (?digits must be followed by ) */ |
REG_BADPAT, /* (?R or (?[+-]digits must be followed by ) */ |
98 |
REG_ECTYPE, /* unknown POSIX class name */ |
REG_ECTYPE, /* unknown POSIX class name */ |
99 |
REG_BADPAT, /* POSIX collating elements are not supported */ |
REG_BADPAT, /* POSIX collating elements are not supported */ |
100 |
REG_INVARG, /* this version of PCRE is not compiled with PCRE_UTF8 support */ |
REG_INVARG, /* this version of PCRE is not compiled with PCRE_UTF8 support */ |
107 |
REG_BADPAT, /* closing ) for (?C expected */ |
REG_BADPAT, /* closing ) for (?C expected */ |
108 |
REG_BADPAT, /* recursive call could loop indefinitely */ |
REG_BADPAT, /* recursive call could loop indefinitely */ |
109 |
REG_BADPAT, /* unrecognized character after (?P */ |
REG_BADPAT, /* unrecognized character after (?P */ |
110 |
REG_BADPAT, /* syntax error after (?P */ |
REG_BADPAT, /* syntax error in subpattern name (missing terminator) */ |
111 |
REG_BADPAT, /* two named subpatterns have the same name */ |
REG_BADPAT, /* two named subpatterns have the same name */ |
112 |
REG_BADPAT, /* invalid UTF-8 string */ |
REG_BADPAT, /* invalid UTF-8 string */ |
113 |
REG_BADPAT, /* support for \P, \p, and \X has not been compiled */ |
REG_BADPAT, /* support for \P, \p, and \X has not been compiled */ |
116 |
REG_BADPAT, /* subpattern name is too long (maximum 32 characters) */ |
REG_BADPAT, /* subpattern name is too long (maximum 32 characters) */ |
117 |
REG_BADPAT, /* too many named subpatterns (maximum 10,000) */ |
REG_BADPAT, /* too many named subpatterns (maximum 10,000) */ |
118 |
REG_BADPAT, /* repeated subpattern is too long */ |
REG_BADPAT, /* repeated subpattern is too long */ |
119 |
REG_BADPAT /* octal value is greater than \377 (not in UTF-8 mode) */ |
REG_BADPAT, /* octal value is greater than \377 (not in UTF-8 mode) */ |
120 |
|
REG_BADPAT, /* internal error: overran compiling workspace */ |
121 |
|
REG_BADPAT, /* internal error: previously-checked referenced subpattern not found */ |
122 |
|
REG_BADPAT, /* DEFINE group contains more than one branch */ |
123 |
|
REG_BADPAT, /* repeating a DEFINE group is not allowed */ |
124 |
|
REG_INVARG, /* inconsistent NEWLINE options */ |
125 |
|
REG_BADPAT, /* \g is not followed followed by an (optionally braced) non-zero number */ |
126 |
|
REG_BADPAT /* (?+ or (?- must be followed by a non-zero number */ |
127 |
}; |
}; |
128 |
|
|
129 |
/* Table of texts corresponding to POSIX error codes */ |
/* Table of texts corresponding to POSIX error codes */ |
156 |
* Translate error code to string * |
* Translate error code to string * |
157 |
*************************************************/ |
*************************************************/ |
158 |
|
|
159 |
PCRE_DATA_SCOPE size_t |
PCREPOSIX_EXP_DEFN size_t |
160 |
regerror(int errcode, const regex_t *preg, char *errbuf, size_t errbuf_size) |
regerror(int errcode, const regex_t *preg, char *errbuf, size_t errbuf_size) |
161 |
{ |
{ |
162 |
const char *message, *addmessage; |
const char *message, *addmessage; |
191 |
* Free store held by a regex * |
* Free store held by a regex * |
192 |
*************************************************/ |
*************************************************/ |
193 |
|
|
194 |
PCRE_DATA_SCOPE void |
PCREPOSIX_EXP_DEFN void |
195 |
regfree(regex_t *preg) |
regfree(regex_t *preg) |
196 |
{ |
{ |
197 |
(pcre_free)(preg->re_pcre); |
(pcre_free)(preg->re_pcre); |
214 |
various non-zero codes on failure |
various non-zero codes on failure |
215 |
*/ |
*/ |
216 |
|
|
217 |
PCRE_DATA_SCOPE int |
PCREPOSIX_EXP_DEFN int |
218 |
regcomp(regex_t *preg, const char *pattern, int cflags) |
regcomp(regex_t *preg, const char *pattern, int cflags) |
219 |
{ |
{ |
220 |
const char *errorptr; |
const char *errorptr; |
256 |
be set. When this is the case, the nmatch and pmatch arguments are ignored, and |
be set. When this is the case, the nmatch and pmatch arguments are ignored, and |
257 |
the only result is yes/no/error. */ |
the only result is yes/no/error. */ |
258 |
|
|
259 |
PCRE_DATA_SCOPE int |
PCREPOSIX_EXP_DEFN int |
260 |
regexec(const regex_t *preg, const char *string, size_t nmatch, |
regexec(const regex_t *preg, const char *string, size_t nmatch, |
261 |
regmatch_t pmatch[], int eflags) |
regmatch_t pmatch[], int eflags) |
262 |
{ |
{ |