All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mindswap.pellet.examples.SPARQLDLExample 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 org.mindswap.pellet.examples;

import org.mindswap.pellet.jena.PelletReasonerFactory;

import com.clarkparsia.pellet.sparqldl.jena.SparqlDLExecutionFactory;
import com.hp.hpl.jena.ontology.OntModel;
import com.hp.hpl.jena.query.Query;
import com.hp.hpl.jena.query.QueryExecution;
import com.hp.hpl.jena.query.QueryFactory;
import com.hp.hpl.jena.query.ResultSet;
import com.hp.hpl.jena.query.ResultSetFormatter;
import com.hp.hpl.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 SPARQLDLExample { // The ontology loaded as dataset private static final String ontology = "file:examples/data/university0-0.owl"; private static final String[] queries = new String[] { // One of the original LUBM queries "file:examples/data/lubm-query4.sparql", // A SPARQL-DL query "file:examples/data/lubm-sparql-dl.sparql", // A SPARQL-DL with the SPARQL-DL extensions vocabulary "file:examples/data/lubm-sparql-dl-extvoc.sparql" }; public void run() { for ( int i = 0; i < queries.length ; i++ ) { String query = queries[i]; // First create a Jena ontology model backed by the Pellet reasoner // (note, the Pellet reasoner is required) 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 Query q = QueryFactory.read( query ); // Create a SPARQL-DL query execution for the given query and // ontology model QueryExecution qe = SparqlDLExecutionFactory.create( q, m ); // We want to execute a SELECT query, do it, and return the result set ResultSet rs = qe.execSelect(); // Print the query for better understanding System.out.println(q.toString()); // 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(String[] args) { SPARQLDLExample app = new SPARQLDLExample(); app.run(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy