Java tutorial
/* * Copyright 2009-2012 the original author or authors. * * 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 i 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.sinosoft.one.data.jade.statement; import com.sinosoft.one.data.jade.annotation.SQLType; import org.apache.commons.lang.ClassUtils; import java.lang.reflect.Method; import java.util.HashMap; import java.util.List; import java.util.Map; /** * * @author qieqie * */ public class JdbcStatement implements Statement { private final StatementMetaData metaData; private final Interpreter[] interpreters; private final Querier querier; private final boolean batchUpdate; private final SQLType sqlType; public JdbcStatement(StatementMetaData statementMetaData, SQLType sqlType, Interpreter[] interpreters, Querier querier) { this.metaData = statementMetaData; this.interpreters = (interpreters == null) ? new Interpreter[0] : interpreters; this.querier = querier; this.sqlType = sqlType; if (sqlType == SQLType.WRITE) { Method method = statementMetaData.getMethod(); Class<?>[] types = method.getParameterTypes(); Class<?> returnType = method.getReturnType(); if (returnType.isPrimitive()) { returnType = ClassUtils.primitiveToWrapper(returnType); } if (types.length > 0 && List.class.isAssignableFrom(types[0])) { this.batchUpdate = true; if (returnType != void.class && returnType != int[].class && returnType != Integer[].class && returnType != Integer.class) { throw new IllegalArgumentException("error return type:" + method.getDeclaringClass().getName() + "#" + method.getName() + "-->" + returnType); } } else { this.batchUpdate = false; if (returnType != void.class && returnType != Boolean.class && !Number.class.isAssignableFrom(returnType)) { throw new IllegalArgumentException("error return type:" + method.getDeclaringClass().getName() + "#" + method.getName() + "-->" + returnType); } } } else { this.batchUpdate = false; } } public StatementMetaData getMetaData() { return metaData; } // TODO: ??? public Object execute(Map<String, Object> parameters) { if (batchUpdate) { // List<?> list = (List<?>) parameters.get("?1"); StatementRuntime[] runtimes = new StatementRuntime[list.size()]; for (int i = 0; i < list.size(); i++) { Object arg = list.get(i); HashMap<String, Object> clone = new HashMap<String, Object>(parameters); // ? clone.put("?1", arg); if (metaData.getSQLParamAt(0) != null) { clone.put(metaData.getSQLParamAt(0).value(), arg); } StatementRuntime runtime = new StatementRuntimeImpl(metaData, clone); for (Interpreter interpreter : interpreters) { interpreter.interpret(runtime); } runtimes[i] = runtime; } return querier.execute(sqlType, runtimes); } else { StatementRuntime runtime = new StatementRuntimeImpl(metaData, parameters); for (Interpreter interpreter : interpreters) { interpreter.interpret(runtime); } return querier.execute(sqlType, runtime); } // // // path?catalog?node // Class<?> daoClass = metaData.getClassMetaData().getDAOClass(); // DAO model = daoClass.getAnnotation(DAO.class); // // // catalog // if (result.getClientInfo(RoutingConnection.CATALOG) == null) { // if (model.catalog() != null && model.catalog().length() > 0) { // result.setClientInfo(RoutingConnection.CATALOG, model.catalog()); // } // } // // // node // if (result.getClientInfo(RoutingConnection.NODE) == null) { // UseMaster useMaster = daoMethod.getAnnotation(UseMaster.class); // if (useMaster != null) { // if (useMaster.value()) { // result.setClientInfo(RoutingConnection.NODE, "master"); // } else { // result.setClientInfo(RoutingConnection.NODE, "slave"); // } // } // } // // // return null; } }