]> Creatis software - gdcm.git/blob - src/gdcmDocument.cxx
8937fa3ea97638ab36e1d647d066bc983c8867fd
[gdcm.git] / src / gdcmDocument.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmDocument.cxx,v $
5   Language:  C++
6   Date:      $Date: 2005/01/11 00:21:48 $
7   Version:   $Revision: 1.172 $
8                                                                                 
9   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10   l'Image). All rights reserved. See Doc/License.txt or
11   http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
12                                                                                 
13      This software is distributed WITHOUT ANY WARRANTY; without even
14      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15      PURPOSE.  See the above copyright notices for more information.
16                                                                                 
17 =========================================================================*/
18
19 #include "gdcmDocument.h"
20 #include "gdcmValEntry.h"
21 #include "gdcmBinEntry.h"
22 #include "gdcmSeqEntry.h"
23 #include "gdcmGlobal.h"
24 #include "gdcmUtil.h"
25 #include "gdcmDebug.h"
26 #include "gdcmTS.h"
27 #include "gdcmException.h"
28 #include "gdcmDictSet.h"
29 #include "gdcmRLEFramesInfo.h"
30 #include "gdcmJPEGFragmentsInfo.h"
31 #include "gdcmDocEntrySet.h"
32 #include "gdcmSQItem.h"
33
34 #include <vector>
35 #include <iomanip>
36
37 // For nthos:
38 #if defined(_MSC_VER) || defined(__BORLANDC__)
39    #include <winsock.h>
40 #else
41    #include <netinet/in.h>
42 #endif
43
44 namespace gdcm 
45 {
46 //-----------------------------------------------------------------------------
47 static const char *TransferSyntaxStrings[] =  {
48   // Implicit VR Little Endian
49   "1.2.840.10008.1.2",
50   // Implicit VR Big Endian DLX (G.E Private)
51   "1.2.840.113619.5.2",
52   // Explicit VR Little Endian
53   "1.2.840.10008.1.2.1",
54   // Deflated Explicit VR Little Endian
55   "1.2.840.10008.1.2.1.99",
56   // Explicit VR Big Endian
57   "1.2.840.10008.1.2.2",
58   // JPEG Baseline (Process 1)
59   "1.2.840.10008.1.2.4.50",
60   // JPEG Extended (Process 2 & 4)
61   "1.2.840.10008.1.2.4.51",
62   // JPEG Extended (Process 3 & 5)
63   "1.2.840.10008.1.2.4.52",
64   // JPEG Spectral Selection, Non-Hierarchical (Process 6 & 8)
65   "1.2.840.10008.1.2.4.53",
66   // JPEG Full Progression, Non-Hierarchical (Process 10 & 12)
67   "1.2.840.10008.1.2.4.55",
68   // JPEG Lossless, Non-Hierarchical (Process 14)
69   "1.2.840.10008.1.2.4.57",
70   // JPEG Lossless, Hierarchical, First-Order Prediction (Process 14, [Selection Value 1])
71   "1.2.840.10008.1.2.4.70",
72   // JPEG 2000 Lossless
73   "1.2.840.10008.1.2.4.90",
74   // JPEG 2000
75   "1.2.840.10008.1.2.4.91",
76   // RLE Lossless
77   "1.2.840.10008.1.2.5",
78   // Unknown
79   "Unknown Transfer Syntax"
80 };
81
82 //-----------------------------------------------------------------------------
83 // Refer to Document::CheckSwap()
84 //const unsigned int Document::HEADER_LENGTH_TO_READ = 256;
85
86 // Refer to Document::SetMaxSizeLoadEntry()
87 const unsigned int Document::MAX_SIZE_LOAD_ELEMENT_VALUE = 0xfff; // 4096
88 const unsigned int Document::MAX_SIZE_PRINT_ELEMENT_VALUE = 0x7fffffff;
89
90 //-----------------------------------------------------------------------------
91 // Constructor / Destructor
92
93 /**
94  * \brief   constructor  
95  * @param   filename file to be opened for parsing
96  */
97 Document::Document( std::string const &filename ) : ElementSet(-1)
98 {
99    SetMaxSizeLoadEntry(MAX_SIZE_LOAD_ELEMENT_VALUE); 
100    Filename = filename;
101    Initialise();
102
103    Fp = 0;
104    if ( !OpenFile() )
105    {
106       return;
107    }
108
109    gdcmVerboseMacro( "Starting parsing of file: " << Filename.c_str());
110    Fp->seekg( 0,  std::ios::beg);
111    
112    Fp->seekg(0,  std::ios::end);
113    long lgt = Fp->tellg();
114            
115    Fp->seekg( 0,  std::ios::beg);
116    CheckSwap();
117    long beg = Fp->tellg();
118    lgt -= beg;
119    
120    ParseDES( this, beg, lgt, false); // le Load sera fait a la volee
121
122    Fp->seekg( 0,  std::ios::beg);
123    
124    // Load 'non string' values
125       
126    std::string PhotometricInterpretation = GetEntry(0x0028,0x0004);   
127    if( PhotometricInterpretation == "PALETTE COLOR " )
128    {
129       LoadEntryBinArea(0x0028,0x1200);  // gray LUT   
130       /// FIXME FIXME FIXME
131       /// The tags refered by the three following lines used to be CORRECTLY
132       /// defined as having an US Value Representation in the public
133       /// dictionnary. BUT the semantics implied by the three following
134       /// lines state that the corresponding tag contents are in fact
135       /// the ones of a BinEntry.
136       /// In order to fix things "Quick and Dirty" the dictionnary was
137       /// altered on PURPOUS but now contains a WRONG value.
138       /// In order to fix things and restore the dictionary to its
139       /// correct value, one needs to decided of the semantics by deciding
140       /// wether the following tags are either:
141       /// - multivaluated US, and hence loaded as ValEntry, but afterwards
142       ///   also used as BinEntry, which requires the proper conversion,
143       /// - OW, and hence loaded as BinEntry, but afterwards also used
144       ///   as ValEntry, which requires the proper conversion.
145       LoadEntryBinArea(0x0028,0x1201);  // R    LUT
146       LoadEntryBinArea(0x0028,0x1202);  // G    LUT
147       LoadEntryBinArea(0x0028,0x1203);  // B    LUT
148       
149       // Segmented Red   Palette Color LUT Data
150       LoadEntryBinArea(0x0028,0x1221);
151       // Segmented Green Palette Color LUT Data
152       LoadEntryBinArea(0x0028,0x1222);
153       // Segmented Blue  Palette Color LUT Data
154       LoadEntryBinArea(0x0028,0x1223);
155    } 
156    //FIXME later : how to use it?
157    LoadEntryBinArea(0x0028,0x3006);  //LUT Data (CTX dependent) 
158
159    CloseFile(); 
160   
161    // --------------------------------------------------------------
162    // Specific code to allow gdcm to read ACR-LibIDO formated images
163    // Note: ACR-LibIDO is an extension of the ACR standard that was
164    //       used at CREATIS. For the time being (say a couple years)
165    //       we keep this kludge to allow a smooth move to gdcm for
166    //       CREATIS developpers (sorry folks).
167    //
168    // if recognition code tells us we deal with a LibIDO image
169    // we switch lineNumber and columnNumber
170    //
171    std::string RecCode;
172    RecCode = GetEntry(0x0008, 0x0010); // recognition code
173    if (RecCode == "ACRNEMA_LIBIDO_1.1" ||
174        RecCode == "CANRME_AILIBOD1_1." )  // for brain-damaged softwares
175                                           // with "little-endian strings"
176    {
177          Filetype = ACR_LIBIDO; 
178          std::string rows    = GetEntry(0x0028, 0x0010);
179          std::string columns = GetEntry(0x0028, 0x0011);
180          SetEntry(columns, 0x0028, 0x0010);
181          SetEntry(rows   , 0x0028, 0x0011);
182    }
183    // ----------------- End of ACR-LibIDO kludge ------------------ 
184 }
185
186 /**
187  * \brief This default constructor doesn't parse the file. You should
188  *        then invoke \ref Document::SetFileName and then the parsing.
189  */
190 Document::Document() : ElementSet(-1)
191 {
192    Fp = 0;
193
194    SetMaxSizeLoadEntry(MAX_SIZE_LOAD_ELEMENT_VALUE);
195    Initialise();
196    SwapCode = 0;
197    Filetype = ExplicitVR;
198 }
199
200 /**
201  * \brief   Canonical destructor.
202  */
203 Document::~Document ()
204 {
205    RefPubDict = NULL;
206    RefShaDict = NULL;
207
208    delete RLEInfo;
209    delete JPEGInfo;
210 }
211
212 //-----------------------------------------------------------------------------
213 // Print
214
215 /**
216   * \brief   Prints The Dict Entries of THE public Dicom Dictionary
217   * @return
218   */  
219 void Document::PrintPubDict(std::ostream &os)
220 {
221    RefPubDict->SetPrintLevel(PrintLevel);
222    RefPubDict->Print(os);
223 }
224
225 /**
226   * \brief   Prints The Dict Entries of THE shadow Dicom Dictionary
227   * @return
228   */
229 void Document::PrintShaDict(std::ostream &os)
230 {
231    RefShaDict->SetPrintLevel(PrintLevel);
232    RefShaDict->Print(os);
233 }
234
235 //-----------------------------------------------------------------------------
236 // Public
237 /**
238  * \brief   Get the public dictionary used
239  */
240 Dict *Document::GetPubDict()
241 {
242    return RefPubDict;
243 }
244
245 /**
246  * \brief   Get the shadow dictionary used
247  */
248 Dict *Document::GetShaDict()
249 {
250    return RefShaDict;
251 }
252
253 /**
254  * \brief   Set the shadow dictionary used
255  * @param   dict dictionary to use in shadow
256  */
257 bool Document::SetShaDict(Dict *dict)
258 {
259    RefShaDict = dict;
260    return !RefShaDict;
261 }
262
263 /**
264  * \brief   Set the shadow dictionary used
265  * @param   dictName name of the dictionary to use in shadow
266  */
267 bool Document::SetShaDict(DictKey const &dictName)
268 {
269    RefShaDict = Global::GetDicts()->GetDict(dictName);
270    return !RefShaDict;
271 }
272
273 /**
274  * \brief  This predicate, based on hopefully reasonable heuristics,
275  *         decides whether or not the current Document was properly parsed
276  *         and contains the mandatory information for being considered as
277  *         a well formed and usable Dicom/Acr File.
278  * @return true when Document is the one of a reasonable Dicom/Acr file,
279  *         false otherwise. 
280  */
281 bool Document::IsReadable()
282 {
283    if( Filetype == Unknown)
284    {
285       gdcmVerboseMacro( "Wrong filetype");
286       return false;
287    }
288
289    if( TagHT.empty() )
290    {
291       gdcmVerboseMacro( "No tags in internal hash table.");
292       return false;
293    }
294
295    return true;
296 }
297
298 /**
299  * \brief   Accessor to the Transfer Syntax (when present) of the
300  *          current document (it internally handles reading the
301  *          value from disk when only parsing occured).
302  * @return  The encountered Transfer Syntax of the current document.
303  */
304 TransferSyntaxType Document::GetTransferSyntax()
305 {
306    DocEntry *entry = GetDocEntry(0x0002, 0x0010);
307    if ( !entry )
308    {
309       return UnknownTS;
310    }
311
312    // The entry might be present but not loaded (parsing and loading
313    // happen at different stages): try loading and proceed with check...
314    LoadDocEntrySafe(entry);
315    if (ValEntry *valEntry = dynamic_cast< ValEntry* >(entry) )
316    {
317       std::string transfer = valEntry->GetValue();
318       // The actual transfer (as read from disk) might be padded. We
319       // first need to remove the potential padding. We can make the
320       // weak assumption that padding was not executed with digits...
321       if  ( transfer.length() == 0 )
322       {
323          // for brain damaged headers
324          return UnknownTS;
325       }
326       while ( !isdigit((unsigned char)transfer[transfer.length()-1]) )
327       {
328          transfer.erase(transfer.length()-1, 1);
329       }
330       for (int i = 0; TransferSyntaxStrings[i] != NULL; i++)
331       {
332          if ( TransferSyntaxStrings[i] == transfer )
333          {
334             return TransferSyntaxType(i);
335          }
336       }
337    }
338    return UnknownTS;
339 }
340
341 bool Document::IsJPEGLossless()
342 {
343    TransferSyntaxType r = GetTransferSyntax();
344    return    r ==  JPEGFullProgressionProcess10_12
345           || r == JPEGLosslessProcess14
346           || r == JPEGLosslessProcess14_1;
347 }
348                                                                                 
349 /**
350  * \brief   Determines if the Transfer Syntax was already encountered
351  *          and if it corresponds to a JPEG2000 one
352  * @return  True when JPEG2000 (Lossly or LossLess) found. False in all
353  *          other cases.
354  */
355 bool Document::IsJPEG2000()
356 {
357    TransferSyntaxType r = GetTransferSyntax();
358    return r == JPEG2000Lossless || r == JPEG2000;
359 }
360
361 /**
362  * \brief   Determines if the Transfer Syntax corresponds to any form
363  *          of Jpeg encoded Pixel data.
364  * @return  True when any form of JPEG found. False otherwise.
365  */
366 bool Document::IsJPEG()
367 {
368    TransferSyntaxType r = GetTransferSyntax();
369    return r == JPEGBaselineProcess1 
370      || r == JPEGExtendedProcess2_4
371      || r == JPEGExtendedProcess3_5
372      || r == JPEGSpectralSelectionProcess6_8
373      ||      IsJPEGLossless()
374      ||      IsJPEG2000();
375 }
376
377 /**
378  * \brief   Determines if the Transfer Syntax corresponds to encapsulated
379  *          of encoded Pixel Data (as opposed to native).
380  * @return  True when encapsulated. False when native.
381  */
382 bool Document::IsEncapsulate()
383 {
384    TransferSyntaxType r = GetTransferSyntax();
385    return IsJPEG() || r == RLELossless;
386 }
387
388 /**
389  * \brief   Predicate for dicom version 3 file.
390  * @return  True when the file is a dicom version 3.
391  */
392 bool Document::IsDicomV3()
393 {
394    // Checking if Transfert Syntax exists is enough
395    // Anyway, it's to late check if the 'Preamble' was found ...
396    // And ... would it be a rich idea to check ?
397    // (some 'no Preamble' DICOM images exist !)
398    return GetDocEntry(0x0002, 0x0010) != NULL;
399 }
400
401 /**
402  * \brief  returns the File Type 
403  *         (ACR, ACR_LIBIDO, ExplicitVR, ImplicitVR, Unknown)
404  * @return the FileType code
405  */
406 FileType Document::GetFileType()
407 {
408    return Filetype;
409 }
410
411 /**
412  * \brief  Tries to open the file \ref Document::Filename and
413  *         checks the preamble when existing.
414  * @return The FILE pointer on success. 
415  */
416 std::ifstream *Document::OpenFile()
417 {
418    if (Filename.length() == 0) 
419    {
420       return 0;
421    }
422
423    if(Fp)
424    {
425       gdcmVerboseMacro( "Is already opened when opening: " << Filename.c_str());
426    }
427
428    Fp = new std::ifstream(Filename.c_str(), std::ios::in | std::ios::binary);
429    if( ! *Fp )
430    {
431       gdcmVerboseMacro( "Cannot open file: " << Filename.c_str());
432       delete Fp;
433       Fp = 0;
434       return 0;
435    }
436  
437    uint16_t zero;
438    Fp->read((char*)&zero, (size_t)2);
439    if( Fp->eof() )
440    {
441       CloseFile();
442       return 0;
443    }
444  
445    //ACR -- or DICOM with no Preamble; may start with a Shadow Group --
446    if( 
447        zero == 0x0001 || zero == 0x0100 || zero == 0x0002 || zero == 0x0200 ||
448        zero == 0x0003 || zero == 0x0300 || zero == 0x0004 || zero == 0x0400 ||
449        zero == 0x0005 || zero == 0x0500 || zero == 0x0006 || zero == 0x0600 ||
450        zero == 0x0007 || zero == 0x0700 || zero == 0x0008 || zero == 0x0800 )
451    {
452       std::string msg 
453          = Util::Format("ACR/DICOM with no preamble: (%04x)\n", zero);
454       gdcmVerboseMacro( msg.c_str() );
455       return Fp;
456    }
457  
458    //DICOM
459    Fp->seekg(126L, std::ios::cur);
460    char dicm[4];
461    Fp->read(dicm,  (size_t)4);
462    if( Fp->eof() )
463    {
464       CloseFile();
465       return 0;
466    }
467    if( memcmp(dicm, "DICM", 4) == 0 )
468    {
469       return Fp;
470    }
471  
472    CloseFile();
473    gdcmVerboseMacro( "Not DICOM/ACR (missing preamble)" << Filename.c_str());
474  
475    return 0;
476 }
477
478 /**
479  * \brief closes the file  
480  * @return  TRUE if the close was successfull 
481  */
482 bool Document::CloseFile()
483 {
484    if( Fp )
485    {
486       Fp->close();
487       delete Fp;
488       Fp = 0;
489    }
490
491    return true; //FIXME how do we detect a non-close ifstream ?
492 }
493
494 /**
495  * \brief Writes in a file all the Header Entries (Dicom Elements) 
496  * @param fp file pointer on an already open file
497  * @param filetype Type of the File to be written 
498  *          (ACR-NEMA, ExplicitVR, ImplicitVR)
499  * \return Always true.
500  */
501 void Document::WriteContent(std::ofstream *fp, FileType filetype)
502 {
503    /// \todo move the following lines (and a lot of others, to be written)
504    /// to a future function CheckAndCorrectHeader  
505    /// (necessary if user wants to write a DICOM V3 file
506    /// starting from an  ACR-NEMA (V2)  Header
507
508    if ( filetype == ImplicitVR || filetype == ExplicitVR )
509    {
510       // writing Dicom File Preamble
511       char filePreamble[128];
512       memset(filePreamble, 0, 128);
513       fp->write(filePreamble, 128);
514       fp->write("DICM", 4);
515    }
516
517 /**
518  * \todo rewrite later, if really usefull
519  *       - 'Group Length' element is optional in DICOM
520  *       - but un-updated odd groups lengthes can causes pb
521  *         (xmedcon breaker)
522  *
523  * if ( (filetype == ImplicitVR) || (filetype == ExplicitVR) )
524  *    UpdateGroupLength(false,filetype);
525  * if ( filetype == ACR)
526  *    UpdateGroupLength(true,ACR);
527  */
528  
529    ElementSet::WriteContent(fp, filetype); // This one is recursive
530 }
531
532 /**
533  * \brief   Modifies the value of a given Doc Entry (Dicom Element)
534  *          when it exists. Create it with the given value when unexistant.
535  * @param   value (string) Value to be set
536  * @param   group   Group number of the Entry 
537  * @param   elem  Element number of the Entry
538  * @param   vr  V(alue) R(epresentation) of the Entry -if private Entry-
539  * \return  pointer to the modified/created Header Entry (NULL when creation
540  *          failed).
541  */ 
542 ValEntry *Document::ReplaceOrCreate(std::string const &value, 
543                                     uint16_t group, 
544                                     uint16_t elem,
545                                     TagName const &vr )
546 {
547    ValEntry *valEntry = 0;
548    DocEntry *currentEntry = GetDocEntry( group, elem);
549    
550    if (currentEntry)
551    {
552       valEntry = dynamic_cast< ValEntry* >(currentEntry);
553
554       // Verify the VR
555       if( valEntry )
556          if( valEntry->GetVR()!=vr )
557             valEntry=NULL;
558
559       // if currentEntry doesn't correspond to the requested valEntry
560       if( !valEntry)
561       {
562          if (!RemoveEntry(currentEntry))
563          {
564             gdcmVerboseMacro( "Removal of previous DocEntry failed.");
565
566             return NULL;
567          }
568       }
569    }
570
571    // Create a new valEntry if necessary
572    if (!valEntry)
573    {
574       valEntry = NewValEntry(group, elem, vr);
575
576       if ( !AddEntry(valEntry))
577       {
578          gdcmVerboseMacro("AddEntry failed although this is a creation.");
579
580          delete valEntry;
581          return NULL;
582       }
583    }
584
585    // Set the binEntry value
586    SetEntry(value, valEntry);
587    return valEntry;
588 }   
589
590 /*
591  * \brief   Modifies the value of a given Header Entry (Dicom Element)
592  *          when it exists. Create it with the given value when unexistant.
593  *          A copy of the binArea is made to be kept in the Document.
594  * @param   binArea (binary) value to be set
595  * @param   Group   Group number of the Entry 
596  * @param   Elem  Element number of the Entry
597  * @param   vr  V(alue) R(epresentation) of the Entry -if private Entry-
598  * \return  pointer to the modified/created Header Entry (NULL when creation
599  *          failed).
600  */
601 BinEntry *Document::ReplaceOrCreate(uint8_t *binArea,
602                                     int lgth, 
603                                     uint16_t group, 
604                                     uint16_t elem,
605                                     TagName const &vr )
606 {
607    BinEntry *binEntry = 0;
608    DocEntry *currentEntry = GetDocEntry( group, elem);
609
610    // Verify the currentEntry
611    if (currentEntry)
612    {
613       binEntry = dynamic_cast< BinEntry* >(currentEntry);
614
615       // Verify the VR
616       if( binEntry )
617          if( binEntry->GetVR()!=vr )
618             binEntry=NULL;
619
620       // if currentEntry doesn't correspond to the requested valEntry
621       if( !binEntry)
622       {
623          if (!RemoveEntry(currentEntry))
624          {
625             gdcmVerboseMacro( "Removal of previous DocEntry failed.");
626
627             return NULL;
628          }
629       }
630    }
631
632    // Create a new binEntry if necessary
633    if (!binEntry)
634    {
635       binEntry = NewBinEntry(group, elem, vr);
636
637       if ( !AddEntry(binEntry))
638       {
639          gdcmVerboseMacro( "AddEntry failed allthough this is a creation.");
640
641          delete binEntry;
642          return NULL;
643       }
644    }
645
646    // Set the binEntry value
647    uint8_t *tmpArea;
648    if (lgth>0 && binArea)
649    {
650       tmpArea = new uint8_t[lgth];
651       memcpy(tmpArea,binArea,lgth);
652    }
653    else
654    {
655       tmpArea = 0;
656    }
657    if (!SetEntry(tmpArea,lgth,binEntry))
658    {
659       if (tmpArea)
660       {
661          delete[] tmpArea;
662       }
663    }
664
665    return binEntry;
666 }  
667
668 /*
669  * \brief   Modifies the value of a given Header Entry (Dicom Element)
670  *          when it exists. Create it when unexistant.
671  * @param   Group   Group number of the Entry 
672  * @param   Elem  Element number of the Entry
673  * \return  pointer to the modified/created SeqEntry (NULL when creation
674  *          failed).
675  */
676 SeqEntry *Document::ReplaceOrCreate( uint16_t group, uint16_t elem)
677 {
678    SeqEntry *seqEntry = 0;
679    DocEntry *currentEntry = GetDocEntry( group, elem);
680
681    // Verify the currentEntry
682    if (currentEntry)
683    {
684       seqEntry = dynamic_cast< SeqEntry* >(currentEntry);
685
686       // Verify the VR
687       if( seqEntry )
688          if( seqEntry->GetVR()!="SQ" )
689             seqEntry=NULL;
690
691       // if currentEntry doesn't correspond to the requested valEntry
692       if( !seqEntry)
693       {
694          if (!RemoveEntry(currentEntry))
695          {
696             gdcmVerboseMacro( "Removal of previous DocEntry failed.");
697
698             return NULL;
699          }
700       }
701    }
702
703    // Create a new seqEntry if necessary
704    if (!seqEntry)
705    {
706       seqEntry = NewSeqEntry(group, elem);
707
708       if ( !AddEntry(seqEntry))
709       {
710          gdcmVerboseMacro( "AddEntry failed allthough this is a creation.");
711
712          delete seqEntry;
713          return NULL;
714       }
715    }
716
717    return seqEntry;
718
719  
720 /**
721  * \brief Set a new value if the invoked element exists
722  *        Seems to be useless !!!
723  * @param value new element value
724  * @param group  group number of the Entry 
725  * @param elem element number of the Entry
726  * \return  boolean 
727  */
728 bool Document::ReplaceIfExist(std::string const &value, 
729                               uint16_t group, uint16_t elem ) 
730 {
731    SetEntry(value, group, elem);
732
733    return true;
734
735
736 std::string Document::GetTransferSyntaxValue(TransferSyntaxType type)
737 {
738    return TransferSyntaxStrings[type];
739 }
740
741 //-----------------------------------------------------------------------------
742 // Protected
743
744 /**
745  * \brief   Checks if a given Dicom Element exists within the H table
746  * @param   group      Group number of the searched Dicom Element 
747  * @param   element  Element number of the searched Dicom Element 
748  * @return true is found
749  */
750 bool Document::CheckIfEntryExist(uint16_t group, uint16_t element )
751 {
752    const std::string &key = DictEntry::TranslateToKey(group, element );
753    return TagHT.count(key) != 0;
754 }
755
756
757 /**
758  * \brief   Searches within Header Entries (Dicom Elements) parsed with 
759  *          the public and private dictionaries 
760  *          for the element value representation of a given tag.
761  * @param   group Group number of the searched tag.
762  * @param   element Element number of the searched tag.
763  * @return  Corresponding element value representation when it exists,
764  *          and the string GDCM_UNFOUND ("gdcm::Unfound") otherwise.
765  */
766 std::string Document::GetEntry(uint16_t group, uint16_t element)
767 {
768    TagKey key = DictEntry::TranslateToKey(group, element);
769    if ( !TagHT.count(key))
770    {
771       return GDCM_UNFOUND;
772    }
773
774    return ((ValEntry *)TagHT.find(key)->second)->GetValue();
775 }
776
777 /**
778  * \brief   Searches within Header Entries (Dicom Elements) parsed with 
779  *          the public and private dictionaries 
780  *          for the element value representation of a given tag..
781  *
782  *          Obtaining the VR (Value Representation) might be needed by caller
783  *          to convert the string typed content to caller's native type 
784  *          (think of C++ vs Python). The VR is actually of a higher level
785  *          of semantics than just the native C++ type.
786  * @param   group     Group number of the searched tag.
787  * @param   element Element number of the searched tag.
788  * @return  Corresponding element value representation when it exists,
789  *          and the string GDCM_UNFOUND ("gdcm::Unfound") otherwise.
790  */
791 std::string Document::GetEntryVR(uint16_t group, uint16_t element)
792 {
793    DocEntry *elem = GetDocEntry(group, element);
794    if ( !elem )
795    {
796       return GDCM_UNFOUND;
797    }
798    return elem->GetVR();
799 }
800
801 /**
802  * \brief   Searches within Header Entries (Dicom Elements) parsed with 
803  *          the public and private dictionaries 
804  *          for the value length of a given tag..
805  * @param   group     Group number of the searched tag.
806  * @param   element Element number of the searched tag.
807  * @return  Corresponding element length; -2 if not found
808  */
809 int Document::GetEntryLength(uint16_t group, uint16_t element)
810 {
811    DocEntry *elem =  GetDocEntry(group, element);
812    if ( !elem )
813    {
814       return -2;  //magic number
815    }
816    return elem->GetLength();
817 }
818
819 /**
820  * \brief   Accesses an existing DocEntry (i.e. a Dicom Element)
821  *          through it's (group, element) and modifies it's content with
822  *          the given value.
823  * @param   content new value (string) to substitute with
824  * @param   group     group number of the Dicom Element to modify
825  * @param   element element number of the Dicom Element to modify
826  */
827 bool Document::SetEntry(std::string const& content, 
828                         uint16_t group, uint16_t element) 
829 {
830    ValEntry *entry = GetValEntry(group, element);
831    if (!entry )
832    {
833       gdcmVerboseMacro( "No corresponding ValEntry (try promotion first).");
834       return false;
835    }
836    return SetEntry(content,entry);
837
838
839 /**
840  * \brief   Accesses an existing DocEntry (i.e. a Dicom Element)
841  *          through it's (group, element) and modifies it's content with
842  *          the given value.
843  * @param   content new value (void*  -> uint8_t*) to substitute with
844  * @param   lgth new value length
845  * @param   group     group number of the Dicom Element to modify
846  * @param   element element number of the Dicom Element to modify
847  */
848 bool Document::SetEntry(uint8_t*content, int lgth, 
849                         uint16_t group, uint16_t element) 
850 {
851    BinEntry *entry = GetBinEntry(group, element);
852    if (!entry )
853    {
854       gdcmVerboseMacro( "No corresponding ValEntry (try promotion first).");
855       return false;
856    }
857
858    return SetEntry(content,lgth,entry);
859
860
861 /**
862  * \brief   Accesses an existing DocEntry (i.e. a Dicom Element)
863  *          and modifies it's content with the given value.
864  * @param  content new value (string) to substitute with
865  * @param  entry Entry to be modified
866  */
867 bool Document::SetEntry(std::string const &content,ValEntry *entry)
868 {
869    if(entry)
870    {
871       entry->SetValue(content);
872       return true;
873    }
874    return false;
875 }
876
877 /**
878  * \brief   Accesses an existing BinEntry (i.e. a Dicom Element)
879  *          and modifies it's content with the given value.
880  * @param   content new value (void*  -> uint8_t*) to substitute with
881  * @param  entry Entry to be modified 
882  * @param   lgth new value length
883  */
884 bool Document::SetEntry(uint8_t *content, int lgth, BinEntry *entry)
885 {
886    if(entry)
887    {
888       // Hope Binary field length is *never* wrong    
889       /*if(lgth%2) // Non even length are padded with a space (020H).
890       {  
891          lgth++;
892          //content = content + '\0'; // fing a trick to enlarge a binary field?
893       }*/
894       
895       entry->SetBinArea(content);  
896       entry->SetLength(lgth);
897       entry->SetValue(GDCM_BINLOADED);
898       return true;
899    }
900    return false;
901 }
902
903 /**
904  * \brief   Gets (from Header) a 'non string' element value 
905  *          (LoadElementValues has already be executed)  
906  * @param group   group number of the Entry 
907  * @param elem  element number of the Entry
908  * @return Pointer to the 'non string' area
909  */
910 void *Document::GetEntryBinArea(uint16_t group, uint16_t elem) 
911 {
912    DocEntry *entry = GetDocEntry(group, elem);
913    if (!entry) 
914    {
915       gdcmVerboseMacro( "No entry");
916       return 0;
917    }
918    if ( BinEntry *binEntry = dynamic_cast<BinEntry*>(entry) )
919    {
920       return binEntry->GetBinArea();
921    }
922
923    return 0;
924 }
925
926 /**
927  * \brief         Loads (from disk) the element content 
928  *                when a string is not suitable
929  * @param group   group number of the Entry 
930  * @param elem  element number of the Entry
931  */
932 void Document::LoadEntryBinArea(uint16_t group, uint16_t elem)
933 {
934    // Search the corresponding DocEntry
935    DocEntry *docElement = GetDocEntry(group, elem);
936    if ( !docElement )
937       return;
938
939    BinEntry *binElement = dynamic_cast<BinEntry *>(docElement);
940    if( !binElement )
941       return;
942
943    LoadEntryBinArea(binElement);
944 }
945
946 /**
947  * \brief         Loads (from disk) the element content 
948  *                when a string is not suitable
949  * @param element  Entry whose binArea is going to be loaded
950  */
951 void Document::LoadEntryBinArea(BinEntry *element) 
952 {
953    if(element->GetBinArea())
954       return;
955
956    bool openFile = !Fp;
957    if(openFile)
958       OpenFile();
959
960    size_t o =(size_t)element->GetOffset();
961    Fp->seekg(o, std::ios::beg);
962
963    size_t l = element->GetLength();
964    uint8_t *a = new uint8_t[l];
965    if( !a )
966    {
967       gdcmVerboseMacro( "Cannot allocate a");
968       return;
969    }
970
971    /// \todo check the result 
972    Fp->read((char*)a, l);
973    if( Fp->fail() || Fp->eof())
974    {
975       delete[] a;
976       return;
977    }
978
979    element->SetBinArea(a);
980
981    if(openFile)
982       CloseFile();
983 }
984
985 /**
986  * \brief   Sets a 'non string' value to a given Dicom Element
987  * @param   area area containing the 'non string' value
988  * @param   group     Group number of the searched Dicom Element 
989  * @param   element Element number of the searched Dicom Element 
990  * @return  
991  */
992 /*bool Document::SetEntryBinArea(uint8_t *area,
993                                  uint16_t group, uint16_t element) 
994 {
995    DocEntry *currentEntry = GetDocEntry(group, element);
996    if ( !currentEntry )
997    {
998       return false;
999    }
1000
1001    if ( BinEntry *binEntry = dynamic_cast<BinEntry*>(currentEntry) )
1002    {
1003       binEntry->SetBinArea( area );
1004       return true;
1005    }
1006
1007    return false;
1008 }*/
1009
1010 /**
1011  * \brief  retrieves a Dicom Element (the first one) using (group, element)
1012  * \warning (group, element) IS NOT an identifier inside the Dicom Header
1013  *           if you think it's NOT UNIQUE, check the count number
1014  *           and use iterators to retrieve ALL the Dicoms Elements within
1015  *           a given couple (group, element)
1016  * @param   group Group number of the searched Dicom Element 
1017  * @param   element Element number of the searched Dicom Element 
1018  * @return  
1019  */
1020 DocEntry *Document::GetDocEntry(uint16_t group, uint16_t element) 
1021 {
1022    TagKey key = DictEntry::TranslateToKey(group, element);
1023    if ( !TagHT.count(key))
1024    {
1025       return NULL;
1026    }
1027    return TagHT.find(key)->second;
1028 }
1029
1030 /**
1031  * \brief  Same as \ref Document::GetDocEntry except it only
1032  *         returns a result when the corresponding entry is of type
1033  *         ValEntry.
1034  * @return When present, the corresponding ValEntry. 
1035  */
1036 ValEntry *Document::GetValEntry(uint16_t group, uint16_t element)
1037 {
1038    DocEntry *currentEntry = GetDocEntry(group, element);
1039    if ( !currentEntry )
1040    {
1041       return 0;
1042    }
1043    if ( ValEntry *entry = dynamic_cast<ValEntry*>(currentEntry) )
1044    {
1045       return entry;
1046    }
1047    gdcmVerboseMacro( "Unfound ValEntry.");
1048
1049    return 0;
1050 }
1051
1052 /**
1053  * \brief  Same as \ref Document::GetDocEntry except it only
1054  *         returns a result when the corresponding entry is of type
1055  *         BinEntry.
1056  * @return When present, the corresponding BinEntry. 
1057  */
1058 BinEntry *Document::GetBinEntry(uint16_t group, uint16_t element)
1059 {
1060    DocEntry *currentEntry = GetDocEntry(group, element);
1061    if ( !currentEntry )
1062    {
1063       return 0;
1064    }
1065    if ( BinEntry *entry = dynamic_cast<BinEntry*>(currentEntry) )
1066    {
1067       return entry;
1068    }
1069    gdcmVerboseMacro( "Unfound BinEntry.");
1070
1071    return 0;
1072 }
1073
1074 /**
1075  * \brief         Loads the element while preserving the current
1076  *               underlying file position indicator as opposed to
1077  *                to LoadDocEntry that modifies it.
1078  * @param entry   Header Entry whose value shall be loaded. 
1079  * @return  
1080  */
1081 void Document::LoadDocEntrySafe(DocEntry *entry)
1082 {
1083    if(Fp)
1084    {
1085       long PositionOnEntry = Fp->tellg();
1086       LoadDocEntry(entry);
1087       Fp->seekg(PositionOnEntry, std::ios::beg);
1088    }
1089 }
1090
1091 /**
1092  * \brief   Swaps back the bytes of 4-byte long integer accordingly to
1093  *          processor order.
1094  * @return  The properly swaped 32 bits integer.
1095  */
1096 uint32_t Document::SwapLong(uint32_t a)
1097 {
1098    switch (SwapCode)
1099    {
1100       case    0 :
1101          break;
1102       case 4321 :
1103          a=( ((a<<24) & 0xff000000) | ((a<<8)  & 0x00ff0000) | 
1104              ((a>>8)  & 0x0000ff00) | ((a>>24) & 0x000000ff) );
1105          break;
1106    
1107       case 3412 :
1108          a=( ((a<<16) & 0xffff0000) | ((a>>16) & 0x0000ffff) );
1109          break;
1110    
1111       case 2143 :
1112          a=( ((a<< 8) & 0xff00ff00) | ((a>>8) & 0x00ff00ff)  );
1113          break;
1114       default :
1115          gdcmErrorMacro( "Unset swap code:" << SwapCode );
1116          a = 0;
1117    }
1118    return a;
1119
1120
1121 /**
1122  * \brief   Unswaps back the bytes of 4-byte long integer accordingly to
1123  *          processor order.
1124  * @return  The properly unswaped 32 bits integer.
1125  */
1126 uint32_t Document::UnswapLong(uint32_t a)
1127 {
1128    return SwapLong(a);
1129 }
1130
1131 /**
1132  * \brief   Swaps the bytes so they agree with the processor order
1133  * @return  The properly swaped 16 bits integer.
1134  */
1135 uint16_t Document::SwapShort(uint16_t a)
1136 {
1137    if ( SwapCode == 4321 || SwapCode == 2143 )
1138    {
1139       a = ((( a << 8 ) & 0x0ff00 ) | (( a >> 8 ) & 0x00ff ) );
1140    }
1141    return a;
1142 }
1143
1144 /**
1145  * \brief   Unswaps the bytes so they agree with the processor order
1146  * @return  The properly unswaped 16 bits integer.
1147  */
1148 uint16_t Document::UnswapShort(uint16_t a)
1149 {
1150    return SwapShort(a);
1151 }
1152
1153 //-----------------------------------------------------------------------------
1154 // Private
1155
1156 /**
1157  * \brief   Parses a DocEntrySet (Zero-level DocEntries or SQ Item DocEntries)
1158  * @return  length of the parsed set. 
1159  */ 
1160 void Document::ParseDES(DocEntrySet *set, long offset, 
1161                         long l_max, bool delim_mode)
1162 {
1163    DocEntry *newDocEntry = 0;
1164    ValEntry *newValEntry;
1165    BinEntry *newBinEntry;
1166    SeqEntry *newSeqEntry;
1167    VRKey vr;
1168    bool used=false;
1169
1170    while (true)
1171    {
1172       if ( !delim_mode && ((long)(Fp->tellg())-offset) >= l_max)
1173       {
1174          break;
1175       }
1176
1177       used=true;
1178       newDocEntry = ReadNextDocEntry( );
1179       if ( !newDocEntry )
1180       {
1181          break;
1182       }
1183
1184       vr = newDocEntry->GetVR();
1185       newValEntry = dynamic_cast<ValEntry*>(newDocEntry);
1186       newBinEntry = dynamic_cast<BinEntry*>(newDocEntry);
1187       newSeqEntry = dynamic_cast<SeqEntry*>(newDocEntry);
1188
1189       if ( newValEntry || newBinEntry )
1190       {
1191          if ( newBinEntry )
1192          {
1193             if ( ! Global::GetVR()->IsVROfBinaryRepresentable(vr) )
1194             { 
1195                 ////// Neither ValEntry NOR BinEntry: should mean UNKOWN VR
1196                 gdcmVerboseMacro( "Neither Valentry, nor BinEntry." 
1197                                   "Probably unknown VR.");
1198             }
1199
1200          //////////////////// BinEntry or UNKOWN VR:
1201             // When "this" is a Document the Key is simply of the
1202             // form ( group, elem )...
1203             if (Document *dummy = dynamic_cast< Document* > ( set ) )
1204             {
1205                (void)dummy;
1206                newBinEntry->SetKey( newBinEntry->GetKey() );
1207             }
1208             // but when "this" is a SQItem, we are inserting this new
1209             // valEntry in a sequence item, and the kay has the
1210             // generalized form (refer to \ref BaseTagKey):
1211             if (SQItem *parentSQItem = dynamic_cast< SQItem* > ( set ) )
1212             {
1213                newBinEntry->SetKey(  parentSQItem->GetBaseTagKey()
1214                                    + newBinEntry->GetKey() );
1215             }
1216
1217             LoadDocEntry( newBinEntry );
1218             if( !set->AddEntry( newBinEntry ) )
1219             {
1220               //Expect big troubles if here
1221               //delete newBinEntry;
1222               used=false;
1223             }
1224          }
1225          else
1226          {
1227          /////////////////////// ValEntry
1228             // When "set" is a Document, then we are at the top of the
1229             // hierarchy and the Key is simply of the form ( group, elem )...
1230             if (Document *dummy = dynamic_cast< Document* > ( set ) )
1231             {
1232                (void)dummy;
1233                newValEntry->SetKey( newValEntry->GetKey() );
1234             }
1235             // ...but when "set" is a SQItem, we are inserting this new
1236             // valEntry in a sequence item. Hence the key has the
1237             // generalized form (refer to \ref BaseTagKey):
1238             if (SQItem *parentSQItem = dynamic_cast< SQItem* > ( set ) )
1239             {
1240                newValEntry->SetKey(  parentSQItem->GetBaseTagKey()
1241                                    + newValEntry->GetKey() );
1242             }
1243              
1244             LoadDocEntry( newValEntry );
1245             bool delimitor=newValEntry->IsItemDelimitor();
1246             if( !set->AddEntry( newValEntry ) )
1247             {
1248               // If here expect big troubles
1249               //delete newValEntry; //otherwise mem leak
1250               used=false;
1251             }
1252
1253             if (delimitor)
1254             {
1255                if(!used)
1256                   delete newDocEntry;
1257                break;
1258             }
1259             if ( !delim_mode && ((long)(Fp->tellg())-offset) >= l_max)
1260             {
1261                if(!used)
1262                   delete newDocEntry;
1263                break;
1264             }
1265          }
1266
1267          if (    ( newDocEntry->GetGroup()   == 0x7fe0 )
1268               && ( newDocEntry->GetElement() == 0x0010 ) )
1269          {
1270              TransferSyntaxType ts = GetTransferSyntax();
1271              if ( ts == RLELossless ) 
1272              {
1273                 long positionOnEntry = Fp->tellg();
1274                 Fp->seekg( newDocEntry->GetOffset(), std::ios::beg );
1275                 ComputeRLEInfo();
1276                 Fp->seekg( positionOnEntry, std::ios::beg );
1277              }
1278              else if ( IsJPEG() )
1279              {
1280                 long positionOnEntry = Fp->tellg();
1281                 Fp->seekg( newDocEntry->GetOffset(), std::ios::beg );
1282                 ComputeJPEGFragmentInfo();
1283                 Fp->seekg( positionOnEntry, std::ios::beg );
1284              }
1285          }
1286
1287          // Just to make sure we are at the beginning of next entry.
1288          SkipToNextDocEntry(newDocEntry);
1289       }
1290       else
1291       {
1292          // VR = "SQ"
1293          unsigned long l = newDocEntry->GetReadLength();            
1294          if ( l != 0 ) // don't mess the delim_mode for zero-length sequence
1295          {
1296             if ( l == 0xffffffff )
1297             {
1298               delim_mode = true;
1299             }
1300             else
1301             {
1302               delim_mode = false;
1303             }
1304          }
1305          // no other way to create it ...
1306          newSeqEntry->SetDelimitorMode( delim_mode );
1307
1308          // At the top of the hierarchy, stands a Document. When "set"
1309          // is a Document, then we are building the first depth level.
1310          // Hence the SeqEntry we are building simply has a depth
1311          // level of one:
1312          if (Document *dummy = dynamic_cast< Document* > ( set ) )
1313          {
1314             (void)dummy;
1315             newSeqEntry->SetDepthLevel( 1 );
1316             newSeqEntry->SetKey( newSeqEntry->GetKey() );
1317          }
1318          // But when "set" is allready a SQItem, we are building a nested
1319          // sequence, and hence the depth level of the new SeqEntry
1320          // we are building, is one level deeper:
1321          if (SQItem *parentSQItem = dynamic_cast< SQItem* > ( set ) )
1322          {
1323             newSeqEntry->SetDepthLevel( parentSQItem->GetDepthLevel() + 1 );
1324             newSeqEntry->SetKey(  parentSQItem->GetBaseTagKey()
1325                                 + newSeqEntry->GetKey() );
1326          }
1327
1328          if ( l != 0 )
1329          {  // Don't try to parse zero-length sequences
1330             ParseSQ( newSeqEntry, 
1331                      newDocEntry->GetOffset(),
1332                      l, delim_mode);
1333          }
1334          set->AddEntry( newSeqEntry );
1335          if ( !delim_mode && ((long)(Fp->tellg())-offset) >= l_max)
1336          {
1337             break;
1338          }
1339       }
1340
1341       if(!used)
1342          delete newDocEntry;
1343    }
1344 }
1345
1346 /**
1347  * \brief   Parses a Sequence ( SeqEntry after SeqEntry)
1348  * @return  parsed length for this level
1349  */ 
1350 void Document::ParseSQ( SeqEntry *seqEntry,
1351                         long offset, long l_max, bool delim_mode)
1352 {
1353    int SQItemNumber = 0;
1354    bool dlm_mod;
1355
1356    while (true)
1357    {
1358       DocEntry *newDocEntry = ReadNextDocEntry();   
1359       if ( !newDocEntry )
1360       {
1361          // FIXME Should warn user
1362          break;
1363       }
1364       if( delim_mode )
1365       {
1366          if ( newDocEntry->IsSequenceDelimitor() )
1367          {
1368             seqEntry->SetSequenceDelimitationItem( newDocEntry ); 
1369             break;
1370          }
1371       }
1372       if ( !delim_mode && ((long)(Fp->tellg())-offset) >= l_max)
1373       {
1374          delete newDocEntry;
1375          break;
1376       }
1377
1378       SQItem *itemSQ = new SQItem( seqEntry->GetDepthLevel() );
1379       std::ostringstream newBase;
1380       newBase << seqEntry->GetKey()
1381               << "/"
1382               << SQItemNumber
1383               << "#";
1384       itemSQ->SetBaseTagKey( newBase.str() );
1385       unsigned int l = newDocEntry->GetReadLength();
1386       
1387       if ( l == 0xffffffff )
1388       {
1389          dlm_mod = true;
1390       }
1391       else
1392       {
1393          dlm_mod = false;
1394       }
1395    
1396       ParseDES(itemSQ, newDocEntry->GetOffset(), l, dlm_mod);
1397       delete newDocEntry;
1398       
1399       seqEntry->AddEntry( itemSQ, SQItemNumber ); 
1400       SQItemNumber++;
1401       if ( !delim_mode && ((long)(Fp->tellg())-offset ) >= l_max )
1402       {
1403          break;
1404       }
1405    }
1406 }
1407
1408 /**
1409  * \brief         Loads the element content if its length doesn't exceed
1410  *                the value specified with Document::SetMaxSizeLoadEntry()
1411  * @param         entry Header Entry (Dicom Element) to be dealt with
1412  */
1413 void Document::LoadDocEntry(DocEntry *entry)
1414 {
1415    uint16_t group  = entry->GetGroup();
1416    std::string  vr = entry->GetVR();
1417    uint32_t length = entry->GetLength();
1418
1419    Fp->seekg((long)entry->GetOffset(), std::ios::beg);
1420
1421    // A SeQuence "contains" a set of Elements.  
1422    //          (fffe e000) tells us an Element is beginning
1423    //          (fffe e00d) tells us an Element just ended
1424    //          (fffe e0dd) tells us the current SeQuence just ended
1425    if( group == 0xfffe )
1426    {
1427       // NO more value field for SQ !
1428       return;
1429    }
1430
1431    // When the length is zero things are easy:
1432    if ( length == 0 )
1433    {
1434       ((ValEntry *)entry)->SetValue("");
1435       return;
1436    }
1437
1438    // The elements whose length is bigger than the specified upper bound
1439    // are not loaded. Instead we leave a short notice of the offset of
1440    // the element content and it's length.
1441
1442    std::ostringstream s;
1443    if (length > MaxSizeLoadEntry)
1444    {
1445       if (BinEntry *binEntryPtr = dynamic_cast< BinEntry* >(entry) )
1446       {  
1447          //s << "gdcm::NotLoaded (BinEntry)";
1448          s << GDCM_NOTLOADED;
1449          s << " Address:" << (long)entry->GetOffset();
1450          s << " Length:"  << entry->GetLength();
1451          s << " x(" << std::hex << entry->GetLength() << ")";
1452          binEntryPtr->SetValue(s.str());
1453       }
1454       // Be carefull : a BinEntry IS_A ValEntry ... 
1455       else if (ValEntry *valEntryPtr = dynamic_cast< ValEntry* >(entry) )
1456       {
1457         // s << "gdcm::NotLoaded. (ValEntry)";
1458          s << GDCM_NOTLOADED;  
1459          s << " Address:" << (long)entry->GetOffset();
1460          s << " Length:"  << entry->GetLength();
1461          s << " x(" << std::hex << entry->GetLength() << ")";
1462          valEntryPtr->SetValue(s.str());
1463       }
1464       else
1465       {
1466          // fusible
1467          gdcmErrorMacro( "MaxSizeLoadEntry exceeded, neither a BinEntry "
1468                       << "nor a ValEntry ?! Should never print that !" );
1469       }
1470
1471       // to be sure we are at the end of the value ...
1472       Fp->seekg((long)entry->GetOffset()+(long)entry->GetLength(),
1473                 std::ios::beg);
1474       return;
1475    }
1476
1477    // When we find a BinEntry not very much can be done :
1478    if (BinEntry *binEntryPtr = dynamic_cast< BinEntry* >(entry) )
1479    {
1480       s << GDCM_BINLOADED;
1481       binEntryPtr->SetValue(s.str());
1482       LoadEntryBinArea(binEntryPtr); // last one, not to erase length !
1483       return;
1484    }
1485
1486    /// \todo Any compacter code suggested (?)
1487    if ( IsDocEntryAnInteger(entry) )
1488    {   
1489       uint32_t NewInt;
1490       int nbInt;
1491       // When short integer(s) are expected, read and convert the following 
1492       // n *two characters properly i.e. consider them as short integers as
1493       // opposed to strings.
1494       // Elements with Value Multiplicity > 1
1495       // contain a set of integers (not a single one)       
1496       if (vr == "US" || vr == "SS")
1497       {
1498          nbInt = length / 2;
1499          NewInt = ReadInt16();
1500          s << NewInt;
1501          if (nbInt > 1)
1502          {
1503             for (int i=1; i < nbInt; i++)
1504             {
1505                s << '\\';
1506                NewInt = ReadInt16();
1507                s << NewInt;
1508             }
1509          }
1510       }
1511       // See above comment on multiple integers (mutatis mutandis).
1512       else if (vr == "UL" || vr == "SL")
1513       {
1514          nbInt = length / 4;
1515          NewInt = ReadInt32();
1516          s << NewInt;
1517          if (nbInt > 1)
1518          {
1519             for (int i=1; i < nbInt; i++)
1520             {
1521                s << '\\';
1522                NewInt = ReadInt32();
1523                s << NewInt;
1524             }
1525          }
1526       }
1527 #ifdef GDCM_NO_ANSI_STRING_STREAM
1528       s << std::ends; // to avoid oddities on Solaris
1529 #endif //GDCM_NO_ANSI_STRING_STREAM
1530
1531       ((ValEntry *)entry)->SetValue(s.str());
1532       return;
1533    }
1534    
1535   // FIXME: We need an additional byte for storing \0 that is not on disk
1536    char *str = new char[length+1];
1537    Fp->read(str, (size_t)length);
1538    str[length] = '\0'; //this is only useful when length is odd
1539    // Special DicomString call to properly handle \0 and even length
1540    std::string newValue;
1541    if( length % 2 )
1542    {
1543       newValue = Util::DicomString(str, length+1);
1544       gdcmVerboseMacro("Warning: bad length: " << length <<
1545                        ",For string :" <<  newValue.c_str()); 
1546       // Since we change the length of string update it length
1547       //entry->SetReadLength(length+1);
1548    }
1549    else
1550    {
1551       newValue = Util::DicomString(str, length);
1552    }
1553    delete[] str;
1554
1555    if ( ValEntry *valEntry = dynamic_cast<ValEntry* >(entry) )
1556    {
1557       if ( Fp->fail() || Fp->eof())
1558       {
1559          gdcmVerboseMacro("Unread element value");
1560          valEntry->SetValue(GDCM_UNREAD);
1561          return;
1562       }
1563
1564       if( vr == "UI" )
1565       {
1566          // Because of correspondance with the VR dic
1567          valEntry->SetValue(newValue);
1568       }
1569       else
1570       {
1571          valEntry->SetValue(newValue);
1572       }
1573    }
1574    else
1575    {
1576       gdcmErrorMacro( "Should have a ValEntry, here !");
1577    }
1578 }
1579
1580
1581 /**
1582  * \brief  Find the value Length of the passed Header Entry
1583  * @param  entry Header Entry whose length of the value shall be loaded. 
1584  */
1585 void Document::FindDocEntryLength( DocEntry *entry )
1586    throw ( FormatError )
1587 {
1588    uint16_t element = entry->GetElement();
1589    std::string  vr  = entry->GetVR();
1590    uint16_t length16;       
1591    
1592    if ( Filetype == ExplicitVR && !entry->IsImplicitVR() ) 
1593    {
1594       if ( vr == "OB" || vr == "OW" || vr == "SQ" || vr == "UN" ) 
1595       {
1596          // The following reserved two bytes (see PS 3.5-2003, section
1597          // "7.1.2 Data element structure with explicit vr", p 27) must be
1598          // skipped before proceeding on reading the length on 4 bytes.
1599          Fp->seekg( 2L, std::ios::cur);
1600          uint32_t length32 = ReadInt32();
1601
1602          if ( (vr == "OB" || vr == "OW") && length32 == 0xffffffff ) 
1603          {
1604             uint32_t lengthOB;
1605             try 
1606             {
1607                lengthOB = FindDocEntryLengthOBOrOW();
1608             }
1609             catch ( FormatUnexpected )
1610             {
1611                // Computing the length failed (this happens with broken
1612                // files like gdcm-JPEG-LossLess3a.dcm). We still have a
1613                // chance to get the pixels by deciding the element goes
1614                // until the end of the file. Hence we artificially fix the
1615                // the length and proceed.
1616                long currentPosition = Fp->tellg();
1617                Fp->seekg(0L,std::ios::end);
1618
1619                long lengthUntilEOF = (long)(Fp->tellg())-currentPosition;
1620                Fp->seekg(currentPosition, std::ios::beg);
1621
1622                entry->SetReadLength(lengthUntilEOF);
1623                entry->SetLength(lengthUntilEOF);
1624                return;
1625             }
1626             entry->SetReadLength(lengthOB);
1627             entry->SetLength(lengthOB);
1628             return;
1629          }
1630          FixDocEntryFoundLength(entry, length32); 
1631          return;
1632       }
1633
1634       // Length is encoded on 2 bytes.
1635       length16 = ReadInt16();
1636       
1637       // We can tell the current file is encoded in big endian (like
1638       // Data/US-RGB-8-epicard) when we find the "Transfer Syntax" tag
1639       // and it's value is the one of the encoding of a big endian file.
1640       // In order to deal with such big endian encoded files, we have
1641       // (at least) two strategies:
1642       // * when we load the "Transfer Syntax" tag with value of big endian
1643       //   encoding, we raise the proper flags. Then we wait for the end
1644       //   of the META group (0x0002) among which is "Transfer Syntax",
1645       //   before switching the swap code to big endian. We have to postpone
1646       //   the switching of the swap code since the META group is fully encoded
1647       //   in little endian, and big endian coding only starts at the next
1648       //   group. The corresponding code can be hard to analyse and adds
1649       //   many additional unnecessary tests for regular tags.
1650       // * the second strategy consists in waiting for trouble, that shall
1651       //   appear when we find the first group with big endian encoding. This
1652       //   is easy to detect since the length of a "Group Length" tag (the
1653       //   ones with zero as element number) has to be of 4 (0x0004). When we
1654       //   encounter 1024 (0x0400) chances are the encoding changed and we
1655       //   found a group with big endian encoding.
1656       // We shall use this second strategy. In order to make sure that we
1657       // can interpret the presence of an apparently big endian encoded
1658       // length of a "Group Length" without committing a big mistake, we
1659       // add an additional check: we look in the already parsed elements
1660       // for the presence of a "Transfer Syntax" whose value has to be "big
1661       // endian encoding". When this is the case, chances are we have got our
1662       // hands on a big endian encoded file: we switch the swap code to
1663       // big endian and proceed...
1664       if ( element  == 0x0000 && length16 == 0x0400 ) 
1665       {
1666          TransferSyntaxType ts = GetTransferSyntax();
1667          if ( ts != ExplicitVRBigEndian ) 
1668          {
1669             throw FormatError( "Document::FindDocEntryLength()",
1670                                " not explicit VR." );
1671             return;
1672          }
1673          length16 = 4;
1674          SwitchSwapToBigEndian();
1675
1676          // Restore the unproperly loaded values i.e. the group, the element
1677          // and the dictionary entry depending on them.
1678          uint16_t correctGroup = SwapShort( entry->GetGroup() );
1679          uint16_t correctElem  = SwapShort( entry->GetElement() );
1680          DictEntry *newTag = GetDictEntry( correctGroup, correctElem );
1681          if ( !newTag )
1682          {
1683             // This correct tag is not in the dictionary. Create a new one.
1684             newTag = NewVirtualDictEntry(correctGroup, correctElem);
1685          }
1686          // FIXME this can create a memory leaks on the old entry that be
1687          // left unreferenced.
1688          entry->SetDictEntry( newTag );
1689       }
1690        
1691       // Heuristic: well, some files are really ill-formed.
1692       if ( length16 == 0xffff) 
1693       {
1694          // 0xffff means that we deal with 'Unknown Length' Sequence  
1695          length16 = 0;
1696       }
1697       FixDocEntryFoundLength( entry, (uint32_t)length16 );
1698       return;
1699    }
1700    else
1701    {
1702       // Either implicit VR or a non DICOM conformal (see note below) explicit
1703       // VR that ommited the VR of (at least) this element. Farts happen.
1704       // [Note: according to the part 5, PS 3.5-2001, section 7.1 p25
1705       // on Data elements "Implicit and Explicit VR Data Elements shall
1706       // not coexist in a Data Set and Data Sets nested within it".]
1707       // Length is on 4 bytes.
1708       
1709       FixDocEntryFoundLength( entry, ReadInt32() );
1710       return;
1711    }
1712 }
1713
1714 /**
1715  * \brief     Find the Value Representation of the current Dicom Element.
1716  * @return    Value Representation of the current Entry
1717  */
1718 std::string Document::FindDocEntryVR()
1719 {
1720    if ( Filetype != ExplicitVR )
1721       return GDCM_UNKNOWN;
1722
1723    long positionOnEntry = Fp->tellg();
1724    // Warning: we believe this is explicit VR (Value Representation) because
1725    // we used a heuristic that found "UL" in the first tag. Alas this
1726    // doesn't guarantee that all the tags will be in explicit VR. In some
1727    // cases (see e-film filtered files) one finds implicit VR tags mixed
1728    // within an explicit VR file. Hence we make sure the present tag
1729    // is in explicit VR and try to fix things if it happens not to be
1730    // the case.
1731
1732    char vr[3];
1733    Fp->read (vr, (size_t)2);
1734    vr[2] = 0;
1735
1736    if( !CheckDocEntryVR(vr) )
1737    {
1738       Fp->seekg(positionOnEntry, std::ios::beg);
1739       return GDCM_UNKNOWN;
1740    }
1741    return vr;
1742 }
1743
1744 /**
1745  * \brief     Check the correspondance between the VR of the header entry
1746  *            and the taken VR. If they are different, the header entry is 
1747  *            updated with the new VR.
1748  * @param     vr    Dicom Value Representation
1749  * @return    false if the VR is incorrect of if the VR isn't referenced
1750  *            otherwise, it returns true
1751 */
1752 bool Document::CheckDocEntryVR(VRKey vr)
1753 {
1754    // CLEANME searching the dicom_vr at each occurence is expensive.
1755    // PostPone this test in an optional integrity check at the end
1756    // of parsing or only in debug mode.
1757    if ( !Global::GetVR()->IsValidVR(vr) )
1758       return false;
1759
1760    return true; 
1761 }
1762
1763 /**
1764  * \brief   Get the transformed value of the header entry. The VR value 
1765  *          is used to define the transformation to operate on the value
1766  * \warning NOT end user intended method !
1767  * @param   entry entry to tranform
1768  * @return  Transformed entry value
1769  */
1770 std::string Document::GetDocEntryValue(DocEntry *entry)
1771 {
1772    if ( IsDocEntryAnInteger(entry) && entry->IsImplicitVR() )
1773    {
1774       std::string val = ((ValEntry *)entry)->GetValue();
1775       std::string vr  = entry->GetVR();
1776       uint32_t length = entry->GetLength();
1777       std::ostringstream s;
1778       int nbInt;
1779
1780       // When short integer(s) are expected, read and convert the following 
1781       // n * 2 bytes properly i.e. as a multivaluated strings
1782       // (each single value is separated fromthe next one by '\'
1783       // as usual for standard multivaluated filels
1784       // Elements with Value Multiplicity > 1
1785       // contain a set of short integers (not a single one) 
1786    
1787       if( vr == "US" || vr == "SS" )
1788       {
1789          uint16_t newInt16;
1790
1791          nbInt = length / 2;
1792          for (int i=0; i < nbInt; i++) 
1793          {
1794             if( i != 0 )
1795             {
1796                s << '\\';
1797             }
1798             newInt16 = ( val[2*i+0] & 0xFF ) + ( ( val[2*i+1] & 0xFF ) << 8);
1799             newInt16 = SwapShort( newInt16 );
1800             s << newInt16;
1801          }
1802       }
1803
1804       // When integer(s) are expected, read and convert the following 
1805       // n * 4 bytes properly i.e. as a multivaluated strings
1806       // (each single value is separated fromthe next one by '\'
1807       // as usual for standard multivaluated filels
1808       // Elements with Value Multiplicity > 1
1809       // contain a set of integers (not a single one) 
1810       else if( vr == "UL" || vr == "SL" )
1811       {
1812          uint32_t newInt32;
1813
1814          nbInt = length / 4;
1815          for (int i=0; i < nbInt; i++) 
1816          {
1817             if( i != 0)
1818             {
1819                s << '\\';
1820             }
1821             newInt32 = ( val[4*i+0] & 0xFF )
1822                     + (( val[4*i+1] & 0xFF ) <<  8 )
1823                     + (( val[4*i+2] & 0xFF ) << 16 )
1824                     + (( val[4*i+3] & 0xFF ) << 24 );
1825             newInt32 = SwapLong( newInt32 );
1826             s << newInt32;
1827          }
1828       }
1829 #ifdef GDCM_NO_ANSI_STRING_STREAM
1830       s << std::ends; // to avoid oddities on Solaris
1831 #endif //GDCM_NO_ANSI_STRING_STREAM
1832       return s.str();
1833    }
1834
1835    return ((ValEntry *)entry)->GetValue();
1836 }
1837
1838 /**
1839  * \brief   Get the reverse transformed value of the header entry. The VR 
1840  *          value is used to define the reverse transformation to operate on
1841  *          the value
1842  * \warning NOT end user intended method !
1843  * @param   entry Entry to reverse transform
1844  * @return  Reverse transformed entry value
1845  */
1846 std::string Document::GetDocEntryUnvalue(DocEntry *entry)
1847 {
1848    if ( IsDocEntryAnInteger(entry) && entry->IsImplicitVR() )
1849    {
1850       std::string vr = entry->GetVR();
1851       std::vector<std::string> tokens;
1852       std::ostringstream s;
1853
1854       if ( vr == "US" || vr == "SS" ) 
1855       {
1856          uint16_t newInt16;
1857
1858          tokens.erase( tokens.begin(), tokens.end()); // clean any previous value
1859          Util::Tokenize (((ValEntry *)entry)->GetValue(), tokens, "\\");
1860          for (unsigned int i=0; i<tokens.size(); i++) 
1861          {
1862             newInt16 = atoi(tokens[i].c_str());
1863             s << (  newInt16        & 0xFF ) 
1864               << (( newInt16 >> 8 ) & 0xFF );
1865          }
1866          tokens.clear();
1867       }
1868       if ( vr == "UL" || vr == "SL")
1869       {
1870          uint32_t newInt32;
1871
1872          tokens.erase(tokens.begin(),tokens.end()); // clean any previous value
1873          Util::Tokenize (((ValEntry *)entry)->GetValue(), tokens, "\\");
1874          for (unsigned int i=0; i<tokens.size();i++) 
1875          {
1876             newInt32 = atoi(tokens[i].c_str());
1877             s << (char)(  newInt32         & 0xFF ) 
1878               << (char)(( newInt32 >>  8 ) & 0xFF )
1879               << (char)(( newInt32 >> 16 ) & 0xFF )
1880               << (char)(( newInt32 >> 24 ) & 0xFF );
1881          }
1882          tokens.clear();
1883       }
1884
1885 #ifdef GDCM_NO_ANSI_STRING_STREAM
1886       s << std::ends; // to avoid oddities on Solaris
1887 #endif //GDCM_NO_ANSI_STRING_STREAM
1888       return s.str();
1889    }
1890
1891    return ((ValEntry *)entry)->GetValue();
1892 }
1893
1894 /**
1895  * \brief   Skip a given Header Entry 
1896  * \warning NOT end user intended method !
1897  * @param   entry entry to skip
1898  */
1899 void Document::SkipDocEntry(DocEntry *entry) 
1900 {
1901    SkipBytes(entry->GetLength());
1902 }
1903
1904 /**
1905  * \brief   Skips to the begining of the next Header Entry 
1906  * \warning NOT end user intended method !
1907  * @param   currentDocEntry entry to skip
1908  */
1909 void Document::SkipToNextDocEntry(DocEntry *currentDocEntry) 
1910 {
1911    Fp->seekg((long)(currentDocEntry->GetOffset()),     std::ios::beg);
1912    Fp->seekg( (long)(currentDocEntry->GetReadLength()),std::ios::cur);
1913 }
1914
1915 /**
1916  * \brief   When the length of an element value is obviously wrong (because
1917  *          the parser went Jabberwocky) one can hope improving things by
1918  *          applying some heuristics.
1919  * @param   entry entry to check
1920  * @param   foundLength first assumption about length    
1921  */
1922 void Document::FixDocEntryFoundLength(DocEntry *entry,
1923                                       uint32_t foundLength)
1924 {
1925    entry->SetReadLength( foundLength ); // will be updated only if a bug is found        
1926    if ( foundLength == 0xffffffff)
1927    {
1928       foundLength = 0;
1929    }
1930    
1931    uint16_t gr   = entry->GetGroup();
1932    uint16_t elem = entry->GetElement(); 
1933      
1934    if ( foundLength % 2)
1935    {
1936       gdcmVerboseMacro( "Warning : Tag with uneven length " << foundLength 
1937         <<  " in x(" << std::hex << gr << "," << elem <<")");
1938    }
1939       
1940    //////// Fix for some naughty General Electric images.
1941    // Allthough not recent many such GE corrupted images are still present
1942    // on Creatis hard disks. Hence this fix shall remain when such images
1943    // are no longer in use (we are talking a few years, here)...
1944    // Note: XMedCom probably uses such a trick since it is able to read
1945    //       those pesky GE images ...
1946    if ( foundLength == 13)
1947    {
1948       // Only happens for this length !
1949       if ( gr != 0x0008 || ( elem != 0x0070 && elem != 0x0080 ) )
1950       {
1951          foundLength = 10;
1952          entry->SetReadLength(10); /// \todo a bug is to be fixed !?
1953       }
1954    }
1955
1956    //////// Fix for some brain-dead 'Leonardo' Siemens images.
1957    // Occurence of such images is quite low (unless one leaves close to a
1958    // 'Leonardo' source. Hence, one might consider commenting out the
1959    // following fix on efficiency reasons.
1960    else if ( gr   == 0x0009 && ( elem == 0x1113 || elem == 0x1114 ) )
1961    {
1962       foundLength = 4;
1963       entry->SetReadLength(4); /// \todo a bug is to be fixed !?
1964    } 
1965  
1966    else if ( entry->GetVR() == "SQ" )
1967    {
1968       foundLength = 0;      // ReadLength is unchanged 
1969    } 
1970     
1971    //////// We encountered a 'delimiter' element i.e. a tag of the form 
1972    // "fffe|xxxx" which is just a marker. Delimiters length should not be
1973    // taken into account.
1974    else if( gr == 0xfffe )
1975    {    
1976      // According to the norm, fffe|0000 shouldn't exist. BUT the Philips
1977      // image gdcmData/gdcm-MR-PHILIPS-16-Multi-Seq.dcm happens to
1978      // causes extra troubles...
1979      if( entry->GetElement() != 0x0000 )
1980      {
1981         foundLength = 0;
1982      }
1983    } 
1984            
1985    entry->SetLength(foundLength);
1986 }
1987
1988 /**
1989  * \brief   Apply some heuristics to predict whether the considered 
1990  *          element value contains/represents an integer or not.
1991  * @param   entry The element value on which to apply the predicate.
1992  * @return  The result of the heuristical predicate.
1993  */
1994 bool Document::IsDocEntryAnInteger(DocEntry *entry)
1995 {
1996    uint16_t elem    = entry->GetElement();
1997    uint16_t group   = entry->GetGroup();
1998    const std::string &vr  = entry->GetVR();
1999    uint32_t length  = entry->GetLength();
2000
2001    // When we have some semantics on the element we just read, and if we
2002    // a priori know we are dealing with an integer, then we shall be
2003    // able to swap it's element value properly.
2004    if ( elem == 0 )  // This is the group length of the group
2005    {  
2006       if ( length == 4 )
2007       {
2008          return true;
2009       }
2010       else 
2011       {
2012          // Allthough this should never happen, still some images have a
2013          // corrupted group length [e.g. have a glance at offset x(8336) of
2014          // gdcmData/gdcm-MR-PHILIPS-16-Multi-Seq.dcm].
2015          // Since for dicom compliant and well behaved headers, the present
2016          // test is useless (and might even look a bit paranoid), when we
2017          // encounter such an ill-formed image, we simply display a warning
2018          // message and proceed on parsing (while crossing fingers).
2019          long filePosition = Fp->tellg();
2020          gdcmVerboseMacro( "Erroneous Group Length element length  on : (" 
2021            << std::hex << group << " , " << elem
2022            << ") -before- position x(" << filePosition << ")"
2023            << "lgt : " << length );
2024       }
2025    }
2026
2027    if ( vr == "UL" || vr == "US" || vr == "SL" || vr == "SS" )
2028    {
2029       return true;
2030    }   
2031    return false;
2032 }
2033
2034 /**
2035  * \brief  Find the Length till the next sequence delimiter
2036  * \warning NOT end user intended method !
2037  * @return 
2038  */
2039
2040 uint32_t Document::FindDocEntryLengthOBOrOW()
2041    throw( FormatUnexpected )
2042 {
2043    // See PS 3.5-2001, section A.4 p. 49 on encapsulation of encoded pixel data.
2044    long positionOnEntry = Fp->tellg();
2045    bool foundSequenceDelimiter = false;
2046    uint32_t totalLength = 0;
2047
2048    while ( !foundSequenceDelimiter )
2049    {
2050       uint16_t group;
2051       uint16_t elem;
2052       try
2053       {
2054          group = ReadInt16();
2055          elem  = ReadInt16();   
2056       }
2057       catch ( FormatError )
2058       {
2059          throw FormatError("Unexpected end of file encountered during ",
2060                            "Document::FindDocEntryLengthOBOrOW()");
2061       }
2062
2063       // We have to decount the group and element we just read
2064       totalLength += 4;
2065      
2066       if ( group != 0xfffe || ( ( elem != 0xe0dd ) && ( elem != 0xe000 ) ) )
2067       {
2068          long filePosition = Fp->tellg();
2069          gdcmVerboseMacro( "Neither an Item tag nor a Sequence delimiter tag on :" 
2070            << std::hex << group << " , " << elem 
2071            << ") -before- position x(" << filePosition << ")" );
2072   
2073          Fp->seekg(positionOnEntry, std::ios::beg);
2074          throw FormatUnexpected( "Neither an Item tag nor a Sequence delimiter tag.");
2075       }
2076
2077       if ( elem == 0xe0dd )
2078       {
2079          foundSequenceDelimiter = true;
2080       }
2081
2082       uint32_t itemLength = ReadInt32();
2083       // We add 4 bytes since we just read the ItemLength with ReadInt32
2084       totalLength += itemLength + 4;
2085       SkipBytes(itemLength);
2086       
2087       if ( foundSequenceDelimiter )
2088       {
2089          break;
2090       }
2091    }
2092    Fp->seekg( positionOnEntry, std::ios::beg);
2093    return totalLength;
2094 }
2095
2096 /**
2097  * \brief Reads a supposed to be 16 Bits integer
2098  *       (swaps it depending on processor endianity) 
2099  * @return read value
2100  */
2101 uint16_t Document::ReadInt16()
2102    throw( FormatError )
2103 {
2104    uint16_t g;
2105    Fp->read ((char*)&g, (size_t)2);
2106    if ( Fp->fail() )
2107    {
2108       throw FormatError( "Document::ReadInt16()", " file error." );
2109    }
2110    if( Fp->eof() )
2111    {
2112       throw FormatError( "Document::ReadInt16()", "EOF." );
2113    }
2114    g = SwapShort(g); 
2115    return g;
2116 }
2117
2118 /**
2119  * \brief  Reads a supposed to be 32 Bits integer
2120  *         (swaps it depending on processor endianity)  
2121  * @return read value
2122  */
2123 uint32_t Document::ReadInt32()
2124    throw( FormatError )
2125 {
2126    uint32_t g;
2127    Fp->read ((char*)&g, (size_t)4);
2128    if ( Fp->fail() )
2129    {
2130       throw FormatError( "Document::ReadInt32()", " file error." );
2131    }
2132    if( Fp->eof() )
2133    {
2134       throw FormatError( "Document::ReadInt32()", "EOF." );
2135    }
2136    g = SwapLong(g);
2137    return g;
2138 }
2139
2140 /**
2141  * \brief skips bytes inside the source file 
2142  * \warning NOT end user intended method !
2143  * @return 
2144  */
2145 void Document::SkipBytes(uint32_t nBytes)
2146 {
2147    //FIXME don't dump the returned value
2148    Fp->seekg((long)nBytes, std::ios::cur);
2149 }
2150
2151 /**
2152  * \brief Loads all the needed Dictionaries
2153  * \warning NOT end user intended method !   
2154  */
2155 void Document::Initialise() 
2156 {
2157    RefPubDict = Global::GetDicts()->GetDefaultPubDict();
2158    RefShaDict = NULL;
2159    RLEInfo  = new RLEFramesInfo;
2160    JPEGInfo = new JPEGFragmentsInfo;
2161    Filetype = Unknown;
2162 }
2163
2164 /**
2165  * \brief   Discover what the swap code is (among little endian, big endian,
2166  *          bad little endian, bad big endian).
2167  *          sw is set
2168  * @return false when we are absolutely sure 
2169  *               it's neither ACR-NEMA nor DICOM
2170  *         true  when we hope ours assuptions are OK
2171  */
2172 bool Document::CheckSwap()
2173 {
2174    // The only guaranted way of finding the swap code is to find a
2175    // group tag since we know it's length has to be of four bytes i.e.
2176    // 0x00000004. Finding the swap code in then straigthforward. Trouble
2177    // occurs when we can't find such group...
2178    
2179    uint32_t  x = 4;  // x : for ntohs
2180    bool net2host; // true when HostByteOrder is the same as NetworkByteOrder
2181    uint32_t  s32;
2182    uint16_t  s16;
2183        
2184    char deb[256];
2185     
2186    // First, compare HostByteOrder and NetworkByteOrder in order to
2187    // determine if we shall need to swap bytes (i.e. the Endian type).
2188    if ( x == ntohs(x) )
2189    {
2190       net2host = true;
2191    }
2192    else
2193    {
2194       net2host = false;
2195    }
2196          
2197    // The easiest case is the one of a DICOM header, since it possesses a
2198    // file preamble where it suffice to look for the string "DICM".
2199    Fp->read(deb, 256);
2200    
2201    char *entCur = deb + 128;
2202    if( memcmp(entCur, "DICM", (size_t)4) == 0 )
2203    {
2204       gdcmVerboseMacro( "Looks like DICOM Version3" );
2205       
2206       // Next, determine the value representation (VR). Let's skip to the
2207       // first element (0002, 0000) and check there if we find "UL" 
2208       // - or "OB" if the 1st one is (0002,0001) -,
2209       // in which case we (almost) know it is explicit VR.
2210       // WARNING: if it happens to be implicit VR then what we will read
2211       // is the length of the group. If this ascii representation of this
2212       // length happens to be "UL" then we shall believe it is explicit VR.
2213       // FIXME: in order to fix the above warning, we could read the next
2214       // element value (or a couple of elements values) in order to make
2215       // sure we are not commiting a big mistake.
2216       // We need to skip :
2217       // * the 128 bytes of File Preamble (often padded with zeroes),
2218       // * the 4 bytes of "DICM" string,
2219       // * the 4 bytes of the first tag (0002, 0000),or (0002, 0001)
2220       // i.e. a total of  136 bytes.
2221       entCur = deb + 136;
2222      
2223       // FIXME : FIXME:
2224       // Sometimes (see : gdcmData/icone.dcm) group 0x0002 *is* Explicit VR,
2225       // but elem 0002,0010 (Transfert Syntax) tells us the file is
2226       // *Implicit* VR.  -and it is !- 
2227       
2228       if( memcmp(entCur, "UL", (size_t)2) == 0 ||
2229           memcmp(entCur, "OB", (size_t)2) == 0 ||
2230           memcmp(entCur, "UI", (size_t)2) == 0 ||
2231           memcmp(entCur, "CS", (size_t)2) == 0 )  // CS, to remove later
2232                                                     // when Write DCM *adds*
2233       // FIXME
2234       // Use Document::dicom_vr to test all the possibilities
2235       // instead of just checking for UL, OB and UI !? group 0000 
2236       {
2237          Filetype = ExplicitVR;
2238          gdcmVerboseMacro( "Explicit Value Representation");
2239       } 
2240       else 
2241       {
2242          Filetype = ImplicitVR;
2243          gdcmVerboseMacro( "Not an explicit Value Representation");
2244       }
2245       
2246       if ( net2host )
2247       {
2248          SwapCode = 4321;
2249          gdcmVerboseMacro( "HostByteOrder != NetworkByteOrder");
2250       }
2251       else 
2252       {
2253          SwapCode = 0;
2254          gdcmVerboseMacro( "HostByteOrder = NetworkByteOrder");
2255       }
2256       
2257       // Position the file position indicator at first tag (i.e.
2258       // after the file preamble and the "DICM" string).
2259       Fp->seekg(0, std::ios::beg);
2260       Fp->seekg ( 132L, std::ios::beg);
2261       return true;
2262    } // End of DicomV3
2263
2264    // Alas, this is not a DicomV3 file and whatever happens there is no file
2265    // preamble. We can reset the file position indicator to where the data
2266    // is (i.e. the beginning of the file).
2267    gdcmVerboseMacro( "Not a DICOM Version3 file");
2268    Fp->seekg(0, std::ios::beg);
2269
2270    // Our next best chance would be to be considering a 'clean' ACR/NEMA file.
2271    // By clean we mean that the length of the first tag is written down.
2272    // If this is the case and since the length of the first group HAS to be
2273    // four (bytes), then determining the proper swap code is straightforward.
2274
2275    entCur = deb + 4;
2276    // We assume the array of char we are considering contains the binary
2277    // representation of a 32 bits integer. Hence the following dirty
2278    // trick :
2279    s32 = *((uint32_t *)(entCur));
2280
2281    switch( s32 )
2282    {
2283       case 0x00040000 :
2284          SwapCode = 3412;
2285          Filetype = ACR;
2286          return true;
2287       case 0x04000000 :
2288          SwapCode = 4321;
2289          Filetype = ACR;
2290          return true;
2291       case 0x00000400 :
2292          SwapCode = 2143;
2293          Filetype = ACR;
2294          return true;
2295       case 0x00000004 :
2296          SwapCode = 0;
2297          Filetype = ACR;
2298          return true;
2299       default :
2300          // We are out of luck. It is not a DicomV3 nor a 'clean' ACR/NEMA file.
2301          // It is time for despaired wild guesses. 
2302          // So, let's check if this file wouldn't happen to be 'dirty' ACR/NEMA,
2303          //  i.e. the 'group length' element is not present :     
2304          
2305          //  check the supposed-to-be 'group number'
2306          //  in ( 0x0001 .. 0x0008 )
2307          //  to determine ' SwapCode' value .
2308          //  Only 0 or 4321 will be possible 
2309          //  (no oportunity to check for the formerly well known
2310          //  ACR-NEMA 'Bad Big Endian' or 'Bad Little Endian' 
2311          //  if unsuccessfull (i.e. neither 0x0002 nor 0x0200 etc -3, 4, ..., 8-) 
2312          //  the file IS NOT ACR-NEMA nor DICOM V3
2313          //  Find a trick to tell it the caller...
2314       
2315          s16 = *((uint16_t *)(deb));
2316       
2317          switch ( s16 )
2318          {
2319             case 0x0001 :
2320             case 0x0002 :
2321             case 0x0003 :
2322             case 0x0004 :
2323             case 0x0005 :
2324             case 0x0006 :
2325             case 0x0007 :
2326             case 0x0008 :
2327                SwapCode = 0;
2328                Filetype = ACR;
2329                return true;
2330             case 0x0100 :
2331             case 0x0200 :
2332             case 0x0300 :
2333             case 0x0400 :
2334             case 0x0500 :
2335             case 0x0600 :
2336             case 0x0700 :
2337             case 0x0800 :
2338                SwapCode = 4321;
2339                Filetype = ACR;
2340                return true;
2341             default :
2342                gdcmVerboseMacro( "ACR/NEMA unfound swap info (Really hopeless !)");
2343                Filetype = Unknown;
2344                return false;
2345          }
2346          // Then the only info we have is the net2host one.
2347          //if (! net2host )
2348          //   SwapCode = 0;
2349          //else
2350          //  SwapCode = 4321;
2351          //return;
2352    }
2353 }
2354
2355
2356
2357 /**
2358  * \brief Restore the unproperly loaded values i.e. the group, the element
2359  *        and the dictionary entry depending on them. 
2360  */
2361 void Document::SwitchSwapToBigEndian() 
2362 {
2363    gdcmVerboseMacro( "Switching to BigEndian mode.");
2364    if ( SwapCode == 0    ) 
2365    {
2366       SwapCode = 4321;
2367    }
2368    else if ( SwapCode == 4321 ) 
2369    {
2370       SwapCode = 0;
2371    }
2372    else if ( SwapCode == 3412 ) 
2373    {
2374       SwapCode = 2143;
2375    }
2376    else if ( SwapCode == 2143 )
2377    {
2378       SwapCode = 3412;
2379    }
2380 }
2381
2382 /**
2383  * \brief  during parsing, Header Elements too long are not loaded in memory 
2384  * @param newSize
2385  */
2386 void Document::SetMaxSizeLoadEntry(long newSize) 
2387 {
2388    if ( newSize < 0 )
2389    {
2390       return;
2391    }
2392    if ((uint32_t)newSize >= (uint32_t)0xffffffff )
2393    {
2394       MaxSizeLoadEntry = 0xffffffff;
2395       return;
2396    }
2397    MaxSizeLoadEntry = newSize;
2398 }
2399
2400
2401 /**
2402  * \brief Header Elements too long will not be printed
2403  * \todo  See comments of \ref Document::MAX_SIZE_PRINT_ELEMENT_VALUE 
2404  * @param newSize
2405  */
2406 void Document::SetMaxSizePrintEntry(long newSize) 
2407 {
2408    //DOH !! This is exactly SetMaxSizeLoadEntry FIXME FIXME
2409    if ( newSize < 0 )
2410    {
2411       return;
2412    }
2413    if ((uint32_t)newSize >= (uint32_t)0xffffffff )
2414    {
2415       MaxSizePrintEntry = 0xffffffff;
2416       return;
2417    }
2418    MaxSizePrintEntry = newSize;
2419 }
2420
2421
2422
2423 /**
2424  * \brief   Handle broken private tag from Philips NTSCAN
2425  *          where the endianess is being switch to BigEndian for no
2426  *          apparent reason
2427  * @return  no return
2428  */
2429 void Document::HandleBrokenEndian(uint16_t group, uint16_t elem)
2430 {
2431    // Endian reversion. Some files contain groups of tags with reversed endianess.
2432    static int reversedEndian = 0;
2433    // try to fix endian switching in the middle of headers
2434    if ((group == 0xfeff) && (elem == 0x00e0))
2435    {
2436      // start endian swap mark for group found
2437      reversedEndian++;
2438      SwitchSwapToBigEndian();
2439      // fix the tag
2440      group = 0xfffe;
2441      elem = 0xe000;
2442    } 
2443    else if (group == 0xfffe && elem == 0xe00d && reversedEndian) 
2444    {
2445      // end of reversed endian group
2446      reversedEndian--;
2447      SwitchSwapToBigEndian();
2448    }
2449 }
2450
2451 /**
2452  * \brief   Read the next tag but WITHOUT loading it's value
2453  *          (read the 'Group Number', the 'Element Number',
2454  *           gets the Dict Entry
2455  *          gets the VR, gets the length, gets the offset value)
2456  * @return  On succes the newly created DocEntry, NULL on failure.      
2457  */
2458 DocEntry *Document::ReadNextDocEntry()
2459 {
2460    uint16_t group;
2461    uint16_t elem;
2462
2463    try
2464    {
2465       group = ReadInt16();
2466       elem  = ReadInt16();
2467    }
2468    catch ( FormatError e )
2469    {
2470       // We reached the EOF (or an error occured) therefore 
2471       // header parsing has to be considered as finished.
2472       //std::cout << e;
2473       return 0;
2474    }
2475
2476    HandleBrokenEndian(group, elem);
2477    std::string vr = FindDocEntryVR();
2478    std::string realVR = vr;
2479
2480    if( vr == GDCM_UNKNOWN)
2481    {
2482       DictEntry *dictEntry = GetDictEntry(group,elem);
2483       if( dictEntry )
2484          realVR = dictEntry->GetVR();
2485    }
2486
2487    DocEntry *newEntry;
2488    if( Global::GetVR()->IsVROfSequence(realVR) )
2489       newEntry = NewSeqEntry(group, elem);
2490    else if( Global::GetVR()->IsVROfStringRepresentable(realVR) )
2491       newEntry = NewValEntry(group, elem,vr);
2492    else
2493       newEntry = NewBinEntry(group, elem,vr);
2494
2495    if( vr == GDCM_UNKNOWN )
2496    {
2497       if( Filetype == ExplicitVR )
2498       {
2499          // We thought this was explicit VR, but we end up with an
2500          // implicit VR tag. Let's backtrack.   
2501          std::string msg;
2502          msg = Util::Format("Falsely explicit vr file (%04x,%04x)\n", 
2503                        newEntry->GetGroup(), newEntry->GetElement());
2504          gdcmVerboseMacro( msg.c_str() );
2505       }
2506       newEntry->SetImplicitVR();
2507    }
2508
2509    try
2510    {
2511       FindDocEntryLength(newEntry);
2512    }
2513    catch ( FormatError e )
2514    {
2515       // Call it quits
2516       //std::cout << e;
2517       delete newEntry;
2518       return 0;
2519    }
2520
2521    newEntry->SetOffset(Fp->tellg());  
2522
2523    return newEntry;
2524 }
2525
2526
2527 /**
2528  * \brief   Generate a free TagKey i.e. a TagKey that is not present
2529  *          in the TagHt dictionary.
2530  * @param   group The generated tag must belong to this group.  
2531  * @return  The element of tag with given group which is fee.
2532  */
2533 uint32_t Document::GenerateFreeTagKeyInGroup(uint16_t group) 
2534 {
2535    for (uint32_t elem = 0; elem < UINT32_MAX; elem++) 
2536    {
2537       TagKey key = DictEntry::TranslateToKey(group, elem);
2538       if (TagHT.count(key) == 0)
2539       {
2540          return elem;
2541       }
2542    }
2543    return UINT32_MAX;
2544 }
2545
2546 /**
2547  * \brief   Assuming the internal file pointer \ref Document::Fp 
2548  *          is placed at the beginning of a tag check whether this
2549  *          tag is (TestGroup, TestElement).
2550  * \warning On success the internal file pointer \ref Document::Fp
2551  *          is modified to point after the tag.
2552  *          On failure (i.e. when the tag wasn't the expected tag
2553  *          (TestGroup, TestElement) the internal file pointer
2554  *          \ref Document::Fp is restored to it's original position.
2555  * @param   testGroup   The expected group of the tag.
2556  * @param   testElement The expected Element of the tag.
2557  * @return  True on success, false otherwise.
2558  */
2559 bool Document::ReadTag(uint16_t testGroup, uint16_t testElement)
2560 {
2561    long positionOnEntry = Fp->tellg();
2562    long currentPosition = Fp->tellg();          // On debugging purposes
2563
2564    //// Read the Item Tag group and element, and make
2565    // sure they are what we expected:
2566    uint16_t itemTagGroup;
2567    uint16_t itemTagElement;
2568    try
2569    {
2570       itemTagGroup   = ReadInt16();
2571       itemTagElement = ReadInt16();
2572    }
2573    catch ( FormatError e )
2574    {
2575       //std::cerr << e << std::endl;
2576       return false;
2577    }
2578    if ( itemTagGroup != testGroup || itemTagElement != testElement )
2579    {
2580       gdcmVerboseMacro( "Wrong Item Tag found:"
2581        << "   We should have found tag ("
2582        << std::hex << testGroup << "," << testElement << ")" << std::endl
2583        << "   but instead we encountered tag ("
2584        << std::hex << itemTagGroup << "," << itemTagElement << ")"
2585        << std::dec
2586        << "  at address: " << (unsigned int)currentPosition );
2587       Fp->seekg(positionOnEntry, std::ios::beg);
2588
2589       return false;
2590    }
2591    return true;
2592 }
2593
2594 /**
2595  * \brief   Assuming the internal file pointer \ref Document::Fp 
2596  *          is placed at the beginning of a tag (TestGroup, TestElement),
2597  *          read the length associated to the Tag.
2598  * \warning On success the internal file pointer \ref Document::Fp
2599  *          is modified to point after the tag and it's length.
2600  *          On failure (i.e. when the tag wasn't the expected tag
2601  *          (TestGroup, TestElement) the internal file pointer
2602  *          \ref Document::Fp is restored to it's original position.
2603  * @param   testGroup   The expected group of the tag.
2604  * @param   testElement The expected Element of the tag.
2605  * @return  On success returns the length associated to the tag. On failure
2606  *          returns 0.
2607  */
2608 uint32_t Document::ReadTagLength(uint16_t testGroup, uint16_t testElement)
2609 {
2610    long positionOnEntry = Fp->tellg();
2611    (void)positionOnEntry;
2612
2613    if ( !ReadTag(testGroup, testElement) )
2614    {
2615       return 0;
2616    }
2617                                                                                 
2618    //// Then read the associated Item Length
2619    long currentPosition = Fp->tellg();
2620    uint32_t itemLength  = ReadInt32();
2621    {
2622       gdcmVerboseMacro( "Basic Item Length is: "
2623         << itemLength << std::endl
2624         << "  at address: " << (unsigned int)currentPosition);
2625    }
2626    return itemLength;
2627 }
2628
2629 /**
2630  * \brief When parsing the Pixel Data of an encapsulated file, read
2631  *        the basic offset table (when present, and BTW dump it).
2632  */
2633 void Document::ReadAndSkipEncapsulatedBasicOffsetTable()
2634 {
2635    //// Read the Basic Offset Table Item Tag length...
2636    uint32_t itemLength = ReadTagLength(0xfffe, 0xe000);
2637
2638    // When present, read the basic offset table itself.
2639    // Notes: - since the presence of this basic offset table is optional
2640    //          we can't rely on it for the implementation, and we will simply
2641    //          trash it's content (when present).
2642    //        - still, when present, we could add some further checks on the
2643    //          lengths, but we won't bother with such fuses for the time being.
2644    if ( itemLength != 0 )
2645    {
2646       char *basicOffsetTableItemValue = new char[itemLength + 1];
2647       Fp->read(basicOffsetTableItemValue, itemLength);
2648
2649 #ifdef GDCM_DEBUG
2650       for (unsigned int i=0; i < itemLength; i += 4 )
2651       {
2652          uint32_t individualLength = str2num( &basicOffsetTableItemValue[i],
2653                                               uint32_t);
2654          gdcmVerboseMacro( "Read one length: " << 
2655                           std::hex << individualLength );
2656       }
2657 #endif //GDCM_DEBUG
2658
2659       delete[] basicOffsetTableItemValue;
2660    }
2661 }
2662
2663 /**
2664  * \brief Parse pixel data from disk of [multi-]fragment RLE encoding.
2665  *        Compute the RLE extra information and store it in \ref RLEInfo
2666  *        for later pixel retrieval usage.
2667  */
2668 void Document::ComputeRLEInfo()
2669 {
2670    TransferSyntaxType ts = GetTransferSyntax();
2671    if ( ts != RLELossless )
2672    {
2673       return;
2674    }
2675
2676    // Encoded pixel data: for the time being we are only concerned with
2677    // Jpeg or RLE Pixel data encodings.
2678    // As stated in PS 3.5-2003, section 8.2 p44:
2679    // "If sent in Encapsulated Format (i.e. other than the Native Format) the
2680    //  value representation OB is used".
2681    // Hence we expect an OB value representation. Concerning OB VR,
2682    // the section PS 3.5-2003, section A.4.c p 58-59, states:
2683    // "For the Value Representations OB and OW, the encoding shall meet the
2684    //   following specifications depending on the Data element tag:"
2685    //   [...snip...]
2686    //    - the first item in the sequence of items before the encoded pixel
2687    //      data stream shall be basic offset table item. The basic offset table
2688    //      item value, however, is not required to be present"
2689
2690    ReadAndSkipEncapsulatedBasicOffsetTable();
2691
2692    // Encapsulated RLE Compressed Images (see PS 3.5-2003, Annex G)
2693    // Loop on the individual frame[s] and store the information
2694    // on the RLE fragments in a RLEFramesInfo.
2695    // Note: - when only a single frame is present, this is a
2696    //         classical image.
2697    //       - when more than one frame are present, then we are in 
2698    //         the case of a multi-frame image.
2699    long frameLength;
2700    while ( (frameLength = ReadTagLength(0xfffe, 0xe000)) )
2701    { 
2702       // Parse the RLE Header and store the corresponding RLE Segment
2703       // Offset Table information on fragments of this current Frame.
2704       // Note that the fragment pixels themselves are not loaded
2705       // (but just skipped).
2706       long frameOffset = Fp->tellg();
2707
2708       uint32_t nbRleSegments = ReadInt32();
2709       if ( nbRleSegments > 16 )
2710       {
2711          // There should be at most 15 segments (refer to RLEFrame class)
2712          gdcmVerboseMacro( "Too many segments.");
2713       }
2714  
2715       uint32_t rleSegmentOffsetTable[16];
2716       for( int k = 1; k <= 15; k++ )
2717       {
2718          rleSegmentOffsetTable[k] = ReadInt32();
2719       }
2720
2721       // Deduce from both the RLE Header and the frameLength the
2722       // fragment length, and again store this info in a
2723       // RLEFramesInfo.
2724       long rleSegmentLength[15];
2725       // skipping (not reading) RLE Segments
2726       if ( nbRleSegments > 1)
2727       {
2728          for(unsigned int k = 1; k <= nbRleSegments-1; k++)
2729          {
2730              rleSegmentLength[k] =  rleSegmentOffsetTable[k+1]
2731                                   - rleSegmentOffsetTable[k];
2732              SkipBytes(rleSegmentLength[k]);
2733           }
2734        }
2735
2736        rleSegmentLength[nbRleSegments] = frameLength 
2737                                       - rleSegmentOffsetTable[nbRleSegments];
2738        SkipBytes(rleSegmentLength[nbRleSegments]);
2739
2740        // Store the collected info
2741        RLEFrame *newFrameInfo = new RLEFrame;
2742        newFrameInfo->NumberFragments = nbRleSegments;
2743        for( unsigned int uk = 1; uk <= nbRleSegments; uk++ )
2744        {
2745           newFrameInfo->Offset[uk] = frameOffset + rleSegmentOffsetTable[uk];
2746           newFrameInfo->Length[uk] = rleSegmentLength[uk];
2747        }
2748        RLEInfo->Frames.push_back( newFrameInfo );
2749    }
2750
2751    // Make sure that at the end of the item we encounter a 'Sequence
2752    // Delimiter Item':
2753    if ( !ReadTag(0xfffe, 0xe0dd) )
2754    {
2755       gdcmVerboseMacro( "No sequence delimiter item at end of RLE item sequence");
2756    }
2757 }
2758
2759 /**
2760  * \brief Parse pixel data from disk of [multi-]fragment Jpeg encoding.
2761  *        Compute the jpeg extra information (fragment[s] offset[s] and
2762  *        length) and store it[them] in \ref JPEGInfo for later pixel
2763  *        retrieval usage.
2764  */
2765 void Document::ComputeJPEGFragmentInfo()
2766 {
2767    // If you need to, look for comments of ComputeRLEInfo().
2768    if ( ! IsJPEG() )
2769    {
2770       return;
2771    }
2772
2773    ReadAndSkipEncapsulatedBasicOffsetTable();
2774
2775    // Loop on the fragments[s] and store the parsed information in a
2776    // JPEGInfo.
2777    long fragmentLength;
2778    while ( (fragmentLength = ReadTagLength(0xfffe, 0xe000)) )
2779    { 
2780       long fragmentOffset = Fp->tellg();
2781
2782        // Store the collected info
2783        JPEGFragment *newFragment = new JPEGFragment;
2784        newFragment->Offset = fragmentOffset;
2785        newFragment->Length = fragmentLength;
2786        JPEGInfo->Fragments.push_back( newFragment );
2787
2788        SkipBytes( fragmentLength );
2789    }
2790
2791    // Make sure that at the end of the item we encounter a 'Sequence
2792    // Delimiter Item':
2793    if ( !ReadTag(0xfffe, 0xe0dd) )
2794    {
2795       gdcmVerboseMacro( "No sequence delimiter item at end of JPEG item sequence");
2796    }
2797 }
2798
2799 /**
2800  * \brief Walk recursively the given \ref DocEntrySet, and feed
2801  *        the given hash table (\ref TagDocEntryHT) with all the
2802  *        \ref DocEntry (Dicom entries) encountered.
2803  *        This method does the job for \ref BuildFlatHashTable.
2804  * @param builtHT Where to collect all the \ref DocEntry encountered
2805  *        when recursively walking the given set.
2806  * @param set The structure to be traversed (recursively).
2807  */
2808 void Document::BuildFlatHashTableRecurse( TagDocEntryHT &builtHT,
2809                                           DocEntrySet *set )
2810
2811    if (ElementSet *elementSet = dynamic_cast< ElementSet* > ( set ) )
2812    {
2813       TagDocEntryHT const &currentHT = elementSet->GetTagHT();
2814       for( TagDocEntryHT::const_iterator i  = currentHT.begin();
2815                                          i != currentHT.end();
2816                                        ++i)
2817       {
2818          DocEntry *entry = i->second;
2819          if ( SeqEntry *seqEntry = dynamic_cast<SeqEntry*>(entry) )
2820          {
2821             const ListSQItem& items = seqEntry->GetSQItems();
2822             for( ListSQItem::const_iterator item  = items.begin();
2823                                             item != items.end();
2824                                           ++item)
2825             {
2826                BuildFlatHashTableRecurse( builtHT, *item );
2827             }
2828             continue;
2829          }
2830          builtHT[entry->GetKey()] = entry;
2831       }
2832       return;
2833     }
2834
2835    if (SQItem *SQItemSet = dynamic_cast< SQItem* > ( set ) )
2836    {
2837       const ListDocEntry& currentList = SQItemSet->GetDocEntries();
2838       for (ListDocEntry::const_iterator i  = currentList.begin();
2839                                         i != currentList.end();
2840                                       ++i)
2841       {
2842          DocEntry *entry = *i;
2843          if ( SeqEntry *seqEntry = dynamic_cast<SeqEntry*>(entry) )
2844          {
2845             const ListSQItem& items = seqEntry->GetSQItems();
2846             for( ListSQItem::const_iterator item  = items.begin();
2847                                             item != items.end();
2848                                           ++item)
2849             {
2850                BuildFlatHashTableRecurse( builtHT, *item );
2851             }
2852             continue;
2853          }
2854          builtHT[entry->GetKey()] = entry;
2855       }
2856
2857    }
2858 }
2859
2860 /**
2861  * \brief Build a \ref TagDocEntryHT (i.e. a std::map<>) from the current
2862  *        Document.
2863  *
2864  *        The structure used by a Document (through \ref ElementSet),
2865  *        in order to hold the parsed entries of a Dicom header, is a recursive
2866  *        one. This is due to the fact that the sequences (when present)
2867  *        can be nested. Additionaly, the sequence items (represented in
2868  *        gdcm as \ref SQItem) add an extra complexity to the data
2869  *        structure. Hence, a gdcm user whishing to visit all the entries of
2870  *        a Dicom header will need to dig in the gdcm internals (which
2871  *        implies exposing all the internal data structures to the API).
2872  *        In order to avoid this burden to the user, \ref BuildFlatHashTable
2873  *        recursively builds a temporary hash table, which holds all the
2874  *        Dicom entries in a flat structure (a \ref TagDocEntryHT i.e. a
2875  *        std::map<>).
2876  * \warning Of course there is NO integrity constrain between the 
2877  *        returned \ref TagDocEntryHT and the \ref ElementSet used
2878  *        to build it. Hence if the underlying \ref ElementSet is
2879  *        altered, then it is the caller responsability to invoke 
2880  *        \ref BuildFlatHashTable again...
2881  * @return The flat std::map<> we juste build.
2882  */
2883 TagDocEntryHT *Document::BuildFlatHashTable()
2884 {
2885    TagDocEntryHT *FlatHT = new TagDocEntryHT;
2886    BuildFlatHashTableRecurse( *FlatHT, this );
2887    return FlatHT;
2888 }
2889
2890
2891
2892 /**
2893  * \brief   Compares two documents, according to \ref DicomDir rules
2894  * \warning Does NOT work with ACR-NEMA files
2895  * \todo    Find a trick to solve the pb (use RET fields ?)
2896  * @param   document
2897  * @return  true if 'smaller'
2898  */
2899 bool Document::operator<(Document &document)
2900 {
2901    // Patient Name
2902    std::string s1 = GetEntry(0x0010,0x0010);
2903    std::string s2 = document.GetEntry(0x0010,0x0010);
2904    if(s1 < s2)
2905    {
2906       return true;
2907    }
2908    else if( s1 > s2 )
2909    {
2910       return false;
2911    }
2912    else
2913    {
2914       // Patient ID
2915       s1 = GetEntry(0x0010,0x0020);
2916       s2 = document.GetEntry(0x0010,0x0020);
2917       if ( s1 < s2 )
2918       {
2919          return true;
2920       }
2921       else if ( s1 > s2 )
2922       {
2923          return false;
2924       }
2925       else
2926       {
2927          // Study Instance UID
2928          s1 = GetEntry(0x0020,0x000d);
2929          s2 = document.GetEntry(0x0020,0x000d);
2930          if ( s1 < s2 )
2931          {
2932             return true;
2933          }
2934          else if( s1 > s2 )
2935          {
2936             return false;
2937          }
2938          else
2939          {
2940             // Serie Instance UID
2941             s1 = GetEntry(0x0020,0x000e);
2942             s2 = document.GetEntry(0x0020,0x000e);    
2943             if ( s1 < s2 )
2944             {
2945                return true;
2946             }
2947             else if( s1 > s2 )
2948             {
2949                return false;
2950             }
2951          }
2952       }
2953    }
2954    return false;
2955 }
2956
2957
2958 /**
2959  * \brief   Re-computes the length of a ACR-NEMA/Dicom group from a DcmHeader
2960  * @param filetype Type of the File to be written 
2961  */
2962 int Document::ComputeGroup0002Length( FileType filetype ) 
2963 {
2964    uint16_t gr, el;
2965    std::string vr;
2966    
2967    int groupLength = 0;
2968    bool found0002 = false;   
2969   
2970    // for each zero-level Tag in the DCM Header
2971    DocEntry *entry;
2972
2973    Initialize();
2974    entry = GetNextEntry();
2975    while(entry)
2976    {
2977       gr = entry->GetGroup();
2978
2979       if (gr == 0x0002)
2980       {
2981          found0002 = true;
2982
2983          el = entry->GetElement();
2984          vr = entry->GetVR();            
2985  
2986          if (filetype == ExplicitVR) 
2987          {
2988             if ( (vr == "OB") || (vr == "OW") || (vr == "SQ") ) 
2989             {
2990                groupLength +=  4; // explicit VR AND OB, OW, SQ : 4 more bytes
2991             }
2992          }
2993          groupLength += 2 + 2 + 4 + entry->GetLength();   
2994       }
2995       else if (found0002 )
2996          break;
2997
2998       entry = GetNextEntry();
2999    }
3000    return groupLength; 
3001 }
3002
3003 } // end namespace gdcm
3004
3005 //-----------------------------------------------------------------------------