$32 GRAYBYTE WORDPRESS FILE MANAGER $49

SERVER : premium201.web-hosting.com #1 SMP Wed Mar 26 12:08:09 UTC 2025
SERVER IP : 104.21.43.35 | ADMIN IP 216.73.216.23
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : NONE

/opt/alt/pcre802/usr/share/doc/alt-pcre802-devel/html/

HOME
Current File : /opt/alt/pcre802/usr/share/doc/alt-pcre802-devel/html//pcreprecompile.html
<html>
<head>
<title>pcreprecompile specification</title>
</head>
<body bgcolor="#FFFFFF" text="#00005A" link="#0066FF" alink="#3399FF" vlink="#2222BB">
<h1>pcreprecompile man page</h1>
<p>
Return to the <a href="index.html">PCRE index page</a>.
</p>
<p>
This page is part of the PCRE HTML documentation. It was generated automatically
from the original man page. If there is any nonsense in it, please consult the
man page, in case the conversion went wrong.
<br>
<ul>
<li><a name="TOC1" href="#SEC1">SAVING AND RE-USING PRECOMPILED PCRE PATTERNS</a>
<li><a name="TOC2" href="#SEC2">SAVING A COMPILED PATTERN</a>
<li><a name="TOC3" href="#SEC3">RE-USING A PRECOMPILED PATTERN</a>
<li><a name="TOC4" href="#SEC4">COMPATIBILITY WITH DIFFERENT PCRE RELEASES</a>
<li><a name="TOC5" href="#SEC5">AUTHOR</a>
<li><a name="TOC6" href="#SEC6">REVISION</a>
</ul>
<br><a name="SEC1" href="#TOC1">SAVING AND RE-USING PRECOMPILED PCRE PATTERNS</a><br>
<P>
If you are running an application that uses a large number of regular
expression patterns, it may be useful to store them in a precompiled form
instead of having to compile them every time the application is run.
If you are not using any private character tables (see the
<a href="pcre_maketables.html"><b>pcre_maketables()</b></a>
documentation), this is relatively straightforward. If you are using private
tables, it is a little bit more complicated.
</P>
<P>
If you save compiled patterns to a file, you can copy them to a different host
and run them there. This works even if the new host has the opposite endianness
to the one on which the patterns were compiled. There may be a small
performance penalty, but it should be insignificant. However, compiling regular
expressions with one version of PCRE for use with a different version is not
guaranteed to work and may cause crashes.
</P>
<br><a name="SEC2" href="#TOC1">SAVING A COMPILED PATTERN</a><br>
<P>
The value returned by <b>pcre_compile()</b> points to a single block of memory
that holds the compiled pattern and associated data. You can find the length of
this block in bytes by calling <b>pcre_fullinfo()</b> with an argument of
PCRE_INFO_SIZE. You can then save the data in any appropriate manner. Here is
sample code that compiles a pattern and writes it to a file. It assumes that
the variable <i>fd</i> refers to a file that is open for output:
<pre>
  int erroroffset, rc, size;
  char *error;
  pcre *re;

  re = pcre_compile("my pattern", 0, &error, &erroroffset, NULL);
  if (re == NULL) { ... handle errors ... }
  rc = pcre_fullinfo(re, NULL, PCRE_INFO_SIZE, &size);
  if (rc &#60; 0) { ... handle errors ... }
  rc = fwrite(re, 1, size, fd);
  if (rc != size) { ... handle errors ... }
</pre>
In this example, the bytes that comprise the compiled pattern are copied
exactly. Note that this is binary data that may contain any of the 256 possible
byte values. On systems that make a distinction between binary and non-binary
data, be sure that the file is opened for binary output.
</P>
<P>
If you want to write more than one pattern to a file, you will have to devise a
way of separating them. For binary data, preceding each pattern with its length
is probably the most straightforward approach. Another possibility is to write
out the data in hexadecimal instead of binary, one pattern to a line.
</P>
<P>
Saving compiled patterns in a file is only one possible way of storing them for
later use. They could equally well be saved in a database, or in the memory of
some daemon process that passes them via sockets to the processes that want
them.
</P>
<P>
If the pattern has been studied, it is also possible to save the study data in
a similar way to the compiled pattern itself. When studying generates
additional information, <b>pcre_study()</b> returns a pointer to a
<b>pcre_extra</b> data block. Its format is defined in the
<a href="pcreapi.html#extradata">section on matching a pattern</a>
in the
<a href="pcreapi.html"><b>pcreapi</b></a>
documentation. The <i>study_data</i> field points to the binary study data, and
this is what you must save (not the <b>pcre_extra</b> block itself). The length
of the study data can be obtained by calling <b>pcre_fullinfo()</b> with an
argument of PCRE_INFO_STUDYSIZE. Remember to check that <b>pcre_study()</b> did
return a non-NULL value before trying to save the study data.
</P>
<br><a name="SEC3" href="#TOC1">RE-USING A PRECOMPILED PATTERN</a><br>
<P>
Re-using a precompiled pattern is straightforward. Having reloaded it into main
memory, you pass its pointer to <b>pcre_exec()</b> or <b>pcre_dfa_exec()</b> in
the usual way. This should work even on another host, and even if that host has
the opposite endianness to the one where the pattern was compiled.
</P>
<P>
However, if you passed a pointer to custom character tables when the pattern
was compiled (the <i>tableptr</i> argument of <b>pcre_compile()</b>), you must
now pass a similar pointer to <b>pcre_exec()</b> or <b>pcre_dfa_exec()</b>,
because the value saved with the compiled pattern will obviously be nonsense. A
field in a <b>pcre_extra()</b> block is used to pass this data, as described in
the
<a href="pcreapi.html#extradata">section on matching a pattern</a>
in the
<a href="pcreapi.html"><b>pcreapi</b></a>
documentation.
</P>
<P>
If you did not provide custom character tables when the pattern was compiled,
the pointer in the compiled pattern is NULL, which causes <b>pcre_exec()</b> to
use PCRE's internal tables. Thus, you do not need to take any special action at
run time in this case.
</P>
<P>
If you saved study data with the compiled pattern, you need to create your own
<b>pcre_extra</b> data block and set the <i>study_data</i> field to point to the
reloaded study data. You must also set the PCRE_EXTRA_STUDY_DATA bit in the
<i>flags</i> field to indicate that study data is present. Then pass the
<b>pcre_extra</b> block to <b>pcre_exec()</b> or <b>pcre_dfa_exec()</b> in the
usual way.
</P>
<br><a name="SEC4" href="#TOC1">COMPATIBILITY WITH DIFFERENT PCRE RELEASES</a><br>
<P>
In general, it is safest to recompile all saved patterns when you update to a
new PCRE release, though not all updates actually require this. Recompiling is
definitely needed for release 7.2.
</P>
<br><a name="SEC5" href="#TOC1">AUTHOR</a><br>
<P>
Philip Hazel
<br>
University Computing Service
<br>
Cambridge CB2 3QH, England.
<br>
</P>
<br><a name="SEC6" href="#TOC1">REVISION</a><br>
<P>
Last updated: 13 June 2007
<br>
Copyright &copy; 1997-2007 University of Cambridge.
<br>
<p>
Return to the <a href="index.html">PCRE index page</a>.
</p>


Current_dir [ NOT WRITEABLE ] Document_root [ NOT WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
3 Mar 2024 8.39 PM
root / root
0755
index.html
5.539 KB
19 Mar 2010 10.23 AM
root / root
0644
pcre-config.html
2.767 KB
19 Mar 2010 10.23 AM
root / root
0644
pcre.html
13.589 KB
19 Mar 2010 10.23 AM
root / root
0644
pcre_compile.html
3.447 KB
19 Mar 2010 10.23 AM
root / root
0644
pcre_compile2.html
3.54 KB
19 Mar 2010 10.23 AM
root / root
0644
pcre_config.html
2.51 KB
19 Mar 2010 10.23 AM
root / root
0644
pcre_copy_named_substring.html
1.75 KB
19 Mar 2010 10.23 AM
root / root
0644
pcre_copy_substring.html
1.616 KB
19 Mar 2010 10.23 AM
root / root
0644
pcre_dfa_exec.html
4.445 KB
19 Mar 2010 10.23 AM
root / root
0644
pcre_exec.html
3.769 KB
19 Mar 2010 10.23 AM
root / root
0644
pcre_free_substring.html
1.095 KB
19 Mar 2010 10.23 AM
root / root
0644
pcre_free_substring_list.html
1.096 KB
19 Mar 2010 10.23 AM
root / root
0644
pcre_fullinfo.html
2.729 KB
19 Mar 2010 10.23 AM
root / root
0644
pcre_get_named_substring.html
1.878 KB
19 Mar 2010 10.23 AM
root / root
0644
pcre_get_stringnumber.html
1.498 KB
19 Mar 2010 10.23 AM
root / root
0644
pcre_get_stringtable_entries.html
1.662 KB
19 Mar 2010 10.23 AM
root / root
0644
pcre_get_substring.html
1.771 KB
19 Mar 2010 10.23 AM
root / root
0644
pcre_get_substring_list.html
1.796 KB
19 Mar 2010 10.23 AM
root / root
0644
pcre_info.html
0.997 KB
19 Mar 2010 10.23 AM
root / root
0644
pcre_maketables.html
1.229 KB
19 Mar 2010 10.23 AM
root / root
0644
pcre_refcount.html
1.258 KB
19 Mar 2010 10.23 AM
root / root
0644
pcre_study.html
1.644 KB
19 Mar 2010 10.23 AM
root / root
0644
pcre_version.html
0.978 KB
19 Mar 2010 10.23 AM
root / root
0644
pcreapi.html
92.556 KB
19 Mar 2010 10.23 AM
root / root
0644
pcrebuild.html
14.951 KB
19 Mar 2010 10.23 AM
root / root
0644
pcrecallout.html
8.629 KB
19 Mar 2010 10.23 AM
root / root
0644
pcrecompat.html
7.372 KB
19 Mar 2010 10.23 AM
root / root
0644
pcrecpp.html
13.957 KB
19 Mar 2010 10.23 AM
root / root
0644
pcredemo.html
12.956 KB
19 Mar 2010 10.23 AM
root / root
0644
pcregrep.html
25.851 KB
19 Mar 2010 10.23 AM
root / root
0644
pcrematching.html
9.548 KB
19 Mar 2010 10.23 AM
root / root
0644
pcrepartial.html
17.704 KB
19 Mar 2010 10.23 AM
root / root
0644
pcrepattern.html
101.272 KB
19 Mar 2010 10.23 AM
root / root
0644
pcreperform.html
7.106 KB
19 Mar 2010 10.23 AM
root / root
0644
pcreposix.html
11.515 KB
19 Mar 2010 10.23 AM
root / root
0644
pcreprecompile.html
6.435 KB
19 Mar 2010 10.23 AM
root / root
0644
pcresample.html
3.28 KB
19 Mar 2010 10.23 AM
root / root
0644
pcrestack.html
7.532 KB
19 Mar 2010 10.23 AM
root / root
0644
pcresyntax.html
13.653 KB
19 Mar 2010 10.23 AM
root / root
0644
pcretest.html
30.309 KB
19 Mar 2010 10.23 AM
root / root
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025 CONTACT ME
Static GIF