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