public class SparqlTripleSource extends TripleSourceBase implements TripleSource
This triple source supports the SparqlEndpointConfiguration
for defining whether ASK queries are to be used
for source selection.
The query result of getStatements(String, BindingSet, FilterValueExpr, QueryInfo)
is wrapped in a
ConsumingIteration
to avoid blocking behavior..
TripleSourceBase.ConnectionOperation<T>, TripleSourceBase.ResultHolder<T>
endpoint, federationContext, monitoringService, strategy
Modifier and Type | Method and Description |
---|---|
CloseableIteration<Statement,QueryEvaluationException> |
getStatements(Resource subj,
IRI pred,
Value obj,
QueryInfo queryInfo,
Resource... contexts)
Return the statements matching the given pattern as a
Statement iteration. |
CloseableIteration<BindingSet,QueryEvaluationException> |
getStatements(StatementPattern stmt,
BindingSet bindings,
FilterValueExpr filterExpr,
QueryInfo queryInfo)
Evaluate the query expression on the provided endpoint.
|
CloseableIteration<BindingSet,QueryEvaluationException> |
getStatements(String preparedQuery,
BindingSet bindings,
FilterValueExpr filterExpr,
QueryInfo queryInfo)
Evaluate the prepared query (SPARQL query as String) on the provided endpoint.
|
CloseableIteration<BindingSet,QueryEvaluationException> |
getStatements(TupleExpr preparedQuery,
BindingSet bindings,
FilterValueExpr filterExpr,
QueryInfo queryInfo)
Evaluate the prepared query in its internal representation on the provided endpoint.
|
boolean |
hasStatements(ExclusiveTupleExpr expr,
BindingSet bindings)
Check if the repository can return results for the given
ExclusiveTupleExpr , e.g. |
boolean |
hasStatements(Resource subj,
IRI pred,
Value obj,
QueryInfo queryInfo,
Resource... contexts)
Check if the repository can return results for the given triple pattern represented by subj, pred and obj
|
boolean |
hasStatements(StatementPattern stmt,
BindingSet bindings,
QueryInfo queryInfo)
Check if the provided statement can return results.
|
String |
toString() |
boolean |
usePreparedQuery() |
applyMaxExecutionTimeUpperBound, configureInference, getStatements, monitorRemoteRequest, withConnection
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
getStatements
public CloseableIteration<BindingSet,QueryEvaluationException> getStatements(String preparedQuery, BindingSet bindings, FilterValueExpr filterExpr, QueryInfo queryInfo) throws RepositoryException, MalformedQueryException, QueryEvaluationException
TripleSource
getStatements
in interface TripleSource
preparedQuery
- a prepared query to evaluate (SPARQL query as String)bindings
- the bindings to usefilterExpr
- the filter expression to apply or null if there is no filter or if it is evaluated alreadyRepositoryException
MalformedQueryException
QueryEvaluationException
public CloseableIteration<BindingSet,QueryEvaluationException> getStatements(StatementPattern stmt, BindingSet bindings, FilterValueExpr filterExpr, QueryInfo queryInfo) throws RepositoryException, MalformedQueryException, QueryEvaluationException
TripleSource
getStatements
in interface TripleSource
stmt
- the stmt expression to evaluatebindings
- the bindings to usefilterExpr
- the filter expression to apply or null if there is no filter or if it is evaluated alreadyRepositoryException
MalformedQueryException
QueryEvaluationException
public boolean hasStatements(Resource subj, IRI pred, Value obj, QueryInfo queryInfo, Resource... contexts) throws RepositoryException
TripleSource
hasStatements
in interface TripleSource
hasStatements
in class TripleSourceBase
RepositoryException
public boolean hasStatements(StatementPattern stmt, BindingSet bindings, QueryInfo queryInfo) throws RepositoryException, MalformedQueryException, QueryEvaluationException
TripleSource
hasStatements
in interface TripleSource
bindings
- a binding set. in case no bindings are present, an EmptyBindingSet
can be used (i.e.
never null)RepositoryException
MalformedQueryException
QueryEvaluationException
public boolean hasStatements(ExclusiveTupleExpr expr, BindingSet bindings) throws RepositoryException, MalformedQueryException, QueryEvaluationException
TripleSource
ExclusiveTupleExpr
, e.g. for an
ExclusiveGroup
with a list of Statements.hasStatements
in interface TripleSource
hasStatements
in class TripleSourceBase
RepositoryException
MalformedQueryException
QueryEvaluationException
public boolean usePreparedQuery()
usePreparedQuery
in interface TripleSource
public CloseableIteration<BindingSet,QueryEvaluationException> getStatements(TupleExpr preparedQuery, BindingSet bindings, FilterValueExpr filterExpr, QueryInfo queryInfo) throws RepositoryException, MalformedQueryException, QueryEvaluationException
TripleSource
getStatements
in interface TripleSource
preparedQuery
- a prepared query to evaluatebindings
- the bindings to usefilterExpr
- the filter expression to apply or null if there is no filter or if it is evaluated alreadyRepositoryException
MalformedQueryException
QueryEvaluationException
public CloseableIteration<Statement,QueryEvaluationException> getStatements(Resource subj, IRI pred, Value obj, QueryInfo queryInfo, Resource... contexts) throws RepositoryException, MalformedQueryException, QueryEvaluationException
TripleSource
Statement
iteration.getStatements
in interface TripleSource
RepositoryException
MalformedQueryException
QueryEvaluationException
Copyright © 2015-2020 Eclipse Foundation. All Rights Reserved.