This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perlreapi.pod: Update RXf_SKIPWHITE section
[perl5.git] / pod / perlreapi.pod
CommitLineData
108003db
RGS
1=head1 NAME
2
5a2b28ce 3perlreapi - Perl regular expression plugin interface
108003db
RGS
4
5=head1 DESCRIPTION
6
5a2b28ce
KW
7As of Perl 5.9.5 there is a new interface for plugging and using
8regular expression engines other than the default one.
a0e97681
RGS
9
10Each engine is supposed to provide access to a constant structure of the
11following format:
108003db
RGS
12
13 typedef struct regexp_engine {
02c01adb
KW
14 REGEXP* (*comp) (pTHX_
15 const SV * const pattern, const U32 flags);
16 I32 (*exec) (pTHX_
17 REGEXP * const rx,
18 char* stringarg,
19 char* strend, char* strbeg,
20 I32 minend, SV* screamer,
2fdbfb4d 21 void* data, U32 flags);
02c01adb
KW
22 char* (*intuit) (pTHX_
23 REGEXP * const rx, SV *sv,
24 char *strpos, char *strend, U32 flags,
2fdbfb4d 25 struct re_scream_pos_data_s *data);
49d7dfbc
AB
26 SV* (*checkstr) (pTHX_ REGEXP * const rx);
27 void (*free) (pTHX_ REGEXP * const rx);
02c01adb
KW
28 void (*numbered_buff_FETCH) (pTHX_
29 REGEXP * const rx,
30 const I32 paren,
31 SV * const sv);
32 void (*numbered_buff_STORE) (pTHX_
33 REGEXP * const rx,
34 const I32 paren,
5a2b28ce 35 SV const * const value);
02c01adb
KW
36 I32 (*numbered_buff_LENGTH) (pTHX_
37 REGEXP * const rx,
38 const SV * const sv,
39 const I32 paren);
40 SV* (*named_buff) (pTHX_
41 REGEXP * const rx,
42 SV * const key,
43 SV * const value,
44 U32 flags);
45 SV* (*named_buff_iter) (pTHX_
46 REGEXP * const rx,
47 const SV * const lastkey,
192b9cd1 48 const U32 flags);
49d7dfbc 49 SV* (*qr_package)(pTHX_ REGEXP * const rx);
108003db 50 #ifdef USE_ITHREADS
49d7dfbc 51 void* (*dupe) (pTHX_ REGEXP * const rx, CLONE_PARAMS *param);
108003db 52 #endif
3c13cae6
DM
53 REGEXP* (*op_comp) (...);
54
108003db
RGS
55
56When a regexp is compiled, its C<engine> field is then set to point at
a0e97681 57the appropriate structure, so that when it needs to be used Perl can find
108003db
RGS
58the right routines to do so.
59
60In order to install a new regexp handler, C<$^H{regcomp}> is set
61to an integer which (when casted appropriately) resolves to one of these
62structures. When compiling, the C<comp> method is executed, and the
5a2b28ce 63resulting C<regexp> structure's engine field is expected to point back at
108003db
RGS
64the same structure.
65
5a2b28ce 66The pTHX_ symbol in the definition is a macro used by Perl under threading
108003db
RGS
67to provide an extra argument to the routine holding a pointer back to
68the interpreter that is executing the regexp. So under threading all
69routines get an extra argument.
70
882227b7 71=head1 Callbacks
108003db
RGS
72
73=head2 comp
74
3ab4a224 75 REGEXP* comp(pTHX_ const SV * const pattern, const U32 flags);
108003db 76
3ab4a224
AB
77Compile the pattern stored in C<pattern> using the given C<flags> and
78return a pointer to a prepared C<REGEXP> structure that can perform
79the match. See L</The REGEXP structure> below for an explanation of
80the individual fields in the REGEXP struct.
81
82The C<pattern> parameter is the scalar that was used as the
5a2b28ce
KW
83pattern. Previous versions of Perl would pass two C<char*> indicating
84the start and end of the stringified pattern; the following snippet can
3ab4a224
AB
85be used to get the old parameters:
86
87 STRLEN plen;
88 char* exp = SvPV(pattern, plen);
89 char* xend = exp + plen;
90
5a2b28ce 91Since any scalar can be passed as a pattern, it's possible to implement
3ab4a224
AB
92an engine that does something with an array (C<< "ook" =~ [ qw/ eek
93hlagh / ] >>) or with the non-stringified form of a compiled regular
5a2b28ce
KW
94expression (C<< "ook" =~ qr/eek/ >>). Perl's own engine will always
95stringify everything using the snippet above, but that doesn't mean
3ab4a224 96other engines have to.
108003db 97
a0e97681 98The C<flags> parameter is a bitfield which indicates which of the
c998b245 99C<msixp> flags the regex was compiled with. It also contains
5a2b28ce 100additional info, such as if C<use locale> is in effect.
108003db
RGS
101
102The C<eogc> flags are stripped out before being passed to the comp
5a2b28ce
KW
103routine. The regex engine does not need to know if any of these
104are set, as those flags should only affect what Perl does with the
c998b245
AB
105pattern and its match variables, not how it gets compiled and
106executed.
108003db 107
c998b245
AB
108By the time the comp callback is called, some of these flags have
109already had effect (noted below where applicable). However most of
5a2b28ce 110their effect occurs after the comp callback has run, in routines that
c998b245 111read the C<< rx->extflags >> field which it populates.
108003db 112
c998b245
AB
113In general the flags should be preserved in C<< rx->extflags >> after
114compilation, although the regex engine might want to add or delete
5a2b28ce 115some of them to invoke or disable some special behavior in Perl. The
c998b245 116flags along with any special behavior they cause are documented below:
108003db 117
c998b245 118The pattern modifiers:
108003db 119
c998b245 120=over 4
108003db 121
c998b245 122=item C</m> - RXf_PMf_MULTILINE
108003db 123
c998b245
AB
124If this is in C<< rx->extflags >> it will be passed to
125C<Perl_fbm_instr> by C<pp_split> which will treat the subject string
126as a multi-line string.
108003db 127
c998b245 128=item C</s> - RXf_PMf_SINGLELINE
108003db 129
c998b245 130=item C</i> - RXf_PMf_FOLD
108003db 131
c998b245 132=item C</x> - RXf_PMf_EXTENDED
108003db 133
5a2b28ce 134If present on a regex, C<"#"> comments will be handled differently by the
c998b245 135tokenizer in some cases.
108003db 136
c998b245 137TODO: Document those cases.
108003db 138
c998b245 139=item C</p> - RXf_PMf_KEEPCOPY
108003db 140
e72ec78c
KW
141TODO: Document this
142
f0f9b3b8
KW
143=item Character set
144
145The character set semantics are determined by an enum that is contained
146in this field. This is still experimental and subject to change, but
147the current interface returns the rules by use of the in-line function
148C<get_regex_charset(const U32 flags)>. The only currently documented
149value returned from it is REGEX_LOCALE_CHARSET, which is set if
e72ec78c
KW
150C<use locale> is in effect. If present in C<< rx->extflags >>,
151C<split> will use the locale dependent definition of whitespace
152when RXf_SKIPWHITE or RXf_WHITE is in effect. ASCII whitespace
96090e4f 153is defined as per L<isSPACE|perlapi/isSPACE>, and by the internal
e72ec78c 154macros C<is_utf8_space> under UTF-8, and C<isSPACE_LC> under C<use
c998b245 155locale>.
108003db 156
f0f9b3b8
KW
157=back
158
159Additional flags:
160
161=over 4
162
0ac6acae
AB
163=item RXf_SPLIT
164
9f6ecbda
FC
165This flag was removed in perl 5.18.0. C<split ' '> is now special-cased
166solely in the parser. RXf_SPLIT is still #defined, so you can test for it.
167This is how it used to work:
168
0ac6acae 169If C<split> is invoked as C<split ' '> or with no arguments (which
5a2b28ce 170really means C<split(' ', $_)>, see L<split|perlfunc/split>), Perl will
0ac6acae 171set this flag. The regex engine can then check for it and set the
5a2b28ce 172SKIPWHITE and WHITE extflags. To do this, the Perl engine does:
0ac6acae
AB
173
174 if (flags & RXf_SPLIT && r->prelen == 1 && r->precomp[0] == ' ')
175 r->extflags |= (RXf_SKIPWHITE|RXf_WHITE);
176
108003db
RGS
177=back
178
c998b245
AB
179These flags can be set during compilation to enable optimizations in
180the C<split> operator.
181
182=over 4
183
0ac6acae
AB
184=item RXf_SKIPWHITE
185
51b1fee8
FC
186This flag was removed in perl 5.18.0. It is still #defined, so you can
187set it, but doing so will have no effect. This is how it used to work:
188
0ac6acae
AB
189If the flag is present in C<< rx->extflags >> C<split> will delete
190whitespace from the start of the subject string before it's operated
5a2b28ce
KW
191on. What is considered whitespace depends on if the subject is a
192UTF-8 string and if the C<RXf_PMf_LOCALE> flag is set.
0ac6acae 193
5a2b28ce
KW
194If RXf_WHITE is set in addition to this flag, C<split> will behave like
195C<split " "> under the Perl engine.
0ac6acae 196
c998b245
AB
197=item RXf_START_ONLY
198
199Tells the split operator to split the target string on newlines
200(C<\n>) without invoking the regex engine.
201
202Perl's engine sets this if the pattern is C</^/> (C<plen == 1 && *exp
5a2b28ce 203== '^'>), even under C</^/s>; see L<split|perlfunc>. Of course a
c998b245
AB
204different regex engine might want to use the same optimizations
205with a different syntax.
206
207=item RXf_WHITE
208
209Tells the split operator to split the target string on whitespace
210without invoking the regex engine. The definition of whitespace varies
5a2b28ce
KW
211depending on if the target string is a UTF-8 string and on
212if RXf_PMf_LOCALE is set.
c998b245 213
0ac6acae 214Perl's engine sets this flag if the pattern is C<\s+>.
c998b245 215
640f820d
AB
216=item RXf_NULL
217
a0e97681 218Tells the split operator to split the target string on
5a2b28ce 219characters. The definition of character varies depending on if
640f820d
AB
220the target string is a UTF-8 string.
221
222Perl's engine sets this flag on empty patterns, this optimization
a0e97681 223makes C<split //> much faster than it would otherwise be. It's even
640f820d
AB
224faster than C<unpack>.
225
c998b245 226=back
108003db
RGS
227
228=head2 exec
229
49d7dfbc 230 I32 exec(pTHX_ REGEXP * const rx,
108003db
RGS
231 char *stringarg, char* strend, char* strbeg,
232 I32 minend, SV* screamer,
233 void* data, U32 flags);
234
8fd1a950
DM
235Execute a regexp. The arguments are
236
237=over 4
238
239=item rx
240
241The regular expression to execute.
242
243=item screamer
244
245This strangely-named arg is the SV to be matched against. Note that the
246actual char array to be matched against is supplied by the arguments
247described below; the SV is just used to determine UTF8ness, C<pos()> etc.
248
249=item strbeg
250
251Pointer to the physical start of the string.
252
253=item strend
254
255Pointer to the character following the physical end of the string (i.e.
5a2b28ce 256the C<\0>).
8fd1a950
DM
257
258=item stringarg
259
260Pointer to the position in the string where matching should start; it might
261not be equal to C<strbeg> (for example in a later iteration of C</.../g>).
262
263=item minend
264
265Minimum length of string (measured in bytes from C<stringarg>) that must
266match; if the engine reaches the end of the match but hasn't reached this
267position in the string, it should fail.
268
269=item data
270
271Optimisation data; subject to change.
272
273=item flags
274
275Optimisation flags; subject to change.
276
277=back
108003db
RGS
278
279=head2 intuit
280
49d7dfbc 281 char* intuit(pTHX_ REGEXP * const rx,
108003db 282 SV *sv, char *strpos, char *strend,
49d7dfbc 283 const U32 flags, struct re_scream_pos_data_s *data);
108003db
RGS
284
285Find the start position where a regex match should be attempted,
5a2b28ce
KW
286or possibly if the regex engine should not be run because the
287pattern can't match. This is called, as appropriate, by the core,
288depending on the values of the C<extflags> member of the C<regexp>
108003db
RGS
289structure.
290
291=head2 checkstr
292
49d7dfbc 293 SV* checkstr(pTHX_ REGEXP * const rx);
108003db
RGS
294
295Return a SV containing a string that must appear in the pattern. Used
296by C<split> for optimising matches.
297
298=head2 free
299
49d7dfbc 300 void free(pTHX_ REGEXP * const rx);
108003db 301
5a2b28ce 302Called by Perl when it is freeing a regexp pattern so that the engine
108003db 303can release any resources pointed to by the C<pprivate> member of the
5a2b28ce
KW
304C<regexp> structure. This is only responsible for freeing private data;
305Perl will handle releasing anything else contained in the C<regexp> structure.
108003db 306
192b9cd1 307=head2 Numbered capture callbacks
108003db 308
192b9cd1
AB
309Called to get/set the value of C<$`>, C<$'>, C<$&> and their named
310equivalents, ${^PREMATCH}, ${^POSTMATCH} and $^{MATCH}, as well as the
c27a5cfe 311numbered capture groups (C<$1>, C<$2>, ...).
49d7dfbc 312
c149d39e
DM
313The C<paren> parameter will be C<1> for C<$1>, C<2> for C<$2> and so
314forth, and have these symbolic values for the special variables:
315
316 ${^PREMATCH} RX_BUFF_IDX_CARET_PREMATCH
317 ${^POSTMATCH} RX_BUFF_IDX_CARET_POSTMATCH
318 ${^MATCH} RX_BUFF_IDX_CARET_FULLMATCH
319 $` RX_BUFF_IDX_PREMATCH
320 $' RX_BUFF_IDX_POSTMATCH
321 $& RX_BUFF_IDX_FULLMATCH
322
5a2b28ce 323Note that in Perl 5.17.3 and earlier, the last three constants were also
c149d39e
DM
324used for the caret variants of the variables.
325
49d7dfbc 326
192b9cd1
AB
327The names have been chosen by analogy with L<Tie::Scalar> methods
328names with an additional B<LENGTH> callback for efficiency. However
329named capture variables are currently not tied internally but
330implemented via magic.
331
332=head3 numbered_buff_FETCH
333
334 void numbered_buff_FETCH(pTHX_ REGEXP * const rx, const I32 paren,
335 SV * const sv);
336
337Fetch a specified numbered capture. C<sv> should be set to the scalar
338to return, the scalar is passed as an argument rather than being
5a2b28ce 339returned from the function because when it's called Perl already has a
192b9cd1
AB
340scalar to store the value, creating another one would be
341redundant. The scalar can be set with C<sv_setsv>, C<sv_setpvn> and
342friends, see L<perlapi>.
49d7dfbc 343
5a2b28ce 344This callback is where Perl untaints its own capture variables under
c998b245 345taint mode (see L<perlsec>). See the C<Perl_reg_numbered_buff_fetch>
49d7dfbc
AB
346function in F<regcomp.c> for how to untaint capture variables if
347that's something you'd like your engine to do as well.
108003db 348
192b9cd1 349=head3 numbered_buff_STORE
108003db 350
02c01adb
KW
351 void (*numbered_buff_STORE) (pTHX_
352 REGEXP * const rx,
353 const I32 paren,
2fdbfb4d 354 SV const * const value);
108003db 355
192b9cd1
AB
356Set the value of a numbered capture variable. C<value> is the scalar
357that is to be used as the new value. It's up to the engine to make
358sure this is used as the new value (or reject it).
2fdbfb4d
AB
359
360Example:
361
362 if ("ook" =~ /(o*)/) {
ccf3535a 363 # 'paren' will be '1' and 'value' will be 'ee'
2fdbfb4d
AB
364 $1 =~ tr/o/e/;
365 }
366
367Perl's own engine will croak on any attempt to modify the capture
a0e97681 368variables, to do this in another engine use the following callback
2fdbfb4d
AB
369(copied from C<Perl_reg_numbered_buff_store>):
370
371 void
02c01adb
KW
372 Example_reg_numbered_buff_store(pTHX_
373 REGEXP * const rx,
374 const I32 paren,
375 SV const * const value)
2fdbfb4d
AB
376 {
377 PERL_UNUSED_ARG(rx);
378 PERL_UNUSED_ARG(paren);
379 PERL_UNUSED_ARG(value);
380
381 if (!PL_localizing)
382 Perl_croak(aTHX_ PL_no_modify);
383 }
384
5a2b28ce 385Actually Perl will not I<always> croak in a statement that looks
2fdbfb4d 386like it would modify a numbered capture variable. This is because the
5a2b28ce 387STORE callback will not be called if Perl can determine that it
2fdbfb4d
AB
388doesn't have to modify the value. This is exactly how tied variables
389behave in the same situation:
390
391 package CaptureVar;
392 use base 'Tie::Scalar';
393
394 sub TIESCALAR { bless [] }
395 sub FETCH { undef }
396 sub STORE { die "This doesn't get called" }
397
398 package main;
399
c69ca1d4 400 tie my $sv => "CaptureVar";
2fdbfb4d
AB
401 $sv =~ y/a/b/;
402
5a2b28ce 403Because C<$sv> is C<undef> when the C<y///> operator is applied to it,
2fdbfb4d 404the transliteration won't actually execute and the program won't
192b9cd1 405C<die>. This is different to how 5.8 and earlier versions behaved
5a2b28ce 406since the capture variables were READONLY variables then; now they'll
192b9cd1 407just die when assigned to in the default engine.
2fdbfb4d 408
192b9cd1 409=head3 numbered_buff_LENGTH
2fdbfb4d 410
02c01adb
KW
411 I32 numbered_buff_LENGTH (pTHX_
412 REGEXP * const rx,
413 const SV * const sv,
2fdbfb4d
AB
414 const I32 paren);
415
416Get the C<length> of a capture variable. There's a special callback
5a2b28ce
KW
417for this so that Perl doesn't have to do a FETCH and run C<length> on
418the result, since the length is (in Perl's case) known from an offset
419stored in C<< rx->offs >>, this is much more efficient:
2fdbfb4d
AB
420
421 I32 s1 = rx->offs[paren].start;
422 I32 s2 = rx->offs[paren].end;
423 I32 len = t1 - s1;
424
425This is a little bit more complex in the case of UTF-8, see what
426C<Perl_reg_numbered_buff_length> does with
427L<is_utf8_string_loclen|perlapi/is_utf8_string_loclen>.
428
192b9cd1
AB
429=head2 Named capture callbacks
430
5a2b28ce 431Called to get/set the value of C<%+> and C<%->, as well as by some
192b9cd1
AB
432utility functions in L<re>.
433
434There are two callbacks, C<named_buff> is called in all the cases the
435FETCH, STORE, DELETE, CLEAR, EXISTS and SCALAR L<Tie::Hash> callbacks
436would be on changes to C<%+> and C<%-> and C<named_buff_iter> in the
437same cases as FIRSTKEY and NEXTKEY.
438
439The C<flags> parameter can be used to determine which of these
5a2b28ce 440operations the callbacks should respond to. The following flags are
192b9cd1
AB
441currently defined:
442
443Which L<Tie::Hash> operation is being performed from the Perl level on
444C<%+> or C<%+>, if any:
445
f1b875a0
YO
446 RXapif_FETCH
447 RXapif_STORE
448 RXapif_DELETE
449 RXapif_CLEAR
450 RXapif_EXISTS
451 RXapif_SCALAR
452 RXapif_FIRSTKEY
453 RXapif_NEXTKEY
192b9cd1 454
5a2b28ce 455If C<%+> or C<%-> is being operated on, if any.
2fdbfb4d 456
f1b875a0
YO
457 RXapif_ONE /* %+ */
458 RXapif_ALL /* %- */
2fdbfb4d 459
5a2b28ce 460If this is being called as C<re::regname>, C<re::regnames> or
c998b245 461C<re::regnames_count>, if any. The first two will be combined with
f1b875a0 462C<RXapif_ONE> or C<RXapif_ALL>.
192b9cd1 463
f1b875a0
YO
464 RXapif_REGNAME
465 RXapif_REGNAMES
466 RXapif_REGNAMES_COUNT
192b9cd1
AB
467
468Internally C<%+> and C<%-> are implemented with a real tied interface
469via L<Tie::Hash::NamedCapture>. The methods in that package will call
470back into these functions. However the usage of
471L<Tie::Hash::NamedCapture> for this purpose might change in future
472releases. For instance this might be implemented by magic instead
473(would need an extension to mgvtbl).
474
475=head3 named_buff
476
477 SV* (*named_buff) (pTHX_ REGEXP * const rx, SV * const key,
478 SV * const value, U32 flags);
479
480=head3 named_buff_iter
481
02c01adb
KW
482 SV* (*named_buff_iter) (pTHX_
483 REGEXP * const rx,
484 const SV * const lastkey,
192b9cd1 485 const U32 flags);
108003db 486
49d7dfbc 487=head2 qr_package
108003db 488
49d7dfbc 489 SV* qr_package(pTHX_ REGEXP * const rx);
108003db
RGS
490
491The package the qr// magic object is blessed into (as seen by C<ref
49d7dfbc 492qr//>). It is recommended that engines change this to their package
5a2b28ce 493name for identification regardless of if they implement methods
49d7dfbc
AB
494on the object.
495
192b9cd1 496The package this method returns should also have the internal
d5213412 497C<Regexp> package in its C<@ISA>. C<< qr//->isa("Regexp") >> should always
192b9cd1
AB
498be true regardless of what engine is being used.
499
500Example implementation might be:
108003db
RGS
501
502 SV*
192b9cd1 503 Example_qr_package(pTHX_ REGEXP * const rx)
108003db
RGS
504 {
505 PERL_UNUSED_ARG(rx);
506 return newSVpvs("re::engine::Example");
507 }
508
509Any method calls on an object created with C<qr//> will be dispatched to the
510package as a normal object.
511
512 use re::engine::Example;
513 my $re = qr//;
514 $re->meth; # dispatched to re::engine::Example::meth()
515
f7e71195
AB
516To retrieve the C<REGEXP> object from the scalar in an XS function use
517the C<SvRX> macro, see L<"REGEXP Functions" in perlapi|perlapi/REGEXP
518Functions>.
108003db
RGS
519
520 void meth(SV * rv)
521 PPCODE:
f7e71195 522 REGEXP * re = SvRX(sv);
108003db 523
108003db
RGS
524=head2 dupe
525
49d7dfbc 526 void* dupe(pTHX_ REGEXP * const rx, CLONE_PARAMS *param);
108003db
RGS
527
528On threaded builds a regexp may need to be duplicated so that the pattern
a0e97681 529can be used by multiple threads. This routine is expected to handle the
108003db 530duplication of any private data pointed to by the C<pprivate> member of
5a2b28ce
KW
531the C<regexp> structure. It will be called with the preconstructed new
532C<regexp> structure as an argument, the C<pprivate> member will point at
a0e97681 533the B<old> private structure, and it is this routine's responsibility to
5a2b28ce 534construct a copy and return a pointer to it (which Perl will then use to
108003db
RGS
535overwrite the field as passed to this routine.)
536
537This allows the engine to dupe its private data but also if necessary
538modify the final structure if it really must.
539
540On unthreaded builds this field doesn't exist.
541
3c13cae6
DM
542=head2 op_comp
543
5a2b28ce 544This is private to the Perl core and subject to change. Should be left
3c13cae6
DM
545null.
546
108003db
RGS
547=head1 The REGEXP structure
548
549The REGEXP struct is defined in F<regexp.h>. All regex engines must be able to
550correctly build such a structure in their L</comp> routine.
551
5a2b28ce 552The REGEXP structure contains all the data that Perl needs to be aware of
108003db 553to properly work with the regular expression. It includes data about
5a2b28ce 554optimisations that Perl can use to determine if the regex engine should
108003db 555really be used, and various other control info that is needed to properly
5a2b28ce
KW
556execute patterns in various contexts, such as if the pattern anchored in
557some way, or what flags were used during the compile, or if the
558program contains special constructs that Perl needs to be aware of.
108003db 559
882227b7
AB
560In addition it contains two fields that are intended for the private
561use of the regex engine that compiled the pattern. These are the
562C<intflags> and C<pprivate> members. C<pprivate> is a void pointer to
5a2b28ce
KW
563an arbitrary structure, whose use and management is the responsibility
564of the compiling engine. Perl will never modify either of these
882227b7 565values.
108003db
RGS
566
567 typedef struct regexp {
568 /* what engine created this regexp? */
569 const struct regexp_engine* engine;
570
571 /* what re is this a lightweight copy of? */
572 struct regexp* mother_re;
573
5a2b28ce 574 /* Information about the match that the Perl core uses to manage
02c01adb 575 * things */
108003db 576 U32 extflags; /* Flags used both externally and internally */
2d608413
KW
577 I32 minlen; /* mininum possible number of chars in */
578 string to match */
579 I32 minlenret; /* mininum possible number of chars in $& */
108003db
RGS
580 U32 gofs; /* chars left of pos that we search from */
581
582 /* substring data about strings that must appear
583 in the final match, used for optimisations */
584 struct reg_substr_data *substrs;
585
c27a5cfe 586 U32 nparens; /* number of capture groups */
108003db
RGS
587
588 /* private engine specific data */
589 U32 intflags; /* Engine Specific Internal flags */
590 void *pprivate; /* Data private to the regex engine which
591 created this object. */
592
02c01adb
KW
593 /* Data about the last/current match. These are modified during
594 * matching*/
82f14494
DM
595 U32 lastparen; /* highest close paren matched ($+) */
596 U32 lastcloseparen; /* last close paren matched ($^N) */
108003db 597 regexp_paren_pair *swap; /* Swap copy of *offs */
02c01adb
KW
598 regexp_paren_pair *offs; /* Array of offsets for (@-) and
599 (@+) */
108003db 600
02c01adb
KW
601 char *subbeg; /* saved or original string so \digit works
602 forever. */
108003db
RGS
603 SV_SAVED_COPY /* If non-NULL, SV which is COW from original */
604 I32 sublen; /* Length of string pointed by subbeg */
02c01adb
KW
605 I32 suboffset; /* byte offset of subbeg from logical start of
606 str */
6502e081 607 I32 subcoffset; /* suboffset equiv, but in chars (for @-/@+) */
108003db
RGS
608
609 /* Information about the match that isn't often used */
610 I32 prelen; /* length of precomp */
611 const char *precomp; /* pre-compilation regular expression */
612
108003db
RGS
613 char *wrapped; /* wrapped version of the pattern */
614 I32 wraplen; /* length of wrapped */
615
02c01adb
KW
616 I32 seen_evals; /* number of eval groups in the pattern - for
617 security checks */
108003db
RGS
618 HV *paren_names; /* Optional hash of paren names */
619
620 /* Refcount of this regexp */
621 I32 refcnt; /* Refcount of this regexp */
622 } regexp;
623
624The fields are discussed in more detail below:
625
882227b7 626=head2 C<engine>
108003db 627
5a2b28ce 628This field points at a C<regexp_engine> structure which contains pointers
108003db
RGS
629to the subroutines that are to be used for performing a match. It
630is the compiling routine's responsibility to populate this field before
631returning the regexp object.
632
633Internally this is set to C<NULL> unless a custom engine is specified in
5a2b28ce 634C<$^H{regcomp}>, Perl's own set of callbacks can be accessed in the struct
108003db
RGS
635pointed to by C<RE_ENGINE_PTR>.
636
882227b7 637=head2 C<mother_re>
108003db
RGS
638
639TODO, see L<http://www.mail-archive.com/perl5-changes@perl.org/msg17328.html>
640
882227b7 641=head2 C<extflags>
108003db 642
5a2b28ce 643This will be used by Perl to see what flags the regexp was compiled
192b9cd1 644with, this will normally be set to the value of the flags parameter by
c998b245
AB
645the L<comp|/comp> callback. See the L<comp|/comp> documentation for
646valid flags.
108003db 647
882227b7 648=head2 C<minlen> C<minlenret>
108003db 649
2d608413
KW
650The minimum string length (in characters) required for the pattern to match.
651This is used to
108003db
RGS
652prune the search space by not bothering to match any closer to the end of a
653string than would allow a match. For instance there is no point in even
654starting the regex engine if the minlen is 10 but the string is only 5
655characters long. There is no way that the pattern can match.
656
2d608413
KW
657C<minlenret> is the minimum length (in characters) of the string that would
658be found in $& after a match.
108003db
RGS
659
660The difference between C<minlen> and C<minlenret> can be seen in the
661following pattern:
662
663 /ns(?=\d)/
664
665where the C<minlen> would be 3 but C<minlenret> would only be 2 as the \d is
666required to match but is not actually included in the matched content. This
667distinction is particularly important as the substitution logic uses the
5a2b28ce
KW
668C<minlenret> to tell if it can do in-place substitutions (these can
669result in considerable speed-up).
108003db 670
882227b7 671=head2 C<gofs>
108003db
RGS
672
673Left offset from pos() to start match at.
674
882227b7 675=head2 C<substrs>
108003db 676
192b9cd1 677Substring data about strings that must appear in the final match. This
5a2b28ce 678is currently only used internally by Perl's engine, but might be
c998b245 679used in the future for all engines for optimisations.
108003db 680
1cecf2c0 681=head2 C<nparens>, C<lastparen>, and C<lastcloseparen>
108003db
RGS
682
683These fields are used to keep track of how many paren groups could be matched
684in the pattern, which was the last open paren to be entered, and which was
685the last close paren to be entered.
686
882227b7 687=head2 C<intflags>
108003db
RGS
688
689The engine's private copy of the flags the pattern was compiled with. Usually
192b9cd1 690this is the same as C<extflags> unless the engine chose to modify one of them.
108003db 691
882227b7 692=head2 C<pprivate>
108003db 693
5a2b28ce 694A void* pointing to an engine-defined data structure. The Perl engine uses the
108003db
RGS
695C<regexp_internal> structure (see L<perlreguts/Base Structures>) but a custom
696engine should use something else.
697
882227b7 698=head2 C<swap>
108003db 699
5a2b28ce 700Unused. Left in for compatibility with Perl 5.10.0.
108003db 701
882227b7 702=head2 C<offs>
108003db
RGS
703
704A C<regexp_paren_pair> structure which defines offsets into the string being
705matched which correspond to the C<$&> and C<$1>, C<$2> etc. captures, the
706C<regexp_paren_pair> struct is defined as follows:
707
708 typedef struct regexp_paren_pair {
709 I32 start;
710 I32 end;
711 } regexp_paren_pair;
712
713If C<< ->offs[num].start >> or C<< ->offs[num].end >> is C<-1> then that
c27a5cfe 714capture group did not match. C<< ->offs[0].start/end >> represents C<$&> (or
c149d39e 715C<${^MATCH}> under C<//p>) and C<< ->offs[paren].end >> matches C<$$paren> where
108003db
RGS
716C<$paren >= 1>.
717
882227b7 718=head2 C<precomp> C<prelen>
108003db 719
192b9cd1
AB
720Used for optimisations. C<precomp> holds a copy of the pattern that
721was compiled and C<prelen> its length. When a new pattern is to be
722compiled (such as inside a loop) the internal C<regcomp> operator
5a2b28ce 723checks if the last compiled C<REGEXP>'s C<precomp> and C<prelen>
192b9cd1
AB
724are equivalent to the new one, and if so uses the old pattern instead
725of compiling a new one.
726
727The relevant snippet from C<Perl_pp_regcomp>:
728
729 if (!re || !re->precomp || re->prelen != (I32)len ||
730 memNE(re->precomp, t, len))
731 /* Compile a new pattern */
108003db 732
882227b7 733=head2 C<paren_names>
108003db 734
c27a5cfe 735This is a hash used internally to track named capture groups and their
108003db
RGS
736offsets. The keys are the names of the buffers the values are dualvars,
737with the IV slot holding the number of buffers with the given name and the
738pv being an embedded array of I32. The values may also be contained
739independently in the data array in cases where named backreferences are
740used.
741
c998b245 742=head2 C<substrs>
108003db
RGS
743
744Holds information on the longest string that must occur at a fixed
745offset from the start of the pattern, and the longest string that must
746occur at a floating offset from the start of the pattern. Used to do
747Fast-Boyer-Moore searches on the string to find out if its worth using
748the regex engine at all, and if so where in the string to search.
749
6502e081
DM
750=head2 C<subbeg> C<sublen> C<saved_copy> C<suboffset> C<subcoffset>
751
752Used during the execution phase for managing search and replace patterns,
753and for providing the text for C<$&>, C<$1> etc. C<subbeg> points to a
754buffer (either the original string, or a copy in the case of
755C<RX_MATCH_COPIED(rx)>), and C<sublen> is the length of the buffer. The
756C<RX_OFFS> start and end indices index into this buffer.
757
758In the presence of the C<REXEC_COPY_STR> flag, but with the addition of
759the C<REXEC_COPY_SKIP_PRE> or C<REXEC_COPY_SKIP_POST> flags, an engine
760can choose not to copy the full buffer (although it must still do so in
761the presence of C<RXf_PMf_KEEPCOPY> or the relevant bits being set in
762C<PL_sawampersand>). In this case, it may set C<suboffset> to indicate the
763number of bytes from the logical start of the buffer to the physical start
764(i.e. C<subbeg>). It should also set C<subcoffset>, the number of
765characters in the offset. The latter is needed to support C<@-> and C<@+>
766which work in characters, not bytes.
108003db 767
882227b7 768=head2 C<wrapped> C<wraplen>
108003db 769
5a2b28ce 770Stores the string C<qr//> stringifies to. The Perl engine for example
ed215d3c 771stores C<(?^:eek)> in the case of C<qr/eek/>.
108003db 772
c998b245
AB
773When using a custom engine that doesn't support the C<(?:)> construct
774for inline modifiers, it's probably best to have C<qr//> stringify to
775the supplied pattern, note that this will create undesired patterns in
776cases such as:
108003db
RGS
777
778 my $x = qr/a|b/; # "a|b"
192b9cd1 779 my $y = qr/c/i; # "c"
108003db
RGS
780 my $z = qr/$x$y/; # "a|bc"
781
192b9cd1
AB
782There's no solution for this problem other than making the custom
783engine understand a construct like C<(?:)>.
108003db 784
882227b7 785=head2 C<seen_evals>
108003db
RGS
786
787This stores the number of eval groups in the pattern. This is used for security
788purposes when embedding compiled regexes into larger patterns with C<qr//>.
789
882227b7 790=head2 C<refcnt>
108003db 791
5a2b28ce 792The number of times the structure is referenced. When this falls to 0, the
108003db
RGS
793regexp is automatically freed by a call to pregfree. This should be set to 1 in
794each engine's L</comp> routine.
795
108003db
RGS
796=head1 HISTORY
797
798Originally part of L<perlreguts>.
799
800=head1 AUTHORS
801
802Originally written by Yves Orton, expanded by E<AElig>var ArnfjE<ouml>rE<eth>
803Bjarmason.
804
805=head1 LICENSE
806
807Copyright 2006 Yves Orton and 2007 E<AElig>var ArnfjE<ouml>rE<eth> Bjarmason.
808
809This program is free software; you can redistribute it and/or modify it under
810the same terms as Perl itself.
811
812=cut