blob: ba847c155fc873dbf5607704599a577cc126bcb7 [file] [log] [blame]
package profiledb.storage;
import profiledb.model.Experiment;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.net.URI;
import java.util.Arrays;
import java.util.Collection;
public class JDBCStorage extends Storage {
//TODO: Implement JDBC connection
private File file;
public JDBCStorage(URI uri) {
super(uri);
this.file = new File(uri);
}
@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));
}
}