X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDict.cxx;h=051d44dee8bde4c8ed186df9554e2ed0cf0bc2d2;hb=refs%2Ftags%2FVersion0.6.bp;hp=01acd68d5f82eab8835e9ea16297fa258fc16fa6;hpb=c42a0d560374ca98eb7f1531de835fd4cd1c59b0;p=gdcm.git diff --git a/src/gdcmDict.cxx b/src/gdcmDict.cxx index 01acd68d..051d44de 100644 --- a/src/gdcmDict.cxx +++ b/src/gdcmDict.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDict.cxx,v $ Language: C++ - Date: $Date: 2004/10/27 22:31:12 $ - Version: $Revision: 1.48 $ + Date: $Date: 2004/11/03 18:08:56 $ + Version: $Revision: 1.51 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -26,7 +26,7 @@ namespace gdcm { - +void FillDefaultDataDict(Dict *d); //----------------------------------------------------------------------------- // Constructor / Destructor /** @@ -42,25 +42,31 @@ Dict::Dict(std::string const & filename) TagName name; std::ifstream from( filename.c_str() ); - dbg.Error(!from, "Dict::Dict: can't open dictionary", - filename.c_str()); - - while (!from.eof()) + if( !from ) { - from >> std::hex; - from >> group; - from >> element; - from >> vr; - from >> fourth; - from >> std::ws; //remove white space - std::getline(from, name); - - DictEntry newEntry(group, element, vr, fourth, name); - AddNewEntry(newEntry); + dbg.Verbose(2,"Dict::Dict: can't open dictionary", filename.c_str()); + // Using default embeded one: + FillDefaultDataDict( this ); } - from.close(); + else + { + while (!from.eof()) + { + from >> std::hex; + from >> group; + from >> element; + from >> vr; + from >> fourth; + from >> std::ws; //remove white space + std::getline(from, name); + + const DictEntry newEntry(group, element, vr, fourth, name); + AddNewEntry(newEntry); + } + from.close(); - Filename = filename; + Filename = filename; + } } /** @@ -68,14 +74,6 @@ Dict::Dict(std::string const & filename) */ Dict::~Dict() { -/* for (TagKeyHT::iterator tag = KeyHt.begin(); tag != KeyHt.end(); ++tag) - { - DictEntry* entryToDelete = tag->second; - if ( entryToDelete ) - { - delete entryToDelete; - } - }*/ // Since AddNewEntry adds symetrical in both KeyHt and NameHT we can // assume all the pointed DictEntries are already cleaned-up when // we cleaned KeyHt. @@ -161,13 +159,11 @@ bool Dict::AddNewEntry(DictEntry const & newEntry) } else { - //KeyHt[newEntry.GetKey()] = newEntry; KeyHt.insert( - TagKeyHT::value_type + std::map::value_type (newEntry.GetKey(), newEntry)); - //NameHt[newEntry.GetName()] = newEntry; NameHt.insert( - TagNameHT::value_type + std::map::value_type (newEntry.GetName(), newEntry )); return true; } @@ -183,13 +179,11 @@ bool Dict::ReplaceEntry(DictEntry const & newEntry) { if ( RemoveEntry(newEntry.GetKey()) ) { - //KeyHt[newEntry.GetKey()] = newEntry; KeyHt.insert( - TagKeyHT::value_type + std::map::value_type (newEntry.GetKey(), newEntry)); - //NameHt[newEntry.GetName()] = newEntry; NameHt.insert( - TagNameHT::value_type + std::map::value_type (newEntry.GetName(), newEntry )); return true; } @@ -237,7 +231,7 @@ bool Dict::RemoveEntry (uint16_t group, uint16_t element) * \brief Get the dictionnary entry identified by it's name. * @param name element of the ElVal to modify * \warning : NEVER use it ! - * the 'name' IS NOT an identifier within the Dicom Dicom Dictionary + * the 'name' IS NOT an identifier within the Dicom Dictionary * the name MAY CHANGE between two versions ! * @return the corresponding dictionnary entry when existing, NULL otherwise */