Medical Imaging Interaction Toolkit
2024.06.00
Medical Imaging Interaction Toolkit
|
The common interface for all MITK file readers. More...
#include <mitkIFileReader.h>
Public Member Functions | |
~IFileReader () override | |
virtual void | SetInput (const std::string &location)=0 |
Set the input location. More... | |
virtual void | SetInput (const std::string &location, std::istream *is)=0 |
Set an input stream to read from. More... | |
virtual std::string | GetInputLocation () const =0 |
Get the current input location. More... | |
virtual std::istream * | GetInputStream () const =0 |
Get the input stream. More... | |
virtual std::vector< itk::SmartPointer< BaseData > > | Read ()=0 |
Reads the specified file or input stream and returns its contents. More... | |
virtual DataStorage::SetOfObjects::Pointer | Read (mitk::DataStorage &ds)=0 |
Reads the specified file or input stream, loading its contents into the provided DataStorage. More... | |
virtual std::vector< std::string > | GetReadFiles ()=0 |
virtual void | SetProperties (const PropertyList *properties)=0 |
Optionally provide base data properties as a source of meta data. More... | |
virtual | ~IFileReader () |
virtual void | SetInput (const std::string &location)=0 |
Set the input location. More... | |
virtual void | SetInput (const std::string &location, std::istream *is)=0 |
Set an input stream to read from. More... | |
virtual std::string | GetInputLocation () const =0 |
Get the current input location. More... | |
virtual std::istream * | GetInputStream () const =0 |
Get the input stream. More... | |
virtual std::vector< itk::SmartPointer< BaseData > > | Read ()=0 |
Reads the specified file or input stream and returns its contents. More... | |
virtual DataStorage::SetOfObjects::Pointer | Read (mitk::DataStorage &ds)=0 |
Reads the specified file or input stream, loading its contents into the provided DataStorage. More... | |
Public Member Functions inherited from mitk::IFileIO | |
virtual | ~IFileIO () |
virtual ConfidenceLevel | GetConfidenceLevel () const =0 |
The confidence level of the reader or writer implementation. More... | |
virtual Options | GetOptions () const =0 |
returns a list of the supported options More... | |
virtual us::Any | GetOption (const std::string &name) const =0 |
virtual void | SetOptions (const Options &options)=0 |
virtual void | SetOption (const std::string &name, const us::Any &value)=0 |
virtual void | AddProgressCallback (const ProgressCallback &callback)=0 |
virtual void | RemoveProgressCallback (const ProgressCallback &callback)=0 |
Protected Member Functions | |
virtual const PropertyList * | GetProperties () const =0 |
Additional Inherited Members | |
Public Types inherited from mitk::IFileIO | |
enum | ConfidenceLevel { Unsupported, PartiallySupported, Supported } |
A confidence level describing the confidence of the reader or writer in handling the given data. More... | |
typedef std::map< std::string, us::Any > | Options |
Options for reading or writing data. More... | |
typedef mitk::MessageAbstractDelegate1< float > | ProgressCallback |
Static Public Member Functions inherited from mitk::IFileIO | |
static std::string | PROP_DESCRIPTION () |
Service property name for a description. More... | |
static std::string | PROP_MIMETYPE () |
Service property name for the mime-type associated with this file writer. More... | |
The common interface for all MITK file readers.
The common interface for all providers of models for fitting in mitk.
Implementations of this interface must be registered as a service to make themselves available via the service registry. If the implementation is state-full, the service should be registered using a PrototypeServiceFactory.
The file reader implementation is associated with a mime-type, specified in the service property PROP_MIMETYPE(). The specified mime-type should have a corresponding CustomMimeType service object, registered by the reader or some other party.
It is recommended to derive new implementations from AbstractFileReader or from AbstractFileIO (if both reader and writer is implemented), which provide correct service registration semantics.
Implementations of this interface must be registered as a service to make themselves available via the service registry. If the implementation is state-full, the service should be registered using a PrototypeServiceFactory.
It is recommended to derive new implementations from ModelFitProviderBase, which provide correct service registration semantics.
Definition at line 61 of file mitkIFileReader.h.
|
override |
|
virtual |
|
pure virtual |
|
pure virtual |
|
pure virtual |
Get the input stream.
Implemented in mitk::AbstractFileReader.
|
pure virtual |
Get the input stream.
Implemented in mitk::AbstractFileReader.
|
protectedpure virtual |
Implemented in mitk::AbstractFileReader.
|
pure virtual |
Implemented in mitk::AbstractFileReader.
|
pure virtual |
Reads the specified file or input stream and returns its contents.
If GetInputStream() returns a non-null value, this method must use the returned stream object to read the data from. If no input stream was set, the data must be read from the path returned by GetInputLocation().
mitk::Exception |
Implemented in mitk::AbstractFileReader, mitk::CESTDICOMReaderService, and mitk::CESTDICOMManualReaderService.
|
pure virtual |
Reads the specified file or input stream and returns its contents.
If GetInputStream() returns a non-null value, this method must use the returned stream object to read the data from. If no input stream was set, the data must be read from the path returned by GetInputLocation().
mitk::Exception |
Implemented in mitk::AbstractFileReader, mitk::CESTDICOMReaderService, and mitk::CESTDICOMManualReaderService.
|
pure virtual |
Reads the specified file or input stream, loading its contents into the provided DataStorage.
ds | The DataStorage to which the data is added. |
ds
.This method may be overridden by implementations to create or reconstructed a hierarchy of mitk::DataNode instances in the provided mitk::DataStorage.
mitk::Exception |
Implemented in mitk::AbstractFileReader.
|
pure virtual |
Reads the specified file or input stream, loading its contents into the provided DataStorage.
ds | The DataStorage to which the data is added. |
ds
.This method may be overridden by implementations to create or reconstructed a hierarchy of mitk::DataNode instances in the provided mitk::DataStorage.
mitk::Exception |
Implemented in mitk::AbstractFileReader.
|
pure virtual |
Set the input location.
location | The file name to read from. |
Implemented in mitk::AbstractFileReader.
|
pure virtual |
Set the input location.
location | The file name to read from. |
Implemented in mitk::AbstractFileReader.
|
pure virtual |
Set an input stream to read from.
location | A custom label for the input stream. |
is | The input stream. |
If is
is NULL
, this clears the current input stream and location
is interpreted as a file-system path. Otherwise, location
is a custom label describing the input stream is
.
Implemented in mitk::AbstractFileReader.
|
pure virtual |
Set an input stream to read from.
location | A custom label for the input stream. |
is | The input stream. |
If is
is nullptr
, this clears the current input stream and location
is interpreted as a file-system path. Otherwise, location
is a custom label describing the input stream is
.
Implemented in mitk::AbstractFileReader.
|
pure virtual |
Optionally provide base data properties as a source of meta data.
The purpose of this method is not to preset the base data property list of the read data but to provide access to meta data of previous read operations that may be beneficial for the new read operation.
A typical usecase may occur when reading files from an MITK scene file in which case base data properties are already provided in addition to the actual data file. If such a data file references other files relative to its original location on the filesystem, the original location can be retrieved from the base data properties. In this scenario, GetInputLocation() would return a path within a temporary directory in which the scene file has been extracted. This is not the intended base path for searching referenced external data files.
Implemented in mitk::AbstractFileReader.