net.sf.hajdbc.sql.FileSupportImpl Maven / Gradle / Ivy
/*
* HA-JDBC: High-Availability JDBC
* Copyright (C) 2012 Paul Ferraro
*
* 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 3 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 program. If not, see .
*/
package net.sf.hajdbc.sql;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStream;
import java.io.Reader;
import java.io.Writer;
import java.nio.ByteBuffer;
import java.nio.CharBuffer;
import java.nio.channels.Channels;
import java.nio.channels.FileChannel;
import java.nio.channels.ReadableByteChannel;
import java.sql.SQLException;
import java.util.LinkedList;
import java.util.List;
import net.sf.hajdbc.ExceptionFactory;
import net.sf.hajdbc.util.Files;
import net.sf.hajdbc.util.Resources;
/**
* @author Paul Ferraro
* @since 1.0
*/
@Deprecated
public class FileSupportImpl implements FileSupport
{
private static final String TEMP_FILE_SUFFIX = ".lob";
private static final int BUFFER_SIZE = 8192;
private final List files = new LinkedList();
private final ExceptionFactory exceptionFactory;
public FileSupportImpl(ExceptionFactory exceptionFactory)
{
this.exceptionFactory = exceptionFactory;
}
/**
* @see net.sf.hajdbc.sql.FileSupport#createFile(java.io.InputStream)
*/
@Override
public File createFile(InputStream inputStream) throws E
{
try
{
File file = this.createTempFile();
FileOutputStream output = new FileOutputStream(file);
try
{
FileChannel fileChannel = output.getChannel();
ReadableByteChannel inputChannel = Channels.newChannel(inputStream);
ByteBuffer buffer = ByteBuffer.allocate(BUFFER_SIZE);
while (inputChannel.read(buffer) > 0)
{
buffer.flip();
fileChannel.write(buffer);
buffer.compact();
}
return file;
}
finally
{
Resources.close(output);
}
}
catch (IOException e)
{
throw this.exceptionFactory.createException(e);
}
}
/**
* @see net.sf.hajdbc.sql.FileSupport#createFile(java.io.Reader)
*/
@Override
public File createFile(Reader reader) throws E
{
try
{
File file = this.createTempFile();
Writer writer = new FileWriter(file);
try
{
CharBuffer buffer = CharBuffer.allocate(BUFFER_SIZE);
while (reader.read(buffer) > 0)
{
buffer.flip();
writer.append(buffer);
buffer.clear();
}
return file;
}
finally
{
Resources.close(writer);
}
}
catch (IOException e)
{
throw this.exceptionFactory.createException(e);
}
}
/**
* @see net.sf.hajdbc.sql.FileSupport#getReader(java.io.File)
*/
@Override
public Reader getReader(File file) throws E
{
try
{
return new BufferedReader(new FileReader(file), BUFFER_SIZE);
}
catch (IOException e)
{
throw this.exceptionFactory.createException(e);
}
}
/**
* @see net.sf.hajdbc.sql.FileSupport#getInputStream(java.io.File)
*/
@Override
public InputStream getInputStream(File file) throws E
{
try
{
return Channels.newInputStream(new FileInputStream(file).getChannel());
}
catch (IOException e)
{
throw this.exceptionFactory.createException(e);
}
}
/**
* Creates a temp file and stores a reference to it so that it can be deleted later.
* @return a temp file
* @throws SQLException if an IO error occurs
*/
private File createTempFile() throws IOException
{
File file = Files.createTempFile(TEMP_FILE_SUFFIX);
this.files.add(file);
return file;
}
/**
* @see net.sf.hajdbc.sql.FileSupport#close()
*/
@Override
public void close()
{
for (File file: this.files)
{
try {
java.nio.file.Files.deleteIfExists(file.toPath());
} catch (IOException e) {
//ignore e.printStackTrace();
}
}
this.files.clear();
}
/**
* @see java.lang.Object#finalize()
*/
@Override
protected void finalize() throws Throwable
{
this.close();
super.finalize();
}
}