Class AbstractSPARQLXMLParser
java.lang.Object
org.eclipse.rdf4j.query.resultio.AbstractQueryResultParser
org.eclipse.rdf4j.query.resultio.sparqlxml.AbstractSPARQLXMLParser
- All Implemented Interfaces:
QueryResultParser, ErrorHandler
- Direct Known Subclasses:
SPARQLBooleanXMLParser, SPARQLResultsXMLParser
public abstract class AbstractSPARQLXMLParser
extends AbstractQueryResultParser
implements ErrorHandler
Abstract base class for SPARQL Results XML Parsers.
- Author:
- Peter Ansell
-
Field Summary
Fields inherited from class AbstractQueryResultParser
handler, valueFactoryModifier and TypeFieldDescriptionprotected QueryResultHandlerTheQueryResultHandlerthat will handle the parsed query results.protected ValueFactoryTheValueFactoryto use for creating RDF model objects. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedprotectedAbstractSPARQLXMLParser(ValueFactory valueFactory) -
Method Summary
Modifier and TypeMethodDescriptionvoiderror(SAXParseException exception) voidfatalError(SAXParseException exception) Returns a collection of settings that will always be set as XML parser features usingXMLReader.setFeature(String, boolean).Collection<RioSetting<?>> Returns a collection of settings that will always be set as XML parser properties usingXMLReader.setProperty(String, Object)Returns a collection of settings that will be used, if set inAbstractQueryResultParser.getParserConfig(), as XML parser features usingXMLReader.setFeature(String, boolean).Collection<RioSetting<?>> Returns a collection of settings that will be used, if set inAbstractQueryResultParser.getParserConfig(), as XML parser properties usingXMLReader.setProperty(String, Object)Collection<RioSetting<?>> voidParse the query results out of the givenInputStreaminto the handler setup usingQueryResultParser.setQueryResultHandler(QueryResultHandler).protected booleanparseQueryResultInternal(InputStream in, boolean attemptParseBoolean, boolean attemptParseTuple) protected voidreportWarning(String msg) voidwarning(SAXParseException exception) Methods inherited from class AbstractQueryResultParser
getParseErrorListener, getParseLocationListener, getParserConfig, set, setParseErrorListener, setParseLocationListener, setParserConfig, setQueryResultHandler, setValueFactoryModifier and TypeMethodDescriptionRetrieves the current parser configuration as a single object.set(RioSetting<T> setting, T value) Set a setting on the parser, and return this parser object to allow chaining.Sets the ParseErrorListener that will be notified of any errors that this parser finds during parsing.Sets the ParseLocationListener that will be notified of the parser's progress during the parse process.setParserConfig(ParserConfig config) Sets all supplied parser configuration options.setQueryResultHandler(QueryResultHandler handler) Sets theQueryResultHandlerto be used when parsing query results usingQueryResultParser.parseQueryResult(InputStream).setValueFactory(ValueFactory valueFactory) Sets the ValueFactory that the parser will use to create Value objects for the parsed query result.Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface QueryResultParser
getQueryResultFormatModifier and TypeMethodDescriptionGets the query result format that this parser can parse.
-
Constructor Details
-
AbstractSPARQLXMLParser
protected AbstractSPARQLXMLParser() -
AbstractSPARQLXMLParser
-
-
Method Details
-
parseQueryResult
public void parseQueryResult(InputStream in) throws IOException, QueryResultParseException, QueryResultHandlerException Description copied from interface:QueryResultParserParse the query results out of the givenInputStreaminto the handler setup usingQueryResultParser.setQueryResultHandler(QueryResultHandler).- Specified by:
parseQueryResultin interfaceQueryResultParser- Parameters:
in- TheInputStreamto parse the results from.- Throws:
IOException- If there is an exception from the InputStream.QueryResultParseException- If the query results are not parsable by this parser.QueryResultHandlerException- If theQueryResultHandlerset inQueryResultParser.setQueryResultHandler(QueryResultHandler)throws an exception.
-
parseQueryResultInternal
protected boolean parseQueryResultInternal(InputStream in, boolean attemptParseBoolean, boolean attemptParseTuple) throws IOException, QueryResultParseException, QueryResultHandlerException -
reportWarning
-
getCompulsoryXmlPropertySettings
Returns a collection of settings that will always be set as XML parser properties usingXMLReader.setProperty(String, Object)Subclasses can override this to specify more supported settings.
- Returns:
- A collection of
RioSettings that indicate which properties will always be setup usingXMLReader.setProperty(String, Object).
-
getCompulsoryXmlFeatureSettings
Returns a collection of settings that will always be set as XML parser features usingXMLReader.setFeature(String, boolean).Subclasses can override this to specify more supported settings.
- Returns:
- A collection of
RioSettings that indicate which boolean settings will always be setup usingXMLReader.setFeature(String, boolean).
-
getOptionalXmlPropertySettings
Returns a collection of settings that will be used, if set inAbstractQueryResultParser.getParserConfig(), as XML parser properties usingXMLReader.setProperty(String, Object)Subclasses can override this to specify more supported settings.
- Returns:
- A collection of
RioSettings that indicate which properties can be setup usingXMLReader.setProperty(String, Object).
-
getOptionalXmlFeatureSettings
Returns a collection of settings that will be used, if set inAbstractQueryResultParser.getParserConfig(), as XML parser features usingXMLReader.setFeature(String, boolean).Subclasses can override this to specify more supported settings.
- Returns:
- A collection of
RioSettings that indicate which boolean settings can be setup usingXMLReader.setFeature(String, boolean).
-
getSupportedSettings
- Specified by:
getSupportedSettingsin interfaceQueryResultParser- Overrides:
getSupportedSettingsin classAbstractQueryResultParser- Returns:
- A collection of
RioSettings that are supported by this QueryResultParser.
-
warning
- Specified by:
warningin interfaceErrorHandler- Throws:
SAXException
-
error
- Specified by:
errorin interfaceErrorHandler- Throws:
SAXException
-
fatalError
- Specified by:
fatalErrorin interfaceErrorHandler- Throws:
SAXException
-