-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathParser.java
207 lines (191 loc) · 7.3 KB
/
Parser.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
import java.util.ArrayList;
public class Parser {
static final int CONCAT = 0xC04CA7;
static final int ETOILE = 0xE7011E;
static final int ALTERN = 0xA17E54;
static final int PROTECTION = 0xBADDAD;
static final int PARENTHESEOUVRANT = 0x16641664;
static final int PARENTHESEFERMANT = 0x51515151;
static final int DOT = 0xD07;
public static RegExTree parse(String regEx) throws Exception {
ArrayList<RegExTree> result = new ArrayList<RegExTree>();
for (int i = 0; i < regEx.length(); i++)
result.add(new RegExTree(charToRoot(regEx.charAt(i)), new ArrayList<RegExTree>()));
return parse(result);
}
public static int charToRoot(char c) {
if (c == '.')
return DOT;
if (c == '*')
return ETOILE;
if (c == '|')
return ALTERN;
if (c == '(')
return PARENTHESEOUVRANT;
if (c == ')')
return PARENTHESEFERMANT;
return (int) c;
}
public static RegExTree parse(ArrayList<RegExTree> result) throws Exception {
while (containParenthese(result))
result = processParenthese(result);
while (containEtoile(result))
result = processEtoile(result);
while (containConcat(result))
result = processConcat(result);
while (containAltern(result))
result = processAltern(result);
if (result.size() > 1)
throw new Exception();
return removeProtection(result.get(0));
}
public static boolean containParenthese(ArrayList<RegExTree> trees) {
for (RegExTree t : trees) {
if (t.getRoot() == PARENTHESEOUVRANT || t.getRoot() == PARENTHESEFERMANT)
return true;
}
return false;
}
public static ArrayList<RegExTree> processParenthese(ArrayList<RegExTree> trees) throws Exception {
ArrayList<RegExTree> result = new ArrayList<RegExTree>();
boolean found = false;
for (RegExTree t : trees) {
if (!found && t.getRoot() == PARENTHESEFERMANT) {
boolean done = false;
ArrayList<RegExTree> content = new ArrayList<RegExTree>();
while (!done && !result.isEmpty()) {
if (result.get(result.size() - 1).getRoot() == PARENTHESEOUVRANT) {
done = true;
result.remove(result.size() - 1);
} else
content.add(0, result.remove(result.size() - 1));
}
if (!done)
throw new Exception();
found = true;
ArrayList<RegExTree> subTrees = new ArrayList<RegExTree>();
subTrees.add(parse(content));
result.add(new RegExTree(PROTECTION, subTrees));
} else
result.add(t);
}
if (!found)
throw new Exception();
return result;
}
public static boolean containEtoile(ArrayList<RegExTree> trees) {
for (RegExTree t : trees) {
if (t.getRoot() == ETOILE && t.getSubTrees().isEmpty())
return true;
}
return false;
}
public static ArrayList<RegExTree> processEtoile(ArrayList<RegExTree> trees) throws Exception {
ArrayList<RegExTree> result = new ArrayList<RegExTree>();
boolean found = false;
for (RegExTree t : trees) {
if (!found && t.getRoot() == ETOILE && t.getSubTrees().isEmpty()) {
if (result.isEmpty())
throw new Exception();
found = true;
RegExTree last = result.remove(result.size() - 1);
ArrayList<RegExTree> subTrees = new ArrayList<RegExTree>();
subTrees.add(last);
result.add(new RegExTree(ETOILE, subTrees));
} else {
result.add(t);
}
}
return result;
}
public static boolean containConcat(ArrayList<RegExTree> trees) {
boolean firstFound = false;
for (RegExTree t : trees) {
if (!firstFound && t.getRoot() != ALTERN) {
firstFound = true;
continue;
}
if (firstFound) {
if (t.getRoot() != ALTERN)
return true;
else
firstFound = false;
}
}
return false;
}
public static ArrayList<RegExTree> processConcat(ArrayList<RegExTree> trees) throws Exception {
ArrayList<RegExTree> result = new ArrayList<RegExTree>();
boolean found = false;
boolean firstFound = false;
for (RegExTree t : trees) {
if (!found && !firstFound && t.getRoot() != ALTERN) {
firstFound = true;
result.add(t);
continue;
}
if (!found && firstFound && t.getRoot() == ALTERN) {
firstFound = false;
result.add(t);
continue;
}
if (!found && firstFound && t.getRoot() != ALTERN) {
found = true;
RegExTree last = result.remove(result.size() - 1);
ArrayList<RegExTree> subTrees = new ArrayList<RegExTree>();
subTrees.add(last);
subTrees.add(t);
result.add(new RegExTree(CONCAT, subTrees));
} else {
result.add(t);
}
}
return result;
}
public static boolean containAltern(ArrayList<RegExTree> trees) {
for (RegExTree t : trees) {
if (t.getRoot() == ALTERN && t.getSubTrees().isEmpty())
return true;
}
return false;
}
public static ArrayList<RegExTree> processAltern(ArrayList<RegExTree> trees) throws Exception {
ArrayList<RegExTree> result = new ArrayList<RegExTree>();
boolean found = false;
RegExTree gauche = null;
boolean done = false;
for (RegExTree t : trees) {
if (!found && t.getRoot() == ALTERN && t.getSubTrees().isEmpty()) {
if (result.isEmpty())
throw new Exception();
found = true;
gauche = result.remove(result.size() - 1);
continue;
}
if (found && !done) {
if (gauche == null)
throw new Exception();
done = true;
ArrayList<RegExTree> subTrees = new ArrayList<RegExTree>();
subTrees.add(gauche);
subTrees.add(t);
result.add(new RegExTree(ALTERN, subTrees));
} else {
result.add(t);
}
}
return result;
}
public static RegExTree removeProtection(RegExTree tree) throws Exception {
if (tree.getRoot() == PROTECTION && tree.getSubTrees().size() != 1)
throw new Exception();
if (tree.getSubTrees().isEmpty())
return tree;
if (tree.getRoot() == PROTECTION)
return removeProtection(tree.getSubTrees().get(0));
ArrayList<RegExTree> subTrees = new ArrayList<RegExTree>();
for (RegExTree t : tree.getSubTrees())
subTrees.add(removeProtection(t));
return new RegExTree(tree.getRoot(), subTrees);
}
}