org.eolang.opeo.ast.Super 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.ast;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.stream.Collectors;
import lombok.EqualsAndHashCode;
import lombok.ToString;
import org.eolang.jeo.representation.xmir.XmlNode;
import org.eolang.opeo.compilation.Parser;
import org.objectweb.asm.Opcodes;
import org.objectweb.asm.Type;
import org.xembly.Directive;
import org.xembly.Directives;
/**
* Super output node.
* @since 0.1
*/
@ToString
@EqualsAndHashCode
public final class Super implements AstNode, Typed {
/**
* Super instance.
*/
private final AstNode instance;
/**
* Super arguments.
*/
private final List arguments;
/**
* Attributes.
*/
private final Attributes attributes;
/**
* Constructor.
* @param instance Target instance
* @param arguments Super arguments
* @param descriptor Descriptor
* @param type Type
* @param name Method Name
* @checkstyle ParameterNumberCheck (5 lines)
*/
public Super(
final AstNode instance,
final List arguments,
final String descriptor,
final String type,
final String name
) {
this(instance, arguments, new Attributes().descriptor(descriptor).name(name).owner(type));
}
/**
* Constructor.
* @param instance Target instance
* @param arguments Super arguments
* @param attributes Attributes
*/
public Super(
final AstNode instance,
final List arguments,
final Attributes attributes
) {
this.instance = instance;
this.arguments = arguments;
this.attributes = attributes;
}
/**
* Constructor.
* @param instance Super instance
* @param arguments Super arguments
*/
Super(final AstNode instance, final AstNode... arguments) {
this(instance, Arrays.asList(arguments));
}
/**
* Constructor.
* @param instance Super instance
* @param descriptor Descriptor
* @param arguments Super arguments
*/
Super(final AstNode instance, final String descriptor, final AstNode... arguments) {
this(instance, Arrays.asList(arguments), descriptor);
}
/**
* Constructor.
* @param instance Target instance
* @param arguments Super arguments
* @param descriptor Descriptor
*/
private Super(
final AstNode instance,
final List arguments,
final String descriptor
) {
this(instance, arguments, descriptor, "java/lang/Object", "");
}
/**
* Constructor.
* @param instance Super instance
* @param arguments Super arguments
*/
private Super(final AstNode instance, final List arguments) {
this(instance, arguments, "()V");
}
/**
* Constructor.
* @param xmir XMIR root node.
* @param parser Parser that can parse child nodes.
*/
public Super(final XmlNode xmir, final Parser parser) {
this(
parser.parse(xmir.children().collect(Collectors.toList()).get(0)),
new Arguments(xmir, parser, 2).toList(),
new Attributes(xmir.children().collect(Collectors.toList()).get(1))
);
}
@Override
public Iterable toXmir() {
final Directives directives = new Directives();
directives.add("o")
.attr("base", ".super")
.append(this.instance.toXmir())
.append(this.attributes.toXmir());
this.arguments.stream().map(AstNode::toXmir).forEach(directives::append);
return directives.up();
}
@Override
public List opcodes() {
final List res = new ArrayList<>(2);
res.addAll(this.instance.opcodes());
this.arguments.stream().map(AstNode::opcodes).forEach(res::addAll);
res.add(
new Opcode(
Opcodes.INVOKESPECIAL,
this.attributes.owner(),
this.attributes.name(),
this.attributes.descriptor(),
false
)
);
return res;
}
@Override
public Type type() {
return Type.getReturnType(this.attributes.descriptor());
}
}