X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=src%2FgdcmValEntry.cxx;h=ada7ecf687df768f1876fca0893a94a73682cba5;hb=9ca4fd0ccbfea12ed7760856de3a8faf41625869;hp=d6d7b89dfa23f7a20debac870ddd46f93eecc639;hpb=1bae8d2ba47d1b9cc8acfb7b5ab82026e48275dd;p=gdcm.git diff --git a/src/gdcmValEntry.cxx b/src/gdcmValEntry.cxx index d6d7b89d..ada7ecf6 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: 2005/01/07 16:45:52 $ + Version: $Revision: 1.43 $ 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" @@ -35,7 +36,7 @@ namespace gdcm * \brief Constructor from a given DictEntry * @param e Pointer to existing dictionary entry */ -ValEntry::ValEntry(DictEntry* e) : DocEntry(e) +ValEntry::ValEntry(DictEntry *e) : DocEntry(e) { } @@ -43,14 +44,14 @@ ValEntry::ValEntry(DictEntry* e) : DocEntry(e) * \brief Constructor from a given DocEntry * @param e Pointer to existing Doc entry */ -ValEntry::ValEntry(DocEntry* e) +ValEntry::ValEntry(DocEntry *e) : DocEntry(e->GetDictEntry()) { - UsableLength = e->GetLength(); - ReadLength = e->GetReadLength(); - ImplicitVR = e->IsImplicitVR(); - Offset = e->GetOffset(); - PrintLevel = e->GetPrintLevel(); + Copy(e); +/* Length = e->GetLength(); + ReadLength = e->GetReadLength(); + ImplicitVR = e->IsImplicitVR(); + Offset = e->GetOffset();*/ } @@ -66,7 +67,7 @@ ValEntry::~ValEntry () /** * \brief canonical Printer */ -void ValEntry::Print(std::ostream & os) +void ValEntry::Print(std::ostream &os) { uint16_t g = GetGroup(); uint16_t e = GetElement(); @@ -174,22 +175,63 @@ 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 */ -void ValEntry::WriteContent(std::ofstream* fp, FileType filetype) +void ValEntry::WriteContent(std::ofstream *fp, FileType filetype) { DocEntry::WriteContent(fp, filetype); - //std::cout << "=====================================" << GetVR() << std::endl; - - if ( GetGroup() == 0xfffe ) + if ( GetGroup() == 0xfffe ) { return; //delimitors have NO value } - + std::string vr = GetVR(); - unsigned int lgr = GetReadLength(); + unsigned int lgr = GetLength(); + //std::cout<