org.mybatis.generator.config.GeneratedKey Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2005 The Apache Software Foundation
*
* 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.config;
import org.mybatis.generator.api.dom.xml.Attribute;
import org.mybatis.generator.api.dom.xml.XmlElement;
import org.mybatis.generator.internal.db.DatabaseDialects;
import java.util.List;
import static org.mybatis.generator.internal.util.StringUtility.stringHasValue;
import static org.mybatis.generator.internal.util.messages.Messages.getString;
/**
* This class specifies that a key is auto-generated, either as an identity
* column (post insert), or as some other query like a sequences (pre insert).
*
* @author Jeff Butler
*/
public class GeneratedKey {
private String column;
private String configuredSqlStatement;
private String runtimeSqlStatement;
private boolean isIdentity;
private String type;
/**
* GeneratedKey
* @param column column
* @param configuredSqlStatement configuredSqlStatement
* @param isIdentity isIdentity
* @param type type
*/
public GeneratedKey(String column, String configuredSqlStatement,
boolean isIdentity, String type) {
super();
this.column = column;
this.type = type;
this.isIdentity = isIdentity;
this.configuredSqlStatement = configuredSqlStatement;
DatabaseDialects dialect = DatabaseDialects
.getDatabaseDialect(configuredSqlStatement);
if (dialect == null) {
this.runtimeSqlStatement = configuredSqlStatement;
} else {
this.runtimeSqlStatement = dialect.getIdentityRetrievalStatement();
}
}
public String getColumn() {
return column;
}
public boolean isIdentity() {
return isIdentity;
}
public String getRuntimeSqlStatement() {
return runtimeSqlStatement;
}
public String getType() {
return type;
}
/**
* This method is used by the iBATIS2 generators to know
* if the XML selectKey element should be placed
* before the insert SQL statement.
*
* @return boolean
*/
public boolean isPlacedBeforeInsertInIbatis2() {
boolean rc;
if (stringHasValue(type)) {
rc = true;
} else {
rc = !isIdentity;
}
return rc;
}
public String getMyBatis3Order() {
return isIdentity ? "AFTER" : "BEFORE"; //$NON-NLS-1$ //$NON-NLS-2$
}
public XmlElement toXmlElement() {
XmlElement xmlElement = new XmlElement("generatedKey"); //$NON-NLS-1$
xmlElement.addAttribute(new Attribute("column", column)); //$NON-NLS-1$
xmlElement.addAttribute(new Attribute(
"sqlStatement", configuredSqlStatement)); //$NON-NLS-1$
if (stringHasValue(type)) {
xmlElement.addAttribute(new Attribute("type", type)); //$NON-NLS-1$
}
xmlElement.addAttribute(new Attribute("identity", //$NON-NLS-1$
isIdentity ? "true" : "false")); //$NON-NLS-1$ //$NON-NLS-2$
return xmlElement;
}
public void validate(List errors, String tableName) {
if (!stringHasValue(runtimeSqlStatement)) {
errors.add(getString("ValidationError.7", //$NON-NLS-1$
tableName));
}
if (stringHasValue(type)) {
if (!"pre".equals(type) && !"post".equals(type)) { //$NON-NLS-1$ //$NON-NLS-2$
errors.add(getString("ValidationError.15", //$NON-NLS-1$
tableName));
}
}
if ("pre".equals(type) && isIdentity) { //$NON-NLS-1$
errors.add(getString("ValidationError.23", //$NON-NLS-1$
tableName));
}
if ("post".equals(type) && !isIdentity) { //$NON-NLS-1$
errors.add(getString("ValidationError.24", //$NON-NLS-1$
tableName));
}
}
public boolean isJdbcStandard() {
return "JDBC".equals(runtimeSqlStatement); //$NON-NLS-1$
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy