org.basinmc.plunger.mapping.FieldAccessMapping Maven / Gradle / Ivy
/*
* Copyright 2018 Johannes Donath
* and other copyright owners as documented in the project's IP log.
*
* Licensed 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 org.basinmc.plunger.mapping;
import edu.umd.cs.findbugs.annotations.NonNull;
import java.util.Optional;
/**
* Resolves one or more field access mappings.
*
* @author Johannes Donath
*/
@FunctionalInterface
public interface FieldAccessMapping {
/**
* Retrieves the target access flags for the specified field.
*
* The field class name and signature will be passed in the JVM format (e.g. class name
* elements will be separated by a slash ("/") instead of dots. For instance,
* "org.basinmc.plunger.Class" would become "org/basinmc/plunger/Class").
*
* The field signature will consist of the full Bytecode type signature of the field (for
* instance, a field of type boolean will be specified as "Z" or a field of type {@link Object}
* will be specified as "Ljava/lang/Object").
*
* @param className a class name.
* @param fieldName a field name.
* @param signature a field signature.
* @param flags the current access flags.
* @return the target access flags or, if no change is desired, an empty optional.
*/
@NonNull
Optional getFieldAccessFlags(@NonNull String className, @NonNull String fieldName,
@NonNull String signature, @NonNull AccessFlag flags);
/**
* Retrieves an inverse version of this mapping.
*
* The resulting mapping will effectively reverse the effects of this mapping (for instance,
* the private field "test" may be mapped to public while it is mapped from public to private in
* its inversion).
*
* @return an inverse mapping.
* @throws UnsupportedOperationException when the operation is not supported by this
* implementation.
*/
@NonNull
default FieldAccessMapping invert() {
throw new UnsupportedOperationException();
}
}