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