Package org.eclipse.rdf4j.federated
Class QueryManager
java.lang.Object
org.eclipse.rdf4j.federated.QueryManager
QueryManager to manage queries.
a) Management of running queries (abort, finish) b) Factory to create queries
- Author:
- Andreas Schwarte
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
abortQuery
(QueryInfo queryInfo) void
addPrefixDeclaration
(String prefix, String namespace) Register a prefix declaration to be used during query evaluation.findQueryPrefixes
(String queryString) Find all prefixes declared in the queryvoid
finishQuery
(QueryInfo queryInfo) Computes the (incremental) next query identifier.int
protected String
Get the prefix declarations that have to be prepended to the query.protected String
getPrefixDeclarationsCheck
(String queryString) Get the prefix declarations that have to be added while considering prefixes that are already declared in the query.getQueryPlan
(String queryString) Retrieve the query plan for the given query string.void
init
(FedXRepository repo, FederationContext federationContext) boolean
prepareBooleanQuery
(String queryString) Prepare a boolean query which uses the underlying federation to evaluate the query.prepareGraphQuery
(String queryString) Prepare a tuple query which uses the underlying federation to evaluate the query.prepareQuery
(String queryString) Prepare aQuery
which uses the underlying federation to evaluate the SPARQL query.prepareTupleQuery
(String queryString) Prepare a tuple query which uses the underlying federation to evaluate the query.void
registerQuery
(QueryInfo queryInfo) Add the query to the set of running queries, queries are identified via a unique idvoid
shutdown()
-
Constructor Details
-
QueryManager
public QueryManager()
-
-
Method Details
-
init
-
shutdown
public void shutdown() -
registerQuery
Add the query to the set of running queries, queries are identified via a unique id- Parameters:
queryInfo
-
-
getRunningQueries
-
getNumberOfRunningQueries
public int getNumberOfRunningQueries() -
abortQuery
-
finishQuery
-
isRunning
-
addPrefixDeclaration
Register a prefix declaration to be used during query evaluation. If a known prefix is used in a query, it is substituted in the parsing step. If namespace is null, the corresponding entry is removed.- Parameters:
prefix
- a common prefix, e.g. rdfnamespace
- the corresponding namespace, e.g. "http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-
prepareTupleQuery
Prepare a tuple query which uses the underlying federation to evaluate the query.The queryString is modified to use the declared PREFIX declarations, see
FedXConfig.getPrefixDeclarations()
for details.- Parameters:
queryString
-- Returns:
- the prepared tuple query
- Throws:
MalformedQueryException
-
prepareGraphQuery
Prepare a tuple query which uses the underlying federation to evaluate the query.The queryString is modified to use the declared PREFIX declarations, see
FedXConfig.getPrefixDeclarations()
for details.- Parameters:
queryString
-- Returns:
- the prepared graph query
- Throws:
MalformedQueryException
-
prepareBooleanQuery
Prepare a boolean query which uses the underlying federation to evaluate the query.The queryString is modified to use the declared PREFIX declarations, see
FedXConfig.getPrefixDeclarations()
for details.- Parameters:
queryString
-- Returns:
- the prepared
BooleanQuery
- Throws:
MalformedQueryException
-
prepareQuery
Prepare aQuery
which uses the underlying federation to evaluate the SPARQL query.The queryString is modified to use the declared PREFIX declarations, see
FedXConfig.getPrefixDeclarations()
for details.- Parameters:
queryString
-- Returns:
- the prepared
Query
- Throws:
MalformedQueryException
-
getQueryPlan
Retrieve the query plan for the given query string.- Parameters:
queryString
-- Returns:
- the query plan
- Throws:
MalformedQueryException
FedXException
-
getNextQueryId
Computes the (incremental) next query identifier. Implementation is thread safe and synchronized.- Returns:
- the next query identifier
-
getPrefixDeclarations
Get the prefix declarations that have to be prepended to the query.- Returns:
- the prefix declarations
-
getPrefixDeclarationsCheck
Get the prefix declarations that have to be added while considering prefixes that are already declared in the query. The issue here is that duplicate declaration causes exceptions in Sesame- Parameters:
queryString
-- Returns:
- the prefix declarations
-
findQueryPrefixes
Find all prefixes declared in the query- Parameters:
queryString
-- Returns:
- the prefixes
-