|
|
|
|
|
|
|
*/ |
|
/* |
|
* Licensed to the Apache Software Foundation (ASF) under one or more |
|
* contributor license agreements. See the NOTICE file distributed with |
|
* this work for additional information regarding copyright ownership. |
|
* The ASF licenses this file to You under the Apache License, Version 2.0 |
|
* (the "License"); you may not use this file except in compliance with |
|
* the License. You may obtain a copy of the License at |
|
* |
|
* http://www.apache.org/licenses/LICENSE-2.0 |
|
* |
|
* Unless required by applicable law or agreed to in writing, software |
|
* distributed under the License is distributed on an "AS IS" BASIS, |
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
* See the License for the specific language governing permissions and |
|
* limitations under the License. |
|
*/ |
|
|
|
package com.sun.org.apache.bcel.internal.classfile; |
|
|
|
import java.io.DataInput; |
|
import java.io.DataOutputStream; |
|
import java.io.IOException; |
|
|
|
import com.sun.org.apache.bcel.internal.Const; |
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public final class ModulePackages extends Attribute { |
|
|
|
private int[] packageIndexTable; |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public ModulePackages(final ModulePackages c) { |
|
this(c.getNameIndex(), c.getLength(), c.getPackageIndexTable(), c.getConstantPool()); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public ModulePackages(final int nameIndex, final int length, final int[] packageIndexTable, |
|
final ConstantPool constantPool) { |
|
super(Const.ATTR_MODULE_PACKAGES, nameIndex, length, constantPool); |
|
this.packageIndexTable = packageIndexTable != null ? packageIndexTable : new int[0]; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
ModulePackages(final int name_index, final int length, final DataInput input, final ConstantPool constant_pool) throws IOException { |
|
this(name_index, length, (int[]) null, constant_pool); |
|
final int number_of_packages = input.readUnsignedShort(); |
|
packageIndexTable = new int[number_of_packages]; |
|
for (int i = 0; i < number_of_packages; i++) { |
|
packageIndexTable[i] = input.readUnsignedShort(); |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
@Override |
|
public void accept( final Visitor v ) { |
|
v.visitModulePackages(this); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
@Override |
|
public void dump( final DataOutputStream file ) throws IOException { |
|
super.dump(file); |
|
file.writeShort(packageIndexTable.length); |
|
for (final int index : packageIndexTable) { |
|
file.writeShort(index); |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
*/ |
|
public int[] getPackageIndexTable() { |
|
return packageIndexTable; |
|
} |
|
|
|
|
|
|
|
|
|
*/ |
|
public int getNumberOfPackages() { |
|
return packageIndexTable == null ? 0 : packageIndexTable.length; |
|
} |
|
|
|
|
|
|
|
|
|
*/ |
|
public String[] getPackageNames() { |
|
final String[] names = new String[packageIndexTable.length]; |
|
for (int i = 0; i < packageIndexTable.length; i++) { |
|
names[i] = super.getConstantPool().getConstantString(packageIndexTable[i], |
|
Const.CONSTANT_Package).replace('/', '.'); |
|
} |
|
return names; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public void setPackageIndexTable( final int[] packageIndexTable ) { |
|
this.packageIndexTable = packageIndexTable != null ? packageIndexTable : new int[0]; |
|
} |
|
|
|
|
|
|
|
|
|
*/ |
|
@Override |
|
public String toString() { |
|
final StringBuilder buf = new StringBuilder(); |
|
buf.append("ModulePackages("); |
|
buf.append(packageIndexTable.length); |
|
buf.append("):\n"); |
|
for (final int index : packageIndexTable) { |
|
final String package_name = super.getConstantPool().getConstantString(index, Const.CONSTANT_Package); |
|
buf.append(" ").append(Utility.compactClassName(package_name, false)).append("\n"); |
|
} |
|
return buf.substring(0, buf.length()-1); |
|
} |
|
|
|
|
|
|
|
|
|
*/ |
|
@Override |
|
public Attribute copy( final ConstantPool _constant_pool ) { |
|
final ModulePackages c = (ModulePackages) clone(); |
|
if (packageIndexTable != null) { |
|
c.packageIndexTable = new int[packageIndexTable.length]; |
|
System.arraycopy(packageIndexTable, 0, c.packageIndexTable, 0, |
|
packageIndexTable.length); |
|
} |
|
c.setConstantPool(_constant_pool); |
|
return c; |
|
} |
|
} |