]> Creatis software - gdcm.git/blob - src/gdcmDocument.cxx
'if then', 'or else' don't exist in C++
[gdcm.git] / src / gdcmDocument.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmDocument.cxx,v $
5   Language:  C++
6   Date:      $Date: 2006/02/08 17:34:47 $
7   Version:   $Revision: 1.340 $
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 "gdcmSeqEntry.h"
21 #include "gdcmGlobal.h"
22 #include "gdcmUtil.h"
23 #include "gdcmDebug.h"
24 #include "gdcmTS.h"
25 #include "gdcmDictSet.h"
26 #include "gdcmDocEntrySet.h"
27 #include "gdcmSQItem.h"
28 #include "gdcmDataEntry.h"
29
30 #include <vector>
31 #include <iomanip>
32 #include <fstream>
33 #include <ctype.h>  // for isdigit
34 #include <stdlib.h> // for atoi
35
36 #if defined(__BORLANDC__)
37    #include <mem.h> // for memset
38 #endif 
39
40 namespace gdcm 
41 {
42 //-----------------------------------------------------------------------------
43
44 // Refer to Document::SetMaxSizeLoadEntry()
45 const unsigned int Document::MAX_SIZE_LOAD_ELEMENT_VALUE = 0xfff; // 4096
46
47 //-----------------------------------------------------------------------------
48 // Constructor / Destructor
49 // Constructors and destructors are protected to avoid user to invoke directly
50
51 /**
52  * \brief This default constructor neither loads nor parses the file. 
53  *        You should then invoke \ref Document::Load.
54  *         
55  */
56 Document::Document() 
57          :ElementSet()
58 {
59    Fp = 0;
60
61    SetMaxSizeLoadEntry(MAX_SIZE_LOAD_ELEMENT_VALUE);
62    Initialize();
63    SwapCode = 1234;
64    Filetype = ExplicitVR;
65    // Load will set it to true if sucessfull
66    Group0002Parsed = false;
67    IsDocumentAlreadyLoaded = false;
68    IsDocumentModified = true;
69    LoadMode = LD_ALL; // default : load everything, later
70    SetFileName("");
71 }
72
73 /**
74  * \brief   Canonical destructor.
75  */
76 Document::~Document ()
77 {
78    CloseFile();
79 }
80
81 //-----------------------------------------------------------------------------
82 // Public
83 /**
84  * \brief   Loader. use SetLoadMode(), SetFileName() before ! 
85  * @return false if file cannot be open or no swap info was found,
86  *         or no tag was found.
87  */
88 bool Document::Load(  ) 
89 {
90    if ( GetFileName() == "" )
91    {
92       gdcmWarningMacro( "Use SetFileName, before !" );
93       return false;
94    }
95    return DoTheLoadingDocumentJob( );
96 }
97
98 /**
99  * \brief   Performs the Loading Job (internal use only)  
100  * @return false if file cannot be open or no swap info was found,
101  *         or no tag was found.
102  */
103 bool Document::DoTheLoadingDocumentJob(  ) 
104 {
105    if ( ! IsDocumentModified ) // Nothing to do !
106       return true;
107
108    ClearEntry();
109
110    Fp = 0;
111    if ( !OpenFile() )
112    {
113       // warning already performed in OpenFile()
114       Filetype = Unknown;
115       return false;
116    }
117
118    Group0002Parsed = false;
119
120    gdcmDebugMacro( "Starting parsing of file: " << Filename.c_str());
121    
122    // Computes the total length of the file
123    Fp->seekg(0, std::ios::end);  // Once per Document !
124    long lgt = Fp->tellg();       // Once per Document !   
125    Fp->seekg(0, std::ios::beg);  // Once per Document !
126
127    // CheckSwap returns a boolean 
128    // (false if no swap info of any kind was found)
129    if (! CheckSwap() )
130    {
131       gdcmWarningMacro( "Neither a DICOM V3 nor an ACR-NEMA file: " 
132                    << Filename.c_str());
133       CloseFile(); 
134       return false;      
135     }
136
137    long beg = Fp->tellg();      // just after DICOM preamble (if any)
138
139    lgt -= beg;                  // remaining length to parse    
140
141    // Recursive call.
142    // Loading is done during parsing
143    ParseDES( this, beg, lgt, false); // delim_mode is first defaulted to false
144
145    if ( IsEmpty() )
146    { 
147       gdcmErrorMacro( "No tag in internal hash table for: "
148                         << Filename.c_str());
149       CloseFile(); 
150       return false;
151    }
152    IsDocumentAlreadyLoaded = true;
153
154    Fp->seekg( 0, std::ios::beg);  // Once per Document
155    
156    // Load 'non string' values
157       
158    std::string PhotometricInterpretation = GetEntryString(0x0028,0x0004);   
159    if ( PhotometricInterpretation == "PALETTE COLOR " )
160    {
161    // FIXME
162    // Probabely this line should be outside the 'if'
163    // Try to find an image sample holding a 'gray LUT'
164       LoadEntryBinArea(0x0028,0x1200);  // gray LUT
165    
166       /// FIXME
167       /// --> FIXME : The difference between BinEntry and DataEntry
168       /// --> no longer exists, but the alteration of Dicom Dictionary remains.
169       /// --> Old comment restored on purpose.
170       /// --> New one (replacing both BinEntry and ValEntry by DataEntry)
171       /// --> had absolutely no meaning.
172       /// --> The whole comment will be removed when the stuff is cleaned !
173       /// -->
174       /// The tags refered by the three following lines used to be CORRECTLY
175       /// defined as having an US Value Representation in the public
176       /// dictionary. BUT the semantics implied by the three following
177       /// lines state that the corresponding tag contents are in fact
178       /// the ones of a BinEntry.
179       /// In order to fix things "Quick and Dirty" the dictionary was
180       /// altered on PURPOSE but now contains a WRONG value.
181       /// In order to fix things and restore the dictionary to its
182       /// correct value, one needs to decide of the semantics by deciding
183       /// whether the following tags are either :
184       /// - multivaluated US, and hence loaded as ValEntry, but afterwards
185       ///   also used as BinEntry, which requires the proper conversion,
186       /// - OW, and hence loaded as BinEntry, but afterwards also used
187       ///   as ValEntry, which requires the proper conversion.
188       
189       // --> OB (byte aray) or OW (short int aray)
190       // The actual VR has to be deduced from other entries.
191       // Our way of loading them may fail in some cases :
192       // We must or not SwapByte depending on other field values.
193              
194       LoadEntryBinArea(0x0028,0x1201);  // R    LUT
195       LoadEntryBinArea(0x0028,0x1202);  // G    LUT
196       LoadEntryBinArea(0x0028,0x1203);  // B    LUT
197       
198       // Segmented Red   Palette Color LUT Data
199       LoadEntryBinArea(0x0028,0x1221);
200       // Segmented Green Palette Color LUT Data
201       LoadEntryBinArea(0x0028,0x1222);
202       // Segmented Blue  Palette Color LUT Data
203       LoadEntryBinArea(0x0028,0x1223);
204    }
205  
206    //FIXME later : how to use it?
207    SeqEntry *modLutSeq = GetSeqEntry(0x0028,0x3000);
208    if ( modLutSeq !=0 )
209    {
210       SQItem *sqi= modLutSeq->GetFirstSQItem();
211       if ( sqi != 0 )
212       {
213          DataEntry *dataEntry = sqi->GetDataEntry(0x0028,0x3006);
214          if ( dataEntry != 0 )
215          {
216             if ( dataEntry->GetLength() != 0 )
217             {
218                // FIXME : CTX dependent means : contexted dependant.
219                //         see upper comment.
220                LoadEntryBinArea(dataEntry);    //LUT Data (CTX dependent)
221             }   
222         }
223      }      
224    }
225
226    // Force Loading some more elements if user asked to.
227
228    gdcm::DocEntry *d;
229    for (ListElements::iterator it = UserForceLoadList.begin();  
230                                it != UserForceLoadList.end();
231                              ++it)
232    {
233       gdcmDebugMacro( "Force Load " << std::hex 
234                        << (*it).Group << "|" <<(*it).Elem );
235   
236       d = GetDocEntry( (*it).Group, (*it).Elem);
237   
238       if ( d == NULL)
239       {
240          gdcmWarningMacro( "You asked toForce Load "  << std::hex
241                           << (*it).Group <<"|"<< (*it).Elem
242                           << " that doesn't exist" );
243          continue;
244       }
245
246       LoadDocEntry(d, true);
247    }
248
249    CloseFile(); 
250   
251    // ----------------------------
252    // Specific code to allow gdcm to read ACR-LibIDO formated images
253    // Note: ACR-LibIDO is an extension of the ACR standard that was
254    //       used at CREATIS. For the time being (say a couple of years)
255    //       we keep this kludge to allow CREATIS users 
256    //       reading their old images.
257    //
258    // if recognition code tells us we deal with a LibIDO image
259    // we switch lineNumber and columnNumber
260    //
261    std::string RecCode;
262    RecCode = GetEntryString(0x0008, 0x0010); // recognition code (RET)
263    if (RecCode == "ACRNEMA_LIBIDO_1.1" ||
264        RecCode == "CANRME_AILIBOD1_1." )  // for brain-damaged softwares
265                                           // with "little-endian strings"
266    {
267          Filetype = ACR_LIBIDO; 
268          std::string rows    = GetEntryString(0x0028, 0x0010);
269          std::string columns = GetEntryString(0x0028, 0x0011);
270          SetEntryString(columns, 0x0028, 0x0010);
271          SetEntryString(rows   , 0x0028, 0x0011);
272    }
273    // --- End of ACR-LibIDO kludge --- 
274    return true;
275 }
276
277
278 /**
279  * \brief Adds a new element we want to load anyway
280  * @param   group  Group number of the target tag.
281  * @param   elem Element number of the target tag.
282  */
283 void Document::AddForceLoadElement (uint16_t group, uint16_t elem) 
284
285    DicomElement el;
286    el.Group = group;
287    el.Elem  = elem;
288    UserForceLoadList.push_back(el); 
289 }
290 /**
291  * \brief   Get the public dictionary used
292  */
293 Dict *Document::GetPubDict()
294 {
295    return RefPubDict;
296 }
297
298 /**
299  * \brief   Get the shadow dictionary used
300  */
301 Dict *Document::GetShaDict()
302 {
303    return RefShaDict;
304 }
305
306 /**
307  * \brief   Set the shadow dictionary used
308  * @param   dict dictionary to use in shadow
309  */
310 bool Document::SetShaDict(Dict *dict)
311 {
312    RefShaDict = dict;
313    return !RefShaDict;
314 }
315
316 /**
317  * \brief   Set the shadow dictionary used
318  * @param   dictName name of the dictionary to use in shadow
319  */
320 bool Document::SetShaDict(DictKey const &dictName)
321 {
322    RefShaDict = Global::GetDicts()->GetDict(dictName);
323    return !RefShaDict;
324 }
325
326 /**
327  * \brief  This predicate tells us whether or not the current Document 
328  *         was properly parsed and contains at least *one* Dicom Element
329  *         (and nothing more, sorry).
330  * @return false when we're 150 % sure it's NOT a Dicom/Acr file,
331  *         true otherwise. 
332  */
333 bool Document::IsParsable()
334 {
335    if ( Filetype == Unknown )
336    {
337       gdcmWarningMacro( "Wrong filetype for " << GetFileName());
338       return false;
339    }
340
341    if ( IsEmpty() )
342    { 
343       gdcmWarningMacro( "No tag in internal hash table.");
344       return false;
345    }
346
347    return true;
348 }
349 /**
350  * \brief  This predicate tells us whether or not the current Document 
351  *         was properly parsed and contains at least *one* Dicom Element
352  *         (and nothing more, sorry).
353  * @return false when we're 150 % sure it's NOT a Dicom/Acr file,
354  *         true otherwise. 
355  */
356 bool Document::IsReadable()
357 {
358    return IsParsable();
359 }
360
361 /**
362  * \brief   Predicate for dicom version 3 file.
363  * @return  True when the file is a dicom version 3.
364  */
365 bool Document::IsDicomV3()
366 {
367    // Checking if Transfer Syntax exists is enough
368    // Anyway, it's too late check if the 'Preamble' was found ...
369    // And ... would it be a rich idea to check ?
370    // (some 'no Preamble' DICOM images exist !)
371    return GetDocEntry(0x0002, 0x0010) != NULL;
372 }
373
374 /**
375  * \brief   Predicate for Papyrus file
376  *          Dedicated to whomsoever it may concern
377  * @return  True when the file is a Papyrus file.
378  */
379 bool Document::IsPapyrus()
380 {
381    // check for Papyrus private Sequence
382    DocEntry *e = GetDocEntry(0x0041, 0x1050);
383    if ( !e )
384       return false;
385    // check if it's actually a Sequence
386    if ( !dynamic_cast<SeqEntry*>(e) )
387       return  false;
388    return true;
389 }
390
391 /**
392  * \brief  returns the File Type 
393  *         (ACR, ACR_LIBIDO, ExplicitVR, ImplicitVR, Unknown)
394  * @return the FileType code
395  */
396 FileType Document::GetFileType()
397 {
398    return Filetype;
399 }
400
401 /**
402  * \brief   Accessor to the Transfer Syntax (when present) of the
403  *          current document (it internally handles reading the
404  *          value from disk when only parsing occured).
405  * @return  The encountered Transfer Syntax of the current document, if DICOM.
406  *          GDCM_UNKNOWN for ACR-NEMA files (or broken headers ...)
407  */
408 std::string Document::GetTransferSyntax()
409 {
410    DocEntry *entry = GetDocEntry(0x0002, 0x0010);
411    if ( !entry )
412    {
413       return GDCM_UNKNOWN;
414    }
415
416    // The entry might be present but not loaded (parsing and loading
417    // happen at different stages): try loading and proceed with check...
418    
419    // Well ...
420    // (parsing and loading happen at the very same stage!) 
421    //LoadDocEntrySafe(entry); //JPRx
422    if (DataEntry *dataEntry = dynamic_cast<DataEntry *>(entry) )
423    {
424       std::string transfer = dataEntry->GetString();
425       // The actual transfer (as read from disk) might be padded. We
426       // first need to remove the potential padding. We can make the
427       // weak assumption that padding was not executed with digits...
428       if  ( transfer.length() == 0 )
429       {
430          // for brain damaged headers
431          gdcmWarningMacro( "Transfer Syntax has length = 0.");
432          return GDCM_UNKNOWN;
433       }
434       while ( !isdigit((unsigned char)transfer[transfer.length()-1]) )
435       {
436          transfer.erase(transfer.length()-1, 1);
437          if  ( transfer.length() == 0 )
438          {
439             // for brain damaged headers
440             gdcmWarningMacro( "Transfer Syntax contains no valid character.");
441             return GDCM_UNKNOWN;
442          }
443       }
444       return transfer;
445    }
446    return GDCM_UNKNOWN;
447 }
448
449 /**
450  * \brief Accesses the info from 0002,0010 : Transfer Syntax and TS
451  * @return The full Transfer Syntax Name (as opposed to Transfer Syntax UID)
452  */
453 std::string Document::GetTransferSyntaxName()
454 {
455    // use the TS (TS : Transfer Syntax)
456    std::string transferSyntax = GetEntryString(0x0002,0x0010);
457
458    if ( (transferSyntax.find(GDCM_NOTLOADED) < transferSyntax.length()) )
459    {
460       gdcmErrorMacro( "Transfer Syntax not loaded. " << std::endl
461                << "Better you increase MAX_SIZE_LOAD_ELEMENT_VALUE" );
462       return "Uncompressed ACR-NEMA";
463    }
464    if ( transferSyntax == GDCM_UNFOUND )
465    {
466       gdcmDebugMacro( "Unfound Transfer Syntax (0002,0010)");
467       return "Uncompressed ACR-NEMA";
468    }
469
470    // we do it only when we need it
471    const TSKey &tsName = Global::GetTS()->GetValue( transferSyntax );
472
473    // Global::GetTS() is a global static you shall never try to delete it!
474    return tsName;
475 }
476 //
477 // --------------- Swap Code ------------------
478 /**
479  * \brief   Swaps the bytes so they agree with the processor order
480  * @return  The properly swaped 16 bits integer.
481  */
482 uint16_t Document::SwapShort(uint16_t a)
483 {
484    if ( SwapCode == 4321 || SwapCode == 2143 )
485    {
486       //a = ((( a << 8 ) & 0xff00 ) | (( a >> 8 ) & 0x00ff ) );
487       // Save CPU time
488       a = ( a << 8 ) | ( a >> 8 );
489    }
490    return a;
491 }
492
493 /**
494  * \brief   Swaps back the bytes of 4-byte long integer accordingly to
495  *          processor order.
496  * @return  The properly swaped 32 bits integer.
497  */
498 uint32_t Document::SwapLong(uint32_t a)
499 {
500    switch (SwapCode)
501    {
502       case 1234 :
503          break;
504       case 4321 :
505 //         a=( ((a<<24) & 0xff000000) | ((a<<8)  & 0x00ff0000) | 
506 //             ((a>>8)  & 0x0000ff00) | ((a>>24) & 0x000000ff) );
507 // save CPU time
508          a=( ( a<<24)               | ((a<<8)  & 0x00ff0000) | 
509              ((a>>8)  & 0x0000ff00) |  (a>>24)                );
510          break;   
511       case 3412 :
512 //       a=( ((a<<16) & 0xffff0000) | ((a>>16) & 0x0000ffff) );
513          a=( (a<<16)                | (a>>16)  );
514          break;  
515       case 2143 :
516          a=( ((a<< 8) & 0xff00ff00) | ((a>>8) & 0x00ff00ff)  );
517       break;
518       default :
519          gdcmErrorMacro( "Unexpected swap code:" << SwapCode );
520          a = 0;
521    }
522    return a;
523
524
525 /**
526  * \brief   Swaps back the bytes of 8-byte long 'double' accordingly to
527  *          processor order.
528  * @return  The properly swaped 64 bits double.
529  */
530 double Document::SwapDouble(double a)
531 {
532    switch (SwapCode)
533    {
534       // There were no 'double' at ACR-NEMA time.
535       // We just have to deal with 'straight Little Endian' and 
536       // 'straight Big Endian'
537       case 1234 :
538          break;
539       case 4321 :
540          {
541          char *beg = (char *)&a;
542          char *end = beg + 7;
543          char t;
544          for (unsigned int i = 0; i<7; i++)
545          {
546             t    = *beg;
547             *beg = *end;
548             *end = t;
549             beg++,
550             end--;  
551          }
552          }
553          break;   
554       default :
555          gdcmErrorMacro( "Unexpected swap code:" << SwapCode );
556          a = 0.;
557    }
558    return a;
559
560
561 //
562 // -----------------File I/O ---------------
563 /**
564  * \brief  Tries to open the file \ref Document::Filename and
565  *         checks the preamble when existing.
566  * @return The FILE pointer on success. 
567  */
568 std::ifstream *Document::OpenFile()
569 {
570    HasDCMPreamble = false;
571    if (Filename.length() == 0) 
572    {
573       return 0;
574    }
575
576    if ( Fp )
577    {
578       gdcmDebugMacro( "File already open: " << Filename.c_str());
579       CloseFile();
580    }
581
582    Fp = new std::ifstream(Filename.c_str(), std::ios::in | std::ios::binary);
583    if ( ! *Fp )
584    {
585    // Don't user gdcmErrorMacro :
586    // a spurious message will appear when you use, for instance 
587    // gdcm::FileHelper *fh = new gdcm::FileHelper( outputFileName );
588    // to create outputFileName.
589    
590    // FIXME : if the upper comment is still usefull 
591    //         --> the constructor is not so good ...
592    
593       gdcmWarningMacro( "Cannot open file: " << Filename.c_str());
594       delete Fp;
595       Fp = 0;
596       return 0;
597       //exit(1); // No function is allowed to leave the application instead
598                  // of warning the caller
599    }
600  
601    uint16_t zero = 0;
602    Fp->read((char*)&zero, (size_t)2);
603    if ( Fp->eof() )
604    {
605       CloseFile();
606       return 0;
607    }
608  
609    //-- Broken ACR or DICOM with no Preamble; may start with a Shadow Group --
610    
611    // FIXME : We cannot be sure the preable is only zeroes..
612    //         (see ACUSON-24-YBR_FULL-RLE.dcm )
613    if ( 
614        zero == 0x0001 || zero == 0x0100 || zero == 0x0002 || zero == 0x0200 ||
615        zero == 0x0003 || zero == 0x0300 || zero == 0x0004 || zero == 0x0400 ||
616        zero == 0x0005 || zero == 0x0500 || zero == 0x0006 || zero == 0x0600 ||
617        zero == 0x0007 || zero == 0x0700 || zero == 0x0008 || zero == 0x0800 )
618    {
619       std::string msg = Util::Format(
620         "ACR/DICOM starting by 0x(%04x) at the beginning of the file\n", zero);
621       // FIXME : is it a Warning message, or a Debug message?
622       gdcmWarningMacro( msg.c_str() );
623       return Fp;
624    }
625  
626    //-- DICOM --
627    Fp->seekg(126L, std::ios::cur);  // Once per Document
628    char dicm[4]; // = {' ',' ',' ',' '};
629    Fp->read(dicm,  (size_t)4);
630    if ( Fp->eof() )
631    {
632       CloseFile();
633       return 0;
634    }
635    if ( memcmp(dicm, "DICM", 4) == 0 )
636    {
637       HasDCMPreamble = true;
638       return Fp;
639    }
640
641    // -- Neither ACR/No Preamble Dicom nor DICOMV3 file
642    CloseFile();
643    // Don't user Warning nor Error, not to polute the output
644    // while directory recursive parsing ...
645    gdcmDebugMacro( "Neither ACR/No Preamble Dicom nor DICOMV3 file: "
646                       << Filename.c_str()); 
647    return 0;
648 }
649
650 /**
651  * \brief closes the file  
652  * @return  TRUE if the close was successfull 
653  */
654 bool Document::CloseFile()
655 {
656    if ( Fp )
657    {
658       Fp->close();
659       delete Fp;
660       Fp = 0;
661    }
662    return true;
663 }
664
665 /**
666  * \brief Writes in a file all the Entries (Dicom Elements) 
667  * @param fp file pointer on an already open file (actually: Output File Stream)
668  * @param filetype Type of the File to be written 
669  *          (ACR-NEMA, ExplicitVR, ImplicitVR)
670  */
671 void Document::WriteContent(std::ofstream *fp, FileType filetype)
672 {
673    // Skip if user wants to write an ACR-NEMA file
674
675    if ( filetype == ImplicitVR || filetype == ExplicitVR ||
676         filetype == JPEG )
677    {
678       // writing Dicom File Preamble
679       char filePreamble[128];
680       memset(filePreamble, 0, 128);
681       fp->write(filePreamble, 128);
682       fp->write("DICM", 4);
683    }
684
685    /*
686     * \todo rewrite later, if really usefull
687     *       - 'Group Length' element is optional in DICOM
688     *       - but un-updated odd groups lengthes can causes pb
689     *         (xmedcon breaker)
690     *
691     * if ( (filetype == ImplicitVR) || (filetype == ExplicitVR) )
692     *    UpdateGroupLength(false,filetype);
693     * if ( filetype == ACR)
694     *    UpdateGroupLength(true,ACR);
695     *
696     * --> Computing group length for groups with embeded Sequences
697     * --> was too much tricky / we were [in a hurry / too lazy]
698     * --> We don't write the element 0x0000 (group length)
699     */
700
701    ElementSet::WriteContent(fp, filetype); // This one is recursive
702 }
703
704 // -----------------------------------------
705 // Content entries 
706 /**
707  * \brief Loads (from disk) the element content 
708  *        when a string is not suitable
709  * @param group   group number of the Entry 
710  * @param elem  element number of the Entry
711  */
712 void Document::LoadEntryBinArea(uint16_t group, uint16_t elem)
713 {
714    // Search the corresponding DocEntry
715    DocEntry *docEntry = GetDocEntry(group, elem);
716    if ( !docEntry )
717    {
718       gdcmDebugMacro(std::hex << group << "|" << elem 
719                        <<  " doesn't exist" );
720       return;
721    }
722    DataEntry *dataEntry = dynamic_cast<DataEntry *>(docEntry);
723    if ( !dataEntry )
724    {
725       gdcmWarningMacro(std::hex << group << "|" << elem 
726                        <<  " is NOT a DataEntry");
727       return;
728    }
729    LoadEntryBinArea(dataEntry);
730 }
731
732 /**
733  * \brief Loads (from disk) the element content 
734  *        when a string is not suitable
735  * @param entry  Entry whose binArea is going to be loaded
736  */
737 void Document::LoadEntryBinArea(DataEntry *entry) 
738 {
739    if( entry->GetBinArea() )
740       return;
741 // to be coherent with LoadEntryBinArea(uint16_t group, uint16_t elem)
742 // (and save time !)
743 // :-(
744 // TestAllReadCompareDicom hangs on rle16sti.dcm
745
746    bool openFile = !Fp;
747    if ( openFile )
748       OpenFile();
749 // -------
750    size_t o =(size_t)entry->GetOffset();
751    Fp->seekg(o, std::ios::beg);  // FIXME : for each BinEntry LoadEntryBinArea
752
753    size_t l = entry->GetLength();
754    uint8_t *data = new uint8_t[l];
755    if ( !data )
756    {
757       gdcmWarningMacro(  "Cannot allocate DataEntry content for : "
758                        << std::hex << entry->GetGroup() 
759                        << "|" << entry->GetElement() );
760       return;
761    }
762
763    // Read the data
764    Fp->read((char*)data, l);
765    if ( Fp->fail() || Fp->eof() )
766    {
767       delete[] data;
768       entry->SetState(DataEntry::STATE_UNREAD);
769       return;
770    }
771
772    // Swap the data content if necessary
773    uint32_t i;
774    unsigned short vrLgth = 
775                         Global::GetVR()->GetAtomicElementLength(entry->GetVR());
776
777 // FIXME : trouble expected if we read an ... OW Entry (LUT, etc ..)
778 //   if( entry->GetVR() == "OW" )
779 //      vrLgth = 1;
780
781    switch(vrLgth)
782    {
783       case 1:
784       {
785          break;
786       }     
787       case 2:
788       {
789          uint16_t *data16 = (uint16_t *)data;
790          for(i=0;i<l/vrLgth;i++)
791             data16[i] = SwapShort(data16[i]);
792          break;
793       }
794       case 4:
795       {
796          uint32_t *data32 = (uint32_t *)data;
797          for(i=0;i<l/vrLgth;i++)
798             data32[i] = SwapLong(data32[i]);
799          break;
800       }
801       case 8:
802       {
803          double *data64 = (double *)data;
804          for(i=0;i<l/vrLgth;i++)
805             data64[i] = SwapDouble(data64[i]);
806          break;
807       }
808    }
809    
810    entry->SetBinArea(data);
811    
812 // to be coherent with LoadEntryBinArea(uint16_t group, uint16_t elem)
813 // (and save time !)
814
815    if ( openFile )
816       CloseFile();
817 // ---------------
818 }
819
820 /**
821  * \brief  Loads the element while preserving the current
822  *         underlying file position indicator as opposed to
823  *        LoadDocEntry that modifies it
824  * \note seems to be unused!.
825  * @param entry   DocEntry whose value will be loaded. 
826  */
827 void Document::LoadDocEntrySafe(DocEntry *entry)
828 {
829    if ( Fp )
830    {
831       long PositionOnEntry = Fp->tellg();        // LoadDocEntrySafe is not used
832       LoadDocEntry(entry);
833       Fp->seekg(PositionOnEntry, std::ios::beg); // LoadDocEntrySafe is not used
834    }
835 }
836
837 /**
838  * \brief   Compares two documents, according to \ref DicomDir rules
839  * \warning Does NOT work with ACR-NEMA files
840  * \todo    Find a trick to solve the pb (use RET fields ?)
841  * @param   document to compare with current one
842  * @return  true if 'smaller'
843  */
844 bool Document::operator<(Document &document)
845 {
846    // Patient Name
847    std::string s1 = GetEntryString(0x0010,0x0010);
848    std::string s2 = document.GetEntryString(0x0010,0x0010);
849    if (s1 < s2)
850    {
851       return true;
852    }
853    else if ( s1 > s2 )
854    {
855       return false;
856    }
857    else
858    {
859       // Patient ID
860       s1 = GetEntryString(0x0010,0x0020);
861       s2 = document.GetEntryString(0x0010,0x0020);
862       if ( s1 < s2 )
863       {
864          return true;
865       }
866       else if ( s1 > s2 )
867       {
868          return false;
869       }
870       else
871       {
872          // Study Instance UID
873          s1 = GetEntryString(0x0020,0x000d);
874          s2 = document.GetEntryString(0x0020,0x000d);
875          if ( s1 < s2 )
876          {
877             return true;
878          }
879          else if ( s1 > s2 )
880          {
881             return false;
882          }
883          else
884          {
885             // Serie Instance UID
886             s1 = GetEntryString(0x0020,0x000e);
887             s2 = document.GetEntryString(0x0020,0x000e);    
888             if ( s1 < s2 )
889             {
890                return true;
891             }
892             else if ( s1 > s2 )
893             {
894                return false;
895             }
896          }
897       }
898    }
899    return false;
900 }
901
902 //-----------------------------------------------------------------------------
903 // Protected
904 /**
905  * \brief Reads a supposed to be 16 Bits integer
906  *       (swaps it depending on processor endianness) 
907  * @return read value
908  */
909 uint16_t Document::ReadInt16()
910    throw( FormatError )
911 {
912    uint16_t g;
913    Fp->read ((char*)&g, (size_t)2);
914    if ( Fp->fail() )
915    {
916       throw FormatError( "Document::ReadInt16()", " file error." );
917    }
918    if ( Fp->eof() )
919    {
920       throw FormatError( "Document::ReadInt16()", "EOF." );
921    }
922    g = SwapShort(g); 
923    return g;
924 }
925
926 /**
927  * \brief  Reads a supposed to be 32 Bits integer
928  *        (swaps it depending on processor endianness)  
929  * @return read value
930  */
931 uint32_t Document::ReadInt32()
932    throw( FormatError )
933 {
934    uint32_t g;
935    Fp->read ((char*)&g, (size_t)4);
936    if ( Fp->fail() )
937    {
938       throw FormatError( "Document::ReadInt32()", " file error." );
939    }
940    if ( Fp->eof() )
941    {
942       throw FormatError( "Document::ReadInt32()", "EOF." );
943    }
944    g = SwapLong(g);
945    return g;
946 }
947
948 /**
949  * \brief   Re-computes the length of the Dicom group 0002.
950  */
951 int Document::ComputeGroup0002Length( ) 
952 {
953    uint16_t gr;
954    VRKey vr;
955    
956    int groupLength = 0;
957    bool found0002 = false;   
958   
959    // for each zero-level Tag in the DCM Header
960    DocEntry *entry = GetFirstEntry();
961    while( entry )
962    {
963       gr = entry->GetGroup();
964
965       if ( gr == 0x0002 )
966       {
967          found0002 = true;
968
969          if ( entry->GetElement() != 0x0000 )
970          {
971             vr = entry->GetVR();
972
973             //if ( (vr == "OB")||(vr == "OW")||(vr == "UT")||(vr == "SQ"))
974             // (no SQ, OW, UT in group 0x0002;)
975                if ( vr == "OB" ) 
976                {
977                   // explicit VR AND (OB, OW, SQ, UT) : 4 more bytes
978                   groupLength +=  4;
979                }
980  
981             groupLength += 2 + 2 + 4 + entry->GetLength();   
982          }
983       }
984       else if (found0002 )
985          break;
986
987       entry = GetNextEntry();
988    }
989    return groupLength; 
990 }
991
992 /**
993  * \brief   CallStartMethod
994  */
995 void Document::CallStartMethod()
996 {
997    Progress = 0.0f;
998    Abort    = false;
999    CommandManager::ExecuteCommand(this,CMD_STARTPROGRESS);
1000 }
1001
1002 /**
1003  * \brief   CallProgressMethod
1004  */
1005 void Document::CallProgressMethod()
1006 {
1007    CommandManager::ExecuteCommand(this,CMD_PROGRESS);
1008 }
1009
1010 /**
1011  * \brief   CallEndMethod
1012  */
1013 void Document::CallEndMethod()
1014 {
1015    Progress = 1.0f;
1016    CommandManager::ExecuteCommand(this,CMD_ENDPROGRESS);
1017 }
1018
1019 //-----------------------------------------------------------------------------
1020 // Private
1021 /**
1022  * \brief Loads all the needed Dictionaries
1023  */
1024 void Document::Initialize() 
1025 {
1026    RefPubDict = Global::GetDicts()->GetDefaultPubDict();
1027    RefShaDict = NULL;
1028    Filetype   = Unknown;
1029 }
1030
1031 /**
1032  * \brief   Parses a DocEntrySet (Zero-level DocEntries or SQ Item DocEntries)
1033  * @param set DocEntrySet we are going to parse ('zero level' or a SQItem)
1034  * @param offset start of parsing
1035  * @param l_max  length to parse (meaningless when we are in 'delimitor mode')
1036  * @param delim_mode : whether we are in 'delimitor mode' (l=0xffffff) or not
1037  */ 
1038 void Document::ParseDES(DocEntrySet *set, long offset, 
1039                         long l_max, bool delim_mode)
1040 {
1041    DocEntry *newDocEntry;
1042    DataEntry *newDataEntry;
1043    SeqEntry *newSeqEntry;
1044    VRKey vr;
1045    bool used; // will be set to false when something wrong happens to an Entry.
1046               // (Entry will then be deleted)
1047    bool delim_mode_intern = delim_mode;
1048    bool first = true;
1049    gdcmDebugMacro( "Enter in ParseDES, delim-mode " <<  delim_mode
1050                      << " at offset " << std::hex << "0x(" << offset << ")" ); 
1051    while (true)
1052    {
1053    // if ( !delim_mode && ((long)(Fp->tellg())-offset) >= l_max) // Once per DocEntry
1054    
1055       if ( !delim_mode ) // 'and then' doesn't exist in C++ :-(
1056          if ( ((long)(Fp->tellg())-offset) >= l_max) // Once per DocEntry, when no delim mode
1057          {
1058             break;
1059          }
1060       newDocEntry = ReadNextDocEntry( );
1061
1062       // Uncoment this cerr line to be able to 'follow' the DocEntries
1063       // when something *very* strange happens
1064       if( Debug::GetDebugFlag() ) 
1065          std::cerr<<newDocEntry->GetKey()<<" "<<newDocEntry->GetVR()<<std::endl;
1066
1067       if ( !newDocEntry )
1068       {
1069          break;
1070       }
1071
1072        // an Item Starter found elsewhere but the first position
1073        // of a SeqEntry means previous entry was a Sequence
1074        // but we didn't get it (private Sequence + Implicit VR)
1075        // we have to backtrack.
1076       if ( !first && newDocEntry->IsItemStarter() )
1077       { 
1078         // Debug message within the method !      
1079         newDocEntry = Backtrack(newDocEntry); 
1080       }
1081       else
1082       { 
1083          PreviousDocEntry = newDocEntry; 
1084       }
1085  
1086       used = true;
1087       newDataEntry = dynamic_cast<DataEntry*>(newDocEntry);
1088
1089       if ( newDataEntry )  
1090       {
1091          //////////////////////////// DataEntry
1092  
1093          vr = newDocEntry->GetVR();
1094
1095          if ( !set->AddEntry( newDataEntry ) )
1096          {
1097             gdcmDebugMacro( "in ParseDES : cannot add a DataEntry "
1098                                  << newDataEntry->GetKey()
1099                                  << " (at offset : 0x(" 
1100                                  << newDataEntry->GetOffset() << ") )" );
1101             used=false;
1102          }
1103          else
1104          {
1105             newDataEntry->Delete();
1106             // Load only if we can add (not a duplicate key)
1107             LoadDocEntry( newDataEntry );
1108          }
1109          if ( newDataEntry->GetElement() == 0x0000 ) // if on group length
1110          {
1111             if ( newDataEntry->GetGroup()%2 != 0 )   // if Shadow Group
1112             {
1113                if ( LoadMode & LD_NOSHADOW ) // if user asked to skip shad.gr
1114                {
1115                   std::string strLgrGroup = newDataEntry->GetString();
1116
1117                   int lgrGroup;
1118                   //if ( newDataEntry->IsUnfound() ) /?!? JPR
1119                   {
1120                      lgrGroup = atoi(strLgrGroup.c_str());
1121                      Fp->seekg(lgrGroup, std::ios::cur); // Only when NOSHADOW
1122                      RemoveEntry( newDocEntry );  // Remove and delete
1123                      continue;
1124                   }
1125                }
1126             }
1127          }
1128
1129          bool delimitor = newDataEntry->IsItemDelimitor(); 
1130          bool outOfBounds = false;
1131          if (!delim_mode )
1132             if ( ((long)(Fp->tellg())-offset) >= l_max ) //Once per DataEntry when no delim mode
1133                outOfBounds = true;
1134
1135   //       'and then', 'or else' don't exist in C++ :-(
1136   //       if ( (delimitor) || 
1137   //             (!delim_mode && ((long)(Fp->tellg())-offset) >= l_max) ) // Once per DataEntry
1138
1139          if ( delimitor || outOfBounds )
1140          {
1141             if ( !used )
1142                newDocEntry->Delete();
1143             break;
1144          }
1145
1146          // Just to make sure we are at the beginning of next entry.
1147          SkipToNextDocEntry(newDocEntry); // FIXME : once per DocEntry, segfault if commented out
1148       }
1149       else
1150       {
1151          /////////////////////// SeqEntry :  VR = "SQ"
1152
1153          unsigned long l = newDocEntry->GetReadLength();          
1154          if ( l != 0 ) // don't mess the delim_mode for 'zero-length sequence'
1155          {
1156             if ( l == 0xffffffff )
1157             {
1158               delim_mode_intern = true;
1159             }
1160             else
1161             {
1162               delim_mode_intern = false;
1163             }
1164          }
1165
1166          if ( (LoadMode & LD_NOSHADOWSEQ) && ! delim_mode_intern )
1167          { 
1168            // User asked to skip SeQuences *only* if they belong to Shadow Group
1169             if ( newDocEntry->GetGroup()%2 != 0 )
1170             {
1171                 Fp->seekg( l, std::ios::cur);  // once per SQITEM, when NOSHADOWSEQ
1172                 newDocEntry->Delete();  // Delete, not in the set 
1173                 continue;  
1174             } 
1175          } 
1176          if ( (LoadMode & LD_NOSEQ) && ! delim_mode_intern ) 
1177          {
1178            // User asked to skip *any* SeQuence
1179             Fp->seekg( l, std::ios::cur); // Once per SQ, when NOSEQ
1180             newDocEntry->Delete(); // Delete, not in the set
1181             continue;
1182          }
1183          // delay the dynamic cast as late as possible
1184          newSeqEntry = dynamic_cast<SeqEntry*>(newDocEntry);
1185          
1186          // no other way to create the Delimitor ...
1187          newSeqEntry->SetDelimitorMode( delim_mode_intern );
1188
1189          // At the top of the hierarchy, stands a Document. When "set"
1190          // is a Document, then we are building the first depth level.
1191          // Hence the SeqEntry we are building simply has a depth
1192          // level of one:
1193         if ( set == this ) // ( dynamic_cast< Document* > ( set ) )
1194          {
1195             newSeqEntry->SetDepthLevel( 1 );
1196          }
1197          // But when "set" is already a SQItem, we are building a nested
1198          // sequence, and hence the depth level of the new SeqEntry
1199          // we are building, is one level deeper:
1200
1201          // time waste hunting
1202          else if (SQItem *parentSQItem = dynamic_cast< SQItem* > ( set ) )
1203          {
1204             newSeqEntry->SetDepthLevel( parentSQItem->GetDepthLevel() + 1 );
1205          }
1206
1207          if ( l != 0 )
1208          {  // Don't try to parse zero-length sequences
1209
1210             gdcmDebugMacro( "Entry in ParseSQ, delim " << delim_mode_intern
1211                                << " at offset 0x(" << std::hex
1212                                << newDocEntry->GetOffset() << ")");
1213
1214             ParseSQ( newSeqEntry, 
1215                      newDocEntry->GetOffset(),
1216                      l, delim_mode_intern);
1217
1218             gdcmDebugMacro( "Exit from ParseSQ, delim " << delim_mode_intern);
1219  
1220          }
1221          if ( !set->AddEntry( newSeqEntry ) )
1222          {
1223             gdcmWarningMacro( "in ParseDES : cannot add a SeqEntry "
1224                                 << newSeqEntry->GetKey()
1225                                 << " (at offset : 0x(" 
1226                                 << newSeqEntry->GetOffset() << ") )" ); 
1227             used = false;
1228          }
1229          else
1230          {
1231             newDocEntry->Delete();
1232          }
1233
1234       // if ( !delim_mode && ((long)(Fp->tellg())-offset) >= l_max) // Once per SeqEntry
1235  
1236          if ( !delim_mode ) // andthen doesn't exist in C++ :-(
1237             if ( ((long)(Fp->tellg())-offset) >= l_max) // Once per SeqEntry when no delim mode
1238      
1239          {
1240             if ( !used )
1241                newDocEntry->Delete();
1242             break;
1243          }
1244       }  // end SeqEntry : VR = "SQ"
1245
1246       if ( !used )
1247       {
1248          newDocEntry->Delete();
1249       }
1250       first = false;
1251    }                               // end While
1252    gdcmDebugMacro( "Exit from ParseDES, delim-mode " << delim_mode );
1253 }
1254
1255 /**
1256  * \brief   Parses a Sequence ( SeqEntry after SeqEntry)
1257  * @return  parsed length for this level
1258  */ 
1259 void Document::ParseSQ( SeqEntry *seqEntry,
1260                         long offset, long l_max, bool delim_mode)
1261 {
1262    int SQItemNumber = 0;
1263    bool dlm_mod;
1264    long offsetStartCurrentSQItem = offset;
1265
1266    while (true)
1267    {
1268       // the first time, we read the fff0,e000 of the first SQItem
1269       DocEntry *newDocEntry = ReadNextDocEntry();
1270
1271       if ( !newDocEntry )
1272       {
1273          gdcmWarningMacro("in ParseSQ : should never get here!");
1274          break;
1275       }
1276       if ( delim_mode )
1277       {
1278          if ( newDocEntry->IsSequenceDelimitor() )
1279          {
1280             seqEntry->SetDelimitationItem( newDocEntry ); 
1281             newDocEntry->Delete();
1282             break;
1283          }
1284       }
1285       if ( !delim_mode ) // andthen doesn't exist in C++ :-(
1286          if ( ((long)(Fp->tellg())-offset) >= l_max) // Once per SQItem when no delim mode
1287          {
1288             newDocEntry->Delete();
1289             break;
1290          }
1291       // create the current SQItem
1292       SQItem *itemSQ = SQItem::New( seqEntry->GetDepthLevel() );
1293       unsigned int l = newDocEntry->GetReadLength();
1294       
1295       if ( l == 0xffffffff )
1296       {
1297          dlm_mod = true;
1298       }
1299       else
1300       {
1301          dlm_mod = false;
1302       }
1303
1304       // remove fff0,e000, created out of the SQItem
1305       
1306       //Fp->seekg(offsetStartCurrentSQItem, std::ios::beg); //JPRx
1307       
1308       // fill up the current SQItem, starting at the beginning of fff0,e000
1309
1310       ParseDES(itemSQ, offsetStartCurrentSQItem, l+8, dlm_mod);
1311
1312       offsetStartCurrentSQItem = Fp->tellg();  // Once per SQItem
1313  
1314       seqEntry->AddSQItem( itemSQ, SQItemNumber ); 
1315       itemSQ->Delete();
1316       newDocEntry->Delete();
1317       SQItemNumber++;
1318       //if ( !delim_mode && ((long)(Fp->tellg())-offset ) >= l_max ) //JPRx
1319       if ( !delim_mode && (offsetStartCurrentSQItem-offset ) >= l_max )
1320       {
1321          break;
1322       }
1323    }
1324 }
1325
1326 /**
1327  * \brief   When a private Sequence + Implicit VR is encountered
1328  *           we cannot guess it's a Sequence till we find the first
1329  *           Item Starter. We then backtrack to do the job.
1330  * @param   docEntry Item Starter that warned us 
1331  */
1332 DocEntry *Document::Backtrack(DocEntry *docEntry)
1333 {
1334    // delete the Item Starter, built erroneously out of any Sequence
1335    // it's not yet in the HTable/chained list
1336    docEntry->Delete();
1337
1338    // Get all info we can from PreviousDocEntry
1339    uint16_t group = PreviousDocEntry->GetGroup();
1340    uint16_t elem  = PreviousDocEntry->GetElement();
1341    uint32_t lgt   = PreviousDocEntry->GetLength();
1342    long offset    = PreviousDocEntry->GetOffset();
1343
1344    gdcmDebugMacro( "Backtrack :" << std::hex << group 
1345                                  << "|" << elem
1346                                  << " at offset 0x(" <<offset << ")" );
1347    RemoveEntry( PreviousDocEntry );
1348
1349    // forge the Seq Entry
1350    DocEntry *newEntry = NewSeqEntry(group, elem);
1351    newEntry->SetLength(lgt);
1352    newEntry->SetOffset(offset);
1353
1354    // Move back to the beginning of the Sequence
1355   // Fp->seekg( 0, std::ios::beg);      // JPRx
1356   // Fp->seekg(offset, std::ios::cur);  // JPRx
1357    Fp->seekg(offset, std::ios::beg); // Only for Shadow Implicit VR SQ
1358    return newEntry;
1359 }
1360
1361 /**
1362  * \brief   Loads (or not) the element content depending if its length exceeds
1363  *          or not the value specified with Document::SetMaxSizeLoadEntry()
1364  * @param   entry Header Entry (Dicom Element) to be dealt with
1365  * @param forceLoad whether you want to force loading of 'long' elements
1366  */
1367 void Document::LoadDocEntry(DocEntry *entry, bool forceLoad)
1368 {
1369    uint16_t group  = entry->GetGroup();
1370    uint16_t elem  = entry->GetElement();
1371    const VRKey  &vr = entry->GetVR();
1372    uint32_t length = entry->GetLength();
1373
1374  //  Fp->seekg((long)entry->GetOffset(), std::ios::beg); // JPRx
1375
1376    // A SeQuence "contains" a set of Elements.  
1377    //          (fffe e000) tells us an Element is beginning
1378    //          (fffe e00d) tells us an Element just ended
1379    //          (fffe e0dd) tells us the current SeQuence just ended
1380    //
1381    //          (fffe 0000) is an 'impossible' tag value, 
1382    //                                    found in MR-PHILIPS-16-Multi-Seq.dcm
1383    
1384    if ( (group == 0xfffe && elem != 0x0000 ) || vr == "SQ" )
1385    {
1386       // NO more value field for SQ !
1387       return;
1388    }
1389
1390    DataEntry *dataEntryPtr = dynamic_cast< DataEntry* >(entry);
1391    if( !dataEntryPtr )
1392    {
1393       return;
1394    }
1395
1396    // When the length is zero things are easy:
1397    if ( length == 0 )
1398    {
1399       dataEntryPtr->SetBinArea(NULL,true);
1400       return;
1401    }
1402
1403    // The elements whose length is bigger than the specified upper bound
1404    // are not loaded.
1405
1406    std::ostringstream s;
1407
1408    if (!forceLoad)
1409    {
1410       if (length > MaxSizeLoadEntry)
1411       {
1412          dataEntryPtr->SetBinArea(NULL,true);
1413          dataEntryPtr->SetState(DataEntry::STATE_NOTLOADED);
1414
1415          // to be sure we are at the end of the value ...
1416        //  Fp->seekg((long)entry->GetOffset()+(long)entry->GetLength(),
1417        //           std::ios::beg);  //JPRx
1418          return;
1419       }
1420    }
1421
1422    LoadEntryBinArea(dataEntryPtr); // last one, not to erase length !
1423 }
1424
1425 /**
1426  * \brief  Find the value Length of the passed Doc Entry
1427  * @param  entry Header Entry whose length of the value shall be loaded. 
1428  */
1429 void Document::FindDocEntryLength( DocEntry *entry )
1430    throw ( FormatError )
1431 {
1432    const VRKey &vr  = entry->GetVR();
1433    uint16_t length16;       
1434    
1435    if ( Filetype == ExplicitVR && !entry->IsImplicitVR() ) 
1436    {
1437       if ( vr == "OB" || vr == "OW" || vr == "SQ" || vr == "UT" 
1438                                                            || vr == "UN" )
1439       {
1440          // The following reserved two bytes (see PS 3.5-2003, section
1441          // "7.1.2 Data element structure with explicit vr", p 27) must be
1442          // skipped before proceeding on reading the length on 4 bytes.
1443  
1444          Fp->seekg( 2L, std::ios::cur); // Once per OW,OB,SQ DocEntry
1445          uint32_t length32 = ReadInt32();
1446
1447          if ( (vr == "OB" || vr == "OW") && length32 == 0xffffffff ) 
1448          {
1449             uint32_t lengthOB;
1450             try 
1451             {
1452                lengthOB = FindDocEntryLengthOBOrOW();// for encapsulation of encoded pixel 
1453             }
1454             catch ( FormatUnexpected )
1455             {
1456                // Computing the length failed (this happens with broken
1457                // files like gdcm-JPEG-LossLess3a.dcm). We still have a
1458                // chance to get the pixels by deciding the element goes
1459                // until the end of the file. Hence we artificially fix the
1460                // the length and proceed.
1461                gdcmWarningMacro( " Computing the length failed for " << 
1462                                    entry->GetKey() <<" in " <<GetFileName());
1463
1464                long currentPosition = Fp->tellg(); // Only for gdcm-JPEG-LossLess3a.dcm-like
1465                Fp->seekg(0L,std::ios::end);        // Only for gdcm-JPEG-LossLess3a.dcm-like
1466
1467                long lengthUntilEOF = (long)(Fp->tellg())-currentPosition; // Only for gdcm-JPEG-LossLess3a.dcm-like
1468                Fp->seekg(currentPosition, std::ios::beg);                 // Only for gdcm-JPEG-LossLess3a.dcm-like
1469
1470                entry->SetReadLength(lengthUntilEOF);
1471                entry->SetLength(lengthUntilEOF);
1472                return;
1473             }
1474             entry->SetReadLength(lengthOB);
1475             entry->SetLength(lengthOB);
1476             return;
1477          }
1478          FixDocEntryFoundLength(entry, length32); 
1479          return;
1480       }
1481
1482       // Length is encoded on 2 bytes.
1483       length16 = ReadInt16();
1484   
1485       // 0xffff means that we deal with 'No Length' Sequence 
1486       //        or 'No Length' SQItem
1487       if ( length16 == 0xffff) 
1488       {           
1489          length16 = 0;
1490       }
1491       FixDocEntryFoundLength( entry, (uint32_t)length16 );
1492       return;
1493    }
1494    else
1495    {
1496       // Either implicit VR or a non DICOM conformal (see note below) explicit
1497       // VR that ommited the VR of (at least) this element. Farts happen.
1498       // [Note: according to the part 5, PS 3.5-2001, section 7.1 p25
1499       // on Data elements "Implicit and Explicit VR Data Elements shall
1500       // not coexist in a Data Set and Data Sets nested within it".]
1501       // Length is on 4 bytes.
1502
1503      // Well ... group 0002 is always coded in 'Explicit VR Litle Endian'
1504      // even if Transfer Syntax is 'Implicit VR ...'
1505      // --> Except for 'Implicit VR Big Endian Transfer Syntax GE Private' 
1506       
1507       FixDocEntryFoundLength( entry, ReadInt32() );
1508       return;
1509    }
1510 }
1511
1512 /**
1513  * \brief  Find the Length till the next sequence delimiter
1514  * @return 
1515  */
1516 uint32_t Document::FindDocEntryLengthOBOrOW()
1517    throw( FormatUnexpected )
1518 {
1519    // See PS 3.5-2001, section A.4 p. 49 on encapsulation of encoded pixel data.
1520    long positionOnEntry = Fp->tellg(); // Only for OB,OW DataElements
1521    
1522    bool foundSequenceDelimiter = false;
1523    uint32_t totalLength = 0;
1524
1525    while ( !foundSequenceDelimiter )
1526    {
1527       uint16_t group;
1528       uint16_t elem;
1529       try
1530       {
1531          group = ReadInt16();
1532          elem  = ReadInt16();   
1533       }
1534       catch ( FormatError )
1535       {
1536          throw FormatError("Unexpected end of file encountered during ",
1537                            "Document::FindDocEntryLengthOBOrOW()");
1538       }
1539       // We have to decount the group and element we just read
1540       totalLength += 4;     
1541       if ( group != 0xfffe || ( ( elem != 0xe0dd ) && ( elem != 0xe000 ) ) )
1542       {
1543          // long filePosition = Fp->tellg(); JPRx
1544          gdcmWarningMacro( 
1545               "Neither an Item tag nor a Sequence delimiter tag on :" 
1546            << std::hex << group << " , " << elem 
1547            //<< ") -before- position x(" << filePosition // JPRx
1548            << ")" );
1549   
1550          Fp->seekg(positionOnEntry, std::ios::beg); // Once per fragment (if any) of OB,OW DataElements
1551          throw FormatUnexpected( 
1552                "Neither an Item tag nor a Sequence delimiter tag.");
1553       }
1554       if ( elem == 0xe0dd )
1555       {
1556          foundSequenceDelimiter = true;
1557       }
1558       uint32_t itemLength = ReadInt32();
1559       // We add 4 bytes since we just read the ItemLength with ReadInt32
1560       totalLength += itemLength + 4;
1561       SkipBytes(itemLength);
1562       
1563       if ( foundSequenceDelimiter )
1564       {
1565          break;
1566       }
1567    }
1568    Fp->seekg( positionOnEntry, std::ios::beg); // Only for OB,OW DataElements
1569    return totalLength;
1570 }
1571
1572 /**
1573  * \brief     Find the Value Representation of the current Dicom Element.
1574  * @return    Value Representation of the current Entry
1575  */
1576 VRKey Document::FindDocEntryVR()
1577 {
1578    if ( Filetype != ExplicitVR )
1579       return GDCM_VRUNKNOWN;
1580
1581    // Delimiters (0xfffe), are not explicit VR ... 
1582    if ( CurrentGroup == 0xfffe )
1583       return GDCM_VRUNKNOWN;
1584          
1585    long positionOnEntry;     
1586    if( Debug::GetWarningFlag() ) 
1587      positionOnEntry = Fp->tellg(); // Only in Warning Mode
1588    
1589    // Warning: we believe this is explicit VR (Value Representation) because
1590    // we used a heuristic that found "UL" in the first tag and/or
1591    // 'Transfer Syntax' told us it is.
1592    // Alas this doesn't guarantee that all the tags will be in explicit VR. 
1593    // In some cases one finds implicit VR tags mixed within an explicit VR file
1594    // Well...
1595    // 'Normaly' the only case is : group 0002 Explicit, and other groups Implicit
1596    //
1597    // Hence we make sure the present tag is in explicit VR and try to fix things
1598    // if it happens not to be the case.
1599
1600    VRKey vr;
1601    Fp->read(&(vr[0]),(size_t)2);
1602
1603    if ( !CheckDocEntryVR(vr) )
1604    {
1605 /*   
1606       std::cout << "================================================================Unknown VR" 
1607                << std::hex << "0x(" 
1608                         << (unsigned int)vr[0] << "|" << (unsigned int)vr[1] 
1609                         << ")" << "for : " <<  CurrentGroup
1610                         << " at offset : 0x(" << positionOnEntry << ")"
1611                         << std::endl;
1612 */
1613       gdcmWarningMacro( "Unknown VR " << std::hex << "0x(" 
1614                         << (unsigned int)vr[0] << "|" << (unsigned int)vr[1] 
1615                         << ")"  
1616                         << " at offset : 0x(" << positionOnEntry<< ") for group " << CurrentGroup
1617                         );
1618
1619       //Fp->seekg(positionOnEntry, std::ios::beg); //JPRx
1620       Fp->seekg((long)-2, std::ios::cur);// only for unrecognized VR (?!?) 
1621                                          //see :MR_Philips_Intera_PrivateSequenceExplicitVR.dcm
1622       return GDCM_VRUNKNOWN;
1623    }
1624    return vr;
1625 }
1626
1627 /**
1628  * \brief     Check the correspondance between the VR of the header entry
1629  *            and the taken VR. If they are different, the header entry is 
1630  *            updated with the new VR.
1631  * @param     vr    Dicom Value Representation
1632  * @return    false if the VR is incorrect or if the VR isn't referenced
1633  *            otherwise, it returns true
1634 */
1635 bool Document::CheckDocEntryVR(const VRKey &vr)
1636 {
1637    return Global::GetVR()->IsValidVR(vr);
1638 }
1639
1640 /**
1641  * \brief   Skip a given Header Entry 
1642  * @param   entry entry to skip
1643  */
1644 void Document::SkipDocEntry(DocEntry *entry) 
1645 {
1646    SkipBytes(entry->GetLength());
1647 }
1648
1649 /**
1650  * \brief   Skips to the beginning of the next Header Entry 
1651  * @param   currentDocEntry entry to skip
1652  */
1653 void Document::SkipToNextDocEntry(DocEntry *currentDocEntry) 
1654 {
1655    long l = currentDocEntry->GetReadLength();
1656    if ( l == -1 ) // length = 0xffff shouldn't appear here ...
1657                   // ... but PMS imagers happen !
1658       return;
1659    Fp->seekg((long)(currentDocEntry->GetOffset()), std::ios::beg); //FIXME :each DocEntry
1660    if (currentDocEntry->GetGroup() != 0xfffe)  // for fffe pb
1661    {
1662       Fp->seekg( l,std::ios::cur);                                 //FIXME :each DocEntry
1663    }
1664 }
1665
1666 /**
1667  * \brief   When the length of an element value is obviously wrong (because
1668  *          the parser went Jabberwocky) one can hope improving things by
1669  *          applying some heuristics.
1670  * @param   entry entry to check
1671  * @param   foundLength first assumption about length    
1672  */
1673 void Document::FixDocEntryFoundLength(DocEntry *entry,
1674                                       uint32_t foundLength)
1675 {
1676    entry->SetReadLength( foundLength );// will be updated only if a bug is found
1677    if ( foundLength == 0xffffffff)
1678    {
1679       foundLength = 0;
1680    }
1681    
1682    uint16_t gr   = entry->GetGroup();
1683    uint16_t elem = entry->GetElement(); 
1684      
1685    if ( foundLength % 2)
1686    {
1687       gdcmWarningMacro( "Warning : Tag with uneven length " << foundLength
1688         <<  " in x(" << std::hex << gr << "," << elem <<")");
1689    }
1690       
1691    //////// Fix for some naughty General Electric images.
1692    // Allthough not recent many such GE corrupted images are still present
1693    // on Creatis hard disks. Hence this fix shall remain when such images
1694    // are no longer in use (we are talking a few years, here)...
1695    // Note: XMedCon probably uses such a trick since it is able to read
1696    //       those pesky GE images ...
1697    if ( foundLength == 13)
1698    {
1699       // Only happens for this length !
1700       if ( gr != 0x0008 || ( elem != 0x0070 && elem != 0x0080 ) )
1701       {
1702          foundLength = 10;
1703          entry->SetReadLength(10); // a bug is to be fixed !?
1704       }
1705    }
1706
1707    //////// Fix for some brain-dead 'Leonardo' Siemens images.
1708    // Occurence of such images is quite low (unless one leaves close to a
1709    // 'Leonardo' source. Hence, one might consider commenting out the
1710    // following fix on efficiency reasons.
1711    else if ( gr   == 0x0009 && ( elem == 0x1113 || elem == 0x1114 ) )
1712    {
1713       foundLength = 4;
1714       entry->SetReadLength(4); // a bug is to be fixed !
1715    } 
1716  
1717    else if ( entry->GetVR() == "SQ" )
1718    {
1719       foundLength = 0;      // ReadLength is unchanged 
1720    } 
1721     
1722    //////// We encountered a 'delimiter' element i.e. a tag of the form 
1723    // "fffe|xxxx" which is just a marker. Delimiters length should not be
1724    // taken into account.
1725    else if ( gr == 0xfffe )
1726    {    
1727      // According to the norm, fffe|0000 shouldn't exist. BUT the Philips
1728      // image gdcmData/gdcm-MR-PHILIPS-16-Multi-Seq.dcm happens to
1729      // causes extra troubles...
1730      if ( entry->GetElement() != 0x0000 )
1731      {
1732         foundLength = 0;
1733      }
1734      else
1735      {
1736         foundLength=12; // to skip the mess that follows this bugged Tag !
1737      }
1738    }                
1739    entry->SetLength(foundLength);
1740 }
1741
1742 /**
1743  * \brief   Apply some heuristics to predict whether the considered 
1744  *          element value contains/represents an integer or not.
1745  * @param   entry The element value on which to apply the predicate.
1746  * @return  The result of the heuristical predicate.
1747  */
1748 bool Document::IsDocEntryAnInteger(DocEntry *entry)
1749 {
1750    uint16_t elem         = entry->GetElement();
1751    uint16_t group        = entry->GetGroup();
1752    const VRKey &vr       = entry->GetVR();
1753    uint32_t length       = entry->GetLength();
1754
1755    // When we have some semantics on the element we just read, and if we
1756    // a priori know we are dealing with an integer, then we shall be
1757    // able to swap it's element value properly.
1758    if ( elem == 0 )  // This is the group length of the group
1759    {  
1760       if ( length == 4 )
1761       {
1762          return true;
1763       }
1764       else 
1765       {
1766          // Although this should never happen, still some images have a
1767          // corrupted group length [e.g. have a glance at offset x(8336) of
1768          // gdcmData/gdcm-MR-PHILIPS-16-Multi-Seq.dcm.
1769          // Since for dicom compliant and well behaved headers, the present
1770          // test is useless (and might even look a bit paranoid), when we
1771          // encounter such an ill-formed image, we simply display a warning
1772          // message and proceed on parsing (while crossing fingers).
1773          long filePosition = Fp->tellg(); // Only when elem 0x0000 length is not 4 (?!?)
1774          gdcmWarningMacro( "Erroneous Group Length element length  on : (" 
1775            << std::hex << group << " , " << elem
1776            << ") -before- position x(" << filePosition << ")"
1777            << "lgt : " << length );
1778       }
1779    }
1780
1781    if ( vr == "UL" || vr == "US" || vr == "SL" || vr == "SS" )
1782    {
1783       return true;
1784    }   
1785    return false;
1786 }
1787
1788 /**
1789  * \brief   Discover what the swap code is (among little endian, big endian,
1790  *          bad little endian, bad big endian).
1791  *          sw is set
1792  * @return false when we are absolutely sure 
1793  *               it's neither ACR-NEMA nor DICOM
1794  *         true  when we hope ours assuptions are OK
1795  */
1796 bool Document::CheckSwap()
1797 {   
1798    uint32_t  s32;
1799    uint16_t  s16;
1800        
1801    char deb[256];
1802     
1803    // First, compare HostByteOrder and NetworkByteOrder in order to
1804    // determine if we shall need to swap bytes (i.e. the Endian type).
1805    bool net2host = Util::IsCurrentProcessorBigEndian();
1806          
1807    // The easiest case is the one of a 'true' DICOM header, we just have
1808    // to look for the string "DICM" inside the file preamble.
1809    Fp->read(deb, 256);
1810    
1811    char *entCur = deb + 128;
1812    if ( memcmp(entCur, "DICM", (size_t)4) == 0 )
1813    {
1814       gdcmDebugMacro( "Looks like DICOM Version3 (preamble + DCM)" );
1815       
1816       // Group 0002 should always be VR, and the first element 0000
1817       // Let's be carefull (so many wrong headers ...)
1818       // and determine the value representation (VR) : 
1819       // Let's skip to the first element (0002,0000) and check there if we find
1820       // "UL"  - or "OB" if the 1st one is (0002,0001) -,
1821       // in which case we (almost) know it is explicit VR.
1822       // WARNING: if it happens to be implicit VR then what we will read
1823       // is the length of the group. If this ascii representation of this
1824       // length happens to be "UL" then we shall believe it is explicit VR.
1825       // We need to skip :
1826       // * the 128 bytes of File Preamble (often padded with zeroes),
1827       // * the 4 bytes of "DICM" string,
1828       // * the 4 bytes of the first tag (0002, 0000),or (0002, 0001)
1829       // i.e. a total of  136 bytes.
1830       entCur = deb + 136;
1831      
1832       // group 0x0002 *is always* Explicit VR Sometimes ,
1833       // even if elem 0002,0010 (Transfer Syntax) tells us the file is
1834       // *Implicit* VR  (see former 'gdcmData/icone.dcm')
1835       
1836       if ( memcmp(entCur, "UL", (size_t)2) == 0 ||
1837            memcmp(entCur, "OB", (size_t)2) == 0 ||
1838            memcmp(entCur, "UI", (size_t)2) == 0 ||
1839            memcmp(entCur, "CS", (size_t)2) == 0 )  // CS, to remove later
1840                                                    // when Write DCM *adds*
1841       // FIXME
1842       // Use Document::dicom_vr to test all the possibilities
1843       // instead of just checking for UL, OB and UI !? group 0000 
1844       {
1845          Filetype = ExplicitVR;
1846          gdcmDebugMacro( "Group 0002 : Explicit Value Representation");
1847       } 
1848       else 
1849       {
1850          Filetype = ImplicitVR;
1851          gdcmWarningMacro( "Group 0002 :Not an explicit Value Representation;"
1852                         << "Looks like a bugged Header!");
1853       }
1854       
1855       if ( net2host )
1856       {
1857          SwapCode = 4321;
1858          gdcmDebugMacro( "HostByteOrder != NetworkByteOrder, SwapCode = 4321");
1859       }
1860       else 
1861       {
1862          SwapCode = 1234;
1863          gdcmDebugMacro( "HostByteOrder = NetworkByteOrder, SwapCode = 1234");
1864       }
1865       
1866       // Position the file position indicator at first tag 
1867       // (i.e. after the file preamble and the "DICM" string).
1868
1869       //Fp->seekg(0, std::ios::beg); // JPRx
1870
1871       Fp->seekg ( 132L, std::ios::beg); // Once per Document
1872       return true;
1873    } // ------------------------------- End of DicomV3 ----------------
1874
1875    // Alas, this is not a DicomV3 file and whatever happens there is no file
1876    // preamble. We can reset the file position indicator to where the data
1877    // is (i.e. the beginning of the file).
1878
1879    gdcmWarningMacro( "Not a Kosher DICOM Version3 file (no preamble)");
1880
1881    Fp->seekg(0, std::ios::beg); // Once per ACR-NEMA Document
1882
1883    // Let's check 'No Preamble Dicom File' :
1884    // Should start with group 0x0002
1885    // and be Explicit Value Representation
1886
1887    s16 = *((uint16_t *)(deb));
1888    SwapCode = 0;     
1889    switch ( s16 )
1890    {
1891       case 0x0002 :
1892          SwapCode = 1234;
1893          entCur = deb + 4;
1894          break;
1895       case 0x0200 :
1896          SwapCode = 4321;
1897          entCur = deb + 6;
1898     } 
1899
1900    if ( SwapCode != 0 )
1901    {
1902       if ( memcmp(entCur, "UL", (size_t)2) == 0 ||
1903            memcmp(entCur, "OB", (size_t)2) == 0 ||
1904            memcmp(entCur, "UI", (size_t)2) == 0 ||
1905            memcmp(entCur, "SH", (size_t)2) == 0 ||
1906            memcmp(entCur, "AE", (size_t)2) == 0 ||
1907            memcmp(entCur, "OB", (size_t)2) == 0 )
1908          {
1909             Filetype = ExplicitVR;  // FIXME : not enough to say it's Explicit
1910                                     // Wait untill reading Transfer Syntax
1911             gdcmDebugMacro( "Group 0002 : Explicit Value Representation");
1912             return true;
1913           }
1914     }
1915 // ------------------------------- End of 'No Preamble' DicomV3 -------------
1916
1917    // Our next best chance would be to be considering a 'clean' ACR/NEMA file.
1918    // By clean we mean that the length of the first group is written down.
1919    // If this is the case and since the length of the first group HAS to be
1920    // four (bytes), then determining the proper swap code is straightforward.
1921
1922    entCur = deb + 4;
1923    // We assume the array of char we are considering contains the binary
1924    // representation of a 32 bits integer. Hence the following dirty
1925    // trick :
1926    s32 = *((uint32_t *)(entCur));
1927    switch( s32 )
1928    {
1929       case 0x00040000 :
1930          SwapCode = 3412;
1931          Filetype = ACR;
1932          return true;
1933       case 0x04000000 :
1934          SwapCode = 4321;
1935          Filetype = ACR;
1936          return true;
1937       case 0x00000400 :
1938          SwapCode = 2143;
1939          Filetype = ACR;
1940          return true;
1941       case 0x00000004 :
1942          SwapCode = 1234;
1943          Filetype = ACR;
1944          return true;
1945       default :
1946          // We are out of luck. It is not a DicomV3 nor a 'clean' ACR/NEMA file.
1947          // It is time for despaired wild guesses. 
1948          // So, let's check if this file wouldn't happen to be 'dirty' ACR/NEMA,
1949          //  i.e. the 'group length' element is not present :     
1950          
1951          //  check the supposed-to-be 'group number'
1952          //  in ( 0x0001 .. 0x0008 )
1953          //  to determine ' SwapCode' value .
1954          //  Only 0 or 4321 will be possible 
1955          //  (no oportunity to check for the formerly well known
1956          //  ACR-NEMA 'Bad Big Endian' or 'Bad Little Endian' 
1957          //  if unsuccessfull (i.e. neither 0x0002 nor 0x0200 etc-3, 4, ..., 8-)
1958          //  the file IS NOT ACR-NEMA nor DICOM V3
1959          //  Find a trick to tell it the caller...
1960       
1961          s16 = *((uint16_t *)(deb));
1962       
1963          switch ( s16 )
1964          {
1965             case 0x0001 :
1966             case 0x0002 :
1967             case 0x0003 :
1968             case 0x0004 :
1969             case 0x0005 :
1970             case 0x0006 :
1971             case 0x0007 :
1972             case 0x0008 :
1973                SwapCode = 1234;
1974                Filetype = ACR;
1975                return true;
1976             case 0x0100 :
1977             case 0x0200 :
1978             case 0x0300 :
1979             case 0x0400 :
1980             case 0x0500 :
1981             case 0x0600 :
1982             case 0x0700 :
1983             case 0x0800 :
1984                SwapCode = 4321;
1985                Filetype = ACR;
1986                return true;
1987             default :
1988                gdcmWarningMacro("ACR/NEMA unfound swap info (Hopeless !)");
1989                Filetype = Unknown;
1990                return false;
1991          }
1992    }
1993 }
1994
1995 /**
1996  * \brief Change the Byte Swap code. 
1997  */
1998 void Document::SwitchByteSwapCode() 
1999 {
2000    gdcmDebugMacro( "Switching Byte Swap code from "<< SwapCode
2001                      << " at: 0x" << std::hex << Fp->tellg() );  // Only when DEBUG
2002    if ( SwapCode == 1234 ) 
2003    {
2004       SwapCode = 4321;
2005    }
2006    else if ( SwapCode == 4321 ) 
2007    {
2008       SwapCode = 1234;
2009    }
2010    else if ( SwapCode == 3412 ) 
2011    {
2012       SwapCode = 2143;
2013    }
2014    else if ( SwapCode == 2143 )
2015    {
2016       SwapCode = 3412;
2017    }
2018    gdcmDebugMacro( " Into: "<< SwapCode );
2019 }
2020
2021 /**
2022  * \brief  during parsing, Header Elements too long are not loaded in memory
2023  * @param newSize new size
2024  */
2025 void Document::SetMaxSizeLoadEntry(long newSize) 
2026 {
2027    if ( newSize < 0 )
2028    {
2029       return;
2030    }
2031    if ((uint32_t)newSize >= (uint32_t)0xffffffff )
2032    {
2033       MaxSizeLoadEntry = 0xffffffff;
2034       return;
2035    }
2036    MaxSizeLoadEntry = newSize;
2037 }
2038
2039 /**
2040  * \brief   Read the next tag WITHOUT loading it's value
2041  *          (read the 'Group Number', the 'Element Number',
2042  *          gets the Dict Entry
2043  *          gets the VR, gets the length, gets the offset value)
2044  * @return  On succes : the newly created DocEntry, NULL on failure.      
2045  */
2046 DocEntry *Document::ReadNextDocEntry()
2047 {
2048    try
2049    {
2050       CurrentGroup = ReadInt16();
2051       CurrentElem  = ReadInt16();
2052    }
2053    catch ( FormatError )
2054    {
2055       // We reached the EOF (or an error occured) therefore 
2056       // header parsing has to be considered as finished.
2057       return 0;
2058    }
2059
2060    // In 'true DICOM' files Group 0002 is always little endian
2061    if ( HasDCMPreamble ) 
2062    {
2063       if ( !Group0002Parsed && CurrentGroup != 0x0002) // avoid calling a function when useless
2064          HandleOutOfGroup0002(CurrentGroup, CurrentElem);
2065       else
2066          // Sometimes file contains groups of tags with reversed endianess.
2067          HandleBrokenEndian(CurrentGroup, CurrentElem);  
2068     }
2069         
2070    VRKey vr = FindDocEntryVR();
2071    
2072    VRKey realVR = vr;
2073
2074    if ( vr == GDCM_VRUNKNOWN )
2075    {
2076       if ( CurrentElem == 0x0000 ) // Group Length
2077       {
2078          realVR = "UL";     // must be UL
2079       }
2080       // Commented out in order not to generate 'Shadow Groups' where some 
2081       // Data Elements are Explicit VR and some other ones Implicit VR
2082       // (Stupid MatLab DICOM Reader couln't read gdcm-written images)
2083       /*
2084       else if (CurrentGroup%2 == 1 &&  
2085                                (CurrentElem >= 0x0010 && CurrentElem <=0x00ff ))
2086       {  
2087       // DICOM PS 3-5 7.8.1 a) states that those 
2088       // (gggg-0010->00FF where gggg is odd) attributes have to be LO
2089          realVR = "LO";
2090       }
2091       */
2092       else
2093       {
2094          DictEntry *dictEntry = GetDictEntry(CurrentGroup,CurrentElem);
2095          if ( dictEntry )
2096          {
2097             realVR = dictEntry->GetVR();
2098             dictEntry->Unregister();
2099          }
2100       }
2101    }
2102    
2103    DocEntry *newEntry;
2104    //if ( Global::GetVR()->IsVROfSequence(realVR) )
2105    if (realVR == "SQ")
2106       newEntry = NewSeqEntry(CurrentGroup, CurrentElem);
2107    else 
2108    {
2109       newEntry = NewDataEntry(CurrentGroup, CurrentElem, realVR);
2110       static_cast<DataEntry *>(newEntry)->SetState(DataEntry::STATE_NOTLOADED);
2111    }
2112
2113    if ( vr == GDCM_VRUNKNOWN )
2114    {
2115       if ( Filetype == ExplicitVR )
2116       {
2117          // We thought this was explicit VR, but we end up with an
2118          // implicit VR tag. Let's backtrack.
2119          if ( newEntry->GetGroup() != 0xfffe )
2120          { 
2121             std::string msg;
2122             int offset = Fp->tellg();//Only when heuristic for Explicit/Implicit was wrong
2123             msg = Util::Format(
2124                         "Entry (%04x,%04x) at x(%x) should be Explicit VR\n", 
2125                         newEntry->GetGroup(), newEntry->GetElement(), offset );
2126             gdcmWarningMacro( msg.c_str() );
2127           }
2128       }
2129       newEntry->SetImplicitVR();
2130    }
2131
2132    try
2133    {
2134       FindDocEntryLength(newEntry);
2135    }
2136    catch ( FormatError )
2137    {
2138       // Call it quits
2139       newEntry->Delete();
2140       return 0;
2141    }
2142
2143    newEntry->SetOffset(Fp->tellg());  // for each DocEntry
2144    
2145    return newEntry;
2146 }
2147
2148 /**
2149  * \brief   Handle broken private tag from Philips NTSCAN
2150  *          where the endianess is being switched to BigEndian 
2151  *          for no apparent reason
2152  * @return  no return
2153  */
2154 void Document::HandleBrokenEndian(uint16_t &group, uint16_t &elem)
2155 {
2156    // Endian reversion. 
2157    // Some files contain groups of tags with reversed endianess.
2158    static int reversedEndian = 0;
2159    // try to fix endian switching in the middle of headers
2160    if ((group == 0xfeff) && (elem == 0x00e0))
2161    {
2162      // start endian swap mark for group found
2163      gdcmDebugMacro( "Start endian swap mark found." );
2164      reversedEndian++;
2165      SwitchByteSwapCode();
2166      // fix the tag
2167      group = 0xfffe;
2168      elem  = 0xe000;
2169    } 
2170    else if (group == 0xfffe && elem == 0xe00d && reversedEndian) 
2171    {
2172      // end of reversed endian group
2173      gdcmDebugMacro( "End of reversed endian." );
2174      reversedEndian--;
2175      SwitchByteSwapCode();
2176    }
2177    else if (group == 0xfeff && elem == 0xdde0) 
2178    {
2179      // reversed Sequence Terminator found
2180      // probabely a bug in the header !
2181      // Do what you want, it breaks !
2182      //reversedEndian--;
2183      //SwitchByteSwapCode();
2184      gdcmWarningMacro( "Should never get here! reversed Sequence Terminator!" );
2185      // fix the tag
2186       group = 0xfffe;
2187       elem  = 0xe0dd;  
2188    }
2189    else if (group == 0xfffe && elem == 0xe0dd) 
2190    {
2191       gdcmDebugMacro( "Straight Sequence Terminator." );  
2192    }
2193 }
2194
2195 /**
2196  * \brief   Group 0002 is always coded Little Endian
2197  *          whatever Transfer Syntax is
2198  * @return  no return
2199  */
2200 void Document::HandleOutOfGroup0002(uint16_t &group, uint16_t &elem)
2201 {
2202    // Endian reversion. 
2203    // Some files contain groups of tags with reversed endianess.
2204    
2205       Group0002Parsed = true;
2206       // we just came out of group 0002
2207       // if Transfer Syntax is Big Endian we have to change CheckSwap
2208
2209       std::string ts = GetTransferSyntax();
2210       TS::SpecialType s = Global::GetTS()->GetSpecialTransferSyntax(ts);
2211
2212       // Group 0002 is always 'Explicit ...' 
2213       // even when Transfer Syntax says 'Implicit ..." 
2214
2215       if ( s == TS::ImplicitVRLittleEndian 
2216         ||
2217           s == TS::ImplicitVRBigEndianPrivateGE  
2218          )
2219       {
2220          Filetype = ImplicitVR;
2221       }
2222        
2223       // FIXME Strangely, this works with 
2224       //'Implicit VR BigEndian Transfer Syntax' (GE Private)
2225       //
2226       // --> Probabely normal, since we considered we never have 
2227       // to trust manufacturers.
2228       // (we find very often 'Implicit VR' tag, 
2229       // even when Transfer Syntax tells us it's Explicit ...
2230       
2231       if ( s ==  TS::ExplicitVRBigEndian )
2232       {
2233          gdcmDebugMacro("Transfer Syntax Name = [" 
2234                         << GetTransferSyntaxName() << "]" );
2235          SwitchByteSwapCode();
2236          group = SwapShort(group);
2237          elem  = SwapShort(elem);
2238       }
2239       
2240       /// \todo  find a trick to warn user and stop processing
2241             
2242       if ( s == TS::DeflatedExplicitVRLittleEndian)
2243       {
2244            gdcmWarningMacro("Transfer Syntax [" 
2245                         << GetTransferSyntaxName() << "] :"
2246                         << " not yet dealt with ");
2247            return;       
2248       }
2249       
2250       // The following shouldn't occur very often
2251       // Let's check at the very end.
2252
2253       if ( ts == GDCM_UNKNOWN )
2254       {
2255          gdcmDebugMacro("True DICOM File, with NO Transfer Syntax (?!) " );
2256          return;      
2257       }
2258       
2259       if ( !Global::GetTS()->IsTransferSyntax(ts) )
2260       {
2261          gdcmWarningMacro("True DICOM File, with illegal Transfer Syntax: [" 
2262                           << ts << "]");
2263          return;
2264       }      
2265 }
2266
2267 //-----------------------------------------------------------------------------
2268 // Print
2269
2270 //-----------------------------------------------------------------------------
2271 } // end namespace gdcm