X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=src%2FgdcmDocEntryArchive.cxx;h=fae78fcd3fd05c54111af308bcbbaef21ff33bf5;hb=ee91cee9d641284ed6a410f2af286bb681829055;hp=8ee463398abba97780b6b38f22213bbc5f2e93aa;hpb=3c25b6a04715c20b3680bca5447b4f10add258fd;p=gdcm.git diff --git a/src/gdcmDocEntryArchive.cxx b/src/gdcmDocEntryArchive.cxx index 8ee46339..fae78fcd 100644 --- a/src/gdcmDocEntryArchive.cxx +++ b/src/gdcmDocEntryArchive.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDocEntryArchive.cxx,v $ Language: C++ - Date: $Date: 2004/11/19 18:49:39 $ - Version: $Revision: 1.1 $ + Date: $Date: 2004/12/03 20:16:58 $ + Version: $Revision: 1.4 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -18,6 +18,7 @@ #include "gdcmDocEntryArchive.h" #include "gdcmDebug.h" +#include "gdcmDocEntry.h" #include @@ -49,6 +50,14 @@ DocEntryArchive::~DocEntryArchive() */ void DocEntryArchive::Print(std::ostream &os) { + os << "Elements in archives :" << std::endl; + for(TagDocEntryHT::iterator it = Archive.begin(); + it!=Archive.end(); + ++it) + { + if(it->second) + it->second->Print(os); + } } //----------------------------------------------------------------------------- @@ -74,9 +83,13 @@ bool DocEntryArchive::Push(DocEntry *newEntry) // Save the old DocEntry if any TagDocEntryHT::iterator it = HeaderHT.find(key); if( it!=HeaderHT.end() ) + { Archive[key] = it->second; + } else + { Archive[key] = NULL; + } // Set the new DocEntry HeaderHT[key] = newEntry; @@ -86,6 +99,32 @@ bool DocEntryArchive::Push(DocEntry *newEntry) return(false); } +/** + * \brief Replace in the Header a DocEntry by the new DocEntry. The last + * DocEntry is kept in archieve + * @param newEntry New entry to substitute to an other entry of the Header + * @return FALSE when an other DocEntry is already archieved with the same + * generalized key, TRUE otherwise + */ +bool DocEntryArchive::Push(uint16_t group,uint16_t element) +{ + std::string key = DictEntry::TranslateToKey(group,element); + + if( Archive.find(key)==Archive.end() ) + { + // Save the old DocEntry if any + TagDocEntryHT::iterator it = HeaderHT.find(key); + if( it!=HeaderHT.end() ) + { + Archive[key] = it->second; + HeaderHT.erase(it); + } + + return(true); + } + return(false); +} + /** * \brief Restore in the Header the DocEntry that have the generalized key. * The old entry is destroyed. @@ -101,13 +140,19 @@ bool DocEntryArchive::Restore(uint16_t group,uint16_t element) if( restoreIt!=Archive.end() ) { TagDocEntryHT::iterator restorePos = HeaderHT.find(key); - if( restoreIt!=HeaderHT.end() ) + if( restorePos!=HeaderHT.end() ) + { delete restorePos->second; + } if( Archive[key] ) + { HeaderHT[key] = Archive[key]; + } else + { HeaderHT.erase(restorePos); + } Archive.erase(restoreIt);