blob: 26a2c28f5bebf382ce3735a42e9a4ebff7f6a281 [file] [log] [blame]
package org.apache.maven.doxia.parser;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
import org.apache.maven.doxia.logging.LogEnabled;
import org.apache.maven.doxia.sink.Sink;
import java.io.Reader;
/**
* A Parser is responsible for parsing any document in a supported front-end
* format, and emitting the standard Doxia events, which can then be consumed
* by any Doxia Sink.
*
* @author <a href="mailto:jason@maven.org">Jason van Zyl</a>
* @version $Id$
* @since 1.0
*/
public interface Parser
extends LogEnabled
{
/** The Plexus lookup role. */
String ROLE = Parser.class.getName();
/** Unknown parser type */
int UNKNOWN_TYPE = 0;
/** Text parser type */
int TXT_TYPE = 1;
/** XML parser type */
int XML_TYPE = 2;
/**
* Parses the given source model and emits Doxia events into the given sink.
*
* @param source not null reader that provides the source document.
* You could use <code>newReader</code> methods from {@link org.codehaus.plexus.util.ReaderFactory}.
* @param sink A sink that consumes the Doxia events.
* @throws org.apache.maven.doxia.parser.ParseException if the model could not be parsed.
*/
void parse( Reader source, Sink sink )
throws ParseException;
/**
* Parses the given source model and emits Doxia events into the given sink.
*
* @param source not null reader that provides the source document.
* You could use <code>newReader</code> methods from {@link org.codehaus.plexus.util.ReaderFactory}.
* @param sink A sink that consumes the Doxia events.
* @throws org.apache.maven.doxia.parser.ParseException if the model could not be parsed.
*/
void parse( Reader source, Sink sink, String reference )
throws ParseException;
/**
* The parser type value could be {@link #UNKNOWN_TYPE}, {@link #TXT_TYPE} or
* {@link #XML_TYPE}.
*
* @return the type of Parser
*/
int getType();
/**
* When comments are found in source markup, emit comment Doxia events or just ignore?
*
* @param emitComments <code>true</code> (default value) to emit comment Doxia events
*/
void setEmitComments( boolean emitComments );
/**
* Does the parser emit Doxia comments event when comments found in source?
*
* @return <code>true</code> (default value) if comment Doxia events are emitted
*/
boolean isEmitComments();
}