org.apache.torque.util.TransactionComparator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maven-impex-plugin Show documentation
Show all versions of maven-impex-plugin Show documentation
Maven plugin for converting database agnostic XML files into platform specific SQL files and for examining proprietary databases via JDBC to generate database agnostic XML files
/**
* Copyright 2004-2012 The Kuali Foundation
*
* Licensed under the Educational Community 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.opensource.org/licenses/ecl2.php
*
* 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.apache.torque.util;
import java.util.Comparator;
import static org.apache.commons.lang.StringUtils.*;
import org.kuali.db.Transaction;
/**
*
*
*/
public class TransactionComparator implements Comparator {
String suffix = ".sql";
String constraints = "-constraints";
String artifactId;
public TransactionComparator() {
this(null);
}
public TransactionComparator(String artifactId) {
super();
this.artifactId = artifactId;
}
@Override
public int compare(Transaction one, Transaction two) {
String loc1 = one.getResourceLocation();
String loc2 = two.getResourceLocation();
// If loc1 is ks-embedded-db.sql, loc1 goes before loc2
if (isSchemaSQL(loc1)) {
return -1;
}
// If loc2 is ks-embedded-db.sql, loc1 goes after loc2
if (isSchemaSQL(loc2)) {
return 1;
}
// If loc1 is ks-embedded-db-constraints.sql, loc1 goes after loc2
if (isSchemaConstraintsSQL(loc1)) {
return 1;
}
// If loc2 is ks-embedded-db-constraints.sql, loc1 goes before loc2
if (isSchemaConstraintsSQL(loc2)) {
return -1;
}
// They are both empty, it is a tie
if (isEmpty(loc1) && isEmpty(loc2)) {
return 0;
}
// Loc2 is empty but loc1 is not, loc1 goes after loc2
if (isEmpty(loc1) && !isEmpty(loc2)) {
return 1;
}
// Loc1 is empty but loc2 is not, loc1 goes before loc2
if (!isEmpty(loc1) && isEmpty(loc2)) {
return -1;
}
// Fall through to the normal string compare
return loc1.compareTo(loc2);
}
protected boolean isSchemaSQL(String location) {
if (isEmpty(location)) {
return false;
} else {
return location.endsWith(getArtifactId() + getSuffix());
}
}
protected boolean isSchemaConstraintsSQL(String location) {
return location.endsWith(getArtifactId() + getConstraints() + getSuffix());
}
public String getArtifactId() {
return artifactId;
}
public void setArtifactId(String schema) {
this.artifactId = schema;
}
public String getSuffix() {
return suffix;
}
public void setSuffix(String suffix) {
this.suffix = suffix;
}
public String getConstraints() {
return constraints;
}
public void setConstraints(String constraints) {
this.constraints = constraints;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy