PredicateGroup.java
7.11 KB
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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* org.apache.commons.lang.ObjectUtils
* org.apache.commons.lang.builder.EqualsBuilder
* org.apache.commons.lang.builder.HashCodeBuilder
*/
package com.day.cq.search;
import com.day.cq.search.Predicate;
import com.day.cq.search.PredicateConverter;
import org.apache.commons.lang.ObjectUtils;
import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;
import java.util.*;
public class PredicateGroup
extends Predicate
implements List<Predicate> {
public static final String TYPE = "group";
private List<Predicate> predicates = new ArrayList<Predicate>();
private static int indent = 0;
public PredicateGroup() {
super(null, "group");
}
public PredicateGroup(String name) {
super(name, "group");
}
public static PredicateGroup create(Map predicateParameterMap) {
return PredicateConverter.createPredicates(predicateParameterMap);
}
public String toURL() {
return PredicateConverter.toURL(this);
}
public boolean allRequired() {
return !this.getBool("or");
}
public void setAllRequired(boolean all) {
this.set("or", all ? "false" : "true");
}
public boolean isNegated() {
return this.getBool("not");
}
public void setNegated(boolean not) {
this.set("not", not ? "true" : "false");
}
public Predicate getByName(String name) {
for (Predicate p : this.predicates) {
if (!ObjectUtils.equals((Object)p.getName(), (Object)name)) continue;
return p;
}
return null;
}
public Predicate getByPath(String path) {
String[] splits = path.split("\\.", 2);
Predicate predicate = this.getByName(splits[0]);
if (predicate != null) {
if (predicate instanceof PredicateGroup) {
if (splits.length > 1) {
return ((PredicateGroup)predicate).getByPath(splits[1]);
}
} else {
return predicate;
}
}
return null;
}
@Override
public PredicateGroup clone() {
return this.clone(false);
}
@Override
public PredicateGroup clone(boolean resetName) {
PredicateGroup clone = (PredicateGroup)super.clone(resetName);
clone.predicates = new ArrayList<Predicate>();
for (Predicate p : this.predicates) {
Predicate pc = p.clone(resetName);
pc.setParent(clone);
clone.predicates.add(pc);
}
return clone;
}
@Override
public boolean equals(Object obj) {
if (obj == null) {
return false;
}
if (obj == this) {
return true;
}
if (!(obj instanceof PredicateGroup)) {
return false;
}
PredicateGroup other = (PredicateGroup)obj;
return new EqualsBuilder().appendSuper(super.equals(obj)).append(this.predicates, other.predicates).isEquals();
}
@Override
public int hashCode() {
return new HashCodeBuilder(17, 31).appendSuper(super.hashCode()).append(this.predicates).toHashCode();
}
@Override
public String toString() {
StringBuffer buffer = new StringBuffer();
buffer.append(super.toString());
buffer.append("[\n");
indent += 4;
for (Predicate p : this) {
this.appendIndent(buffer);
buffer.append("{").append(p.toString()).append("}\n");
}
indent = indent <= 4 ? 0 : indent - 4;
this.appendIndent(buffer);
buffer.append("]");
return buffer.toString();
}
private void appendIndent(StringBuffer buffer) {
for (int i = 0; i < indent; ++i) {
buffer.append(" ");
}
}
protected void setMeAsParent(Predicate element) {
element.setParent(this);
}
protected void unsetParent(Predicate element) {
element.setParent(null);
}
@Override
public boolean add(Predicate o) {
this.setMeAsParent(o);
return this.predicates.add(o);
}
@Override
public void add(int index, Predicate element) {
this.setMeAsParent(element);
this.predicates.add(index, element);
}
@Override
public boolean addAll(Collection<? extends Predicate> c) {
for (Predicate p : c) {
this.setMeAsParent(p);
}
return this.predicates.addAll(c);
}
@Override
public boolean addAll(int index, Collection<? extends Predicate> c) {
for (Predicate p : c) {
this.setMeAsParent(p);
}
return this.predicates.addAll(index, c);
}
@Override
public void clear() {
for (Predicate p : this.predicates) {
this.unsetParent(p);
}
this.predicates.clear();
}
@Override
public boolean contains(Object o) {
return this.predicates.contains(o);
}
@Override
public boolean containsAll(Collection<?> c) {
return this.predicates.containsAll(c);
}
@Override
public Predicate get(int index) {
return this.predicates.get(index);
}
@Override
public int indexOf(Object o) {
return this.predicates.indexOf(o);
}
@Override
public boolean isEmpty() {
return this.predicates.isEmpty();
}
@Override
public Iterator<Predicate> iterator() {
return this.predicates.iterator();
}
@Override
public int lastIndexOf(Object o) {
return this.predicates.lastIndexOf(o);
}
@Override
public ListIterator<Predicate> listIterator() {
return this.predicates.listIterator();
}
@Override
public ListIterator<Predicate> listIterator(int index) {
return this.predicates.listIterator(index);
}
@Override
public boolean remove(Object o) {
this.unsetParent((Predicate)o);
return this.predicates.remove(o);
}
@Override
public Predicate remove(int index) {
Predicate p = this.predicates.remove(index);
this.unsetParent(p);
return p;
}
@Override
public boolean removeAll(Collection<?> c) {
for (Object o : c) {
this.unsetParent((Predicate)o);
}
return this.predicates.removeAll(c);
}
@Override
public boolean retainAll(Collection<?> c) {
for (Predicate p : this) {
if (c.contains(p)) continue;
this.unsetParent(p);
}
return this.predicates.retainAll(c);
}
@Override
public Predicate set(int index, Predicate element) {
this.setMeAsParent(element);
return this.predicates.set(index, element);
}
@Override
public int size() {
return this.predicates.size();
}
@Override
public List<Predicate> subList(int fromIndex, int toIndex) {
return this.predicates.subList(fromIndex, toIndex);
}
@Override
public Object[] toArray() {
return this.predicates.toArray();
}
@Override
public <T> T[] toArray(T[] a) {
return this.predicates.toArray(a);
}
}