fw4spl
|
Base class for all object writers. More...
#include <IObjectWriter.hpp>
Classes | |
class | Registrar |
Class used to register a class factory in factory registry. This class defines also the object factory ( 'create' ) More... | |
Public Types | |
typedef std::function< void(std::uint64_t) > | ProgressCallback |
typedef std::function< void() > | CancelCallback |
typedef ::fwDataIO::writer::factory::Key | Key |
Public Member Functions | |
virtual bool | isA (const std::string &type) const override |
virtual FWDATAIO_API void | write ()=0 |
Defines an writer interface. More... | |
virtual FWDATAIO_API void | setLocation (const ::fwData::location::ILocation::sptr location) |
m_location setter. More... | |
virtual FWDATAIO_API::fwData::location::ILocation::sptr | getLocation () |
m_location getter. More... | |
virtual FWDATAIO_API void | setObject (::fwTools::Object::csptr object) |
m_object setter. More... | |
virtual FWDATAIO_API::fwTools::Object::csptr | getObject () const |
m_object getter. More... | |
virtual FWDATAIO_API std::string | extension ()=0 |
Return the default filename extension can be dynamic. More... | |
virtual FWDATAIO_API void | cancel () |
Requests writer abortion. | |
virtual std::shared_ptr< ::fwJobs::IJob > | getJob () const |
Returns the internal job, nullptr by default. | |
Public Member Functions inherited from fwCore::BaseObject |
Static Public Member Functions | |
static bool | isTypeOf (const std::string &type) |
Static Public Member Functions inherited from fwCore::BaseObject | |
static bool | isTypeOf (const std::string &type) |
static const std::string & | leafClassname () |
return object's classname without its namespace, i.e. BaseObject | |
static const std::string & | classname () |
return object's classname without its namespace, i.e. BaseObject | |
Protected Member Functions | |
FWDATAIO_API | IObjectWriter () |
Constructor. Do nothing. | |
virtual FWDATAIO_API | ~IObjectWriter () |
Destructor. Do nothing. | |
Protected Attributes | |
::fwTools::Object::cwptr | m_object |
Object write on filesystem by the process. More... | |
::fwData::location::ILocation::sptr | m_location |
Object location ( file path, directory path, url, etc ) | |
std::string | m_extension |
Extension of file format. | |
Demangling methods | |
virtual const std::string & | getLeafClassname () const override |
return object's classname without its namespace, i.e. BaseObject | |
virtual const std::string & | getClassname () const override |
return full object's classname with its namespace, i.e. fwCore::BaseObject | |
static const std::string & | leafClassname () |
return object's classname without its namespace, i.e. BaseObject | |
static const std::string & | classname () |
return object's classname without its namespace, i.e. BaseObject | |
Base class for all object writers.
This class defines the API to use basic object writers. This writer is not a service. Their equivalent exist as services see fwIO::IWriter. To write an object with this class, use setLocation and setOject method before execute the method write.
Definition at line 41 of file IObjectWriter.hpp.
|
pure virtual |
Return the default filename extension can be dynamic.
The extension can be empty (for a repository for example) or must return a string BEGINNING WITH A DOT by default be empty
Implemented in fwGdcmIO::writer::Series, fwGdcmIO::helper::DicomSeriesWriter, fwVtkIO::ModelSeriesObjWriter, fwGdcmIO::writer::SurfaceSegmentation, vtkGdcmIO::ImageSeriesWriter, fwDataIO::writer::MeshWriter, fwGdcmIO::helper::DicomSeriesDBWriter, fwGdcmIO::writer::SeriesDB, fwVtkIO::ImageWriter, fwVtkIO::MeshWriter, fwVtkIO::MetaImageWriter, fwVtkIO::VtiImageWriter, fwDataIO::writer::GzBufferImageWriter, fwDataIO::writer::TransformationMatrix3DWriter, fwDataIO::writer::GzArrayWriter, fwDataIO::writer::ArrayWriter, fwItkIO::JpgImageWriter, and fwItkIO::ImageWriter.
Definition at line 60 of file IObjectWriter.cpp.
|
virtual |
m_location getter.
Definition at line 53 of file IObjectWriter.cpp.
References m_location.
|
virtual |
m_object getter.
Definition at line 38 of file IObjectWriter.cpp.
References m_object.
Referenced by fwDataIO::writer::GenericObjectWriter< ::fwData::Image >::getConcreteObject().
|
virtual |
m_location setter.
[in] | location | set location where object will be saved |
Definition at line 46 of file IObjectWriter.cpp.
References m_location.
|
virtual |
m_object setter.
[in] | _pObject | replace m_object of the instance writer |
Reimplemented in fwDataIO::writer::GenericObjectWriter< DATATYPE >, fwDataIO::writer::GenericObjectWriter< ::fwMedData::ModelSeries >, fwDataIO::writer::GenericObjectWriter< ::fwData::Mesh >, fwDataIO::writer::GenericObjectWriter< ::fwMedData::SeriesDB >, fwDataIO::writer::GenericObjectWriter< ::fwMedData::ImageSeries >, fwDataIO::writer::GenericObjectWriter< ::fwMedData::Series >, fwDataIO::writer::GenericObjectWriter< ::fwMedData::DicomSeries >, fwDataIO::writer::GenericObjectWriter< ::fwData::TransformationMatrix3D >, fwDataIO::writer::GenericObjectWriter< ::fwData::Array >, and fwDataIO::writer::GenericObjectWriter< ::fwData::Image >.
Definition at line 31 of file IObjectWriter.cpp.
References m_object.
Referenced by fwDataIO::writer::GenericObjectWriter< ::fwData::Image >::setObject().
|
pure virtual |
Defines an writer interface.
This method write the object given in parameter of setObject method.
Implemented in fwGdcmIO::helper::DicomSeriesDBWriter, fwGdcmIO::helper::DicomSeriesWriter, fwGdcmIO::writer::Series, fwVtkIO::ModelSeriesObjWriter, fwGdcmIO::writer::SurfaceSegmentation, vtkGdcmIO::ImageSeriesWriter, fwDataIO::writer::MeshWriter, fwVtkIO::ImageWriter, fwVtkIO::MeshWriter, fwVtkIO::MetaImageWriter, fwVtkIO::VtiImageWriter, fwDataIO::writer::GzBufferImageWriter, fwGdcmIO::writer::SeriesDB, fwDataIO::writer::TransformationMatrix3DWriter, fwDataIO::writer::GzArrayWriter, fwDataIO::writer::ArrayWriter, fwItkIO::JpgImageWriter, and fwItkIO::ImageWriter.
|
protected |
Object write on filesystem by the process.
This object is given in parameter of setObject method but it is conserved with a weakptr.
Definition at line 137 of file IObjectWriter.hpp.
Referenced by getObject(), setObject(), fwVtkIO::MetaImageWriter::write(), fwVtkIO::VtiImageWriter::write(), fwVtkIO::MeshWriter::write(), fwVtkIO::ImageWriter::write(), and fwVtkIO::ModelSeriesObjWriter::write().