📄 lpbindingenvironment.java
字号:
/******************************************************************
* File: LPBindingEnvironment.java
* Created by: Dave Reynolds
* Created on: 25-Jul-2003
*
* (c) Copyright 2003, 2004, 2005, 2006, 2007 Hewlett-Packard Development Company, LP
* [See end of file]
* $Id: LPBindingEnvironment.java,v 1.6 2007/01/02 11:48:42 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.BindingEnvironment;
import com.hp.hpl.jena.reasoner.rulesys.Node_RuleVariable;
/**
* Implementation of the binding environment interface for use in LP
* backward rules.
*
* @author <a href="mailto:der@hplb.hpl.hp.com">Dave Reynolds</a>
* @version $Revision: 1.6 $ on $Date: 2007/01/02 11:48:42 $
*/
public class LPBindingEnvironment implements BindingEnvironment {
/** The interpreter which holds the context for this environment */
protected LPInterpreter interpreter;
/**
* Constructor.
*/
public LPBindingEnvironment(LPInterpreter interpeter) {
this.interpreter = interpeter;
}
/**
* Return the most ground version of the node. If the node is not a variable
* just return it, if it is a varible bound in this environment return the binding,
* if it is an unbound variable return the variable.
*/
public Node getGroundVersion(Node node) {
return LPInterpreter.deref(node);
}
/**
* Bind a variable in the current envionment to the given value.
* Checks that the new binding is compatible with any current binding.
* @param var a Node_RuleVariable defining the variable to bind
* @param value the value to bind
* @return false if the binding fails
*/
public boolean bind(Node var, Node value) {
Node dvar = var;
if (dvar instanceof Node_RuleVariable) dvar = ((Node_RuleVariable)dvar).deref();
if (dvar instanceof Node_RuleVariable) {
interpreter.bind(dvar, value);
return true;
} else {
return var.sameValueAs(value);
}
}
/**
* Instantiate a triple pattern against the current environment.
* This version handles unbound varibles by turning them into bNodes.
* @param clause the triple pattern to match
* @param env the current binding environment
* @return a new, instantiated triple
*/
public Triple instantiate(TriplePattern pattern) {
Node s = getGroundVersion(pattern.getSubject());
if (s.isVariable()) s = Node.createAnon();
Node p = getGroundVersion(pattern.getPredicate());
if (p.isVariable()) p = Node.createAnon();
Node o = getGroundVersion(pattern.getObject());
if (o.isVariable()) o = Node.createAnon();
return new Triple(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 + -