org.jumpmind.symmetric.io.ThresholdFileWriter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of symmetric-ds Show documentation
Show all versions of symmetric-ds Show documentation
SymmetricDS is an open source database synchronization solution. It is platform-independent,
web-enabled, and database-agnostic. SymmetricDS was first built to replicate changes between 'retail store'
databases and ad centralized 'corporate' database.
The newest version!
/*
* Licensed to JumpMind Inc under one or more contributor
* license agreements. See the NOTICE file distributed
* with this work for additional information regarding
* copyright ownership. JumpMind Inc licenses this file
* to you under the GNU Lesser General Public License (the
* "License"); you may not use this file except in compliance
* with the License.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, see
* .
*
* 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 org.jumpmind.symmetric.io;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.io.StringReader;
import java.io.Writer;
import org.jumpmind.symmetric.util.AppUtils;
/**
* Write to an internal buffer up until the threshold. When the threshold is
* reached, flush the buffer to the file and write to the file from that point
* forward.
*
*
*/
public class ThresholdFileWriter extends Writer {
File file;
String tempFileCategory;
BufferedWriter fileWriter;
BufferedReader fileReader;
StringBuilder buffer;
long threshhold;
/**
* @param threshold The number of bytes at which to start writing to a file
* @param file The file to write to after the threshold has been reached
*/
public ThresholdFileWriter(long threshold, File file) {
this.file = file;
this.buffer = new StringBuilder();
this.threshhold = threshold;
}
/**
* @param threshold The number of bytes at which to start writing to a file
* @param tempFileCategory uses {@link AppUtils#createTempFile(String)} with this argument as the parameter
* @see AppUtils#createTempFile(String)
*/
public ThresholdFileWriter(long threshold, String tempFileCategory) {
this.tempFileCategory = tempFileCategory;
this.buffer = new StringBuilder();
this.threshhold = threshold;
}
@Override
public void close() throws IOException {
if (fileWriter != null) {
fileWriter.close();
fileWriter = null;
}
}
@Override
public void flush() throws IOException {
if (fileWriter != null) {
fileWriter.flush();
}
}
@Override
public void write(char[] cbuf, int off, int len) throws IOException {
if (fileWriter != null) {
fileWriter.write(cbuf, off, len);
} else if (len + buffer.length() > threshhold) {
if (file == null) {
file = AppUtils.createTempFile(tempFileCategory == null ? "threshold.file.writer" : tempFileCategory);
}
fileWriter = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(file), "UTF-8"));
fileWriter.write(buffer.toString());
fileWriter.write(cbuf, off, len);
fileWriter.flush();
} else {
buffer.append(new String(cbuf), off, len);
}
}
public BufferedReader getReader() throws IOException {
if (file != null && file.exists()) {
return new BufferedReader(new InputStreamReader(new FileInputStream(file), "UTF-8"));
} else {
return new BufferedReader(new StringReader(buffer.toString()));
}
}
public void delete() {
if (file != null && file.exists()) {
file.delete();
}
buffer.setLength(0);
}
}