de.unisb.cs.st.javaslicer.common.classRepresentation.instructions.MultiANewArrayInstruction2.java Source code

Java tutorial

Introduction

Here is the source code for de.unisb.cs.st.javaslicer.common.classRepresentation.instructions.MultiANewArrayInstruction2.java

Source

/** License information:
 *    Component: javaslicer-common
 *    Package:   de.unisb.cs.st.javaslicer.common.classRepresentation.instructions
 *    Class:     MultiANewArrayInstruction
 *    Filename:  javaslicer-common/src/main/java/de/unisb/cs/st/javaslicer/common/classRepresentation/instructions/MultiANewArrayInstruction.java
 *
 * This file is part of the JavaSlicer tool, developed by Clemens Hammacher at Saarland University.
 * See http://www.st.cs.uni-saarland.de/javaslicer/ for more information.
 *
 * JavaSlicer 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.
 *
 * JavaSlicer 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 JavaSlicer. If not, see <http://www.gnu.org/licenses/>.
 */
package de.unisb.cs.st.javaslicer.common.classRepresentation.instructions;

import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.util.Arrays;

import org.objectweb.asm.Opcodes;

import de.hammacher.util.StringCacheInput;
import de.hammacher.util.StringCacheOutput;
import de.hammacher.util.streams.OptimizedDataInputStream;
import de.hammacher.util.streams.OptimizedDataOutputStream;
import de.unisb.cs.st.javaslicer.common.classRepresentation.InstructionInstanceFactory;
import de.unisb.cs.st.javaslicer.common.classRepresentation.InstructionInstanceInfo;
import de.unisb.cs.st.javaslicer.common.classRepresentation.InstructionType;
import de.unisb.cs.st.javaslicer.common.classRepresentation.ReadMethod;
import de.unisb.cs.st.javaslicer.common.classRepresentation.ReadMethod.MethodReadInformation;
import de.unisb.cs.st.javaslicer.common.classRepresentation.TraceIterator;
import de.unisb.cs.st.javaslicer.common.exceptions.TracerException;

/**
 * Class representing a MULTIANEWARRAY instruction.
 *
 * @author Clemens Hammacher
 */
public class MultiANewArrayInstruction2 extends AbstractInstruction {

    public static class MultiANewArrayInstrInstanceInfo implements InstructionInstanceInfo {

        private final long[] newObjectIdentifiers;

        public MultiANewArrayInstrInstanceInfo(long[] newObjects) {
            this.newObjectIdentifiers = newObjects;
        }

        public long[] getNewObjectIdentifiers() {
            return this.newObjectIdentifiers;
        }

        @Override
        public String toString() {
            if (this.newObjectIdentifiers.length == 0)
                return "[(0)]";

            StringBuilder sb = new StringBuilder(30);
            sb.append("[(").append(this.newObjectIdentifiers.length).append(") ");
            for (int i = 0; i < this.newObjectIdentifiers.length; ++i) {
                if (i != 0)
                    sb.append(", ");
                sb.append(this.newObjectIdentifiers[i]);
                if (i == 5)
                    return sb.append(", ...]").toString();
            }
            return sb.append(']').toString();
        }

        @Override
        public int hashCode() {
            return Arrays.hashCode(this.newObjectIdentifiers);
        }

        @Override
        public boolean equals(Object obj) {
            if (this == obj)
                return true;
            if (obj == null)
                return false;
            if (getClass() != obj.getClass())
                return false;
            MultiANewArrayInstrInstanceInfo other = (MultiANewArrayInstrInstanceInfo) obj;
            if (!Arrays.equals(this.newObjectIdentifiers, other.newObjectIdentifiers))
                return false;
            return true;
        }

    }

    private final String typeDesc;
    private final int dims;
    //  private final int numNewObjectIdentifiersSeqIndex;
    //    private final int newObjectIdentifierSeqIndex;
    public final long[] newObjectIdentifiers;

    public MultiANewArrayInstruction2(final ReadMethod readMethod, final int lineNumber, final String desc,
            final int dims, long[] newobjectidentifiers) {
        super(readMethod, Opcodes.MULTIANEWARRAY, lineNumber);
        this.typeDesc = desc;
        this.dims = dims;
        this.newObjectIdentifiers = newobjectidentifiers;
    }

    public MultiANewArrayInstruction2(final ReadMethod readMethod, final String desc, final int dims,
            final int lineNumber, final int index, long[] newobjectidentifiers) {
        super(readMethod, Opcodes.MULTIANEWARRAY, lineNumber, index);
        this.typeDesc = desc;
        this.dims = dims;
        this.newObjectIdentifiers = newobjectidentifiers;
    }

    public int getDimension() {
        return this.dims;
    }

    public String getTypeDesc() {
        return this.typeDesc;
    }

    @Override
    public InstructionType getType() {
        return InstructionType.MULTIANEWARRAY;
    }

    @Override
    public <InstanceType> InstanceType getNextInstance(TraceIterator infoProv, int stackDepth, long instanceNr,
            InstructionInstanceFactory<InstanceType> instanceFactory) throws TracerException {
        return instanceFactory.createInstructionInstance(this,
                infoProv.getNextInstructionOccurenceNumber(getIndex()), stackDepth, instanceNr,
                new MultiANewArrayInstrInstanceInfo(this.newObjectIdentifiers));
    }

    /*
    @Override
    public void writeOut(final DataOutputStream out, final StringCacheOutput stringCache) throws IOException {
    super.writeOut(out, stringCache);
    stringCache.writeString(this.typeDesc, out);
    OptimizedDataOutputStream.writeInt0(this.dims, out);
    OptimizedDataOutputStream.writeInt0(this.numNewObjectIdentifiersSeqIndex, out);
    OptimizedDataOutputStream.writeInt0(this.newObjectIdentifierSeqIndex, out);
    }
        
    public static MultiANewArrayInstruction readFrom(final DataInputStream in, final MethodReadInformation methodInfo,
        final StringCacheInput stringCache,
        @SuppressWarnings("unused") final int opcode,
        final int index, final int lineNumber) throws IOException {
    final String typeDesc = stringCache.readString(in);
    final int dims = OptimizedDataInputStream.readInt0(in);
    int numNewObjIdSeqIndex = OptimizedDataInputStream.readInt0(in);
    int newObjIdSeqIndex = OptimizedDataInputStream.readInt0(in);
    return new MultiANewArrayInstruction(methodInfo.getMethod(), typeDesc, dims, lineNumber, index, numNewObjIdSeqIndex, newObjIdSeqIndex);
    }
    */
    @Override
    public String toString() {
        final StringBuilder sb = new StringBuilder(19 + this.typeDesc.length());
        sb.append("MULTIANEWARRAY ").append(this.typeDesc).append(' ').append(this.dims);
        return sb.toString();
    }

}