|
|
|
|
|
*/ |
|
/* |
|
* 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 start_pc; |
|
private int end_pc; |
|
private int handler_pc; |
|
|
|
*/ |
|
private int catch_type; /* 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 start_pc, final int end_pc, final int handler_pc, final int catch_type) { |
|
this.start_pc = start_pc; |
|
this.end_pc = end_pc; |
|
this.handler_pc = handler_pc; |
|
this.catch_type = catch_type; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
@Override |
|
public void accept( final Visitor v ) { |
|
v.visitCodeException(this); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public final void dump( final DataOutputStream file ) throws IOException { |
|
file.writeShort(start_pc); |
|
file.writeShort(end_pc); |
|
file.writeShort(handler_pc); |
|
file.writeShort(catch_type); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public final int getCatchType() { |
|
return catch_type; |
|
} |
|
|
|
|
|
|
|
|
|
*/ |
|
public final int getEndPC() { |
|
return end_pc; |
|
} |
|
|
|
|
|
|
|
|
|
*/ |
|
public final int getHandlerPC() { |
|
return handler_pc; |
|
} |
|
|
|
|
|
|
|
|
|
*/ |
|
public final int getStartPC() { |
|
return start_pc; |
|
} |
|
|
|
|
|
|
|
|
|
*/ |
|
public final void setCatchType( final int catch_type ) { |
|
this.catch_type = catch_type; |
|
} |
|
|
|
|
|
|
|
|
|
*/ |
|
public final void setEndPC( final int end_pc ) { |
|
this.end_pc = end_pc; |
|
} |
|
|
|
|
|
|
|
|
|
*/ |
|
public final void setHandlerPC( final int handler_pc ) { |
|
this.handler_pc = handler_pc; |
|
} |
|
|
|
|
|
|
|
|
|
*/ |
|
public final void setStartPC( final int start_pc ) { |
|
this.start_pc = start_pc; |
|
} |
|
|
|
|
|
|
|
|
|
*/ |
|
@Override |
|
public final String toString() { |
|
return "CodeException(start_pc = " + start_pc + ", end_pc = " + end_pc + ", handler_pc = " |
|
+ handler_pc + ", catch_type = " + catch_type + ")"; |
|
} |
|
|
|
|
|
|
|
|
|
*/ |
|
public final String toString( final ConstantPool cp, final boolean verbose ) { |
|
String str; |
|
if (catch_type == 0) { |
|
str = "<Any exception>(0)"; |
|
} else { |
|
str = Utility.compactClassName(cp.getConstantString(catch_type, Const.CONSTANT_Class), false) |
|
+ (verbose ? "(" + catch_type + ")" : ""); |
|
} |
|
return start_pc + "\t" + end_pc + "\t" + handler_pc + "\t" + str; |
|
} |
|
|
|
|
|
public final 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; |
|
} |
|
} |