blob: 2dfae3f91571320cd856db350335a0f29b5e1104 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import java.util.List;
import org.apache.accumulo.core.client.AccumuloException;
import org.apache.accumulo.core.client.AccumuloSecurityException;
import org.apache.accumulo.core.client.TableNotFoundException;
import org.apache.commons.lang.Validate;
import org.apache.hadoop.conf.Configuration;
import org.apache.log4j.Logger;
import org.apache.rya.indexing.accumulo.AccumuloIndexingConfiguration;
import org.apache.rya.indexing.accumulo.ConfigUtils;
import org.apache.rya.sail.config.RyaSailFactory;
import org.eclipse.rdf4j.query.BindingSet;
import org.eclipse.rdf4j.query.MalformedQueryException;
import org.eclipse.rdf4j.query.QueryEvaluationException;
import org.eclipse.rdf4j.query.QueryLanguage;
import org.eclipse.rdf4j.query.QueryResultHandlerException;
import org.eclipse.rdf4j.query.TupleQuery;
import org.eclipse.rdf4j.query.TupleQueryResultHandler;
import org.eclipse.rdf4j.query.TupleQueryResultHandlerException;
import org.eclipse.rdf4j.query.Update;
import org.eclipse.rdf4j.query.UpdateExecutionException;
import org.eclipse.rdf4j.repository.RepositoryException;
import org.eclipse.rdf4j.repository.sail.SailRepository;
import org.eclipse.rdf4j.repository.sail.SailRepositoryConnection;
import org.eclipse.rdf4j.sail.Sail;
public class EntityDirectExample {
private static final Logger log = Logger.getLogger(EntityDirectExample.class);
//
// Connection configuration parameters
//
private static final boolean USE_MOCK_INSTANCE = true;
private static final boolean PRINT_QUERIES = true;
private static final String INSTANCE = "instance";
private static final String RYA_TABLE_PREFIX = "x_test_triplestore_";
private static final String AUTHS = "U";
public static void main(final String[] args) throws Exception {
final Configuration conf = getConf();
conf.setBoolean(ConfigUtils.DISPLAY_QUERY_PLAN, PRINT_QUERIES);
log.info("Creating the tables as root.");
SailRepository repository = null;
SailRepositoryConnection conn = null;
try {
log.info("Connecting to Indexing Sail Repository.");
final Sail extSail = RyaSailFactory.getInstance(conf);
repository = new SailRepository(extSail);
conn = repository.getConnection();
log.info("Running SPARQL Example: Add and Delete");
testAddAndDelete(conn);
log.info("Running SAIL/SPARQL Example: Add and Temporal Search");
testAddAndTemporalSearchWithPCJ(conn);
} finally {
log.info("Shutting down");
closeQuietly(conn);
closeQuietly(repository);
}
}
private static void closeQuietly(final SailRepository repository) {
if (repository != null) {
try {
repository.shutDown();
} catch (final RepositoryException e) {
// quietly absorb this exception
}
}
}
private static void closeQuietly(final SailRepositoryConnection conn) {
if (conn != null) {
try {
conn.close();
} catch (final RepositoryException e) {
// quietly absorb this exception
}
}
}
public static void testAddAndDelete(final SailRepositoryConnection conn) throws MalformedQueryException,
RepositoryException, UpdateExecutionException, QueryEvaluationException, TupleQueryResultHandlerException,
AccumuloException, AccumuloSecurityException, TableNotFoundException {
// Add data
String query = "INSERT DATA\n"//
+ "{ GRAPH <http://updated/test> {\n"//
+ " <http://acme.com/people/Mike> " //
+ " <http://acme.com/actions/likes> \"A new book\" ;\n"//
+ " <http://acme.com/actions/likes> \"Avocados\" .\n" + "} }";
log.info("Performing Query");
Update update = conn.prepareUpdate(QueryLanguage.SPARQL, query);
update.execute();
query = "select ?x {GRAPH <http://updated/test> {?x <http://acme.com/actions/likes> \"A new book\" . "//
+ " ?x <http://acme.com/actions/likes> \"Avocados\" }}";
final CountingResultHandler resultHandler = new CountingResultHandler();
TupleQuery tupleQuery = conn.prepareTupleQuery(QueryLanguage.SPARQL, query);
tupleQuery.evaluate(resultHandler);
log.info("Result count : " + resultHandler.getCount());
Validate.isTrue(resultHandler.getCount() == 1);
resultHandler.resetCount();
// Delete Data
query = "DELETE DATA\n" //
+ "{ GRAPH <http://updated/test> {\n"
+ " <http://acme.com/people/Mike> <http://acme.com/actions/likes> \"A new book\" ;\n"
+ " <http://acme.com/actions/likes> \"Avocados\" .\n" + "}}";
update = conn.prepareUpdate(QueryLanguage.SPARQL, query);
update.execute();
query = "select ?x {GRAPH <http://updated/test> {?x <http://acme.com/actions/likes> \"A new book\" . "//
+ " ?x <http://acme.com/actions/likes> \"Avocados\" }}";
tupleQuery = conn.prepareTupleQuery(QueryLanguage.SPARQL, query);
tupleQuery.evaluate(resultHandler);
log.info("Result count : " + resultHandler.getCount());
Validate.isTrue(resultHandler.getCount() == 0);
}
private static void testAddAndTemporalSearchWithPCJ(final SailRepositoryConnection conn) throws Exception {
// create some resources and literals to make statements out of
final String sparqlInsert = "PREFIX pref: <http://www.model/pref#> \n"
+ "INSERT DATA {\n" //
+ "GRAPH <http://updated/test> {\n"
+ "<urn:Bob> a pref:Person ;\n" //
+ " pref:hasProperty1 'property1' ;\n" // one second
+ " pref:hasProperty2 'property2' ;\n" // 2 seconds
+ " pref:hasProperty3 'property3' .\n" // 3 seconds
+ "<urn:Fred> a pref:Person ; \n" //
+ " pref:hasProperty4 'property4' ; \n" //
+ " pref:hasProperty5 'property5' ; \n" //
+ "}}";
final Update update = conn.prepareUpdate(QueryLanguage.SPARQL, sparqlInsert);
update.execute();
String queryString = "PREFIX pref: <http://www.model/pref#> \n" //
+ "SELECT ?x ?z \n" //
+ "WHERE { \n"
+ " ?x a ?z. \n"
+ " ?x pref:hasProperty1 'property1' . \n"//
+ " ?x pref:hasProperty2 'property2' . \n"//
+ " ?x pref:hasProperty3 'property3' . \n"//
+ "}";//
TupleQuery tupleQuery = conn.prepareTupleQuery(QueryLanguage.SPARQL, queryString);
CountingResultHandler tupleHandler = new CountingResultHandler();
tupleQuery.evaluate(tupleHandler);
log.info("Result count : " + tupleHandler.getCount());
Validate.isTrue(tupleHandler.getCount() == 1);
Validate.isTrue(tupleHandler.getBsSize() == 2);
queryString = "PREFIX pref: <http://www.model/pref#> \n" //
+ "SELECT ?x ?w ?z \n" //
+ "WHERE { \n"
+ " ?x a ?z. \n"
+ " ?x pref:hasProperty4 'property4' . \n"//
+ " ?x pref:hasProperty5 ?w . \n"//
+ "}";//
tupleQuery = conn.prepareTupleQuery(QueryLanguage.SPARQL, queryString);
tupleHandler = new CountingResultHandler();
tupleQuery.evaluate(tupleHandler);
log.info("Result count : " + tupleHandler.getCount());
Validate.isTrue(tupleHandler.getCount() == 1);
Validate.isTrue(tupleHandler.getBsSize() == 3);
queryString = "PREFIX pref: <http://www.model/pref#> "
+ "SELECT ?v ?w ?x ?y ?z "
+ "WHERE { "
+ " ?w a ?z . "
+ " ?w pref:hasProperty1 ?v . "
+ " ?w pref:hasProperty2 'property2' . "
+ " ?w pref:hasProperty3 'property3' . "
+ " ?x a ?z . "
+ " ?x pref:hasProperty4 'property4' . "
+ " ?x pref:hasProperty5 ?y . "
+ "}";
tupleQuery = conn.prepareTupleQuery(QueryLanguage.SPARQL, queryString);
tupleHandler = new CountingResultHandler();
tupleQuery.evaluate(tupleHandler);
log.info("Result count : " + tupleHandler.getCount());
Validate.isTrue(tupleHandler.getCount() == 1);
Validate.isTrue(tupleHandler.getBsSize() == 5);
}
private static Configuration getConf() {
return AccumuloIndexingConfiguration.builder()
.setUseMockAccumulo(USE_MOCK_INSTANCE)
.setAuths(AUTHS)
.setAccumuloUser("root")
.setAccumuloPassword("")
.setAccumuloInstance(INSTANCE)
.setRyaPrefix(RYA_TABLE_PREFIX)
.setUseAccumuloEntityIndex(true)
.build();
}
private static class CountingResultHandler implements TupleQueryResultHandler {
private int count = 0;
private int bindingSize = 0;
private boolean bsSizeSet = false;
public int getCount() {
return count;
}
public int getBsSize() {
return bindingSize;
}
public void resetBsSize() {
bindingSize = 0;
bsSizeSet = false;
}
public void resetCount() {
this.count = 0;
}
@Override
public void startQueryResult(final List<String> arg0) throws TupleQueryResultHandlerException {
}
@Override
public void handleSolution(final BindingSet arg0) throws TupleQueryResultHandlerException {
count++;
if(!bsSizeSet) {
bindingSize = arg0.size();
bsSizeSet = true;
}
System.out.println(arg0);
}
@Override
public void endQueryResult() throws TupleQueryResultHandlerException {
}
@Override
public void handleBoolean(final boolean arg0) throws QueryResultHandlerException {
}
@Override
public void handleLinks(final List<String> arg0) throws QueryResultHandlerException {
}
}
}