All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gargoylesoftware.htmlunit.html.HTMLParser Maven / Gradle / Ivy

There is a newer version: 2.70.0
Show newest version
/*
 * Copyright (c) 2002-2018 Gargoyle Software Inc.
 *
 * 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 com.gargoylesoftware.htmlunit.html;

import static com.gargoylesoftware.htmlunit.BrowserVersionFeatures.HTML_ATTRIBUTE_LOWER_CASE;
import static com.gargoylesoftware.htmlunit.BrowserVersionFeatures.HTML_COMMAND_TAG;
import static com.gargoylesoftware.htmlunit.BrowserVersionFeatures.HTML_ISINDEX_TAG;
import static com.gargoylesoftware.htmlunit.BrowserVersionFeatures.HTML_MAIN_TAG;
import static com.gargoylesoftware.htmlunit.BrowserVersionFeatures.KEYGEN_AS_SELECT;
import static com.gargoylesoftware.htmlunit.BrowserVersionFeatures.META_X_UA_COMPATIBLE;
import static com.gargoylesoftware.htmlunit.BrowserVersionFeatures.PAGE_WAIT_LOAD_BEFORE_BODY;

import java.io.IOException;
import java.io.InputStream;
import java.io.StringReader;
import java.lang.reflect.InvocationTargetException;
import java.net.URL;
import java.nio.charset.Charset;
import java.util.ArrayDeque;
import java.util.ArrayList;
import java.util.Deque;
import java.util.HashMap;
import java.util.List;
import java.util.Locale;
import java.util.Map;

import org.apache.commons.lang3.ArrayUtils;
import org.apache.commons.lang3.StringUtils;
import org.apache.xerces.parsers.AbstractSAXParser;
import org.apache.xerces.util.DefaultErrorHandler;
import org.apache.xerces.xni.Augmentations;
import org.apache.xerces.xni.QName;
import org.apache.xerces.xni.XMLAttributes;
import org.apache.xerces.xni.XNIException;
import org.apache.xerces.xni.parser.XMLInputSource;
import org.apache.xerces.xni.parser.XMLParseException;
import org.apache.xerces.xni.parser.XMLParserConfiguration;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.xml.sax.Attributes;
import org.xml.sax.ContentHandler;
import org.xml.sax.Locator;
import org.xml.sax.SAXException;
import org.xml.sax.ext.LexicalHandler;

import com.gargoylesoftware.htmlunit.BrowserVersion;
import com.gargoylesoftware.htmlunit.ObjectInstantiationException;
import com.gargoylesoftware.htmlunit.Page;
import com.gargoylesoftware.htmlunit.SgmlPage;
import com.gargoylesoftware.htmlunit.WebAssert;
import com.gargoylesoftware.htmlunit.WebClient;
import com.gargoylesoftware.htmlunit.WebResponse;
import com.gargoylesoftware.htmlunit.WebWindow;
import com.gargoylesoftware.htmlunit.javascript.host.html.HTMLBodyElement;
import com.gargoylesoftware.htmlunit.javascript.host.html.HTMLDocument;
import com.gargoylesoftware.htmlunit.svg.SvgElementFactory;

import net.sourceforge.htmlunit.cyberneko.HTMLConfiguration;
import net.sourceforge.htmlunit.cyberneko.HTMLElements;
import net.sourceforge.htmlunit.cyberneko.HTMLEventInfo;
import net.sourceforge.htmlunit.cyberneko.HTMLScanner;
import net.sourceforge.htmlunit.cyberneko.HTMLTagBalancer;
import net.sourceforge.htmlunit.cyberneko.HTMLTagBalancingListener;

/**
 * 

SAX parser implementation that uses the NekoHTML {@link net.sourceforge.htmlunit.cyberneko.HTMLConfiguration} * to parse HTML into a HtmlUnit-specific DOM (HU-DOM) tree.

* * @author Christian Sell * @author David K. Taylor * @author Chris Erskine * @author Ahmed Ashour * @author Marc Guillemot * @author Ethan Glasser-Camp * @author Sudhan Moghe * @author Ronald Brill * @author Frank Danek * @author Carsten Steul */ public final class HTMLParser { /** XHTML namespace. */ public static final String XHTML_NAMESPACE = "http://www.w3.org/1999/xhtml"; /** SVG namespace. */ public static final String SVG_NAMESPACE = "http://www.w3.org/2000/svg"; /** * The SVG factory. */ public static final SvgElementFactory SVG_FACTORY = new SvgElementFactory(); private static final Map ELEMENT_FACTORIES = new HashMap<>(); static { ELEMENT_FACTORIES.put(HtmlInput.TAG_NAME, InputElementFactory.instance); final DefaultElementFactory defaultElementFactory = new DefaultElementFactory(); for (final String tagName : DefaultElementFactory.SUPPORTED_TAGS_) { ELEMENT_FACTORIES.put(tagName, defaultElementFactory); } } /** * You should never need to create one of these! */ private HTMLParser() { // Empty. } /** * Parses the HTML content from the given string into an object tree representation. * * @param parent the parent for the new nodes * @param source the (X)HTML to be parsed * @throws SAXException if a SAX error occurs * @throws IOException if an IO error occurs */ public static void parseFragment(final DomNode parent, final String source) throws SAXException, IOException { parseFragment(parent, parent, source); } /** * Parses the HTML content from the given string into an object tree representation. * * @param parent where the new parsed nodes will be added to * @param context the context to build the fragment context stack * @param source the (X)HTML to be parsed * @throws SAXException if a SAX error occurs * @throws IOException if an IO error occurs */ public static void parseFragment(final DomNode parent, final DomNode context, final String source) throws SAXException, IOException { final Page page = parent.getPage(); if (!(page instanceof HtmlPage)) { return; } final HtmlPage htmlPage = (HtmlPage) page; final URL url = htmlPage.getUrl(); final HtmlUnitDOMBuilder domBuilder = new HtmlUnitDOMBuilder(parent, url, source); domBuilder.setFeature("http://cyberneko.org/html/features/balance-tags/document-fragment", true); // build fragment context stack DomNode node = context; final List ancestors = new ArrayList<>(); while (node != null && node.getNodeType() != Node.DOCUMENT_NODE) { ancestors.add(0, new QName(null, node.getNodeName(), null, null)); node = node.getParentNode(); } if (ancestors.isEmpty() || !"html".equals(ancestors.get(0).localpart)) { ancestors.add(0, new QName(null, "html", null, null)); } if (ancestors.size() == 1 || !"body".equals(ancestors.get(1).localpart)) { ancestors.add(1, new QName(null, "body", null, null)); } domBuilder.setFeature(HTMLScanner.ALLOW_SELFCLOSING_TAGS, true); domBuilder.setProperty(HTMLTagBalancer.FRAGMENT_CONTEXT_STACK, ancestors.toArray(new QName[] {})); final XMLInputSource in = new XMLInputSource(null, url.toString(), null, new StringReader(source), null); htmlPage.registerParsingStart(); htmlPage.registerSnippetParsingStart(); try { domBuilder.parse(in); } finally { htmlPage.registerParsingEnd(); htmlPage.registerSnippetParsingEnd(); } } /** * Parses the HTML content from the specified WebResponse into an object tree representation. * * @param webResponse the response data * @param webWindow the web window into which the page is to be loaded * @return the page object which is the root of the DOM tree * @throws IOException if there is an IO error */ public static HtmlPage parseHtml(final WebResponse webResponse, final WebWindow webWindow) throws IOException { final HtmlPage page = new HtmlPage(webResponse, webWindow); parse(webResponse, webWindow, page, false); return page; } /** * Parses the XHTML content from the specified WebResponse into an object tree representation. * * @param webResponse the response data * @param webWindow the web window into which the page is to be loaded * @return the page object which is the root of the DOM tree * @throws IOException if there is an IO error */ public static XHtmlPage parseXHtml(final WebResponse webResponse, final WebWindow webWindow) throws IOException { final XHtmlPage page = new XHtmlPage(webResponse, webWindow); parse(webResponse, webWindow, page, true); return page; } private static void parse(final WebResponse webResponse, final WebWindow webWindow, final HtmlPage page, final boolean xhtml) throws IOException { webWindow.setEnclosedPage(page); final URL url = webResponse.getWebRequest().getUrl(); final HtmlUnitDOMBuilder domBuilder = new HtmlUnitDOMBuilder(page, url, null); Charset charset = webResponse.getContentCharsetOrNull(); try { // handle charset if (charset == null) { final Charset specifiedCharset = webResponse.getWebRequest().getCharset(); if (specifiedCharset != null) { charset = specifiedCharset; } } else { domBuilder.setFeature(HTMLScanner.IGNORE_SPECIFIED_CHARSET, true); } // xml content is different if (xhtml) { domBuilder.setFeature(HTMLScanner.ALLOW_SELFCLOSING_TAGS, true); } } catch (final Exception e) { throw new ObjectInstantiationException("Error setting HTML parser feature", e); } try (InputStream content = webResponse.getContentAsStream()) { String encoding = null; if (charset != null) { encoding = charset.name(); } final XMLInputSource in = new XMLInputSource(null, url.toString(), null, content, encoding); page.registerParsingStart(); try { domBuilder.parse(in); } catch (final XNIException e) { // extract enclosed exception final Throwable origin = extractNestedException(e); throw new RuntimeException("Failed parsing content from " + url, origin); } } finally { page.registerParsingEnd(); } addBodyToPageIfNecessary(page, true, domBuilder.body_ != null); } /** * Adds a body element to the current page, if necessary. Strictly speaking, this should * probably be done by NekoHTML. See the bug linked below. If and when that bug is fixed, * we may be able to get rid of this code. * * http://sourceforge.net/p/nekohtml/bugs/15/ * @param page * @param originalCall * @param checkInsideFrameOnly true if the original page had body that was removed by JavaScript */ private static void addBodyToPageIfNecessary( final HtmlPage page, final boolean originalCall, final boolean checkInsideFrameOnly) { // IE waits for the whole page to load before initializing bodies for frames. final boolean waitToLoad = page.hasFeature(PAGE_WAIT_LOAD_BEFORE_BODY); if (page.getEnclosingWindow() instanceof FrameWindow && originalCall && waitToLoad) { return; } // Find out if the document already has a body element (or frameset). final Element doc = page.getDocumentElement(); boolean hasBody = false; for (Node child = doc.getFirstChild(); child != null; child = child.getNextSibling()) { if (child instanceof HtmlBody || child instanceof HtmlFrameSet) { hasBody = true; break; } } // If the document does not have a body, add it. if (!hasBody && !checkInsideFrameOnly) { final HtmlBody body = new HtmlBody("body", page, null, false); doc.appendChild(body); } // If this is IE, we need to initialize the bodies of any frames, as well. // This will already have been done when emulating FF (see above). if (waitToLoad) { for (final FrameWindow frame : page.getFrames()) { final Page containedPage = frame.getEnclosedPage(); if (containedPage != null && containedPage.isHtmlPage()) { addBodyToPageIfNecessary((HtmlPage) containedPage, false, false); } } } } /** * Extract nested exception within an XNIException (Nekohtml uses reflection and generated * exceptions are wrapped many times within XNIException and InvocationTargetException) * * @param e the original XNIException * @return the cause exception */ static Throwable extractNestedException(final Throwable e) { Throwable originalException = e; Throwable cause = ((XNIException) e).getException(); while (cause != null) { originalException = cause; if (cause instanceof XNIException) { cause = ((XNIException) cause).getException(); } else if (cause instanceof InvocationTargetException) { cause = cause.getCause(); } else { cause = null; } } return originalException; } /** * @param tagName an HTML element tag name * @return a factory for creating HtmlElements representing the given tag */ public static ElementFactory getFactory(final String tagName) { final ElementFactory result = ELEMENT_FACTORIES.get(tagName); if (result != null) { return result; } return UnknownElementFactory.instance; } /** * Returns the pre-registered element factory corresponding to the specified tag, or an UnknownElementFactory. * @param page the page * @param namespaceURI the namespace URI * @param qualifiedName the qualified name * @param insideSvg is the node inside an SVG node or not * @param svgSupport true if called from javascript createElementNS * @return the pre-registered element factory corresponding to the specified tag, or an UnknownElementFactory */ static ElementFactory getElementFactory(final SgmlPage page, final String namespaceURI, final String qualifiedName, final boolean insideSvg, final boolean svgSupport) { if (insideSvg) { return SVG_FACTORY; } if (namespaceURI == null || namespaceURI.isEmpty() || XHTML_NAMESPACE.equals(namespaceURI) || SVG_NAMESPACE.equals(namespaceURI) || !qualifiedName.contains(":")) { String tagName = qualifiedName; final int index = tagName.indexOf(':'); if (index == -1) { tagName = tagName.toLowerCase(Locale.ROOT); } else { tagName = tagName.substring(index + 1); } final ElementFactory factory; if (svgSupport && !"svg".equals(tagName) && SVG_NAMESPACE.equals(namespaceURI)) { factory = SVG_FACTORY; } else { factory = ELEMENT_FACTORIES.get(tagName); } if (factory != null) { return factory; } } return UnknownElementFactory.instance; } /** * The parser and DOM builder. This class subclasses Xerces's AbstractSAXParser and implements * the ContentHandler interface. Thus all parser APIs are kept private. The ContentHandler methods * consume SAX events to build the page DOM */ static final class HtmlUnitDOMBuilder extends AbstractSAXParser implements ContentHandler, LexicalHandler, HTMLTagBalancingListener { private enum HeadParsed { YES, SYNTHESIZED, NO }; private final HtmlPage page_; private Locator locator_; private final Deque stack_ = new ArrayDeque<>(); /** Did the snippet tried to overwrite the start node? */ private boolean snippetStartNodeOverwritten_; private final int initialSize_; private DomNode currentNode_; private StringBuilder characters_; private HeadParsed headParsed_ = HeadParsed.NO; private HtmlElement body_; private boolean lastTagWasSynthesized_; private HtmlForm formWaitingForLostChildren_; private boolean insideSvg_; private static final String FEATURE_AUGMENTATIONS = "http://cyberneko.org/html/features/augmentations"; private static final String FEATURE_PARSE_NOSCRIPT = "http://cyberneko.org/html/features/parse-noscript-content"; /** * Parses and then inserts the specified HTML content into the HTML content currently being parsed. * @param html the HTML content to push */ public void pushInputString(final String html) { page_.registerParsingStart(); page_.registerInlineSnippetParsingStart(); try { final WebResponse webResponse = page_.getWebResponse(); final Charset charset = webResponse.getContentCharset(); final String url = webResponse.getWebRequest().getUrl().toString(); final XMLInputSource in = new XMLInputSource(null, url, null, new StringReader(html), charset.name()); ((HTMLConfiguration) fConfiguration).evaluateInputSource(in); } finally { page_.registerParsingEnd(); page_.registerInlineSnippetParsingEnd(); } } /** * Creates a new builder for parsing the specified response contents. * @param node the location at which to insert the new content * @param url the page's URL */ private HtmlUnitDOMBuilder(final DomNode node, final URL url, final String htmlContent) { super(createConfiguration(node.getPage().getWebClient().getBrowserVersion())); page_ = (HtmlPage) node.getPage(); currentNode_ = node; for (final Node ancestor : currentNode_.getAncestors()) { stack_.push((DomNode) ancestor); } final WebClient webClient = page_.getWebClient(); final HTMLParserListener listener = webClient.getHTMLParserListener(); final boolean reportErrors = listener != null; if (reportErrors) { fConfiguration.setErrorHandler(new HTMLErrorHandler(listener, url, htmlContent)); } try { setFeature(FEATURE_AUGMENTATIONS, true); setProperty("http://cyberneko.org/html/properties/names/elems", "default"); if (!webClient.getBrowserVersion().hasFeature(HTML_ATTRIBUTE_LOWER_CASE)) { setProperty("http://cyberneko.org/html/properties/names/attrs", "no-change"); } setFeature("http://cyberneko.org/html/features/report-errors", reportErrors); setFeature(FEATURE_PARSE_NOSCRIPT, !webClient.getOptions().isJavaScriptEnabled()); setFeature(HTMLScanner.ALLOW_SELFCLOSING_IFRAME, false); setContentHandler(this); setLexicalHandler(this); //comments and CDATA } catch (final SAXException e) { throw new ObjectInstantiationException("unable to create HTML parser", e); } initialSize_ = stack_.size(); } /** * Create the configuration depending on the simulated browser * @param webClient the current WebClient * @return the configuration */ private static XMLParserConfiguration createConfiguration(final BrowserVersion browserVersion) { final HTMLConfiguration configuration = new HTMLConfiguration(); if (browserVersion.hasFeature(HTML_COMMAND_TAG)) { configuration.htmlElements_.setElement(new HTMLElements.Element(HTMLElements.COMMAND, "COMMAND", HTMLElements.Element.EMPTY, HTMLElements.BODY, null)); } if (browserVersion.hasFeature(HTML_ISINDEX_TAG)) { configuration.htmlElements_.setElement(new HTMLElements.Element(HTMLElements.ISINDEX, "ISINDEX", HTMLElements.Element.INLINE, HTMLElements.BODY, null)); } if (browserVersion.hasFeature(HTML_MAIN_TAG)) { configuration.htmlElements_.setElement(new HTMLElements.Element(HTMLElements.MAIN, "MAIN", HTMLElements.Element.INLINE, HTMLElements.BODY, null)); } return configuration; } /** * @return the document locator */ public Locator getLocator() { return locator_; } /** {@inheritDoc ContentHandler#setDocumentLocator} */ @Override public void setDocumentLocator(final Locator locator) { locator_ = locator; } /** {@inheritDoc ContentHandler#startDocument()} */ @Override public void startDocument() throws SAXException { } /** {@inheritDoc} */ @Override public void startElement(final QName element, final XMLAttributes attributes, final Augmentations augs) throws XNIException { // augs might change so we store only the interesting part lastTagWasSynthesized_ = isSynthesized(augs); super.startElement(element, attributes, augs); } /** {@inheritDoc ContentHandler#startElement(String,String,String,Attributes)} */ @Override public void startElement(String namespaceURI, final String localName, String qName, final Attributes atts) throws SAXException { if (snippetStartNodeOverwritten_) { snippetStartNodeOverwritten_ = false; return; } handleCharacters(); String tagLower = localName.toLowerCase(Locale.ROOT); if (page_.isParsingHtmlSnippet() && ("html".equals(tagLower) || "body".equals(tagLower))) { return; } if ("head".equals(tagLower)) { if (headParsed_ == HeadParsed.YES || page_.isParsingHtmlSnippet()) { return; } headParsed_ = lastTagWasSynthesized_ ? HeadParsed.SYNTHESIZED : HeadParsed.YES; } if (namespaceURI != null) { namespaceURI = namespaceURI.trim(); } // add a head if none was there else if (headParsed_ == HeadParsed.NO && ("body".equals(tagLower) || "frameset".equals(tagLower))) { final ElementFactory factory = getElementFactory(page_, namespaceURI, "head", insideSvg_, false); final DomElement newElement = factory.createElement(page_, "head", null); currentNode_.appendChild(newElement); headParsed_ = HeadParsed.SYNTHESIZED; } // If we're adding a body element, keep track of any temporary synthetic ones // that we may have had to create earlier (for document.write(), for example). HtmlBody oldBody = null; if ("body".equals(qName) && page_.getBody() instanceof HtmlBody) { oldBody = (HtmlBody) page_.getBody(); } // Need to reset this at each starting form tag because it could be set from a synthesized // end tag. if ("form".equals(tagLower)) { formWaitingForLostChildren_ = null; } // Add the new node. if (!(page_ instanceof XHtmlPage) && XHTML_NAMESPACE.equals(namespaceURI)) { namespaceURI = null; } final boolean keyGenAsSelect = "keygen".equals(tagLower) && page_.hasFeature(KEYGEN_AS_SELECT); if (keyGenAsSelect) { tagLower = "select"; qName = "select"; } final ElementFactory factory = getElementFactory(page_, namespaceURI, qName, insideSvg_, false); if (factory == SVG_FACTORY) { namespaceURI = SVG_NAMESPACE; } final DomElement newElement = factory.createElementNS(page_, namespaceURI, qName, atts, true); newElement.setStartLocation(locator_.getLineNumber(), locator_.getColumnNumber()); // parse can't replace everything as it does not buffer elements while parsing addNodeToRightParent(currentNode_, newElement); if ("svg".equals(tagLower)) { insideSvg_ = true; } // If we had an old synthetic body and we just added a real body element, quietly // remove the old body and move its children to the real body element we just added. if (oldBody != null) { oldBody.quietlyRemoveAndMoveChildrenTo(newElement); } if ("body".equals(tagLower)) { body_ = (HtmlElement) newElement; } else if ("meta".equals(tagLower) && page_.hasFeature(META_X_UA_COMPATIBLE)) { final HtmlMeta meta = (HtmlMeta) newElement; if ("X-UA-Compatible".equals(meta.getHttpEquivAttribute())) { final String content = meta.getContentAttribute(); if (content.startsWith("IE=")) { final String mode = content.substring(3).trim(); final int version = page_.getWebClient().getBrowserVersion().getBrowserVersionNumeric(); if ("edge".equals(mode)) { ((HTMLDocument) page_.getScriptableObject()).forceDocumentMode(version); } else { try { int value = Integer.parseInt(mode); if (value > version) { value = version; } ((HTMLDocument) page_.getScriptableObject()).forceDocumentMode(value); } catch (final Exception e) { // ignore } } } } } if (keyGenAsSelect) { DomElement option = factory.createElementNS(page_, namespaceURI, "option", null, true); option.appendChild(new DomText(page_, "High Grade")); newElement.appendChild(option); option = factory.createElementNS(page_, namespaceURI, "option", null, true); option.appendChild(new DomText(page_, "Medium Grade")); newElement.appendChild(option); } currentNode_ = newElement; stack_.push(currentNode_); } /** * Adds the new node to the right parent that is not necessary the currentNode in case of * malformed HTML code. The method tries to emulate the behavior of Firefox. */ private void addNodeToRightParent(final DomNode currentNode, final DomElement newElement) { final String currentNodeName = currentNode.getNodeName(); final String newNodeName = newElement.getNodeName(); DomNode parent = currentNode; // If the new node is a table element and the current node isn't one search the stack for the // correct parent. if ("tr".equals(newNodeName) && !isTableChild(currentNodeName)) { parent = findElementOnStack("tbody", "thead", "tfoot"); } else if (isTableChild(newNodeName) && !"table".equals(currentNodeName)) { parent = findElementOnStack("table"); } else if (isTableCell(newNodeName) && !"tr".equals(currentNodeName)) { parent = findElementOnStack("tr"); } // If the parent changed and the old parent was a form it is now waiting for lost children. if (parent != currentNode && "form".equals(currentNodeName)) { formWaitingForLostChildren_ = (HtmlForm) currentNode; } final String parentNodeName = parent.getNodeName(); if (("table".equals(parentNodeName) && !isTableChild(newNodeName)) || (isTableChild(parentNodeName) && !"caption".equals(parentNodeName) && !"colgroup".equals(parentNodeName) && !"tr".equals(newNodeName)) || ("colgroup".equals(parentNodeName) && !"col".equals(newNodeName)) || ("tr".equals(parentNodeName) && !isTableCell(newNodeName))) { // If its a form or submittable just add it even though the resulting DOM is incorrect. // Otherwise insert the element before the table. if ("form".equals(newNodeName)) { formWaitingForLostChildren_ = (HtmlForm) newElement; parent.appendChild(newElement); } else if (newElement instanceof SubmittableElement) { if (formWaitingForLostChildren_ != null) { formWaitingForLostChildren_.addLostChild((HtmlElement) newElement); } parent.appendChild(newElement); } else { parent = findElementOnStack("table"); parent.insertBefore(newElement); } } else if (formWaitingForLostChildren_ != null && "form".equals(parentNodeName)) { // Do not append any children to invalid form. Submittable are inserted after the form, // everything else before the table. if (newElement instanceof SubmittableElement) { formWaitingForLostChildren_.addLostChild((HtmlElement) newElement); parent.getParentNode().appendChild(newElement); } else { parent = findElementOnStack("table"); parent.insertBefore(newElement); } } else if (formWaitingForLostChildren_ != null && newElement instanceof SubmittableElement) { formWaitingForLostChildren_.addLostChild((HtmlElement) newElement); parent.appendChild(newElement); } else { parent.appendChild(newElement); } } private DomNode findElementOnStack(final String... searchedElementNames) { DomNode searchedNode = null; for (final DomNode node : stack_) { if (ArrayUtils.contains(searchedElementNames, node.getNodeName())) { searchedNode = node; break; } } if (searchedNode == null) { searchedNode = stack_.peek(); // this is surely wrong but at least it won't throw a NPE } return searchedNode; } private static boolean isTableChild(final String nodeName) { return "thead".equals(nodeName) || "tbody".equals(nodeName) || "tfoot".equals(nodeName) || "caption".equals(nodeName) || "colgroup".equals(nodeName); } private static boolean isTableCell(final String nodeName) { return "td".equals(nodeName) || "th".equals(nodeName); } /** {@inheritDoc} */ @Override public void endElement(final QName element, final Augmentations augs) throws XNIException { // augs might change so we store only the interesting part lastTagWasSynthesized_ = isSynthesized(augs); super.endElement(element, augs); } /** {@inheritDoc ContentHandler@endElement(String,String,String)} */ @Override public void endElement(final String namespaceURI, final String localName, final String qName) throws SAXException { handleCharacters(); final String tagLower = localName.toLowerCase(Locale.ROOT); if (page_.isParsingHtmlSnippet()) { if ("html".equals(tagLower) || "body".equals(tagLower)) { return; } if (stack_.size() == initialSize_) { snippetStartNodeOverwritten_ = true; return; } } if ("svg".equals(tagLower)) { insideSvg_ = false; } // Need to reset this at each closing form tag because a valid form could start afterwards. if ("form".equals(tagLower)) { formWaitingForLostChildren_ = null; } final DomNode previousNode = stack_.pop(); //remove currentElement from stack previousNode.setEndLocation(locator_.getLineNumber(), locator_.getColumnNumber()); // special handling for form lost children (malformed HTML code where is synthesized) if (previousNode instanceof HtmlForm && lastTagWasSynthesized_) { formWaitingForLostChildren_ = (HtmlForm) previousNode; } if (!stack_.isEmpty()) { currentNode_ = stack_.peek(); } final boolean postponed = page_.isParsingInlineHtmlSnippet(); previousNode.onAllChildrenAddedToPage(postponed); } /** {@inheritDoc} */ @Override public void characters(final char[] ch, final int start, final int length) throws SAXException { if (characters_ == null) { characters_ = new StringBuilder(); } characters_.append(ch, start, length); } /** {@inheritDoc} */ @Override public void ignorableWhitespace(final char[] ch, final int start, final int length) throws SAXException { if (characters_ == null) { characters_ = new StringBuilder(); } characters_.append(ch, start, length); } /** * Picks up the character data accumulated so far and add it to the current element as a text node. */ private void handleCharacters() { if (characters_ != null && characters_.length() != 0) { if (currentNode_ instanceof HtmlHtml) { // In HTML, the node only has two possible children: // the and the ; any text is ignored. characters_.setLength(0); } else { // Use the normal behavior: append a text node for the accumulated text. final String textValue = characters_.toString(); final DomText text = new DomText(page_, textValue); characters_.setLength(0); if (StringUtils.isNotBlank(textValue)) { // malformed HTML: some text => text comes before the table if (currentNode_ instanceof HtmlTableRow) { final HtmlTableRow row = (HtmlTableRow) currentNode_; final HtmlTable enclosingTable = row.getEnclosingTable(); if (enclosingTable != null) { // may be null when called from Range.createContextualFragment if (enclosingTable.getPreviousSibling() instanceof DomText) { final DomText domText = (DomText) enclosingTable.getPreviousSibling(); domText.setTextContent(domText + textValue); } else { enclosingTable.insertBefore(text); } } } else if (currentNode_ instanceof HtmlTable) { final HtmlTable enclosingTable = (HtmlTable) currentNode_; if (enclosingTable.getPreviousSibling() instanceof DomText) { final DomText domText = (DomText) enclosingTable.getPreviousSibling(); domText.setTextContent(domText + textValue); } else { enclosingTable.insertBefore(text); } } else if (currentNode_ instanceof HtmlImage) { currentNode_.setNextSibling(text); } else { currentNode_.appendChild(text); } } else { currentNode_.appendChild(text); } } } } /** {@inheritDoc} */ @Override public void endDocument() throws SAXException { handleCharacters(); final DomNode currentPage = page_; currentPage.setEndLocation(locator_.getLineNumber(), locator_.getColumnNumber()); } /** {@inheritDoc} */ @Override public void startPrefixMapping(final String prefix, final String uri) throws SAXException { } /** {@inheritDoc} */ @Override public void endPrefixMapping(final String prefix) throws SAXException { } /** {@inheritDoc} */ @Override public void processingInstruction(final String target, final String data) throws SAXException { } /** {@inheritDoc} */ @Override public void skippedEntity(final String name) throws SAXException { } // LexicalHandler methods /** {@inheritDoc} */ @Override public void comment(final char[] ch, final int start, final int length) { handleCharacters(); final String data = new String(ch, start, length); final DomComment comment = new DomComment(page_, data); currentNode_.appendChild(comment); } /** {@inheritDoc} */ @Override public void endCDATA() { } /** {@inheritDoc} */ @Override public void endDTD() { } /** {@inheritDoc} */ @Override public void endEntity(final String name) { } /** {@inheritDoc} */ @Override public void startCDATA() { } /** {@inheritDoc} */ @Override public void startDTD(final String name, final String publicId, final String systemId) { final DomDocumentType type = new DomDocumentType(page_, name, publicId, systemId); page_.setDocumentType(type); final Node child; child = type; page_.appendChild(child); } /** {@inheritDoc} */ @Override public void startEntity(final String name) { } /** * {@inheritDoc} */ @Override public void ignoredEndElement(final QName element, final Augmentations augs) { // if real is reached, don't accept fields anymore as lost children if ("form".equals(element.localpart)) { formWaitingForLostChildren_ = null; } } /** * {@inheritDoc} */ @Override public void ignoredStartElement(final QName elem, final XMLAttributes attrs, final Augmentations augs) { // when multiple body elements are encountered, the attributes of the discarded // elements are used when not previously defined if (body_ != null && "body".equalsIgnoreCase(elem.localpart) && attrs != null) { copyAttributes(body_, attrs); } if (body_ != null && "html".equalsIgnoreCase(elem.localpart) && attrs != null) { copyAttributes((DomElement) body_.getParentNode(), attrs); } } private static void copyAttributes(final DomElement to, final XMLAttributes attrs) { final int length = attrs.getLength(); for (int i = 0; i < length; i++) { final String attrName = attrs.getLocalName(i).toLowerCase(Locale.ROOT); if (to.getAttributes().getNamedItem(attrName) == null) { to.setAttribute(attrName, attrs.getValue(i)); if (attrName.startsWith("on") && to.getScriptableObject() instanceof HTMLBodyElement) { final HTMLBodyElement jsBody = (HTMLBodyElement) to.getScriptableObject(); jsBody.createEventHandlerFromAttribute(attrName, attrs.getValue(i)); } } } } /** * {@inheritDoc} */ @Override public void parse(final XMLInputSource inputSource) throws XNIException, IOException { final HtmlUnitDOMBuilder oldBuilder = page_.getBuilder(); page_.setBuilder(this); try { super.parse(inputSource); } finally { page_.setBuilder(oldBuilder); } } private static boolean isSynthesized(final Augmentations augs) { final HTMLEventInfo info = (augs == null) ? null : (HTMLEventInfo) augs.getItem(FEATURE_AUGMENTATIONS); return info != null && info.isSynthesized(); } } } /** * Utility to transmit parsing errors to a {@link HTMLParserListener}. */ class HTMLErrorHandler extends DefaultErrorHandler { private final HTMLParserListener listener_; private final URL url_; private String html_; HTMLErrorHandler(final HTMLParserListener listener, final URL url, final String htmlContent) { WebAssert.notNull("listener", listener); WebAssert.notNull("url", url); listener_ = listener; url_ = url; html_ = htmlContent; } /** @see DefaultErrorHandler#error(String,String,XMLParseException) */ @Override public void error(final String domain, final String key, final XMLParseException exception) throws XNIException { listener_.error(exception.getMessage(), url_, html_, exception.getLineNumber(), exception.getColumnNumber(), key); } /** @see DefaultErrorHandler#warning(String,String,XMLParseException) */ @Override public void warning(final String domain, final String key, final XMLParseException exception) throws XNIException { listener_.warning(exception.getMessage(), url_, html_, exception.getLineNumber(), exception.getColumnNumber(), key); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy