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
,SPARQLXMLParserBase
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 org.eclipse.rdf4j.query.resultio.AbstractQueryResultParser
handler, valueFactory
-
Constructor Summary
ModifierConstructorDescriptionprotected
protected
AbstractSPARQLXMLParser
(ValueFactory valueFactory) -
Method Summary
Modifier and TypeMethodDescriptionvoid
error
(SAXParseException exception) void
fatalError
(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<?>>
void
Parse the query results out of the givenInputStream
into the handler setup usingQueryResultParser.setQueryResultHandler(QueryResultHandler)
.protected boolean
parseQueryResultInternal
(InputStream in, boolean attemptParseBoolean, boolean attemptParseTuple) protected void
reportWarning
(String msg) void
warning
(SAXParseException exception) Methods inherited from class org.eclipse.rdf4j.query.resultio.AbstractQueryResultParser
getParseErrorListener, getParseLocationListener, getParserConfig, set, setParseErrorListener, setParseLocationListener, setParserConfig, setQueryResultHandler, setValueFactory
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.eclipse.rdf4j.query.resultio.QueryResultParser
getQueryResultFormat
-
Constructor Details
-
AbstractSPARQLXMLParser
protected AbstractSPARQLXMLParser() -
AbstractSPARQLXMLParser
-
-
Method Details
-
parseQueryResult
public void parseQueryResult(InputStream in) throws IOException, QueryResultParseException, QueryResultHandlerException Description copied from interface:QueryResultParser
Parse the query results out of the givenInputStream
into the handler setup usingQueryResultParser.setQueryResultHandler(QueryResultHandler)
.- Specified by:
parseQueryResult
in interfaceQueryResultParser
- Parameters:
in
- TheInputStream
to 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 theQueryResultHandler
set 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
RioSetting
s 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
RioSetting
s 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
RioSetting
s 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
RioSetting
s that indicate which boolean settings can be setup usingXMLReader.setFeature(String, boolean)
.
-
getSupportedSettings
- Specified by:
getSupportedSettings
in interfaceQueryResultParser
- Overrides:
getSupportedSettings
in classAbstractQueryResultParser
- Returns:
- A collection of
RioSetting
s that are supported by this QueryResultParser.
-
warning
- Specified by:
warning
in interfaceErrorHandler
- Throws:
SAXException
-
error
- Specified by:
error
in interfaceErrorHandler
- Throws:
SAXException
-
fatalError
- Specified by:
fatalError
in interfaceErrorHandler
- Throws:
SAXException
-