]> Creatis software - gdcm.git/blob - src/gdcmParser.cxx
f1fb283d4796f7c149f0071731f73fc57fb52b3b
[gdcm.git] / src / gdcmParser.cxx
1 // gdcmHeader.cxx
2 //-----------------------------------------------------------------------------
3 #include "gdcmParser.h"
4 #include "gdcmUtil.h"
5 #include <errno.h>
6
7 // For nthos:
8 #ifdef _MSC_VER
9    #include <winsock.h>
10 #else
11    #include <netinet/in.h>
12 #endif
13
14 #ifdef GDCM_NO_ANSI_STRING_STREAM
15 #  include <strstream>
16 #  define  ostringstream ostrstream
17 # else
18 #  include <sstream>
19 #endif
20 #  include <iomanip>
21
22 #define UI1_2_840_10008_1_2      "1.2.840.10008.1.2"
23 #define UI1_2_840_10008_1_2_1    "1.2.840.10008.1.2.1"
24 #define UI1_2_840_10008_1_2_2    "1.2.840.10008.1.2.2"
25 #define UI1_2_840_10008_1_2_1_99 "1.2.840.10008.1.2.1.99"
26
27    // Fourth semantics:
28    //
29    // ---> Warning : This fourth field is NOT part 
30    //                of the 'official' Dicom Dictionnary
31    //                and should NOT be used.
32    //                (Not defined for all the groups
33    //                 may be removed in a future release)
34    //
35    // CMD      Command        
36    // META     Meta Information 
37    // DIR      Directory
38    // ID
39    // PAT      Patient
40    // ACQ      Acquisition
41    // REL      Related
42    // IMG      Image
43    // SDY      Study
44    // VIS      Visit 
45    // WAV      Waveform
46    // PRC
47    // DEV      Device
48    // NMI      Nuclear Medicine
49    // MED
50    // BFS      Basic Film Session
51    // BFB      Basic Film Box
52    // BIB      Basic Image Box
53    // BAB
54    // IOB
55    // PJ
56    // PRINTER
57    // RT       Radio Therapy
58    // DVH   
59    // SSET
60    // RES      Results
61    // CRV      Curve
62    // OLY      Overlays
63    // PXL      Pixels
64    // DL       Delimiters
65    //
66
67 //-----------------------------------------------------------------------------
68 // Refer to gdcmParser::CheckSwap()
69 const unsigned int gdcmParser::HEADER_LENGTH_TO_READ = 256;
70
71 // Refer to gdcmParser::SetMaxSizeLoadEntry()
72 const unsigned int gdcmParser::MAX_SIZE_LOAD_ELEMENT_VALUE = 4096;
73
74 // Refer to gdcmParser::SetMaxSizePrintEntry()
75 // TODO : Right now, better see "define, in gdcmHederEntry.cxx
76 const unsigned int gdcmParser::MAX_SIZE_PRINT_ELEMENT_VALUE = 64;
77
78 //-----------------------------------------------------------------------------
79 // Constructor / Destructor
80 /**
81  * \ingroup gdcmParser
82  * \brief   
83  * @param   InFilename
84  * @param   exception_on_error
85  * @param   enable_sequences = true to allow the header 
86  *          to be parsed *inside* the SeQuences, 
87  *          when they have an actual length 
88  * @param ignore_shadow to allow skipping the shadow elements, 
89  *           to save memory space.
90  * \warning  The TRUE value for this param has to be used 
91  *           with a FALSE value for the 'enable_sequence' param.
92  *           ('public elements' may be embedded in 'shadow Sequences')
93  */
94 gdcmParser::gdcmParser(const char *InFilename, 
95                        bool exception_on_error,
96                        bool enable_sequences,
97                        bool ignore_shadow) {
98    enableSequences=enable_sequences;
99    ignoreShadow   =ignore_shadow;
100    
101    SetMaxSizeLoadEntry(MAX_SIZE_LOAD_ELEMENT_VALUE);
102    filename = InFilename;
103    Initialise();
104
105    if ( !OpenFile(exception_on_error))
106       return;
107    if (ParseHeader()) {
108      LoadHeaderEntries();
109    }
110    CloseFile();
111
112    wasUpdated = 0;  // will be set to 1 if user adds an entry
113    printLevel = 1;  // 'Medium' print level by default
114 }
115
116 /**
117  * \ingroup gdcmParser
118  * \brief   
119  * @param   exception_on_error
120  */
121 gdcmParser::gdcmParser(bool exception_on_error) {
122    enableSequences=0;
123
124    SetMaxSizeLoadEntry(MAX_SIZE_LOAD_ELEMENT_VALUE);
125    Initialise();
126
127    wasUpdated = 0;  // will be set to 1 if user adds an entry
128    printLevel = 1;  // 'Medium' print level by default
129 }
130
131 /**
132  * \ingroup gdcmParser
133  * \brief   Canonical destructor.
134  */
135 gdcmParser::~gdcmParser (void) {
136    RefPubDict = NULL;
137    RefShaDict = NULL;
138 }
139
140 //-----------------------------------------------------------------------------
141 // Print
142 /**
143   * \ingroup gdcmParser
144   * \brief   Prints the Header Entries (Dicom Elements)
145   *          both from the H Table and the chained list
146   * @return
147   */ 
148 void gdcmParser::PrintEntry(std::ostream & os) {
149    std::ostringstream s;   
150            
151    for (ListTag::iterator i = listEntries.begin();  
152            i != listEntries.end();
153            ++i)
154    {
155            (*i)->SetPrintLevel(printLevel);
156            (*i)->Print(os);   
157    } 
158    os<<s.str();
159 }
160
161 /**
162   * \ingroup gdcmParser
163   * \brief   Prints The Dict Entries of THE public Dicom Dictionnry
164   * @return
165   */  
166 void gdcmParser::PrintPubDict(std::ostream & os) {
167    RefPubDict->Print(os);
168 }
169
170 /**
171   * \ingroup gdcmParser
172   * \brief   Prints The Dict Entries of THE shadow Dicom Dictionnry
173   * @return
174   */
175 void gdcmParser::PrintShaDict(std::ostream & os) {
176    RefShaDict->Print(os);
177 }
178
179 //-----------------------------------------------------------------------------
180 // Public
181 /**
182  * \ingroup gdcmParser
183  * \brief   Get the public dictionary used
184  */
185 gdcmDict *gdcmParser::GetPubDict(void) {
186    return(RefPubDict);
187 }
188
189 /**
190  * \ingroup gdcmParser
191  * \brief   Get the shadow dictionary used
192  */
193 gdcmDict *gdcmParser::GetShaDict(void) {
194    return(RefShaDict);
195 }
196
197 /**
198  * \ingroup gdcmParser
199  * \brief   Set the shadow dictionary used
200  * \param   dict dictionary to use in shadow
201  */
202 bool gdcmParser::SetShaDict(gdcmDict *dict){
203    RefShaDict=dict;
204    return(!RefShaDict);
205 }
206
207 /**
208  * \ingroup gdcmParser
209  * \brief   Set the shadow dictionary used
210  * \param   dictName name of the dictionary to use in shadow
211  */
212 bool gdcmParser::SetShaDict(DictKey dictName){
213    RefShaDict=gdcmGlobal::GetDicts()->GetDict(dictName);
214    return(!RefShaDict);
215 }
216
217 /**
218  * \ingroup gdcmParser
219  * \brief  This predicate, based on hopefully reasonable heuristics,
220  *         decides whether or not the current gdcmParser was properly parsed
221  *         and contains the mandatory information for being considered as
222  *         a well formed and usable Dicom/Acr File.
223  * @return true when gdcmParser is the one of a reasonable Dicom/Acr file,
224  *         false otherwise. 
225  */
226 bool gdcmParser::IsReadable(void) { 
227    if(filetype==Unknown) {
228       return(false);
229    }
230    if(listEntries.size()<=0) {    
231       return(false);
232    }
233
234    return(true);
235 }
236
237 /**
238  * \ingroup gdcmParser
239  * \brief   Determines if the Transfer Syntax was already encountered
240  *          and if it corresponds to a ImplicitVRLittleEndian one.
241  *
242  * @return  True when ImplicitVRLittleEndian found. False in all other cases.
243  */
244 bool gdcmParser::IsImplicitVRLittleEndianTransferSyntax(void) {
245    gdcmHeaderEntry *Element = GetHeaderEntryByNumber(0x0002, 0x0010);
246    if ( !Element )
247       return false;
248    LoadHeaderEntrySafe(Element);
249
250    std::string Transfer = Element->GetValue();
251    if ( Transfer == UI1_2_840_10008_1_2 )
252       return true;
253    return false;
254 }
255
256 /**
257  * \ingroup gdcmParser
258  * \brief   Determines if the Transfer Syntax was already encountered
259  *          and if it corresponds to a ExplicitVRLittleEndian one.
260  *
261  * @return  True when ExplicitVRLittleEndian found. False in all other cases.
262  */
263 bool gdcmParser::IsExplicitVRLittleEndianTransferSyntax(void) {
264    gdcmHeaderEntry* Element = GetHeaderEntryByNumber(0x0002, 0x0010);
265    if ( !Element )
266       return false;
267    LoadHeaderEntrySafe(Element);
268
269    std::string Transfer = Element->GetValue();
270    if ( Transfer == UI1_2_840_10008_1_2_1 )
271       return true;
272    return false;
273 }
274
275 /**
276  * \ingroup gdcmParser
277  * \brief   Determines if the Transfer Syntax was already encountered
278  *          and if it corresponds to a DeflatedExplicitVRLittleEndian one.
279  *
280  * @return  True when DeflatedExplicitVRLittleEndian found. False in all other cases.
281  */
282 bool gdcmParser::IsDeflatedExplicitVRLittleEndianTransferSyntax(void) {
283    gdcmHeaderEntry* Element = GetHeaderEntryByNumber(0x0002, 0x0010);
284    if ( !Element )
285       return false;
286    LoadHeaderEntrySafe(Element);
287
288    std::string Transfer = Element->GetValue();
289    if ( Transfer == UI1_2_840_10008_1_2_1_99 )
290       return true;
291    return false;
292 }
293
294 /**
295  * \ingroup gdcmParser
296  * \brief   Determines if the Transfer Syntax was already encountered
297  *          and if it corresponds to a Explicit VR Big Endian one.
298  *
299  * @return  True when big endian found. False in all other cases.
300  */
301 bool gdcmParser::IsExplicitVRBigEndianTransferSyntax(void) {
302    gdcmHeaderEntry* Element = GetHeaderEntryByNumber(0x0002, 0x0010);
303    if ( !Element )
304       return false;
305    LoadHeaderEntrySafe(Element);
306
307    std::string Transfer = Element->GetValue();
308    if ( Transfer == UI1_2_840_10008_1_2_2 )  //1.2.2 ??? A verifier !
309       return true;
310    return false;
311 }
312
313 /**
314  * \ingroup gdcmParser
315  * \brief  returns the File Type 
316  *         (ACR, ACR_LIBIDO, ExplicitVR, ImplicitVR, Unknown)
317  * @return 
318  */
319 FileType gdcmParser::GetFileType(void) {
320    return(filetype);
321 }
322
323 /**
324  * \ingroup gdcmParser
325  * \brief   opens the file
326  * @param   exception_on_error
327  * @return  
328  */
329 FILE *gdcmParser::OpenFile(bool exception_on_error)
330   throw(gdcmFileError) 
331 {
332   fp=fopen(filename.c_str(),"rb");
333   if(exception_on_error) 
334   {
335     if(!fp)
336       throw gdcmFileError("gdcmParser::gdcmParser(const char *, bool)");
337   }
338
339   if ( fp ) 
340   {
341      guint16 zero;
342      fread(&zero,  (size_t)2, (size_t)1, fp);
343
344     //ACR -- or DICOM with no Preamble --
345     if( zero == 0x0008 || zero == 0x0800 || zero == 0x0002 || zero == 0x0200)
346        return(fp);
347
348     //DICOM
349     fseek(fp, 126L, SEEK_CUR);
350     char dicm[4];
351     fread(dicm,  (size_t)4, (size_t)1, fp);
352     if( memcmp(dicm, "DICM", 4) == 0 )
353        return(fp);
354
355     fclose(fp);
356     dbg.Verbose(0, "gdcmParser::OpenFile not DICOM/ACR", filename.c_str());
357   }
358   else {
359     dbg.Verbose(0, "gdcmParser::OpenFile cannot open file", filename.c_str());
360   }
361   return(NULL);
362 }
363
364 /**
365  * \ingroup gdcmParser
366  * \brief closes the file  
367  * @return  TRUE if the close was successfull 
368  */
369 bool gdcmParser::CloseFile(void) {
370   int closed = fclose(fp);
371   fp = (FILE *)0;
372   if (! closed)
373      return false;
374   return true;
375 }
376
377 /**
378  * \ingroup gdcmParser
379  * \brief 
380  * @param fp file pointer on an already open file
381  * @param   type type of the File to be written 
382  *          (ACR-NEMA, ExplicitVR, ImplicitVR)
383  * @return  always "True" ?!
384  */
385 bool gdcmParser::Write(FILE *fp, FileType type) {
386 // ==============
387 // TODO The stuff was rewritten using the chained list instead 
388 //      of the H table
389 //      so we could remove the GroupHT from the gdcmParser
390 // To be checked
391 // =============
392
393    // TODO : move the following lines (and a lot of others, to be written)
394    // to a future function CheckAndCorrectHeader
395    
396         // Question :
397         // Comment pourrait-on savoir si le DcmHeader vient d'un fichier DicomV3 ou non
398         // (FileType est un champ de gdcmParser ...)
399         // WARNING : Si on veut ecrire du DICOM V3 a partir d'un DcmHeader ACR-NEMA
400         // no way 
401         // a moins de se livrer a un tres complique ajout des champs manquants.
402         // faire un CheckAndCorrectHeader (?)  
403          
404
405    if (type == ImplicitVR) 
406    {
407       std::string implicitVRTransfertSyntax = UI1_2_840_10008_1_2;
408       ReplaceOrCreateByNumber(implicitVRTransfertSyntax,0x0002, 0x0010);
409       
410       //FIXME Refer to standards on page 21, chapter 6.2 "Value representation":
411       //      values with a VR of UI shall be padded with a single trailing null
412       //      Dans le cas suivant on doit pader manuellement avec un 0
413       
414       SetEntryLengthByNumber(18, 0x0002, 0x0010);
415    } 
416
417    if (type == ExplicitVR) 
418    {
419       std::string explicitVRTransfertSyntax = UI1_2_840_10008_1_2_1;
420       ReplaceOrCreateByNumber(explicitVRTransfertSyntax,0x0002, 0x0010);
421       
422       //FIXME Refer to standards on page 21, chapter 6.2 "Value representation":
423       //      values with a VR of UI shall be padded with a single trailing null
424       //      Dans le cas suivant on doit pader manuellement avec un 0
425       
426       SetEntryLengthByNumber(20, 0x0002, 0x0010);
427    }
428
429 /* TODO : rewrite later
430
431    if ( (type == ImplicitVR) || (type == ExplicitVR) )
432       UpdateGroupLength(false,type);
433    if ( type == ACR)
434       UpdateGroupLength(true,ACR);
435 */
436
437    WriteEntries(fp,type);
438    return(true);
439  }
440
441 /**
442  * \ingroup gdcmParser
443  * \brief   Modifies the value of a given Header Entry (Dicom Element)
444  *          if it exists; Creates it with the given value if it doesn't
445  * @param   Value passed as a std::string
446  * @param   Group
447  * @param   Elem
448  * \return  boolean
449  */
450 bool gdcmParser::ReplaceOrCreateByNumber(std::string Value, 
451                                          guint16 Group, 
452                                          guint16 Elem ){
453    if (CheckIfEntryExistByNumber(Group, Elem) == 0) {
454       gdcmHeaderEntry *a =NewHeaderEntryByNumber(Group, Elem);
455       if (a == NULL) 
456          return false;
457       AddHeaderEntry(a);
458    }   
459    SetEntryByNumber(Value, Group, Elem);
460    return(true);
461 }   
462
463 /**
464  * \ingroup gdcmParser
465  * \brief   Modifies the value of a given Header Entry (Dicom Element)
466  *          if it exists; Creates it with the given value if it doesn't
467  * @param   Value passed as a char*
468  * @param   Group
469  * @param   Elem
470  * \return  boolean 
471  * 
472  */
473 bool gdcmParser::ReplaceOrCreateByNumber(char* Value, guint16 Group, guint16 Elem ) {
474    gdcmHeaderEntry* nvHeaderEntry=NewHeaderEntryByNumber(Group, Elem);
475
476    if(!nvHeaderEntry)
477       return(false);
478
479    AddHeaderEntry(nvHeaderEntry);
480
481    std::string v = Value;       
482    SetEntryByNumber(v, Group, Elem);
483    return(true);
484 }  
485
486 /**
487  * \ingroup gdcmParser
488  * \brief   Set a new value if the invoked element exists
489  *          Seems to be useless !!!
490  * @param   Value
491  * @param   Group
492  * @param   Elem
493  * \return  boolean 
494  */
495 bool gdcmParser::ReplaceIfExistByNumber(char* Value, guint16 Group, guint16 Elem ) 
496 {
497    std::string v = Value;       
498    SetEntryByNumber(v, Group, Elem);
499    return true;
500
501
502 //-----------------------------------------------------------------------------
503 // Protected
504 /**
505  * \ingroup gdcmParser
506  * \brief   Checks if a given Dicom Element exists
507  * \        within the H table
508  * @param   group Group   number of the searched Dicom Element 
509  * @param   element  Element number of the searched Dicom Element 
510  * @return  number of occurences
511  */
512 int gdcmParser::CheckIfEntryExistByNumber(guint16 group, guint16 element ) {
513         std::string key = gdcmDictEntry::TranslateToKey(group, element );
514         return (tagHT.count(key));
515 }
516
517 /**
518  * \ingroup gdcmParser
519  * \brief   Searches within Header Entries (Dicom Elements) parsed with 
520  *          the public and private dictionaries 
521  *          for the element value of a given tag.
522  * \warning Don't use any longer : use GetPubEntryByName
523  * @param   tagName name of the searched element.
524  * @return  Corresponding element value when it exists,
525  *          and the string GDCM_UNFOUND ("gdcm::Unfound") otherwise.
526  */
527 std::string gdcmParser::GetEntryByName(std::string tagName) {
528    gdcmDictEntry *dictEntry = RefPubDict->GetDictEntryByName(tagName); 
529    if( dictEntry == NULL)
530       return GDCM_UNFOUND;
531
532    return(GetEntryByNumber(dictEntry->GetGroup(),dictEntry->GetElement()));  
533 }
534
535 /**
536  * \ingroup gdcmParser
537  * \brief   Searches within Header Entries (Dicom Elements) parsed with 
538  *          the public and private dictionaries 
539  *          for the element value representation of a given tag.
540  *
541  *          Obtaining the VR (Value Representation) might be needed by caller
542  *          to convert the string typed content to caller's native type 
543  *          (think of C++ vs Python). The VR is actually of a higher level
544  *          of semantics than just the native C++ type.
545  * @param   tagName name of the searched element.
546  * @return  Corresponding element value representation when it exists,
547  *          and the string GDCM_UNFOUND ("gdcm::Unfound") otherwise.
548  */
549 std::string gdcmParser::GetEntryVRByName(std::string tagName) {
550    gdcmDictEntry *dictEntry = RefPubDict->GetDictEntryByName(tagName); 
551    if( dictEntry == NULL)
552       return GDCM_UNFOUND;
553
554    gdcmHeaderEntry* elem =  GetHeaderEntryByNumber(dictEntry->GetGroup(),
555                                                    dictEntry->GetElement());                                    
556    return elem->GetVR();
557 }
558
559 /**
560  * \ingroup gdcmParser
561  * \brief   Searches within Header Entries (Dicom Elements) parsed with 
562  *          the public and private dictionaries 
563  *          for the element value representation of a given tag.
564  * @param   group Group of the searched tag.
565  * @param   element Element of the searched tag.
566  * @return  Corresponding element value representation when it exists,
567  *          and the string GDCM_UNFOUND ("gdcm::Unfound") otherwise.
568  */
569 std::string gdcmParser::GetEntryByNumber(guint16 group, guint16 element){
570    TagKey key = gdcmDictEntry::TranslateToKey(group, element);
571    if ( ! tagHT.count(key))
572       return GDCM_UNFOUND;
573    return tagHT.find(key)->second->GetValue();
574 }
575
576 /**
577  * \ingroup gdcmParser
578  * \brief   Searches within Header Entries (Dicom Elements) parsed with 
579  *          the public and private dictionaries 
580  *          for the element value representation of a given tag..
581  *
582  *          Obtaining the VR (Value Representation) might be needed by caller
583  *          to convert the string typed content to caller's native type 
584  *          (think of C++ vs Python). The VR is actually of a higher level
585  *          of semantics than just the native C++ type.
586  * @param   group Group of the searched tag.
587  * @param   element Element of the searched tag.
588  * @return  Corresponding element value representation when it exists,
589  *          and the string GDCM_UNFOUND ("gdcm::Unfound") otherwise.
590  */
591 std::string gdcmParser::GetEntryVRByNumber(guint16 group, guint16 element) {
592    gdcmHeaderEntry* elem =  GetHeaderEntryByNumber(group, element);
593    if ( !elem )
594       return GDCM_UNFOUND;
595    return elem->GetVR();
596 }
597
598 /**
599  * \ingroup gdcmParser
600  * \brief   Sets the value (string) of the Header Entry (Dicom Element)
601  * @param   content string value of the Dicom Element
602  * @param   tagName name of the searched Dicom Element.
603  * @return  true when found
604  */
605 bool gdcmParser::SetEntryByName(std::string content,std::string tagName) {
606    gdcmDictEntry *dictEntry = RefPubDict->GetDictEntryByName(tagName); 
607    if( dictEntry == NULL)
608       return false;                                 
609
610    return(SetEntryByNumber(content,dictEntry->GetGroup(),
611                                    dictEntry->GetElement()));
612 }
613
614 /**
615  * \ingroup gdcmParser
616  * \brief   Accesses an existing gdcmHeaderEntry (i.e. a Dicom Element)
617  *          through it's (group, element) and modifies it's content with
618  *          the given value.
619  * \warning Don't use any longer : use SetPubEntryByNumber
620  * @param   content new value to substitute with
621  * @param   group   group of the Dicom Element to modify
622  * @param   element element of the Dicom Element to modify
623  */
624 bool gdcmParser::SetEntryByNumber(std::string content, 
625                                   guint16 group,
626                                   guint16 element) 
627 {
628    TagKey key = gdcmDictEntry::TranslateToKey(group, element);
629    if ( ! tagHT.count(key))
630       return false;
631    int l = content.length();
632    if(l%2) // Odd length are padded with a space (020H).
633    {  
634       l++;
635       content = content + '\0';
636    }
637       
638    gdcmHeaderEntry * a;
639    IterHT p;
640    TagHeaderEntryHT::iterator p2;
641    // DO NOT remove the following lines : they explain the stuff   
642    //p= tagHT.equal_range(key); // get a pair of iterators first-last synonym
643    //p2=p.first;                // iterator on the first synonym 
644    //a=p2->second;              // H Table target column (2-nd col)
645     
646    // or, easier :
647    a = ((tagHT.equal_range(key)).first)->second; 
648        
649    a-> SetValue(content); 
650    
651    std::string vr = a->GetVR();
652    
653    guint32 lgr;
654    if( (vr == "US") || (vr == "SS") ) 
655       lgr = 2;
656    else if( (vr == "UL") || (vr == "SL") )
657       lgr = 4;
658    else
659       lgr = l;     
660
661    a->SetLength(lgr);   
662    return true;
663 }                                         
664
665 /**
666  * \ingroup gdcmParser
667  * \brief   Accesses an existing gdcmHeaderEntry (i.e. a Dicom Element)
668  *          in the PubHeaderEntrySet of this instance
669  *          through it's (group, element) and modifies it's length with
670  *          the given value.
671  * \warning Use with extreme caution.
672  * @param   length new length to substitute with
673  * @param   group   group of the entry to modify
674  * @param   element element of the Entry to modify
675  * @return  1 on success, 0 otherwise.
676  */
677 bool gdcmParser::SetEntryLengthByNumber(guint32 length, 
678                                         guint16 group, 
679                                         guint16 element) 
680 {
681    TagKey key = gdcmDictEntry::TranslateToKey(group, element);
682    if ( ! tagHT.count(key))
683       return false;
684    if (length%2) length++; // length must be even
685    ( ((tagHT.equal_range(key)).first)->second )->SetLength(length);      
686          
687    return true ;                
688 }
689
690 /**
691  * \ingroup gdcmParser
692  * \brief   Gets (from Header) the offset  of a 'non string' element value 
693  * \        (LoadElementValues has already be executed)
694  * @param   Group
695  * @param   Elem
696  * @return File Offset of the Element Value 
697  */
698 size_t gdcmParser::GetEntryOffsetByNumber(guint16 Group, guint16 Elem) 
699 {
700    gdcmHeaderEntry* Entry = GetHeaderEntryByNumber(Group, Elem);         
701    if (!Entry) 
702    {
703       dbg.Verbose(1, "gdcmParser::GetHeaderEntryByNumber",
704                       "failed to Locate gdcmHeaderEntry");
705       return (size_t)0;
706    }
707    return Entry->GetOffset();
708 }
709
710 /**
711  * \ingroup gdcmParser
712  * \brief   Gets (from Header) a 'non string' element value 
713  * \        (LoadElementValues has already be executed)  
714  * @param   Group
715  * @param   Elem
716  * @return Pointer to the 'non string' area
717  */
718 void * gdcmParser::GetEntryVoidAreaByNumber(guint16 Group, guint16 Elem) 
719 {
720    gdcmHeaderEntry* Entry = GetHeaderEntryByNumber(Group, Elem);         
721    if (!Entry) 
722    {
723       dbg.Verbose(1, "gdcmParser::GetHeaderEntryByNumber",
724                   "failed to Locate gdcmHeaderEntry");
725       return (NULL);
726    }
727    return Entry->GetVoidArea();
728 }
729
730 /**
731  * \ingroup       gdcmParser
732  * \brief         Loads (from disk) the element content 
733  *                when a string is not suitable
734  * @param   Group
735  * @param   Elem
736  */
737 void *gdcmParser::LoadEntryVoidArea(guint16 Group, guint16 Elem) 
738 {
739    gdcmHeaderEntry * Element= GetHeaderEntryByNumber(Group, Elem);
740    if ( !Element )
741       return NULL;
742    size_t o =(size_t)Element->GetOffset();
743    fseek(fp, o, SEEK_SET);
744    int l=Element->GetLength();
745    void * a = malloc(l);
746    if(!a) 
747         return NULL;
748
749    SetEntryVoidAreaByNumber(a, Group, Elem);
750    // TODO check the result 
751    size_t l2 = fread(a, 1, l ,fp);
752    if(l != l2) 
753    {
754         free(a);
755         return NULL;
756    }
757
758    return a;  
759 }
760
761 /**
762  * \ingroup gdcmParser
763  * \brief   Sets a 'non string' value to a given Dicom Element
764  * @param   area
765  * @param   group Group number of the searched Dicom Element 
766  * @param   element Element number of the searched Dicom Element 
767  * @return  
768  */
769 bool gdcmParser::SetEntryVoidAreaByNumber(void * area,
770                                           guint16 group, 
771                                           guint16 element) 
772 {
773    TagKey key = gdcmDictEntry::TranslateToKey(group, element);
774    if ( ! tagHT.count(key))
775       return false;
776    ( ((tagHT.equal_range(key)).first)->second )->SetVoidArea(area);      
777    return true;
778 }
779
780 /**
781  * \ingroup gdcmParser
782  * \brief   Update the entries with the shadow dictionary. Only odd entries are
783  *          analized
784  */
785 void gdcmParser::UpdateShaEntries(void) {
786    gdcmDictEntry *entry;
787    std::string vr;
788
789    for(ListTag::iterator it=listEntries.begin();
790        it!=listEntries.end();
791        ++it)
792    {
793       // Odd group => from public dictionary
794       if((*it)->GetGroup()%2==0)
795          continue;
796
797       // Peer group => search the corresponding dict entry
798       if(RefShaDict)
799          entry=RefShaDict->GetDictEntryByNumber((*it)->GetGroup(),(*it)->GetElement());
800       else
801          entry=NULL;
802
803       if((*it)->IsImplicitVR())
804          vr="Implicit";
805       else
806          vr=(*it)->GetVR();
807
808       (*it)->SetValue(GetHeaderEntryUnvalue(*it));
809       if(entry){
810          // Set the new entry and the new value
811          (*it)->SetDictEntry(entry);
812          CheckHeaderEntryVR(*it,vr);
813
814          (*it)->SetValue(GetHeaderEntryValue(*it));
815       }
816       else
817       {
818          // Remove precedent value transformation
819          (*it)->SetDictEntry(NewVirtualDictEntry((*it)->GetGroup(),(*it)->GetElement(),vr));
820       }
821    }
822 }
823
824 /**
825  * \ingroup gdcmParser
826  * \brief   Searches within the Header Entries for a Dicom Element of
827  *          a given tag.
828  * @param   tagName name of the searched Dicom Element.
829  * @return  Corresponding Dicom Element when it exists, and NULL
830  *          otherwise.
831  */
832  gdcmHeaderEntry *gdcmParser::GetHeaderEntryByName(std::string tagName) {
833    gdcmDictEntry *dictEntry = RefPubDict->GetDictEntryByName(tagName); 
834    if( dictEntry == NULL)
835       return NULL;
836
837   return(GetHeaderEntryByNumber(dictEntry->GetGroup(),dictEntry->GetElement()));
838 }
839
840 /**
841  * \ingroup gdcmParser
842  * \brief  retrieves a Dicom Element (the first one) using (group, element)
843  * \ warning (group, element) IS NOT an identifier inside the Dicom Header
844  *           if you think it's NOT UNIQUE, check the count number
845  *           and use iterators to retrieve ALL the Dicoms Elements within
846  *           a given couple (group, element)
847  * @param   group Group number of the searched Dicom Element 
848  * @param   element Element number of the searched Dicom Element 
849  * @return  
850  */
851 gdcmHeaderEntry* gdcmParser::GetHeaderEntryByNumber(guint16 group, guint16 element) 
852 {
853    TagKey key = gdcmDictEntry::TranslateToKey(group, element);
854    if ( ! tagHT.count(key))
855       return NULL;
856    return tagHT.find(key)->second;
857 }
858
859 /**
860  * \ingroup gdcmParser
861  * \brief   retrieves the Dicom Elements (all of them) using (group, element) 
862  * @param   group Group number of the searched Dicom Element.
863  * @param   element Element number of the searched Dicom Element.
864  * @return  a range (i.e.pair<,>) containing all elements whose key is group|element) 
865  */
866  
867 IterHT gdcmParser::GetHeaderEntrySameNumber(guint16 group, guint16 element){
868    TagKey key = gdcmDictEntry::TranslateToKey(group, element);
869    return (tagHT.equal_range(key));
870 }
871
872 /**
873  * \ingroup       gdcmParser
874  * \brief         Loads the element while preserving the current
875  *                underlying file position indicator as opposed to
876  *                to LoadHeaderEntry that modifies it.
877  * @param entry   Header Entry whose value shall be loaded. 
878  * @return  
879  */
880 void gdcmParser::LoadHeaderEntrySafe(gdcmHeaderEntry * entry) {
881    long PositionOnEntry = ftell(fp);
882    LoadHeaderEntry(entry);
883    fseek(fp, PositionOnEntry, SEEK_SET);
884 }
885
886 /**
887  * \ingroup gdcmParser
888  * \brief   Re-computes the length of a ACR-NEMA/Dicom group from a DcmHeader
889  * \warning : to be re-written using the chained list instead of the H table.
890  * \warning : DO NOT use (doesn't work any longer because of the multimap)
891  * \todo : to be re-written using the chained list instead of the H table
892  * @param   SkipSequence TRUE if we don't want to write Sequences (ACR-NEMA Files)
893  * @param   type Type of the File (ExplicitVR,ImplicitVR, ACR, ...) 
894  */
895 void gdcmParser::UpdateGroupLength(bool SkipSequence, FileType type) {
896    guint16 gr, el;
897    std::string vr;
898    
899    gdcmHeaderEntry *elem;
900    char trash[10];
901    std::string str_trash;
902    
903    GroupKey key;
904    GroupHT groupHt;  // to hold the length of each group
905    TagKey tk;
906    // remember :
907    // typedef std::map<GroupKey, int> GroupHT;
908    
909    gdcmHeaderEntry *elemZ;
910   
911    // for each Tag in the DCM Header
912    
913    for (TagHeaderEntryHT::iterator tag2 = tagHT.begin(); 
914         tag2 != tagHT.end();
915         ++tag2)
916    {
917       elem  = tag2->second;
918       gr = elem->GetGroup();
919       el = elem->GetElement();
920       vr = elem->GetVR(); 
921                  
922       sprintf(trash, "%04x", gr);
923       key = trash;              // generate 'group tag'
924       
925       // if the caller decided not to take SEQUENCEs into account 
926       // e.g : he wants to write an ACR-NEMA File 
927                 
928       if (SkipSequence && vr == "SQ") 
929          continue;
930       
931       // Still unsolved problem :
932       // we cannot find the 'Sequence Delimitation Item'
933       // since it's at the end of the Hash Table
934       // (fffe,e0dd) 
935        
936       // pas SEQUENCE en ACR-NEMA
937       // WARNING : 
938       // --> la descente a l'interieur' des SQ 
939       // devrait etre faite avec une liste chainee, pas avec une HTable...
940             
941       if ( groupHt.count(key) == 0) // we just read the first elem of a given group
942       { 
943          if (el == 0x0000) // the first elem is 0x0000
944          {            
945             groupHt[key] = 0;         // initialize group length 
946          } 
947          else 
948          {
949             groupHt[key] = 2 + 2 + 4 + elem->GetLength(); // non 0x0000 first group elem
950          } 
951       } 
952       else // any elem but the first
953       {   
954          if (type == ExplicitVR) 
955          {
956             if ( (vr == "OB") || (vr == "OW") || (vr == "SQ") ) 
957             {
958                groupHt[key] +=  4; // explicit VR AND OB, OW, SQ : 4 more bytes
959             }
960          }
961          groupHt[key] += 2 + 2 + 4 + elem->GetLength(); 
962       } 
963    }
964
965    unsigned short int gr_bid;
966   
967    for (GroupHT::iterator g = groupHt.begin(); // for each group we found
968         g != groupHt.end();
969         ++g)
970    { 
971       // FIXME: g++ -Wall -Wstrict-prototypes reports on following line:
972       //        warning: unsigned int format, different type arg
973       sscanf(g->first.c_str(),"%x",&gr_bid);
974       tk = g->first + "|0000";                  // generate the element full tag
975                      
976       if ( tagHT.count(tk) == 0) // if element 0x0000 not found
977       {                 
978          gdcmDictEntry * tagZ = new gdcmDictEntry(gr_bid, 0x0000, "UL");       
979          elemZ = new gdcmHeaderEntry(tagZ);
980          elemZ->SetLength(4);
981          AddHeaderEntry(elemZ);                         // create it
982       } 
983       else 
984       {
985          elemZ=GetHeaderEntryByNumber(gr_bid, 0x0000);
986       }     
987       sprintf(trash ,"%d",g->second);
988       str_trash=trash;
989       elemZ->SetValue(str_trash);
990    }   
991 }
992
993 /**
994  * \ingroup gdcmParser
995  * \brief   writes on disc according to the requested format
996  * \        (ACR-NEMA, ExplicitVR, ImplicitVR) the image
997  * \ warning does NOT add the missing elements in the header :
998  * \         it's up to the user doing it !
999  * \         (function CheckHeaderCoherence to be written)
1000  * \ warning DON'T try, right now, to write a DICOM image
1001  * \         from an ACR Header (meta elements will be missing!)
1002  * @param   type type of the File to be written 
1003  *          (ACR-NEMA, ExplicitVR, ImplicitVR)
1004  * @param   _fp already open file pointer
1005  */
1006 void gdcmParser::WriteEntries(FILE *_fp,FileType type)
1007 {
1008    guint16 gr, el;
1009    guint32 lgr;
1010    const char * val;
1011    std::string vr;
1012    guint32 val_uint32;
1013    guint16 val_uint16;
1014    guint16 valZero =0;
1015    void *voidArea;
1016    std::vector<std::string> tokens;
1017    
1018    // TODO : function CheckHeaderCoherence to be written
1019    
1020    //  uses now listEntries to iterate, not TagHt!
1021    //
1022    //        pb : gdcmParser.Add does NOT update listEntries
1023    //       TODO : find a trick (in STL?) to do it, at low cost !
1024
1025    void *ptr;
1026       
1027    // TODO (?) tester les echecs en ecriture (apres chaque fwrite)
1028    int compte =0;
1029    
1030    for (ListTag::iterator tag2=listEntries.begin();
1031         tag2 != listEntries.end();
1032         ++tag2)
1033    {
1034       gr =  (*tag2)->GetGroup();
1035       el =  (*tag2)->GetElement();
1036       lgr = (*tag2)->GetReadLength();
1037       val = (*tag2)->GetValue().c_str();
1038       vr =  (*tag2)->GetVR();
1039       voidArea = (*tag2)->GetVoidArea();
1040       
1041       if ( type == ACR ) 
1042       { 
1043          if (gr < 0x0008)   continue; // ignore pure DICOM V3 groups
1044          if (gr %2)         continue; // ignore shadow groups
1045          if (vr == "SQ" )   continue; // ignore Sequences
1046                    // TODO : find a trick to *skip* the SeQuences !
1047                    // Not only ignore the SQ element
1048          if (gr == 0xfffe ) continue; // ignore delimiters
1049       } 
1050
1051       fwrite ( &gr,(size_t)2 ,(size_t)1 ,_fp);  //group
1052       fwrite ( &el,(size_t)2 ,(size_t)1 ,_fp);  //element
1053       
1054       // === Deal with the length
1055       //     --------------------
1056       
1057       // if ( (type == ExplicitVR) && (gr <= 0x0002) ) // ?!?  < 2  
1058       if ( (type == ExplicitVR) || (type == DICOMDIR) )      
1059       {
1060          // EXPLICIT VR
1061          guint16 z=0, shortLgr;
1062          if (vr == "unkn") { // Unknown was 'written'    
1063             shortLgr=lgr;
1064             fwrite ( &shortLgr,(size_t)2 ,(size_t)1 ,_fp);
1065             fwrite ( &z,  (size_t)2 ,(size_t)1 ,_fp);
1066          } else {        
1067             if (gr != 0xfffe) { // NO value for 'delimiters'
1068               if (vr == "unkn") // Unknown was 'written'
1069                  fwrite(&z,(size_t)2 ,(size_t)1 ,_fp);
1070               else       
1071                  fwrite (vr.c_str(),(size_t)2 ,(size_t)1 ,_fp);
1072             }
1073          
1074             if ( (vr == "OB") || (vr == "OW") || (vr == "SQ") || gr == 0xfffe)
1075             {
1076                if (gr != 0xfffe)
1077                   fwrite ( &z,  (size_t)2 ,(size_t)1 ,_fp);
1078                fwrite ( &lgr,(size_t)4 ,(size_t)1 ,_fp);
1079             } 
1080             else 
1081             {
1082                shortLgr=lgr;
1083                fwrite ( &shortLgr,(size_t)2 ,(size_t)1 ,_fp);
1084             }
1085          }
1086       } 
1087       else // IMPLICIT VR 
1088       { 
1089          fwrite ( &lgr,(size_t)4 ,(size_t)1 ,_fp);
1090       }
1091       
1092       // === Deal with the value
1093       //     -------------------
1094       if (vr == "SQ")  continue; // no "value" to write for the SEQuences
1095       if (gr == 0xfffe)continue;
1096       
1097       if (voidArea != NULL) { // there is a 'non string' LUT, overlay, etc
1098          fwrite ( voidArea,(size_t)lgr ,(size_t)1 ,_fp); // Elem value
1099          continue;            
1100       }
1101       
1102       if (vr == "US" || vr == "SS") 
1103       {
1104          tokens.erase(tokens.begin(),tokens.end()); // clean any previous value
1105          Tokenize ((*tag2)->GetValue(), tokens, "\\");
1106          for (unsigned int i=0; i<tokens.size();i++) 
1107          {
1108             val_uint16 = atoi(tokens[i].c_str());
1109             ptr = &val_uint16;
1110             fwrite ( ptr,(size_t)2 ,(size_t)1 ,_fp);
1111          }
1112          tokens.clear();
1113          continue;
1114       }
1115       if (vr == "UL" || vr == "SL") 
1116       {
1117          tokens.erase(tokens.begin(),tokens.end()); // clean any previous value
1118          Tokenize ((*tag2)->GetValue(), tokens, "\\");
1119          for (unsigned int i=0; i<tokens.size();i++) 
1120          {
1121             val_uint32 = atoi(tokens[i].c_str());
1122             ptr = &val_uint32;
1123             fwrite ( ptr,(size_t)4 ,(size_t)1 ,_fp);
1124          }
1125          tokens.clear();
1126          continue;
1127       } 
1128           
1129       // Pixels are never loaded in the element !
1130       // we stop writting when Pixel are processed
1131       // FIX : we loose trailing elements (RAB, right now)           
1132             
1133       if ((gr == GrPixel) && (el == NumPixel) ) {
1134          compte++;
1135          if (compte == countGrPixel) // we passed *all* the GrPixel,NumPixel   
1136             break;
1137       }       
1138       fwrite ( val,(size_t)lgr ,(size_t)1 ,_fp); // Elem value
1139    }
1140 }
1141
1142 /**
1143  * \ingroup gdcmParser
1144  * \brief   Swaps back the bytes of 4-byte long integer accordingly to
1145  *          processor order.
1146  * @return  The properly swaped 32 bits integer.
1147  */
1148 guint32 gdcmParser::SwapLong(guint32 a) {
1149    switch (sw) {
1150       case    0 :
1151          break;
1152       case 4321 :
1153          a=( ((a<<24) & 0xff000000) | ((a<<8)  & 0x00ff0000) | 
1154              ((a>>8)  & 0x0000ff00) | ((a>>24) & 0x000000ff) );
1155          break;
1156    
1157       case 3412 :
1158          a=( ((a<<16) & 0xffff0000) | ((a>>16) & 0x0000ffff) );
1159          break;
1160    
1161       case 2143 :
1162          a=( ((a<<8) & 0xff00ff00) | ((a>>8) & 0x00ff00ff)  );
1163          break;
1164       default :
1165          dbg.Error(" gdcmParser::SwapLong : unset swap code");
1166          a=0;
1167    }
1168    return(a);
1169 }
1170
1171 /**
1172  * \ingroup gdcmParser
1173  * \brief   Unswaps back the bytes of 4-byte long integer accordingly to
1174  *          processor order.
1175  * @return  The properly unswaped 32 bits integer.
1176  */
1177 guint32 gdcmParser::UnswapLong(guint32 a) {
1178    return (SwapLong(a));
1179 }
1180
1181 /**
1182  * \ingroup gdcmParser
1183  * \brief   Swaps the bytes so they agree with the processor order
1184  * @return  The properly swaped 16 bits integer.
1185  */
1186 guint16 gdcmParser::SwapShort(guint16 a) {
1187    if ( (sw==4321)  || (sw==2143) )
1188       a =(((a<<8) & 0x0ff00) | ((a>>8)&0x00ff));
1189    return (a);
1190 }
1191
1192 /**
1193  * \ingroup gdcmParser
1194  * \brief   Unswaps the bytes so they agree with the processor order
1195  * @return  The properly unswaped 16 bits integer.
1196  */
1197 guint16 gdcmParser::UnswapShort(guint16 a) {
1198    return (SwapShort(a));
1199 }
1200
1201 //-----------------------------------------------------------------------------
1202 // Private
1203 /**
1204  * \ingroup gdcmParser
1205  * \brief   Parses the header of the file but WITHOUT loading element values.
1206  * @return  false if file is not ACR-NEMA / DICOM
1207  */
1208 bool gdcmParser::ParseHeader(bool exception_on_error) throw(gdcmFormatError) {
1209    
1210    rewind(fp);
1211    if (!CheckSwap())
1212       return false;
1213       
1214    gdcmHeaderEntry *newHeaderEntry = (gdcmHeaderEntry *)0;   
1215    while ( (newHeaderEntry = ReadNextHeaderEntry()) ) {
1216      SkipHeaderEntry(newHeaderEntry);
1217      if ( (ignoreShadow==0) || (newHeaderEntry->GetGroup()%2) == 0) { 
1218         AddHeaderEntry(newHeaderEntry); 
1219      }       
1220    }
1221    return true;
1222 }
1223
1224 /**
1225  * \ingroup gdcmParser
1226  * \brief   Loads the element values of all the Header Entries pointed in the
1227  *          public Chained List.
1228  */
1229 void gdcmParser::LoadHeaderEntries(void) {
1230    rewind(fp);
1231    for (ListTag::iterator i = GetListEntry().begin();
1232       i != GetListEntry().end();
1233       ++i)
1234    {
1235       LoadHeaderEntry(*i);
1236    }
1237             
1238    rewind(fp);
1239
1240    // Load 'non string' values   
1241    std::string PhotometricInterpretation = GetEntryByNumber(0x0028,0x0004);   
1242    if( PhotometricInterpretation == "PALETTE COLOR " ) {
1243       LoadEntryVoidArea(0x0028,0x1200);  // gray LUT   
1244       LoadEntryVoidArea(0x0028,0x1201);  // R    LUT
1245       LoadEntryVoidArea(0x0028,0x1202);  // G    LUT
1246       LoadEntryVoidArea(0x0028,0x1203);  // B    LUT
1247       
1248       LoadEntryVoidArea(0x0028,0x1221);  // Segmented Red   Palette Color LUT Data
1249       LoadEntryVoidArea(0x0028,0x1222);  // Segmented Green Palette Color LUT Data
1250       LoadEntryVoidArea(0x0028,0x1223);  // Segmented Blue  Palette Color LUT Data
1251    } 
1252    //FIXME : how to use it?
1253    LoadEntryVoidArea(0x0028,0x3006);  //LUT Data (CTX dependent)     
1254    
1255    // --------------------------------------------------------------
1256    // Special Patch to allow gdcm to read ACR-LibIDO formated images
1257    //
1258    // if recognition code tells us we deal with a LibIDO image
1259    // we switch lineNumber and columnNumber
1260    //
1261    std::string RecCode; 
1262    RecCode = GetEntryByNumber(0x0008, 0x0010); // recognition code
1263    if (RecCode == "ACRNEMA_LIBIDO_1.1" ||
1264        RecCode == "CANRME_AILIBOD1_1." ) 
1265    {
1266          filetype = ACR_LIBIDO; 
1267          std::string rows    = GetEntryByNumber(0x0028, 0x0010);
1268          std::string columns = GetEntryByNumber(0x0028, 0x0011);
1269          SetEntryByNumber(columns, 0x0028, 0x0010);
1270          SetEntryByNumber(rows   , 0x0028, 0x0011);
1271    }
1272    // ----------------- End of Special Patch ----------------
1273 }
1274
1275 /**
1276  * \ingroup       gdcmParser
1277  * \brief         Loads the element content if its length doesn't exceed
1278  *                the value specified with gdcmParser::SetMaxSizeLoadEntry()
1279  * @param         Entry Header Entry (Dicom Element) to be dealt with
1280  */
1281 void gdcmParser::LoadHeaderEntry(gdcmHeaderEntry *Entry)  {
1282    size_t item_read;
1283    guint16 group  = Entry->GetGroup();
1284    std::string  vr= Entry->GetVR();
1285    guint32 length = Entry->GetLength();
1286    bool SkipLoad  = false;
1287
1288    fseek(fp, (long)Entry->GetOffset(), SEEK_SET);
1289    
1290    // the test was commented out to 'go inside' the SeQuences
1291    // we don't any longer skip them !
1292     
1293    // if( vr == "SQ" )  //  (DO NOT remove this comment)
1294    //    SkipLoad = true;
1295
1296    // A SeQuence "contains" a set of Elements.  
1297    //          (fffe e000) tells us an Element is beginning
1298    //          (fffe e00d) tells us an Element just ended
1299    //          (fffe e0dd) tells us the current SeQuence just ended
1300    if( group == 0xfffe )
1301       SkipLoad = true;
1302
1303    if ( SkipLoad ) {
1304       Entry->SetLength(0);
1305       Entry->SetValue("gdcm::Skipped");
1306       return;
1307    }
1308
1309    // When the length is zero things are easy:
1310    if ( length == 0 ) {
1311       Entry->SetValue("");
1312       return;
1313    }
1314
1315    // The elements whose length is bigger than the specified upper bound
1316    // are not loaded. Instead we leave a short notice of the offset of
1317    // the element content and it's length.
1318    if (length > MaxSizeLoadEntry) {
1319       std::ostringstream s;
1320       s << "gdcm::NotLoaded.";
1321       s << " Address:" << (long)Entry->GetOffset();
1322       s << " Length:"  << Entry->GetLength();
1323       s << " x(" << std::hex << Entry->GetLength() << ")";
1324       Entry->SetValue(s.str());
1325       return;
1326    }
1327    
1328    // When integer(s) are expected, read and convert the following 
1329    // n *(two or four bytes)
1330    // properly i.e. as integers as opposed to strings.  
1331    // Elements with Value Multiplicity > 1
1332    // contain a set of integers (not a single one) 
1333         
1334    // Any compacter code suggested (?)
1335    if ( IsHeaderEntryAnInteger(Entry) ) {   
1336       guint32 NewInt;
1337       std::ostringstream s;
1338       int nbInt;
1339       if (vr == "US" || vr == "SS") {
1340          nbInt = length / 2;
1341          NewInt = ReadInt16();
1342          s << NewInt;
1343          if (nbInt > 1){
1344             for (int i=1; i < nbInt; i++) {
1345                s << '\\';
1346                NewInt = ReadInt16();
1347                s << NewInt;
1348             }
1349          }                      
1350       }
1351       else if (vr == "UL" || vr == "SL") {
1352          nbInt = length / 4;
1353          NewInt = ReadInt32();
1354          s << NewInt;
1355          if (nbInt > 1) {
1356             for (int i=1; i < nbInt; i++) {
1357                s << '\\';
1358                NewInt = ReadInt32();
1359                s << NewInt;
1360             }
1361          }
1362       }
1363 #ifdef GDCM_NO_ANSI_STRING_STREAM
1364       s << std::ends; // to avoid oddities on Solaris
1365 #endif //GDCM_NO_ANSI_STRING_STREAM
1366
1367       Entry->SetValue(s.str());
1368       return;   
1369    }
1370    
1371    // We need an additional byte for storing \0 that is not on disk
1372    std::string NewValue(length,0);
1373    item_read = fread(&(NewValue[0]), (size_t)length, (size_t)1, fp);
1374    if ( item_read != 1 ) {
1375       dbg.Verbose(1, "gdcmParser::LoadElementValue","unread element value");
1376       Entry->SetValue("gdcm::UnRead");
1377       return;
1378    }
1379
1380    if( (vr == "UI") ) // Because of correspondance with the VR dic
1381       Entry->SetValue(NewValue.c_str()); // ??? JPR ???
1382    else
1383       Entry->SetValue(NewValue);
1384 }
1385
1386 /**
1387  * \ingroup gdcmParser
1388  * \brief   add a new Dicom Element pointer to 
1389  *          the H Table and to the chained List
1390  * \warning push_bash in listEntries ONLY during ParseHeader
1391  * \TODO    something to allow further Elements addition,
1392  * \        when position to be taken care of     
1393  * @param   newHeaderEntry
1394  */
1395 void gdcmParser::AddHeaderEntry(gdcmHeaderEntry *newHeaderEntry) {
1396    tagHT.insert( PairHT( newHeaderEntry->GetKey(),newHeaderEntry) );
1397    listEntries.push_back(newHeaderEntry); 
1398    wasUpdated = 1;
1399 }
1400
1401 /**
1402  * \ingroup gdcmParser
1403  * \brief   
1404  * @param   Entry Header Entry whose length of the value shall be loaded. 
1405
1406  * @return 
1407  */
1408  void gdcmParser::FindHeaderEntryLength (gdcmHeaderEntry *Entry) {
1409    guint16 element = Entry->GetElement();
1410    guint16 group   = Entry->GetGroup();
1411    std::string  vr = Entry->GetVR();
1412    guint16 length16;
1413    if( (element == NumPixel) && (group == GrPixel) ) 
1414    {
1415       dbg.SetDebug(-1);
1416       dbg.Verbose(2, "gdcmParser::FindLength: ",
1417                      "we reached (GrPixel,NumPixel)");
1418    }   
1419    
1420    if ( (filetype == ExplicitVR) && (! Entry->IsImplicitVR()) ) 
1421    {
1422       if ( (vr=="OB") || (vr=="OW") || (vr=="SQ") || (vr=="UN") ) 
1423       {
1424          // The following reserved two bytes (see PS 3.5-2001, section
1425          // 7.1.2 Data element structure with explicit vr p27) must be
1426          // skipped before proceeding on reading the length on 4 bytes.
1427          fseek(fp, 2L, SEEK_CUR);
1428          guint32 length32 = ReadInt32();
1429
1430          if ( (vr == "OB") && (length32 == 0xffffffff) ) 
1431          {
1432             Entry->SetLength(FindHeaderEntryLengthOB());
1433             return;
1434          }
1435          FixHeaderEntryFoundLength(Entry, length32); 
1436          return;
1437       }
1438
1439       // Length is encoded on 2 bytes.
1440       length16 = ReadInt16();
1441       
1442       // We can tell the current file is encoded in big endian (like
1443       // Data/US-RGB-8-epicard) when we find the "Transfer Syntax" tag
1444       // and it's value is the one of the encoding of a big endian file.
1445       // In order to deal with such big endian encoded files, we have
1446       // (at least) two strategies:
1447       // * when we load the "Transfer Syntax" tag with value of big endian
1448       //   encoding, we raise the proper flags. Then we wait for the end
1449       //   of the META group (0x0002) among which is "Transfer Syntax",
1450       //   before switching the swap code to big endian. We have to postpone
1451       //   the switching of the swap code since the META group is fully encoded
1452       //   in little endian, and big endian coding only starts at the next
1453       //   group. The corresponding code can be hard to analyse and adds
1454       //   many additional unnecessary tests for regular tags.
1455       // * the second strategy consists in waiting for trouble, that shall
1456       //   appear when we find the first group with big endian encoding. This
1457       //   is easy to detect since the length of a "Group Length" tag (the
1458       //   ones with zero as element number) has to be of 4 (0x0004). When we
1459       //   encounter 1024 (0x0400) chances are the encoding changed and we
1460       //   found a group with big endian encoding.
1461       // We shall use this second strategy. In order to make sure that we
1462       // can interpret the presence of an apparently big endian encoded
1463       // length of a "Group Length" without committing a big mistake, we
1464       // add an additional check: we look in the already parsed elements
1465       // for the presence of a "Transfer Syntax" whose value has to be "big
1466       // endian encoding". When this is the case, chances are we have got our
1467       // hands on a big endian encoded file: we switch the swap code to
1468       // big endian and proceed...
1469       if ( (element  == 0x0000) && (length16 == 0x0400) ) 
1470       {
1471          if ( ! IsExplicitVRBigEndianTransferSyntax() ) 
1472          {
1473             dbg.Verbose(0, "gdcmParser::FindLength", "not explicit VR");
1474             errno = 1;
1475             return;
1476          }
1477          length16 = 4;
1478          SwitchSwapToBigEndian();
1479          // Restore the unproperly loaded values i.e. the group, the element
1480          // and the dictionary entry depending on them.
1481          guint16 CorrectGroup   = SwapShort(Entry->GetGroup());
1482          guint16 CorrectElem    = SwapShort(Entry->GetElement());
1483          gdcmDictEntry * NewTag = GetDictEntryByNumber(CorrectGroup,
1484                                                        CorrectElem);
1485          if (!NewTag) 
1486          {
1487             // This correct tag is not in the dictionary. Create a new one.
1488             NewTag = NewVirtualDictEntry(CorrectGroup, CorrectElem);
1489          }
1490          // FIXME this can create a memory leaks on the old entry that be
1491          // left unreferenced.
1492          Entry->SetDictEntry(NewTag);
1493       }
1494        
1495       // Heuristic: well some files are really ill-formed.
1496       if ( length16 == 0xffff) 
1497       {
1498          length16 = 0;
1499          //dbg.Verbose(0, "gdcmParser::FindLength",
1500          //            "Erroneous element length fixed.");
1501          // Actually, length= 0xffff means that we deal with
1502          // Unknown Sequence Length 
1503       }
1504
1505       FixHeaderEntryFoundLength(Entry, (guint32)length16);
1506       return;
1507    }
1508    else
1509    {
1510       // Either implicit VR or a non DICOM conformal (see not below) explicit
1511       // VR that ommited the VR of (at least) this element. Farts happen.
1512       // [Note: according to the part 5, PS 3.5-2001, section 7.1 p25
1513       // on Data elements "Implicit and Explicit VR Data Elements shall
1514       // not coexist in a Data Set and Data Sets nested within it".]
1515       // Length is on 4 bytes.
1516       FixHeaderEntryFoundLength(Entry, ReadInt32());
1517       return;
1518    }
1519 }
1520
1521 /**
1522  * \ingroup   gdcmParser
1523  * \brief     Find the Value Representation of the current Dicom Element.
1524  * @param     Entry
1525  */
1526 void gdcmParser::FindHeaderEntryVR( gdcmHeaderEntry *Entry) 
1527 {
1528    if (filetype != ExplicitVR)
1529       return;
1530
1531    char VR[3];
1532
1533    long PositionOnEntry = ftell(fp);
1534    // Warning: we believe this is explicit VR (Value Representation) because
1535    // we used a heuristic that found "UL" in the first tag. Alas this
1536    // doesn't guarantee that all the tags will be in explicit VR. In some
1537    // cases (see e-film filtered files) one finds implicit VR tags mixed
1538    // within an explicit VR file. Hence we make sure the present tag
1539    // is in explicit VR and try to fix things if it happens not to be
1540    // the case.
1541    
1542    int lgrLue=fread (&VR, (size_t)2,(size_t)1, fp); // lgrLue not used
1543    VR[2]=0;
1544    if(!CheckHeaderEntryVR(Entry,VR))
1545    {
1546       fseek(fp, PositionOnEntry, SEEK_SET);
1547       // When this element is known in the dictionary we shall use, e.g. for
1548       // the semantics (see the usage of IsAnInteger), the VR proposed by the
1549       // dictionary entry. Still we have to flag the element as implicit since
1550       // we know now our assumption on expliciteness is not furfilled.
1551       // avoid  .
1552       if ( Entry->IsVRUnknown() )
1553          Entry->SetVR("Implicit");
1554       Entry->SetImplicitVR();
1555    }
1556 }
1557
1558 /**
1559  * \ingroup   gdcmParser
1560  * \brief     Check the correspondance between the VR of the header entry
1561  *            and the taken VR. If they are different, the header entry is 
1562  *            updated with the new VR.
1563  * @param     Entry
1564  * @param     vr
1565  * @return    false if the VR is incorrect of if the VR isn't referenced
1566  *            otherwise, it returns true
1567 */
1568 bool gdcmParser::CheckHeaderEntryVR(gdcmHeaderEntry *Entry, VRKey vr)
1569 {
1570    char msg[100]; // for sprintf
1571    bool RealExplicit = true;
1572
1573    // Assume we are reading a falsely explicit VR file i.e. we reached
1574    // a tag where we expect reading a VR but are in fact we read the
1575    // first to bytes of the length. Then we will interogate (through find)
1576    // the dicom_vr dictionary with oddities like "\004\0" which crashes
1577    // both GCC and VC++ implementations of the STL map. Hence when the
1578    // expected VR read happens to be non-ascii characters we consider
1579    // we hit falsely explicit VR tag.
1580
1581    if ( (!isalpha(vr[0])) && (!isalpha(vr[1])) )
1582       RealExplicit = false;
1583
1584    // CLEANME searching the dicom_vr at each occurence is expensive.
1585    // PostPone this test in an optional integrity check at the end
1586    // of parsing or only in debug mode.
1587    if ( RealExplicit && !gdcmGlobal::GetVR()->Count(vr) )
1588       RealExplicit= false;
1589
1590    if ( !RealExplicit ) 
1591    {
1592       // We thought this was explicit VR, but we end up with an
1593       // implicit VR tag. Let's backtrack.   
1594       sprintf(msg,"Falsely explicit vr file (%04x,%04x)\n", 
1595                    Entry->GetGroup(),Entry->GetElement());
1596       dbg.Verbose(1, "gdcmParser::FindVR: ",msg);
1597       if (Entry->GetGroup()%2 && Entry->GetElement() == 0x0000) { // Group length is UL !
1598          gdcmDictEntry* NewEntry = NewVirtualDictEntry(
1599                                    Entry->GetGroup(),Entry->GetElement(),
1600                                    "UL","FIXME","Group Length");
1601          Entry->SetDictEntry(NewEntry);                                                                       
1602       }
1603       return(false);
1604    }
1605
1606    if ( Entry->IsVRUnknown() ) 
1607    {
1608       // When not a dictionary entry, we can safely overwrite the VR.
1609       if (Entry->GetElement() == 0x0000) { // Group length is UL !
1610          Entry->SetVR("UL");
1611       } else {
1612          Entry->SetVR(vr);
1613       }
1614    }
1615    else if ( Entry->GetVR() != vr ) 
1616    {
1617       // The VR present in the file and the dictionary disagree. We assume
1618       // the file writer knew best and use the VR of the file. Since it would
1619       // be unwise to overwrite the VR of a dictionary (since it would
1620       // compromise it's next user), we need to clone the actual DictEntry
1621       // and change the VR for the read one.
1622       gdcmDictEntry* NewEntry = NewVirtualDictEntry(
1623                                  Entry->GetGroup(),Entry->GetElement(),
1624                                  vr,"FIXME",Entry->GetName());
1625       Entry->SetDictEntry(NewEntry);
1626    }
1627    return(true); 
1628 }
1629
1630 /**
1631  * \ingroup gdcmParser
1632  * \brief   Get the transformed value of the header entry. The VR value 
1633  *          is used to define the transformation to operate on the value
1634  * \warning NOT end user intended method !
1635  * @param   Entry 
1636  * @return  Transformed entry value
1637  */
1638 std::string gdcmParser::GetHeaderEntryValue(gdcmHeaderEntry *Entry)
1639 {
1640    if ( (IsHeaderEntryAnInteger(Entry)) && (Entry->IsImplicitVR()) )
1641    {
1642       std::string val=Entry->GetValue();
1643       std::string vr=Entry->GetVR();
1644       guint32 length = Entry->GetLength();
1645       std::ostringstream s;
1646       int nbInt;
1647
1648       if (vr == "US" || vr == "SS")
1649       {
1650          guint16 NewInt16;
1651
1652          nbInt = length / 2;
1653          for (int i=0; i < nbInt; i++) 
1654          {
1655             if(i!=0)
1656                s << '\\';
1657             NewInt16 = (val[2*i+0]&0xFF)+((val[2*i+1]&0xFF)<<8);
1658             NewInt16 = SwapShort(NewInt16);
1659             s << NewInt16;
1660          }
1661       }
1662
1663       else if (vr == "UL" || vr == "SL")
1664       {
1665          guint32 NewInt32;
1666
1667          nbInt = length / 4;
1668          for (int i=0; i < nbInt; i++) 
1669          {
1670             if(i!=0)
1671                s << '\\';
1672             NewInt32= (val[4*i+0]&0xFF)+((val[4*i+1]&0xFF)<<8)+
1673                      ((val[4*i+2]&0xFF)<<16)+((val[4*i+3]&0xFF)<<24);
1674             NewInt32=SwapLong(NewInt32);
1675             s << NewInt32;
1676          }
1677       }
1678 #ifdef GDCM_NO_ANSI_STRING_STREAM
1679       s << std::ends; // to avoid oddities on Solaris
1680 #endif //GDCM_NO_ANSI_STRING_STREAM
1681       return(s.str());
1682    }
1683
1684    return(Entry->GetValue());
1685 }
1686
1687 /**
1688  * \ingroup gdcmParser
1689  * \brief   Get the reverse transformed value of the header entry. The VR 
1690  *          value is used to define the reverse transformation to operate on
1691  *          the value
1692  * \warning NOT end user intended method !
1693  * @param   Entry 
1694  * @return  Reverse transformed entry value
1695  */
1696 std::string gdcmParser::GetHeaderEntryUnvalue(gdcmHeaderEntry *Entry)
1697 {
1698    if ( (IsHeaderEntryAnInteger(Entry)) && (Entry->IsImplicitVR()) )
1699    {
1700       std::string vr=Entry->GetVR();
1701       std::ostringstream s;
1702       std::vector<std::string> tokens;
1703
1704       if (vr == "US" || vr == "SS") 
1705       {
1706          guint16 NewInt16;
1707
1708          tokens.erase(tokens.begin(),tokens.end()); // clean any previous value
1709          Tokenize (Entry->GetValue(), tokens, "\\");
1710          for (unsigned int i=0; i<tokens.size();i++) 
1711          {
1712             NewInt16 = atoi(tokens[i].c_str());
1713             s<<(NewInt16&0xFF)<<((NewInt16>>8)&0xFF);
1714          }
1715          tokens.clear();
1716       }
1717       if (vr == "UL" || vr == "SL") 
1718       {
1719          guint32 NewInt32;
1720
1721          tokens.erase(tokens.begin(),tokens.end()); // clean any previous value
1722          Tokenize (Entry->GetValue(), tokens, "\\");
1723          for (unsigned int i=0; i<tokens.size();i++) 
1724          {
1725             NewInt32 = atoi(tokens[i].c_str());
1726             s<<(char)(NewInt32&0xFF)<<(char)((NewInt32>>8)&0xFF)
1727                <<(char)((NewInt32>>16)&0xFF)<<(char)((NewInt32>>24)&0xFF);
1728          }
1729          tokens.clear();
1730       }
1731
1732 #ifdef GDCM_NO_ANSI_STRING_STREAM
1733       s << std::ends; // to avoid oddities on Solaris
1734 #endif //GDCM_NO_ANSI_STRING_STREAM
1735       return(s.str());
1736    }
1737
1738    return(Entry->GetValue());
1739 }
1740
1741 /**
1742  * \ingroup gdcmParser
1743  * \brief   Skip a given Header Entry 
1744  * \warning NOT end user intended method !
1745  * @param   entry 
1746  */
1747 void gdcmParser::SkipHeaderEntry(gdcmHeaderEntry *entry) 
1748 {
1749     SkipBytes(entry->GetLength());
1750 }
1751
1752 /**
1753  * \ingroup gdcmParser
1754  * \brief   When the length of an element value is obviously wrong (because
1755  *          the parser went Jabberwocky) one can hope improving things by
1756  *          applying this heuristic.
1757  */
1758 void gdcmParser::FixHeaderEntryFoundLength(gdcmHeaderEntry *Entry, guint32 FoundLength) 
1759 {
1760    Entry->SetReadLength(FoundLength); // will be updated only if a bug is found
1761                      
1762    if ( FoundLength == 0xffffffff) {
1763       FoundLength = 0;
1764    }
1765    
1766    guint16 gr =Entry->GetGroup();
1767    guint16 el =Entry->GetElement(); 
1768      
1769    if (FoundLength%2) {
1770       std::cout << "Warning : Tag with uneven length " << FoundLength 
1771          <<  " in x(" << std::hex << gr << "," << el <<")" << std::dec << std::endl;
1772    }
1773       
1774    // Sorry for the patch!  
1775    // XMedCom did the trick to read some nasty GE images ...
1776    if (FoundLength == 13) {
1777       // The following 'if' will be removed when there is no more
1778       // images on Creatis HDs with a 13 length for Manufacturer...
1779       if ( (Entry->GetGroup() != 0x0008) ||  
1780            ( (Entry->GetElement() != 0x0070) && (Entry->GetElement() != 0x0080) ) ){
1781       // end of remove area
1782          FoundLength =10;
1783          Entry->SetReadLength(10); // a bug is to be fixed
1784       }
1785    }
1786
1787    // to fix some garbage 'Leonardo' Siemens images
1788    // May be commented out to avoid overhead
1789    else if ( (Entry->GetGroup() == 0x0009) &&
1790        ( (Entry->GetElement() == 0x1113) || (Entry->GetElement() == 0x1114) ) ){
1791       FoundLength =4;
1792       Entry->SetReadLength(4); // a bug is to be fixed 
1793    } 
1794    // end of fix
1795          
1796    // to try to 'go inside' SeQuences (with length), and not to skip them        
1797    else if ( Entry->GetVR() == "SQ") 
1798    { 
1799       if (enableSequences)    // only if the user does want to !
1800          FoundLength =0;      // ReadLength is unchanged         
1801    } 
1802     
1803    // a SeQuence Element is beginning                                          
1804    // Let's forget it's length                                                 
1805    // (we want to 'go inside')  
1806
1807    // Pb : *normaly*  fffe|e000 is just a marker, its length *should be* zero
1808    // in gdcm-MR-PHILIPS-16-Multi-Seq.dcm we find lengthes as big as 28800
1809    // if we set the length to zero IsHeaderEntryAnInteger() breaks...
1810    // if we don't, we lost 28800 characters from the Header :-(
1811                                                  
1812    else if(Entry->GetGroup() == 0xfffe)
1813    { 
1814                        // sometimes, length seems to be wrong                                      
1815       FoundLength =0;  // some more clever checking to be done !
1816                        // I give up!
1817                        // only  gdcm-MR-PHILIPS-16-Multi-Seq.dcm
1818                        // causes troubles :-(                                                     
1819    }     
1820     
1821    Entry->SetUsableLength(FoundLength);
1822 }
1823
1824 /**
1825  * \ingroup gdcmParser
1826  * \brief   Apply some heuristics to predict wether the considered 
1827  *          element value contains/represents an integer or not.
1828  * @param   Entry The element value on which to apply the predicate.
1829  * @return  The result of the heuristical predicate.
1830  */
1831 bool gdcmParser::IsHeaderEntryAnInteger(gdcmHeaderEntry *Entry) {
1832    guint16 element = Entry->GetElement();
1833    guint16 group   = Entry->GetGroup();
1834    std::string  vr = Entry->GetVR();
1835    guint32 length  = Entry->GetLength();
1836    // When we have some semantics on the element we just read, and if we
1837    // a priori know we are dealing with an integer, then we shall be
1838    // able to swap it's element value properly.
1839    if ( element == 0 )  // This is the group length of the group
1840    {  
1841       if (length == 4)
1842          return true;
1843       else 
1844       {
1845          std::ostringstream s;
1846          int filePosition = ftell(fp);
1847          s << "Erroneous Group Length element length  on : (" \
1848            << std::hex << group << " , " << element 
1849            << ") -before- position x(" << filePosition << ")"
1850            << "lgt : " << length;
1851         // These 2 lines commented out : a *very dirty* patch
1852         // to go on PrintHeader'ing gdcm-MR-PHILIPS-16-Multi-Seq.dcm.
1853         // have a glance at offset  x(8336) ...
1854         // For *regular* headers, the test is useless..
1855         // lets's print a warning message and go on, 
1856         // instead of giving up with an error message
1857         
1858         //std::cout << s.str().c_str() << std::endl;
1859         
1860         // dbg.Error("gdcmParser::IsHeaderEntryAnInteger",
1861         //    s.str().c_str());     
1862       }
1863    }
1864    if ( (vr == "UL") || (vr == "US") || (vr == "SL") || (vr == "SS") )
1865       return true;
1866    
1867    return false;
1868 }
1869
1870 /**
1871  * \ingroup gdcmParser
1872  * \brief   
1873  *
1874  * @return 
1875  */
1876  guint32 gdcmParser::FindHeaderEntryLengthOB(void)  {
1877    // See PS 3.5-2001, section A.4 p. 49 on encapsulation of encoded pixel data.
1878    guint16 g;
1879    guint16 n; 
1880    long PositionOnEntry = ftell(fp);
1881    bool FoundSequenceDelimiter = false;
1882    guint32 TotalLength = 0;
1883    guint32 ItemLength;
1884
1885    while ( ! FoundSequenceDelimiter) 
1886    {
1887       g = ReadInt16();
1888       n = ReadInt16();   
1889       if (errno == 1)
1890          return 0;
1891       TotalLength += 4;  // We even have to decount the group and element 
1892      
1893       if ( g != 0xfffe && g!=0xb00c ) /*for bogus header */ 
1894       {
1895          char msg[100]; // for sprintf. Sorry
1896          sprintf(msg,"wrong group (%04x) for an item sequence (%04x,%04x)\n",g, g,n);
1897          dbg.Verbose(1, "gdcmParser::FindLengthOB: ",msg); 
1898          errno = 1;
1899          return 0;
1900       }
1901       if ( n == 0xe0dd || ( g==0xb00c && n==0x0eb6 ) ) /* for bogus header  */ 
1902          FoundSequenceDelimiter = true;
1903       else if ( n != 0xe000 )
1904       {
1905          char msg[100];  // for sprintf. Sorry
1906          sprintf(msg,"wrong element (%04x) for an item sequence (%04x,%04x)\n",
1907                       n, g,n);
1908          dbg.Verbose(1, "gdcmParser::FindLengthOB: ",msg);
1909          errno = 1;
1910          return 0;
1911       }
1912       ItemLength = ReadInt32();
1913       TotalLength += ItemLength + 4;  // We add 4 bytes since we just read
1914                                       // the ItemLength with ReadInt32                                     
1915       SkipBytes(ItemLength);
1916    }
1917    fseek(fp, PositionOnEntry, SEEK_SET);
1918    return TotalLength;
1919 }
1920
1921 /**
1922  * \ingroup gdcmParser
1923  * \brief Reads a supposed to be 16 Bits integer
1924  * \     (swaps it depending on processor endianity) 
1925  *
1926  * @return read value
1927  */
1928 guint16 gdcmParser::ReadInt16(void) {
1929    guint16 g;
1930    size_t item_read;
1931    item_read = fread (&g, (size_t)2,(size_t)1, fp);
1932    if ( item_read != 1 ) {
1933       if(ferror(fp)) 
1934          dbg.Verbose(0, "gdcmParser::ReadInt16", " File Error");
1935       errno = 1;
1936       return 0;
1937    }
1938    errno = 0;
1939    g = SwapShort(g);   
1940    return g;
1941 }
1942
1943 /**
1944  * \ingroup gdcmParser
1945  * \brief  Reads a supposed to be 32 Bits integer
1946  * \       (swaps it depending on processor endianity)  
1947  *
1948  * @return read value
1949  */
1950 guint32 gdcmParser::ReadInt32(void) {
1951    guint32 g;
1952    size_t item_read;
1953    item_read = fread (&g, (size_t)4,(size_t)1, fp);
1954    if ( item_read != 1 ) { 
1955      if(ferror(fp)) 
1956          dbg.Verbose(0, "gdcmParser::ReadInt32", " File Error");   
1957       errno = 1;
1958       return 0;
1959    }
1960    errno = 0;   
1961    g = SwapLong(g);
1962    return g;
1963 }
1964
1965 /**
1966  * \ingroup gdcmParser
1967  * \brief   
1968  *
1969  * @return 
1970  */
1971 void gdcmParser::SkipBytes(guint32 NBytes) {
1972    //FIXME don't dump the returned value
1973    (void)fseek(fp, (long)NBytes, SEEK_CUR);
1974 }
1975
1976 /**
1977  * \ingroup gdcmParser
1978  * \brief   
1979  */
1980 void gdcmParser::Initialise(void) 
1981 {
1982    RefPubDict = gdcmGlobal::GetDicts()->GetDefaultPubDict();
1983    RefShaDict = (gdcmDict*)0;
1984 }
1985
1986 /**
1987  * \ingroup gdcmParser
1988  * \brief   Discover what the swap code is (among little endian, big endian,
1989  *          bad little endian, bad big endian).
1990  *          sw is set
1991  * @return false when we are absolutely sure 
1992  *               it's neither ACR-NEMA nor DICOM
1993  *         true  when we hope ours assuptions are OK
1994  */
1995 bool gdcmParser::CheckSwap() {
1996
1997    // The only guaranted way of finding the swap code is to find a
1998    // group tag since we know it's length has to be of four bytes i.e.
1999    // 0x00000004. Finding the swap code in then straigthforward. Trouble
2000    // occurs when we can't find such group...
2001    
2002    guint32  x=4;  // x : for ntohs
2003    bool net2host; // true when HostByteOrder is the same as NetworkByteOrder
2004    guint32  s32;
2005    guint16  s16;
2006        
2007    int lgrLue;
2008    char *entCur;
2009    char deb[HEADER_LENGTH_TO_READ];
2010     
2011    // First, compare HostByteOrder and NetworkByteOrder in order to
2012    // determine if we shall need to swap bytes (i.e. the Endian type).
2013    if (x==ntohs(x))
2014       net2host = true;
2015    else
2016       net2host = false; 
2017          
2018    // The easiest case is the one of a DICOM header, since it possesses a
2019    // file preamble where it suffice to look for the string "DICM".
2020    lgrLue = fread(deb, 1, HEADER_LENGTH_TO_READ, fp);
2021    
2022    entCur = deb + 128;
2023    if(memcmp(entCur, "DICM", (size_t)4) == 0) {
2024       dbg.Verbose(1, "gdcmParser::CheckSwap:", "looks like DICOM Version3");
2025       
2026       // Next, determine the value representation (VR). Let's skip to the
2027       // first element (0002, 0000) and check there if we find "UL" 
2028       // - or "OB" if the 1st one is (0002,0001) -,
2029       // in which case we (almost) know it is explicit VR.
2030       // WARNING: if it happens to be implicit VR then what we will read
2031       // is the length of the group. If this ascii representation of this
2032       // length happens to be "UL" then we shall believe it is explicit VR.
2033       // FIXME: in order to fix the above warning, we could read the next
2034       // element value (or a couple of elements values) in order to make
2035       // sure we are not commiting a big mistake.
2036       // We need to skip :
2037       // * the 128 bytes of File Preamble (often padded with zeroes),
2038       // * the 4 bytes of "DICM" string,
2039       // * the 4 bytes of the first tag (0002, 0000),or (0002, 0001)
2040       // i.e. a total of  136 bytes.
2041       entCur = deb + 136;
2042      
2043       // FIXME : FIXME:
2044       // Sometimes (see : gdcmData/icone.dcm) group 0x0002 *is* Explicit VR,
2045       // but elem 0002,0010 (Transfert Syntax) tells us the file is *Implicit* VR.
2046       // -and it is !- 
2047       
2048       if( (memcmp(entCur, "UL", (size_t)2) == 0) ||
2049           (memcmp(entCur, "OB", (size_t)2) == 0) ||
2050           (memcmp(entCur, "UI", (size_t)2) == 0) ||       
2051           (memcmp(entCur, "CS", (size_t)2) == 0) )  // CS, to remove later
2052                                                     // when Write DCM *adds*
2053       // FIXME
2054       // Use gdcmParser::dicom_vr to test all the possibilities
2055       // instead of just checking for UL, OB and UI !?                                              // group 0000 
2056                                                      
2057       {
2058          filetype = ExplicitVR;
2059          dbg.Verbose(1, "gdcmParser::CheckSwap:",
2060                      "explicit Value Representation");
2061       } 
2062       else 
2063       {
2064          filetype = ImplicitVR;
2065          dbg.Verbose(1, "gdcmParser::CheckSwap:",
2066                      "not an explicit Value Representation");
2067       }
2068       
2069       if (net2host) 
2070       {
2071          sw = 4321;
2072          dbg.Verbose(1, "gdcmParser::CheckSwap:",
2073                         "HostByteOrder != NetworkByteOrder");
2074       } 
2075       else 
2076       {
2077          sw = 0;
2078          dbg.Verbose(1, "gdcmParser::CheckSwap:",
2079                         "HostByteOrder = NetworkByteOrder");
2080       }
2081       
2082       // Position the file position indicator at first tag (i.e.
2083       // after the file preamble and the "DICM" string).
2084       rewind(fp);
2085       fseek (fp, 132L, SEEK_SET);
2086       return true;
2087    } // End of DicomV3
2088
2089    // Alas, this is not a DicomV3 file and whatever happens there is no file
2090    // preamble. We can reset the file position indicator to where the data
2091    // is (i.e. the beginning of the file).
2092    dbg.Verbose(1, "gdcmParser::CheckSwap:", "not a DICOM Version3 file");
2093    rewind(fp);
2094
2095    // Our next best chance would be to be considering a 'clean' ACR/NEMA file.
2096    // By clean we mean that the length of the first tag is written down.
2097    // If this is the case and since the length of the first group HAS to be
2098    // four (bytes), then determining the proper swap code is straightforward.
2099
2100    entCur = deb + 4;
2101    // We assume the array of char we are considering contains the binary
2102    // representation of a 32 bits integer. Hence the following dirty
2103    // trick :
2104    s32 = *((guint32 *)(entCur));
2105       
2106    switch (s32) {
2107       case 0x00040000 :
2108          sw = 3412;
2109          filetype = ACR;
2110          return true;
2111       case 0x04000000 :
2112          sw = 4321;
2113          filetype = ACR;
2114          return true;
2115       case 0x00000400 :
2116          sw = 2143;
2117          filetype = ACR;
2118          return true;
2119       case 0x00000004 :
2120          sw = 0;
2121          filetype = ACR;
2122          return true;
2123       default :
2124          
2125       // We are out of luck. It is not a DicomV3 nor a 'clean' ACR/NEMA file.
2126       // It is time for despaired wild guesses. 
2127       // So, let's check if this file wouldn't happen to be 'dirty' ACR/NEMA,
2128       //  i.e. the 'group length' element is not present :     
2129       
2130       //  check the supposed to be 'group number'
2131       //  0x0002 or 0x0004 or 0x0008
2132       //  to determine ' sw' value .
2133       //  Only 0 or 4321 will be possible 
2134       //  (no oportunity to check for the formerly well known
2135       //  ACR-NEMA 'Bad Big Endian' or 'Bad Little Endian' 
2136       //  if unsuccessfull (i.e. neither 0x0002 nor 0x0200 etc -4, 8-) 
2137       //  the file IS NOT ACR-NEMA nor DICOM V3
2138       //  Find a trick to tell it the caller...
2139       
2140       s16 = *((guint16 *)(deb));
2141       
2142       switch (s16) {
2143       case 0x0002 :
2144       case 0x0004 :
2145       case 0x0008 :      
2146          sw = 0;
2147          filetype = ACR;
2148          return true;
2149       case 0x0200 :
2150       case 0x0400 :
2151       case 0x0800 : 
2152          sw = 4321;
2153          filetype = ACR;
2154          return true;
2155       default :
2156          dbg.Verbose(0, "gdcmParser::CheckSwap:",
2157                      "ACR/NEMA unfound swap info (Really hopeless !)"); 
2158          filetype = Unknown;     
2159          return false;
2160       }
2161          
2162       // Then the only info we have is the net2host one.         
2163          //if (! net2host )
2164          //   sw = 0;
2165          //else
2166          //  sw = 4321;
2167          //return;                      
2168    }
2169 }
2170
2171 /**
2172  * \ingroup gdcmParser
2173  * \brief   
2174  */
2175 void gdcmParser::SwitchSwapToBigEndian(void) 
2176 {
2177    dbg.Verbose(1, "gdcmParser::SwitchSwapToBigEndian",
2178                   "Switching to BigEndian mode.");
2179    if ( sw == 0    ) 
2180    {
2181       sw = 4321;
2182       return;
2183    }
2184    if ( sw == 4321 ) 
2185    {
2186       sw = 0;
2187       return;
2188    }
2189    if ( sw == 3412 ) 
2190    {
2191       sw = 2143;
2192       return;
2193    }
2194    if ( sw == 2143 )
2195       sw = 3412;
2196 }
2197
2198 /**
2199  * \ingroup gdcmParser
2200  * \brief   
2201  * @param NewSize
2202  */
2203 void gdcmParser::SetMaxSizeLoadEntry(long NewSize) 
2204 {
2205    if (NewSize < 0)
2206       return;
2207    if ((guint32)NewSize >= (guint32)0xffffffff) 
2208    {
2209       MaxSizeLoadEntry = 0xffffffff;
2210       return;
2211    }
2212    MaxSizeLoadEntry = NewSize;
2213 }
2214
2215
2216 /**
2217  * \ingroup gdcmParser
2218  * \brief
2219  * \warning TODO : not yet usable 
2220  *          (see MAX_SIZE_PRINT_ELEMENT_VALUE 
2221  *           in gdcmHeaderEntry gdcmLoadEntry)
2222  *             
2223  * @param NewSize
2224  */
2225 void gdcmParser::SetMaxSizePrintEntry(long NewSize) 
2226 {
2227    if (NewSize < 0)
2228       return;
2229    if ((guint32)NewSize >= (guint32)0xffffffff) 
2230    {
2231       MaxSizePrintEntry = 0xffffffff;
2232       return;
2233    }
2234    MaxSizePrintEntry = NewSize;
2235 }
2236
2237 /**
2238  * \ingroup gdcmParser
2239  * \brief   Searches both the public and the shadow dictionary (when they
2240  *          exist) for the presence of the DictEntry with given name.
2241  *          The public dictionary has precedence on the shadow one.
2242  * @param   Name name of the searched DictEntry
2243  * @return  Corresponding DictEntry when it exists, NULL otherwise.
2244  */
2245 gdcmDictEntry *gdcmParser::GetDictEntryByName(std::string Name) 
2246 {
2247    gdcmDictEntry *found = (gdcmDictEntry *)0;
2248    if (!RefPubDict && !RefShaDict) 
2249    {
2250       dbg.Verbose(0, "gdcmParser::GetDictEntry",
2251                      "we SHOULD have a default dictionary");
2252    }
2253    if (RefPubDict) 
2254    {
2255       found = RefPubDict->GetDictEntryByName(Name);
2256       if (found)
2257          return found;
2258    }
2259    if (RefShaDict) 
2260    {
2261       found = RefShaDict->GetDictEntryByName(Name);
2262       if (found)
2263          return found;
2264    }
2265    return found;
2266 }
2267
2268 /**
2269  * \ingroup gdcmParser
2270  * \brief   Searches both the public and the shadow dictionary (when they
2271  *          exist) for the presence of the DictEntry with given
2272  *          group and element. The public dictionary has precedence on the
2273  *          shadow one.
2274  * @param   group   group of the searched DictEntry
2275  * @param   element element of the searched DictEntry
2276  * @return  Corresponding DictEntry when it exists, NULL otherwise.
2277  */
2278 gdcmDictEntry *gdcmParser::GetDictEntryByNumber(guint16 group,guint16 element) 
2279 {
2280    gdcmDictEntry *found = (gdcmDictEntry *)0;
2281    if (!RefPubDict && !RefShaDict) 
2282    {
2283       dbg.Verbose(0, "gdcmParser::GetDictEntry",
2284                      "we SHOULD have a default dictionary");
2285    }
2286    if (RefPubDict) 
2287    {
2288       found = RefPubDict->GetDictEntryByNumber(group, element);
2289       if (found)
2290          return found;
2291    }
2292    if (RefShaDict) 
2293    {
2294       found = RefShaDict->GetDictEntryByNumber(group, element);
2295       if (found)
2296          return found;
2297    }
2298    return found;
2299 }
2300
2301 /**
2302  * \ingroup gdcmParser
2303  * \brief   Read the next tag but WITHOUT loading it's value
2304  * @return  On succes the newly created HeaderEntry, NULL on failure.      
2305  */
2306 gdcmHeaderEntry *gdcmParser::ReadNextHeaderEntry(void) {
2307    guint16 g,n;
2308    gdcmHeaderEntry *NewEntry;
2309    g = ReadInt16();
2310    n = ReadInt16();
2311       
2312    if (errno == 1)
2313       // We reached the EOF (or an error occured) therefore 
2314       // header parsing has to be considered as finished.
2315       return (gdcmHeaderEntry *)0;
2316
2317 /*  Pb : how to propagate the element length (used in SkipHeaderEntry)
2318 //       direct call to SkipBytes ?
2319    
2320    if (ignoreShadow == 1 && g%2 ==1)  //JPR
2321       // if user wants to skip shadow groups
2322       // and current element *is* a shadow element
2323       // we don't create anything
2324       return (gdcmHeaderEntry *)1; // to tell caller it's NOT finished
2325 */   
2326    NewEntry = NewHeaderEntryByNumber(g, n);
2327    FindHeaderEntryVR(NewEntry);
2328    FindHeaderEntryLength(NewEntry);
2329         
2330    if (errno == 1) {
2331       // Call it quits
2332       return NULL;
2333    }
2334    NewEntry->SetOffset(ftell(fp));  
2335    return NewEntry;
2336 }
2337
2338 /**
2339  * \ingroup gdcmParser
2340  * \brief   Build a new Element Value from all the low level arguments. 
2341  *          Check for existence of dictionary entry, and build
2342  *          a default one when absent.
2343  * @param   Name    Name of the underlying DictEntry
2344  */
2345 gdcmHeaderEntry *gdcmParser::NewHeaderEntryByName(std::string Name) 
2346 {
2347    gdcmDictEntry *NewTag = GetDictEntryByName(Name);
2348    if (!NewTag)
2349       NewTag = NewVirtualDictEntry(0xffff, 0xffff, "LO", "unkn", Name);
2350
2351    gdcmHeaderEntry* NewEntry = new gdcmHeaderEntry(NewTag);
2352    if (!NewEntry) 
2353    {
2354       dbg.Verbose(1, "gdcmParser::ObtainHeaderEntryByName",
2355                   "failed to allocate gdcmHeaderEntry");
2356       return (gdcmHeaderEntry *)0;
2357    }
2358    return NewEntry;
2359 }  
2360
2361 /**
2362  * \ingroup gdcmParser
2363  * \brief   Request a new virtual dict entry to the dict set
2364  * @param   group  group   of the underlying DictEntry
2365  * @param   elem   element of the underlying DictEntry
2366  * @param   vr     VR of the underlying DictEntry
2367  * @param   fourth owner group
2368  * @param   name   english name
2369  */
2370 gdcmDictEntry *gdcmParser::NewVirtualDictEntry(guint16 group, guint16 element,
2371                                                std::string vr,
2372                                                std::string fourth,
2373                                                std::string name)
2374 {
2375    return gdcmGlobal::GetDicts()->NewVirtualDictEntry(group,element,vr,fourth,name);
2376 }
2377
2378 /**
2379  * \ingroup gdcmParser
2380  * \brief   Build a new Element Value from all the low level arguments. 
2381  *          Check for existence of dictionary entry, and build
2382  *          a default one when absent.
2383  * @param   Group group   of the underlying DictEntry
2384  * @param   Elem  element of the underlying DictEntry
2385  */
2386 gdcmHeaderEntry *gdcmParser::NewHeaderEntryByNumber(guint16 Group, guint16 Elem) 
2387 {
2388    // Find out if the tag we encountered is in the dictionaries:
2389    gdcmDictEntry *DictEntry = GetDictEntryByNumber(Group, Elem);
2390    if (!DictEntry)
2391       DictEntry = NewVirtualDictEntry(Group, Elem);
2392
2393    gdcmHeaderEntry *NewEntry = new gdcmHeaderEntry(DictEntry);
2394    if (!NewEntry) 
2395    {
2396       dbg.Verbose(1, "gdcmParser::NewHeaderEntryByNumber",
2397                   "failed to allocate gdcmHeaderEntry");
2398       return NULL;
2399    }
2400    return NewEntry;
2401 }
2402
2403 // Never used; commented out, waiting for removal.
2404 /**
2405  * \ingroup gdcmParser
2406  * \brief   Small utility function that creates a new manually crafted
2407  *          (as opposed as read from the file) gdcmHeaderEntry with user
2408  *          specified name and adds it to the public tag hash table.
2409  * \note    A fake TagKey is generated so the PubDict can keep it's coherence.
2410  * @param   NewTagName The name to be given to this new tag.
2411  * @param   VR The Value Representation to be given to this new tag.
2412  * @return  The newly hand crafted Element Value.
2413  */
2414 //gdcmHeaderEntry *gdcmParser::NewManualHeaderEntryToPubDict(std::string NewTagName, 
2415 //                                                           std::string VR) 
2416 //{
2417 //   gdcmHeaderEntry *NewEntry = NULL;
2418 //   guint32 StuffGroup = 0xffff;   // Group to be stuffed with additional info
2419 //   guint32 FreeElem = 0;
2420 //   gdcmDictEntry *DictEntry = NULL;
2421 //
2422 //   FreeElem = GenerateFreeTagKeyInGroup(StuffGroup);
2423 //   if (FreeElem == UINT32_MAX) 
2424 //   {
2425 //      dbg.Verbose(1, "gdcmHeader::NewManualHeaderEntryToPubDict",
2426 //                     "Group 0xffff in Public Dict is full");
2427 //      return NULL;
2428 //   }
2429 //
2430 //   DictEntry = NewVirtualDictEntry(StuffGroup, FreeElem,
2431 //                                VR, "GDCM", NewTagName);
2432 //   NewEntry = new gdcmHeaderEntry(DictEntry);
2433 //   AddHeaderEntry(NewEntry);
2434 //   return NewEntry;
2435 //}
2436
2437 /**
2438  * \ingroup gdcmParser
2439  * \brief   Generate a free TagKey i.e. a TagKey that is not present
2440  *          in the TagHt dictionary.
2441  * @param   group The generated tag must belong to this group.  
2442  * @return  The element of tag with given group which is fee.
2443  */
2444 guint32 gdcmParser::GenerateFreeTagKeyInGroup(guint16 group) 
2445 {
2446    for (guint32 elem = 0; elem < UINT32_MAX; elem++) 
2447    {
2448       TagKey key = gdcmDictEntry::TranslateToKey(group, elem);
2449       if (tagHT.count(key) == 0)
2450          return elem;
2451    }
2452    return UINT32_MAX;
2453 }
2454
2455 //-----------------------------------------------------------------------------