/** * Copyright 2006-2016 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 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 org.mybatis.generator.codegen.mybatis3.javamapper.elements.sqlprovider; import static org.mybatis.generator.codegen.mybatis3.MyBatis3FormattingUtilities.getEscapedColumnName; import static org.mybatis.generator.codegen.mybatis3.MyBatis3FormattingUtilities.getParameterClause; import static org.mybatis.generator.internal.util.JavaBeansUtil.getGetterMethodName; import static org.mybatis.generator.internal.util.StringUtility.escapeStringForJava; import java.util.Set; import java.util.TreeSet; import org.mybatis.generator.api.IntrospectedColumn; import org.mybatis.generator.api.dom.java.FullyQualifiedJavaType; import org.mybatis.generator.api.dom.java.JavaVisibility; import org.mybatis.generator.api.dom.java.Method; import org.mybatis.generator.api.dom.java.Parameter; import org.mybatis.generator.api.dom.java.TopLevelClass; import org.mybatis.generator.codegen.mybatis3.ListUtilities; /** * * @author Jeff Butler * */ public class ProviderInsertSelectiveMethodGenerator extends AbstractJavaProviderMethodGenerator { public ProviderInsertSelectiveMethodGenerator(boolean useLegacyBuilder) { super(useLegacyBuilder); } @Override public void addClassElements(TopLevelClass topLevelClass) { Set<String> staticImports = new TreeSet<String>(); Set<FullyQualifiedJavaType> importedTypes = new TreeSet<FullyQualifiedJavaType>(); if (useLegacyBuilder) { staticImports.add("org.apache.ibatis.jdbc.SqlBuilder.BEGIN"); //$NON-NLS-1$ staticImports.add("org.apache.ibatis.jdbc.SqlBuilder.INSERT_INTO"); //$NON-NLS-1$ staticImports.add("org.apache.ibatis.jdbc.SqlBuilder.SQL"); //$NON-NLS-1$ staticImports.add("org.apache.ibatis.jdbc.SqlBuilder.VALUES"); //$NON-NLS-1$ } else { importedTypes.add(NEW_BUILDER_IMPORT); } FullyQualifiedJavaType fqjt = introspectedTable.getRules() .calculateAllFieldsClass(); importedTypes.add(fqjt); Method method = new Method( introspectedTable.getInsertSelectiveStatementId()); method.setVisibility(JavaVisibility.PUBLIC); method.setReturnType(FullyQualifiedJavaType.getStringInstance()); method.addParameter(new Parameter(fqjt, "record")); //$NON-NLS-1$ context.getCommentGenerator().addGeneralMethodComment(method, introspectedTable); if (useLegacyBuilder) { method.addBodyLine("BEGIN();"); //$NON-NLS-1$ } else { method.addBodyLine("SQL sql = new SQL();"); //$NON-NLS-1$ } method.addBodyLine(String.format("%sINSERT_INTO(\"%s\");", //$NON-NLS-1$ builderPrefix, escapeStringForJava(introspectedTable.getFullyQualifiedTableNameAtRuntime()))); for (IntrospectedColumn introspectedColumn : ListUtilities.removeIdentityAndGeneratedAlwaysColumns(introspectedTable.getAllColumns())) { method.addBodyLine(""); //$NON-NLS-1$ if (!introspectedColumn.getFullyQualifiedJavaType().isPrimitive() && !introspectedColumn.isSequenceColumn()) { method.addBodyLine(String.format("if (record.%s() != null) {", //$NON-NLS-1$ getGetterMethodName(introspectedColumn.getJavaProperty(), introspectedColumn.getFullyQualifiedJavaType()))); } method.addBodyLine(String.format("%sVALUES(\"%s\", \"%s\");", //$NON-NLS-1$ builderPrefix, escapeStringForJava(getEscapedColumnName(introspectedColumn)), getParameterClause(introspectedColumn))); if (!introspectedColumn.getFullyQualifiedJavaType().isPrimitive() && !introspectedColumn.isSequenceColumn()) { method.addBodyLine("}"); //$NON-NLS-1$ } } method.addBodyLine(""); //$NON-NLS-1$ if (useLegacyBuilder) { method.addBodyLine("return SQL();"); //$NON-NLS-1$ } else { method.addBodyLine("return sql.toString();"); //$NON-NLS-1$ } if (context.getPlugins().providerInsertSelectiveMethodGenerated(method, topLevelClass, introspectedTable)) { topLevelClass.addStaticImports(staticImports); topLevelClass.addImportedTypes(importedTypes); topLevelClass.addMethod(method); } } }