
com.hp.hpl.jena.reasoner.transitiveReasoner.TransitiveInfGraph Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jena Show documentation
Show all versions of jena Show documentation
Jena is a Java framework for building Semantic Web applications. It provides a programmatic environment for RDF, RDFS and OWL, SPARQL and includes a rule-based inference engine.
The newest version!
/******************************************************************
* File: TransitiveInfGraph.java
* Created by: Dave Reynolds
* Created on: 02-Feb-03
*
* (c) Copyright 2003, 2004, 2005, 2006, 2007, 2008, 2009 Hewlett-Packard Development Company, LP
* [See end of file]
* $Id: TransitiveInfGraph.java,v 1.1 2009/06/29 08:55:57 castagna Exp $
*****************************************************************/
package com.hp.hpl.jena.reasoner.transitiveReasoner;
import com.hp.hpl.jena.reasoner.BaseInfGraph;
import com.hp.hpl.jena.reasoner.*;
import com.hp.hpl.jena.graph.*;
import com.hp.hpl.jena.util.iterator.ExtendedIterator;
import com.hp.hpl.jena.util.iterator.UniqueExtendedIterator;
/**
* Implementation of InfGraph used by the TransitiveReasoner.
* This is returned by the TransitiveReasoner when a data graph
* (together with an optional schema) has been bound.
*
* The cached property and class graphs are calculated by the
* reasoner when the schema is bound. If the data graph does not
* include schema information then the caches generated at
* schema binding stage are reused here. Otherwise the caches
* are regenerated.
*
* @author Dave Reynolds
* @version $Revision: 1.1 $ on $Date: 2009/06/29 08:55:57 $
*/
public class TransitiveInfGraph extends BaseInfGraph {
/** The paire of subclass and subproperty lattices */
protected TransitiveEngine transitiveEngine;
/** The graph registered as the schema, if any */
protected Finder tbox = null;
/** The combined data and schema finder */
protected Finder dataFind;
/**
* Constructor. Called by the TransitiveReasoner when it
* is bound to a data graph.
* @param reasoner the parent instance of the transitive reasoner,
* including any precomputed class and property caches
* @param data the data graph being bound in.
*/
public TransitiveInfGraph(Graph data, TransitiveReasoner reasoner) {
super(data, reasoner);
}
/**
* Perform any initial processing and caching. This call is optional. Most
* engines either have negligable set up work or will perform an implicit
* "prepare" if necessary. The call is provided for those occasions where
* substantial preparation work is possible (e.g. running a forward chaining
* rule system) and where an application might wish greater control over when
* this prepration is done.
*/
@Override
public void prepare() {
tbox = ((TransitiveReasoner)reasoner).getTbox();
// Initially just point to the reasoner's precached information
transitiveEngine = new TransitiveEngine(((TransitiveReasoner)reasoner).getSubClassCache().deepCopy(),
((TransitiveReasoner)reasoner).getSubPropertyCache().deepCopy());
// The deepCopies reduce the value of precomputing the closure in the reasoner object
// but enables people to bind the same reasoner to multiple datasets.
// Perhaps need a faster deepcopy
// But need to check if the data graph defines schema data as well
dataFind = transitiveEngine.insert(tbox, fdata);
transitiveEngine.setCaching(true, true);
isPrepared = true;
}
/**
* Return the schema graph, if any, bound into this inference graph.
*/
@Override
public Graph getSchemaGraph() {
if (tbox == null) return null;
if (tbox instanceof FGraph) {
return ((FGraph)tbox).getGraph();
} else {
throw new ReasonerException("Transitive reasoner got into an illegal state");
}
}
/**
* Extended find interface used in situations where the implementator
* may or may not be able to answer the complete query. It will
* attempt to answer the pattern but if its answers are not known
* to be complete then it will also pass the request on to the nested
* Finder to append more results.
* @param pattern a TriplePattern to be matched against the data
* @param continuation either a Finder or a normal Graph which
* will be asked for additional match results if the implementor
* may not have completely satisfied the query.
*/
@Override public ExtendedIterator findWithContinuation(TriplePattern pattern, Finder continuation) {
checkOpen();
if (!isPrepared) prepare();
Finder cascade = transitiveEngine.getFinder(pattern, FinderUtil.cascade(tbox, continuation));
return UniqueExtendedIterator.create( cascade.find(pattern) );
}
/**
* Returns an iterator over Triples.
*/
@Override public ExtendedIterator graphBaseFind(Node subject, Node property, Node object) {
return findWithContinuation(new TriplePattern(subject, property, object), fdata);
}
/**
* Basic pattern lookup interface.
* @param pattern a TriplePattern to be matched against the data
* @return a ExtendedIterator over all Triples in the data set
* that match the pattern
*/
@Override public ExtendedIterator find(TriplePattern pattern) {
return findWithContinuation(pattern, fdata);
}
/**
* Add one triple to the data graph, run any rules triggered by
* the new data item, recursively adding any generated triples.
*/
@Override
public synchronized void performAdd(Triple t) {
if (!isPrepared) prepare();
fdata.getGraph().add(t);
transitiveEngine.add(t);
}
/**
* Removes the triple t (if possible) from the set belonging to this graph.
*/
@Override
public void performDelete(Triple t) {
fdata.getGraph().delete(t);
if (isPrepared) {
transitiveEngine.delete(t);
}
}
/**
Answer the InfCapabilities of this InfGraph.
*/
@Override
public Capabilities getCapabilities()
{
if (capabilities == null) capabilities = new 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.
*/
© 2015 - 2025 Weber Informatics LLC | Privacy Policy