
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
        "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- MyFirstUnitAd -->
<ins class="adsbygoogle"
     style="display:inline-block;width:970px;height:250px"
     data-ad-client="ca-pub-5778386704669218"
     data-ad-slot="1503492166"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <link rel="stylesheet" type="text/css" href="../../../style.css" title="style" />
    <link rel="stylesheet" type="text/css" href="../style.css" title="style" />
    <meta http-equiv="content-type" content="text/html;charset=utf-8" />

    <title>pcreprecompile(3) - Linux manual page</title>
</head>

<body>

<div class="page-top"><a id="top_of_page"></a></div>
<!--%%%TOP_BAR%%%-->
    <div class="nav-bar">
        <table class="nav-table">
            <tr>
                <td class="nav-cell">
                    <p class="nav-text">
                        <a href="http://man7.org/index.html">man7.org</a> &gt; Linux &gt; <a href="../index.html">man-pages</a>
                    </p>
                </td>
                <td class="training-cell">
                    <p class="training-text"><a class="training-link" href="http://man7.org/training/">Linux/UNIX system programming training</a></p>
                </td>
            </tr>
        </table>
    </div>

<hr class="nav-end" />

<!--%%%PAGE_START%%%-->


<table class="sec-table">
<tr>
    <td>
        <p class="section-dir">
<a href="pcreprecompile.3.html#NAME">NAME</a> | <a href="pcreprecompile.3.html#SAVING_AND_RE-USING_PRECOMPILED_PCRE_PATTERNS">SAVING&nbsp;AND&nbsp;RE-USING&nbsp;PRECOMPILED&nbsp;PCRE&nbsp;PATTERNS</a> | <a href="pcreprecompile.3.html#SAVING_A_COMPILED_PATTERN">SAVING&nbsp;A&nbsp;COMPILED&nbsp;PATTERN</a> | <a href="pcreprecompile.3.html#RE-USING_A_PRECOMPILED_PATTERN">RE-USING&nbsp;A&nbsp;PRECOMPILED&nbsp;PATTERN</a> | <a href="pcreprecompile.3.html#COMPATIBILITY_WITH_DIFFERENT_PCRE_RELEASES">COMPATIBILITY&nbsp;WITH&nbsp;DIFFERENT&nbsp;PCRE&nbsp;RELEASES</a> | <a href="pcreprecompile.3.html#AUTHOR">AUTHOR</a> | <a href="pcreprecompile.3.html#REVISION">REVISION</a> | <a href="pcreprecompile.3.html#COLOPHON">COLOPHON</a>
        </p>
    </td>
    <td class="search-box">
        <div class="man-search-box">

            <form method="get" action="http://www.google.com/search">
                <fieldset class="man-search">
                    <input type="text" name="q" size="10" maxlength="255" value="" />
                    <input type="hidden" name="sitesearch" value="man7.org/linux/man-pages" />
                    <input type="submit" name="sa" value="Search online pages" />
                </fieldset>
            </form>

        </div>
    </td>
    <td> </td>
</tr>
</table>

<pre>
<span class="headline">PCREPRECOMPILE(3)         Library Functions Manual         PCREPRECOMPILE(3)</span>
</pre>
<h2><a id="NAME" href="pcreprecompile.3.html#NAME"></a>NAME  &nbsp; &nbsp; &nbsp; &nbsp; <a href="pcreprecompile.3.html#top_of_page"><span class="top-link">top</span></a></h2><pre>
       PCRE - Perl-compatible regular expressions
</pre>
<h2><a id="SAVING_AND_RE-USING_PRECOMPILED_PCRE_PATTERNS" href="pcreprecompile.3.html#SAVING_AND_RE-USING_PRECOMPILED_PCRE_PATTERNS"></a>SAVING AND RE-USING PRECOMPILED PCRE PATTERNS  &nbsp; &nbsp; &nbsp; &nbsp; <a href="pcreprecompile.3.html#top_of_page"><span class="top-link">top</span></a></h2><pre>

       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
       <b>pcre_maketables() </b>documentation), this is relatively straightforward.
       If you are using private tables, it is a little bit more complicated.
       However, if you are using the just-in-time optimization feature, it
       is not possible to save and reload the JIT data.

       If you save compiled patterns to a file, you can copy them to a
       different host and run them there. If the two hosts have different
       endianness (byte order), you should run the
       <b>pcre[16|32]_pattern_to_host_byte_order() </b>function on the new host
       before trying to match the pattern. The matching functions return
       PCRE_ERROR_BADENDIANNESS if they detect a pattern with the wrong
       endianness.

       Compiling regular expressions with one version of PCRE for use with a
       different version is not guaranteed to work and may cause crashes,
       and saving and restoring a compiled pattern loses any JIT
       optimization data.
</pre>
<h2><a id="SAVING_A_COMPILED_PATTERN" href="pcreprecompile.3.html#SAVING_A_COMPILED_PATTERN"></a>SAVING A COMPILED PATTERN  &nbsp; &nbsp; &nbsp; &nbsp; <a href="pcreprecompile.3.html#top_of_page"><span class="top-link">top</span></a></h2><pre>

       The value returned by <b>pcre[16|32]_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[16|32]_fullinfo() </b>with an argument of PCRE_INFO_SIZE. You can
       then save the data in any appropriate manner. Here is sample code for
       the 8-bit library 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:

         int erroroffset, rc, size;
         char *error;
         pcre *re;

         re = pcre_compile("my pattern", 0, &amp;error, &amp;erroroffset, NULL);
         if (re == NULL) { ... handle errors ... }
         rc = pcre_fullinfo(re, NULL, PCRE_INFO_SIZE, &amp;size);
         if (rc &lt; 0) { ... handle errors ... }
         rc = fwrite(re, 1, size, fd);
         if (rc != size) { ... handle errors ... }

       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.

       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
       normal study data in a similar way to the compiled pattern itself.
       However, if the PCRE_STUDY_JIT_COMPILE was used, the just-in-time
       data that is created cannot be saved because it is too dependent on
       the current environment. When studying generates additional
       information, <b>pcre[16|32]_study() </b>returns a pointer to a
       <b>pcre[16|32]_extra </b>data block. Its format is defined in the section on
       matching a pattern in the <b>pcreapi </b>documentation. The <i>study_data</i> field
       points to the binary study data, and this is what you must save (not
       the <b>pcre[16|32]_extra </b>block itself). The length of the study data can
       be obtained by calling <b>pcre[16|32]_fullinfo() </b>with an argument of
       PCRE_INFO_STUDYSIZE. Remember to check that <b>pcre[16|32]_study() </b>did
       return a non-NULL value before trying to save the study data.
</pre>
<h2><a id="RE-USING_A_PRECOMPILED_PATTERN" href="pcreprecompile.3.html#RE-USING_A_PRECOMPILED_PATTERN"></a>RE-USING A PRECOMPILED PATTERN  &nbsp; &nbsp; &nbsp; &nbsp; <a href="pcreprecompile.3.html#top_of_page"><span class="top-link">top</span></a></h2><pre>

       Re-using a precompiled pattern is straightforward. Having reloaded it
       into main memory, called <b>pcre[16|32]_pattern_to_host_byte_order() </b>if
       necessary, you pass its pointer to <b>pcre[16|32]_exec() </b>or
       <b>pcre[16|32]_dfa_exec() </b>in the usual way.

       However, if you passed a pointer to custom character tables when the
       pattern was compiled (the <i>tableptr</i> argument of
       <b>pcre[16|32]_compile()</b>), you must now pass a similar pointer to
       <b>pcre[16|32]_exec() </b>or <b>pcre[16|32]_dfa_exec()</b>, because the value saved
       with the compiled pattern will obviously be nonsense. A field in a
       <b>pcre[16|32]_extra() </b>block is used to pass this data, as described in
       the section on matching a pattern in the <b>pcreapi </b>documentation.

       <b>Warning: </b>The tables that <b>pcre_exec() </b>and <b>pcre_dfa_exec() </b>use must be
       the same as those that were used when the pattern was compiled. If
       this is not the case, the behaviour is undefined.

       If you did not provide custom character tables when the pattern was
       compiled, the pointer in the compiled pattern is NULL, which causes
       the matching functions 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 <b>pcre[16|32]_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[16|32]_extra </b>block to the
       matching function in the usual way. If the pattern was studied for
       just-in-time optimization, that data cannot be saved, and so is lost
       by a save/restore cycle.
</pre>
<h2><a id="COMPATIBILITY_WITH_DIFFERENT_PCRE_RELEASES" href="pcreprecompile.3.html#COMPATIBILITY_WITH_DIFFERENT_PCRE_RELEASES"></a>COMPATIBILITY WITH DIFFERENT PCRE RELEASES  &nbsp; &nbsp; &nbsp; &nbsp; <a href="pcreprecompile.3.html#top_of_page"><span class="top-link">top</span></a></h2><pre>

       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.
</pre>
<h2><a id="AUTHOR" href="pcreprecompile.3.html#AUTHOR"></a>AUTHOR  &nbsp; &nbsp; &nbsp; &nbsp; <a href="pcreprecompile.3.html#top_of_page"><span class="top-link">top</span></a></h2><pre>

       Philip Hazel
       University Computing Service
       Cambridge CB2 3QH, England.
</pre>
<h2><a id="REVISION" href="pcreprecompile.3.html#REVISION"></a>REVISION  &nbsp; &nbsp; &nbsp; &nbsp; <a href="pcreprecompile.3.html#top_of_page"><span class="top-link">top</span></a></h2><pre>

       Last updated: 12 November 2013
       Copyright (c) 1997-2013 University of Cambridge.
</pre>
<h2><a id="COLOPHON" href="pcreprecompile.3.html#COLOPHON"></a>COLOPHON  &nbsp; &nbsp; &nbsp; &nbsp; <a href="pcreprecompile.3.html#top_of_page"><span class="top-link">top</span></a></h2><pre>
       This page is part of the <i>PCRE</i> (Perl Compatible Regular Expressions)
       project.  Information about the project can be found at 
       ⟨<a href="http://www.pcre.org/">http://www.pcre.org/</a>⟩.  If you have a bug report for this manual
       page, see ⟨<a href="http://bugs.exim.org/enter_bug.cgi?product=PCRE">http://bugs.exim.org/enter_bug.cgi?product=PCRE</a>⟩.  This
       page was obtained from the tarball pcre-8.41.tar.gz fetched from
       ⟨ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/⟩ on
       2018-02-02.  If you discover any rendering problems in this HTML ver‐
       sion of the page, or you believe there is a better or more up-to-date
       source for the page, or you have corrections or improvements to the
       information in this COLOPHON (which is <i>not</i> part of the original man‐
       ual page), send a mail to man-pages@man7.org

<span class="footline">PCRE 8.34                     12 November 2013             PCREPRECOMPILE(3)</span>
</pre>

<hr class="end-man-text" />
<p>Pages that refer to this page: 
    <a href="../man1/pcretest.1.html">pcretest(1)</a>,&nbsp; 
    <a href="pcreapi.3.html">pcreapi(3)</a>
</p>
<hr/>

 
<hr class="start-footer" />

<div class="footer"> 

<table class="colophon-table">
    <tr>
    <td class="pub-info">
        <p>
            HTML rendering created 2018-02-02
            by <a href="http://man7.org/mtk/index.html">Michael Kerrisk</a>, 
            author of 
            <a href="http://man7.org/tlpi/"><em>The Linux Programming Interface</em></a>, 
            maintainer of the 
            <a href="https://www.kernel.org/doc/man-pages/">Linux <em>man-pages</em> project</a>.
        </p>
        <p>
            For details of in-depth
            <strong>Linux/UNIX system programming training courses</strong>
            that I teach, look <a href="http://man7.org/training/">here</a>.
        </p>
        <p>
            Hosting by <a href="http://www.jambit.com/index_en.html">jambit GmbH</a>.
        </p>
        <p>
            <a href="http://validator.w3.org/check?uri=referer">
            <img src="http://www.w3.org/Icons/valid-xhtml11"
                alt="Valid XHTML 1.1" height="31" width="88" />
            </a>
        </p>
    </td>
    <td class="colophon-divider">
    </td>
    <td class="tlpi-cover">
        <a href="http://man7.org/tlpi/"><img src="../../../tlpi/cover/TLPI-front-cover-vsmall.png" alt="Cover of TLPI" /></a>
    </td>
    </tr>
</table>

</div>

<hr class="end-footer" />



<!--BEGIN-SITETRACKING-->
<!-- SITETRACKING.man7.org_linux_man-pages -->

<!-- Start of StatCounter Code (xhtml) -->

<script type="text/javascript">
//<![CDATA[
var sc_project=7422636; 
var sc_invisible=1; 
var sc_security="9b6714ff"; 
//]]>
</script>
<script type="text/javascript"
src="http://www.statcounter.com/counter/counter_xhtml.js"></script>
<noscript><div class="statcounter"><a title="website
statistics" href="http://statcounter.com/"
class="statcounter"><img class="statcounter"
src="http://c.statcounter.com/7422636/0/9b6714ff/1/"
alt="website statistics" /></a></div></noscript>

<!-- End of StatCounter Code -->


<!-- Start of Google Analytics Code -->

<script type="text/javascript">

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-9830363-8']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();

</script>

<!-- End of Google Analytics Code -->

<!--END-SITETRACKING-->

</body>
</html>
