📄 generictriplematchframe.java
字号:
/******************************************************************
* File: GenericTripleMatchFrame.java
* Created by: Dave Reynolds
* Created on: 07-Aug-2003
*
* (c) Copyright 2003, 2004, 2005, 2006, 2007 Hewlett-Packard Development Company, LP
* [See end of file]
* $Id: GenericTripleMatchFrame.java,v 1.7 2007/01/02 11:48:41 andy_seaborne Exp $
*****************************************************************/
package com.hp.hpl.jena.reasoner.rulesys.impl;
import com.hp.hpl.jena.graph.*;
import com.hp.hpl.jena.reasoner.TriplePattern;
import com.hp.hpl.jena.reasoner.rulesys.Functor;
import com.hp.hpl.jena.reasoner.rulesys.Node_RuleVariable;
/**
* Frame on the choice point stack used to represent the state of some form of triple
* match - this is either a direct graph query or a query to a cached set of results.
* <p>
* This is used in the inner loop of the interpreter and so is a pure data structure
* not an abstract data type and assumes privileged access to the interpreter state.
* </p>
*
* @author <a href="mailto:der@hplb.hpl.hp.com">Dave Reynolds</a>
* @version $Revision: 1.7 $ on $Date: 2007/01/02 11:48:41 $
*/
public class GenericTripleMatchFrame extends GenericChoiceFrame {
/** The variable to the subject of the triple, null if no binding required */
Node_RuleVariable subjectVar;
/** The variable to the predicate of the triple, null if no binding required */
Node_RuleVariable predicateVar;
/** The variable to the subject of the triple, null if no binding required */
Node_RuleVariable objectVar;
/** The functor variable structure to explode the object into, null if not required */
Functor objectFunctor;
/** The goal state being evaluated */
TriplePattern goal;
/**
* Bind the goal variables to the given result triple.
* Returns false if the triple doesn't match the goal (due to a functor match failure).
*/
public boolean bindResult(Triple triple, LPInterpreter interpreter) {
if (objectVar != null) interpreter.bind(objectVar, triple.getObject());
int mark = interpreter.trail.size();
if (objectFunctor != null) {
if (! functorMatch(triple, interpreter)) {
interpreter.unwindTrail(mark);
return false;
}
}
if (subjectVar != null) {
if (! interpreter.unify(subjectVar, triple.getSubject()) ) {
interpreter.unwindTrail(mark);
return false;
}
}
if (predicateVar != null) {
if (! interpreter.unify(predicateVar, triple.getPredicate()) ) {
interpreter.unwindTrail(mark);
return false;
}
}
return true;
}
/**
* Check that the object of a triple match corresponds to the given functor pattern.
* Side effects the variable bindings.
*/
public boolean functorMatch(Triple t, LPInterpreter interpreter) {
Node o = t.getObject();
if (!Functor.isFunctor(o)) return false;
Functor f = (Functor)o.getLiteralValue();
if ( ! f.getName().equals(objectFunctor.getName())) return false;
if ( f.getArgLength() != objectFunctor.getArgLength()) return false;
Node[] fargs = f.getArgs();
Node[] oFargs = objectFunctor.getArgs();
for (int i = 0; i < fargs.length; i++) {
if (!interpreter.unify(oFargs[i], fargs[i])) return false;
}
return true;
}
/**
* Initialize the triple match to preserve the current context of the given
* LPInterpreter and search for the match defined by the current argument registers
* @param intepreter the interpreter instance whose env, trail and arg values are to be preserved
*/
public void init(LPInterpreter interpreter) {
super.init(interpreter);
Node s = LPInterpreter.deref(interpreter.argVars[0]);
subjectVar = (s instanceof Node_RuleVariable) ? (Node_RuleVariable) s : null;
Node p = LPInterpreter.deref(interpreter.argVars[1]);
predicateVar = (p instanceof Node_RuleVariable) ? (Node_RuleVariable) p : null;
Node o = LPInterpreter.deref(interpreter.argVars[2]);
objectVar = (o instanceof Node_RuleVariable) ? (Node_RuleVariable) o : null;
if (Functor.isFunctor(o)) {
objectFunctor = (Functor)o.getLiteralValue();
goal = new TriplePattern(s, p, null);
} else {
objectFunctor = null;
goal = new TriplePattern(s, p, o);
}
}
}
/*
(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 + -