/*
* eXist Open Source Native XML Database
* Copyright (C) 2010 The eXist Project
* http://exist-db.org
*
* This program 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
* of the License, or (at your option) any later version.
*
* This program 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 library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* $Id$
*/
package org.exist.ant;
import org.apache.tools.ant.BuildException;
import org.apache.tools.ant.DirectoryScanner;
import org.apache.tools.ant.Project;
import org.apache.tools.ant.types.DirSet;
import org.exist.backup.Restore;
import org.exist.backup.restore.listener.DefaultRestoreListener;
import org.exist.backup.restore.listener.RestoreListener;
import java.io.File;
/**
* DOCUMENT ME!
*
* @author wolf
*/
public class RestoreTask extends AbstractXMLDBTask
{
private File zipFile = null;
private File dir = null;
private DirSet dirSet = null;
private String restorePassword = null;
/* (non-Javadoc)
* @see org.apache.tools.ant.Task#execute()
*/
public void execute() throws BuildException
{
if( uri == null ) {
throw( new BuildException( "You have to specify an XMLDB collection URI" ) );
}
if( ( dir == null ) && ( dirSet == null ) && ( zipFile == null ) ) {
throw( new BuildException( "Missing required argument: either dir, dirset or file required" ) );
}
if( ( dir != null ) && !dir.canRead() ) {
final String msg = "Cannot read restore file: " + dir.getAbsolutePath();
if( failonerror ) {
throw( new BuildException( msg ) );
} else {
log( msg, Project.MSG_ERR );
}
} else {
registerDatabase();
try {
if( dir != null ) {
log( "Restoring from " + dir.getAbsolutePath(), Project.MSG_INFO );
final File file = new File( dir, "__contents__.xml" );
if( !file.exists() ) {
final String msg = "Did not found file " + file.getAbsolutePath();
if( failonerror ) {
throw( new BuildException( msg ) );
} else {
log( msg, Project.MSG_ERR );
}
} else {
final Restore restore = new Restore();
final RestoreListener listener = new DefaultRestoreListener();
restore.restore( listener, user, password, restorePassword, file, uri );
}
} else if( dirSet != null ) {
final DirectoryScanner scanner = dirSet.getDirectoryScanner( getProject() );
scanner.scan();
final String[] includedFiles = scanner.getIncludedFiles();
log( "Found " + includedFiles.length + " files.\n" );
for( final String included : includedFiles ) {
dir = new File( scanner.getBasedir() + File.separator + included );
final File contentsFile = new File( dir, "__contents__.xml" );
if( !contentsFile.exists() ) {
final String msg = "Did not found file " + contentsFile.getAbsolutePath();
if( failonerror ) {
throw( new BuildException( msg ) );
} else {
log( msg, Project.MSG_ERR );
}
} else {
log( "Restoring from " + contentsFile.getAbsolutePath() + " ...\n" );
// TODO subdirectories as sub-collections?
final Restore restore = new Restore();
final RestoreListener listener = new DefaultRestoreListener();
restore.restore( listener, user, password, restorePassword, contentsFile, uri );
}
}
} else if( zipFile != null ) {
log( "Restoring from " + zipFile.getAbsolutePath(), Project.MSG_INFO );
if( !zipFile.exists() ) {
final String msg = "File not found: " + zipFile.getAbsolutePath();
if( failonerror ) {
throw( new BuildException( msg ) );
} else {
log( msg, Project.MSG_ERR );
}
} else {
final Restore restore = new Restore();
final RestoreListener listener = new DefaultRestoreListener();
restore.restore( listener, user, password, restorePassword, zipFile, uri );
}
}
}
catch( final Exception e ) {
e.printStackTrace();
final String msg = "Exception during restore: " + e.getMessage();
if( failonerror ) {
throw( new BuildException( msg, e ) );
} else {
log( msg, e, Project.MSG_ERR );
}
}
}
}
public DirSet createDirSet()
{
this.dirSet = new DirSet();
return( dirSet );
}
/**
* DOCUMENT ME!
*
* @param dir
*/
public void setDir( File dir )
{
this.dir = dir;
}
public void setFile( File file )
{
this.zipFile = file;
}
public void setRestorePassword( String pass )
{
this.restorePassword = pass;
}
}