$43 GRAYBYTE WORDPRESS FILE MANAGER $77

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

/opt/alt/pcre802/usr/share/man/man3/

HOME
Current File : /opt/alt/pcre802/usr/share/man/man3//pcreprecompile.3
.TH PCREPRECOMPILE 3
.SH NAME
PCRE - Perl-compatible regular expressions
.SH "SAVING AND RE-USING PRECOMPILED PCRE PATTERNS"
.rs
.sp
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
.\" HREF
\fBpcre_maketables()\fP
.\"
documentation), this is relatively straightforward. If you are using private
tables, it is a little bit more complicated.
.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.
.
.
.SH "SAVING A COMPILED PATTERN"
.rs
.sh
The value returned by \fBpcre_compile()\fP 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 \fBpcre_fullinfo()\fP 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 \fIfd\fP refers to a file that is open for output:
.sp
  int erroroffset, rc, size;
  char *error;
  pcre *re;
.sp
  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 < 0) { ... handle errors ... }
  rc = fwrite(re, 1, size, fd);
  if (rc != size) { ... handle errors ... }
.sp
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
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
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
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, \fBpcre_study()\fP returns a pointer to a
\fBpcre_extra\fP data block. Its format is defined in the
.\" HTML <a href="pcreapi.html#extradata">
.\" </a>
section on matching a pattern
.\"
in the
.\" HREF
\fBpcreapi\fP
.\"
documentation. The \fIstudy_data\fP field points to the binary study data, and
this is what you must save (not the \fBpcre_extra\fP block itself). The length
of the study data can be obtained by calling \fBpcre_fullinfo()\fP with an
argument of PCRE_INFO_STUDYSIZE. Remember to check that \fBpcre_study()\fP did
return a non-NULL value before trying to save the study data.
.
.
.SH "RE-USING A PRECOMPILED PATTERN"
.rs
.sp
Re-using a precompiled pattern is straightforward. Having reloaded it into main
memory, you pass its pointer to \fBpcre_exec()\fP or \fBpcre_dfa_exec()\fP 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
However, if you passed a pointer to custom character tables when the pattern
was compiled (the \fItableptr\fP argument of \fBpcre_compile()\fP), you must
now pass a similar pointer to \fBpcre_exec()\fP or \fBpcre_dfa_exec()\fP,
because the value saved with the compiled pattern will obviously be nonsense. A
field in a \fBpcre_extra()\fP block is used to pass this data, as described in
the
.\" HTML <a href="pcreapi.html#extradata">
.\" </a>
section on matching a pattern
.\"
in the
.\" HREF
\fBpcreapi\fP
.\"
documentation.
.P
If you did not provide custom character tables when the pattern was compiled,
the pointer in the compiled pattern is NULL, which causes \fBpcre_exec()\fP to
use PCRE's internal tables. Thus, you do not need to take any special action at
run time in this case.
.P
If you saved study data with the compiled pattern, you need to create your own
\fBpcre_extra\fP data block and set the \fIstudy_data\fP field to point to the
reloaded study data. You must also set the PCRE_EXTRA_STUDY_DATA bit in the
\fIflags\fP field to indicate that study data is present. Then pass the
\fBpcre_extra\fP block to \fBpcre_exec()\fP or \fBpcre_dfa_exec()\fP in the
usual way.
.
.
.SH "COMPATIBILITY WITH DIFFERENT PCRE RELEASES"
.rs
.sp
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.
.
.
.
.SH AUTHOR
.rs
.sp
.nf
Philip Hazel
University Computing Service
Cambridge CB2 3QH, England.
.fi
.
.
.SH REVISION
.rs
.sp
.nf
Last updated: 13 June 2007
Copyright (c) 1997-2007 University of Cambridge.
.fi


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
pcre.3
12.353 KB
4 Dec 2019 9.00 PM
root / root
0644
pcre_compile.3
2.911 KB
4 Dec 2019 9.00 PM
root / root
0644
pcre_compile2.3
2.997 KB
4 Dec 2019 9.00 PM
root / root
0644
pcre_config.3
1.979 KB
4 Dec 2019 9.00 PM
root / root
0644
pcre_copy_named_substring.3
1.21 KB
4 Dec 2019 9.00 PM
root / root
0644
pcre_copy_substring.3
1.08 KB
4 Dec 2019 9.00 PM
root / root
0644
pcre_dfa_exec.3
3.853 KB
4 Dec 2019 9.00 PM
root / root
0644
pcre_exec.3
3.209 KB
4 Dec 2019 9.00 PM
root / root
0644
pcre_free_substring.3
0.566 KB
4 Dec 2019 9.00 PM
root / root
0644
pcre_free_substring_list.3
0.563 KB
4 Dec 2019 9.00 PM
root / root
0644
pcre_fullinfo.3
2.185 KB
4 Dec 2019 9.00 PM
root / root
0644
pcre_get_named_substring.3
1.339 KB
4 Dec 2019 9.00 PM
root / root
0644
pcre_get_stringnumber.3
0.964 KB
4 Dec 2019 9.00 PM
root / root
0644
pcre_get_stringtable_entries.3
1.117 KB
4 Dec 2019 9.00 PM
root / root
0644
pcre_get_substring.3
1.235 KB
4 Dec 2019 9.00 PM
root / root
0644
pcre_get_substring_list.3
1.255 KB
4 Dec 2019 9.00 PM
root / root
0644
pcre_info.3
0.474 KB
4 Dec 2019 9.00 PM
root / root
0644
pcre_maketables.3
0.706 KB
4 Dec 2019 9.00 PM
root / root
0644
pcre_refcount.3
0.729 KB
4 Dec 2019 9.00 PM
root / root
0644
pcre_study.3
1.105 KB
4 Dec 2019 9.00 PM
root / root
0644
pcre_version.3
0.459 KB
4 Dec 2019 9.00 PM
root / root
0644
pcreapi.3
87.88 KB
4 Dec 2019 9.00 PM
root / root
0644
pcrebuild.3
12.574 KB
4 Dec 2019 9.00 PM
root / root
0644
pcrecallout.3
7.478 KB
4 Dec 2019 9.00 PM
root / root
0644
pcrecompat.3
6.796 KB
4 Dec 2019 9.00 PM
root / root
0644
pcrecpp.3
12.258 KB
4 Dec 2019 9.00 PM
root / root
0644
pcrematching.3
8.139 KB
4 Dec 2019 9.00 PM
root / root
0644
pcrepartial.3
15.904 KB
4 Dec 2019 9.00 PM
root / root
0644
pcrepattern.3
97.666 KB
4 Dec 2019 9.00 PM
root / root
0644
pcreperform.3
6.539 KB
4 Dec 2019 9.00 PM
root / root
0644
pcreposix.3
10.063 KB
4 Dec 2019 9.00 PM
root / root
0644
pcreprecompile.3
5.33 KB
4 Dec 2019 9.00 PM
root / root
0644
pcresample.3
2.706 KB
4 Dec 2019 9.00 PM
root / root
0644
pcrestack.3
6.881 KB
4 Dec 2019 9.00 PM
root / root
0644
pcresyntax.3
10.688 KB
4 Dec 2019 9.00 PM
root / root
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025 CONTACT ME
Static GIF