blob: 4182dc5bfa24fad2be30d6d8adc52a4e01f11b42 [file] [log] [blame]
package profiledb.storage;
import profiledb.model.Experiment;
import java.io.*;
import java.net.URI;
import java.util.Arrays;
import java.util.Collection;
import java.util.LinkedList;
public class FileStorage extends Storage {
/**
* File where {@link Experiment}s will be written
*/
private File file;
/**
* Assigns File where {@link Experiment}s will be written regarding to given URI
*
* @param uri URI where experiments are persisted
*/
public FileStorage(URI uri) {
super(uri);
this.file = new File(uri);
}
/**
* To change target URI during execution
*
* @param uri determines new URI where {@link Experiment}s will be persisted
*/
@Override
public void changeLocation(URI uri){
super.changeLocation(uri);
this.file = new File(uri);
}
/**
* Write {@link Experiment}s to a {@link File}. Existing file contents will be overwritten.
*
* @param experiments the {@link Experiment}s
* @throws IOException if the writing fails
*/
@Override
public void save(Collection<Experiment> experiments) throws IOException {
this.file.getAbsoluteFile().getParentFile().mkdirs();
try (FileOutputStream fos = new FileOutputStream(this.file, false)) {
this.save(experiments, fos);
}
}
/**
* Write {@link Experiment}s to a {@link File}. Existing file contents will be overwritten.
*
* @param experiments the {@link Experiment}s
* @throws IOException if the writing fails
*/
@Override
public void save(Experiment... experiments) throws IOException {
this.save(Arrays.asList(experiments));
}
/**
* Load {@link Experiment}s from a {@link File}.
*
* @return the {@link Experiment}s
*/
@Override
public Collection<Experiment> load() throws IOException {
return load(new FileInputStream(this.file));
}
/**
* Append {@link Experiment}s to a {@link File}. Existing file contents will be preserved.
*
* @param experiments the {@link Experiment}s
* @throws IOException if the writing fails
*/
@Override
public void append(Collection<Experiment> experiments) throws IOException {
this.file.getAbsoluteFile().getParentFile().mkdirs();
try (FileOutputStream fos = new FileOutputStream(this.file, true)) {
this.save(experiments, fos);
}
}
/**
* Append {@link Experiment}s to a {@link File}. Existing file contents will be preserved.
*
* @param experiments the {@link Experiment}s
* @throws IOException if the writing fails
*/
@Override
public void append(Experiment... experiments) throws IOException {
this.append(Arrays.asList(experiments));
}
}