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

org.attoparser.simple.ISimpleMarkupParser Maven / Gradle / Ivy

The newest version!
/*
 * =============================================================================
 * 
 *   Copyright (c) 2012-2022, The ATTOPARSER team (https://www.attoparser.org)
 * 
 *   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
 * 
 *       https://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.attoparser.simple;

import java.io.Reader;

import org.attoparser.ParseException;


/**
 * 

* Interface to be implemented by all simple Markup Parsers. * Default implementation is {@link org.attoparser.simple.SimpleMarkupParser}. *

*

* AttoParser simple markup parsers work as SAX-style parsers that need * a markup handler object for handling parsing events. These handlers implement * the {@link org.attoparser.simple.ISimpleMarkupHandler} interface, and are normally developed by * users in order to perform the operations they require for their applications. *

*

* See the documentation of the {@link org.attoparser.simple.ISimpleMarkupHandler} interface for more * information on the event handler methods. *

*

* Note that this parser interface and its corresponding handlers are actually a simplified * version of the full-blown {@link org.attoparser.IMarkupParser} infrastructure. *

*

* Sample usage: *

*

 *   // Obtain a java.io.Reader on the document to be parsed
 *   final Reader documentReader = ...;
 *
 *   // Create the handler instance. Extending the no-op AbstractSimpleMarkupHandler is a good start
 *   final ISimpleMarkupHandler handler = new AbstractSimpleMarkupHandler() {
 *       ... // some events implemented
 *   };
 *
 *   // Create or obtain the parser instance (can be reused). Example uses the default configuration for HTML
 *   final ISimpleMarkupParser parser = new SimpleMarkupParser(ParseConfiguration.htmlConfiguration());
 *
 *   // Parse it!
 *   parser.parse(documentReader, handler);
 * 
*

* Note that implementations of this interface should be thread-safe, and therefore parsers * should be reusable through several parsing operations and any number of concurrent threads. *

* * @author Daniel Fernández * * @since 2.0.0 * */ public interface ISimpleMarkupParser { /** *

* Parse a document using the specified {@link org.attoparser.simple.ISimpleMarkupHandler}. *

* * @param document the document to be parsed, as a String. * @param handler the handler to be used, an {@link org.attoparser.simple.ISimpleMarkupHandler} implementation. * @throws ParseException if the document cannot be parsed. */ public void parse(final String document, final ISimpleMarkupHandler handler) throws ParseException; /** *

* Parse a document using the specified {@link org.attoparser.simple.ISimpleMarkupHandler}. *

* * @param document the document to be parsed, as a char[]. * @param handler the handler to be used, an {@link org.attoparser.simple.ISimpleMarkupHandler} implementation. * @throws ParseException if the document cannot be parsed. */ public void parse(final char[] document, final ISimpleMarkupHandler handler) throws ParseException; /** *

* Parse a document using the specified {@link org.attoparser.simple.ISimpleMarkupHandler}. *

* * @param document the document to be parsed, as a char[]. * @param offset the offset to be applied on the char[] document to determine the * start of the document contents. * @param len the length (in chars) of the document stored in the char[]. * @param handler the handler to be used, an {@link org.attoparser.simple.ISimpleMarkupHandler} implementation. * @throws ParseException if the document cannot be parsed. */ public void parse(final char[] document, final int offset, final int len, final ISimpleMarkupHandler handler) throws ParseException; /** *

* Parse a document using the specified {@link org.attoparser.simple.ISimpleMarkupHandler}. *

*

* Implementations of this interface must close the provided {@link Reader} * object after parsing. *

* * @param reader a Reader on the document. * @param handler the handler to be used, an {@link org.attoparser.simple.ISimpleMarkupHandler} implementation. * @throws ParseException if the document cannot be parsed. */ public void parse(final Reader reader, final ISimpleMarkupHandler handler) throws ParseException; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy