|
| 1 | +/* |
| 2 | + * Copyright (c) 2024, Oracle and/or its affiliates. All rights reserved. |
| 3 | + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
| 4 | + * |
| 5 | + * This code is free software; you can redistribute it and/or modify it |
| 6 | + * under the terms of the GNU General Public License version 2 only, as |
| 7 | + * published by the Free Software Foundation. |
| 8 | + * |
| 9 | + * This code is distributed in the hope that it will be useful, but WITHOUT |
| 10 | + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 11 | + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
| 12 | + * version 2 for more details (a copy is included in the LICENSE file that |
| 13 | + * accompanied this code). |
| 14 | + * |
| 15 | + * You should have received a copy of the GNU General Public License version |
| 16 | + * 2 along with this work; if not, write to the Free Software Foundation, |
| 17 | + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
| 18 | + * |
| 19 | + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
| 20 | + * or visit www.oracle.com if you need additional information or have any |
| 21 | + * questions. |
| 22 | + */ |
| 23 | + |
| 24 | +package com.oracle.truffle.espresso.shared.meta; |
| 25 | + |
| 26 | +import com.oracle.truffle.espresso.classfile.JavaVersion; |
| 27 | + |
| 28 | +/** |
| 29 | + * Provides access to some VM-specific capabilities, such as throwing exceptions, or obtaining the |
| 30 | + * implementor's supported {@link JavaVersion}. |
| 31 | + * |
| 32 | + * @param <C> The class providing access to the VM-side java {@link Class}. |
| 33 | + * @param <M> The class providing access to the VM-side java {@link java.lang.reflect.Method}. |
| 34 | + * @param <F> The class providing access to the VM-side java {@link java.lang.reflect.Field}. |
| 35 | + */ |
| 36 | +public interface RuntimeAccess<C extends TypeAccess<C, M, F>, M extends MethodAccess<C, M, F>, F extends FieldAccess<C, M, F>> { |
| 37 | + /** |
| 38 | + * This runtime's supported {@link JavaVersion}. |
| 39 | + */ |
| 40 | + JavaVersion getJavaVersion(); |
| 41 | + |
| 42 | + /** |
| 43 | + * Signals to the runtime that a Java error should be thrown. The type of the error to be thrown |
| 44 | + * is given by the passed {@link ErrorType}. |
| 45 | + * <p> |
| 46 | + * The caller provides an error message that can be constructed using |
| 47 | + * {@code String.format(Locale.ENGLISH, messageFormat, args)}. |
| 48 | + */ |
| 49 | + RuntimeException throwError(ErrorType error, String messageFormat, Object... args); |
| 50 | + |
| 51 | + /** |
| 52 | + * Signals that an unexpected state has been reached and that the current operation must be |
| 53 | + * aborted. |
| 54 | + * <p> |
| 55 | + * The caller provides an error message that can be constructed using |
| 56 | + * {@code String.format(Locale.ENGLISH, messageFormat, args)}. |
| 57 | + */ |
| 58 | + RuntimeException fatal(String messageFormat, Object... args); |
| 59 | +} |
0 commit comments