openllet.examples.TerpExample Maven / Gradle / Ivy
// Copyright (c) 2006 - 2008, Clark & Parsia, LLC.
// This source code is available under the terms of the Affero General Public
// License v3.
//
// Please see LICENSE.txt for full license terms, including the availability of
// proprietary exceptions.
// Questions, comments, or requests for clarification: [email protected]
package openllet.examples;
import openllet.jena.PelletReasonerFactory;
import openllet.query.sparqldl.jena.SparqlDLExecutionFactory;
import openllet.query.sparqlowl.parser.arq.ARQTerpParser;
import openllet.query.sparqlowl.parser.arq.TerpSyntax;
import org.apache.jena.ontology.OntModel;
import org.apache.jena.query.Query;
import org.apache.jena.query.QueryExecution;
import org.apache.jena.query.QueryFactory;
import org.apache.jena.query.ResultSet;
import org.apache.jena.query.ResultSetFormatter;
import org.apache.jena.rdf.model.ModelFactory;
/**
*
* Title: SPARQLDLExample
*
*
* Description: This program shows how to use the Pellet SPARQL-DL engine
*
*
* Copyright: Copyright (c) 2008
*
*
* Company: Clark & Parsia, LLC.
*
*
* @author Markus Stocker
*/
public class TerpExample
{
// The ontology loaded as dataset
private static final String ontology = "file:examples/data/university0-0.owl";
private static final String[] queries = new String[] { "file:examples/data/lubm-query.terp", "file:examples/data/lubm-query3.terp", "file:examples/data/lubm-query5.terp" };
public void run()
{
// register the Terp _parser
ARQTerpParser.registerFactory();
for (final String query : queries)
{
// First create a Jena ontology model backed by the Pellet reasoner
// (note, the Pellet reasoner is required)
final OntModel m = ModelFactory.createOntologyModel(PelletReasonerFactory.THE_SPEC);
// Then read the _data from the file into the ontology model
m.read(ontology);
// Now read the query file into a query object
// Important: specifying that the query is in Terp syntax
final Query q = QueryFactory.read(query, TerpSyntax.getInstance());
// Create a SPARQL-DL query execution for the given query and
// ontology model
final QueryExecution qe = SparqlDLExecutionFactory.create(q, m);
// We want to execute a SELECT query, do it, and return the result set
final ResultSet rs = qe.execSelect();
// There are different things we can do with the result set, for
// instance iterate over it and process the query solutions or, what we
// do here, just print out the results
ResultSetFormatter.out(rs);
// And an empty line to make it pretty
System.out.println();
}
}
public static void main(final String[] args)
{
final TerpExample app = new TerpExample();
app.run();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy