X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDict.cxx;h=b8ed20ab925be239a2c7979da54127a02cdb0678;hb=b49d7069fe20162182a1840fd06afd3351f50b3d;hp=75834e1f76ea3f8a82b836d97241470cafcd9627;hpb=22f785a2627d1e7823701193bd7624739a3e033b;p=gdcm.git diff --git a/src/gdcmDict.cxx b/src/gdcmDict.cxx index 75834e1f..b8ed20ab 100644 --- a/src/gdcmDict.cxx +++ b/src/gdcmDict.cxx @@ -1,29 +1,38 @@ -// gdcmDict.cxx -//----------------------------------------------------------------------------- +/*========================================================================= + + Program: gdcm + Module: $RCSfile: gdcmDict.cxx,v $ + Language: C++ + Date: $Date: 2004/06/22 13:47:33 $ + Version: $Revision: 1.37 $ + + Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de + l'Image). All rights reserved. See Doc/License.txt or + http://www.creatis.insa-lyon.fr/Public/Gdcm/License.htm for details. + + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + PURPOSE. See the above copyright notices for more information. + +=========================================================================*/ + #include "gdcmDict.h" #include "gdcmUtil.h" +#include "gdcmDebug.h" #include #include #include -#ifdef GDCM_NO_ANSI_STRING_STREAM -# include -# define ostringstream ostrstream -# else -# include -#endif - //----------------------------------------------------------------------------- // Constructor / Destructor /** - * \ingroup gdcmDict * \brief Construtor * @param FileName from which to build the dictionary. */ gdcmDict::gdcmDict(std::string & FileName) { guint16 group, element; - char buff[1024]; + //char buff[1024]; TagName vr; TagName fourth; TagName name; @@ -33,18 +42,16 @@ gdcmDict::gdcmDict(std::string & FileName) { FileName.c_str()); while (!from.eof()) { - from >> std::hex >> group >> element; - eatwhite(from); - from.getline(buff, 256, ' '); - vr = buff; - eatwhite(from); - from.getline(buff, 256, ' '); - fourth = buff; - from.getline(buff, 256, '\n'); - name = buff; + from >> std::hex; + from >> group; /// MEMORY LEAK in std::istream::operator>> + from >> element; + from >> vr; + from >> fourth; + eatwhite(from); + getline(from, name); /// MEMORY LEAK in std::getline<> gdcmDictEntry * newEntry = new gdcmDictEntry(group, element, - vr, fourth, name); + vr, fourth, name); AddNewEntry(newEntry); } from.close(); @@ -53,7 +60,6 @@ gdcmDict::gdcmDict(std::string & FileName) { } /** - * \ingroup gdcmDict * \brief Destructor */ gdcmDict::~gdcmDict() { @@ -82,7 +88,6 @@ void gdcmDict::Print(std::ostream &os) { } /** - * \ingroup gdcmDict * \brief Print all the dictionary entries contained in this dictionary. * Entries will be sorted by tag i.e. the couple (group, element). * @param os The output stream to be written to. @@ -102,7 +107,6 @@ void gdcmDict::PrintByKey(std::ostream &os) { } /** - * \ingroup gdcmDict * \brief Print all the dictionary entries contained in this dictionary. * Entries will be sorted by the name of the dictionary entries. * \warning AVOID USING IT : the name IS NOT an identifier; @@ -136,7 +140,7 @@ bool gdcmDict::AddNewEntry(gdcmDictEntry *NewEntry) { TagKey key; key = NewEntry->GetKey(); - + if(KeyHt.count(key) == 1) { dbg.Verbose(1, "gdcmDict::AddNewEntry already present", key.c_str()); @@ -145,7 +149,8 @@ bool gdcmDict::AddNewEntry(gdcmDictEntry *NewEntry) else { KeyHt[NewEntry->GetKey()] = NewEntry; - NameHt[NewEntry->GetName()] = NewEntry; + NameHt[NewEntry->GetName()] = NewEntry; /// MEMORY LEAK in + /// std::map<>::operator[] return(true); } }