omelementstreamwriter.java
来自「开源的axis2框架的源码。用于开发WEBSERVER」· Java 代码 · 共 237 行
JAVA
237 行
/* * Copyright 2004,2005 The Apache Software Foundation. * * Licensed 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.axis2.databinding.utils.writer;import org.apache.axiom.om.*;import javax.xml.stream.XMLStreamWriter;import javax.xml.stream.XMLStreamException;import javax.xml.namespace.NamespaceContext;import javax.activation.DataHandler;import java.util.Stack;import java.util.Map;import java.util.HashMap;public class OMElementStreamWriter implements XMLStreamWriter { // this is the om Element we are going to create private OMElement rootElement; private OMFactory omFactory; private OMElement currentOMElement; private Stack omElementStack; // this map contains the namespace key and OMNamespace private Map namespaceOMNamesapceMap; private int prefixNum; private OMStreamNamespaceContext omStreamNamespaceContext; public OMElementStreamWriter() { omFactory = OMAbstractFactory.getOMFactory(); omElementStack = new Stack(); currentOMElement = null; omStreamNamespaceContext = new OMStreamNamespaceContext(); namespaceOMNamesapceMap = new HashMap(); prefixNum = 0; } // serailizer must have finish serializing when we call this method. public OMElement getOMElement() throws XMLStreamException { if (!omElementStack.isEmpty()) { throw new XMLStreamException("This is an invalid Xml "); } return rootElement; } private OMNamespace getOMNamespace(String namespace, String prefix) throws XMLStreamException { OMNamespace omNamespace = null; if (namespace != null) { if (namespaceOMNamesapceMap.containsKey(namespace)) { omNamespace = (OMNamespace) namespaceOMNamesapceMap.get(namespace); } else { if (prefix == null) { prefix = "ns" + ++prefixNum; } else if (this.omStreamNamespaceContext.getNamespaceURI(prefix) != null) { throw new XMLStreamException("the prefix ==> " + prefix + " Already exists for namespace ==> " + namespace); } omNamespace = omFactory.createOMNamespace(namespace, prefix); this.omStreamNamespaceContext.registerNamespace(namespace, prefix); namespaceOMNamesapceMap.put(namespace, omNamespace); } } return omNamespace; } public void writeStartElement(String localName) throws XMLStreamException { writeStartElement(null, localName, null); } public void writeStartElement(String namespace, String localName) throws XMLStreamException { writeStartElement(null, localName, namespace); } public void writeStartElement(String prefix, String localName, String namespace) throws XMLStreamException { OMNamespace omNamespace = getOMNamespace(namespace, prefix); currentOMElement = omFactory.createOMElement(localName, omNamespace); if (!omElementStack.isEmpty()) { // we always keep the parent at the top of the stack OMElement parent = (OMElement) omElementStack.peek(); parent.addChild(currentOMElement); } else { // i.e this must be an start root element rootElement = currentOMElement; } // set this as the top element omElementStack.push(currentOMElement); } public void writeEmptyElement(String namespaceURI, String localName) throws XMLStreamException { writeEmptyElement(null, localName, namespaceURI); } public void writeEmptyElement(String prefix, String localName, String namespaceURI) throws XMLStreamException { writeStartElement(prefix, localName, namespaceURI); writeEndElement(); } public void writeEmptyElement(String localName) throws XMLStreamException { writeEmptyElement(null, localName, null); } public void writeEndElement() throws XMLStreamException { omElementStack.pop(); } public void writeEndDocument() throws XMLStreamException { // nothing to do } public void close() throws XMLStreamException { // nothing to do } public void flush() throws XMLStreamException { // nothing to do } public void setDataHandler(DataHandler dataHandler){ OMText omText = omFactory.createOMText(dataHandler,true); currentOMElement.addChild(omText); } public void writeAttribute(String attributeName, String attributeValue) throws XMLStreamException { writeAttribute(null, null, attributeName, attributeValue); } public void writeAttribute(String prefix, String namespace, String attributeName, String attributeValue) throws XMLStreamException { currentOMElement.addAttribute(attributeName, attributeValue, getOMNamespace(namespace, prefix)); } public void writeAttribute(String namespace, String attributeName, String attributeValue) throws XMLStreamException { writeAttribute(null, namespace, attributeName, attributeValue); } public void writeNamespace(String prefix, String namespaceURI) throws XMLStreamException { if (namespaceURI != null) { OMNamespace omNamespace = getOMNamespace(namespaceURI, prefix); currentOMElement.declareNamespace(omNamespace); } } public void writeDefaultNamespace(String namespace) throws XMLStreamException { rootElement.declareDefaultNamespace(namespace); getOMNamespace(namespace, ""); } public void writeComment(String string) throws XMLStreamException { omFactory.createOMComment(currentOMElement,string); } public void writeProcessingInstruction(String string) throws XMLStreamException { throw new UnsupportedOperationException("this method has not yet been implemented"); } public void writeProcessingInstruction(String string, String string1) throws XMLStreamException { throw new UnsupportedOperationException("this method has not yet been implemented"); } public void writeCData(String string) throws XMLStreamException { throw new UnsupportedOperationException("this method has not yet been implemented"); } public void writeDTD(String string) throws XMLStreamException { throw new UnsupportedOperationException("this method has not yet been implemented"); } public void writeEntityRef(String string) throws XMLStreamException { throw new UnsupportedOperationException("this method has not yet been implemented"); } public void writeStartDocument() throws XMLStreamException { // nothing to do } public void writeStartDocument(String string) throws XMLStreamException { // nothing to do } public void writeStartDocument(String string, String string1) throws XMLStreamException { // nothing to do } public void writeCharacters(String string) throws XMLStreamException { currentOMElement.setText(string); } public void writeCharacters(char[] chars, int i, int i1) throws XMLStreamException { writeCharacters(new String(chars, i, i1)); } public String getPrefix(String namespace) throws XMLStreamException { return this.omStreamNamespaceContext.getPrefix(namespace); } public void setPrefix(String prefix, String uri) throws XMLStreamException { // this method will add the namespace correctly. getOMNamespace(uri, prefix); } public void setDefaultNamespace(String namespace) throws XMLStreamException { rootElement.declareDefaultNamespace(namespace); getOMNamespace(namespace,""); } public void setNamespaceContext(NamespaceContext namespaceContext) throws XMLStreamException { throw new UnsupportedOperationException("this method has not yet been implemented"); } public NamespaceContext getNamespaceContext() { return this.omStreamNamespaceContext; } public Object getProperty(String string) throws IllegalArgumentException { throw new UnsupportedOperationException("this method has not yet been implemented"); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?