📄 transitiveinfgraph.java
字号:
/******************************************************************
* File: TransitiveInfGraph.java
* Created by: Dave Reynolds
* Created on: 02-Feb-03
*
* (c) Copyright 2003, 2004, 2005, 2006, 2007 Hewlett-Packard Development Company, LP
* [See end of file]
* $Id: TransitiveInfGraph.java,v 1.24 2007/01/02 11:49:43 andy_seaborne 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.
*
* <p>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.</p>
*
* @author <a href="mailto:der@hplb.hpl.hp.com">Dave Reynolds</a>
* @version $Revision: 1.24 $ on $Date: 2007/01/02 11:49:43 $
*/
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.
*/
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.
*/
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.
*/
public ExtendedIterator findWithContinuation(TriplePattern pattern, Finder continuation) {
checkOpen();
if (!isPrepared) prepare();
Finder cascade = transitiveEngine.getFinder(pattern, FinderUtil.cascade(tbox, continuation));
return new UniqueExtendedIterator(cascade.find(pattern));
}
/**
* Returns an iterator over Triples.
*/
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
*/
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.
*/
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.
*/
public void performDelete(Triple t) {
fdata.getGraph().delete(t);
if (isPrepared) {
transitiveEngine.delete(t);
}
}
/**
Answer the InfCapabilities of this InfGraph.
*/
public Capabilities getCapabilities()
{
if (capabilities == null) capabilities = new InfFindSafeCapabilities();
return capabilities;
}
}
/*
* (c) Copyright 2003, 2004, 2005, 2006, 2007 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.
*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -