pcreprecompile.html 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. <html>
  2. <head>
  3. <title>pcreprecompile specification</title>
  4. </head>
  5. <body bgcolor="#FFFFFF" text="#00005A" link="#0066FF" alink="#3399FF" vlink="#2222BB">
  6. <h1>pcreprecompile man page</h1>
  7. <p>
  8. Return to the <a href="index.html">PCRE index page</a>.
  9. </p>
  10. <p>
  11. This page is part of the PCRE HTML documentation. It was generated automatically
  12. from the original man page. If there is any nonsense in it, please consult the
  13. man page, in case the conversion went wrong.
  14. <br>
  15. <ul>
  16. <li><a name="TOC1" href="#SEC1">SAVING AND RE-USING PRECOMPILED PCRE PATTERNS</a>
  17. <li><a name="TOC2" href="#SEC2">SAVING A COMPILED PATTERN</a>
  18. <li><a name="TOC3" href="#SEC3">RE-USING A PRECOMPILED PATTERN</a>
  19. <li><a name="TOC4" href="#SEC4">COMPATIBILITY WITH DIFFERENT PCRE RELEASES</a>
  20. <li><a name="TOC5" href="#SEC5">AUTHOR</a>
  21. <li><a name="TOC6" href="#SEC6">REVISION</a>
  22. </ul>
  23. <br><a name="SEC1" href="#TOC1">SAVING AND RE-USING PRECOMPILED PCRE PATTERNS</a><br>
  24. <P>
  25. If you are running an application that uses a large number of regular
  26. expression patterns, it may be useful to store them in a precompiled form
  27. instead of having to compile them every time the application is run.
  28. If you are not using any private character tables (see the
  29. <a href="pcre_maketables.html"><b>pcre_maketables()</b></a>
  30. documentation), this is relatively straightforward. If you are using private
  31. tables, it is a little bit more complicated. However, if you are using the
  32. just-in-time optimization feature, it is not possible to save and reload the
  33. JIT data.
  34. </P>
  35. <P>
  36. If you save compiled patterns to a file, you can copy them to a different host
  37. and run them there. If the two hosts have different endianness (byte order),
  38. you should run the <b>pcre[16|32]_pattern_to_host_byte_order()</b> function on the
  39. new host before trying to match the pattern. The matching functions return
  40. PCRE_ERROR_BADENDIANNESS if they detect a pattern with the wrong endianness.
  41. </P>
  42. <P>
  43. Compiling regular expressions with one version of PCRE for use with a different
  44. version is not guaranteed to work and may cause crashes, and saving and
  45. restoring a compiled pattern loses any JIT optimization data.
  46. </P>
  47. <br><a name="SEC2" href="#TOC1">SAVING A COMPILED PATTERN</a><br>
  48. <P>
  49. The value returned by <b>pcre[16|32]_compile()</b> points to a single block of
  50. memory that holds the compiled pattern and associated data. You can find the
  51. length of this block in bytes by calling <b>pcre[16|32]_fullinfo()</b> with an
  52. argument of PCRE_INFO_SIZE. You can then save the data in any appropriate
  53. manner. Here is sample code for the 8-bit library that compiles a pattern and
  54. writes it to a file. It assumes that the variable <i>fd</i> refers to a file
  55. that is open for output:
  56. <pre>
  57. int erroroffset, rc, size;
  58. char *error;
  59. pcre *re;
  60. re = pcre_compile("my pattern", 0, &error, &erroroffset, NULL);
  61. if (re == NULL) { ... handle errors ... }
  62. rc = pcre_fullinfo(re, NULL, PCRE_INFO_SIZE, &size);
  63. if (rc &#60; 0) { ... handle errors ... }
  64. rc = fwrite(re, 1, size, fd);
  65. if (rc != size) { ... handle errors ... }
  66. </pre>
  67. In this example, the bytes that comprise the compiled pattern are copied
  68. exactly. Note that this is binary data that may contain any of the 256 possible
  69. byte values. On systems that make a distinction between binary and non-binary
  70. data, be sure that the file is opened for binary output.
  71. </P>
  72. <P>
  73. If you want to write more than one pattern to a file, you will have to devise a
  74. way of separating them. For binary data, preceding each pattern with its length
  75. is probably the most straightforward approach. Another possibility is to write
  76. out the data in hexadecimal instead of binary, one pattern to a line.
  77. </P>
  78. <P>
  79. Saving compiled patterns in a file is only one possible way of storing them for
  80. later use. They could equally well be saved in a database, or in the memory of
  81. some daemon process that passes them via sockets to the processes that want
  82. them.
  83. </P>
  84. <P>
  85. If the pattern has been studied, it is also possible to save the normal study
  86. data in a similar way to the compiled pattern itself. However, if the
  87. PCRE_STUDY_JIT_COMPILE was used, the just-in-time data that is created cannot
  88. be saved because it is too dependent on the current environment. When studying
  89. generates additional information, <b>pcre[16|32]_study()</b> returns a pointer to a
  90. <b>pcre[16|32]_extra</b> data block. Its format is defined in the
  91. <a href="pcreapi.html#extradata">section on matching a pattern</a>
  92. in the
  93. <a href="pcreapi.html"><b>pcreapi</b></a>
  94. documentation. The <i>study_data</i> field points to the binary study data, and
  95. this is what you must save (not the <b>pcre[16|32]_extra</b> block itself). The
  96. length of the study data can be obtained by calling <b>pcre[16|32]_fullinfo()</b>
  97. with an argument of PCRE_INFO_STUDYSIZE. Remember to check that
  98. <b>pcre[16|32]_study()</b> did return a non-NULL value before trying to save the
  99. study data.
  100. </P>
  101. <br><a name="SEC3" href="#TOC1">RE-USING A PRECOMPILED PATTERN</a><br>
  102. <P>
  103. Re-using a precompiled pattern is straightforward. Having reloaded it into main
  104. memory, called <b>pcre[16|32]_pattern_to_host_byte_order()</b> if necessary, you
  105. pass its pointer to <b>pcre[16|32]_exec()</b> or <b>pcre[16|32]_dfa_exec()</b> in
  106. the usual way.
  107. </P>
  108. <P>
  109. However, if you passed a pointer to custom character tables when the pattern
  110. was compiled (the <i>tableptr</i> argument of <b>pcre[16|32]_compile()</b>), you
  111. must now pass a similar pointer to <b>pcre[16|32]_exec()</b> or
  112. <b>pcre[16|32]_dfa_exec()</b>, because the value saved with the compiled pattern
  113. will obviously be nonsense. A field in a <b>pcre[16|32]_extra()</b> block is used
  114. to pass this data, as described in the
  115. <a href="pcreapi.html#extradata">section on matching a pattern</a>
  116. in the
  117. <a href="pcreapi.html"><b>pcreapi</b></a>
  118. documentation.
  119. </P>
  120. <P>
  121. <b>Warning:</b> The tables that <b>pcre_exec()</b> and <b>pcre_dfa_exec()</b> use
  122. must be the same as those that were used when the pattern was compiled. If this
  123. is not the case, the behaviour is undefined.
  124. </P>
  125. <P>
  126. If you did not provide custom character tables when the pattern was compiled,
  127. the pointer in the compiled pattern is NULL, which causes the matching
  128. functions to use PCRE's internal tables. Thus, you do not need to take any
  129. special action at run time in this case.
  130. </P>
  131. <P>
  132. If you saved study data with the compiled pattern, you need to create your own
  133. <b>pcre[16|32]_extra</b> data block and set the <i>study_data</i> field to point
  134. to the reloaded study data. You must also set the PCRE_EXTRA_STUDY_DATA bit in
  135. the <i>flags</i> field to indicate that study data is present. Then pass the
  136. <b>pcre[16|32]_extra</b> block to the matching function in the usual way. If the
  137. pattern was studied for just-in-time optimization, that data cannot be saved,
  138. and so is lost by a save/restore cycle.
  139. </P>
  140. <br><a name="SEC4" href="#TOC1">COMPATIBILITY WITH DIFFERENT PCRE RELEASES</a><br>
  141. <P>
  142. In general, it is safest to recompile all saved patterns when you update to a
  143. new PCRE release, though not all updates actually require this.
  144. </P>
  145. <br><a name="SEC5" href="#TOC1">AUTHOR</a><br>
  146. <P>
  147. Philip Hazel
  148. <br>
  149. University Computing Service
  150. <br>
  151. Cambridge CB2 3QH, England.
  152. <br>
  153. </P>
  154. <br><a name="SEC6" href="#TOC1">REVISION</a><br>
  155. <P>
  156. Last updated: 12 November 2013
  157. <br>
  158. Copyright &copy; 1997-2013 University of Cambridge.
  159. <br>
  160. <p>
  161. Return to the <a href="index.html">PCRE index page</a>.
  162. </p>