MeVisLab Toolbox Reference
ml::DicomCopyTagSetInterface Class Reference

#include <mlDicomCopyTagSetInterface.h>

Inheritance diagram for ml::DicomCopyTagSetInterface:
ml::DicomModifyFieldAddOnBase ml::DicomModifyList ml::FieldAddOnBase ml::Base

Public Member Functions

 DicomCopyTagSetInterface (Module &modRef, const std::string &fieldSuffix)
void addFields () override
 Add fields to field container of module.
void inheritValues (DCMTree::Const_TreePtr dcmTree) override
 Implements the copy of tag values from the given dcmTree to the fields.
std::string applyModifications (DCMTree::TreePtr dcmTree, const FieldContainer *treeInfos=nullptr) override
 See DicomModifyFieldAddOnBase::applyModifications() for details.
FieldAddOnBase::FieldChangeState handleFieldChanges (Field *field) override
 Handle field notifications.
virtual BoolFieldgetInheritAndCopyTagsFld ()
 Provides modification access to _inheritAndCopyTagsFld; only allowed after addFields().
virtual const BoolFieldgetInheritAndCopyTagsFld () const
 Provides constant read-only access to _inheritAndCopyTagsFld; only allowed after addFields().
virtual const std::string & getFieldSuffix () const
 Provides constant read-only access to _fieldSuffix.
virtual std::set< DCMTree::RawTagId > & getTagIdSet ()
 Provides modification access to _tagIdSet.
virtual const std::set< DCMTree::RawTagId > & getTagIdSet () const
 Provides constant read-only access to _tagIdSet.
virtual std::map< DCMTree::RawTagId, DCMTree::Const_TagPtr > & getTagMap ()
 Provides modification access to _tagMap.
virtual const std::map< DCMTree::RawTagId, DCMTree::Const_TagPtr > & getTagMap () const
 Provides constant read-only access to _tagMap.
Public Member Functions inherited from ml::DicomModifyFieldAddOnBase
 DicomModifyFieldAddOnBase (FieldContainer &fieldContainerRef, size_t numInstances=1, bool createInputModifyTagsPluginBaseConnectorField=false, bool createOutputModifyTagsPluginBaseConnectorField=false)
 ~DicomModifyFieldAddOnBase () override
 Destructor resetting connector fields if they exist.
size_t getNumInstances () const
 Returns the number of instances to be created by derived fields.
std::string applyModifications (DCMTree::TreePtr dcmTree, const FieldContainer *treeInfos=nullptr) override
void addFields () override
 Add fields to field container of the FieldAddOn.
void handleFieldActivationChanges () override
 Handle class changes according to Module::activateAttachments.
FieldAddOnBase::FieldChangeState handleFieldChanges (Field *field) override
 Handle field notifications according to Module::handleNotification with a return of field change state.
virtual std::string checkConsistency () const
 Checks for invalid parameters; return textual description on error, or empty string on success.
BaseFieldgetOutputModifierListFld () const
 Provide access to output base field if it was created.
BaseFieldgetInputModifierListFld () const
 Provide access to input base connector field if it was created.
Public Member Functions inherited from ml::DicomModifyList
 DicomModifyList ()
 ~DicomModifyList () override
 Destructor also destroying all of its stored Modifiers.
void addModifier (DicomModifyBase *modifier, bool atEnd=true)
void clear ()
 Makes modifier array empty and deletes all of them.
std::vector< DicomModifyBase * > & getModifierList ()
const std::vector< DicomModifyBase * > & getModifierList () const
 Same as getModifierList() only for constant access.
void setInputPlugin (DicomModifyList *inputPlugin=nullptr)
DicomModifyListgetInputPlugin () const
 Returns the optional plugin to be called by applyModififcations.
Public Member Functions inherited from ml::Base
 Base ()
 Constructor.
virtual ~Base ()
 Destructor.
virtual BasedeepCopy () const
bool isOfAllowedType (const std::vector< const RuntimeType * > &types) const
virtual bool isRefCountedBase () const
 Returns whether the instance is derived from RefCountedBase.
virtual std::string detailString () const
virtual bool implementsPersistence (PersistenceInterface) const
virtual std::string persistentState () const
 Returns a string describing the object's internal state.
virtual void setPersistentState (const std::string &state)
virtual void addStateToTree (TreeNode *) const
 Attaches the object state as children of the given parent node.
virtual void readStateFromTree (TreeNode *)
 Reads the object state from the children of the given parent node.
virtual void writeTo (AbstractPersistenceOutputStream *) const
virtual void readFrom (AbstractPersistenceInputStream *, int)
Public Member Functions inherited from ml::FieldAddOnBase
 FieldAddOnBase (FieldContainer &fieldContainerRef)
 Constructor, setting the reference of the FieldContainer managing the fields.
virtual ~FieldAddOnBase ()
 Destructor.
FieldContainergetFieldContainer ()
 Returns the referenced container.
const FieldContainergetFieldContainer () const
 Returns the referenced container.
std::vector< Field * > & getFields ()
 Return modification access to the list of managed fields, use at own risk!
const std::vector< Field * > & getFields () const
 Return constant access to the list of managed fields!
virtual FieldChangeState getMergedFieldChangeState (FieldChangeState state1, FieldChangeState state2) const
 Returns a FieldChangeState which best represents a merge of the two given states.
virtual bool hasField (Field *field) const
 Returns true if the passed fieldPtr is in _fieldPointers, otherwise false.

Protected Attributes

std::string _fieldSuffix
 The suffix to be appended to names of all fields to be added.
BoolField_inheritAndCopyTagsFld
std::set< DCMTree::RawTagId_tagIdSet
 Set of tags to be copied, buffered, and/or added to the output.
std::map< DCMTree::RawTagId, DCMTree::Const_TagPtr_tagMap
 Set of tags to be copied, buffered, and/or added to the output.

Additional Inherited Members

Public Types inherited from ml::Base
enum  PersistenceInterface { PersistenceByString , PersistenceByTreeNode , PersistenceByStream }
 This enum describes the different persistence interfaces available. More...
Public Types inherited from ml::FieldAddOnBase
enum  FieldChangeState { NoChange = 0 , StatusOnlyChange , RecalculationRequired }
 Describes the type of a field changes detected in handleFieldChanges(Field *field). More...
Static Public Member Functions inherited from ml::DicomModifyFieldAddOnBase
static bool isIn (const std::string &str, const char *const *values, size_t numValues)
 Static helper function which checks whether str is part of the given list of values which has numValues entries.
Protected Member Functions inherited from ml::FieldAddOnBase
void _addFieldPointer (Field *field)

Detailed Description

Provides control to copy/inherit a set of tag (values) from an input DCMTree, buffer it, and add it to the output tree.

Definition at line 24 of file mlDicomCopyTagSetInterface.h.

Constructor & Destructor Documentation

◆ DicomCopyTagSetInterface()

ml::DicomCopyTagSetInterface::DicomCopyTagSetInterface ( Module & modRef,
const std::string & fieldSuffix )

Constructor, setting the reference of the module for which the fields shall be managed and the suffix to be used for all fields.

Member Function Documentation

◆ addFields()

void ml::DicomCopyTagSetInterface::addFields ( )
overridevirtual

Add fields to field container of module.

Implements ml::FieldAddOnBase.

◆ applyModifications()

std::string ml::DicomCopyTagSetInterface::applyModifications ( DCMTree::TreePtr dcmTree,
const FieldContainer * treeInfos = nullptr )
overridevirtual

◆ getFieldSuffix()

virtual const std::string & ml::DicomCopyTagSetInterface::getFieldSuffix ( ) const
inlinevirtual

Provides constant read-only access to _fieldSuffix.

Definition at line 50 of file mlDicomCopyTagSetInterface.h.

References _fieldSuffix.

◆ getInheritAndCopyTagsFld() [1/2]

virtual BoolField & ml::DicomCopyTagSetInterface::getInheritAndCopyTagsFld ( )
inlinevirtual

Provides modification access to _inheritAndCopyTagsFld; only allowed after addFields().

Definition at line 45 of file mlDicomCopyTagSetInterface.h.

References _inheritAndCopyTagsFld.

◆ getInheritAndCopyTagsFld() [2/2]

virtual const BoolField & ml::DicomCopyTagSetInterface::getInheritAndCopyTagsFld ( ) const
inlinevirtual

Provides constant read-only access to _inheritAndCopyTagsFld; only allowed after addFields().

Definition at line 47 of file mlDicomCopyTagSetInterface.h.

References _inheritAndCopyTagsFld.

◆ getTagIdSet() [1/2]

virtual std::set< DCMTree::RawTagId > & ml::DicomCopyTagSetInterface::getTagIdSet ( )
inlinevirtual

Provides modification access to _tagIdSet.

Definition at line 53 of file mlDicomCopyTagSetInterface.h.

References _tagIdSet.

◆ getTagIdSet() [2/2]

virtual const std::set< DCMTree::RawTagId > & ml::DicomCopyTagSetInterface::getTagIdSet ( ) const
inlinevirtual

Provides constant read-only access to _tagIdSet.

Definition at line 55 of file mlDicomCopyTagSetInterface.h.

References _tagIdSet.

◆ getTagMap() [1/2]

virtual std::map< DCMTree::RawTagId, DCMTree::Const_TagPtr > & ml::DicomCopyTagSetInterface::getTagMap ( )
inlinevirtual

Provides modification access to _tagMap.

Definition at line 58 of file mlDicomCopyTagSetInterface.h.

References _tagMap.

◆ getTagMap() [2/2]

virtual const std::map< DCMTree::RawTagId, DCMTree::Const_TagPtr > & ml::DicomCopyTagSetInterface::getTagMap ( ) const
inlinevirtual

Provides constant read-only access to _tagMap.

Definition at line 60 of file mlDicomCopyTagSetInterface.h.

References _tagMap.

◆ handleFieldChanges()

FieldAddOnBase::FieldChangeState ml::DicomCopyTagSetInterface::handleFieldChanges ( Field * field)
overridevirtual

Handle field notifications.

Reimplemented from ml::FieldAddOnBase.

◆ inheritValues()

void ml::DicomCopyTagSetInterface::inheritValues ( DCMTree::Const_TreePtr dcmTree)
overridevirtual

Implements the copy of tag values from the given dcmTree to the fields.

Reimplemented from ml::DicomModifyFieldAddOnBase.

Member Data Documentation

◆ _fieldSuffix

std::string ml::DicomCopyTagSetInterface::_fieldSuffix
protected

The suffix to be appended to names of all fields to be added.

Definition at line 64 of file mlDicomCopyTagSetInterface.h.

Referenced by getFieldSuffix().

◆ _inheritAndCopyTagsFld

BoolField* ml::DicomCopyTagSetInterface::_inheritAndCopyTagsFld
protected

If enabled then the tags specified in getTagIdSet() are inherited from the input DCMTree in inheritValues(), buffered, and added to the output dcmTree in applyModifications().

Definition at line 68 of file mlDicomCopyTagSetInterface.h.

Referenced by getInheritAndCopyTagsFld(), and getInheritAndCopyTagsFld().

◆ _tagIdSet

std::set<DCMTree::RawTagId> ml::DicomCopyTagSetInterface::_tagIdSet
protected

Set of tags to be copied, buffered, and/or added to the output.

Definition at line 71 of file mlDicomCopyTagSetInterface.h.

Referenced by getTagIdSet(), and getTagIdSet().

◆ _tagMap

std::map<DCMTree::RawTagId, DCMTree::Const_TagPtr> ml::DicomCopyTagSetInterface::_tagMap
protected

Set of tags to be copied, buffered, and/or added to the output.

Definition at line 74 of file mlDicomCopyTagSetInterface.h.

Referenced by getTagMap(), and getTagMap().


The documentation for this class was generated from the following file: