/* Copyright 2018 - 2019 Volker Berlin (i-net software) 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 de.inetsoftware.jwebassembly.module; import java.util.Iterator; import javax.annotation.Nonnull; import de.inetsoftware.classparser.Member; import de.inetsoftware.jwebassembly.wasm.AnyType; import de.inetsoftware.jwebassembly.wasm.ValueTypeParser; /** * Described the name of WebAssembly function. * * @author Volker Berlin * */ public class FunctionName { /** * The Java class name. */ @Nonnull public final String className; /** * The name in the WebAssembly. */ @Nonnull public final String fullName; /** * The Java signature which is used in Java byte code to reference the method call. */ @Nonnull public final String signatureName; /** * The signature */ @Nonnull private final String signature; /** * Create a new instance from the given reference in the ConstantPool or parsed method. * * @param methodOrField * the Java method */ FunctionName( @Nonnull Member methodOrField ) { this( methodOrField, methodOrField.getType() ); } /** * Create a new instance from the given reference in the ConstantPool and a special signature. * * @param methodOrField * the Java method * @param signature * the Java signature */ FunctionName( @Nonnull Member methodOrField, String signature ) { this( methodOrField.getClassName(), methodOrField.getName(), signature ); } /** * Create a new instance from the given values * * @param className * the Java class name * @param methodName * the Java method name * @param signature * the Java signature */ FunctionName( String className, String methodName, String signature ) { this.className = className; this.fullName = className + '.' + methodName; this.signatureName = fullName + signature; this.signature = signature; } /** * Create a new instance from the given values * * @param signatureName * the full Java method signature like "com/foo/Bar.method()V" */ FunctionName( String signatureName ) { this.className = signatureName.substring( 0, signatureName.indexOf( '.' ) ); int idx = signatureName.indexOf( '(' ); this.fullName = signatureName.substring( 0, idx ); this.signatureName = signatureName; this.signature = signatureName.substring( idx ); } /** * {@inheritDoc} */ @Override public int hashCode() { return signatureName.hashCode(); } /** * {@inheritDoc} */ @Override public boolean equals( Object obj ) { if( this == obj ) { return true; } if( obj == null ) { return false; } if( getClass() != obj.getClass() ) { return false; } FunctionName other = (FunctionName)obj; return signatureName.equals( other.signatureName ); } /** * Get the method signature iterator for parameter and return values. * * @return the iterator */ @Nonnull public Iterator getSignature() { return new ValueTypeParser( signature ); } }