X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmValEntry.cxx;h=16302d552bcaf9674c3cab5008bf1af27565fbbe;hb=0068e5861800986e33ee5eeac99863c4e01e3512;hp=cc1f36381bce8cb6d02f30ddfdedf7d5335a99d9;hpb=d1c68c2c2ae9fadf927053150f7fbc625a7c7366;p=gdcm.git diff --git a/src/gdcmValEntry.cxx b/src/gdcmValEntry.cxx index cc1f3638..16302d55 100644 --- a/src/gdcmValEntry.cxx +++ b/src/gdcmValEntry.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmValEntry.cxx,v $ Language: C++ - Date: $Date: 2005/02/01 10:29:56 $ - Version: $Revision: 1.54 $ + Date: $Date: 2005/02/06 14:43:28 $ + Version: $Revision: 1.57 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -36,7 +36,8 @@ namespace gdcm * \brief Constructor from a given DictEntry * @param e Pointer to existing dictionary entry */ -ValEntry::ValEntry(DictEntry *e) : ContentEntry(e) +ValEntry::ValEntry(DictEntry *e) + : ContentEntry(e) { } @@ -45,7 +46,7 @@ ValEntry::ValEntry(DictEntry *e) : ContentEntry(e) * @param e Pointer to existing Doc entry */ ValEntry::ValEntry(DocEntry *e) - : ContentEntry(e->GetDictEntry()) + : ContentEntry(e->GetDictEntry()) { Copy(e); } @@ -59,50 +60,6 @@ ValEntry::~ValEntry () //----------------------------------------------------------------------------- // Public -/** - * \brief Sets the std::string representable' value of a ValEntry - * @param val value to set - */ -void ValEntry::SetValue(std::string const &val) -{ - // Integers have a special treatement for their length: - int l = val.length(); - if ( l != 0) // To avoid to be cheated by 'zero length' integers - { - const VRKey &vr = GetVR(); - if( vr == "US" || vr == "SS" ) - { - // for multivaluated items - l = (Util::CountSubstring(val, "\\") + 1) * 2; - ContentEntry::SetValue(val); - } - else if( vr == "UL" || vr == "SL" ) - { - // for multivaluated items - l = (Util::CountSubstring(val, "\\") + 1) * 4;; - ContentEntry::SetValue(val); - } - else - { - std::string finalVal = Util::DicomString( val.c_str() ); - gdcmAssertMacro( !(finalVal.size() % 2) ); - - l = finalVal.length(); - ContentEntry::SetValue(finalVal); - } - } - else - { - std::string finalVal = Util::DicomString( val.c_str() ); - gdcmAssertMacro( !(finalVal.size() % 2) ); - - l = finalVal.length(); - ContentEntry::SetValue(finalVal); - } - - SetLength(l); -} - /** * \brief Writes the std::string representable' value of a ValEntry * @param fp already open ofstream pointer @@ -118,7 +75,7 @@ void ValEntry::WriteContent(std::ofstream *fp, FileType filetype) } const VRKey &vr = GetVR(); - unsigned int lgr = GetLength(); + unsigned int lgth = GetLength(); if (vr == "US" || vr == "SS") { // some 'Short integer' fields may be multivaluated @@ -153,10 +110,54 @@ void ValEntry::WriteContent(std::ofstream *fp, FileType filetype) return; } - gdcmAssertMacro( lgr == GetValue().length() ); + gdcmAssertMacro( lgth == GetValue().length() ); binary_write(*fp, GetValue()); } +/** + * \brief Sets the std::string representable' value of a ValEntry + * @param val value to set + */ +void ValEntry::SetValue(std::string const &val) +{ + // Integers have a special treatement for their length: + int l = val.length(); + if ( l != 0) // To avoid to be cheated by 'zero length' integers + { + const VRKey &vr = GetVR(); + if( vr == "US" || vr == "SS" ) + { + // for multivaluated items + l = (Util::CountSubstring(val, "\\") + 1) * 2; + ContentEntry::SetValue(val); + } + else if( vr == "UL" || vr == "SL" ) + { + // for multivaluated items + l = (Util::CountSubstring(val, "\\") + 1) * 4;; + ContentEntry::SetValue(val); + } + else + { + std::string finalVal = Util::DicomString( val.c_str() ); + gdcmAssertMacro( !(finalVal.size() % 2) ); + + l = finalVal.length(); + ContentEntry::SetValue(finalVal); + } + } + else + { + std::string finalVal = Util::DicomString( val.c_str() ); + gdcmAssertMacro( !(finalVal.size() % 2) ); + + l = finalVal.length(); + ContentEntry::SetValue(finalVal); + } + + SetLength(l); +} + //----------------------------------------------------------------------------- // Protected @@ -174,7 +175,7 @@ void ValEntry::Print(std::ostream &os, std::string const &) { uint16_t g = GetGroup(); uint16_t e = GetElement(); - VRKey vr = GetVR(); + VRKey vr = GetVR(); std::ostringstream s; std::string st; std::string d2; @@ -188,7 +189,7 @@ void ValEntry::Print(std::ostream &os, std::string const &) return; } - TS * ts = Global::GetTS(); + TS *ts = Global::GetTS(); TSAtr v = GetValue(); // not applicable for SQ ... d2 = Util::CreateCleanString(v); // replace non printable characters by '.'