/* * This file is part of Mixin, licensed under the MIT License (MIT). * * Copyright (c) SpongePowered * Copyright (c) contributors * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ package org.spongepowered.asm.mixin.struct; import java.util.Locale; import javax.tools.Diagnostic.Kind; import org.objectweb.asm.Type; import org.objectweb.asm.tree.AnnotationNode; import org.objectweb.asm.tree.MethodNode; import org.spongepowered.asm.mixin.Dynamic; import org.spongepowered.asm.mixin.MixinEnvironment.Option; import org.spongepowered.asm.mixin.injection.IInjectionPointContext; import org.spongepowered.asm.mixin.injection.selectors.ISelectorContext; import org.spongepowered.asm.mixin.refmap.IMixinContext; import org.spongepowered.asm.mixin.refmap.IReferenceMapper; import org.spongepowered.asm.util.Annotations; import org.spongepowered.asm.util.asm.IAnnotatedElement; import org.spongepowered.asm.util.asm.IAnnotationHandle; import org.spongepowered.asm.util.asm.MethodNodeEx; import org.spongepowered.asm.util.logging.MessageRouter; import com.google.common.base.Strings; /** * Data bundle for an annotated method in a mixin */ public class AnnotatedMethodInfo implements IInjectionPointContext { /** * Mixin context */ private final IMixinContext context; /** * Annotated method */ protected final MethodNode method; /** * Annotation on the method */ protected final AnnotationNode annotation; /** * Human-readable annotation type */ protected final String annotationType; /** * Original name of the method, if available */ protected final String methodName; public AnnotatedMethodInfo(IMixinContext mixin, MethodNode method, AnnotationNode annotation) { this.context = mixin; this.method = method; this.annotation = annotation; this.annotationType = this.annotation != null ? "@" + Annotations.getSimpleName(this.annotation) : "Undecorated method"; this.methodName = MethodNodeEx.getName(method); } /** * Get a human-readable description of the annotation on the method for use * in error messages */ @Override public final String getElementDescription() { return String.format("%s annotation on %s", this.annotationType, this.methodName); } @Override public String remap(String reference) { if (this.context != null) { IReferenceMapper referenceMapper = this.context.getReferenceMapper(); return referenceMapper != null ? referenceMapper.remap(this.context.getClassRef(), reference) : reference; } return reference; } /* (non-Javadoc) * @see org.spongepowered.asm.mixin.injection.selectors.ISelectorContext * #getParent() */ @Override public ISelectorContext getParent() { return null; } /** * Get the mixin target context for this annotated method * * @return the target context */ @Override public final IMixinContext getMixin() { return this.context; } /** * Get method being called * * @return injector method */ @Override public final MethodNode getMethod() { return this.method; } /** * Get the original name of the method, if available */ public String getMethodName() { return this.method.name; } /** * Get the primary annotation which makes this method special */ @Override public AnnotationNode getAnnotationNode() { return this.annotation; } /** * Get the primary annotation which makes this method special * * @return The primary method annotation */ @Override public final IAnnotationHandle getAnnotation() { return Annotations.handleOf(this.annotation); } /** * Get the annotation context for selectors operating in the context of this * method. * * @return The selector context annotation */ @Override public IAnnotationHandle getSelectorAnnotation() { return Annotations.handleOf(this.annotation); } /** * Get the selector coordinate for this method * * @return The selector context annotation */ @Override public String getSelectorCoordinate(boolean leaf) { return leaf ? "method" : this.getMethodName().toLowerCase(Locale.ROOT); } /* (non-Javadoc) * @see org.spongepowered.asm.mixin.injection.IInjectionPointContext * #addMessage(java.lang.String, java.lang.Object[]) */ @Override public void addMessage(String format, Object... args) { if (this.context.getOption(Option.DEBUG_VERBOSE)) { MessageRouter.getMessager().printMessage(Kind.WARNING, String.format(format, args)); } } /** * Get info from a decorating {@link Dynamic} annotation. If the annotation * is present, a descriptive string suitable for inclusion in an error * message is returned. If the annotation is not present then an empty * string is returned. * * @param method method to inspect */ public static final String getDynamicInfo(Object method) { if (method instanceof MethodNode) { return AnnotatedMethodInfo.getDynamicInfo((MethodNode)method); } else if (method instanceof IAnnotatedElement) { return AnnotatedMethodInfo.getDynamicInfo((IAnnotatedElement)method); } return ""; } /** * Get info from a decorating {@link Dynamic} annotation. If the annotation * is present, a descriptive string suitable for inclusion in an error * message is returned. If the annotation is not present then an empty * string is returned. * * @param method method to inspect */ public static final String getDynamicInfo(MethodNode method) { return AnnotatedMethodInfo.getDynamicInfo(Annotations.handleOf(Annotations.getInvisible(method, Dynamic.class))); } /** * Get info from a decorating {@link Dynamic} annotation. If the annotation * is present, a descriptive string suitable for inclusion in an error * message is returned. If the annotation is not present then an empty * string is returned. * * @param method method to inspect */ public static final String getDynamicInfo(IAnnotatedElement method) { return AnnotatedMethodInfo.getDynamicInfo(method.getAnnotation(Dynamic.class)); } private static String getDynamicInfo(IAnnotationHandle annotation) { if (annotation == null) { return ""; } String description = Strings.nullToEmpty(annotation.getValue()); Type upstream = annotation.getTypeValue("mixin"); if (upstream != null) { description = String.format("{%s} %s", upstream.getClassName(), description).trim(); } return description.length() > 0 ? String.format(" Method is @Dynamic(%s).", description) : ""; } }