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