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

org.datanucleus.enhancer.asm.method.JdoSetViaCheck Maven / Gradle / Ivy

/**********************************************************************
Copyright (c) 2007 Andy Jefferson and others. All rights reserved.
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.

Contributors:
    ...
**********************************************************************/
package org.datanucleus.enhancer.asm.method;

import org.datanucleus.enhancer.ClassEnhancer;
import org.datanucleus.enhancer.asm.ASMClassEnhancer;
import org.datanucleus.enhancer.asm.ASMClassMethod;
import org.datanucleus.enhancer.asm.ASMUtils;
import org.datanucleus.metadata.AbstractMemberMetaData;
import org.objectweb.asm.Label;
import org.objectweb.asm.Opcodes;
import org.objectweb.asm.Type;

/**
 * Method to generate the method "setZZZ" using ASM for CHECK_WRITE fields.
 * 
 * static void jdoSetZZZ(MyClass objPC, YYY zzz)
 * {
 *     if (objPC.jdoFlags != 0 && objPC.jdoStateManager != null)
 *         objPC.jdoStateManager.setStringField(objPC, 2, objPC.ZZZ, zzz);
 *     else
 *     {
 *         objPC.ZZZ = zzz;
 *         if (objPC.jdoIsDetached() == true)
 *             ((BitSet) objPC.jdoDetachedState[3]).set(2);
 *     }
 * }
 * 
* with the last part only applying when Detachable */ public class JdoSetViaCheck extends ASMClassMethod { /** Field that this jdoSetZZZ is for. */ protected AbstractMemberMetaData fmd; /** * Constructor. * @param enhancer ClassEnhancer * @param fmd MetaData for the field we are generating for */ public JdoSetViaCheck(ClassEnhancer enhancer, AbstractMemberMetaData fmd) { super(enhancer, enhancer.getSetMethodPrefixMethodName() + fmd.getName(), (fmd.isPublic() ? Opcodes.ACC_PUBLIC : 0) | (fmd.isProtected() ? Opcodes.ACC_PROTECTED : 0) | (fmd.isPrivate() ? Opcodes.ACC_PRIVATE : 0) | Opcodes.ACC_STATIC, null, null, null); // Set the arg types/names argTypes = new Class[] {getClassEnhancer().getClassEnhanced(), fmd.getType()}; argNames = new String[] {"objPC", "val"}; this.fmd = fmd; } /** * Method to add the contents of the class method. */ public void execute() { visitor.visitCode(); String fieldTypeDesc = Type.getDescriptor(fmd.getType()); Label startLabel = new Label(); visitor.visitLabel(startLabel); // "if (objPC.jdoFlags != 0 && objPC.jdoStateManager != null)" visitor.visitVarInsn(Opcodes.ALOAD, 0); visitor.visitFieldInsn(Opcodes.GETFIELD, getClassEnhancer().getASMClassName(), enhancer.getFlagsFieldName(), "B"); Label l1 = new Label(); visitor.visitJumpInsn(Opcodes.IFEQ, l1); visitor.visitVarInsn(Opcodes.ALOAD, 0); visitor.visitFieldInsn(Opcodes.GETFIELD, getClassEnhancer().getASMClassName(), enhancer.getStateManagerFieldName(), "L" + enhancer.getStateManagerAsmClassName() + ";"); visitor.visitJumpInsn(Opcodes.IFNULL, l1); // "objPC.jdoStateManager.setYYYField(objPC, 8, objPC.ZZZ, val);" visitor.visitVarInsn(Opcodes.ALOAD, 0); visitor.visitFieldInsn(Opcodes.GETFIELD, getClassEnhancer().getASMClassName(), enhancer.getStateManagerFieldName(), "L" + enhancer.getStateManagerAsmClassName() + ";"); visitor.visitVarInsn(Opcodes.ALOAD, 0); ASMUtils.addBIPUSHToMethod(visitor, fmd.getFieldId()); if (enhancer.getClassMetaData().getPersistenceCapableSuperclass() != null) { visitor.visitFieldInsn(Opcodes.GETSTATIC, getClassEnhancer().getASMClassName(), enhancer.getInheritedFieldCountFieldName(), "I"); visitor.visitInsn(Opcodes.IADD); } visitor.visitVarInsn(Opcodes.ALOAD, 0); visitor.visitFieldInsn(Opcodes.GETFIELD, getClassEnhancer().getASMClassName(), fmd.getName(), fieldTypeDesc); ASMUtils.addLoadForType(visitor, fmd.getType(), 1); String jdoMethodName = "set" + ASMUtils.getTypeNameForJDOMethod(fmd.getType()) + "Field"; String argTypeDesc = fieldTypeDesc; if (jdoMethodName.equals("setObjectField")) { argTypeDesc = ASMUtils.CD_Object; } visitor.visitMethodInsn(Opcodes.INVOKEINTERFACE, enhancer.getStateManagerAsmClassName(), jdoMethodName, "(L" + enhancer.getPersistableAsmClassName() + ";I" + argTypeDesc + argTypeDesc + ")V"); Label l3 = new Label(); visitor.visitJumpInsn(Opcodes.GOTO, l3); // "objPC.text = val;" visitor.visitLabel(l1); if (ASMClassEnhancer.useFrames()) { visitor.visitFrame(Opcodes.F_SAME, 0, null, 0, null); } visitor.visitVarInsn(Opcodes.ALOAD, 0); ASMUtils.addLoadForType(visitor, fmd.getType(), 1); visitor.visitFieldInsn(Opcodes.PUTFIELD, getClassEnhancer().getASMClassName(), fmd.getName(), fieldTypeDesc); if (enhancer.getClassMetaData().isDetachable()) { // "if (objPC.jdoIsDetached() == true) ((BitSet) objPC.jdoDetachedState[3]).set(8);" visitor.visitVarInsn(Opcodes.ALOAD, 0); visitor.visitMethodInsn(Opcodes.INVOKEVIRTUAL, getClassEnhancer().getASMClassName(), enhancer.getIsDetachedMethodName(), "()Z"); visitor.visitJumpInsn(Opcodes.IFEQ, l3); visitor.visitVarInsn(Opcodes.ALOAD, 0); visitor.visitFieldInsn(Opcodes.GETFIELD, getClassEnhancer().getASMClassName(), enhancer.getDetachedStateFieldName(), "[Ljava/lang/Object;"); visitor.visitInsn(Opcodes.ICONST_3); visitor.visitInsn(Opcodes.AALOAD); visitor.visitTypeInsn(Opcodes.CHECKCAST, "java/util/BitSet"); ASMUtils.addBIPUSHToMethod(visitor, fmd.getFieldId()); if (enhancer.getClassMetaData().getPersistenceCapableSuperclass() != null) { visitor.visitFieldInsn(Opcodes.GETSTATIC, getClassEnhancer().getASMClassName(), enhancer.getInheritedFieldCountFieldName(), "I"); visitor.visitInsn(Opcodes.IADD); } visitor.visitMethodInsn(Opcodes.INVOKEVIRTUAL, "java/util/BitSet", "set", "(I)V"); } visitor.visitLabel(l3); if (ASMClassEnhancer.useFrames()) { visitor.visitFrame(Opcodes.F_SAME, 0, null, 0, null); } visitor.visitInsn(Opcodes.RETURN); Label endLabel = new Label(); visitor.visitLabel(endLabel); visitor.visitLocalVariable(argNames[0], getClassEnhancer().getClassDescriptor(), null, startLabel, endLabel, 0); visitor.visitLocalVariable(argNames[1], fieldTypeDesc, null, startLabel, endLabel, 1); visitor.visitMaxs(5, 2); visitor.visitEnd(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy