stream.io.DataObjectWriter Maven / Gradle / Ivy
/**
*
*/
package stream.io;
import java.io.File;
import java.io.FileOutputStream;
import java.io.ObjectOutputStream;
import java.util.zip.GZIPOutputStream;
import stream.AbstractProcessor;
import stream.Data;
import stream.ProcessContext;
/**
* @author chris
*
*/
public class DataObjectWriter extends AbstractProcessor {
File file;
ObjectOutputStream out;
long cnt = 0L;
Integer reset = 25;
/**
* @return the file
*/
public File getFile() {
return file;
}
/**
* @param file
* the file to set
*/
public void setFile(File file) {
this.file = file;
}
/**
* @see stream.AbstractProcessor#init(stream.ProcessContext)
*/
@Override
public void init(ProcessContext ctx) throws Exception {
super.init(ctx);
if (file.getAbsolutePath().endsWith(".gz")) {
out = new ObjectOutputStream(new GZIPOutputStream(
new FileOutputStream(file, true)));
} else
out = new ObjectOutputStream(new FileOutputStream(file, true));
}
/**
* @see stream.Processor#process(stream.Data)
*/
@Override
public Data process(Data input) {
if (input != null) {
try {
out.writeObject(input);
this.cnt++;
if (cnt % reset == 0) {
out.reset();
}
} catch (Exception e) {
e.printStackTrace();
}
}
return input;
}
/**
* @see stream.AbstractProcessor#finish()
*/
@Override
public void finish() throws Exception {
super.finish();
out.flush();
out.close();
}
/**
* @return the reset
*/
public Integer getReset() {
return reset;
}
/**
* @param reset
* the reset to set
*/
public void setReset(Integer reset) {
this.reset = Math.max(1, reset);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy