1 | // WSDL generated classes |
---|
2 | import edu.isi.www.fedd_types.*; |
---|
3 | import edu.isi.www.topdl.*; |
---|
4 | |
---|
5 | import java.io.*; |
---|
6 | |
---|
7 | import java.util.*; |
---|
8 | |
---|
9 | import javax.xml.parsers.*; |
---|
10 | |
---|
11 | import org.xml.sax.*; |
---|
12 | import org.xml.sax.helpers.*; |
---|
13 | |
---|
14 | public class ParseTopdl { |
---|
15 | /** Parser instance */ |
---|
16 | protected XMLReader xr; |
---|
17 | /** Handler that parses topdl file */ |
---|
18 | protected TopdlHandler h; |
---|
19 | |
---|
20 | /** |
---|
21 | * This class encapsulates the state of an XML parse of a topdl file. It |
---|
22 | * contains abunch of parsing state and is called from the standard SAX |
---|
23 | * parser at 3 places: when an XML element starts (<element>) when |
---|
24 | * one ends (<element/>) and whenever characters inside an element |
---|
25 | * are encountered. It mostly initializes fields as elements are exited, |
---|
26 | * collecting other parsed fields into objects that are finally attached to |
---|
27 | * the topology itself. |
---|
28 | */ |
---|
29 | protected class TopdlHandler extends DefaultHandler { |
---|
30 | /** The name of the outermost element, "experiment" by default */ |
---|
31 | protected String topName; |
---|
32 | |
---|
33 | // Topology parameters |
---|
34 | /** The current topology being built */ |
---|
35 | protected TopologyType topo; |
---|
36 | /** The current element being built */ |
---|
37 | protected ElementType element; |
---|
38 | /** The current computer being built */ |
---|
39 | protected ComputerType comp; |
---|
40 | /** The current testbed being built */ |
---|
41 | protected TestbedType tb; |
---|
42 | /** The current segment being built */ |
---|
43 | protected SegmentType seg; |
---|
44 | /** The current other element being built */ |
---|
45 | protected OtherType other; |
---|
46 | |
---|
47 | // Many elements have a name |
---|
48 | /** the most recent name element parsed */ |
---|
49 | protected String name; |
---|
50 | // Many statuses as well |
---|
51 | protected StatusType status; |
---|
52 | |
---|
53 | // CPU parameters |
---|
54 | /** current cpu type */ |
---|
55 | protected String type; |
---|
56 | /** current number of cpus */ |
---|
57 | protected int ncpus; |
---|
58 | |
---|
59 | // Operatingsystem parameters |
---|
60 | /** Current OS version */ |
---|
61 | protected String version; |
---|
62 | /** Current OS distro */ |
---|
63 | protected String distribution; |
---|
64 | /** Current OS distro version */ |
---|
65 | protected String distributionversion; |
---|
66 | /** Local names of this node */ |
---|
67 | protected Vector<String> localnames; |
---|
68 | |
---|
69 | /** True if in a Computer testbed or substrate that has local names */ |
---|
70 | protected boolean collectLocalnames; |
---|
71 | |
---|
72 | |
---|
73 | // Software parameters |
---|
74 | /** Current software installation point */ |
---|
75 | protected String install; |
---|
76 | /** Current software location */ |
---|
77 | protected String location; |
---|
78 | |
---|
79 | // Service Parameters |
---|
80 | protected Vector<String> importers; |
---|
81 | protected Vector<ServiceParamType> serviceParams; |
---|
82 | protected String description; |
---|
83 | |
---|
84 | //ServiceParam parameters |
---|
85 | protected String serviceParamName; |
---|
86 | protected ServiceParamTypeType serviceParamType; |
---|
87 | |
---|
88 | // Storage parameters |
---|
89 | /** Current storage amount */ |
---|
90 | protected double amount; |
---|
91 | /** Current storage persistence */ |
---|
92 | protected PersistenceType persistence; |
---|
93 | |
---|
94 | // Interface Parameters |
---|
95 | /** Vector of substrate names the current interface is attached to */ |
---|
96 | protected Vector<String> ifsubs; |
---|
97 | /** Current interface capacity */ |
---|
98 | protected edu.isi.www.topdl.CapacityType cap; |
---|
99 | /** Current interface latency */ |
---|
100 | protected LatencyType lat; |
---|
101 | |
---|
102 | // Capacity parameters |
---|
103 | /** Current capacity rate (bandwidth) */ |
---|
104 | protected double rate; |
---|
105 | /** Current capacity kind (max, peak)*/ |
---|
106 | protected edu.isi.www.topdl.KindType kind; |
---|
107 | |
---|
108 | // Latency parameters (shares kind) |
---|
109 | /** Current latency time */ |
---|
110 | protected double time; |
---|
111 | |
---|
112 | // Testbed parameters (shares interfaces, type) |
---|
113 | /** Current URI */ |
---|
114 | protected String uri; |
---|
115 | |
---|
116 | // Segment parameters (shares interfaces, type, uri) |
---|
117 | /** Current segment ID */ |
---|
118 | protected IDType id; |
---|
119 | // IDType parameters |
---|
120 | /** Current ID uuid (if any) */ |
---|
121 | protected byte[] uuid; |
---|
122 | /** Current ID fedid (if any) */ |
---|
123 | protected byte[] fedid; |
---|
124 | /** Current ID uri (if any) */ |
---|
125 | protected String id_uri; |
---|
126 | /** Current ID localname (if any) */ |
---|
127 | protected String localname; |
---|
128 | /** Current ID kerberosUsername (if any) */ |
---|
129 | protected String kerberosUsername; |
---|
130 | /** True when we are parsing an ID (so URIs are stored in id_uri) */ |
---|
131 | protected boolean inID; |
---|
132 | |
---|
133 | // Attribute parameters |
---|
134 | /** Current attribute name */ |
---|
135 | protected String aname; |
---|
136 | /** Current attribute value */ |
---|
137 | protected String aval; |
---|
138 | |
---|
139 | /** Elements seen so far */ |
---|
140 | protected Vector<ElementType> elements; |
---|
141 | /** Substrates seen so far */ |
---|
142 | protected Vector<SubstrateType> subs; |
---|
143 | /** Attributes seen so far */ |
---|
144 | protected Vector<AttributeType> attrs; |
---|
145 | /** CPUs seen so far */ |
---|
146 | protected Vector<CpuType> cpus; |
---|
147 | /** Operating Systems seen so far */ |
---|
148 | protected Vector<OperatingsystemType> oses; |
---|
149 | /** Software seen so far */ |
---|
150 | protected Vector<SoftwareType> software; |
---|
151 | /** Storage seen so far */ |
---|
152 | protected Vector<StorageType> storage; |
---|
153 | /** Interfaces seen so far */ |
---|
154 | protected Vector<InterfaceType> interfaces; |
---|
155 | /** Services seen so far */ |
---|
156 | protected Vector<ServiceType> services; |
---|
157 | /** Operations seen so far */ |
---|
158 | protected Vector<String> operations; |
---|
159 | |
---|
160 | /** |
---|
161 | * Attributes appear in many elements, some of which can appear inside |
---|
162 | * the definition of others. We keep a stack of live attributes so |
---|
163 | * that a sub-element does not overwrite a super-element's attributes. |
---|
164 | * attrElements is a set of element names that should start a new set |
---|
165 | * of recorded attributes, and attrStack keeps the contexts stacked. |
---|
166 | */ |
---|
167 | protected Set<String> attrElements; |
---|
168 | /** |
---|
169 | * The stack of attribute contexts. |
---|
170 | */ |
---|
171 | protected Stack<Vector<AttributeType>> attrStack; |
---|
172 | /** |
---|
173 | * Analogous to attrElements for names. |
---|
174 | */ |
---|
175 | protected Set<String> nameElements; |
---|
176 | /** |
---|
177 | * Analogous to attrStack for names. |
---|
178 | */ |
---|
179 | protected Stack<String> nameStack; |
---|
180 | /** |
---|
181 | * Analogous to attrStack for status |
---|
182 | */ |
---|
183 | protected Stack<StatusType> statusStack; |
---|
184 | /** |
---|
185 | * Analogous to attrElements for names. |
---|
186 | */ |
---|
187 | protected Set<String> statusElements; |
---|
188 | /** |
---|
189 | * These elements collect localnames |
---|
190 | */ |
---|
191 | protected Set<String> localnameElements; |
---|
192 | /** |
---|
193 | * The current buffer of characters collected. |
---|
194 | */ |
---|
195 | protected char[] c; |
---|
196 | |
---|
197 | /** |
---|
198 | * Print parsing info if true |
---|
199 | */ |
---|
200 | protected boolean debug; |
---|
201 | |
---|
202 | /** |
---|
203 | * Initialize the internal data structures. Top is the outer element |
---|
204 | * name. If d is true, debugging info is printed. |
---|
205 | * @param top a String containing the outer element name |
---|
206 | * @param d a boolean, if true pring debugging info |
---|
207 | */ |
---|
208 | TopdlHandler(String top, boolean d) { |
---|
209 | debug = d; |
---|
210 | topName = top; |
---|
211 | topo = null; |
---|
212 | element = null; |
---|
213 | comp = null; |
---|
214 | tb = null; |
---|
215 | seg = null; |
---|
216 | other = null; |
---|
217 | |
---|
218 | localnames = new Vector<String>(); |
---|
219 | collectLocalnames = false; |
---|
220 | |
---|
221 | type = null; |
---|
222 | name = null; |
---|
223 | ncpus = 1; |
---|
224 | |
---|
225 | version = distribution = distributionversion = null; |
---|
226 | description = null; |
---|
227 | |
---|
228 | install = location = null; |
---|
229 | |
---|
230 | amount = 0.0; |
---|
231 | persistence = null; |
---|
232 | |
---|
233 | ifsubs = new Vector<String>(); |
---|
234 | cap = null; |
---|
235 | lat = null; |
---|
236 | |
---|
237 | rate = 0.0; |
---|
238 | kind = null; |
---|
239 | |
---|
240 | time = 0.0; |
---|
241 | |
---|
242 | uri = null; |
---|
243 | |
---|
244 | id = null; |
---|
245 | |
---|
246 | uuid = fedid = null; |
---|
247 | id_uri = localname = kerberosUsername = null; |
---|
248 | inID = false; |
---|
249 | |
---|
250 | aname = aval = null; |
---|
251 | importers = new Vector<String>();; |
---|
252 | serviceParams = new Vector<ServiceParamType>(); |
---|
253 | |
---|
254 | elements = new Vector<ElementType>(); |
---|
255 | cpus = new Vector<CpuType>(); |
---|
256 | subs = new Vector<SubstrateType>(); |
---|
257 | oses = new Vector<OperatingsystemType>(); |
---|
258 | software = new Vector<SoftwareType>(); |
---|
259 | storage = new Vector<StorageType>(); |
---|
260 | interfaces = new Vector<InterfaceType>(); |
---|
261 | services = new Vector<ServiceType>(); |
---|
262 | serviceParams = new Vector<ServiceParamType>(); |
---|
263 | attrs = new Vector<AttributeType>(); |
---|
264 | operations = new Vector<String>(); |
---|
265 | |
---|
266 | attrElements = new TreeSet<String>(); |
---|
267 | for (String e : new String[] { |
---|
268 | topName, "computer", "cpu", "os", "software", "storage", |
---|
269 | "interface", "segment", "testbed", "other", "substrates" |
---|
270 | }) attrElements.add(e); |
---|
271 | |
---|
272 | attrStack = new Stack<Vector<AttributeType>>(); |
---|
273 | |
---|
274 | nameElements = new TreeSet<String>(); |
---|
275 | for (String e : new String[] { |
---|
276 | "computer", "os", "interface", "substrates", "service", |
---|
277 | "param" |
---|
278 | }) nameElements.add(e); |
---|
279 | nameStack = new Stack<String>(); |
---|
280 | |
---|
281 | statusElements = new TreeSet<String>(); |
---|
282 | for (String e : new String[] { |
---|
283 | "computer", "testbed", "substrates", "service", |
---|
284 | }) statusElements.add(e); |
---|
285 | statusStack = new Stack<StatusType>(); |
---|
286 | |
---|
287 | localnameElements = new TreeSet<String>(); |
---|
288 | for (String e : new String[] { |
---|
289 | "computer", "testbed", "substrates", |
---|
290 | }) localnameElements.add(e); |
---|
291 | c = new char[0]; |
---|
292 | } |
---|
293 | |
---|
294 | /** |
---|
295 | * Called when an element begins. qn is the element and a has |
---|
296 | * attributes assigned in the element. This starts new name or |
---|
297 | * attribute contexts, if necessary as well as noting the start of an |
---|
298 | * id (which is a lightweight uri context). The parameter definitions |
---|
299 | * below are from org.xml.sax.helpers.DefaultHandler |
---|
300 | * @param u - The Namespace URI, or the empty string if the element has |
---|
301 | * no Namespace URI or if Namespace processing is not being performed. |
---|
302 | * @param l - The local name (without prefix), or the empty string if |
---|
303 | * Namespace processing is not being performed. |
---|
304 | * @param qn - The qualified name (with prefix), or the empty string if |
---|
305 | * qualified names are not available. |
---|
306 | * @param a - The attributes attached to the element. If there are no |
---|
307 | * attributes, it shall be an empty Attributes object. |
---|
308 | */ |
---|
309 | public void startElement(String u, String l, String qn, Attributes a) |
---|
310 | throws SAXException { |
---|
311 | |
---|
312 | if (debug) System.err.println("<" + qn + ">"); |
---|
313 | c = new char[0]; |
---|
314 | if ( attrElements.contains(qn) ) { |
---|
315 | attrStack.push(attrs); |
---|
316 | attrs = new Vector<AttributeType>(); |
---|
317 | } |
---|
318 | if ( nameElements.contains(qn) ) { |
---|
319 | nameStack.push(name); |
---|
320 | name = null; |
---|
321 | } |
---|
322 | if ( statusElements.contains(qn) ) { |
---|
323 | statusStack.push(status); |
---|
324 | status = null; |
---|
325 | } |
---|
326 | if ( localnameElements.contains(qn) ) { |
---|
327 | collectLocalnames = true; |
---|
328 | } |
---|
329 | if (qn.equals("id")) inID = true; |
---|
330 | if (qn.equals("cpu")) { |
---|
331 | String n = a.getValue("count"); |
---|
332 | if ( n != null) ncpus = Integer.valueOf(n); |
---|
333 | else ncpus = 1; |
---|
334 | } |
---|
335 | } |
---|
336 | |
---|
337 | /** |
---|
338 | * Collect the data from each element and stash it where any containing |
---|
339 | * elent can find it when it is time to construct that thing. Clear |
---|
340 | * any fields used. This is long but straightforward parsing. |
---|
341 | * @param u - The Namespace URI, or the empty string if the element has |
---|
342 | * no Namespace URI or if Namespace processing is not being performed. |
---|
343 | * @param l - The local name (without prefix), or the empty string if |
---|
344 | * Namespace processing is not being performed. |
---|
345 | * @param qn - The qualified name (with prefix), or the empty string if |
---|
346 | * qualified names are not available. |
---|
347 | */ |
---|
348 | public void endElement(String u, String l, String qn) |
---|
349 | throws SAXException { |
---|
350 | |
---|
351 | if (debug) System.err.println("<" + qn + "/>"); |
---|
352 | |
---|
353 | // Each branch parses the data from the given element, e.g, |
---|
354 | // "computer" parses the fields collected for </computer>. In that |
---|
355 | // case the data stashed by trips through here for |
---|
356 | // <operatingsystem>, <name>, etc. |
---|
357 | // |
---|
358 | // The vector.toArray(new Type[vector.size()], idiom just returns |
---|
359 | // the contents of the vector as a java array of the vector's type. |
---|
360 | if (qn.equals(topName)) { |
---|
361 | topo = new TopologyType("1.0", |
---|
362 | subs.toArray(new SubstrateType[subs.size()]), |
---|
363 | elements.toArray(new ElementType[elements.size()]), |
---|
364 | attrs.toArray(new AttributeType[attrs.size()])); |
---|
365 | elements = new Vector<ElementType>(); |
---|
366 | subs = new Vector<SubstrateType>(); |
---|
367 | attrs = attrStack.pop(); |
---|
368 | } |
---|
369 | else if (qn.equals("elements")) { |
---|
370 | elements.add(new ElementType(comp, tb, seg, other)); |
---|
371 | comp = null; |
---|
372 | tb = null; |
---|
373 | seg = null; |
---|
374 | other = null; |
---|
375 | } |
---|
376 | else if (qn.equals("computer")) { |
---|
377 | comp = new ComputerType(name, |
---|
378 | cpus.toArray(new CpuType[cpus.size()]), |
---|
379 | oses.toArray(new OperatingsystemType[oses.size()]), |
---|
380 | software.toArray(new SoftwareType[software.size()]), |
---|
381 | storage.toArray(new StorageType[storage.size()]), |
---|
382 | interfaces.toArray( |
---|
383 | new InterfaceType[interfaces.size()]), |
---|
384 | attrs.toArray(new AttributeType[attrs.size()]), |
---|
385 | localnames.toArray(new String[localnames.size()]), |
---|
386 | status, |
---|
387 | services.toArray(new ServiceType[services.size()]), |
---|
388 | operations.toArray(new String[operations.size()]) |
---|
389 | ); |
---|
390 | name = nameStack.pop(); |
---|
391 | cpus = new Vector<CpuType>(); |
---|
392 | oses = new Vector<OperatingsystemType>(); |
---|
393 | software = new Vector<SoftwareType>(); |
---|
394 | storage = new Vector<StorageType>(); |
---|
395 | interfaces = new Vector<InterfaceType>(); |
---|
396 | attrs = attrStack.pop(); |
---|
397 | localnames = new Vector<String>(); |
---|
398 | status = statusStack.pop(); |
---|
399 | services = new Vector<ServiceType>(); |
---|
400 | operations = new Vector<String>(); |
---|
401 | collectLocalnames = false; |
---|
402 | } |
---|
403 | else if (qn.equals("cpu")) { |
---|
404 | cpus.add(new CpuType(type, |
---|
405 | attrs.toArray(new AttributeType[attrs.size()]), ncpus)); |
---|
406 | type = null; |
---|
407 | attrs = attrStack.pop(); |
---|
408 | ncpus = 1; |
---|
409 | } |
---|
410 | else if (qn.equals("type")) { type = new String(c).trim(); } |
---|
411 | else if (qn.equals("os")) { |
---|
412 | oses.add(new OperatingsystemType(name, version, |
---|
413 | distribution, distributionversion, |
---|
414 | attrs.toArray(new AttributeType[attrs.size()]))); |
---|
415 | name = nameStack.pop(); |
---|
416 | version = distribution = distributionversion = null; |
---|
417 | attrs = attrStack.pop(); |
---|
418 | } |
---|
419 | else if ( qn.equals("version")) { version = new String(c).trim(); } |
---|
420 | else if ( qn.equals("distribution")) { |
---|
421 | distribution = new String(c).trim(); |
---|
422 | } |
---|
423 | else if ( qn.equals("distributionversion")) { |
---|
424 | distributionversion = new String(c).trim(); |
---|
425 | } |
---|
426 | else if (qn.equals("software")) { |
---|
427 | software.add(new SoftwareType(location, install, |
---|
428 | attrs.toArray(new AttributeType[attrs.size()]))); |
---|
429 | location = install = null; |
---|
430 | attrs = attrStack.pop(); |
---|
431 | } |
---|
432 | else if ( qn.equals("location")) { |
---|
433 | location = new String(c).trim(); |
---|
434 | } |
---|
435 | else if ( qn.equals("install")) { install = new String(c).trim(); } |
---|
436 | else if (qn.equals("storage")) { |
---|
437 | storage.add(new StorageType(amount, persistence, |
---|
438 | attrs.toArray(new AttributeType[attrs.size()]))); |
---|
439 | amount = 0.0; |
---|
440 | persistence = null; |
---|
441 | attrs = attrStack.pop(); |
---|
442 | } |
---|
443 | else if ( qn.equals("amount")) { |
---|
444 | amount = Double.valueOf(new String(c)); |
---|
445 | } |
---|
446 | else if ( qn.equals("persistence")) { |
---|
447 | persistence = PersistenceType.fromValue(new String(c)); |
---|
448 | } |
---|
449 | else if (qn.equals("interface")) { |
---|
450 | interfaces.add(new InterfaceType( |
---|
451 | ifsubs.toArray(new String[ifsubs.size()]), |
---|
452 | name, |
---|
453 | cap, lat, |
---|
454 | attrs.toArray(new AttributeType[attrs.size()]))); |
---|
455 | ifsubs = new Vector<String>(); |
---|
456 | name = nameStack.pop(); |
---|
457 | cap = null; |
---|
458 | lat = null; |
---|
459 | attrs = attrStack.pop(); |
---|
460 | } |
---|
461 | else if (qn.equals("substrate")) { |
---|
462 | ifsubs.add(new String(c).trim()); |
---|
463 | } |
---|
464 | else if (qn.equals("capacity")) { |
---|
465 | cap = new edu.isi.www.topdl.CapacityType(rate, kind); |
---|
466 | rate = 0.0; |
---|
467 | kind = null; |
---|
468 | } |
---|
469 | else if ( qn.equals("rate")) { |
---|
470 | rate = Double.valueOf(new String(c)); |
---|
471 | } |
---|
472 | else if ( qn.equals("kind")) { |
---|
473 | kind = edu.isi.www.topdl.KindType.fromValue(new String(c)); |
---|
474 | } |
---|
475 | else if (qn.equals("latency")) { |
---|
476 | lat = new LatencyType(time, kind); |
---|
477 | time = 0.0; |
---|
478 | kind = null; |
---|
479 | } |
---|
480 | else if ( qn.equals("time")) { |
---|
481 | time = Double.valueOf(new String(c)); |
---|
482 | } |
---|
483 | else if (qn.equals("testbed")) { |
---|
484 | tb = new TestbedType(uri, type, |
---|
485 | interfaces.toArray( |
---|
486 | new InterfaceType[interfaces.size()]), |
---|
487 | attrs.toArray(new AttributeType[attrs.size()]), |
---|
488 | localnames.toArray(new String[localnames.size()]), |
---|
489 | status, |
---|
490 | services.toArray(new ServiceType[services.size()]), |
---|
491 | operations.toArray(new String[operations.size()])); |
---|
492 | uri = type = null; |
---|
493 | interfaces = new Vector<InterfaceType>(); |
---|
494 | attrs = attrStack.pop(); |
---|
495 | localnames = new Vector<String>(); |
---|
496 | status = statusStack.pop(); |
---|
497 | services = new Vector<ServiceType>(); |
---|
498 | operations = new Vector<String>(); |
---|
499 | collectLocalnames = false; |
---|
500 | } |
---|
501 | else if (qn.equals("uri")) { |
---|
502 | if (inID) id_uri = new String(c).trim(); |
---|
503 | else uri = new String(c).trim(); |
---|
504 | } |
---|
505 | else if (qn.equals("segment")) { |
---|
506 | seg = new SegmentType(id, type, uri, |
---|
507 | interfaces.toArray( |
---|
508 | new InterfaceType[interfaces.size()]), |
---|
509 | attrs.toArray(new AttributeType[attrs.size()])); |
---|
510 | id = null; |
---|
511 | type = uri = null; |
---|
512 | interfaces = new Vector<InterfaceType>(); |
---|
513 | attrs = attrStack.pop(); |
---|
514 | } |
---|
515 | else if (qn.equals("id")) { |
---|
516 | id = new IDType(uuid, fedid, id_uri, localname, |
---|
517 | kerberosUsername); |
---|
518 | uuid = null; |
---|
519 | fedid = null; |
---|
520 | id_uri = null; |
---|
521 | localname = null; |
---|
522 | kerberosUsername = null; |
---|
523 | inID = false; |
---|
524 | } |
---|
525 | else if (qn.equals("uuid")) { |
---|
526 | uuid = new String(c).trim().getBytes(); |
---|
527 | } |
---|
528 | else if (qn.equals("fedid")) { |
---|
529 | fedid = new String(c).trim().getBytes(); |
---|
530 | } |
---|
531 | else if (qn.equals("localname")) { |
---|
532 | if (collectLocalnames) localnames.add(new String(c).trim()); |
---|
533 | else localname = new String(c).trim(); |
---|
534 | } |
---|
535 | else if (qn.equals("kerberosUsername")) { |
---|
536 | kerberosUsername = new String(c).trim(); |
---|
537 | } |
---|
538 | else if (qn.equals("description")) { |
---|
539 | description = new String(c).trim(); |
---|
540 | } |
---|
541 | else if (qn.equals("other")) { |
---|
542 | other = new OtherType( |
---|
543 | interfaces.toArray( |
---|
544 | new InterfaceType[interfaces.size()]), |
---|
545 | attrs.toArray(new AttributeType[attrs.size()])); |
---|
546 | interfaces = new Vector<InterfaceType>(); |
---|
547 | attrs = attrStack.pop(); |
---|
548 | } |
---|
549 | else if (qn.equals("substrates")) { |
---|
550 | subs.add(new SubstrateType(name, cap, lat, |
---|
551 | attrs.toArray(new AttributeType[attrs.size()]), |
---|
552 | localnames.toArray(new String[localnames.size()]), |
---|
553 | status, |
---|
554 | services.toArray(new ServiceType[services.size()]), |
---|
555 | operations.toArray(new String[operations.size()]) |
---|
556 | )); |
---|
557 | name = nameStack.pop(); |
---|
558 | cap = null; |
---|
559 | lat = null; |
---|
560 | attrs = attrStack.pop(); |
---|
561 | localnames = new Vector<String>(); |
---|
562 | status = statusStack.pop(); |
---|
563 | services = new Vector<ServiceType>(); |
---|
564 | operations = new Vector<String>(); |
---|
565 | collectLocalnames = false; |
---|
566 | } |
---|
567 | else if (qn.equals("attribute")) { |
---|
568 | if ( aname != null && aval != null ) { |
---|
569 | attrs.add(new AttributeType(aname, aval)); |
---|
570 | aname = aval = null; |
---|
571 | } |
---|
572 | else { aname = new String(c).trim(); } |
---|
573 | } |
---|
574 | else if ( qn.equals("value")) { aval = new String(c).trim(); } |
---|
575 | else if ( qn.equals("name")) { name = new String(c).trim(); } |
---|
576 | else if ( qn.equals("param") ) { |
---|
577 | serviceParams.add(new ServiceParamType(name, |
---|
578 | ServiceParamTypeType.fromString(type))); |
---|
579 | name = nameStack.pop(); |
---|
580 | type = null; |
---|
581 | } |
---|
582 | else if (qn.equals("service")) { |
---|
583 | services.add(new ServiceType( |
---|
584 | name, importers.toArray(new String[importers.size()]), |
---|
585 | serviceParams.toArray( |
---|
586 | new ServiceParamType[serviceParams.size()]), |
---|
587 | description, status)); |
---|
588 | name = nameStack.pop(); |
---|
589 | importers = new Vector<String>(); |
---|
590 | serviceParams = new Vector<ServiceParamType>(); |
---|
591 | description = null; |
---|
592 | status = statusStack.pop(); |
---|
593 | } |
---|
594 | |
---|
595 | // Always clear any accumulated characters |
---|
596 | c = new char[0]; |
---|
597 | } |
---|
598 | |
---|
599 | /** |
---|
600 | * Collect text. |
---|
601 | */ |
---|
602 | public void characters(char[] ch, int s, int l) { |
---|
603 | char[] nc = new char[c.length + l]; |
---|
604 | System.arraycopy(c, 0, nc, 0, c.length); |
---|
605 | System.arraycopy(ch, s, nc, c.length, l); |
---|
606 | c = nc; |
---|
607 | } |
---|
608 | /** |
---|
609 | * Return the parsed topology |
---|
610 | * @return the parsed topology |
---|
611 | */ |
---|
612 | public TopologyType getTopology() { return topo; } |
---|
613 | } |
---|
614 | |
---|
615 | /** |
---|
616 | * Main constructor. Parse the given stream assuming that the outermost |
---|
617 | * element is in topName (defaults to "experiment" if topName is null). If |
---|
618 | * debug is true, print extra debugging information to the standard error |
---|
619 | * stream. |
---|
620 | * @param s the InputStream to parse |
---|
621 | * @param topName a String with the outer element name |
---|
622 | * @param debug a boolean, true for extra debugging output |
---|
623 | * @throws IOException if the stream cannot be read |
---|
624 | * @throws SAXException if the parsing fails |
---|
625 | * @throws ParserConfigurationException if the parser creation fails |
---|
626 | */ |
---|
627 | public ParseTopdl(InputStream s, String topName, boolean debug) |
---|
628 | throws IOException, SAXException, ParserConfigurationException { |
---|
629 | h = new TopdlHandler(topName != null ? topName: "experiment", debug); |
---|
630 | |
---|
631 | xr = SAXParserFactory.newInstance().newSAXParser().getXMLReader(); |
---|
632 | xr.setContentHandler(h); |
---|
633 | xr.parse(new InputSource(s)); |
---|
634 | } |
---|
635 | |
---|
636 | /** |
---|
637 | * Equivalent to ParseTopdl(s, topName, false) |
---|
638 | * @param s the InputStream to parse |
---|
639 | * @param topName a String with the outer element name |
---|
640 | * @throws IOException if the stream cannot be read |
---|
641 | * @throws SAXException if the parsing fails |
---|
642 | * @throws ParserConfigurationException if the parser creation fails |
---|
643 | */ |
---|
644 | public ParseTopdl(InputStream s, String topName) |
---|
645 | throws IOException, SAXException, ParserConfigurationException { |
---|
646 | this(s, topName, false); |
---|
647 | } |
---|
648 | |
---|
649 | /** |
---|
650 | * Return the parsed topology |
---|
651 | * @return the parsed topology |
---|
652 | */ |
---|
653 | public TopologyType getTopology() { return h.getTopology(); } |
---|
654 | |
---|
655 | /** |
---|
656 | * Test code. Shouldn't really be called. |
---|
657 | */ |
---|
658 | static public void main(String args[]) { |
---|
659 | ParseTopdl p = null; |
---|
660 | |
---|
661 | System.out.println("Checking file: " + args[0]); |
---|
662 | try { |
---|
663 | p = new ParseTopdl(new FileInputStream(new File(args[0])), |
---|
664 | "experiment", false); |
---|
665 | System.out.println("Parse OK"); |
---|
666 | } |
---|
667 | catch (ParserConfigurationException e) { |
---|
668 | System.err.println("Parse failed: " + e); |
---|
669 | } |
---|
670 | catch (SAXException e) { |
---|
671 | System.err.println("Parse failed: " + e); |
---|
672 | } |
---|
673 | catch (IOException e) { |
---|
674 | System.err.println("Parse failed: " + e); |
---|
675 | } |
---|
676 | } |
---|
677 | } |
---|