blob: ca1427700f3cd02be1e143a6549be79734701883 [file] [log] [blame]
Tristan Matthews04616462013-11-14 16:09:34 -05001.TH PCRECALLOUT 3
2.SH NAME
3PCRE - Perl-compatible regular expressions
4.SH "PCRE CALLOUTS"
5.rs
6.sp
7.B int (*pcre_callout)(pcre_callout_block *);
8.PP
9PCRE provides a feature called "callout", which is a means of temporarily
10passing control to the caller of PCRE in the middle of pattern matching. The
11caller of PCRE provides an external function by putting its entry point in the
12global variable \fIpcre_callout\fP. By default, this variable contains NULL,
13which disables all calling out.
14.P
15Within a regular expression, (?C) indicates the points at which the external
16function is to be called. Different callout points can be identified by putting
17a number less than 256 after the letter C. The default value is zero.
18For example, this pattern has two callout points:
19.sp
20 (?C1)abc(?C2)def
21.sp
22If the PCRE_AUTO_CALLOUT option bit is set when \fBpcre_compile()\fP or
23\fBpcre_compile2()\fP is called, PCRE automatically inserts callouts, all with
24number 255, before each item in the pattern. For example, if PCRE_AUTO_CALLOUT
25is used with the pattern
26.sp
27 A(\ed{2}|--)
28.sp
29it is processed as if it were
30.sp
31(?C255)A(?C255)((?C255)\ed{2}(?C255)|(?C255)-(?C255)-(?C255))(?C255)
32.sp
33Notice that there is a callout before and after each parenthesis and
34alternation bar. Automatic callouts can be used for tracking the progress of
35pattern matching. The
36.\" HREF
37\fBpcretest\fP
38.\"
39command has an option that sets automatic callouts; when it is used, the output
40indicates how the pattern is matched. This is useful information when you are
41trying to optimize the performance of a particular pattern.
42.P
43The use of callouts in a pattern makes it ineligible for optimization by the
44just-in-time compiler. Studying such a pattern with the PCRE_STUDY_JIT_COMPILE
45option always fails.
46.
47.
48.SH "MISSING CALLOUTS"
49.rs
50.sp
51You should be aware that, because of optimizations in the way PCRE matches
52patterns by default, callouts sometimes do not happen. For example, if the
53pattern is
54.sp
55 ab(?C4)cd
56.sp
57PCRE knows that any matching string must contain the letter "d". If the subject
58string is "abyz", the lack of "d" means that matching doesn't ever start, and
59the callout is never reached. However, with "abyd", though the result is still
60no match, the callout is obeyed.
61.P
62If the pattern is studied, PCRE knows the minimum length of a matching string,
63and will immediately give a "no match" return without actually running a match
64if the subject is not long enough, or, for unanchored patterns, if it has
65been scanned far enough.
66.P
67You can disable these optimizations by passing the PCRE_NO_START_OPTIMIZE
68option to \fBpcre_compile()\fP, \fBpcre_exec()\fP, or \fBpcre_dfa_exec()\fP,
69or by starting the pattern with (*NO_START_OPT). This slows down the matching
70process, but does ensure that callouts such as the example above are obeyed.
71.
72.
73.SH "THE CALLOUT INTERFACE"
74.rs
75.sp
76During matching, when PCRE reaches a callout point, the external function
77defined by \fIpcre_callout\fP is called (if it is set). This applies to both
78the \fBpcre_exec()\fP and the \fBpcre_dfa_exec()\fP matching functions. The
79only argument to the callout function is a pointer to a \fBpcre_callout\fP
80block. This structure contains the following fields:
81.sp
82 int \fIversion\fP;
83 int \fIcallout_number\fP;
84 int *\fIoffset_vector\fP;
85 const char *\fIsubject\fP;
86 int \fIsubject_length\fP;
87 int \fIstart_match\fP;
88 int \fIcurrent_position\fP;
89 int \fIcapture_top\fP;
90 int \fIcapture_last\fP;
91 void *\fIcallout_data\fP;
92 int \fIpattern_position\fP;
93 int \fInext_item_length\fP;
94 const unsigned char *\fImark\fP;
95.sp
96The \fIversion\fP field is an integer containing the version number of the
97block format. The initial version was 0; the current version is 2. The version
98number will change again in future if additional fields are added, but the
99intention is never to remove any of the existing fields.
100.P
101The \fIcallout_number\fP field contains the number of the callout, as compiled
102into the pattern (that is, the number after ?C for manual callouts, and 255 for
103automatically generated callouts).
104.P
105The \fIoffset_vector\fP field is a pointer to the vector of offsets that was
106passed by the caller to \fBpcre_exec()\fP or \fBpcre_dfa_exec()\fP. When
107\fBpcre_exec()\fP is used, the contents can be inspected in order to extract
108substrings that have been matched so far, in the same way as for extracting
109substrings after a match has completed. For \fBpcre_dfa_exec()\fP this field is
110not useful.
111.P
112The \fIsubject\fP and \fIsubject_length\fP fields contain copies of the values
113that were passed to \fBpcre_exec()\fP.
114.P
115The \fIstart_match\fP field normally contains the offset within the subject at
116which the current match attempt started. However, if the escape sequence \eK
117has been encountered, this value is changed to reflect the modified starting
118point. If the pattern is not anchored, the callout function may be called
119several times from the same point in the pattern for different starting points
120in the subject.
121.P
122The \fIcurrent_position\fP field contains the offset within the subject of the
123current match pointer.
124.P
125When the \fBpcre_exec()\fP function is used, the \fIcapture_top\fP field
126contains one more than the number of the highest numbered captured substring so
127far. If no substrings have been captured, the value of \fIcapture_top\fP is
128one. This is always the case when \fBpcre_dfa_exec()\fP is used, because it
129does not support captured substrings.
130.P
131The \fIcapture_last\fP field contains the number of the most recently captured
132substring. If no substrings have been captured, its value is -1. This is always
133the case when \fBpcre_dfa_exec()\fP is used.
134.P
135The \fIcallout_data\fP field contains a value that is passed to
136\fBpcre_exec()\fP or \fBpcre_dfa_exec()\fP specifically so that it can be
137passed back in callouts. It is passed in the \fIpcre_callout\fP field of the
138\fBpcre_extra\fP data structure. If no such data was passed, the value of
139\fIcallout_data\fP in a \fBpcre_callout\fP block is NULL. There is a
140description of the \fBpcre_extra\fP structure in the
141.\" HREF
142\fBpcreapi\fP
143.\"
144documentation.
145.P
146The \fIpattern_position\fP field is present from version 1 of the
147\fIpcre_callout\fP structure. It contains the offset to the next item to be
148matched in the pattern string.
149.P
150The \fInext_item_length\fP field is present from version 1 of the
151\fIpcre_callout\fP structure. It contains the length of the next item to be
152matched in the pattern string. When the callout immediately precedes an
153alternation bar, a closing parenthesis, or the end of the pattern, the length
154is zero. When the callout precedes an opening parenthesis, the length is that
155of the entire subpattern.
156.P
157The \fIpattern_position\fP and \fInext_item_length\fP fields are intended to
158help in distinguishing between different automatic callouts, which all have the
159same callout number. However, they are set for all callouts.
160.P
161The \fImark\fP field is present from version 2 of the \fIpcre_callout\fP
162structure. In callouts from \fBpcre_exec()\fP it contains a pointer to the
163zero-terminated name of the most recently passed (*MARK), (*PRUNE), or (*THEN)
164item in the match, or NULL if no such items have been passed. Instances of
165(*PRUNE) or (*THEN) without a name do not obliterate a previous (*MARK). In
166callouts from \fBpcre_dfa_exec()\fP this field always contains NULL.
167.
168.
169.SH "RETURN VALUES"
170.rs
171.sp
172The external callout function returns an integer to PCRE. If the value is zero,
173matching proceeds as normal. If the value is greater than zero, matching fails
174at the current point, but the testing of other matching possibilities goes
175ahead, just as if a lookahead assertion had failed. If the value is less than
176zero, the match is abandoned, and \fBpcre_exec()\fP or \fBpcre_dfa_exec()\fP
177returns the negative value.
178.P
179Negative values should normally be chosen from the set of PCRE_ERROR_xxx
180values. In particular, PCRE_ERROR_NOMATCH forces a standard "no match" failure.
181The error number PCRE_ERROR_CALLOUT is reserved for use by callout functions;
182it will never be used by PCRE itself.
183.
184.
185.SH AUTHOR
186.rs
187.sp
188.nf
189Philip Hazel
190University Computing Service
191Cambridge CB2 3QH, England.
192.fi
193.
194.
195.SH REVISION
196.rs
197.sp
198.nf
199Last updated: 30 November 2011
200Copyright (c) 1997-2011 University of Cambridge.
201.fi