Package org.eclipse.persistence.internal.oxm.record

Source Code of org.eclipse.persistence.internal.oxm.record.DOMReader$IndexedAttributeList

/*******************************************************************************
* Copyright (c) 1998, 2008 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0
* which accompanies this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
*     Oracle - initial API and implementation from Oracle TopLink
******************************************************************************/
package org.eclipse.persistence.internal.oxm.record;

import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.Stack;

import org.eclipse.persistence.internal.security.PrivilegedAccessHelper;
import org.eclipse.persistence.internal.sessions.AbstractSession;
import org.eclipse.persistence.oxm.XMLConstants;
import org.eclipse.persistence.oxm.XMLLogin;
import org.eclipse.persistence.oxm.documentpreservation.DocumentPreservationPolicy;
import org.eclipse.persistence.oxm.mappings.XMLMapping;

import org.w3c.dom.Attr;
import org.w3c.dom.CDATASection;
import org.w3c.dom.Comment;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.NamedNodeMap;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.w3c.dom.Text;
import org.xml.sax.ContentHandler;
import org.xml.sax.DTDHandler;
import org.xml.sax.EntityResolver;
import org.xml.sax.ErrorHandler;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;
import org.xml.sax.SAXNotRecognizedException;
import org.xml.sax.SAXNotSupportedException;
import org.xml.sax.ext.LexicalHandler;
import org.xml.sax.ext.Locator2;

/**
*  INTERNAL:
<p><b>Purpose:</b> An implementation of XMLReader for parsing DOM Nodes into SAX events.
<p><b>Responsibilities:</b><ul>
<li>Walk the DOM tree and report sax events to the provided content handler</li>
<li>Report lexical events to the lexical handler if it's provided</li>
<li>Listen for callbacks from the Mapping-Level framework to handle caching nodes for document preservation</li>
</ul>
*/
public class DOMReader extends XMLReader {
    ContentHandler contentHandler;
    LexicalHandler lexicalHandler;
    private Node currentNode;
    private DocumentPreservationPolicy docPresPolicy;

    public boolean getFeature (String name) throws SAXNotRecognizedException, SAXNotSupportedException {
        return false;
    }
   
    public void setFeature (String name, boolean value) throws SAXNotRecognizedException, SAXNotSupportedException {}
   
    public Object getProperty (String name) throws SAXNotRecognizedException, SAXNotSupportedException {
        return null;
    }

    public void setProperty (String name, Object valuethrows SAXNotRecognizedException, SAXNotSupportedException {
        if(name.equals("http://xml.org/sax/properties/lexical-handler")) {
            lexicalHandler = (LexicalHandler)value;
        }
    }

    public void setEntityResolver (EntityResolver resolver) {}

    public EntityResolver getEntityResolver () {
        return null;
    }

    public void setDTDHandler (DTDHandler handler) {}

    public DTDHandler getDTDHandler () {
        return null;
    }

    public void setContentHandler (ContentHandler handler) {
        this.contentHandler = handler;
    }

    public ContentHandler getContentHandler () {
        return this.contentHandler;
    }

    public void setErrorHandler (ErrorHandler handler) {}

    public ErrorHandler getErrorHandler () {
        return null;
    }

    public void parse(InputSource input) {}
    public void parse(String systemId) {}
    public void parse (Node node) throws SAXException {
        if(getContentHandler() == null) {
            return;
        }
        Element rootNode = null;
        if(node.getNodeType() == Node.DOCUMENT_NODE) {
            rootNode = ((Document)node).getDocumentElement();
        else {
            rootNode = (Element)node;
        }
        processParentNamespaces(rootNode);
        startDocument();
        setupLocator(rootNode.getOwnerDocument());
        reportElementEvents(rootNode);
        endDocument();
    }

    /**
     * Process namespace declarations on parent elements if not the root.
     * For each parent node from current to root push each onto a stack,
     * then pop each off, calling startPrefixMapping for each XMLNS
     * attribute.  Using a stack ensures that the parent nodes are
     * processed top down.
     *
     * @param element
     */
    protected void processParentNamespaces(Element element) throws SAXException {
        Node parent = element.getParentNode();
        // If we're already at the root, do nothing
        if (parent != null && parent.getNodeType() == Node.DOCUMENT_NODE) {
            return;
        }
        // Add each parent node up to root to the stack
        Stack<Node> parentElements = new Stack();
        while (parent != null && parent.getNodeType() != Node.DOCUMENT_NODE) {
            parentElements.push(parent);
            parent = parent.getParentNode();
        }       
        // Pop off each node and call startPrefixMapping for each XMLNS attribute
        for (Iterator stackIt = parentElements.iterator(); stackIt.hasNext(); ) {
            NamedNodeMap attrs = parentElements.pop().getAttributes();
            if (attrs != null) {
                int length = attrs.getLength();
                for (int i=0; i < length; i++) {
                    Attr next = (Attr)attrs.item(i);
                    String attrPrefix = next.getPrefix();
                    if (attrPrefix != null && attrPrefix.equals(XMLConstants.XMLNS)) {
                        getContentHandler().startPrefixMapping(next.getLocalName(), next.getValue());
                    }
                }
            }
        }
    }
   
    protected void reportElementEvents(Element elem) throws SAXException {
        this.currentNode = elem;
        IndexedAttributeList attributes = buildAttributeList(elem);
        // Handle null local name
        String qname;
        String lname = elem.getLocalName();
        if (lname == null) {
            // If local name is null, use the node name
            lname = elem.getNodeName();
            qname = lname;
        } else {
            qname = getQName(elem);
        }
        getContentHandler().startElement(elem.getNamespaceURI(), lname, qname, attributes);
        handleChildNodes(elem.getChildNodes());
        endPrefixMappings(elem);
        getContentHandler().endElement(elem.getNamespaceURI(), lname, qname);
    }
    protected IndexedAttributeList buildAttributeList(Element elem) throws SAXException {
        IndexedAttributeList attributes = new IndexedAttributeList();
        NamedNodeMap attrs = elem.getAttributes();
        int length = attrs.getLength();
        for (int i = 0; i < length; i++) {
            Attr next = (Attr)attrs.item(i);
            String attrPrefix = next.getPrefix();
            if(attrPrefix != null && attrPrefix.equals(XMLConstants.XMLNS)) {
                getContentHandler().startPrefixMapping(next.getLocalName(), next.getValue());
                // Handle XMLNS prefixed attributes
                handleXMLNSPrefixedAttribute(elem, next);
            } else if(attrPrefix == null) {
                String name = next.getLocalName();
                if(name == null) {
                    name = next.getNodeName();
                }
                if(name != null && name.equals("xmlns")) {
                    getContentHandler().startPrefixMapping("", next.getValue());
                }
            }
            attributes.addAttribute(next);
        }
        return attributes;
    }
   
    protected void endPrefixMappings(Element elem) throws SAXException {
        NamedNodeMap attrs = elem.getAttributes();
        int numOfAtts = attrs.getLength();
        for(int i = 0; i < numOfAtts; i++) {
            Attr next = (Attr)attrs.item(i);
            String attrPrefix = next.getPrefix();
            if (attrPrefix != null && attrPrefix.equals(XMLConstants.XMLNS)) {
                getContentHandler().endPrefixMapping(next.getLocalName());
            } else if(attrPrefix == null) {
                String name = next.getLocalName();
                if(name == null) {
                    name = next.getNodeName();
                }
                if(name != null) {
                    getContentHandler().endPrefixMapping("");
                }
            }
        }
    }
   
    protected String getQName(Element elem) throws SAXException {
        if (elem.getLocalName() == null) {
            return elem.getNodeName();
        }
        String qname = "";
        String prefix = elem.getPrefix();
        if (prefix != null && !(prefix.equals(""))) {
            qname = prefix + ":" + elem.getLocalName();
            handlePrefixedAttribute(elem);
        } else {
            qname = elem.getLocalName();
        }
        return qname;
    }
   
    /**
     * Handle XMLNS prefixed attribute.
     *
     * @param prefix
     * @param localName
     * @param value
     */
    protected void handleXMLNSPrefixedAttribute(Element elem, Attr attr) {
        // DO NOTHING
    }

    /**
     * Handle prefixed attribute - may need to declare the namespace
     * URI locally.
     *
     */
    protected void handlePrefixedAttribute(Element elem) throws SAXException {
        // DO NOTHING
    }

    protected void handleChildNodes(NodeList children) throws SAXException {
        Node nextChild = null;
        if(children.getLength() > 0) {
            nextChild = children.item(0);
        }
        while(nextChild != null) {
            if(nextChild.getNodeType() == Node.TEXT_NODE) {
                char[] value = ((Text)nextChild).getNodeValue().toCharArray();
                getContentHandler().characters(value, 0, value.length);
            } else if(nextChild.getNodeType() == Node.COMMENT_NODE) {
                char[] value = ((Comment)nextChild).getNodeValue().toCharArray();
                if (lexicalHandler != null) {
            lexicalHandler.comment(value, 0, value.length);
                }
            } else if(nextChild.getNodeType() == Node.ELEMENT_NODE) {
                Element childElement = (Element)nextChild;
                reportElementEvents(childElement);
            } else if(nextChild.getNodeType() == Node.CDATA_SECTION_NODE) {
                if(lexicalHandler != null) {
                    lexicalHandler.startCDATA();
                }
                char[] value = ((CDATASection)nextChild).getData().toCharArray();
                getContentHandler().characters(value, 0, value.length);
                if(lexicalHandler != null) {
                    lexicalHandler.endCDATA();
                }
            }
            nextChild = nextChild.getNextSibling();
        }
    }
    /**
     * Trigger an endDocument event on the contenthandler.
     */
    protected void endDocument() throws SAXException {
        getContentHandler().endDocument();
    }

    /**
     * Trigger a startDocument event on the contenthandler.
     */
    protected void startDocument() throws SAXException {
        getContentHandler().startDocument();
    }
    /**
     * A toplink specific callback into the Reader. This allows Objects to be
     * associated with the XML Nodes they came from.
     */
    public void newObjectEvent(Object object, Object parent, XMLMapping selfRecordMapping) {
        docPresPolicy.addObjectToCache(object, currentNode, selfRecordMapping);
    }

    public Object getCurrentObject(AbstractSession session, XMLMapping selfRecordMapping) {
        //if session == null then this is a marshal of a non-root
        //if docPres policy is null, then we never unmarshalled anything, and can
        //safely return null;
        if(session == null && docPresPolicy == null) {
            return null;
        }
        if(docPresPolicy == null) {
            XMLLogin login = (XMLLogin)session.getDatasourceLogin();
            docPresPolicy = login.getDocumentPreservationPolicy();
        }
        return docPresPolicy.getObjectForNode(currentNode, selfRecordMapping);
    }

    public DocumentPreservationPolicy getDocPresPolicy() {
        return docPresPolicy;
    }
   
    public void setDocPresPolicy(DocumentPreservationPolicy policy) {
        docPresPolicy = policy;
    }
   
    protected void setupLocator(Document doc) {
        LocatorImpl locator = new LocatorImpl();
        try {
            Method getEncoding = PrivilegedAccessHelper.getMethod(doc.getClass(), "getXmlEncoding", new Class[]{}, true);
            Method getVersion = PrivilegedAccessHelper.getMethod(doc.getClass(), "getXmlVersion", new Class[]{}, true);
           
            String encoding = (String)PrivilegedAccessHelper.invokeMethod(getEncoding, doc, new Object[]{});
            String version = (String)PrivilegedAccessHelper.invokeMethod(getVersion, doc, new Object[]{});
           
            locator.setEncoding(encoding);
            locator.setXMLVersion(version);
        } catch(Exception ex) {
            //if unable to invoke these methods, just return and don't invoke
            return;
        }
        this.contentHandler.setDocumentLocator(locator);
    }
    /**
     * Implementation of Attributes - used to pass along a given node's attributes
     * to the startElement method of the reader's content handler.
     */
    protected class IndexedAttributeList implements org.xml.sax.Attributes {
        private ArrayList<Attr> attrs;
       
        public IndexedAttributeList() {
            attrs = new ArrayList();
        }
       
        public void addAttribute(Attr attribute) {
            attrs.add(attribute);
        }
       
        public String getQName(int index) {
            try {
                Attr item = attrs.get(index);
                if (item.getName() != null) {
                    return item.getName();
                }
                return "";
            } catch (IndexOutOfBoundsException iobe) {
                return null;
            }
        }
       
        public String getType(String namespaceUri, String localName) {
            return "CDATA";
        }
       
        public String getType(int index) {
            return "CDATA";
        }
       
        public String getType(String qname) {
            return "CDATA";
        }
       
        public int getIndex(String qname) {
            Attr item;
            int size = attrs.size();
            for (int i=0; i<size; i++) {
                item = attrs.get(i);
                if (item.getName().equals(qname)) {
                    return i;
                }
            }
            return -1;
        }
       
        public int getIndex(String uri, String localName) {
            Attr item;
            int size = attrs.size();
            for (int i=0; i<size; i++) {
                item = attrs.get(i);
                try {
                    if (item.getNamespaceURI().equals(uri) && item.getLocalName().equals(localName)) {
                        return i;
                    }
                } catch (Exception x) {}
            }
            return -1;
        }
       
        public int getLength() {
            return attrs.size();
        }
       
        public String getLocalName(int index) {
            try {
                Attr item = attrs.get(index);
                if (item.getLocalName() != null) {
                    return item.getLocalName();
                }
                return "";
            } catch (IndexOutOfBoundsException iobe) {
                return null;
            }
        }       

        public String getURI(int index) {
            return attrs.get(index).getNamespaceURI();
        }
       
        public String getValue(int index) {
            return (attrs.get(index)).getValue();
        }
       
        public String getValue(String qname) {
            Attr item;
            int size = attrs.size();
            for (int i=0; i<size; i++) {
                item = attrs.get(i);
                if (item.getName().equals(qname)) {
                    return item.getValue();
                }
            }
            return null;
        }

        public String getValue(String uri, String localName) {
            Attr item;
            int size = attrs.size();
            for (int i=0; i<size; i++) {
                item = attrs.get(i);
                if (item != null) {
                    String itemNS = item.getNamespaceURI()
                    // Need to handle null/empty URI
                    if (item.getNamespaceURI() == null) {
                        itemNS = "";
                    }
                    if ((itemNS.equals(uri)) && (item.getLocalName() != null && item.getLocalName().equals(localName))) {
                        return item.getValue();
                    }
                }
            }
            return null;
        }
    }
   
    protected class LocatorImpl implements Locator2 {
        private String encoding;
        private String version;
       
        public LocatorImpl() {
            encoding = "UTF-8";
            version = "1.0";
        }
        public String getEncoding() {
            return encoding;
        }
       
        public int getColumnNumber() {
            //not supported here
            return 0;
        }
       
        public String getSystemId() {
            return "";
        }
       
        public String getPublicId() {
            return "";
        }
       
        public String getXMLVersion() {
            return version;
        }
       
        public int getLineNumber() {
            //not supported
            return 0;
        }
       
        protected void setEncoding(String enc) {
            this.encoding = enc;
        }
       
        protected void setXMLVersion(String xmlVersion) {
            this.version = xmlVersion;
        }
    }
}
TOP

Related Classes of org.eclipse.persistence.internal.oxm.record.DOMReader$IndexedAttributeList

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.