|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.tika.parser.AbstractParser org.apache.tika.parser.DelegatingParser
public class DelegatingParser
Base class for parser implementations that want to delegate parts of the
task of parsing an input document to another parser. The delegate parser
is looked up from the parsing context using the Parser
class as
the key.
Constructor Summary | |
---|---|
DelegatingParser()
|
Method Summary | |
---|---|
protected Parser |
getDelegateParser(ParseContext context)
Returns the parser instance to which parsing tasks should be delegated. |
Set<MediaType> |
getSupportedTypes(ParseContext context)
Returns the set of media types supported by this parser when used with the given parse context. |
void |
parse(InputStream stream,
ContentHandler handler,
Metadata metadata,
ParseContext context)
Looks up the delegate parser from the parsing context and delegates the parse operation to it. |
Methods inherited from class org.apache.tika.parser.AbstractParser |
---|
parse |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public DelegatingParser()
Method Detail |
---|
protected Parser getDelegateParser(ParseContext context)
EmptyParser
instance as a fallback.
Subclasses can override this method to implement alternative delegation
strategies.
context
- parse context
public Set<MediaType> getSupportedTypes(ParseContext context)
Parser
context
- parse context
public void parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context) throws SAXException, IOException, TikaException
Subclasses should override this method to parse the top level structure of the given document stream. Parsed sub-streams can be passed to this base class method to be parsed by the configured delegate parser.
stream
- the document stream (input)handler
- handler for the XHTML SAX events (output)metadata
- document metadata (input and output)context
- parse context
SAXException
- if the SAX events could not be processed
IOException
- if the document stream could not be read
TikaException
- if the document could not be parsed
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |