All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.facebook.presto.bytecode.instruction.FieldInstruction Maven / Gradle / Ivy

/*
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.facebook.presto.bytecode.instruction;

import com.facebook.presto.bytecode.BytecodeNode;
import com.facebook.presto.bytecode.BytecodeVisitor;
import com.facebook.presto.bytecode.MethodGenerationContext;
import com.facebook.presto.bytecode.OpCode;
import com.facebook.presto.bytecode.ParameterizedType;
import com.google.common.collect.ImmutableList;
import org.objectweb.asm.MethodVisitor;

import java.lang.reflect.Field;
import java.lang.reflect.Modifier;
import java.util.List;

import static com.facebook.presto.bytecode.OpCode.GETFIELD;
import static com.facebook.presto.bytecode.OpCode.GETSTATIC;
import static com.facebook.presto.bytecode.OpCode.PUTFIELD;
import static com.facebook.presto.bytecode.OpCode.PUTSTATIC;
import static com.facebook.presto.bytecode.ParameterizedType.type;
import static com.google.common.base.MoreObjects.toStringHelper;

public abstract class FieldInstruction
        implements InstructionNode
{
    public static FieldInstruction getFieldInstruction(Field field)
    {
        boolean isStatic = Modifier.isStatic(field.getModifiers());
        return new GetFieldInstruction(isStatic, type(field.getDeclaringClass()), field.getName(), type(field.getType()));
    }

    public static FieldInstruction putFieldInstruction(Field field)
    {
        boolean isStatic = Modifier.isStatic(field.getModifiers());
        return new PutFieldInstruction(isStatic, type(field.getDeclaringClass()), field.getName(), type(field.getType()));
    }

    public static FieldInstruction getFieldInstruction(ParameterizedType classType, String fieldName, ParameterizedType fieldType)
    {
        return new GetFieldInstruction(false, classType, fieldName, fieldType);
    }

    public static FieldInstruction getFieldInstruction(Class classType, String fieldName, Class fieldType)
    {
        return new GetFieldInstruction(false, classType, fieldName, fieldType);
    }

    public static FieldInstruction putFieldInstruction(ParameterizedType classType, String fieldName, ParameterizedType fieldType)
    {
        return new PutFieldInstruction(false, classType, fieldName, fieldType);
    }

    public static FieldInstruction putFieldInstruction(Class classType, String fieldName, Class fieldType)
    {
        return new PutFieldInstruction(false, classType, fieldName, fieldType);
    }

    public static FieldInstruction getStaticInstruction(ParameterizedType classType, String fieldName, ParameterizedType fieldType)
    {
        return new GetFieldInstruction(true, classType, fieldName, fieldType);
    }

    public static FieldInstruction getStaticInstruction(Class classType, String fieldName, Class fieldType)
    {
        return new GetFieldInstruction(true, classType, fieldName, fieldType);
    }

    public static FieldInstruction putStaticInstruction(ParameterizedType classType, String fieldName, ParameterizedType fieldType)
    {
        return new PutFieldInstruction(true, classType, fieldName, fieldType);
    }

    public static FieldInstruction putStaticInstruction(Class classType, String fieldName, Class fieldType)
    {
        return new PutFieldInstruction(true, classType, fieldName, fieldType);
    }

    private final boolean isStatic;

    private final OpCode opCode;

    private final ParameterizedType classType;

    private final String fieldName;

    private final ParameterizedType fieldType;

    private FieldInstruction(boolean isStatic, OpCode opCode, ParameterizedType classType, String fieldName, ParameterizedType fieldType)
    {
        this.isStatic = isStatic;
        this.opCode = opCode;
        this.classType = classType;
        this.fieldName = fieldName;
        this.fieldType = fieldType;
    }

    @Override
    public void accept(MethodVisitor visitor, MethodGenerationContext generationContext)
    {
        visitor.visitFieldInsn(opCode.getOpCode(), classType.getClassName(), fieldName, fieldType.getType());
    }

    @Override
    public List getChildNodes()
    {
        return ImmutableList.of();
    }

    @Override
    public  T accept(BytecodeNode parent, BytecodeVisitor visitor)
    {
        return visitor.visitFieldInstruction(parent, this);
    }

    @Override
    public String toString()
    {
        return toStringHelper(this)
                .add("isStatic", isStatic)
                .add("classType", classType)
                .add("fieldName", fieldName)
                .add("fieldType", fieldType)
                .toString();
    }

    public static class GetFieldInstruction
            extends FieldInstruction
    {
        public GetFieldInstruction(boolean isStatic, ParameterizedType classType, String fieldName, ParameterizedType fieldType)
        {
            super(isStatic, isStatic ? GETSTATIC : GETFIELD, classType, fieldName, fieldType);
        }

        public GetFieldInstruction(boolean isStatic, Class classType, String fieldName, Class fieldType)
        {
            super(isStatic, isStatic ? GETSTATIC : GETFIELD, type(classType), fieldName, type(fieldType));
        }

        @Override
        public  T accept(BytecodeNode parent, BytecodeVisitor visitor)
        {
            return visitor.visitGetField(parent, this);
        }
    }

    public static class PutFieldInstruction
            extends FieldInstruction
    {
        public PutFieldInstruction(boolean isStatic, ParameterizedType classType, String fieldName, ParameterizedType fieldType)
        {
            super(isStatic, isStatic ? PUTSTATIC : PUTFIELD, classType, fieldName, fieldType);
        }

        public PutFieldInstruction(boolean isStatic, Class classType, String fieldName, Class fieldType)
        {
            super(isStatic, isStatic ? PUTSTATIC : PUTFIELD, type(classType), fieldName, type(fieldType));
        }

        @Override
        public  T accept(BytecodeNode parent, BytecodeVisitor visitor)
        {
            return visitor.visitPutField(parent, this);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy