1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.student.common.ui.client.widgets.table; |
17 | |
|
18 | |
import java.util.ArrayList; |
19 | |
import java.util.List; |
20 | |
|
21 | |
import org.kuali.student.common.ui.client.widgets.rules.Token; |
22 | |
|
23 | |
|
24 | |
|
25 | 0 | public class Node<T> implements Cloneable{ |
26 | |
|
27 | 0 | List<Node> childrenList = new ArrayList<Node>(); |
28 | |
|
29 | |
Node parent; |
30 | |
|
31 | |
T userObject; |
32 | |
String id; |
33 | |
|
34 | |
|
35 | |
|
36 | 0 | public Node() {} |
37 | |
|
38 | |
|
39 | |
|
40 | |
|
41 | |
|
42 | 0 | public Node(T obj) { |
43 | 0 | userObject = obj; |
44 | 0 | } |
45 | |
|
46 | |
|
47 | |
|
48 | |
|
49 | |
|
50 | |
public T getUserObject() { |
51 | 0 | return userObject; |
52 | |
} |
53 | |
|
54 | |
|
55 | |
|
56 | |
|
57 | |
|
58 | |
public void setUserObject(T obj) { |
59 | 0 | userObject = obj; |
60 | 0 | } |
61 | |
|
62 | |
|
63 | |
|
64 | |
|
65 | |
|
66 | |
public void setParent(Node parent) { |
67 | 0 | this.parent = parent; |
68 | 0 | } |
69 | |
|
70 | |
|
71 | |
|
72 | |
|
73 | |
|
74 | |
public Node getParent() { |
75 | 0 | return parent; |
76 | |
} |
77 | |
|
78 | |
|
79 | |
|
80 | |
|
81 | |
|
82 | |
|
83 | |
public void addNode(Node node) { |
84 | 0 | childrenList.add(node); |
85 | 0 | node.setParent(this); |
86 | 0 | } |
87 | |
|
88 | |
|
89 | |
|
90 | |
|
91 | |
|
92 | |
public boolean isLeaf() { |
93 | 0 | return getChildCount() == 0; |
94 | |
} |
95 | |
|
96 | |
|
97 | |
|
98 | |
|
99 | |
|
100 | |
public int getChildCount() { |
101 | 0 | return childrenList.size(); |
102 | |
} |
103 | |
|
104 | |
|
105 | |
|
106 | |
|
107 | |
|
108 | |
|
109 | |
public Node getChildAt(int index) { |
110 | 0 | return childrenList.get(index); |
111 | |
} |
112 | |
|
113 | |
public void removeFromParent() { |
114 | 0 | Node parent = this.getParent(); |
115 | 0 | if (parent == null) { |
116 | 0 | return; |
117 | |
} else { |
118 | 0 | parent.children().remove(this); |
119 | 0 | this.setParent(null); |
120 | |
} |
121 | 0 | } |
122 | |
|
123 | |
|
124 | |
|
125 | |
|
126 | |
public void remove(int childIndex) { |
127 | 0 | Node child = getChildAt(childIndex); |
128 | 0 | childrenList.remove(childIndex); |
129 | 0 | child.setParent(null); |
130 | 0 | } |
131 | |
|
132 | |
|
133 | |
|
134 | |
|
135 | |
public void remove(Node child) { |
136 | 0 | childrenList.remove(child); |
137 | 0 | child.setParent(null); |
138 | 0 | } |
139 | |
public void removeAllChildren(){ |
140 | 0 | childrenList.clear(); |
141 | 0 | } |
142 | |
|
143 | |
|
144 | |
|
145 | |
|
146 | |
|
147 | |
|
148 | |
public boolean isNodeChild(Node aNode) { |
149 | |
boolean retval; |
150 | 0 | if (aNode == null) { |
151 | 0 | retval = false; |
152 | |
} else { |
153 | 0 | if (getChildCount() == 0) { |
154 | 0 | retval = false; |
155 | |
} else { |
156 | 0 | retval = (aNode.getParent() == this); |
157 | |
} |
158 | |
} |
159 | 0 | return retval; |
160 | |
} |
161 | |
|
162 | |
public int getIndex(Node aChild) { |
163 | 0 | if (!isNodeChild(aChild)) { |
164 | 0 | return -1; |
165 | |
} |
166 | 0 | return childrenList.indexOf(aChild); |
167 | |
} |
168 | |
|
169 | |
public boolean isNodeSibling(Node anotherNode) { |
170 | |
boolean retval; |
171 | |
|
172 | 0 | if (anotherNode == null) { |
173 | 0 | retval = false; |
174 | 0 | } else if (anotherNode == this) { |
175 | 0 | retval = true; |
176 | |
} else { |
177 | 0 | Node myParent = getParent(); |
178 | 0 | retval = (myParent != null && myParent == anotherNode.getParent()); |
179 | |
|
180 | 0 | if (retval && !((Node) getParent()).isNodeChild(anotherNode)) { |
181 | 0 | throw new Error("sibling has different parent"); |
182 | |
} |
183 | |
} |
184 | 0 | return retval; |
185 | |
} |
186 | |
|
187 | |
|
188 | |
|
189 | |
|
190 | |
|
191 | |
|
192 | |
public int getAllLeafCount() { |
193 | 0 | int count = 0; |
194 | 0 | List<Node<T>> nodeList = getAllChildren(); |
195 | 0 | for (Node<T> node : nodeList) { |
196 | 0 | if (node.isLeaf()) { |
197 | 0 | count++; |
198 | |
} |
199 | |
} |
200 | |
|
201 | 0 | return count; |
202 | |
} |
203 | |
|
204 | |
public List<Node<T>> getAllChildren() { |
205 | 0 | List<Node<T>> nodeList = new ArrayList<Node<T>>(); |
206 | 0 | for (Node<T> child : childrenList) { |
207 | 0 | nodeList.add(child); |
208 | 0 | if (!child.isLeaf()) { |
209 | 0 | nodeList.addAll(child.getAllChildren()); |
210 | |
} |
211 | |
} |
212 | 0 | return nodeList; |
213 | |
} |
214 | |
|
215 | |
public Node<T> getFirstLeafDescendant() { |
216 | 0 | List<Node<T>> list = getAllChildren(); |
217 | 0 | for (Node<T> node : list) { |
218 | 0 | if (node.isLeaf()) { |
219 | 0 | return node; |
220 | |
} |
221 | |
} |
222 | 0 | return null; |
223 | |
|
224 | |
} |
225 | |
|
226 | |
|
227 | |
|
228 | |
|
229 | |
public List<Node> getNonLeafChildren() { |
230 | 0 | List<Node> list = new ArrayList<Node>(); |
231 | 0 | for (Node n : children()) { |
232 | 0 | if (n.isLeaf() == false) { |
233 | 0 | list.add(n); |
234 | |
} |
235 | |
} |
236 | 0 | return list; |
237 | |
} |
238 | |
|
239 | |
public List<Node> getLeafChildren() { |
240 | 0 | List<Node> list = new ArrayList<Node>(); |
241 | 0 | for (Node n : children()) { |
242 | 0 | if (n.isLeaf()) { |
243 | 0 | list.add(n); |
244 | |
} |
245 | |
} |
246 | 0 | return list; |
247 | |
} |
248 | |
|
249 | |
public List<Node> getSiblings() { |
250 | 0 | Node parent = this.getParent(); |
251 | 0 | List<Node> list = new ArrayList<Node>(); |
252 | 0 | if (parent != null) { |
253 | |
|
254 | 0 | for (int i = 0; i < parent.getChildCount(); i++) { |
255 | 0 | if (parent.getChildAt(i) != this) { |
256 | 0 | list.add(parent.getChildAt(i)); |
257 | |
} |
258 | |
} |
259 | 0 | return list; |
260 | |
} |
261 | 0 | return list; |
262 | |
|
263 | |
} |
264 | |
|
265 | |
public List<Node> getLeafSiblings() { |
266 | 0 | List<Node> list = new ArrayList<Node>(); |
267 | 0 | List<Node> siblings = getSiblings(); |
268 | 0 | for (Node n : siblings) { |
269 | 0 | if (n.isLeaf()) { |
270 | 0 | list.add(n); |
271 | |
} |
272 | |
} |
273 | |
|
274 | 0 | return list; |
275 | |
} |
276 | |
|
277 | |
public List<Node> children() { |
278 | 0 | if (childrenList == null) { |
279 | 0 | return new ArrayList<Node>(); |
280 | |
} else { |
281 | 0 | return childrenList; |
282 | |
} |
283 | |
} |
284 | |
|
285 | |
|
286 | |
|
287 | |
public List<List<Node>> toLevel() { |
288 | 0 | List<List<Node>> levelList = new ArrayList<List<Node>>(); |
289 | |
|
290 | 0 | List<Node> level = new ArrayList<Node>(); |
291 | 0 | level.add(this); |
292 | 0 | levelList.add(level); |
293 | |
|
294 | 0 | int maxDistance = getMaxLevelDistance(); |
295 | |
|
296 | 0 | List<Node<T>> nodeList = getAllChildren(); |
297 | 0 | for (int levelIndex = 1; levelIndex <= maxDistance; levelIndex++) { |
298 | 0 | level = new ArrayList<Node>(); |
299 | 0 | for (Node node : nodeList) { |
300 | 0 | int d = getDistance(node); |
301 | 0 | if (levelIndex == d) { |
302 | 0 | level.add(node); |
303 | |
} |
304 | 0 | } |
305 | 0 | levelList.add(level); |
306 | |
} |
307 | |
|
308 | 0 | return levelList; |
309 | |
} |
310 | |
|
311 | |
public List<Node> deepTrans(Node root) { |
312 | 0 | List<Node> list = new ArrayList<Node>(); |
313 | 0 | for (int i = 0; i < root.getChildCount(); i++) { |
314 | 0 | Node n = root.getChildAt(i); |
315 | 0 | if (n.isLeaf()) { |
316 | 0 | list.add(n); |
317 | |
} else { |
318 | 0 | list.addAll(deepTrans(n)); |
319 | |
} |
320 | |
|
321 | |
} |
322 | 0 | list.add(root); |
323 | 0 | return list; |
324 | |
} |
325 | |
|
326 | |
public int getMaxLevelDistance() { |
327 | 0 | List<Node<T>> nodeList = getAllChildren(); |
328 | 0 | int maxDistance = 0; |
329 | 0 | for (Node<T> node : nodeList) { |
330 | 0 | int d = getDistance(node); |
331 | 0 | if (maxDistance < d) { |
332 | 0 | maxDistance = d; |
333 | |
} |
334 | 0 | } |
335 | 0 | return maxDistance; |
336 | |
} |
337 | |
|
338 | |
|
339 | |
public int getDistance(Node node) { |
340 | 0 | Node myParent = node.getParent(); |
341 | 0 | int level = 1; |
342 | 0 | while (myParent != null && myParent != this) { |
343 | 0 | level++; |
344 | 0 | myParent = myParent.getParent(); |
345 | |
} |
346 | 0 | return level; |
347 | |
} |
348 | |
|
349 | |
public String toString() { |
350 | 0 | if (userObject == null) { |
351 | 0 | return "no user object"; |
352 | |
} |
353 | |
|
354 | 0 | StringBuilder sb = new StringBuilder(userObject.toString()); |
355 | 0 | if (this.getChildCount() == 0) { |
356 | 0 | return sb.toString(); |
357 | |
} |
358 | 0 | sb.append("{"); |
359 | 0 | for (int i = 0; i < this.getChildCount(); i++) { |
360 | 0 | if (this.getChildAt(i).getParent() == this) { |
361 | 0 | sb.append(this.getChildAt(i).toString() + ","); |
362 | |
} |
363 | |
|
364 | |
} |
365 | 0 | sb.append("}"); |
366 | 0 | return sb.toString(); |
367 | |
} |
368 | |
|
369 | |
public Node<T> clone() { |
370 | 0 | Node<T> newNode = new Node<T>(); |
371 | 0 | newNode.setUserObject(this.getUserObject()); |
372 | 0 | if (this.isLeaf() == false) { |
373 | 0 | for (Node<T> n : this.childrenList) { |
374 | 0 | newNode.addNode(n.clone()); |
375 | |
} |
376 | |
} |
377 | 0 | return newNode; |
378 | |
} |
379 | |
|
380 | |
public static void main(String[] argv) { |
381 | |
|
382 | |
|
383 | |
|
384 | |
|
385 | |
|
386 | |
|
387 | |
|
388 | |
|
389 | |
|
390 | |
|
391 | |
|
392 | |
|
393 | |
|
394 | |
|
395 | |
|
396 | |
|
397 | |
|
398 | |
|
399 | |
|
400 | |
|
401 | |
|
402 | |
|
403 | |
|
404 | |
|
405 | |
|
406 | |
|
407 | |
|
408 | |
|
409 | |
|
410 | 0 | ExpressionParser p = new ExpressionParser(); |
411 | 0 | Node<Token> n = p.parse("(a or b) and c or d and f"); |
412 | 0 | System.out.println(n); |
413 | 0 | System.out.println(ExpressionParser.getExpressionString(n)); |
414 | 0 | } |
415 | |
} |