public class JIPipeVirtualData extends Object implements AutoCloseable, Closeable
Constructor and Description |
---|
JIPipeVirtualData(Class<? extends JIPipeData> dataClass,
Path virtualStoragePath,
String stringRepresentation)
Creates a custom virtual data.
|
JIPipeVirtualData(JIPipeData data)
Create virtual data from data
|
Modifier and Type | Method and Description |
---|---|
void |
addUser(Object obj)
Marks the provided object as user of this data
|
boolean |
canClose()
Returns true if the data has no users and thus can be closed
|
void |
close() |
JIPipeVirtualData |
duplicate(JIPipeProgressInfo progressInfo)
Fully duplicates the virtual data
|
<T extends JIPipeData> |
getData(Class<T> klass,
JIPipeProgressInfo progressInfo)
Gets the currently stored data.
|
JIPipeData |
getData(JIPipeProgressInfo progressInfo)
Gets the currently stored data
|
Class<? extends JIPipeData> |
getDataClass() |
String |
getStringRepresentation() |
boolean |
isClosed()
Returns true if this object is closed and thus should not be used anymore
|
boolean |
isVirtual()
Returns true if the object is virtual
|
void |
makeNonVirtual(JIPipeProgressInfo progressInfo,
boolean removeVirtualDataStorage) |
void |
makeVirtual(JIPipeProgressInfo progressInfo,
boolean discard)
Makes the data virtual if not already
|
void |
removeUser(Object obj)
Un-marks the provided objects as user of this data
|
public JIPipeVirtualData(JIPipeData data)
data
- datapublic JIPipeVirtualData(Class<? extends JIPipeData> dataClass, Path virtualStoragePath, String stringRepresentation)
dataClass
- the data classvirtualStoragePath
- path for virtual storage (to create a new one use VirtualDataSettings.generateTempDirectory). Must be a valid row storage folder for the data type!stringRepresentation
- string representation of the datapublic JIPipeVirtualData duplicate(JIPipeProgressInfo progressInfo)
progressInfo
- the progress infopublic boolean isVirtual()
public boolean isClosed()
public void makeVirtual(JIPipeProgressInfo progressInfo, boolean discard)
progressInfo
- progressdiscard
- if existing data should be saved or discarded. Discard has no effect if data was not saved, yet.public void makeNonVirtual(JIPipeProgressInfo progressInfo, boolean removeVirtualDataStorage)
public <T extends JIPipeData> T getData(Class<T> klass, JIPipeProgressInfo progressInfo)
T
- the output typeklass
- the output typeprogressInfo
- the progress infopublic JIPipeData getData(JIPipeProgressInfo progressInfo)
progressInfo
- the progress infopublic String getStringRepresentation()
public Class<? extends JIPipeData> getDataClass()
public void addUser(Object obj)
obj
- the objectpublic void removeUser(Object obj)
obj
- the objectpublic boolean canClose()
public void close() throws IOException
close
in interface Closeable
close
in interface AutoCloseable
IOException
Copyright © 2020–2022 Leibniz Institute for Natural Product Research and Infection Biology - Hans Knöll Institute (HKI). All rights reserved.