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