pcre_maketables()
documentation), this is relatively straightforward. If you are using private tables, it is a little bit more complicated.
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. . .
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.
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.
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, pcre_study() returns a pointer to a
pcre_extra data block. Its format is defined in the
HTML <a href="pcreapi.html#extradata">
</a>
section on matching a pattern
in the
HREF
pcreapi
documentation. The study_data field points to the binary study data, and
this is what you must save (not the pcre_extra block itself). The length
of the study data can be obtained by calling pcre_fullinfo() with an
argument of PCRE_INFO_STUDYSIZE. Remember to check that pcre_study() did
return a non-NULL value before trying to save the study data.
.
.
However, if you passed a pointer to custom character tables when the pattern
was compiled (the tableptr argument of pcre_compile()), you must
now pass a similar pointer to pcre_exec(), because the value saved with
the compiled pattern will obviously be nonsense. A field in a
pcre_extra() 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
pcreapi
documentation.
If you did not provide custom character tables when the pattern was compiled, the pointer in the compiled pattern is NULL, which causes pcre_exec() to use PCRE's internal tables. Thus, you do not need to take any special action at run time in this case.
If you saved study data with the compiled pattern, you need to create your own pcre_extra data block and set the study_data field to point to the reloaded study data. You must also set the PCRE_EXTRA_STUDY_DATA bit in the flags field to indicate that study data is present. Then pass the pcre_extra block to pcre_exec() in the usual way. . .
Last updated: 10 September 2004
Copyright (c) 1997-2004 University of Cambridge.