View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *   https://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package org.apache.bcel;
20  
21  import org.apache.commons.lang3.ArrayUtils;
22  
23  /**
24   * Exception constants.
25   *
26   * @since 6.0 (intended to replace the InstructionConstant interface)
27   */
28  public final class ExceptionConst {
29  
30      /**
31       * Enum corresponding to the various Exception Class arrays, used by
32       * {@link ExceptionConst#createExceptions(EXCS, Class...)}
33       */
34      public enum EXCS {
35          EXCS_CLASS_AND_INTERFACE_RESOLUTION, EXCS_FIELD_AND_METHOD_RESOLUTION, EXCS_INTERFACE_METHOD_RESOLUTION, EXCS_STRING_RESOLUTION, EXCS_ARRAY_EXCEPTION,
36      }
37  
38      /**
39       * The mother of all exceptions
40       */
41      public static final Class<Throwable> THROWABLE = Throwable.class;
42  
43      /**
44       * Super class of any run-time exception
45       */
46      public static final Class<RuntimeException> RUNTIME_EXCEPTION = RuntimeException.class;
47  
48      /**
49       * Super class of any linking exception (aka Linkage Error)
50       */
51      public static final Class<LinkageError> LINKING_EXCEPTION = LinkageError.class;
52      /**
53       * Linking Exceptions
54       */
55      public static final Class<ClassCircularityError> CLASS_CIRCULARITY_ERROR = ClassCircularityError.class;
56      public static final Class<ClassFormatError> CLASS_FORMAT_ERROR = ClassFormatError.class;
57      public static final Class<ExceptionInInitializerError> EXCEPTION_IN_INITIALIZER_ERROR = ExceptionInInitializerError.class;
58      public static final Class<IncompatibleClassChangeError> INCOMPATIBLE_CLASS_CHANGE_ERROR = IncompatibleClassChangeError.class;
59      public static final Class<AbstractMethodError> ABSTRACT_METHOD_ERROR = AbstractMethodError.class;
60      public static final Class<IllegalAccessError> ILLEGAL_ACCESS_ERROR = IllegalAccessError.class;
61      public static final Class<InstantiationError> INSTANTIATION_ERROR = InstantiationError.class;
62      public static final Class<NoSuchFieldError> NO_SUCH_FIELD_ERROR = NoSuchFieldError.class;
63      public static final Class<NoSuchMethodError> NO_SUCH_METHOD_ERROR = NoSuchMethodError.class;
64      public static final Class<NoClassDefFoundError> NO_CLASS_DEF_FOUND_ERROR = NoClassDefFoundError.class;
65      public static final Class<UnsatisfiedLinkError> UNSATISFIED_LINK_ERROR = UnsatisfiedLinkError.class;
66  
67      public static final Class<VerifyError> VERIFY_ERROR = VerifyError.class;
68      /* UnsupportedClassVersionError is new in JDK 1.2 */
69  //    public static final Class UnsupportedClassVersionError = UnsupportedClassVersionError.class;
70      /**
71       * Run-Time Exceptions
72       */
73      public static final Class<NullPointerException> NULL_POINTER_EXCEPTION = NullPointerException.class;
74      public static final Class<ArrayIndexOutOfBoundsException> ARRAY_INDEX_OUT_OF_BOUNDS_EXCEPTION = ArrayIndexOutOfBoundsException.class;
75      public static final Class<ArithmeticException> ARITHMETIC_EXCEPTION = ArithmeticException.class;
76      public static final Class<NegativeArraySizeException> NEGATIVE_ARRAY_SIZE_EXCEPTION = NegativeArraySizeException.class;
77      public static final Class<ClassCastException> CLASS_CAST_EXCEPTION = ClassCastException.class;
78  
79      public static final Class<IllegalMonitorStateException> ILLEGAL_MONITOR_STATE = IllegalMonitorStateException.class;
80      /**
81       * Pre-defined exception arrays according to chapters 5.1-5.4 of the Java Virtual Machine Specification
82       */
83      private static final Class<?>[] EXCS_CLASS_AND_INTERFACE_RESOLUTION = {NO_CLASS_DEF_FOUND_ERROR, CLASS_FORMAT_ERROR, VERIFY_ERROR, ABSTRACT_METHOD_ERROR,
84          EXCEPTION_IN_INITIALIZER_ERROR, ILLEGAL_ACCESS_ERROR}; // Chapter 5.1
85  
86      private static final Class<?>[] EXCS_FIELD_AND_METHOD_RESOLUTION = {NO_SUCH_FIELD_ERROR, ILLEGAL_ACCESS_ERROR, NO_SUCH_METHOD_ERROR}; // Chapter 5.2
87  
88      /**
89       * Empty array.
90       */
91      private static final Class<?>[] EXCS_INTERFACE_METHOD_RESOLUTION = new Class[0]; // Chapter 5.3 (as below)
92  
93      /**
94       * Empty array.
95       */
96      private static final Class<?>[] EXCS_STRING_RESOLUTION = new Class[0];
97  
98      // Chapter 5.4 (no errors but the ones that _always_ could happen! How stupid.)
99      private static final Class<?>[] EXCS_ARRAY_EXCEPTION = {NULL_POINTER_EXCEPTION, ARRAY_INDEX_OUT_OF_BOUNDS_EXCEPTION};
100 
101     /**
102      * Creates a copy of the specified Exception Class array combined with any additional Exception classes.
103      *
104      * @param type the basic array type
105      * @param extraClasses additional classes, if any
106      * @return the merged array
107      */
108     public static Class<?>[] createExceptions(final EXCS type, final Class<?>... extraClasses) {
109         switch (type) {
110         case EXCS_CLASS_AND_INTERFACE_RESOLUTION:
111             return mergeExceptions(EXCS_CLASS_AND_INTERFACE_RESOLUTION, extraClasses);
112         case EXCS_ARRAY_EXCEPTION:
113             return mergeExceptions(EXCS_ARRAY_EXCEPTION, extraClasses);
114         case EXCS_FIELD_AND_METHOD_RESOLUTION:
115             return mergeExceptions(EXCS_FIELD_AND_METHOD_RESOLUTION, extraClasses);
116         case EXCS_INTERFACE_METHOD_RESOLUTION:
117             return mergeExceptions(EXCS_INTERFACE_METHOD_RESOLUTION, extraClasses);
118         case EXCS_STRING_RESOLUTION:
119             return mergeExceptions(EXCS_STRING_RESOLUTION, extraClasses);
120         default:
121             throw new AssertionError("Cannot happen; unexpected enum value: " + type);
122         }
123     }
124 
125     // helper method to merge exception class arrays
126     private static Class<?>[] mergeExceptions(final Class<?>[] input, final Class<?>... extraClasses) {
127         return ArrayUtils.addAll(input, extraClasses);
128     }
129 
130 }