summaryrefslogtreecommitdiffstats
path: root/tags/java/sca/1.5.1/modules/contribution-xml/src/main/java/org/apache/tuscany/sca/contribution/processor/xml/XMLEventsStreamReader.java
blob: 351929d8a18fa3e15e9e654d78fbb349e91c94d8 (plain)
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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
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
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 * 
 *   http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.    
 */
package org.apache.tuscany.sca.contribution.processor.xml;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Stack;

import java.util.Iterator;

import javax.xml.namespace.NamespaceContext;
import javax.xml.namespace.QName;
import javax.xml.stream.Location;
import javax.xml.stream.XMLStreamException;
import javax.xml.stream.XMLStreamReader;
import javax.xml.stream.events.Attribute;
import javax.xml.stream.events.Namespace;
import javax.xml.stream.events.ProcessingInstruction;
import javax.xml.stream.events.XMLEvent;


public class XMLEventsStreamReader implements XMLStreamReader {

	@SuppressWarnings("unused")
	private ArrayList<XMLEvent> events = null;
	@SuppressWarnings("unchecked")
	private HashMap<String, NamespaceContext> eventContext = null;

	private int state;
	private java.util.Iterator<XMLEvent> iterator;
	private XMLEvent current;

	@SuppressWarnings("unchecked")
	public XMLEventsStreamReader(List<XMLEvent> events,Map<String, NamespaceContext> map) {
		this.events = (ArrayList<XMLEvent>) events;
		this.eventContext = (HashMap<String, NamespaceContext>) map;
		this.iterator = events.iterator();
		this.current = iterator.next();
		this.state = current.getEventType();
	}

	public void close() throws XMLStreamException {
		this.events = null;
		this.eventContext = null;
		this.iterator = null;
		this.current = null;
	}

	private void checkElementState() {
		if (getEventType() != START_ELEMENT && getEventType() != END_ELEMENT) {
			throw new IllegalStateException();
		}
	}

	@SuppressWarnings("unchecked")
	public int getAttributeCount() {
		checkElementState();
		int count = 0;
		Iterator<Attribute> iterator = current.asStartElement().getAttributes();
		while (iterator.hasNext()) {
			count++;
			iterator.next();
		}
		return count;
	}

	/*
	 * Custom method to get attribute from the specified index
	 */
	@SuppressWarnings("unchecked")
	private Attribute getAttribute(int index) {
		checkElementState();
		int count = 0;
		Attribute attribute = null;
		Iterator<Attribute> iterator = current.asStartElement().getAttributes();
		while (iterator.hasNext()) {
			count++;
			if (count == index) {
				attribute = iterator.next();
			} else {
				iterator.next();
			}
		}
		return attribute;
	}

	
	public String getAttributeLocalName(int index) {
		checkElementState();
		return getAttribute(index).getName().getLocalPart();
	}

	public QName getAttributeName(int index) {
		checkElementState();
		return getAttribute(index).getName();
	}

	public String getAttributeNamespace(int index) {
		checkElementState();
		return getAttributeName(index).getNamespaceURI();
	}

	public String getAttributePrefix(int index) {
		checkElementState();
		return getAttributeName(index).getPrefix();
	}

	public String getAttributeType(int index) {
		checkElementState();
		return getAttribute(index).getDTDType();
	}

	public String getAttributeValue(int index) {
		checkElementState();
		return getAttribute(index).getValue();
	}

	@SuppressWarnings("unchecked")
	public String getAttributeValue(String namespaceURI, String localName) {
		checkElementState();
		Iterator<Attribute> iterator = current.asStartElement().getAttributes();
		Attribute attribute;
		while (iterator.hasNext()) {
			attribute = iterator.next();
			if (attribute.getName().getNamespaceURI().equalsIgnoreCase(
					namespaceURI)
					&& attribute.getName().getLocalPart().equalsIgnoreCase(
							localName)) {
				return attribute.getValue();
			}
		}
		return null;

	}

	public String getCharacterEncodingScheme() {
		return "UTF-8";
	}

	public String getElementText() throws XMLStreamException {
		checkElementState();
		int eventType = getEventType();
		String elementText = null;

		if (eventType == START_ELEMENT) {
			elementText = current.asStartElement().getName().getLocalPart();
		} else if (eventType == END_ELEMENT) {
			elementText = current.asEndElement().getName().getLocalPart();
		}
		return elementText;
	}

	public String getEncoding() {
		return "UTF-8";
	}

	public int getEventType() {
		return state;
	}

	public String getLocalName() {
		checkElementState();
		switch (current.getEventType()) {
		case START_ELEMENT:
			return current.asStartElement().getName().getLocalPart();
		case END_ELEMENT:
			return current.asEndElement().getName().getLocalPart();
		}
		return null;
	}

	public Location getLocation() {
		return current.getLocation();
	}

	public QName getName() {
		checkElementState();
		switch (current.getEventType()) {
		case START_ELEMENT:
			return current.asStartElement().getName();
		case END_ELEMENT:
			return current.asEndElement().getName();
		}
		return null;
	}

	public NamespaceContext getNamespaceContext() {
		checkElementState();
		//return new TuscanyNamespaceContext(eventContext.get(getLocalName()));
		return eventContext.get(getLocalName());
	}

	@SuppressWarnings("unchecked")
	public int getNamespaceCount() {
		int count = 0;
		Iterator<Namespace> itr = current.asStartElement().getNamespaces();
		while (itr.hasNext()) {
			count++;
			itr.next();
		}
		return count;
	}

	@SuppressWarnings("unchecked")
	public String getNamespacePrefix(int index) {
		Iterator<Namespace> itr = current.asStartElement().getNamespaces();
		int level = 0;
		Namespace ns = null;
		while (itr.hasNext()) {
			ns = itr.next();
			if (level == index) {
				return ns.getPrefix();
			}
			level++;
		}
		return null;
	}

	public String getNamespaceURI() {
		checkElementState();
		switch (current.getEventType()) {
		case START_ELEMENT:
			return current.asStartElement().getName().getNamespaceURI();
		case END_ELEMENT:
			return current.asEndElement().getName().getNamespaceURI();
		}
		return null;
	}

	public String getNamespaceURI(String prefix) {
		return getNamespaceContext().getNamespaceURI(prefix);
	}

	@SuppressWarnings("unchecked")
	public String getNamespaceURI(int index) {
		Iterator<Namespace> itr = current.asStartElement().getNamespaces();
		int level = 0;
		Namespace ns = null;
		while (itr.hasNext()) {
			ns = itr.next();
			if (level == index) {
				return ns.getNamespaceURI();
			}
			level++;
		}
		return null;
	}

	public String getPIData() {
		if (current.isProcessingInstruction()) {
			ProcessingInstruction pi = (ProcessingInstruction) current;
			return pi.getData();
		} else {
			throw new IllegalStateException(current.toString());
		}
	}

	public String getPITarget() {
		if (current.isProcessingInstruction()) {
			ProcessingInstruction pi = (ProcessingInstruction) current;
			return pi.getTarget();
		} else {
			throw new IllegalStateException(current.toString());
		}
	}

	public String getPrefix() {
		checkElementState();
		if (current.isStartElement()) {
			return current.asStartElement().getName().getPrefix();
		}
		return null;
	}

	/*
	 * FIXME: Implementation pending... 
	 * 
	 * @see (non-Javadoc)
	 * javax.xml.stream.util.StreamReaderDelegate#getProperty(java.lang.String)
	 */
	public Object getProperty(String name) throws IllegalArgumentException {
		// TODO Auto-generated method stub

		return null;
	}

	public String getText() {
		if (current.isCharacters()) {
			return current.asCharacters().getData();
		} else {
			throw new IllegalStateException(current.toString());
		}
	}

	public char[] getTextCharacters() {
		if (current.isCharacters()) {
			return current.asCharacters().getData().toCharArray();
		} else {
			throw new IllegalStateException(current.toString());
		}
	}

	/*
	 * FIXME: Implementation pending... (non-Javadoc)
	 * 
	 * @see javax.xml.stream.util.StreamReaderDelegate#getTextCharacters(int,
	 * char[], int, int)
	 */
	public int getTextCharacters(int sourceStart, char[] target,
			int targetStart, int length) throws XMLStreamException {
		// TODO Auto-generated method stub
		return 0;
	}

	/*
	 * FIXME:Implementaion can be improved (non-Javadoc)
	 * 
	 * @see javax.xml.stream.util.StreamReaderDelegate#getTextLength()
	 */
	public int getTextLength() {
		if (current.isCharacters()) {
			return current.asCharacters().getData().length();
		} else {
			throw new IllegalStateException(current.toString());
		}
	}

	/*
	 * FIXME: Implementation pending... (non-Javadoc)
	 * 
	 * @see javax.xml.stream.util.StreamReaderDelegate#getTextStart()
	 */
	public int getTextStart() {
		// TODO Auto-generated method stub
		return 0;
	}

	/*
	 * FIXME: Implementation pending... (non-Javadoc)
	 * 
	 * @see javax.xml.stream.util.StreamReaderDelegate#getTextStart()
	 */
	public String getVersion() {
		// TODO Auto-generated method stub

		return null;
	}

	public boolean hasName() {
		return false;
	}

	public boolean hasNext() throws XMLStreamException {
		return iterator.hasNext() || state != END_DOCUMENT;

	}

	public boolean hasText() {
		// TODO Auto-generated method stub
		return false;
	}

	/*
	 * FIXME: Implementation pending... (non-Javadoc)
	 * 
	 * @see javax.xml.stream.util.StreamReaderDelegate#getTextStart()
	 */
	public boolean isAttributeSpecified(int index) {
		// TODO Auto-generated method stub
		return false;
	}

	public boolean isCharacters() {
		return current.isCharacters();
	}

	public boolean isEndElement() {
		return current.isEndElement();
	}

	public boolean isStandalone() {
		// TODO Auto-generated method stub
		return false;
	}

	public boolean isStartElement() {
		return current.isStartElement();
	}

	public boolean isWhiteSpace() {
		// TODO Auto-generated method stub
		return false;
	}

	public int next() throws XMLStreamException {
		if (!hasNext()) {
			throw new IllegalStateException("No more events");
		}
		if (!iterator.hasNext()) {
			state = END_DOCUMENT;
			current = null;
			return state;
		}
		current = iterator.next();
		state = current.getEventType();
		return state;
	}

	public int nextTag() throws XMLStreamException {
		return iterator.next().getEventType();
	}

	public void require(int type, String namespaceURI, String localName)
			throws XMLStreamException {
		boolean require = false;
		String uri = getNamespaceURI();
		String name = getLocalName();
		if (state == type && namespaceURI.equals(uri) && localName.equals(name)) {
			require = true;
		}
		if (require != true) {
			throw new XMLStreamException();
		}
	}

	public boolean standaloneSet() {
		return false;
	}

}