List of usage examples for org.objectweb.asm MethodVisitor visitEnd
public void visitEnd()
From source file:com.google.gwtorm.jdbc.AccessGen.java
License:Apache License
private void implementNewEntityInstance() { final MethodVisitor mv = cw.visitMethod(ACC_PUBLIC | ACC_FINAL, "newEntityInstance", Type.getMethodDescriptor(Type.getType(Object.class), new Type[] {}), null, null); mv.visitCode();//from w ww . j a v a 2 s. c o m mv.visitTypeInsn(NEW, entityType.getInternalName()); mv.visitInsn(DUP); mv.visitMethodInsn(INVOKESPECIAL, entityType.getInternalName(), "<init>", Type.getMethodDescriptor(Type.VOID_TYPE, new Type[] {})); mv.visitInsn(ARETURN); mv.visitMaxs(-1, -1); mv.visitEnd(); }
From source file:com.google.gwtorm.jdbc.AccessGen.java
License:Apache License
private void implementBindOne(final DmlType type) { final MethodVisitor mv = cw.visitMethod(ACC_PUBLIC | ACC_FINAL, type.methodName, Type.getMethodDescriptor(Type.VOID_TYPE, new Type[] { Type.getType(PreparedStatement.class), Type.getType(Object.class) }), null, new String[] { Type.getType(SQLException.class).getInternalName() }); mv.visitCode();//from w w w.j a v a 2 s .c o m if (type != DmlType.INSERT && model.getPrimaryKey() == null) { throwUnsupported(mv, model.getMethodName() + " has no primary key"); mv.visitInsn(RETURN); mv.visitMaxs(-1, -1); mv.visitEnd(); } mv.visitVarInsn(ALOAD, 2); mv.visitTypeInsn(CHECKCAST, entityType.getInternalName()); mv.visitVarInsn(ASTORE, 2); final CodeGenSupport cgs = new CodeGenSupport(mv); cgs.setEntityType(entityType); for (final ColumnModel col : model.getRowVersionColumns()) { cgs.setFieldReference(col); cgs.fieldSetBegin(); cgs.pushFieldValue(); mv.visitInsn(ICONST_1); mv.visitInsn(IADD); cgs.fieldSetEnd(); } cgs.resetColumnIndex(0); if (type != DmlType.DELETE) { final List<ColumnModel> cols = new ArrayList<ColumnModel>(); cols.addAll(model.getDependentFields()); cols.addAll(model.getRowVersionFields()); for (final ColumnModel field : cols) { doBindOne(mv, cgs, field); } } for (final ColumnModel col : model.getPrimaryKeyColumns()) { cgs.setFieldReference(col); dialect.getSqlTypeInfo(col).generatePreparedStatementSet(cgs); } if (type != DmlType.INSERT) { for (final ColumnModel col : model.getRowVersionColumns()) { cgs.setFieldReference(col); cgs.pushSqlHandle(); cgs.pushColumnIndex(); cgs.pushFieldValue(); mv.visitInsn(ICONST_1); mv.visitInsn(ISUB); cgs.invokePreparedStatementSet("Int"); } } mv.visitInsn(RETURN); mv.visitMaxs(-1, -1); mv.visitEnd(); }
From source file:com.google.gwtorm.jdbc.AccessGen.java
License:Apache License
private void implementBindOneFetch() { final MethodVisitor mv = cw.visitMethod(ACC_PUBLIC | ACC_FINAL, "bindOneFetch", Type.getMethodDescriptor(Type.VOID_TYPE, new Type[] { Type.getType(ResultSet.class), Type.getType(Object.class) }), null, new String[] { Type.getType(SQLException.class).getInternalName() }); mv.visitCode();//from ww w . ja va 2 s .c o m mv.visitVarInsn(ALOAD, 2); mv.visitTypeInsn(CHECKCAST, entityType.getInternalName()); mv.visitVarInsn(ASTORE, 2); final CodeGenSupport cgs = new CodeGenSupport(mv); cgs.setEntityType(entityType); if (model.getPrimaryKey() != null && model.getPrimaryKey().getField().isNested()) { final ColumnModel pkf = model.getPrimaryKey().getField(); final Type vType = CodeGenSupport.toType(pkf); final int oldIdx = cgs.getColumnIndex(); cgs.setFieldReference(pkf); cgs.fieldSetBegin(); mv.visitTypeInsn(NEW, vType.getInternalName()); mv.visitInsn(DUP); mv.visitMethodInsn(INVOKESPECIAL, vType.getInternalName(), "<init>", Type.getMethodDescriptor(Type.VOID_TYPE, new Type[] {})); cgs.fieldSetEnd(); cgs.resetColumnIndex(oldIdx); } final List<ColumnModel> cols = new ArrayList<ColumnModel>(); cols.addAll(model.getDependentFields()); cols.addAll(model.getRowVersionFields()); cols.addAll(model.getPrimaryKeyColumns()); for (final ColumnModel field : cols) { doFetchOne(mv, cgs, field, -1); } mv.visitInsn(RETURN); mv.visitMaxs(-1, -1); mv.visitEnd(); }
From source file:com.google.gwtorm.jdbc.AccessGen.java
License:Apache License
private void implementKeyQuery(final KeyModel info) { final Type keyType = CodeGenSupport.toType(info.getField()); final StringBuilder query = new StringBuilder(); query.append(model.getSelectSql(dialect, REL_ALIAS)); query.append(" WHERE "); int nth = 1;//from ww w . j a v a2 s. c om for (final Iterator<ColumnModel> i = info.getAllLeafColumns().iterator(); i.hasNext();) { final ColumnModel c = i.next(); query.append(REL_ALIAS); query.append('.'); query.append(c.getColumnName()); query.append('='); query.append(dialect.getParameterPlaceHolder(nth++)); if (i.hasNext()) { query.append(" AND "); } } final MethodVisitor mv = cw.visitMethod(ACC_PUBLIC | ACC_FINAL, info.getName(), Type.getMethodDescriptor(entityType, new Type[] { keyType }), null, new String[] { Type.getType(OrmException.class).getInternalName() }); mv.visitCode(); final int keyvar = 1, psvar = keyvar + keyType.getSize(); mv.visitVarInsn(ALOAD, 0); mv.visitLdcInsn(query.toString()); mv.visitMethodInsn(INVOKEVIRTUAL, superTypeName, "prepareStatement", Type.getMethodDescriptor( Type.getType(PreparedStatement.class), new Type[] { Type.getType(String.class) })); mv.visitVarInsn(ASTORE, psvar); final CodeGenSupport cgs = new CodeGenSupport(mv) { @Override public void pushSqlHandle() { mv.visitVarInsn(ALOAD, psvar); } @Override public void pushFieldValue() { appendGetField(getFieldReference()); } @Override protected void appendGetField(final ColumnModel c) { if (c.getParent() == null) { loadVar(keyType, keyvar); } else { super.appendGetField(c); } } }; for (final ColumnModel c : info.getAllLeafColumns()) { cgs.setFieldReference(c); dialect.getSqlTypeInfo(c).generatePreparedStatementSet(cgs); } mv.visitVarInsn(ALOAD, 0); mv.visitVarInsn(ALOAD, psvar); mv.visitMethodInsn(INVOKEVIRTUAL, superTypeName, "queryOne", Type.getMethodDescriptor( Type.getType(Object.class), new Type[] { Type.getType(PreparedStatement.class) })); mv.visitTypeInsn(CHECKCAST, entityType.getInternalName()); mv.visitInsn(ARETURN); mv.visitMaxs(-1, -1); mv.visitEnd(); }
From source file:com.google.gwtorm.jdbc.AccessGen.java
License:Apache License
private void overrideGetMany() { final KeyModel pk = model.getPrimaryKey(); final StringBuilder query = new StringBuilder(); query.append(model.getSelectSql(dialect, REL_ALIAS)); query.append(" WHERE "); final ColumnModel pkcol = pk.getAllLeafColumns().iterator().next(); query.append(REL_ALIAS);/*from w ww . j a v a 2 s . c o m*/ query.append('.'); query.append(pkcol.getColumnName()); query.append(" IN"); final MethodVisitor mv = cw.visitMethod(ACC_PUBLIC | ACC_FINAL, "getBySqlIn", Type.getMethodDescriptor(Type.getType(com.google.gwtorm.server.ResultSet.class), new Type[] { Type.getType(Collection.class) }), null, new String[] { Type.getType(OrmException.class).getInternalName() }); mv.visitCode(); final int keyset = 1; final int psvar = 2; final int itrvar = 3; final int colvar = 4; final int keyvar = 5; mv.visitVarInsn(ALOAD, 0); mv.visitLdcInsn(query.toString()); mv.visitVarInsn(ALOAD, keyset); mv.visitMethodInsn(INVOKEVIRTUAL, superTypeName, "prepareBySqlIn", Type.getMethodDescriptor(Type.getType(PreparedStatement.class), new Type[] { Type.getType(String.class), Type.getType(Collection.class) })); mv.visitVarInsn(ASTORE, psvar); mv.visitVarInsn(ALOAD, keyset); mv.visitMethodInsn(INVOKEINTERFACE, Type.getInternalName(Collection.class), "iterator", Type.getMethodDescriptor(Type.getType(Iterator.class), new Type[] {})); mv.visitVarInsn(ASTORE, itrvar); mv.visitInsn(ICONST_1); mv.visitVarInsn(ISTORE, colvar); final Label endbind = new Label(); final Label again = new Label(); mv.visitLabel(again); mv.visitVarInsn(ALOAD, itrvar); mv.visitMethodInsn(INVOKEINTERFACE, Type.getInternalName(Iterator.class), "hasNext", Type.getMethodDescriptor(Type.BOOLEAN_TYPE, new Type[] {})); mv.visitJumpInsn(IFEQ, endbind); mv.visitVarInsn(ALOAD, itrvar); mv.visitMethodInsn(INVOKEINTERFACE, Type.getInternalName(Iterator.class), "next", Type.getMethodDescriptor(Type.getType(Object.class), new Type[] {})); mv.visitTypeInsn(CHECKCAST, CodeGenSupport.toType(pk.getField()).getInternalName()); mv.visitVarInsn(ASTORE, keyvar); final CodeGenSupport cgs = new CodeGenSupport(mv) { @Override public void pushSqlHandle() { mv.visitVarInsn(ALOAD, psvar); } @Override public void pushFieldValue() { appendGetField(getFieldReference()); } @Override public void pushColumnIndex() { mv.visitVarInsn(ILOAD, colvar); } @Override protected void appendGetField(final ColumnModel c) { if (c.getParent() == null) { mv.visitVarInsn(ALOAD, keyvar); } else { super.appendGetField(c); } } }; cgs.setFieldReference(pkcol); dialect.getSqlTypeInfo(pkcol).generatePreparedStatementSet(cgs); mv.visitIincInsn(colvar, 1); mv.visitJumpInsn(GOTO, again); mv.visitLabel(endbind); mv.visitVarInsn(ALOAD, 0); mv.visitVarInsn(ALOAD, psvar); mv.visitMethodInsn(INVOKEVIRTUAL, superTypeName, "queryList", Type.getMethodDescriptor(Type.getType(com.google.gwtorm.server.ResultSet.class), new Type[] { Type.getType(PreparedStatement.class) })); mv.visitInsn(ARETURN); mv.visitMaxs(-1, -1); mv.visitEnd(); }
From source file:com.google.gwtorm.jdbc.AccessGen.java
License:Apache License
private void implementQuery(final QueryModel info) { final List<ColumnModel> pCols = info.getParameters(); final boolean hasLimitParam = info.hasLimitParameter(); final Type[] pTypes = new Type[pCols.size() + (hasLimitParam ? 1 : 0)]; final int[] pVars = new int[pTypes.length]; int nextVar = 1; for (int i = 0; i < pCols.size(); i++) { pTypes[i] = CodeGenSupport.toType(pCols.get(i)); pVars[i] = nextVar;/* w w w.j av a 2 s . c om*/ nextVar += pTypes[i].getSize(); } if (hasLimitParam) { pTypes[pTypes.length - 1] = Type.INT_TYPE; pVars[pTypes.length - 1] = nextVar; nextVar += Type.INT_TYPE.getSize(); } final int psvar = nextVar++; final MethodVisitor mv = cw.visitMethod(ACC_PUBLIC | ACC_FINAL, info.getName(), Type.getMethodDescriptor(Type.getType(com.google.gwtorm.server.ResultSet.class), pTypes), null, new String[] { Type.getType(OrmException.class).getInternalName() }); mv.visitCode(); mv.visitVarInsn(ALOAD, 0); mv.visitLdcInsn(info.getSelectSql(dialect, REL_ALIAS)); mv.visitMethodInsn(INVOKEVIRTUAL, superTypeName, "prepareStatement", Type.getMethodDescriptor( Type.getType(PreparedStatement.class), new Type[] { Type.getType(String.class) })); mv.visitVarInsn(ASTORE, psvar); final int argIdx[] = new int[] { 0 }; final CodeGenSupport cgs = new CodeGenSupport(mv) { @Override public void pushSqlHandle() { mv.visitVarInsn(ALOAD, psvar); } @Override public void pushFieldValue() { appendGetField(getFieldReference()); } @Override protected void appendGetField(final ColumnModel c) { final int n = argIdx[0]; if (c == pCols.get(n)) { loadVar(pTypes[n], pVars[n]); } else { super.appendGetField(c); } } }; for (final ColumnModel c : pCols) { if (c.isNested()) { for (final ColumnModel n : c.getAllLeafColumns()) { cgs.setFieldReference(n); dialect.getSqlTypeInfo(n).generatePreparedStatementSet(cgs); } } else { cgs.setFieldReference(c); dialect.getSqlTypeInfo(c).generatePreparedStatementSet(cgs); } argIdx[0]++; } if (info.hasLimit()) { if (hasLimitParam || !dialect.selectHasLimit()) { mv.visitVarInsn(ALOAD, psvar); if (hasLimitParam) { mv.visitVarInsn(ILOAD, pVars[pTypes.length - 1]); } else { cgs.push(info.getStaticLimit()); } mv.visitMethodInsn(INVOKEINTERFACE, Type.getType(PreparedStatement.class).getInternalName(), "setMaxRows", Type.getMethodDescriptor(Type.VOID_TYPE, new Type[] { Type.INT_TYPE })); } } mv.visitVarInsn(ALOAD, 0); mv.visitVarInsn(ALOAD, psvar); mv.visitMethodInsn(INVOKEVIRTUAL, superTypeName, "queryList", Type.getMethodDescriptor(Type.getType(com.google.gwtorm.server.ResultSet.class), new Type[] { Type.getType(PreparedStatement.class) })); mv.visitInsn(ARETURN); mv.visitMaxs(-1, -1); mv.visitEnd(); }
From source file:com.google.gwtorm.nosql.AccessGen.java
License:Apache License
private void implementConstructor() { final String consName = "<init>"; final String consDesc = Type.getMethodDescriptor(Type.VOID_TYPE, new Type[] { schemaType }); final MethodVisitor mv = cw.visitMethod(ACC_PUBLIC, consName, consDesc, null, null); mv.visitCode();/*from w w w.j av a 2s.c om*/ mv.visitVarInsn(ALOAD, 0); mv.visitVarInsn(ALOAD, 1); mv.visitMethodInsn(INVOKESPECIAL, accessType.getInternalName(), consName, consDesc); mv.visitInsn(RETURN); mv.visitMaxs(-1, -1); mv.visitEnd(); }
From source file:com.google.gwtorm.nosql.AccessGen.java
License:Apache License
private void implementGetString(final String methodName, final String returnValue) { final MethodVisitor mv = cw.visitMethod(ACC_PUBLIC | ACC_FINAL, methodName, Type.getMethodDescriptor(string, new Type[] {}), null, null); mv.visitCode();/* w ww . j a v a2s . co m*/ mv.visitLdcInsn(returnValue); mv.visitInsn(ARETURN); mv.visitMaxs(-1, -1); mv.visitEnd(); }
From source file:com.google.gwtorm.nosql.AccessGen.java
License:Apache License
private void implementGetObjectCodec() { final MethodVisitor mv = cw.visitMethod(ACC_PUBLIC | ACC_FINAL, "getObjectCodec", Type.getMethodDescriptor(protobufCodec, new Type[] {}), null, null); mv.visitCode();/* w ww . ja v a 2 s . c o m*/ mv.visitFieldInsn(GETSTATIC, implTypeName, F_OBJECT_CODEC, protobufCodec.getDescriptor()); mv.visitInsn(ARETURN); mv.visitMaxs(-1, -1); mv.visitEnd(); }
From source file:com.google.gwtorm.nosql.AccessGen.java
License:Apache License
private void implementGetIndexes() { final MethodVisitor mv = cw.visitMethod(ACC_PUBLIC | ACC_FINAL, "getIndexes", Type.getMethodDescriptor(Type.getType(IndexFunction[].class), new Type[] {}), null, null); mv.visitCode();/*ww w .j av a 2 s. co m*/ mv.visitFieldInsn(GETSTATIC, implTypeName, F_INDEXES, Type.getType(IndexFunction[].class).getDescriptor()); mv.visitInsn(ARETURN); mv.visitMaxs(-1, -1); mv.visitEnd(); }