org.daisy.braille.utils.pef.FileDevice Maven / Gradle / Ivy
/*
* Braille Utils (C) 2010-2011 Daisy Consortium
*
* This library 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.1 of the License, or (at your option)
* any later version.
*
* This library 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.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package org.daisy.braille.utils.pef;
import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import javax.print.PrintException;
import org.daisy.dotify.api.embosser.Device;
/**
* Provides a way of writing the files transmitted using the Device interface to files
* @author Joel Håkansson
*/
public class FileDevice implements Device {
private final File parent;
private final String prefix;
private final String suffix;
private int i;
/**
* Creates a new FileDevice, using the supplied settings.
* @param parent the parent folder
* @param prefix the file prefix
* @param suffix the file suffix
* @throws IllegalArgumentException if parent is not a directory
*/
public FileDevice(File parent, String prefix, String suffix) {
if (!parent.isDirectory()) {
throw new IllegalArgumentException("File is not a directory: " + parent);
}
this.parent = parent;
this.prefix = prefix;
this.suffix = suffix;
this.i = 1;
}
/**
* Creates a new FileDevice, using the supplied settings. File extension
* will be ".prn"
* @param parent the parent folder
* @param prefix the file prefix
* @throws IllegalArgumentException if parent is not a directory
*/
public FileDevice(File parent, String prefix) {
this(parent, prefix, ".prn");
}
/**
* Creates a new FileDevice, using the supplied settings. File extension
* will be ".prn" and file prefix will be "job_"
* @param parent the parent folder
* @throws IllegalArgumentException if parent is not a directory
*/
public FileDevice(File parent) {
this(parent, "job_");
}
@Override
public void transmit(File file) throws PrintException {
File out = new File(parent, prefix + i + suffix);
try ( BufferedInputStream bis = new BufferedInputStream(new FileInputStream(file));
BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(out))) {
int b;
while ((b = bis.read()) != -1) {
bos.write(b);
}
} catch (IOException e) {
throw new PrintException(e);
}
i++;
}
}