
com.hp.hpl.jena.reasoner.transitiveReasoner.TransitiveReasoner Maven / Gradle / Ivy
Show all versions of jena Show documentation
/******************************************************************
* File: TransitiveReasoner.java
* Created by: Dave Reynolds
* Created on: 16-Jan-03
*
* (c) Copyright 2003, 2004, 2005, 2006, 2007, 2008, 2009 Hewlett-Packard Development Company, LP
* [See end of file]
* $Id: TransitiveReasoner.java,v 1.1 2009/06/29 08:55:57 castagna Exp $
*****************************************************************/
package com.hp.hpl.jena.reasoner.transitiveReasoner;
import com.hp.hpl.jena.rdf.model.*;
import com.hp.hpl.jena.reasoner.*;
import com.hp.hpl.jena.graph.*;
import com.hp.hpl.jena.vocabulary.RDFS;
import com.hp.hpl.jena.vocabulary.ReasonerVocabulary;
/**
* A simple "reasoner" used to help with API development.
* This reasoner caches a transitive closure of the subClass and
* subProperty graphs. The generated infGraph allows both the direct
* and closed versions of these properties to be retrieved. The cache is
* built when the tbox is bound in but if the final data graph
* contains additional subProperty/subClass declarations then the
* cache has to be rebuilt.
*
* The triples in the tbox (if present) will also be included
* in any query. Any of tbox or data graph are allowed to be null.
*
* @author Dave Reynolds
* @version $Revision: 1.1 $ on $Date: 2009/06/29 08:55:57 $
*/
public class TransitiveReasoner implements Reasoner {
/** The precomputed cache of the subClass graph */
protected TransitiveGraphCache subClassCache;
/** The precomputed cache of the subProperty graph */
protected TransitiveGraphCache subPropertyCache;
/** The graph registered as the schema, if any */
protected Finder tbox = null;
/** The direct (minimal) version of the subPropertyOf property */
public static final Node directSubPropertyOf =
ReasonerRegistry.makeDirect(RDFS.Nodes.subPropertyOf);
/** The direct (minimal) version of the subClassOf property */
public static final Node directSubClassOf =
ReasonerRegistry.makeDirect(RDFS.Nodes.subClassOf);
/** The normal subPropertyOf property */
public static final Node subPropertyOf = RDFS.Nodes.subPropertyOf;
/** The normal subClassOf property */
public static final Node subClassOf = RDFS.Nodes.subClassOf;
/** The graph capabilities of the infgraphs generated by this reasoner */
protected Capabilities capabilities;
/** Constructor */
public TransitiveReasoner() {
subClassCache = new TransitiveGraphCache(directSubClassOf, subClassOf);
subPropertyCache = new TransitiveGraphCache(directSubPropertyOf, subPropertyOf);
}
/**
* Private constructor used by bindSchema when
* returning a partially bound reasoner instance.
*/
protected TransitiveReasoner(Finder tbox,
TransitiveGraphCache subClassCache,
TransitiveGraphCache subPropertyCache) {
this.tbox = tbox;
this.subClassCache = subClassCache;
this.subPropertyCache = subPropertyCache;
}
/**
* Return a description of the capabilities of this reasoner encoded in
* RDF. These capabilities may be static or may depend on configuration
* information supplied at construction time. May be null if there are
* no useful capabilities registered.
*/
public Model getReasonerCapabilities() {
return TransitiveReasonerFactory.theInstance().getCapabilities();
}
/**
* Add a configuration description for this reasoner into a partial
* configuration specification model.
* @param configSpec a Model into which the configuration information should be placed
* @param base the Resource to which the configuration parameters should be added.
*/
public void addDescription(Model configSpec, Resource base) {
// No configuration
}
/**
* Determine whether the given property is recognized and treated specially
* by this reasoner. This is a convenience packaging of a special case of getCapabilities.
* @param property the property which we want to ask the reasoner about, given as a Node since
* this is part of the SPI rather than API
* @return true if the given property is handled specially by the reasoner.
*/
public boolean supportsProperty(Property property) {
ReasonerFactory rf = TransitiveReasonerFactory.theInstance();
Model caps = rf.getCapabilities();
Resource root = caps.getResource(rf.getURI());
return caps.contains(root, ReasonerVocabulary.supportsP, property);
}
/**
* Extracts all of the subClass and subProperty declarations from
* the given schema/tbox and caches the resultant graphs.
* It can only be used once, can't stack up multiple tboxes this way.
* This limitation could be lifted - the only difficulty is the need to
* reprocess all the earlier tboxes if a new subPropertyOf subPropertyOf
* subClassOf is discovered.
* @param tbox schema containing the property and class declarations
*/
public Reasoner bindSchema(Graph tbox) throws ReasonerException {
return bindSchema(new FGraph(tbox));
}
/**
* Extracts all of the subClass and subProperty declarations from
* the given schema/tbox and caches the resultant graphs.
* It can only be used once, can't stack up multiple tboxes this way.
* This limitation could be lifted - the only difficulty is the need to
* reprocess all the earlier tboxes if a new subPropertyOf subPropertyOf
* subClassOf is discovered.
* @param tbox schema containing the property and class declarations
*/
public Reasoner bindSchema(Model tbox) throws ReasonerException {
return bindSchema(new FGraph(tbox.getGraph()));
}
/**
* Extracts all of the subClass and subProperty declarations from
* the given schema/tbox and caches the resultant graphs.
* It can only be used once, can't stack up multiple tboxes this way.
* This limitation could be lifted - the only difficulty is the need to
* reprocess all the earlier tboxes if a new subPropertyOf subPropertyOf
* subClassOf is discovered.
* @param tbox schema containing the property and class declarations
*/
Reasoner bindSchema(Finder tbox) throws ReasonerException {
if (this.tbox != null) {
throw new ReasonerException("Attempt to bind multiple rulesets - disallowed for now");
}
TransitiveGraphCache sCc = new TransitiveGraphCache(directSubClassOf, subClassOf);
TransitiveGraphCache sPc = new TransitiveGraphCache(directSubPropertyOf, subPropertyOf);
TransitiveEngine.cacheSubPropUtility(tbox, sPc);
TransitiveEngine.cacheSubClassUtility(tbox, sPc, sCc);
return new TransitiveReasoner(tbox, sCc, sPc);
}
/**
* Attach the reasoner to a set of RDF ddata to process.
* The reasoner may already have been bound to specific rules or ontology
* axioms (encoded in RDF) through earlier bindRuleset calls.
* @param data the RDF data to be processed, some reasoners may restrict
* the range of RDF which is legal here (e.g. syntactic restrictions in OWL).
* @return an inference graph through which the data+reasoner can be queried.
* @throws ReasonerException if the data is ill-formed according to the
* constraints imposed by this reasoner.
*/
public InfGraph bind(Graph data) throws ReasonerException {
return new TransitiveInfGraph(data, this);
}
/**
* Switch on/off drivation logging.
* If set to true then the InfGraph created from the bind operation will start
* life with recording of derivations switched on. This is currently only of relevance
* to rule-based reasoners.
*
* Default - false.
*/
public void setDerivationLogging(boolean logOn) {
// Irrelevant to this reasoner
}
/**
* Set a configuration paramter for the reasoner. In the case of the this
* reasoner there are no configuration parameters and this method is simply
* here to meet the interfaces specification
*
* @param parameter the property identifying the parameter to be changed
* @param value the new value for the parameter, typically this is a wrapped
* java object like Boolean or Integer.
*/
public void setParameter(Property parameter, Object value) {
throw new IllegalParameterException(parameter.toString());
}
/**
* Accessor used during infgraph construction - return the cached
* version of the subProperty lattice.
*/
public TransitiveGraphCache getSubPropertyCache() {
return subPropertyCache;
}
/**
* Accessor used during infgraph construction - return the cached
* version of the subClass lattice.
*/
public TransitiveGraphCache getSubClassCache() {
return subClassCache;
}
/**
* Accessor used during infgraph construction - return the partially
* bound tbox, if any.
*/
public Finder getTbox() {
return tbox;
}
/**
* Return the Jena Graph Capabilties that the inference graphs generated
* by this reasoner are expected to conform to.
*/
public Capabilities getGraphCapabilities() {
if (capabilities == null) {
capabilities = new BaseInfGraph.InfFindSafeCapabilities();
}
return capabilities;
}
}
/*
(c) Copyright 2003, 2004, 2005, 2006, 2007, 2008, 2009 Hewlett-Packard Development Company, LP
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. The name of the author may not be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/