org.eolang.jeo.representation.Signature Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jeo-maven-plugin Show documentation
Show all versions of jeo-maven-plugin Show documentation
Optimisation of Java Bytecode via EOLANG
The newest version!
/*
* The MIT License (MIT)
*
* Copyright (c) 2016-2024 Objectionary.com
*
* 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 NON-INFRINGEMENT. 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.eolang.jeo.representation;
import java.nio.charset.StandardCharsets;
import java.util.Base64;
/**
* Method name.
* Represents java method name.
* Since methods in java are allowed to be overloaded, we should handle this ambiguity.
* This class is used to represent method name and its descriptor.
* @since 0.5
*/
public final class Signature {
/**
* Base64 decoder.
*/
private static final Base64.Decoder DECODER = Base64.getDecoder();
/**
* Base64 encoder.
*/
private static final Base64.Encoder ENCODER = Base64.getEncoder();
/**
* Human-readable method name in source code.
*/
private final String original;
/**
* Method descriptor.
*/
private final String descr;
/**
* Constructor.
* @param encoded Method name and descriptor encoded.
*/
public Signature(final String encoded) {
this(Signature.prefix(encoded), Signature.suffix(encoded));
}
/**
* Constructor.
* @param name Method name.
* @param descriptor Method descriptor.
*/
public Signature(final String name, final String descriptor) {
this.original = name;
this.descr = descriptor;
}
/**
* Encoded method name with descriptor.
* @return Encoded method name with descriptor.
*/
public String encoded() {
return String.format(
"%s-%s",
this.original,
Signature.ENCODER.encodeToString(this.descr.getBytes(StandardCharsets.UTF_8))
);
}
/**
* Just a name without suffix.
* @return Name without suffix.
*/
public String name() {
return this.original;
}
/**
* Just a descriptor.
* @return Descriptor without name.
*/
public String descriptor() {
return this.descr;
}
/**
* Decode method name.
* @param encoded Encoded method name and descriptor.
* @return Method name.
*/
private static String prefix(final String encoded) {
try {
return encoded.substring(0, encoded.indexOf('-'));
} catch (final StringIndexOutOfBoundsException exception) {
throw new IllegalArgumentException(
String.format("Invalid encoded method name: %s", encoded),
exception
);
}
}
/**
* Decode method descriptor.
* @param encoded Encoded method name and descriptor.
* @return Method descriptor.
*/
private static String suffix(final String encoded) {
return new String(
Signature.DECODER.decode(encoded.substring(encoded.indexOf('-') + 1)),
StandardCharsets.UTF_8
);
}
}