Class QueryExecutionBase
- java.lang.Object
-
- org.apache.jena.sparql.engine.QueryExecutionBase
-
- All Implemented Interfaces:
java.lang.AutoCloseable,QueryExecution
public class QueryExecutionBase extends java.lang.Object implements QueryExecution
All the SPARQL query result forms made from a graph-level execution object
-
-
Constructor Summary
Constructors Constructor Description QueryExecutionBase(Query query, Dataset dataset, Context context, QueryEngineFactory qeFactory)QueryExecutionBase(Query query, DatasetGraph datasetGraph, Context context, QueryEngineFactory qeFactory)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidabort()Stop in mid execution.voidclose()Close the query execution and stop query evaluation as soon as convenient.booleanexecAsk()Execute an ASK queryModelexecConstruct()Execute a CONSTRUCT queryModelexecConstruct(Model model)Execute a CONSTRUCT query, putting the statements into 'model'.DatasetexecConstructDataset()Execute a CONSTRUCT query, putting the statements into 'dataset'.DatasetexecConstructDataset(Dataset dataset)Execute a CONSTRUCT query, putting the statements into 'dataset'.java.util.Iterator<Quad>execConstructQuads()Execute a CONSTRUCT query, returning the results as an iterator ofQuad.java.util.Iterator<Triple>execConstructTriples()Execute a CONSTRUCT query, returning the results as an iterator ofTriple.ModelexecDescribe()Execute a DESCRIBE queryModelexecDescribe(Model model)Execute a DESCRIBE query, putting the statements into 'model'.java.util.Iterator<Triple>execDescribeTriples()Execute a DESCRIBE query, returning the results as an iterator ofTriple.JsonArrayexecJson()Execute a JSON query and return a json arrayjava.util.Iterator<JsonObject>execJsonItems()Execute a JSON query and return an interatorResultSetexecSelect()Execute a SELECT queryContextgetContext()The properties associated with a query execution - implementation specific parameters This includes Java objects (so it is not an RDF graph).DatasetgetDataset()The dataset against which the query will execute.PlangetPlan()QuerygetQuery()The query associated with a query execution.longgetTimeout1()Return the first timeout (time to first result), in milliseconds: negative if unsetlonggetTimeout2()Return the second timeout (overall query execution after first result), in milliseconds: negative if unsetbooleanisClosed()Answer whether this QueryExecution object has been closed or not.voidsetInitialBinding(QuerySolution startSolution)Set the initial association of variables and values.voidsetInitialBinding(Binding startSolution)Set the initial association of variables and values.voidsetInitialBindings(ResultSet table)voidsetTimeout(long timeout)Set time, in millisecondsvoidsetTimeout(long timeout1, long timeout2)Set time, in millisecondsvoidsetTimeout(long timeout, java.util.concurrent.TimeUnit timeUnit)Set a timeout on the query execution.voidsetTimeout(long timeout1, java.util.concurrent.TimeUnit timeUnit1, long timeout2, java.util.concurrent.TimeUnit timeUnit2)Set timeouts on the query execution; the first timeout refers to time to first result, the second refers to overall query execution after the first result.
-
-
-
Constructor Detail
-
QueryExecutionBase
public QueryExecutionBase(Query query, Dataset dataset, Context context, QueryEngineFactory qeFactory)
-
QueryExecutionBase
public QueryExecutionBase(Query query, DatasetGraph datasetGraph, Context context, QueryEngineFactory qeFactory)
-
-
Method Detail
-
close
public void close()
Description copied from interface:QueryExecutionClose the query execution and stop query evaluation as soon as convenient. QueryExecution objects, and aResultSetfromQueryExecution.execSelect(), can not be used once the QueryExecution is closed. Model results fromQueryExecution.execConstruct()andQueryExecution.execDescribe()are still valid. It is important to close query execution objects in order to release resources such as working memory and to stop the query execution. Some storage subsystems require explicit ends of operations and this operation will cause those to be called where necessary. No operations on the query execution or any associated result set are permitted after this call.- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfaceQueryExecution
-
isClosed
public boolean isClosed()
Description copied from interface:QueryExecutionAnswer whether this QueryExecution object has been closed or not.- Specified by:
isClosedin interfaceQueryExecution- Returns:
- boolean
-
abort
public void abort()
Description copied from interface:QueryExecutionStop in mid execution. This method can be called in parallel with other methods on the QueryExecution object. There is no guarantee that the concrete implementation actual will stop or that it will do so immediately. No operations on the query execution or any associated result set are permitted after this call and may cause exceptions to be thrown.- Specified by:
abortin interfaceQueryExecution
-
execSelect
public ResultSet execSelect()
Description copied from interface:QueryExecutionExecute a SELECT queryImportant: The name of this method is somewhat of a misnomer in that depending on the underlying implementation this typically does not execute the SELECT query but rather answers a wrapper over an internal data structure that can be used to answer the query. In essence calling this method only returns a plan for executing this query which only gets evaluated when you actually start iterating over the results.
- Specified by:
execSelectin interfaceQueryExecution
-
execConstruct
public Model execConstruct()
Description copied from interface:QueryExecutionExecute a CONSTRUCT query- Specified by:
execConstructin interfaceQueryExecution
-
execConstruct
public Model execConstruct(Model model)
Description copied from interface:QueryExecutionExecute a CONSTRUCT query, putting the statements into 'model'.- Specified by:
execConstructin interfaceQueryExecution- Returns:
- Model The model argument for cascaded code.
-
execConstructTriples
public java.util.Iterator<Triple> execConstructTriples()
Description copied from interface:QueryExecutionExecute a CONSTRUCT query, returning the results as an iterator ofTriple.Caution: This method may return duplicate Triples. This method may be useful if you only need the results for stream processing, as it can avoid having to place the results in a Model.
Important: The name of this method is somewhat of a misnomer in that depending on the underlying implementation this typically does not execute the CONSTRUCT query but rather answers a wrapper over an internal data structure that can be used to answer the query. In essence calling this method only returns a plan for executing this query which only gets evaluated when you actually start iterating over the results.
- Specified by:
execConstructTriplesin interfaceQueryExecution- Returns:
- An iterator of Triple objects (possibly containing duplicates) generated by applying the CONSTRUCT template of the query to the bindings in the WHERE clause.
-
execConstructQuads
public java.util.Iterator<Quad> execConstructQuads()
Description copied from interface:QueryExecutionExecute a CONSTRUCT query, returning the results as an iterator ofQuad.Caution: This method may return duplicate Quads. This method may be useful if you only need the results for stream processing, as it can avoid having to place the results in a Model.
- Specified by:
execConstructQuadsin interfaceQueryExecution- Returns:
- An iterator of Quad objects (possibly containing duplicates) generated
by applying the CONSTRUCT template of the query to the bindings in the WHERE clause.
See
QueryExecution.execConstructTriples()for usage and features.
-
execConstructDataset
public Dataset execConstructDataset()
Description copied from interface:QueryExecutionExecute a CONSTRUCT query, putting the statements into 'dataset'. This maybe an extended syntax query (if supported).- Specified by:
execConstructDatasetin interfaceQueryExecution
-
execConstructDataset
public Dataset execConstructDataset(Dataset dataset)
Description copied from interface:QueryExecutionExecute a CONSTRUCT query, putting the statements into 'dataset'. This maybe an extended syntax query (if supported).- Specified by:
execConstructDatasetin interfaceQueryExecution
-
execDescribe
public Model execDescribe()
Description copied from interface:QueryExecutionExecute a DESCRIBE query- Specified by:
execDescribein interfaceQueryExecution
-
execDescribe
public Model execDescribe(Model model)
Description copied from interface:QueryExecutionExecute a DESCRIBE query, putting the statements into 'model'.- Specified by:
execDescribein interfaceQueryExecution- Returns:
- Model The model argument for cascaded code.
-
execDescribeTriples
public java.util.Iterator<Triple> execDescribeTriples()
Description copied from interface:QueryExecutionExecute a DESCRIBE query, returning the results as an iterator ofTriple.Caution: This method may return duplicate Triples. This method may be useful if you only need the results for stream processing, as it can avoid having to place the results in a Model.
Important: The name of this method is somewhat of a misnomer in that depending on the underlying implementation this typically does not execute the DESCRIBE query but rather answers a wrapper over an internal data structure that can be used to answer the query. In essence calling this method only returns a plan for executing this query which only gets evaluated when you actually start iterating over the results.
- Specified by:
execDescribeTriplesin interfaceQueryExecution- Returns:
- An iterator of Triple objects (possibly containing duplicates) generated as the output of the DESCRIBE query.
-
execAsk
public boolean execAsk()
Description copied from interface:QueryExecutionExecute an ASK query- Specified by:
execAskin interfaceQueryExecution
-
execJson
public JsonArray execJson()
Description copied from interface:QueryExecutionExecute a JSON query and return a json array- Specified by:
execJsonin interfaceQueryExecution
-
execJsonItems
public java.util.Iterator<JsonObject> execJsonItems()
Description copied from interface:QueryExecutionExecute a JSON query and return an interator- Specified by:
execJsonItemsin interfaceQueryExecution
-
setTimeout
public void setTimeout(long timeout, java.util.concurrent.TimeUnit timeUnit)Description copied from interface:QueryExecutionSet a timeout on the query execution. Processing will be aborted after the timeout (which starts when the appropriate exec call is made). Not all query execution systems support timeouts. A timeout of less than zero means no timeout.- Specified by:
setTimeoutin interfaceQueryExecution
-
setTimeout
public void setTimeout(long timeout)
Description copied from interface:QueryExecutionSet time, in milliseconds- Specified by:
setTimeoutin interfaceQueryExecution- See Also:
QueryExecution.setTimeout(long, TimeUnit)
-
setTimeout
public void setTimeout(long timeout1, long timeout2)Description copied from interface:QueryExecutionSet time, in milliseconds- Specified by:
setTimeoutin interfaceQueryExecution- See Also:
QueryExecution.setTimeout(long, TimeUnit, long, TimeUnit)
-
setTimeout
public void setTimeout(long timeout1, java.util.concurrent.TimeUnit timeUnit1, long timeout2, java.util.concurrent.TimeUnit timeUnit2)Description copied from interface:QueryExecutionSet timeouts on the query execution; the first timeout refers to time to first result, the second refers to overall query execution after the first result. Processing will be aborted if a timeout expires. Not all query execution systems support timeouts. A timeout of less than zero means no timeout; this can be used for timeout1 or timeout2.- Specified by:
setTimeoutin interfaceQueryExecution
-
getTimeout1
public long getTimeout1()
Description copied from interface:QueryExecutionReturn the first timeout (time to first result), in milliseconds: negative if unset- Specified by:
getTimeout1in interfaceQueryExecution
-
getTimeout2
public long getTimeout2()
Description copied from interface:QueryExecutionReturn the second timeout (overall query execution after first result), in milliseconds: negative if unset- Specified by:
getTimeout2in interfaceQueryExecution
-
getPlan
public Plan getPlan()
-
getContext
public Context getContext()
Description copied from interface:QueryExecutionThe properties associated with a query execution - implementation specific parameters This includes Java objects (so it is not an RDF graph). Keys should be URIs as strings. May be null (this implementation does not provide any configuration).- Specified by:
getContextin interfaceQueryExecution
-
getDataset
public Dataset getDataset()
Description copied from interface:QueryExecutionThe dataset against which the query will execute. May be null, implying it is expected that the query itself has a dataset description.- Specified by:
getDatasetin interfaceQueryExecution
-
getQuery
public Query getQuery()
Description copied from interface:QueryExecutionThe query associated with a query execution. May be null (QueryExecution may have been created by other means)- Specified by:
getQueryin interfaceQueryExecution
-
setInitialBinding
public void setInitialBinding(QuerySolution startSolution)
Description copied from interface:QueryExecutionSet the initial association of variables and values. May not be supported by all QueryExecution implementations.- Specified by:
setInitialBindingin interfaceQueryExecution
-
setInitialBinding
public void setInitialBinding(Binding startSolution)
Description copied from interface:QueryExecutionSet the initial association of variables and values. May not be supported by all QueryExecution implementations.- Specified by:
setInitialBindingin interfaceQueryExecution
-
setInitialBindings
public void setInitialBindings(ResultSet table)
-
-