org.jbpm.ant.JbpmSchemaTask Maven / Gradle / Ivy
The newest version!
/*
* JBoss, Home of Professional Open Source
* Copyright 2005, JBoss Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jbpm.ant;
import java.io.File;
import java.util.Iterator;
import java.util.List;
import org.apache.tools.ant.BuildException;
import org.apache.tools.ant.Project;
import org.apache.tools.ant.Task;
import org.apache.tools.ant.taskdefs.SQLExec.DelimiterType;
import org.jbpm.db.JbpmSchema;
import org.jbpm.db.hibernate.JbpmHibernateConfiguration;
import org.jbpm.util.IoUtil;
public class JbpmSchemaTask extends Task {
String config = "hibernate.cfg.xml";
String properties;
String action = "create";
String outputDir;
String outputPrefix;
String delimiter = ";";
String delimiterType = DelimiterType.NORMAL;
public void execute() throws BuildException {
// Create schema tool
JbpmSchema jbpmSchema = getJbpmSchema();
if ("create".equalsIgnoreCase(action)) {
jbpmSchema.createSchema(true, new File(outputDir, outputPrefix + ".create.sql").getAbsolutePath());
}
else if ("update".equalsIgnoreCase(action)) {
jbpmSchema.updateSchema(true, new File(outputDir, outputPrefix + ".update.sql").getAbsolutePath());
}
else if ("drop".equalsIgnoreCase(action)) {
jbpmSchema.dropSchema(true, new File(outputDir, outputPrefix + ".drop.sql").getAbsolutePath());
}
else if ("clean".equalsIgnoreCase(action)) {
jbpmSchema.cleanSchema(true, new File(outputDir, outputPrefix + ".clean.sql").getAbsolutePath());
}
else {
throw new BuildException("Unsupported action: " + action);
}
// Print exceptions, if any
List exceptions = jbpmSchema.getExceptions();
if (!exceptions.isEmpty()) {
for (Iterator i = exceptions.iterator(); i.hasNext();) {
Object exception = i.next();
log(exception.toString(), Project.MSG_ERR);
}
}
}
private JbpmSchema getJbpmSchema() {
JbpmHibernateConfiguration jbpmHibernateConfiguration = AntHelper.getConfiguration(config, properties);
JbpmSchema jbpmSchema = new JbpmSchema(jbpmHibernateConfiguration);
jbpmSchema.setDelimiter(DelimiterType.ROW.equals(delimiterType) ? IoUtil.lineSeparator
+ delimiter : delimiter);
return jbpmSchema;
}
public void setAction(String action) {
this.action = action;
}
public void setConfig(String config) {
this.config = config;
}
public void setProperties(String properties) {
this.properties = properties;
}
public void setDelimiter(String delimiter) {
this.delimiter = delimiter;
}
public void setDelimiterType(DelimiterType delimiterType) {
this.delimiterType = delimiterType.getValue();
}
public void setOutputDir(String outputDir) {
this.outputDir = outputDir;
}
public void setOutputPrefix(String outputPrefix) {
this.outputPrefix = outputPrefix;
}
}