![JAR search and dependency download from the Maven repository](/logo.png)
ubc.cs.JLog.Parser.pGenericPredicateEntry Maven / Gradle / Ivy
/*
This file is part of JLog.
Created by Glendon Holst for Alan Mackworth and the
"Computational Intelligence: A Logical Approach" text.
Copyright 1998, 2000, 2002 by University of British Columbia and
Alan Mackworth.
This notice must remain in all files which belong to, or are derived
from JLog.
Check or
for further information
about JLog, or to contact the authors.
JLog is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
JLog is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with JLog; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
URLs: or
*/
//#########################################################################
// GenericPredicateEntry
//#########################################################################
package ubc.cs.JLog.Parser;
import java.lang.*;
import java.lang.reflect.*;
import java.util.*;
import ubc.cs.JLog.Terms.*;
/**
* Dynamically constructs the iPredicate
term from a description of the name,
* arity, and class name for the associated predicate class. It is suitable for predicates
* constructed directly from the jCompoundTerm
passed into
* createPredicate
.
*
* @author Glendon Holst
* @version %I%, %G%
*/
public class pGenericPredicateEntry extends pPredicateEntry
{
protected final static Class[][] constructor_params_arrays = new Class[][] {new Class[] {},
new Class[] {jTerm.class}, new Class[] {jTerm.class,jTerm.class},
new Class[] {jTerm.class,jTerm.class,jTerm.class},
new Class[] {jTerm.class,jTerm.class,jTerm.class,jTerm.class}};
protected Class predicate_class;
public pGenericPredicateEntry(String name,int arity,String classname )
{
super(name,arity);
if (arity < 0)
throw new InvalidGenericPredicateEntryException("Arity must be a fixed, positive value");
try
{
predicate_class = Class.forName(classname);
}
catch (Exception e)
{
throw new InvalidGenericPredicateEntryException("Predicate Class not found: "+classname);
}
};
public pGenericPredicateEntry(String name,int arity,Class p_class )
{
super(name,arity);
if (arity < 0)
throw new InvalidGenericPredicateEntryException("Arity must be a fixed, positive value");
predicate_class = p_class;
};
public iPredicate createPredicate(jCompoundTerm cterm)
{
try
{Constructor pred_cons = null;
iPredicate pred = null;
pred_cons = predicate_class.getConstructor(getConstructorParamsArray());
pred = (iPredicate) pred_cons.newInstance(getConstructorArgsArray(cterm));
return pred;
}
catch (Exception e)
{
throw new InvalidGenericPredicateEntryException("Predicate construction failed");
}
};
protected final Class[] getConstructorParamsArray()
{
if (arity >= 0 && arity <= 4)
return constructor_params_arrays[arity];
else
{Class[] params = new Class[arity];
int i;
for (i = 0; i < arity; i++)
params[i] = jTerm.class;
return params;
}
};
protected final Object[] getConstructorArgsArray(jCompoundTerm cterm)
{Object[] args = new Object[arity];
int i;
for (i = 0; i < arity; i++)
args[i] = cterm.elementAt(i);
return args;
};
};
class InvalidGenericPredicateEntryException extends RuntimeException
{
public InvalidGenericPredicateEntryException() {};
public InvalidGenericPredicateEntryException(String s) {super(s);};
};
© 2015 - 2025 Weber Informatics LLC | Privacy Policy