📄 domlsparser.java
字号:
/* DomLSParser.java -- Copyright (C) 1999,2000,2001 Free Software Foundation, Inc.This file is part of GNU Classpath.GNU Classpath is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2, or (at your option)any later version.GNU Classpath is distributed in the hope that it will be useful, butWITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNUGeneral Public License for more details.You should have received a copy of the GNU General Public Licensealong with GNU Classpath; see the file COPYING. If not, write to theFree Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA02110-1301 USA.Linking this library statically or dynamically with other modules ismaking a combined work based on this library. Thus, the terms andconditions of the GNU General Public License cover the wholecombination.As a special exception, the copyright holders of this library give youpermission to link this library with independent modules to produce anexecutable, regardless of the license terms of these independentmodules, and to copy and distribute the resulting executable underterms of your choice, provided that you also meet, for each linkedindependent module, the terms and conditions of the license of thatmodule. An independent module is a module which is not derived fromor based on this library. If you modify this library, you may extendthis exception to your version of the library, but you are notobligated to do so. If you do not wish to do so, delete thisexception statement from your version. */package gnu.xml.dom.ls;import java.io.File;import java.io.InputStream;import java.io.IOException;import java.net.MalformedURLException;import java.net.URL;import java.util.Arrays;import java.util.List;import javax.xml.parsers.ParserConfigurationException;import javax.xml.parsers.SAXParser;import javax.xml.parsers.SAXParserFactory;import org.w3c.dom.Document;import org.w3c.dom.DOMConfiguration;import org.w3c.dom.DOMException;import org.w3c.dom.DOMStringList;import org.w3c.dom.Node;import org.w3c.dom.ls.DOMImplementationLS;import org.w3c.dom.ls.LSException;import org.w3c.dom.ls.LSInput;import org.w3c.dom.ls.LSParser;import org.w3c.dom.ls.LSParserFilter;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.SAXParseException;import org.xml.sax.XMLReader;import gnu.xml.dom.DomDocument;import gnu.xml.dom.DomDOMException;/** * Parser implementation for GNU DOM. * * @author <a href='mailto:dog@gnu.org'>Chris Burdess</a> */public class DomLSParser implements LSParser, DOMConfiguration, DOMStringList, ErrorHandler{ private static final List SUPPORTED_PARAMETERS = Arrays.asList(new String[] { "cdata-sections", "comments", "element-content-whitespace", "namespaces", "expand-entity-references", "coalescing", "validating", "xinclude-aware", "entity-resolver", "error-handler" }); private LSParserFilter filter; private final boolean async; private String schemaType; private SAXEventSink eventSink; private SAXParserFactory factory; private XMLReader reader; private boolean namespaceAware = true; private boolean ignoreWhitespace; private boolean expandEntityReferences; private boolean ignoreComments; private boolean coalescing; private boolean validating; private boolean xIncludeAware; private EntityResolver entityResolver; private ErrorHandler errorHandler; public DomLSParser(short mode, String schemaType) throws DOMException { switch (mode) { case DOMImplementationLS.MODE_ASYNCHRONOUS: async = true; break; case DOMImplementationLS.MODE_SYNCHRONOUS: async = false; break; default: throw new DomDOMException(DOMException.NOT_SUPPORTED_ERR); } // TODO schemaType this.schemaType = schemaType; factory = SAXParserFactory.newInstance(); } // -- LSParser -- public DOMConfiguration getDomConfig() { return this; } public LSParserFilter getFilter() { return filter; } public void setFilter(LSParserFilter filter) { this.filter = filter; } public boolean getAsync() { return async; } public boolean getBusy() { return eventSink != null; } public Document parse(LSInput input) throws DOMException, LSException { if (async) { return doParse(input); } else { synchronized (this) { return doParse(input); } } } public Document parseURI(String uri) throws DOMException, LSException { LSInput input = new DomLSInput(); input.setSystemId(uri); return parse(input); } public Node parseWithContext(LSInput input, Node context, short action) throws DOMException, LSException { Document doc = (context.getNodeType() == Node.DOCUMENT_NODE) ? (Document) context : context.getOwnerDocument(); input.setBaseURI(doc.getDocumentURI()); // TODO use namespaces defined on context node Document ret = parse(input); Node root = ret.getDocumentElement(); root = doc.adoptNode(root); switch (action) { case ACTION_APPEND_AS_CHILDREN: context.appendChild(root); break; case ACTION_REPLACE_CHILDREN: Node c1 = context.getFirstChild(); while (c1 != null) { Node next = c1.getNextSibling(); context.removeChild(c1); c1 = next; } context.appendChild(root); break; case ACTION_INSERT_BEFORE: Node p1 = context.getParentNode(); p1.insertBefore(root, context); break; case ACTION_INSERT_AFTER: Node p2 = context.getParentNode(); Node r1 = context.getNextSibling(); if (r1 == null) { p2.appendChild(root); } else { p2.insertBefore(root, r1); } break; case ACTION_REPLACE: Node p3 = context.getParentNode(); Node r2 = context.getNextSibling(); p3.removeChild(context); if (r2 == null) { p3.appendChild(root); } else { p3.insertBefore(root, r2); } break; } return root; } public void abort() { if (eventSink != null) { eventSink.interrupt(); } } private Document doParse(LSInput input) throws DOMException, LSException { // create event sink if (eventSink != null) { throw new LSException(LSException.PARSE_ERR, "parse in progress"); } InputSource source = getInputSource(input); eventSink = (filter == null) ? new SAXEventSink() : new FilteredSAXEventSink(filter); // configure sink eventSink.namespaceAware = namespaceAware; eventSink.ignoreWhitespace = ignoreWhitespace; eventSink.expandEntityReferences = expandEntityReferences; eventSink.ignoreComments = ignoreComments; eventSink.coalescing = coalescing; // get and configure reader XMLReader reader = getXMLReader(); try { reader.setContentHandler(eventSink); reader.setDTDHandler(eventSink); reader.setProperty("http://xml.org/sax/properties/lexical-handler", eventSink); reader.setProperty("http://xml.org/sax/properties/declaration-handler", eventSink); reader.setFeature("http://xml.org/sax/features/namespaces", namespaceAware); reader.setFeature("http://xml.org/sax/features/namespace-prefixes", true); reader.setFeature("http://xml.org/sax/features/validation", validating); try { reader.setFeature("http://xml.org/sax/features/use-attributes2", true); } catch (SAXNotRecognizedException e) { // ignore } try { reader.setFeature("http://xml.org/sax/features/external-general-entities",
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -