org.eolang.opeo.decompilation.agents.InvokespecialAgent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opeo-maven-plugin Show documentation
Show all versions of opeo-maven-plugin Show documentation
Bytecode decompiler to eolang and back
The newest version!
/*
* The MIT License (MIT)
*
* Copyright (c) 2016-2023 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.opeo.decompilation.agents;
import java.util.Collections;
import java.util.List;
import org.eolang.opeo.ast.AstNode;
import org.eolang.opeo.ast.Attributes;
import org.eolang.opeo.ast.Constructor;
import org.eolang.opeo.ast.Duplicate;
import org.eolang.opeo.ast.Labeled;
import org.eolang.opeo.ast.NewAddress;
import org.eolang.opeo.ast.Super;
import org.eolang.opeo.ast.This;
import org.eolang.opeo.decompilation.DecompilerState;
import org.objectweb.asm.Opcodes;
import org.objectweb.asm.Type;
/**
* Invokespecial instruction handler.
*
* @since 0.1
* @todo #229:90min Is Labeled Class an Abstraction Failure?
* As you can see in {@link InvokespecialAgent} we use many 'instanceof' checks.
* This is a clear sign that the class hierarchy is not well designed.
* The original problem lies in the {@link Labeled} class.
* We need to find more elegant solutions to handle labels in AST.
* @checkstyle NoJavadocForOverriddenMethodsCheck (500 lines)
* @checkstyle MultilineJavadocTagsCheck (500 lines)
*/
public final class InvokespecialAgent implements DecompilationAgent {
@Override
public boolean appropriate(final DecompilerState state) {
return new OpcodesAgent(this).appropriate(state);
}
@Override
public Supported supported() {
return new Supported(Opcodes.INVOKESPECIAL);
}
/**
* Handle invokespecial instruction.
* @param state Current instruction to handle together with operand stack and variables.
* @todo #344:90min Super and Constructor classes ambiguity.
* Recently I removed the following code from this method:
* {@code
* state.stack().push(
* new Constructor(
* target,
* new Attributes().descriptor(descriptor).interfaced(interfaced),
* args
* )
* );
* }
* The reason behind this integration test with
* WebProperties$Resources$Chain$Strategy$Content.xmir class.
* See {@link JeoAndOpeoTest} for more info.
* We need to use both Super and This classes.
* Moreover, we might need to add some other representations.
* Don't forget to remove suppressions.
*/
@Override
@SuppressWarnings("PMD.UnusedLocalVariable")
public void handle(final DecompilerState state) {
if (this.appropriate(state)) {
final String type = (String) state.operand(0);
final String name = (String) state.operand(1);
final String descriptor = (String) state.operand(2);
final boolean interfaced = (boolean) state.operand(3);
final List args = state.stack().pop(
Type.getArgumentCount(descriptor)
);
Collections.reverse(args);
final AstNode target = state.stack().pop();
if (InvokespecialAgent.isThis(target)) {
state.stack().push(
new Super(target, args, descriptor, type, name)
);
} else if (this.isNewAddress(target)) {
state.stack().push(
new Constructor(
target,
new Attributes().descriptor(descriptor).interfaced(interfaced),
args
)
);
} else {
state.stack().push(
new Super(target, args, descriptor, type, name)
);
}
state.popInstruction();
} else {
throw new IllegalAgentException(this, state);
}
}
/**
* Check if the target is a new address.
* @param target Where to check if it is a new address.
* @return True if the target is a new address.
* @todo #344:90min Remove ugly {{@link #isNewAddress(AstNode)}} method.
* We need to find a better algorithm to decompile Constructors and Super calls.
* The usage of 'instanceof' tells us about pure design decisions made before.
*/
private boolean isNewAddress(final AstNode target) {
final boolean result;
if (target instanceof NewAddress) {
result = true;
} else if (target instanceof Duplicate) {
result = this.isNewAddress(((Duplicate) target).current());
} else if (target instanceof Labeled) {
result = this.isNewAddress(((Labeled) target).origin());
} else {
result = false;
}
return result;
}
/**
* Check if the node is "this".
* @param candidate Node to check
* @return True if the node is "this"
*/
private static boolean isThis(final AstNode candidate) {
final boolean result;
if (candidate instanceof This) {
result = true;
} else if (candidate instanceof Labeled) {
result = InvokespecialAgent.isThis(((Labeled) candidate).origin());
} else if (candidate instanceof Duplicate) {
result = InvokespecialAgent.isThis(((Duplicate) candidate).current());
} else {
result = false;
}
return result;
}
}