weka.core.StringLocator.java Source code

Java tutorial

Introduction

Here is the source code for weka.core.StringLocator.java

Source

/*
 *   This program 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 3 of the License, or
 *   (at your option) any later version.
 *
 *   This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
 */

/*
 * StringLocator.java
 * Copyright (C) 2005-2012 University of Waikato, Hamilton, New Zealand
 */

package weka.core;

/**
 * This class locates and records the indices of String attributes, recursively
 * in case of Relational attributes. The indices are normally used for copying
 * the Strings from one Instances object to another.
 * 
 * @author fracpete (fracpete at waikato dot ac dot nz)
 * @version $Revision$
 * @see Attribute#STRING
 * @see Attribute#RELATIONAL
 */
public class StringLocator extends AttributeLocator {

    /** for serialization */
    private static final long serialVersionUID = 7805522230268783972L;

    /**
     * initializes the StringLocator with the given data
     * 
     * @param data the data to work on
     */
    public StringLocator(Instances data) {
        super(data, Attribute.STRING);
    }

    /**
     * Initializes the StringLocator with the given data. Checks only the given
     * range.
     * 
     * @param data the data to work on
     * @param fromIndex the first index to inspect (including)
     * @param toIndex the last index to check (including)
     */
    public StringLocator(Instances data, int fromIndex, int toIndex) {
        super(data, Attribute.STRING, fromIndex, toIndex);
    }

    /**
     * Initializes the AttributeLocator with the given data. Checks only the
     * specified attribute indices.
     * 
     * @param data the data to work on
     * @param indices the attribute indices to check
     */
    public StringLocator(Instances data, int[] indices) {
        super(data, Attribute.STRING, indices);
    }

    /**
     * Copies string values contained in the instance copied to a new dataset. The
     * Instance must already be assigned to a dataset. This dataset and the
     * destination dataset must have the same structure.
     * 
     * @param inst the Instance containing the string values to copy.
     * @param destDataset the destination set of Instances
     * @param strAtts an AttributeLocator containing the indices of any string
     *          attributes in the dataset.
     */
    public static void copyStringValues(Instance inst, Instances destDataset, AttributeLocator strAtts) {

        if (inst.dataset() == null) {
            throw new IllegalArgumentException("Instance has no dataset assigned!!");
        } else if (inst.dataset().numAttributes() != destDataset.numAttributes()) {
            throw new IllegalArgumentException("Src and Dest differ in # of attributes: "
                    + inst.dataset().numAttributes() + " != " + destDataset.numAttributes());
        }
        copyStringValues(inst, true, inst.dataset(), strAtts, destDataset, strAtts);
    }

    /**
     * Takes string values referenced by an Instance and copies them from a source
     * dataset to a destination dataset. The instance references are updated to be
     * valid for the destination dataset. The instance may have the structure
     * (i.e. number and attribute position) of either dataset (this affects where
     * references are obtained from). Only works if the number of string
     * attributes is the same in both indices (implicitly these string attributes
     * should be semantically same but just with shifted positions).
     * 
     * @param instance the instance containing references to strings in the source
     *          dataset that will have references updated to be valid for the
     *          destination dataset.
     * @param instSrcCompat true if the instance structure is the same as the
     *          source, or false if it is the same as the destination (i.e. which
     *          of the string attribute indices contains the correct locations for
     *          this instance).
     * @param srcDataset the dataset for which the current instance string
     *          references are valid (after any position mapping if needed)
     * @param srcLoc an AttributeLocator containing the indices of string
     *          attributes in the source datset.
     * @param destDataset the dataset for which the current instance string
     *          references need to be inserted (after any position mapping if
     *          needed)
     * @param destLoc an AttributeLocator containing the indices of string
     *          attributes in the destination datset.
     */
    public static void copyStringValues(Instance instance, boolean instSrcCompat, Instances srcDataset,
            AttributeLocator srcLoc, Instances destDataset, AttributeLocator destLoc) {
        if (srcDataset == destDataset) {
            return;
        }

        if (srcLoc.getAttributeIndices().length != destLoc.getAttributeIndices().length) {
            throw new IllegalArgumentException("Src and Dest string indices differ in length: "
                    + srcLoc.getAttributeIndices().length + " != " + destLoc.getAttributeIndices().length);
        }

        if (srcLoc.getLocatorIndices().length != destLoc.getLocatorIndices().length) {
            throw new IllegalArgumentException("Src and Dest locator indices differ in length: "
                    + srcLoc.getLocatorIndices().length + " != " + destLoc.getLocatorIndices().length);
        }

        for (int i = 0; i < srcLoc.getAttributeIndices().length; i++) {
            int instIndex = instSrcCompat ? srcLoc.getActualIndex(srcLoc.getAttributeIndices()[i])
                    : destLoc.getActualIndex(destLoc.getAttributeIndices()[i]);
            Attribute src = srcDataset.attribute(srcLoc.getActualIndex(srcLoc.getAttributeIndices()[i]));
            Attribute dest = destDataset.attribute(destLoc.getActualIndex(destLoc.getAttributeIndices()[i]));
            if (!instance.isMissing(instIndex)) {
                int valIndex = dest.addStringValue(src, (int) instance.value(instIndex));
                instance.setValue(instIndex, valIndex);
            }
        }

        // recurse if necessary
        int[] srcIndices = srcLoc.getLocatorIndices();
        int[] destIndices = destLoc.getLocatorIndices();
        for (int i = 0; i < srcIndices.length; i++) {
            int index = instSrcCompat ? srcLoc.getActualIndex(srcIndices[i])
                    : destLoc.getActualIndex(destIndices[i]);
            if (instance.isMissing(index)) {
                continue;
            }
            int valueIndex = (int) instance.value(index);
            Instances rel = instSrcCompat ? srcDataset.attribute(index).relation(valueIndex)
                    : destDataset.attribute(index).relation(valueIndex);
            AttributeLocator srcStrAttsNew = srcLoc.getLocator(srcIndices[i]);
            Instances srcDatasetNew = srcStrAttsNew.getData();
            AttributeLocator destStrAttsNew = destLoc.getLocator(destIndices[i]);
            Instances destDatasetNew = destStrAttsNew.getData();
            for (int n = 0; n < rel.numInstances(); n++) {
                copyStringValues(rel.instance(n), instSrcCompat, srcDatasetNew, srcStrAttsNew, destDatasetNew,
                        destStrAttsNew);
            }
        }
    }

    /**
     * Returns the revision string.
     * 
     * @return the revision
     */
    @Override
    public String getRevision() {
        return RevisionUtils.extract("$Revision$");
    }
}