it.openutils.migration.task.setup.ScriptBasedUnconditionalTask Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openutils-dbmigration Show documentation
Show all versions of openutils-dbmigration Show documentation
DB Migration is a framework based on Spring for handling automatic db schema updates.
With DBMigration you can bundle upgrade scripts in you application. Its purpose
is to manage db updates consistently both for development than for production releases.
/*
* Copyright Openmind http://www.openmindonline.it
*
* 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 it.openutils.migration.task.setup;
import java.io.IOException;
import java.util.List;
import javax.sql.DataSource;
import org.apache.commons.io.IOUtils;
import org.apache.commons.lang.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.core.io.Resource;
import org.springframework.jdbc.core.simple.SimpleJdbcTemplate;
/**
* @author fgiust
* @version $Id: ScriptBasedUnconditionalTask.java 526 2008-01-14 12:00:28Z fgiust $
*/
public class ScriptBasedUnconditionalTask extends BaseDbTask implements DbTask
{
/**
* Logger.
*/
private Logger log = LoggerFactory.getLogger(ScriptBasedUnconditionalTask.class);
private List scripts;
/**
* Sets the scripts.
* @param scripts the scripts to set
*/
public void setScripts(List scripts)
{
this.scripts = scripts;
}
/**
* {@inheritDoc}
*/
public void execute(DataSource dataSource)
{
for (Resource script : scripts)
{
if (script == null || !script.exists())
{
log.error("Unable to execute db task \"{}\", script \"{}\" not found.", getDescription(), script);
return;
}
String scriptContent;
try
{
// @todo we should read line by line, avoiding to cache all the script in memory
scriptContent = IOUtils.toString(script.getInputStream(), "UTF8");
}
catch (IOException e)
{
log.error("Unable to execute db task \"{}\", script \"{}\" can't be read.", getDescription(), script);
return;
}
String[] ddls = StringUtils.split(scriptContent, ";");
SimpleJdbcTemplate jdbcTemplate = new SimpleJdbcTemplate(dataSource);
for (String ddl : ddls)
{
if (StringUtils.isNotBlank(ddl))
{
log.debug("Executing:\n{}", ddl);
jdbcTemplate.update(ddl);
}
}
}
}
}