file destroyer
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@2628 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
parent
a3efe35e4a
commit
db7d2afe82
|
@ -1,6 +1,7 @@
|
|||
package org.eclipse.jetty.jndi;
|
||||
|
||||
import java.lang.reflect.Method;
|
||||
import java.sql.Statement;
|
||||
|
||||
import javax.sql.DataSource;
|
||||
|
||||
|
@ -18,19 +19,45 @@ import org.eclipse.jetty.util.log.Log;
|
|||
public class DataSourceCloser implements Destroyable
|
||||
{
|
||||
final DataSource _datasource;
|
||||
final String _shutdown;
|
||||
|
||||
public DataSourceCloser(DataSource datasource)
|
||||
{
|
||||
if (datasource==null)
|
||||
throw new IllegalArgumentException();
|
||||
_datasource=datasource;
|
||||
_shutdown=null;
|
||||
}
|
||||
|
||||
public DataSourceCloser(DataSource datasource,String shutdownSQL)
|
||||
{
|
||||
if (datasource==null)
|
||||
throw new IllegalArgumentException();
|
||||
_datasource=datasource;
|
||||
_shutdown=shutdownSQL;
|
||||
}
|
||||
|
||||
public void destroy()
|
||||
{
|
||||
if (_datasource != null)
|
||||
try
|
||||
{
|
||||
if (_shutdown!=null)
|
||||
{
|
||||
Log.info("Shutdown datasource {}",_datasource);
|
||||
Statement stmt = _datasource.getConnection().createStatement();
|
||||
stmt.executeUpdate(_shutdown);
|
||||
stmt.close();
|
||||
}
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
Log.warn(e);
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
Method close = _datasource.getClass().getMethod("close", new Class[]{});
|
||||
Log.info("Close datasource {}",_datasource);
|
||||
close.invoke(_datasource, new Object[]{});
|
||||
}
|
||||
catch (Exception e)
|
||||
|
@ -38,6 +65,4 @@ public class DataSourceCloser implements Destroyable
|
|||
Log.warn(e);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -0,0 +1,68 @@
|
|||
package org.eclipse.jetty.util.component;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collection;
|
||||
import java.util.List;
|
||||
|
||||
import org.eclipse.jetty.util.IO;
|
||||
import org.eclipse.jetty.util.log.Log;
|
||||
import org.eclipse.jetty.util.resource.Resource;
|
||||
|
||||
public class FileDestroyable implements Destroyable
|
||||
{
|
||||
final List<File> _files = new ArrayList<File>();
|
||||
|
||||
public FileDestroyable()
|
||||
{
|
||||
}
|
||||
|
||||
public FileDestroyable(String file) throws IOException
|
||||
{
|
||||
_files.add(Resource.newResource(file).getFile());
|
||||
}
|
||||
|
||||
public FileDestroyable(File file)
|
||||
{
|
||||
_files.add(file);
|
||||
}
|
||||
|
||||
public void addFile(String file) throws IOException
|
||||
{
|
||||
_files.add(Resource.newResource(file).getFile());
|
||||
}
|
||||
|
||||
public void addFile(File file)
|
||||
{
|
||||
_files.add(file);
|
||||
}
|
||||
|
||||
public void addFiles(Collection<File> files)
|
||||
{
|
||||
_files.addAll(files);
|
||||
}
|
||||
|
||||
public void removeFile(String file) throws IOException
|
||||
{
|
||||
_files.remove(Resource.newResource(file).getFile());
|
||||
}
|
||||
|
||||
public void removeFile(File file)
|
||||
{
|
||||
_files.remove(file);
|
||||
}
|
||||
|
||||
public void destroy()
|
||||
{
|
||||
for (File file : _files)
|
||||
{
|
||||
if (file.exists())
|
||||
{
|
||||
Log.debug("Destroy {}",file);
|
||||
IO.delete(file);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue