X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDocEntryArchive.cxx;h=6d74f9155cec0625ac0ad526b7f58447c107001d;hb=4f9bdf403cb37c61df4da30f9fd9f5d9fe4da9bb;hp=263f8a75a9994e07d15e80e3f49d8571aa2db277;hpb=62946e7406184480447cc7170f4b0edb394b9d64;p=gdcm.git diff --git a/src/gdcmDocEntryArchive.cxx b/src/gdcmDocEntryArchive.cxx index 263f8a75..6d74f915 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/23 11:14:13 $ - Version: $Revision: 1.2 $ + Date: $Date: 2005/01/21 11:40:55 $ + Version: $Revision: 1.8 $ 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 @@ -27,7 +28,7 @@ namespace gdcm /** * \brief Constructor */ -DocEntryArchive::DocEntryArchive(Header *header): +DocEntryArchive::DocEntryArchive(File *header): HeaderHT(header->TagHT) { } @@ -63,15 +64,15 @@ void DocEntryArchive::Print(std::ostream &os) // Public /** * \brief Replace in the Header a DocEntry by the new DocEntry. The last - * DocEntry is kept in archieve + * DocEntry is kept in archive * @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 + * @return FALSE when an other DocEntry is already archived with the same * generalized key, TRUE otherwise */ bool DocEntryArchive::Push(DocEntry *newEntry) { if(!newEntry) - return(false); + return false; uint16_t gr = newEntry->GetDictEntry()->GetGroup(); uint16_t elt = newEntry->GetDictEntry()->GetElement(); @@ -82,53 +83,91 @@ 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; - return(true); + return true; + } + return false; +} + +/** + * \brief Replace in the Header a DocEntry by the new DocEntry. The last + * DocEntry is kept in archieve + * @param group Group number of the Entry + * @param elem Element number of the Entry + * @return FALSE when an other DocEntry is already archived with the same + * generalized key, TRUE otherwise + */ +bool DocEntryArchive::Push(uint16_t group,uint16_t elem) +{ + std::string key = DictEntry::TranslateToKey(group,elem); + + 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); + return false; } /** * \brief Restore in the Header the DocEntry that have the generalized key. * The old entry is destroyed. - * @param key Key of the DocEntry to restore - * @return FALSE when the generalized key isn't in the archieve, + * @param group Group number of the Entry + * @param elem Element number of the Entry + * @return FALSE when the generalized key isn't in the archive, * TRUE otherwise */ -bool DocEntryArchive::Restore(uint16_t group,uint16_t element) +bool DocEntryArchive::Restore(uint16_t group,uint16_t elem) { - std::string key=DictEntry::TranslateToKey(group,element); + std::string key=DictEntry::TranslateToKey(group,elem); TagDocEntryHT::iterator restoreIt=Archive.find(key); 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); - return(true); + return true; } - return(false); + return false; } /** - * \brief Remove all DocEntry that are in the archive. The entries aren't - * restored but only destroyed. + * \brief Remove all DocEntry that are in the archive. + * The entries aren't restored but only destroyed. */ -void DocEntryArchive::ClearArchive(void) +void DocEntryArchive::ClearArchive( ) { for(TagDocEntryHT::iterator it = Archive.begin(); it!=Archive.end();