|
|
|
|
|
*/ |
|
/* |
|
* 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 CodeException implements Cloneable, Node { |
|
|
|
private int startPc; |
|
private int endPc; |
|
private int handlerPc; |
|
|
|
*/ |
|
private int catchType; /* If this is zero the handler catches any |
|
* exception, otherwise it points to the |
|
* exception class which is to be caught. |
|
*/ |
|
|
|
|
|
|
|
|
|
*/ |
|
public CodeException(final CodeException c) { |
|
this(c.getStartPC(), c.getEndPC(), c.getHandlerPC(), c.getCatchType()); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
CodeException(final DataInput file) throws IOException { |
|
this(file.readUnsignedShort(), file.readUnsignedShort(), file.readUnsignedShort(), file |
|
.readUnsignedShort()); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public CodeException(final int startPc, final int endPc, final int handlerPc, final int catchType) { |
|
this.startPc = startPc; |
|
this.endPc = endPc; |
|
this.handlerPc = handlerPc; |
|
this.catchType = catchType; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
@Override |
|
public void accept( final Visitor v ) { |
|
v.visitCodeException(this); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public void dump( final DataOutputStream file ) throws IOException { |
|
file.writeShort(startPc); |
|
file.writeShort(endPc); |
|
file.writeShort(handlerPc); |
|
file.writeShort(catchType); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public int getCatchType() { |
|
return catchType; |
|
} |
|
|
|
|
|
|
|
|
|
*/ |
|
public int getEndPC() { |
|
return endPc; |
|
} |
|
|
|
|
|
|
|
|
|
*/ |
|
public int getHandlerPC() { |
|
return handlerPc; |
|
} |
|
|
|
|
|
|
|
|
|
*/ |
|
public int getStartPC() { |
|
return startPc; |
|
} |
|
|
|
|
|
|
|
|
|
*/ |
|
public void setCatchType( final int catchType ) { |
|
this.catchType = catchType; |
|
} |
|
|
|
|
|
|
|
|
|
*/ |
|
public void setEndPC( final int endPc ) { |
|
this.endPc = endPc; |
|
} |
|
|
|
|
|
|
|
|
|
*/ |
|
public void setHandlerPC( final int handlerPc ) { |
|
this.handlerPc = handlerPc; |
|
} |
|
|
|
|
|
|
|
|
|
*/ |
|
public void setStartPC( final int startPc ) { |
|
this.startPc = startPc; |
|
} |
|
|
|
|
|
|
|
|
|
*/ |
|
@Override |
|
public String toString() { |
|
return "CodeException(startPc = " + startPc + ", endPc = " + endPc + ", handlerPc = " |
|
+ handlerPc + ", catchType = " + catchType + ")"; |
|
} |
|
|
|
|
|
|
|
|
|
*/ |
|
public String toString( final ConstantPool cp, final boolean verbose ) { |
|
String str; |
|
if (catchType == 0) { |
|
str = "<Any exception>(0)"; |
|
} else { |
|
str = Utility.compactClassName(cp.getConstantString(catchType, Const.CONSTANT_Class), false) |
|
+ (verbose ? "(" + catchType + ")" : ""); |
|
} |
|
return startPc + "\t" + endPc + "\t" + handlerPc + "\t" + str; |
|
} |
|
|
|
|
|
public String toString( final ConstantPool cp ) { |
|
return toString(cp, true); |
|
} |
|
|
|
|
|
|
|
|
|
*/ |
|
public CodeException copy() { |
|
try { |
|
return (CodeException) clone(); |
|
} catch (final CloneNotSupportedException e) { |
|
// TODO should this throw? |
|
} |
|
return null; |
|
} |
|
} |