]> Creatis software - gdcm.git/blob - src/gdcmValEntry.cxx
ENH: Fix a shadow variable
[gdcm.git] / src / gdcmValEntry.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmValEntry.cxx,v $
5   Language:  C++
6   Date:      $Date: 2004/08/16 16:30:32 $
7   Version:   $Revision: 1.21 $
8                                                                                 
9   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10   l'Image). All rights reserved. See Doc/License.txt or
11   http://www.creatis.insa-lyon.fr/Public/Gdcm/License.htm for details.
12                                                                                 
13      This software is distributed WITHOUT ANY WARRANTY; without even
14      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15      PURPOSE.  See the above copyright notices for more information.
16                                                                                 
17 =========================================================================*/
18
19 #include "gdcmValEntry.h"
20 #include "gdcmTS.h"
21 #include "gdcmGlobal.h"
22 #include "gdcmUtil.h"
23
24 // CLEAN ME
25 #define MAX_SIZE_PRINT_ELEMENT_VALUE 128
26
27 //-----------------------------------------------------------------------------
28 // Constructor / Destructor
29 /**
30  * \brief   Constructor from a given gdcmDictEntry
31  * @param   e Pointer to existing dictionary entry
32  */
33 gdcmValEntry::gdcmValEntry(gdcmDictEntry* e) : gdcmDocEntry(e)
34 {
35    VoidArea = NULL; // will be in BinEntry ?
36 }
37
38 /**
39  * \brief   Constructor from a given gdcmDocEntry
40  * @param   e Pointer to existing Doc entry
41  */
42 gdcmValEntry::gdcmValEntry(gdcmDocEntry* e) : gdcmDocEntry(e->GetDictEntry())
43 {
44    UsableLength = e->GetLength();
45    ReadLength   = e->GetReadLength();
46    ImplicitVR   = e->IsImplicitVR();
47    Offset       = e->GetOffset();
48    PrintLevel   = e->GetPrintLevel();
49    SQDepthLevel = e->GetDepthLevel();
50
51    VoidArea = NULL; // will be in BinEntry ?
52 }
53
54
55 /**
56  * \brief   Canonical destructor.
57  */
58 gdcmValEntry::~gdcmValEntry ()
59 {
60    if (!VoidArea)  // will be in BinEntry
61    {
62       free(VoidArea);
63       VoidArea = NULL; // let's be carefull !
64    }
65 }
66
67 //-----------------------------------------------------------------------------
68 // Print
69 /**
70  * \brief   canonical Printer
71  */
72 void gdcmValEntry::Print(std::ostream & os)
73 {
74    uint16_t g = GetGroup();
75    uint16_t e = GetElement();
76    std::string vr = GetVR();
77    std::ostringstream s; 
78    char st[20];
79    TSKey v;
80    std::string d2;
81      
82    gdcmDocEntry::Print(os); 
83
84    if (g == 0xfffe)
85    {
86       // just to avoid identing all the remaining code     
87       return;
88    }
89    
90    gdcmTS * ts = gdcmGlobal::GetTS();
91     
92    v  = GetValue();  // not applicable for SQ ...     
93    d2 = CreateCleanString(v);  // replace non printable characters by '.'            
94    if( (GetLength()<=MAX_SIZE_PRINT_ELEMENT_VALUE) || 
95        (PrintLevel>=3)  || (d2.find("gdcm::NotLoaded.") < d2.length()) )
96    {
97       s << " [" << d2 << "]";
98    }
99    else
100    {
101       s << " [gdcm::too long for print (" << GetLength() << ") ]";
102    }
103    
104    // Display the UID value (instead of displaying only the rough code)
105    // First 'clean' trailing character (space or zero) 
106    if (g == 0x0002)
107    {
108       // Any more to be displayed ?
109       if ( (e == 0x0010) || (e == 0x0002) )
110       {
111          if ( v.length() != 0 )  // for brain damaged headers
112          {
113             if ( ! isdigit(v[v.length()-1]) )
114             {
115                v.erase(v.length()-1, 1);
116             }
117          }
118          s << "  ==>\t[" << ts->GetValue(v) << "]";
119       }
120    }
121    else
122    {
123       if (g == 0x0008)
124       {
125          if ( e == 0x0016 || e == 0x1150 )
126          {
127             if ( v.length() != 0 )  // for brain damaged headers
128             {
129                if ( ! isdigit(v[v.length()-1]) )
130                {
131                   v.erase(v.length()-1, 1);
132                }
133             }
134             s << "  ==>\t[" << ts->GetValue(v) << "]";
135          }
136       }
137       else
138       {
139          if (g == 0x0004)
140          {
141             if ( (e == 0x1510) || (e == 0x1512)  )
142             {
143                if ( v.length() != 0 )  // for brain damaged headers  
144                {
145                   if ( ! isdigit(v[v.length()-1]) )
146                   {
147                      v.erase(v.length()-1, 1);  
148                   }
149                }
150               s << "  ==>\t[" << ts->GetValue(v) << "]";
151             }
152          }     
153       }
154    }
155    //if (e == 0x0000) {        // elem 0x0000 --> group length 
156    if ( (vr == "UL") || (vr == "US") || (vr == "SL") || (vr == "SS") )
157    {
158       if (v == "4294967295") // to avoid troubles in convertion 
159       {
160          sprintf (st," x(ffffffff)");
161       }
162       else
163       {
164          if ( GetLength() !=0 )
165          {
166             sprintf(st," x(%x)", atoi(v.c_str()));//FIXME
167          }
168          else
169          {
170             sprintf(st," ");
171          }
172       }
173       s << st;
174    }
175    os << s.str();
176 }
177
178 /*
179  * \brief   canonical Writer
180  */
181 void gdcmValEntry::Write(FILE *fp, FileType filetype)
182 {
183    gdcmDocEntry::Write(fp, filetype);
184    std::string vr = GetVR();
185    int lgr = GetReadLength();
186    if (vr == "US" || vr == "SS")
187    {
188       // some 'Short integer' fields may be mulivaluated
189       // each single value is separated from the next one by '\'
190       // we split the string and write each value as a short int
191       std::vector<std::string> tokens;
192       tokens.erase(tokens.begin(),tokens.end()); // clean any previous value
193       Tokenize (GetValue(), tokens, "\\");
194       for (unsigned int i=0; i<tokens.size();i++)
195       {
196          uint16_t val_uint16 = atoi(tokens[i].c_str());
197          void *ptr = &val_uint16;
198          fwrite ( ptr,(size_t)2 ,(size_t)1 ,fp);
199       }
200       tokens.clear();
201       return;
202    }
203    if (vr == "UL" || vr == "SL")
204    {
205       // Some 'Integer' fields may be multivaluated (multiple instances 
206       // of integers). But each single integer value is separated from the
207       // next one by '\' (backslash character). Hence we split the string
208       // along the '\' and write each value as an int:
209       std::vector<std::string> tokens;
210       tokens.erase(tokens.begin(),tokens.end()); // clean any previous value
211       Tokenize (GetValue(), tokens, "\\");
212       for (unsigned int i=0; i<tokens.size();i++)
213       {
214          uint32_t val_uint32 = atoi(tokens[i].c_str());
215          void *ptr = &val_uint32;
216          fwrite ( ptr,(size_t)4 ,(size_t)1 ,fp);
217       }
218       tokens.clear();
219       return;
220    } 
221           
222    fwrite (GetValue().c_str(), (size_t)lgr ,(size_t)1, fp); // Elem value
223
224
225 //-----------------------------------------------------------------------------
226 // Public
227
228 //-----------------------------------------------------------------------------
229 // Protected
230
231 //-----------------------------------------------------------------------------
232 // Private
233
234 //-----------------------------------------------------------------------------