1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
package org.apache.tapestry.engine; |
16 |
|
|
17 |
|
import edu.emory.mathcs.backport.java.util.concurrent.ConcurrentHashMap; |
18 |
|
import org.apache.hivemind.ApplicationRuntimeException; |
19 |
|
import org.apache.hivemind.Location; |
20 |
|
import org.apache.hivemind.Resource; |
21 |
|
import org.apache.tapestry.INamespace; |
22 |
|
import org.apache.tapestry.Tapestry; |
23 |
|
import org.apache.tapestry.services.NamespaceResources; |
24 |
|
import org.apache.tapestry.spec.IComponentSpecification; |
25 |
|
import org.apache.tapestry.spec.ILibrarySpecification; |
26 |
|
|
27 |
|
import java.util.*; |
28 |
|
|
29 |
|
|
30 |
|
|
31 |
|
|
32 |
|
|
33 |
|
|
34 |
|
|
35 |
|
|
36 |
|
|
37 |
|
|
38 |
|
public class Namespace implements INamespace |
39 |
|
{ |
40 |
|
|
41 |
|
private final ILibrarySpecification _specification; |
42 |
|
|
43 |
|
private final String _id; |
44 |
|
|
45 |
|
private String _extendedId; |
46 |
|
|
47 |
|
private final INamespace _parent; |
48 |
|
|
49 |
|
private final boolean _frameworkNamespace; |
50 |
|
|
51 |
|
private final boolean _applicationNamespace; |
52 |
|
|
53 |
|
|
54 |
|
|
55 |
|
private final NamespaceResources _resources; |
56 |
|
|
57 |
|
|
58 |
|
|
59 |
|
|
60 |
|
|
61 |
|
|
62 |
|
|
63 |
|
|
64 |
28 |
private final Map _pages = new ConcurrentHashMap(); |
65 |
|
|
66 |
|
|
67 |
|
|
68 |
|
|
69 |
|
|
70 |
|
|
71 |
28 |
private final Map _components = new ConcurrentHashMap(); |
72 |
|
|
73 |
|
|
74 |
|
|
75 |
|
|
76 |
|
|
77 |
28 |
private final Map _children = new ConcurrentHashMap(); |
78 |
|
|
79 |
|
public Namespace(String id, INamespace parent, ILibrarySpecification specification, |
80 |
|
NamespaceResources resources) |
81 |
28 |
{ |
82 |
28 |
_id = id; |
83 |
28 |
_parent = parent; |
84 |
28 |
_specification = specification; |
85 |
28 |
_resources = resources; |
86 |
|
|
87 |
28 |
_applicationNamespace = (_id == null); |
88 |
28 |
_frameworkNamespace = FRAMEWORK_NAMESPACE.equals(_id); |
89 |
28 |
} |
90 |
|
|
91 |
|
public String toString() |
92 |
|
{ |
93 |
0 |
StringBuffer buffer = new StringBuffer("Namespace@"); |
94 |
0 |
buffer.append(Integer.toHexString(hashCode())); |
95 |
0 |
buffer.append('['); |
96 |
|
|
97 |
0 |
if (_applicationNamespace) |
98 |
0 |
buffer.append("<application>"); |
99 |
|
else |
100 |
0 |
buffer.append(getExtendedId()); |
101 |
|
|
102 |
0 |
buffer.append(']'); |
103 |
|
|
104 |
0 |
return buffer.toString(); |
105 |
|
} |
106 |
|
|
107 |
|
public String getId() |
108 |
|
{ |
109 |
0 |
return _id; |
110 |
|
} |
111 |
|
|
112 |
|
public String getExtendedId() |
113 |
|
{ |
114 |
0 |
if (_applicationNamespace) |
115 |
0 |
return null; |
116 |
|
|
117 |
0 |
if (_extendedId == null) |
118 |
0 |
_extendedId = buildExtendedId(); |
119 |
|
|
120 |
0 |
return _extendedId; |
121 |
|
} |
122 |
|
|
123 |
|
public INamespace getParentNamespace() |
124 |
|
{ |
125 |
74 |
return _parent; |
126 |
|
} |
127 |
|
|
128 |
|
public INamespace getChildNamespace(String id) |
129 |
|
{ |
130 |
0 |
String firstId = id; |
131 |
0 |
String nextIds = null; |
132 |
|
|
133 |
|
|
134 |
0 |
int index = id.indexOf('.'); |
135 |
0 |
if (index >= 0) |
136 |
|
{ |
137 |
0 |
firstId = id.substring(0, index); |
138 |
0 |
nextIds = id.substring(index + 1); |
139 |
|
} |
140 |
|
|
141 |
|
|
142 |
0 |
INamespace result = (INamespace) _children.get(firstId); |
143 |
|
|
144 |
0 |
if (result == null) |
145 |
|
{ |
146 |
0 |
result = createNamespace(firstId); |
147 |
|
|
148 |
0 |
_children.put(firstId, result); |
149 |
|
} |
150 |
|
|
151 |
|
|
152 |
|
|
153 |
0 |
if (result != null && nextIds != null) |
154 |
0 |
result = result.getChildNamespace(nextIds); |
155 |
|
|
156 |
0 |
return result; |
157 |
|
} |
158 |
|
|
159 |
|
public List getChildIds() |
160 |
|
{ |
161 |
0 |
return _specification.getLibraryIds(); |
162 |
|
} |
163 |
|
|
164 |
|
public IComponentSpecification getPageSpecification(String name) |
165 |
|
{ |
166 |
0 |
IComponentSpecification result = (IComponentSpecification) _pages.get(name); |
167 |
|
|
168 |
0 |
if (result == null) |
169 |
|
{ |
170 |
0 |
result = locatePageSpecification(name); |
171 |
|
|
172 |
0 |
_pages.put(name, result); |
173 |
|
} |
174 |
|
|
175 |
0 |
return result; |
176 |
|
} |
177 |
|
|
178 |
|
public List getPageNames() |
179 |
|
{ |
180 |
0 |
Set names = new HashSet(); |
181 |
|
|
182 |
0 |
names.addAll(_pages.keySet()); |
183 |
0 |
names.addAll(_specification.getPageNames()); |
184 |
|
|
185 |
0 |
List result = new ArrayList(names); |
186 |
|
|
187 |
0 |
Collections.sort(result); |
188 |
|
|
189 |
0 |
return result; |
190 |
|
} |
191 |
|
|
192 |
|
public IComponentSpecification getComponentSpecification(String alias) |
193 |
|
{ |
194 |
0 |
IComponentSpecification result = (IComponentSpecification) _components.get(alias); |
195 |
|
|
196 |
0 |
if (result == null) |
197 |
|
{ |
198 |
0 |
result = locateComponentSpecification(alias); |
199 |
0 |
_components.put(alias, result); |
200 |
|
} |
201 |
|
|
202 |
0 |
return result; |
203 |
|
} |
204 |
|
|
205 |
|
public ILibrarySpecification getSpecification() |
206 |
|
{ |
207 |
0 |
return _specification; |
208 |
|
} |
209 |
|
|
210 |
|
private String buildExtendedId() |
211 |
|
{ |
212 |
0 |
if (_parent == null) |
213 |
0 |
return _id; |
214 |
|
|
215 |
0 |
String parentId = _parent.getExtendedId(); |
216 |
|
|
217 |
|
|
218 |
|
|
219 |
0 |
if (parentId == null) |
220 |
0 |
return _id; |
221 |
|
|
222 |
0 |
return parentId + "." + _id; |
223 |
|
} |
224 |
|
|
225 |
|
|
226 |
|
|
227 |
|
|
228 |
|
|
229 |
|
|
230 |
|
public String getNamespaceId() |
231 |
|
{ |
232 |
0 |
if (_frameworkNamespace) |
233 |
0 |
return Tapestry.getMessage("Namespace.framework-namespace"); |
234 |
|
|
235 |
0 |
if (_applicationNamespace) |
236 |
0 |
return Tapestry.getMessage("Namespace.application-namespace"); |
237 |
|
|
238 |
0 |
return Tapestry.format("Namespace.nested-namespace", getExtendedId()); |
239 |
|
} |
240 |
|
|
241 |
|
|
242 |
|
|
243 |
|
|
244 |
|
|
245 |
|
|
246 |
|
|
247 |
|
|
248 |
|
private IComponentSpecification locatePageSpecification(String name) |
249 |
|
{ |
250 |
0 |
String path = _specification.getPageSpecificationPath(name); |
251 |
|
|
252 |
0 |
if (path == null) |
253 |
0 |
throw new ApplicationRuntimeException(Tapestry.format("Namespace.no-such-page", name, getNamespaceId())); |
254 |
|
|
255 |
|
|
256 |
|
|
257 |
|
|
258 |
|
|
259 |
|
|
260 |
0 |
return _resources.getPageSpecification(getSpecificationLocation(), path, getLocation()); |
261 |
|
} |
262 |
|
|
263 |
|
private IComponentSpecification locateComponentSpecification(String type) |
264 |
|
{ |
265 |
0 |
String path = _specification.getComponentSpecificationPath(type); |
266 |
|
|
267 |
0 |
if (path == null) |
268 |
0 |
throw new ApplicationRuntimeException(Tapestry.format("Namespace.no-such-alias", type, getNamespaceId())); |
269 |
|
|
270 |
|
|
271 |
|
|
272 |
|
|
273 |
|
|
274 |
|
|
275 |
0 |
return _resources.getComponentSpecification(getSpecificationLocation(), path, getLocation()); |
276 |
|
} |
277 |
|
|
278 |
|
private INamespace createNamespace(String id) |
279 |
|
{ |
280 |
0 |
String path = _specification.getLibrarySpecificationPath(id); |
281 |
|
|
282 |
0 |
if (path == null) |
283 |
0 |
throw new ApplicationRuntimeException(Tapestry.format("Namespace.library-id-not-found", id, getNamespaceId())); |
284 |
|
|
285 |
|
|
286 |
|
|
287 |
|
|
288 |
|
|
289 |
|
|
290 |
0 |
ILibrarySpecification ls = |
291 |
|
_resources.findChildLibrarySpecification(getSpecificationLocation(), path, getLocation()); |
292 |
|
|
293 |
0 |
return new Namespace(id, this, ls, _resources); |
294 |
|
} |
295 |
|
|
296 |
|
public boolean containsPage(String name) |
297 |
|
{ |
298 |
0 |
return _pages.containsKey(name) || (_specification.getPageSpecificationPath(name) != null); |
299 |
|
} |
300 |
|
|
301 |
|
|
302 |
|
|
303 |
|
public String constructQualifiedName(String pageName) |
304 |
|
{ |
305 |
0 |
String prefix = getExtendedId(); |
306 |
|
|
307 |
0 |
if (prefix == null) |
308 |
0 |
return pageName; |
309 |
|
|
310 |
0 |
return prefix + SEPARATOR + pageName; |
311 |
|
} |
312 |
|
|
313 |
|
|
314 |
|
|
315 |
|
public Resource getSpecificationLocation() |
316 |
|
{ |
317 |
199 |
return _specification.getSpecificationLocation(); |
318 |
|
} |
319 |
|
|
320 |
|
|
321 |
|
|
322 |
|
public boolean isApplicationNamespace() |
323 |
|
{ |
324 |
0 |
return _applicationNamespace; |
325 |
|
} |
326 |
|
|
327 |
|
|
328 |
|
|
329 |
|
public void installPageSpecification(String pageName, IComponentSpecification specification) |
330 |
|
{ |
331 |
0 |
_pages.put(pageName, specification); |
332 |
0 |
} |
333 |
|
|
334 |
|
|
335 |
|
|
336 |
|
public void installComponentSpecification(String type, IComponentSpecification specification) |
337 |
|
{ |
338 |
0 |
_components.put(type, specification); |
339 |
0 |
} |
340 |
|
|
341 |
|
|
342 |
|
|
343 |
|
public boolean containsComponentType(String type) |
344 |
|
{ |
345 |
0 |
return _components.containsKey(type) || (_specification.getComponentSpecificationPath(type) != null); |
346 |
|
} |
347 |
|
|
348 |
|
|
349 |
|
|
350 |
|
public Location getLocation() |
351 |
|
{ |
352 |
0 |
if (_specification == null) |
353 |
0 |
return null; |
354 |
|
|
355 |
0 |
return _specification.getLocation(); |
356 |
|
} |
357 |
|
|
358 |
|
|
359 |
|
|
360 |
|
|
361 |
|
|
362 |
|
|
363 |
|
|
364 |
|
|
365 |
|
public String getPropertyValue(String propertyName) |
366 |
|
{ |
367 |
149 |
String ret = _specification.getProperty(propertyName); |
368 |
|
|
369 |
149 |
if (ret == null && _parent != null) |
370 |
|
{ |
371 |
14 |
return _parent.getPropertyValue(propertyName); |
372 |
|
} |
373 |
|
|
374 |
135 |
return ret; |
375 |
|
} |
376 |
|
} |