/src/pkg/regexp/syntax/simplify.go

http://github.com/tav/go · Go · 151 lines · 88 code · 17 blank · 46 comment · 47 complexity · 156c854698d8a8afa8202b591125d70e MD5 · raw file

  1. // Copyright 2011 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. package syntax
  5. // Simplify returns a regexp equivalent to re but without counted repetitions
  6. // and with various other simplifications, such as rewriting /(?:a+)+/ to /a+/.
  7. // The resulting regexp will execute correctly but its string representation
  8. // will not produce the same parse tree, because capturing parentheses
  9. // may have been duplicated or removed. For example, the simplified form
  10. // for /(x){1,2}/ is /(x)(x)?/ but both parentheses capture as $1.
  11. // The returned regexp may share structure with or be the original.
  12. func (re *Regexp) Simplify() *Regexp {
  13. if re == nil {
  14. return nil
  15. }
  16. switch re.Op {
  17. case OpCapture, OpConcat, OpAlternate:
  18. // Simplify children, building new Regexp if children change.
  19. nre := re
  20. for i, sub := range re.Sub {
  21. nsub := sub.Simplify()
  22. if nre == re && nsub != sub {
  23. // Start a copy.
  24. nre = new(Regexp)
  25. *nre = *re
  26. nre.Rune = nil
  27. nre.Sub = append(nre.Sub0[:0], re.Sub[:i]...)
  28. }
  29. if nre != re {
  30. nre.Sub = append(nre.Sub, nsub)
  31. }
  32. }
  33. return nre
  34. case OpStar, OpPlus, OpQuest:
  35. sub := re.Sub[0].Simplify()
  36. return simplify1(re.Op, re.Flags, sub, re)
  37. case OpRepeat:
  38. // Special special case: x{0} matches the empty string
  39. // and doesn't even need to consider x.
  40. if re.Min == 0 && re.Max == 0 {
  41. return &Regexp{Op: OpEmptyMatch}
  42. }
  43. // The fun begins.
  44. sub := re.Sub[0].Simplify()
  45. // x{n,} means at least n matches of x.
  46. if re.Max == -1 {
  47. // Special case: x{0,} is x*.
  48. if re.Min == 0 {
  49. return simplify1(OpStar, re.Flags, sub, nil)
  50. }
  51. // Special case: x{1,} is x+.
  52. if re.Min == 1 {
  53. return simplify1(OpPlus, re.Flags, sub, nil)
  54. }
  55. // General case: x{4,} is xxxx+.
  56. nre := &Regexp{Op: OpConcat}
  57. nre.Sub = nre.Sub0[:0]
  58. for i := 0; i < re.Min-1; i++ {
  59. nre.Sub = append(nre.Sub, sub)
  60. }
  61. nre.Sub = append(nre.Sub, simplify1(OpPlus, re.Flags, sub, nil))
  62. return nre
  63. }
  64. // Special case x{0} handled above.
  65. // Special case: x{1} is just x.
  66. if re.Min == 1 && re.Max == 1 {
  67. return sub
  68. }
  69. // General case: x{n,m} means n copies of x and m copies of x?
  70. // The machine will do less work if we nest the final m copies,
  71. // so that x{2,5} = xx(x(x(x)?)?)?
  72. // Build leading prefix: xx.
  73. var prefix *Regexp
  74. if re.Min > 0 {
  75. prefix = &Regexp{Op: OpConcat}
  76. prefix.Sub = prefix.Sub0[:0]
  77. for i := 0; i < re.Min; i++ {
  78. prefix.Sub = append(prefix.Sub, sub)
  79. }
  80. }
  81. // Build and attach suffix: (x(x(x)?)?)?
  82. if re.Max > re.Min {
  83. suffix := simplify1(OpQuest, re.Flags, sub, nil)
  84. for i := re.Min + 1; i < re.Max; i++ {
  85. nre2 := &Regexp{Op: OpConcat}
  86. nre2.Sub = append(nre2.Sub0[:0], sub, suffix)
  87. suffix = simplify1(OpQuest, re.Flags, nre2, nil)
  88. }
  89. if prefix == nil {
  90. return suffix
  91. }
  92. prefix.Sub = append(prefix.Sub, suffix)
  93. }
  94. if prefix != nil {
  95. return prefix
  96. }
  97. // Some degenerate case like min > max or min < max < 0.
  98. // Handle as impossible match.
  99. return &Regexp{Op: OpNoMatch}
  100. }
  101. return re
  102. }
  103. // simplify1 implements Simplify for the unary OpStar,
  104. // OpPlus, and OpQuest operators. It returns the simple regexp
  105. // equivalent to
  106. //
  107. // Regexp{Op: op, Flags: flags, Sub: {sub}}
  108. //
  109. // under the assumption that sub is already simple, and
  110. // without first allocating that structure. If the regexp
  111. // to be returned turns out to be equivalent to re, simplify1
  112. // returns re instead.
  113. //
  114. // simplify1 is factored out of Simplify because the implementation
  115. // for other operators generates these unary expressions.
  116. // Letting them call simplify1 makes sure the expressions they
  117. // generate are simple.
  118. func simplify1(op Op, flags Flags, sub, re *Regexp) *Regexp {
  119. // Special case: repeat the empty string as much as
  120. // you want, but it's still the empty string.
  121. if sub.Op == OpEmptyMatch {
  122. return sub
  123. }
  124. // The operators are idempotent if the flags match.
  125. if op == sub.Op && flags&NonGreedy == sub.Flags&NonGreedy {
  126. return sub
  127. }
  128. if re != nil && re.Op == op && re.Flags&NonGreedy == flags&NonGreedy && sub == re.Sub[0] {
  129. return re
  130. }
  131. re = &Regexp{Op: op, Flags: flags}
  132. re.Sub = append(re.Sub0[:0], sub)
  133. return re
  134. }