/* * This file is part of JGAP. * * JGAP offers a dual license model containing the LGPL as well as the MPL. * * For licensing information please see the file license.txt included with JGAP * or have a look at the top of class org.jgap.Chromosome which representatively * includes the JGAP license policy applicable for any file delivered with JGAP. */ package org.jgap.gp.function; import org.apache.commons.lang.builder.*; import org.jgap.*; import org.jgap.gp.*; import org.jgap.gp.impl.*; import org.jgap.util.*; /** * Stores a value in the internal memory but adds the value already stored * in the target memory cell before storing it. * * @author Klaus Meffert * @since 3.2 */ public class AddAndStoreTerminal extends CommandGene implements ICloneable { /** String containing the CVS revision. Read out via reflection!*/ private final static String CVS_REVISION = "$Revision: 1.4 $"; /** * Symbolic name of the storage. Must correspond with a chosen name for * ReadTerminalCommand. */ private String m_storageName; private Class m_type; /** * Constructor. * * @param a_conf GPConfiguration * @param a_storageName String * @param a_childType Class * @throws InvalidConfigurationException * * @author Klaus Meffert * @since 3.2 */ public AddAndStoreTerminal(final GPConfiguration a_conf, String a_storageName, Class a_childType) throws InvalidConfigurationException { this(a_conf, a_storageName, a_childType, 0, 0); } /** * Allows setting a sub type and sub return type. * * @param a_conf GPConfiguration * @param a_storageName String * @param a_childType Class * @param a_subChildType int * @param a_subReturnType int * @throws InvalidConfigurationException * * @author Klaus Meffert * @since 3.2 */ public AddAndStoreTerminal(final GPConfiguration a_conf, String a_storageName, Class a_childType, int a_subReturnType, int a_subChildType) throws InvalidConfigurationException { super(a_conf, 1, CommandGene.VoidClass, a_subReturnType, new int[] {a_subChildType}); m_type = a_childType; if (a_storageName == null || a_storageName.length() < 1) { throw new IllegalArgumentException("Memory name must not be empty!"); } m_storageName = a_storageName; } public String toString() { return "addstore(" + m_storageName + ", &1)"; } /** * @return textual name of this command * * @author Klaus Meffert * @since 3.2 */ public String getName() { return "Add+Store Terminal"; } public void execute_void(ProgramChromosome c, int n, Object[] args) { check(c); if (m_type == CommandGene.IntegerClass) { int value = c.execute_int(n, 0, args); Integer oldValue = (Integer) getGPConfiguration().readFromMemoryIfExists( m_storageName); if (oldValue != null) { value = value + oldValue.intValue(); } // Store in memory. // ---------------- getGPConfiguration().storeInMemory(m_storageName, new Integer(value)); } else if (m_type == CommandGene.LongClass) { long value = c.execute_long(n, 0, args); Long oldValue = (Long) getGPConfiguration().readFromMemoryIfExists( m_storageName); if (oldValue != null) { value = value + oldValue.longValue(); } getGPConfiguration().storeInMemory(m_storageName, new Long(value)); } else if (m_type == CommandGene.DoubleClass) { double value = c.execute_double(n, 0, args); Double oldValue = (Double) getGPConfiguration().readFromMemoryIfExists( m_storageName); if (oldValue != null) { value = value + oldValue.doubleValue(); } getGPConfiguration().storeInMemory(m_storageName, new Double(value)); } else if (m_type == CommandGene.FloatClass) { float value = c.execute_float(n, 0, args); Float oldValue = (Float) getGPConfiguration().readFromMemoryIfExists( m_storageName); if (oldValue != null) { value = value + oldValue.floatValue(); } getGPConfiguration().storeInMemory(m_storageName, new Float(value)); } else { throw new IllegalStateException("Type " + m_type + " unknown"); } } public boolean isAffectGlobalState() { return true; } public boolean isValid(ProgramChromosome a_program) { return a_program.getIndividual().getCommandOfClass(0, ReadTerminal.class) > 0; } /** * Determines which type a specific child of this command has. * * @param a_ind ignored here * @param a_chromNum index of child * @return type of the a_chromNum'th child * * @author Klaus Meffert * @since 3.2 */ public Class getChildType(IGPProgram a_ind, int a_chromNum) { return m_type; } /** * The compareTo-method. * * @param a_other the other object to compare * @return -1, 0, 1 * * @author Klaus Meffert * @since 3.2 */ public int compareTo(Object a_other) { int result = super.compareTo(a_other); if (result != 0) { return result; } AddAndStoreTerminal other = (AddAndStoreTerminal) a_other; return new CompareToBuilder() .append(m_storageName, other.m_storageName) .append(m_type, other.m_type) .toComparison(); } /** * The equals-method. * * @param a_other the other object to compare * @return true if the objects are seen as equal * * @author Klaus Meffert * @since 3.2 */ public boolean equals(Object a_other) { try { AddAndStoreTerminal other = (AddAndStoreTerminal) a_other; return super.equals(a_other) && new EqualsBuilder() .append(m_storageName, other.m_storageName) .append(m_type, other.m_type) .isEquals(); } catch (ClassCastException cex) { return false; } } /** * @return deep clone of this instance * * @author Klaus Meffert * @since 3.2 */ public Object clone() { try { AddAndStoreTerminal result = new AddAndStoreTerminal(getGPConfiguration(), m_storageName, m_type, getSubReturnType(), getSubChildType(0)); return result; } catch (Throwable t) { throw new CloneException(t); } } }