Package org.openrefine.model.changes
Interface ChangeDataStore
-
- All Known Implementing Classes:
FileChangeDataStore,LazyChangeDataStore
public interface ChangeDataStoreStores and retrievesChangeDataobjects keyed by a pair: - the id of the change it belongs to - a string id for which part of the change it represents (such that changes can potentially register multiple change data)A serializer is provided for both methods if they want to store the change data physically somewhere.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddiscardAll(long historyEntryId)Discards all change data objects which belong to a given history entry id.voiddispose()Stops all the processes and shuts down the thread pool.List<ChangeDataId>getChangeDataIds(long historyEntryId)Retrieve the list of change data ids associated with a given history entry.ProcessManagergetProcessManager()booleanneedsRefreshing(long historyEntryId)Returns true when a change data object is being fetched by a process and should therefore be refreshed as the process may have refreshed the contents on disk.<T> ChangeData<T>retrieve(ChangeDataId changeDataId, ChangeDataSerializer<T> serializer)Loads back aChangeDatathat has been persisted before.<T> ChangeData<T>retrieveOrCompute(ChangeDataId changeDataId, ChangeDataSerializer<T> serializer, Function<Optional<ChangeData<T>>,ChangeData<T>> completionProcess, String description)Retrieves a change data if it exists already, and if it does not (or is incomplete), start a process to finish computing it.<T> voidstore(ChangeData<T> data, ChangeDataId changeDataId, ChangeDataSerializer<T> serializer, Optional<ProgressReporter> progressReporter)Stores aChangeData, which might imply explicitly computing all its values (if the store persists its changes).<T> ProgressingFuture<Void>storeAsync(ChangeData<T> data, ChangeDataId changeDataId, ChangeDataSerializer<T> serializer)Asynchronously stores aChangeData, which might imply explicitly computing all its values (if the store persists its changes).
-
-
-
Method Detail
-
getProcessManager
ProcessManager getProcessManager()
-
store
<T> void store(ChangeData<T> data, ChangeDataId changeDataId, ChangeDataSerializer<T> serializer, Optional<ProgressReporter> progressReporter) throws IOException
Stores aChangeData, which might imply explicitly computing all its values (if the store persists its changes).- Parameters:
data- the data to storechangeDataId- the id of the change data to storeserializer- to serialize the data to a file, for instanceprogressReporter- reports the progress of the change data computation and serialization- Throws:
IOException- if serialization failed
-
storeAsync
<T> ProgressingFuture<Void> storeAsync(ChangeData<T> data, ChangeDataId changeDataId, ChangeDataSerializer<T> serializer)
Asynchronously stores aChangeData, which might imply explicitly computing all its values (if the store persists its changes).- Parameters:
data- the data to storechangeDataId- the id of the change data to storeserializer- to serialize the data to a file, for instance
-
retrieve
<T> ChangeData<T> retrieve(ChangeDataId changeDataId, ChangeDataSerializer<T> serializer) throws IOException
Loads back aChangeDatathat has been persisted before.- Parameters:
changeDataId- the id of the change data to retrieveserializer- the deserializer to read it back from a file- Throws:
IOException
-
retrieveOrCompute
<T> ChangeData<T> retrieveOrCompute(ChangeDataId changeDataId, ChangeDataSerializer<T> serializer, Function<Optional<ChangeData<T>>,ChangeData<T>> completionProcess, String description) throws IOException
Retrieves a change data if it exists already, and if it does not (or is incomplete), start a process to finish computing it.- Parameters:
changeDataId- the id of the change data to retrieveserializer- the serializer to read it back from a file and to write its completion if it is incompletecompletionProcess- a function taking the existing state of the change data and returning the complete versiondescription- a description of the completion process, to be reported to the user- Throws:
IOException
-
needsRefreshing
boolean needsRefreshing(long historyEntryId)
Returns true when a change data object is being fetched by a process and should therefore be refreshed as the process may have refreshed the contents on disk.
-
getChangeDataIds
List<ChangeDataId> getChangeDataIds(long historyEntryId)
Retrieve the list of change data ids associated with a given history entry.
-
discardAll
void discardAll(long historyEntryId)
Discards all change data objects which belong to a given history entry id.
-
dispose
void dispose()
Stops all the processes and shuts down the thread pool.
-
-