1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
package com.stevesoft.pat; |
9 |
|
|
10 |
|
import java.util.Hashtable; |
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
|
|
|
| 63.9% |
Uncovered Elements: 39 (108) |
Complexity: 27 |
Complexity Density: 0.42 |
|
17 |
|
class FastMulti extends PatternSub |
18 |
|
{ |
19 |
|
patInt fewestMatches, mostMatches; |
20 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
21 |
331 |
public patInt minChars()... |
22 |
|
{ |
23 |
331 |
return sub.countMinChars().mul(fewestMatches); |
24 |
|
} |
25 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
26 |
331 |
public patInt maxChars()... |
27 |
|
{ |
28 |
331 |
return sub.countMaxChars().mul(mostMatches); |
29 |
|
} |
30 |
|
|
31 |
|
public boolean matchFewest = false; |
32 |
|
|
|
|
| 77.8% |
Uncovered Elements: 2 (9) |
Complexity: 2 |
Complexity Density: 0.29 |
|
33 |
2471 |
FastMulti(patInt a, patInt b, Pattern p) throws RegSyntax... |
34 |
|
{ |
35 |
2471 |
if (p == null) |
36 |
|
{ |
37 |
0 |
RegSyntaxError.endItAll( |
38 |
|
"Null length pattern " + "followed by *, +, or other Multi."); |
39 |
|
} |
40 |
2471 |
fewestMatches = a; |
41 |
2471 |
mostMatches = b; |
42 |
2471 |
sub = p; |
43 |
2471 |
step = p.countMinChars().intValue(); |
44 |
2471 |
sub.setParent(null); |
45 |
|
} |
46 |
|
|
|
|
| 0% |
Uncovered Elements: 3 (3) |
Complexity: 2 |
Complexity Density: 2 |
|
47 |
0 |
public String toString()... |
48 |
|
{ |
49 |
0 |
return sub.toString() + "{" + fewestMatches + "," + mostMatches + "}" |
50 |
0 |
+ (matchFewest ? "?" : "") + "(?# <= fast multi)" |
51 |
|
+ nextString(); |
52 |
|
} |
53 |
|
|
54 |
|
int step = -1; |
55 |
|
|
|
|
| 61.4% |
Uncovered Elements: 32 (83) |
Complexity: 19 |
Complexity Density: 0.39 |
|
56 |
23631 |
public int matchInternal(int pos, Pthings pt)... |
57 |
|
{ |
58 |
23631 |
int m = -1; |
59 |
23631 |
int i = pos; |
60 |
23631 |
int endstr = pt.src.length() - step; |
61 |
23631 |
patInt matches = new patInt(0); |
62 |
23631 |
if (matchFewest) |
63 |
|
{ |
64 |
0 |
if (fewestMatches.lessEq(matches)) |
65 |
|
{ |
66 |
0 |
int ii = nextMatch(i, pt); |
67 |
0 |
if (ii >= 0) |
68 |
|
{ |
69 |
0 |
return ii; |
70 |
|
} |
71 |
|
} |
72 |
0 |
while (i >= 0 && i <= endstr) |
73 |
|
{ |
74 |
0 |
i = sub.matchInternal(i, pt); |
75 |
0 |
if (i >= 0) |
76 |
|
{ |
77 |
0 |
matches.inc(); |
78 |
0 |
if (fewestMatches.lessEq(matches)) |
79 |
|
{ |
80 |
0 |
int ii = nextMatch(i, pt); |
81 |
0 |
if (ii >= 0) |
82 |
|
{ |
83 |
0 |
return ii; |
84 |
|
} |
85 |
|
} |
86 |
0 |
if (matches.equals(mostMatches)) |
87 |
|
{ |
88 |
0 |
return -1; |
89 |
|
} |
90 |
|
} |
91 |
|
} |
92 |
0 |
return -1; |
93 |
|
} |
94 |
23631 |
int nMatches = 0; |
95 |
37285 |
while (fewestMatches.intValue() > nMatches) |
96 |
|
{ |
97 |
14775 |
i = sub.matchInternal(i, pt); |
98 |
14775 |
if (i >= 0) |
99 |
|
{ |
100 |
13654 |
nMatches++; |
101 |
|
} |
102 |
|
else |
103 |
|
{ |
104 |
1121 |
return -1; |
105 |
|
} |
106 |
|
} |
107 |
22510 |
m = i; |
108 |
22510 |
if (mostMatches.finite()) |
109 |
|
{ |
110 |
2877 |
while (nMatches < mostMatches.intValue()) |
111 |
|
{ |
112 |
1422 |
i = sub.matchInternal(i, pt); |
113 |
1422 |
if (i >= 0) |
114 |
|
{ |
115 |
1407 |
m = i; |
116 |
1407 |
nMatches++; |
117 |
|
} |
118 |
|
else |
119 |
|
{ |
120 |
15 |
break; |
121 |
|
} |
122 |
|
} |
123 |
|
} |
124 |
|
else |
125 |
|
{ |
126 |
21040 |
while (true) |
127 |
|
{ |
128 |
204902 |
i = sub.matchInternal(i, pt); |
129 |
204902 |
if (i >= 0) |
130 |
|
{ |
131 |
183862 |
m = i; |
132 |
183862 |
nMatches++; |
133 |
|
} |
134 |
|
else |
135 |
|
{ |
136 |
21040 |
break; |
137 |
|
} |
138 |
|
} |
139 |
|
} |
140 |
46719 |
while (m >= pos) |
141 |
|
{ |
142 |
46719 |
int r = nextMatch(m, pt); |
143 |
46719 |
if (r >= 0) |
144 |
|
{ |
145 |
13313 |
return r; |
146 |
|
} |
147 |
33406 |
m -= step; |
148 |
33406 |
nMatches--; |
149 |
33406 |
if (nMatches < fewestMatches.intValue()) |
150 |
|
{ |
151 |
9197 |
return -1; |
152 |
|
} |
153 |
|
} |
154 |
0 |
return -1; |
155 |
|
} |
156 |
|
|
|
|
| 80% |
Uncovered Elements: 1 (5) |
Complexity: 2 |
Complexity Density: 0.4 |
|
157 |
804 |
public Pattern clone1(Hashtable h)... |
158 |
|
{ |
159 |
804 |
try |
160 |
|
{ |
161 |
804 |
FastMulti fm = new FastMulti(fewestMatches, mostMatches, |
162 |
|
sub.clone(h)); |
163 |
804 |
fm.matchFewest = matchFewest; |
164 |
804 |
return fm; |
165 |
|
} catch (RegSyntax rs) |
166 |
|
{ |
167 |
0 |
return null; |
168 |
|
} |
169 |
|
} |
170 |
|
} |