org.eolang.jeo.representation.asm.AsmMethodParameters 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.asm;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import org.eolang.jeo.representation.bytecode.BytecodeMethodParameter;
import org.eolang.jeo.representation.bytecode.BytecodeMethodParameters;
import org.objectweb.asm.Type;
import org.objectweb.asm.tree.AnnotationNode;
import org.objectweb.asm.tree.MethodNode;
/**
* Asm method parameters.
* @since 0.6
*/
final class AsmMethodParameters {
/**
* Method node.
*/
private final MethodNode node;
/**
* Constructor.
* @param node Method node.
*/
AsmMethodParameters(final MethodNode node) {
this.node = node;
}
/**
* Convert asm method to domain method parameters.
* @return Domain method parameters.
*/
BytecodeMethodParameters bytecode() {
final Type[] types = Type.getArgumentTypes(this.node.desc);
final List params = new ArrayList<>(types.length);
for (int index = 0; index < types.length; ++index) {
params.add(
new BytecodeMethodParameter(
index,
AsmMethodParameters.name(this.node, index),
AsmMethodParameters.access(this.node, index),
types[index],
new AsmAnnotations(
AsmMethodParameters.annotations(
this.node.visibleParameterAnnotations, index
),
AsmMethodParameters.annotations(
this.node.invisibleParameterAnnotations, index
)
).bytecode()
)
);
}
return new BytecodeMethodParameters(params);
}
/**
* Retrieve parameter annotations from asm method.
* @param all All parameter annotations.
* @param index Parameter index.
* @return Parameter annotations.
*/
private static List annotations(
final List[] all, final int index
) {
final List result;
if (Objects.isNull(all) || all.length <= index) {
result = new ArrayList<>(0);
} else {
result = all[index];
}
return result;
}
/**
* Retrieve method parameter access from asm method.
* @param node Asm method node.
* @param index Parameter index.
* @return Parameter access.
*/
private static int access(final MethodNode node, final int index) {
final int result;
if (node.parameters != null && node.parameters.size() > index) {
result = node.parameters.get(index).access;
} else {
result = 0;
}
return result;
}
/**
* Retrieve method parameter name from asm method.
* @param node Asm method node.
* @param index Parameter index.
* @return Parameter name.
*/
private static String name(final MethodNode node, final int index) {
final String result;
if (node.parameters != null && node.parameters.size() > index) {
result = node.parameters.get(index).name;
} else {
result = String.format("arg%d", index);
}
return result;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy