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

com.gargoylesoftware.htmlunit.html.parser.HTMLParserListener Maven / Gradle / Ivy

There is a newer version: 2.70.0
Show newest version
/*
 * Copyright (c) 2002-2021 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.parser;

import java.net.URL;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

/**
 * Listener for messages from the HTML parser. 
* The classification of problems as warnings or errors is the one of the HTML parser * used by HtmlUnit. The line and column may indicates the position of the problem detected * by the parser. This is only an indication and in some cases the position where * the problem has to be solved is located lines before. * In some cases (when parsing a html snippet), the html content is also available. * * @author Marc Guillemot */ public interface HTMLParserListener { /** * Simple implementation of {@link HTMLParserListener} logging the received warnings * and errors in the "com.gargoylesoftware.htmlunit.html.HTMLParserListener" log.
* Errors are logged at the error level and warnings at the warning level. */ HTMLParserListener LOG_REPORTER = new SimpleHTMLParserListener(); /** * Called when the HTML parser reports an error. * @param message the description of the problem * @param url the URL of the document in which the problem occurs * @param html the content of the snippet in which the problem occurs * @param line the line of the problem * @param column the column of the problem * @param key the key identifying the "type" of problem */ void error(String message, URL url, String html, int line, int column, String key); /** * Called when the HTML parser reports a warning. * @param message the description of the problem * @param url the URL of the document in which the problem occurs * @param html the content of the snippet in which the problem occurs * @param line the line of the problem * @param column the column of the problem * @param key the key identifying the "type" of problem */ void warning(String message, URL url, String html, int line, int column, String key); } /** * Simple implementation of {@link HTMLParserListener} logging the received warnings * and errors in the "com.gargoylesoftware.htmlunit.html.HTMLParserListener" log.
* Errors are logged at the error level and warnings at the warning level. */ class SimpleHTMLParserListener implements HTMLParserListener { private static final Log LOG = LogFactory.getLog(SimpleHTMLParserListener.class); @Override public void error(final String message, final URL url, final String html, final int line, final int column, final String key) { LOG.error(format(message, url, html, line, column)); } @Override public void warning(final String message, final URL url, final String html, final int line, final int column, final String key) { LOG.warn(format(message, url, html, line, column)); } private static String format(final String message, final URL url, final String html, final int line, final int column) { final StringBuilder builder = new StringBuilder(message); builder.append(" (") .append(url.toExternalForm()) .append(' ') .append(line) .append(':') .append(column); if (null != html) { builder.append(" htmlSnippet: '") .append(html) .append('\''); } builder.append(')'); return builder.toString(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy