NEWARRAY.java

  1. /*
  2.  * Licensed to the Apache Software Foundation (ASF) under one or more
  3.  * contributor license agreements.  See the NOTICE file distributed with
  4.  * this work for additional information regarding copyright ownership.
  5.  * The ASF licenses this file to You under the Apache License, Version 2.0
  6.  * (the "License"); you may not use this file except in compliance with
  7.  * the License.  You may obtain a copy of the License at
  8.  *
  9.  *      http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  *  Unless required by applicable law or agreed to in writing, software
  12.  *  distributed under the License is distributed on an "AS IS" BASIS,
  13.  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  *  See the License for the specific language governing permissions and
  15.  *  limitations under the License.
  16.  */
  17. package org.apache.bcel.generic;

  18. import java.io.DataOutputStream;
  19. import java.io.IOException;

  20. import org.apache.bcel.ExceptionConst;
  21. import org.apache.bcel.util.ByteSequence;

  22. /**
  23.  * NEWARRAY - Create new array of basic type (int, short, ...)
  24.  *
  25.  * <PRE>
  26.  * Stack: ..., count -&gt; ..., arrayref
  27.  * </PRE>
  28.  *
  29.  * type must be one of T_INT, T_SHORT, ...
  30.  */
  31. public class NEWARRAY extends Instruction implements AllocationInstruction, ExceptionThrower, StackProducer {

  32.     private byte type;

  33.     /**
  34.      * Empty constructor needed for Instruction.readInstruction. Not to be used otherwise.
  35.      */
  36.     NEWARRAY() {
  37.     }

  38.     public NEWARRAY(final BasicType type) {
  39.         this(type.getType());
  40.     }

  41.     public NEWARRAY(final byte type) {
  42.         super(org.apache.bcel.Const.NEWARRAY, (short) 2);
  43.         this.type = type;
  44.     }

  45.     /**
  46.      * Call corresponding visitor method(s). The order is: Call visitor methods of implemented interfaces first, then call
  47.      * methods according to the class hierarchy in descending order, i.e., the most specific visitXXX() call comes last.
  48.      *
  49.      * @param v Visitor object
  50.      */
  51.     @Override
  52.     public void accept(final Visitor v) {
  53.         v.visitAllocationInstruction(this);
  54.         v.visitExceptionThrower(this);
  55.         v.visitStackProducer(this);
  56.         v.visitNEWARRAY(this);
  57.     }

  58.     /**
  59.      * Dump instruction as byte code to stream out.
  60.      *
  61.      * @param out Output stream
  62.      */
  63.     @Override
  64.     public void dump(final DataOutputStream out) throws IOException {
  65.         out.writeByte(super.getOpcode());
  66.         out.writeByte(type);
  67.     }

  68.     @Override
  69.     public Class<?>[] getExceptions() {
  70.         return new Class[] {ExceptionConst.NEGATIVE_ARRAY_SIZE_EXCEPTION};
  71.     }

  72.     /**
  73.      * @return type of constructed array
  74.      */
  75.     public final Type getType() {
  76.         return new ArrayType(BasicType.getType(type), 1);
  77.     }

  78.     /**
  79.      * @return numeric code for basic element type
  80.      */
  81.     public final byte getTypecode() {
  82.         return type;
  83.     }

  84.     /**
  85.      * Read needed data (e.g. index) from file.
  86.      */
  87.     @Override
  88.     protected void initFromFile(final ByteSequence bytes, final boolean wide) throws IOException {
  89.         type = bytes.readByte();
  90.         super.setLength(2);
  91.     }

  92.     /**
  93.      * @return mnemonic for instruction
  94.      */
  95.     @Override
  96.     public String toString(final boolean verbose) {
  97.         return super.toString(verbose) + " " + org.apache.bcel.Const.getTypeName(type);
  98.     }
  99. }