Tech.Notes
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:10k
源码类别:

生物技术

开发平台:

C/C++

  1. Technical Notes about PCRE
  2. --------------------------
  3. Many years ago I implemented some regular expression functions to an algorithm
  4. suggested by Martin Richards. These were not Unix-like in form, and were quite
  5. restricted in what they could do by comparison with Perl. The interesting part
  6. about the algorithm was that the amount of space required to hold the compiled
  7. form of an expression was known in advance. The code to apply an expression did
  8. not operate by backtracking, as the Henry Spencer and Perl code does, but
  9. instead checked all possibilities simultaneously by keeping a list of current
  10. states and checking all of them as it advanced through the subject string. (In
  11. the terminology of Jeffrey Friedl's book, it was a "DFA algorithm".) When the
  12. pattern was all used up, all remaining states were possible matches, and the
  13. one matching the longest subset of the subject string was chosen. This did not
  14. necessarily maximize the individual wild portions of the pattern, as is
  15. expected in Unix and Perl-style regular expressions.
  16. By contrast, the code originally written by Henry Spencer and subsequently
  17. heavily modified for Perl actually compiles the expression twice: once in a
  18. dummy mode in order to find out how much store will be needed, and then for
  19. real. The execution function operates by backtracking and maximizing (or,
  20. optionally, minimizing in Perl) the amount of the subject that matches
  21. individual wild portions of the pattern. This is an "NFA algorithm" in Friedl's
  22. terminology.
  23. For the set of functions that forms PCRE (which are unrelated to those
  24. mentioned above), I tried at first to invent an algorithm that used an amount
  25. of store bounded by a multiple of the number of characters in the pattern, to
  26. save on compiling time. However, because of the greater complexity in Perl
  27. regular expressions, I couldn't do this. In any case, a first pass through the
  28. pattern is needed, in order to find internal flag settings like (?i) at top
  29. level. So PCRE works by running a very degenerate first pass to calculate a
  30. maximum store size, and then a second pass to do the real compile - which may
  31. use a bit less than the predicted amount of store. The idea is that this is
  32. going to turn out faster because the first pass is degenerate and the second
  33. pass can just store stuff straight into the vector. It does make the compiling
  34. functions bigger, of course, but they have got quite big anyway to handle all
  35. the Perl stuff.
  36. The compiled form of a pattern is a vector of bytes, containing items of
  37. variable length. The first byte in an item is an opcode, and the length of the
  38. item is either implicit in the opcode or contained in the data bytes which
  39. follow it. A list of all the opcodes follows:
  40. Opcodes with no following data
  41. ------------------------------
  42. These items are all just one byte long
  43.   OP_END                 end of pattern
  44.   OP_ANY                 match any character
  45.   OP_SOD                 match start of data: A
  46.   OP_CIRC                ^ (start of data, or after n in multiline)
  47.   OP_NOT_WORD_BOUNDARY   W
  48.   OP_WORD_BOUNDARY       w
  49.   OP_NOT_DIGIT           D
  50.   OP_DIGIT               d
  51.   OP_NOT_WHITESPACE      S
  52.   OP_WHITESPACE          s
  53.   OP_NOT_WORDCHAR        W
  54.   OP_WORDCHAR            w
  55.   OP_EODN                match end of data or n at end: Z
  56.   OP_EOD                 match end of data: z
  57.   OP_DOLL                $ (end of data, or before n in multiline)
  58.   OP_RECURSE             match the pattern recursively
  59. Repeating single characters
  60. ---------------------------
  61. The common repeats (*, +, ?) when applied to a single character appear as
  62. two-byte items using the following opcodes:
  63.   OP_STAR
  64.   OP_MINSTAR
  65.   OP_PLUS
  66.   OP_MINPLUS
  67.   OP_QUERY
  68.   OP_MINQUERY
  69. Those with "MIN" in their name are the minimizing versions. Each is followed by
  70. the character that is to be repeated. Other repeats make use of
  71.   OP_UPTO
  72.   OP_MINUPTO
  73.   OP_EXACT
  74. which are followed by a two-byte count (most significant first) and the
  75. repeated character. OP_UPTO matches from 0 to the given number. A repeat with a
  76. non-zero minimum and a fixed maximum is coded as an OP_EXACT followed by an
  77. OP_UPTO (or OP_MINUPTO).
  78. Repeating character types
  79. -------------------------
  80. Repeats of things like d are done exactly as for single characters, except
  81. that instead of a character, the opcode for the type is stored in the data
  82. byte. The opcodes are:
  83.   OP_TYPESTAR
  84.   OP_TYPEMINSTAR
  85.   OP_TYPEPLUS
  86.   OP_TYPEMINPLUS
  87.   OP_TYPEQUERY
  88.   OP_TYPEMINQUERY
  89.   OP_TYPEUPTO
  90.   OP_TYPEMINUPTO
  91.   OP_TYPEEXACT
  92. Matching a character string
  93. ---------------------------
  94. The OP_CHARS opcode is followed by a one-byte count and then that number of
  95. characters. If there are more than 255 characters in sequence, successive
  96. instances of OP_CHARS are used.
  97. Character classes
  98. -----------------
  99. OP_CLASS is used for a character class, provided there are at least two
  100. characters in the class. If there is only one character, OP_CHARS is used for a
  101. positive class, and OP_NOT for a negative one (that is, for something like
  102. [^a]). Another set of repeating opcodes (OP_NOTSTAR etc.) are used for a
  103. repeated, negated, single-character class. The normal ones (OP_STAR etc.) are
  104. used for a repeated positive single-character class.
  105. OP_CLASS is followed by a 32-byte bit map containing a 1 bit for every
  106. character that is acceptable. The bits are counted from the least significant
  107. end of each byte.
  108. Back references
  109. ---------------
  110. OP_REF is followed by two bytes containing the reference number.
  111. Repeating character classes and back references
  112. -----------------------------------------------
  113. Single-character classes are handled specially (see above). This applies to
  114. OP_CLASS and OP_REF. In both cases, the repeat information follows the base
  115. item. The matching code looks at the following opcode to see if it is one of
  116.   OP_CRSTAR
  117.   OP_CRMINSTAR
  118.   OP_CRPLUS
  119.   OP_CRMINPLUS
  120.   OP_CRQUERY
  121.   OP_CRMINQUERY
  122.   OP_CRRANGE
  123.   OP_CRMINRANGE
  124. All but the last two are just single-byte items. The others are followed by
  125. four bytes of data, comprising the minimum and maximum repeat counts.
  126. Brackets and alternation
  127. ------------------------
  128. A pair of non-capturing (round) brackets is wrapped round each expression at
  129. compile time, so alternation always happens in the context of brackets.
  130. Non-capturing brackets use the opcode OP_BRA, while capturing brackets use
  131. OP_BRA+1, OP_BRA+2, etc. [Note for North Americans: "bracket" to some English
  132. speakers, including myself, can be round, square, curly, or pointy. Hence this
  133. usage.]
  134. Originally PCRE was limited to 99 capturing brackets (so as not to use up all
  135. the opcodes). From release 3.5, there is no limit. What happens is that the
  136. first ones, up to EXTRACT_BASIC_MAX are handled with separate opcodes, as
  137. above. If there are more, the opcode is set to EXTRACT_BASIC_MAX+1, and the
  138. first operation in the bracket is OP_BRANUMBER, followed by a 2-byte bracket
  139. number. This opcode is ignored while matching, but is fished out when handling
  140. the bracket itself. (They could have all been done like this, but I was making
  141. minimal changes.)
  142. A bracket opcode is followed by two bytes which give the offset to the next
  143. alternative OP_ALT or, if there aren't any branches, to the matching KET
  144. opcode. Each OP_ALT is followed by two bytes giving the offset to the next one,
  145. or to the KET opcode.
  146. OP_KET is used for subpatterns that do not repeat indefinitely, while
  147. OP_KETRMIN and OP_KETRMAX are used for indefinite repetitions, minimally or
  148. maximally respectively. All three are followed by two bytes giving (as a
  149. positive number) the offset back to the matching BRA opcode.
  150. If a subpattern is quantified such that it is permitted to match zero times, it
  151. is preceded by one of OP_BRAZERO or OP_BRAMINZERO. These are single-byte
  152. opcodes which tell the matcher that skipping this subpattern entirely is a
  153. valid branch.
  154. A subpattern with an indefinite maximum repetition is replicated in the
  155. compiled data its minimum number of times (or once with a BRAZERO if the
  156. minimum is zero), with the final copy terminating with a KETRMIN or KETRMAX as
  157. appropriate.
  158. A subpattern with a bounded maximum repetition is replicated in a nested
  159. fashion up to the maximum number of times, with BRAZERO or BRAMINZERO before
  160. each replication after the minimum, so that, for example, (abc){2,5} is
  161. compiled as (abc)(abc)((abc)((abc)(abc)?)?)?. The 99 and 200 bracket limits do
  162. not apply to these internally generated brackets.
  163. Assertions
  164. ----------
  165. Forward assertions are just like other subpatterns, but starting with one of
  166. the opcodes OP_ASSERT or OP_ASSERT_NOT. Backward assertions use the opcodes
  167. OP_ASSERTBACK and OP_ASSERTBACK_NOT, and the first opcode inside the assertion
  168. is OP_REVERSE, followed by a two byte count of the number of characters to move
  169. back the pointer in the subject string. When operating in UTF-8 mode, the count
  170. is a character count rather than a byte count. A separate count is present in
  171. each alternative of a lookbehind assertion, allowing them to have different
  172. fixed lengths.
  173. Once-only subpatterns
  174. ---------------------
  175. These are also just like other subpatterns, but they start with the opcode
  176. OP_ONCE.
  177. Conditional subpatterns
  178. -----------------------
  179. These are like other subpatterns, but they start with the opcode OP_COND. If
  180. the condition is a back reference, this is stored at the start of the
  181. subpattern using the opcode OP_CREF followed by two bytes containing the
  182. reference number. Otherwise, a conditional subpattern will always start with
  183. one of the assertions.
  184. Changing options
  185. ----------------
  186. If any of the /i, /m, or /s options are changed within a parenthesized group,
  187. an OP_OPT opcode is compiled, followed by one byte containing the new settings
  188. of these flags. If there are several alternatives in a group, there is an
  189. occurrence of OP_OPT at the start of all those following the first options
  190. change, to set appropriate options for the start of the alternative.
  191. Immediately after the end of the group there is another such item to reset the
  192. flags to their previous values. Other changes of flag within the pattern can be
  193. handled entirely at compile time, and so do not cause anything to be put into
  194. the compiled data.
  195. Philip Hazel
  196. August 2001