3 |
*************************************************/ |
*************************************************/ |
4 |
|
|
5 |
|
|
|
#define PCRE_VERSION "2.00 24-Sep-1998" |
|
|
|
|
|
|
|
6 |
/* This is a library of functions to support regular expressions whose syntax |
/* This is a library of functions to support regular expressions whose syntax |
7 |
and semantics are as close as possible to those of the Perl 5 language. See |
and semantics are as close as possible to those of the Perl 5 language. See |
8 |
the file Tech.Notes for some information on the internals. |
the file Tech.Notes for some information on the internals. |
9 |
|
|
10 |
Written by: Philip Hazel <ph10@cam.ac.uk> |
Written by: Philip Hazel <ph10@cam.ac.uk> |
11 |
|
|
12 |
Copyright (c) 1998 University of Cambridge |
Copyright (c) 1997-1999 University of Cambridge |
13 |
|
|
14 |
----------------------------------------------------------------------------- |
----------------------------------------------------------------------------- |
15 |
Permission is granted to anyone to use this software for any purpose on any |
Permission is granted to anyone to use this software for any purpose on any |
25 |
|
|
26 |
3. Altered versions must be plainly marked as such, and must not be |
3. Altered versions must be plainly marked as such, and must not be |
27 |
misrepresented as being the original software. |
misrepresented as being the original software. |
28 |
|
|
29 |
|
4. If PCRE is embedded in any software that is released under the GNU |
30 |
|
General Purpose Licence (GPL), then the terms of that licence shall |
31 |
|
supersede any condition above with which it is incompatible. |
32 |
----------------------------------------------------------------------------- |
----------------------------------------------------------------------------- |
33 |
*/ |
*/ |
34 |
|
|
64 |
|
|
65 |
#define PCRE_IMS (PCRE_CASELESS|PCRE_MULTILINE|PCRE_DOTALL) |
#define PCRE_IMS (PCRE_CASELESS|PCRE_MULTILINE|PCRE_DOTALL) |
66 |
|
|
67 |
/* Private options flags start at the most significant end of the two bytes. |
/* Private options flags start at the most significant end of the four bytes, |
68 |
The public options defined in pcre.h start at the least significant end. Make |
but skip the top bit so we can use ints for convenience without getting tangled |
69 |
sure they don't overlap! */ |
with negative values. The public options defined in pcre.h start at the least |
70 |
|
significant end. Make sure they don't overlap, though now that we have expanded |
71 |
#define PCRE_FIRSTSET 0x8000 /* first_char is set */ |
to four bytes there is plenty of space. */ |
72 |
#define PCRE_STARTLINE 0x4000 /* start after \n for multiline */ |
|
73 |
#define PCRE_INGROUP 0x2000 /* compiling inside a group */ |
#define PCRE_FIRSTSET 0x40000000 /* first_char is set */ |
74 |
|
#define PCRE_REQCHSET 0x20000000 /* req_char is set */ |
75 |
|
#define PCRE_STARTLINE 0x10000000 /* start after \n for multiline */ |
76 |
|
#define PCRE_INGROUP 0x08000000 /* compiling inside a group */ |
77 |
|
#define PCRE_ICHANGED 0x04000000 /* i option changes within regex */ |
78 |
|
|
79 |
/* Options for the "extra" block produced by pcre_study(). */ |
/* Options for the "extra" block produced by pcre_study(). */ |
80 |
|
|
87 |
(PCRE_CASELESS|PCRE_EXTENDED|PCRE_ANCHORED|PCRE_MULTILINE| \ |
(PCRE_CASELESS|PCRE_EXTENDED|PCRE_ANCHORED|PCRE_MULTILINE| \ |
88 |
PCRE_DOTALL|PCRE_DOLLAR_ENDONLY|PCRE_EXTRA|PCRE_UNGREEDY) |
PCRE_DOTALL|PCRE_DOLLAR_ENDONLY|PCRE_EXTRA|PCRE_UNGREEDY) |
89 |
|
|
90 |
#define PUBLIC_EXEC_OPTIONS (PCRE_ANCHORED|PCRE_NOTBOL|PCRE_NOTEOL) |
#define PUBLIC_EXEC_OPTIONS \ |
91 |
|
(PCRE_ANCHORED|PCRE_NOTBOL|PCRE_NOTEOL|PCRE_NOTEMPTY) |
92 |
|
|
93 |
#define PUBLIC_STUDY_OPTIONS 0 /* None defined */ |
#define PUBLIC_STUDY_OPTIONS 0 /* None defined */ |
94 |
|
|
95 |
/* Magic number to provide a small check against being handed junk. */ |
/* Magic number to provide a small check against being handed junk. */ |
96 |
|
|
97 |
#define MAGIC_NUMBER 0x50435245 /* 'PCRE' */ |
#define MAGIC_NUMBER 0x50435245UL /* 'PCRE' */ |
98 |
|
|
99 |
/* Miscellaneous definitions */ |
/* Miscellaneous definitions */ |
100 |
|
|
264 |
runs on as long as necessary after the end. */ |
runs on as long as necessary after the end. */ |
265 |
|
|
266 |
typedef struct real_pcre { |
typedef struct real_pcre { |
267 |
unsigned int magic_number; |
unsigned long int magic_number; |
268 |
unsigned short int options; |
const unsigned char *tables; |
269 |
unsigned char top_bracket; |
unsigned long int options; |
270 |
unsigned char top_backref; |
uschar top_bracket; |
271 |
unsigned char first_char; |
uschar top_backref; |
272 |
unsigned char code[1]; |
uschar first_char; |
273 |
|
uschar req_char; |
274 |
|
uschar code[1]; |
275 |
} real_pcre; |
} real_pcre; |
276 |
|
|
277 |
/* The real format of the extra block returned by pcre_study(). */ |
/* The real format of the extra block returned by pcre_study(). */ |
278 |
|
|
279 |
typedef struct real_pcre_extra { |
typedef struct real_pcre_extra { |
280 |
unsigned char options; |
uschar options; |
281 |
unsigned char start_bits[32]; |
uschar start_bits[32]; |
282 |
} real_pcre_extra; |
} real_pcre_extra; |
283 |
|
|
|
/* Global tables from chartables.c */ |
|
284 |
|
|
285 |
extern uschar pcre_lcc[]; |
/* Structure for passing "static" information around between the functions |
286 |
extern uschar pcre_fcc[]; |
doing the compiling, so that they are thread-safe. */ |
287 |
extern uschar pcre_cbits[]; |
|
288 |
extern uschar pcre_ctypes[]; |
typedef struct compile_data { |
289 |
|
const uschar *lcc; /* Points to lower casing table */ |
290 |
|
const uschar *fcc; /* Points to case-flipping table */ |
291 |
|
const uschar *cbits; /* Points to character type table */ |
292 |
|
const uschar *ctypes; /* Points to table of type maps */ |
293 |
|
} compile_data; |
294 |
|
|
295 |
|
/* Structure for passing "static" information around between the functions |
296 |
|
doing the matching, so that they are thread-safe. */ |
297 |
|
|
298 |
|
typedef struct match_data { |
299 |
|
int errorcode; /* As it says */ |
300 |
|
int *offset_vector; /* Offset vector */ |
301 |
|
int offset_end; /* One past the end */ |
302 |
|
int offset_max; /* The maximum usable for return data */ |
303 |
|
const uschar *lcc; /* Points to lower casing table */ |
304 |
|
const uschar *ctypes; /* Points to table of type maps */ |
305 |
|
BOOL offset_overflow; /* Set if too many extractions */ |
306 |
|
BOOL notbol; /* NOTBOL flag */ |
307 |
|
BOOL noteol; /* NOTEOL flag */ |
308 |
|
BOOL endonly; /* Dollar not before final \n */ |
309 |
|
BOOL notempty; /* Empty string match not wanted */ |
310 |
|
const uschar *start_subject; /* Start of the subject string */ |
311 |
|
const uschar *end_subject; /* End of the subject string */ |
312 |
|
const uschar *start_match; /* Start of this match attempt */ |
313 |
|
const uschar *end_match_ptr; /* Subject position at end match */ |
314 |
|
int end_offset_top; /* Highwater mark at end of match */ |
315 |
|
} match_data; |
316 |
|
|
317 |
/* Bit definitions for entries in pcre_ctypes[]. */ |
/* Bit definitions for entries in the pcre_ctypes table. */ |
318 |
|
|
319 |
#define ctype_space 0x01 |
#define ctype_space 0x01 |
320 |
#define ctype_letter 0x02 |
#define ctype_letter 0x02 |
323 |
#define ctype_word 0x10 /* alphameric or '_' */ |
#define ctype_word 0x10 /* alphameric or '_' */ |
324 |
#define ctype_meta 0x80 /* regexp meta char or zero (end pattern) */ |
#define ctype_meta 0x80 /* regexp meta char or zero (end pattern) */ |
325 |
|
|
326 |
/* Offsets for the bitmap tables */ |
/* Offsets for the bitmap tables in pcre_cbits. Each table contains a set |
327 |
|
of bits for a class map. */ |
328 |
|
|
329 |
#define cbit_digit 0 |
#define cbit_digit 0 /* for \d */ |
330 |
#define cbit_letter 32 |
#define cbit_word 32 /* for \w */ |
331 |
#define cbit_word 64 |
#define cbit_space 64 /* for \s */ |
332 |
#define cbit_space 96 |
#define cbit_length 96 /* Length of the cbits table */ |
333 |
#define cbit_length 128 /* Length of the cbits table */ |
|
334 |
|
/* Offsets of the various tables from the base tables pointer, and |
335 |
|
total length. */ |
336 |
|
|
337 |
|
#define lcc_offset 0 |
338 |
|
#define fcc_offset 256 |
339 |
|
#define cbits_offset 512 |
340 |
|
#define ctypes_offset (cbits_offset + cbit_length) |
341 |
|
#define tables_length (ctypes_offset + 256) |
342 |
|
|
343 |
/* End of internal.h */ |
/* End of internal.h */ |