Documentation/4.1/Developers/IO
For the latest Slicer documentation, visit the read-the-docs. |
Contents
Read
Main classes
vtkSlicerXYZNode
is a storable node that represents the data from file (e.g. [vtkMRMLModelNode)vtkSlicerXYZStorageNode
is the file reader. It populates the storable node using the methodvtkMRMLXYZStorageNode::ReadData(vtkMRMLStorableNode*,bool)
.vtkSlicerXYZsLogic
is the MRML logic of theXYZ
module. It exposes a convenient methodAddXYZ(const char* fileName, const char* nodeName=0);
that creates a MRML XYZ node (vtkMRMLXYZNode
)and its associated storage node (vtkMRMLXYZStorageNode
), add them into the scene, and callvtkMRMLXYZStorageNode::ReadData(vtkMRMLStorableNode*,bool);
on the storage node to load the file. If the loading fails, it removes the previously created nodes from the scene.qSlicerXYZsIO
is a plugin that is registered by modules into theqSlicerCoreIOManager
. It is the interface between Qt and MRML logics. It internally callsvtkSlicerXYZsLogic::AddXYZ
().qSlicerXYZsIOOptionsWidget
is a widget that sets loading options that gets passed to the logic.qSlicerCoreIOManager
is the central class where any IO operation must go through. qSlicerIOs can be registered usingqSlicerCoreIOManager::registerIO(qSlicerIO*)
and nodes can be loaded usingqSlicerCoreIOManager::loadNodes(...)
. It exposes a set of convenient methods such as "what reader must be used for what file".qSlicerDataDialog
is the dialog that allows the user to select the files to load.
How to add support for reading a new file format ?
- Write method
vtkMRMLXYZStorageNode::ReadDataInternal(vtkMRMLStorableNode*, bool temporary);
- Write method
vtkMRMLXYZsLogic::AddXYZ(const char* fileName, const char nodeName =0);
- Write class
qSlicerXYZsIO
- Optional: Write class
qSlicerXYZsIOOptionsWidget
if you want the user to optionally specify loading options. - In
qSlicerXYZsModule::setup()
, instantiate and registerqSlicerXYZsIO
toqSlicerCoreIOManager
- Add file format to [Documentation/4.1/SlicerApplication/SupportedDataFormat|SupportedDataFormat] wiki page
How to I open a volume file programmatically ?
qSlicerIO::IOProperties parameters; parameters["fileName"] = QString("/path/to/volume.vtk"); // optionally specify options: e.g. parameters["labelmap"] = true; qSlicerCoreApplication::application()->coreIOManager()->loadNodes("VolumeFile", parameters);
ModifiedSinceRead
In order to inform the user what data has been changed since it was last read, a ModifiedSinceRead mechanism is in place to track when was the file last read and when was the data last modified. If a modification happened , the storable node vtkMRMLStorableNode::GetModifiedSinceRead()
must return true. If the data in the node is the same as in the file, then vtkMRMLStorableNode::GetModifiedSinceRead()
must return false.
vtkMRMLStorageNode
keeps track of when a file was last read or written (vtkTimeStamp* vtkMRMLStorageNode::StoredTime
). vtkMRMLStorableNode
keeps track of when the data was last modified (vtkTimeStamp vtkMRMLStorableNode::StorableModifiedTime
). Anytime a vtkMRMLStorableNode
property that is saved in file is modified, the StorableModifiedTime
time stamp must be modified.
At exit time (qSlicerMainWindow::closeEvent()
), vtkMRMLStorableNode::GetModifiedSinceRead()
is called to check if the data in the node is the same as in the file or if it has been modified after the file was last read or written. It internally checks vtkTimeStamp* vtkMRMLStorageNode::StoredTime
and vtkTimeStamp vtkMRMLStorableNode::StorableModifiedTime
. If the data is more recent, then a message dialog is shown to the user telling him that some data is different from file; leaving without saving will loose the changes.
Example
- Models
Write
The mechanism is similar to Read. vtkMRMLXYZStorageNode::WriteDataInternal(...)
and qSlicerXYZWriter
must implemented.
IO Dialogs
By default, all the IOs must be done through qSlicerDataDialog
for reading files and qSlicerSaveDataDialog
for writting files. However, due to historical reasons, it is possible to have custom dialogs for each node types.