com.fitbur.bytebuddy.implementation.bytecode.assign.primitive.VoidAwareAssigner Maven / Gradle / Ivy
package com.fitbur.bytebuddy.implementation.bytecode.assign.primitive;
import com.fitbur.bytebuddy.description.type.TypeDescription;
import com.fitbur.bytebuddy.implementation.bytecode.Removal;
import com.fitbur.bytebuddy.implementation.bytecode.StackManipulation;
import com.fitbur.bytebuddy.implementation.bytecode.assign.Assigner;
import com.fitbur.bytebuddy.implementation.bytecode.constant.DefaultValue;
/**
* This assigner is able to handle the {@code void} type. This means:
*
* - If a {@code void} type is assigned to the {@code void} it will consider this a trivial operation.
* - If a {@code void} type is assigned to a non-{@code void} type, it will pop the top value from the stack.
* - If a non-{@code void} type is assigned to a {@code void} type, it will load the target type's default value
* only if this was configured at the assigner's construction.
* - If two non-{@code void} types are subject of the assignment, it will delegate the assignment to its chained
* assigner.
*
*/
public class VoidAwareAssigner implements Assigner {
/**
* An assigner that is capable of handling assignments that do not involve {@code void} types.
*/
private final Assigner chained;
/**
* Creates a new assigner that is capable of handling void types.
*
* @param chained A chained assigner which will be queried by this assigner to handle assignments that
* do not involve a {@code void} type.
*/
public VoidAwareAssigner(Assigner chained) {
this.chained = chained;
}
@Override
public StackManipulation assign(TypeDescription.Generic source, TypeDescription.Generic target, Typing typing) {
if (source.represents(void.class) && target.represents(void.class)) {
return StackManipulation.Trivial.INSTANCE;
} else if (source.represents(void.class) /* && target != void.class */) {
return typing.isDynamic()
? DefaultValue.of(target)
: StackManipulation.Illegal.INSTANCE;
} else if (/* source != void.class && */ target.represents(void.class)) {
return Removal.pop(source);
} else /* source != void.class && target != void.class */ {
return chained.assign(source, target, typing);
}
}
@Override
public boolean equals(Object other) {
return this == other || !(other == null || getClass() != other.getClass())
&& chained.equals(((VoidAwareAssigner) other).chained);
}
@Override
public int hashCode() {
return chained.hashCode();
}
@Override
public String toString() {
return "VoidAwareAssigner{chained=" + chained + '}';
}
}