X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmElementSet.cxx;h=28f1d01f9c085f34c2bb4944b9e9f39d538ffb0b;hb=cc542827c20a83639b0c271e132369f65fcefdb3;hp=18af6a70ac952a6dfe3980caadb950ab63ad0815;hpb=16887ff26b068405a235a6a8a37f4e62516de393;p=gdcm.git diff --git a/src/gdcmElementSet.cxx b/src/gdcmElementSet.cxx index 18af6a70..28f1d01f 100644 --- a/src/gdcmElementSet.cxx +++ b/src/gdcmElementSet.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmElementSet.cxx,v $ Language: C++ - Date: $Date: 2004/06/25 03:06:38 $ - Version: $Revision: 1.14 $ + Date: $Date: 2004/09/22 01:01:36 $ + Version: $Revision: 1.21 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -28,8 +28,11 @@ * \ingroup gdcmElementSet * \brief Constructor from a given gdcmElementSet */ +//BOZ depthLevel is not usefull anymore gdcmElementSet::gdcmElementSet(int depthLevel) - : gdcmDocEntrySet(depthLevel) { + : gdcmDocEntrySet() +{ + (void)depthLevel; } /** @@ -38,14 +41,15 @@ gdcmElementSet::gdcmElementSet(int depthLevel) */ gdcmElementSet::~gdcmElementSet() { - gdcmDocEntry* EntryToDelete; - for(TagDocEntryHT::iterator cc = tagHT.begin();cc != tagHT.end();++cc) + for(TagDocEntryHT::iterator cc = TagHT.begin();cc != TagHT.end(); ++cc) { - EntryToDelete = cc->second; - if ( EntryToDelete ) - delete EntryToDelete; + gdcmDocEntry* entryToDelete = cc->second; + if ( entryToDelete ) + { + delete entryToDelete; + } } - tagHT.clear(); + TagHT.clear(); } @@ -62,20 +66,18 @@ gdcmElementSet::~gdcmElementSet() */ void gdcmElementSet::Print(std::ostream & os) { - gdcmDocEntry* Entry; - for (TagDocEntryHT::iterator i = tagHT.begin(); i != tagHT.end(); ++i) + for( TagDocEntryHT::const_iterator i = TagHT.begin(); i != TagHT.end(); ++i) { - Entry = i->second; - Entry->Print(os); - bool PrintEndLine = true; - if ( gdcmSeqEntry* SeqEntry = dynamic_cast(Entry) ) + gdcmDocEntry* entry = i->second; + entry->Print(os); + if ( gdcmSeqEntry* seqEntry = dynamic_cast(entry) ) { - (void)SeqEntry; //not used - PrintEndLine = false; + (void)seqEntry; + // Avoid the newline for a sequence: + continue; } - if (PrintEndLine) - os << std::endl; - } + os << std::endl; + } } /** @@ -85,8 +87,7 @@ void gdcmElementSet::Print(std::ostream & os) */ void gdcmElementSet::Write(FILE *fp, FileType filetype) { - - for (TagDocEntryHT::iterator i = tagHT.begin(); i != tagHT.end(); ++i) + for (TagDocEntryHT::const_iterator i = TagHT.begin(); i != TagHT.end(); ++i) { i->second->Write(fp, filetype); } @@ -101,13 +102,13 @@ void gdcmElementSet::Write(FILE *fp, FileType filetype) /** * \brief add a new Dicom Element pointer to the H Table - * @param NewEntry entry to add + * @param newEntry entry to add */ -bool gdcmElementSet::AddEntry( gdcmDocEntry *NewEntry) { - TagKey key; - key = NewEntry->GetKey(); +bool gdcmElementSet::AddEntry( gdcmDocEntry *newEntry) +{ + gdcmTagKey key = newEntry->GetKey(); - if(tagHT.count(key) == 1) + if( TagHT.count(key) == 1 ) { dbg.Verbose(1, "gdcmElementSet::AddEntry key already present: ", key.c_str()); @@ -115,25 +116,44 @@ bool gdcmElementSet::AddEntry( gdcmDocEntry *NewEntry) { } else { - tagHT[NewEntry->GetKey()] = NewEntry; - return(true); + TagHT[newEntry->GetKey()] = newEntry; + return true; } } /** - * \brief Clear the hash table from given entry. - * @param EntryToRemove Entry to remove. + * \brief Clear the hash table from given entry BUT keep the entry. + * @param entryToRemove Entry to remove. + */ +bool gdcmElementSet::RemoveEntryNoDestroy( gdcmDocEntry *entryToRemove) +{ + gdcmTagKey key = entryToRemove->GetKey(); + if( TagHT.count(key) == 1 ) + { + TagHT.erase(key); + dbg.Verbose(0, "gdcmElementSet::RemoveEntry: one element erased."); + return true; + } + + dbg.Verbose(0, "gdcmElementSet::RemoveEntry: key not present: "); + return false ; +} + +/** + * \brief Clear the hash table from given entry AND delete the entry. + * @param entryToRemove Entry to remove AND delete. */ -bool gdcmElementSet::RemoveEntry( gdcmDocEntry *EntryToRemove) +bool gdcmElementSet::RemoveEntry( gdcmDocEntry *entryToRemove) { - TagKey key = EntryToRemove->GetKey(); - if(tagHT.count(key) == 1) + gdcmTagKey key = entryToRemove->GetKey(); + if( TagHT.count(key) == 1 ) { - tagHT.erase(key); + TagHT.erase(key); dbg.Verbose(0, "gdcmElementSet::RemoveEntry: one element erased."); + delete entryToRemove; return true; } dbg.Verbose(0, "gdcmElementSet::RemoveEntry: key not present: "); - return(false); + return false ; }