X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmValEntry.cxx;h=a3f17d8003475362dbbd9acddaaf415554e44ea6;hb=99ac30f10909a566e9506776d33dfacc300d4502;hp=d6d7b89dfa23f7a20debac870ddd46f93eecc639;hpb=1bae8d2ba47d1b9cc8acfb7b5ab82026e48275dd;p=gdcm.git diff --git a/src/gdcmValEntry.cxx b/src/gdcmValEntry.cxx index d6d7b89d..a3f17d80 100644 --- a/src/gdcmValEntry.cxx +++ b/src/gdcmValEntry.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmValEntry.cxx,v $ Language: C++ - Date: $Date: 2004/11/25 15:46:12 $ - Version: $Revision: 1.38 $ + Date: $Date: 2004/12/07 17:28:50 $ + Version: $Revision: 1.40 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -17,6 +17,7 @@ =========================================================================*/ #include "gdcmValEntry.h" +#include "gdcmVR.h" #include "gdcmTS.h" #include "gdcmGlobal.h" #include "gdcmUtil.h" @@ -174,6 +175,48 @@ void ValEntry::Print(std::ostream & os) os << s.str(); } +//----------------------------------------------------------------------------- +// Public +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 + { + VRKey vr = GetVR(); + if( vr == "US" || vr == "SS" ) + { + // for multivaluated items + l = (Util::CountSubstring(val, "\\") + 1) * 2; + SetValueOnly(val); + } + else if( vr == "UL" || vr == "SL" ) + { + // for multivaluated items + l = (Util::CountSubstring(val, "\\") + 1) * 4;; + SetValueOnly(val); + } + else + { + std::string finalVal = Util::DicomString( val.c_str() ); + assert( !(finalVal.size() % 2) ); + + l = finalVal.length(); + SetValueOnly(finalVal); + } + } + else + { + std::string finalVal = Util::DicomString( val.c_str() ); + assert( !(finalVal.size() % 2) ); + + l = finalVal.length(); + SetValueOnly(finalVal); + } + + SetLength(l); +} + /* * \brief canonical Writer */ @@ -181,8 +224,6 @@ void ValEntry::WriteContent(std::ofstream* fp, FileType filetype) { DocEntry::WriteContent(fp, filetype); - //std::cout << "=====================================" << GetVR() << std::endl; - if ( GetGroup() == 0xfffe ) { return; //delimitors have NO value @@ -224,13 +265,10 @@ void ValEntry::WriteContent(std::ofstream* fp, FileType filetype) return; } - assert( lgr == GetValue().size() ); + assert( lgr == GetValue().length() ); binary_write(*fp, GetValue()); } -//----------------------------------------------------------------------------- -// Public - //----------------------------------------------------------------------------- // Protected