]> Creatis software - gdcm.git/blob - src/gdcmDocument.cxx
Add a comment about a patch to be able to reda wrong images, wher UN length is
[gdcm.git] / src / gdcmDocument.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmDocument.cxx,v $
5   Language:  C++
6   Date:      $Date: 2007/07/11 12:21:01 $
7   Version:   $Revision: 1.363 $
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    
1517    // WARNING :
1518    //
1519    // For some images, length of UN elements is coded on 2 bytes (instead of 4)
1520    // There are *not* readable !
1521    // You can make a quick and dirty patch, commenting out 
1522    //| vr == "UN"
1523    // in the following line.
1524    // (the 'straight' images will no longer be readable ...)
1525    
1526       if ( vr == "OB" || vr == "OW" || vr == "SQ" || vr == "UT" 
1527                                                           || vr == "UN" || changeFromUN == true)
1528       {
1529          changeFromUN = false;
1530          // The following reserved two bytes (see PS 3.5-2003, section
1531          // "7.1.2 Data element structure with explicit vr", p 27) must be
1532          // skipped before proceeding on reading the length on 4 bytes.
1533
1534          //Fp->seekg( 2L, std::ios::cur); // Once per OW,OB,SQ DocEntry
1535          uint32_t length32 = ReadInt32(); // Once per OW,OB,SQ DocEntry
1536          CurrentOffsetPosition+=4;
1537          if ( (vr == "OB" || vr == "OW") && length32 == 0xffffffff ) 
1538          {
1539             uint32_t lengthOB;
1540             try 
1541             {
1542                lengthOB = FindDocEntryLengthOBOrOW();// for encapsulation of encoded pixel 
1543             }
1544             catch ( FormatUnexpected )
1545             {
1546                // Computing the length failed (this happens with broken
1547                // files like gdcm-JPEG-LossLess3a.dcm). We still have a
1548                // chance to get the pixels by deciding the element goes
1549                // until the end of the file. Hence we artificially fix the
1550                // the length and proceed.
1551                gdcmWarningMacro( " Computing the length failed for " << 
1552                                    entry->GetKey() <<" in " <<GetFileName());
1553
1554                long currentPosition = Fp->tellg(); // Only for gdcm-JPEG-LossLess3a.dcm-like
1555                Fp->seekg(0L,std::ios::end);        // Only for gdcm-JPEG-LossLess3a.dcm-like
1556
1557                long lengthUntilEOF = (long)(Fp->tellg())-currentPosition; // Only for gdcm-JPEG-LossLess3a.dcm-like
1558                Fp->seekg(currentPosition, std::ios::beg);                 // Only for gdcm-JPEG-LossLess3a.dcm-like
1559
1560                entry->SetReadLength(lengthUntilEOF);
1561                entry->SetLength(lengthUntilEOF);
1562                return;
1563             }
1564             entry->SetReadLength(lengthOB);
1565             entry->SetLength(lengthOB);
1566             return;
1567          }
1568          FixDocEntryFoundLength(entry, length32); 
1569          return;
1570       }
1571       // Length is encoded on 2 bytes.
1572       //length16 = ReadInt16();
1573       length16 = GetInt16();
1574       // 0xffff means that we deal with 'No Length' Sequence 
1575       //        or 'No Length' SQItem
1576       if ( length16 == 0xffff) 
1577       {           
1578          length16 = 0;
1579       }
1580       FixDocEntryFoundLength( entry, (uint32_t)length16 );
1581       return;
1582    }
1583    else
1584    {
1585       // Either implicit VR or a non DICOM conformal (see note below) explicit
1586       // VR that ommited the VR of (at least) this element. Farts happen.
1587       // [Note: according to the part 5, PS 3.5-2001, section 7.1 p25
1588       // on Data elements "Implicit and Explicit VR Data Elements shall
1589       // not coexist in a Data Set and Data Sets nested within it".]
1590       // Length is on 4 bytes.
1591
1592      // Well ... group 0002 is always coded in 'Explicit VR Litle Endian'
1593      // even if Transfer Syntax is 'Implicit VR ...'
1594      // --> Except for 'Implicit VR Big Endian Transfer Syntax GE Private' 
1595      //     where Group 0x0002 is *also* encoded in Implicit VR !
1596
1597       FixDocEntryFoundLength( entry, GetInt32() /*ReadInt32()*/ );
1598       return;
1599    }
1600 }
1601
1602 /**
1603  * \brief  Find the Length till the next sequence delimiter
1604  * \warning NOT end user intended method !
1605  * @return 
1606  */
1607 uint32_t Document::FindDocEntryLengthOBOrOW()
1608    throw( FormatUnexpected )
1609 {
1610    // See PS 3.5-2001, section A.4 p. 49 on encapsulation of encoded pixel data.
1611    
1612    long positionOnEntry = Fp->tellg(); // Only for OB,OW DataElements
1613
1614    bool foundSequenceDelimiter = false;
1615    uint32_t totalLength = 0;
1616
1617    while ( !foundSequenceDelimiter )
1618    {
1619       uint16_t group;
1620       uint16_t elem;
1621
1622       try
1623       {
1624          //group = ReadInt16(); // Once per fragment (if any) of OB,OW DataElements
1625          //elem  = ReadInt16(); // Once per fragment (if any) of OB,OW DataElements 
1626          ReadBegBuffer(4); // Once per fragment (if any) of OB,OW DataElements
1627       }
1628       catch ( FormatError )
1629       {
1630          throw FormatError("Unexpected end of file encountered during ",
1631                            "Document::FindDocEntryLengthOBOrOW()");
1632       }
1633       group = GetInt16();
1634       elem  = GetInt16();
1635
1636       // We have to decount the group and element we just read
1637       totalLength += 4;     
1638       if ( group != 0xfffe || ( ( elem != 0xe0dd ) && ( elem != 0xe000 ) ) )
1639       {
1640          gdcmWarningMacro( 
1641               "Neither an Item tag nor a Sequence delimiter tag on :" 
1642            << std::hex << group << " , " << elem 
1643            << ")" );
1644   
1645          Fp->seekg(positionOnEntry, std::ios::beg); // Once per fragment (if any) of OB,OW DataElements
1646          throw FormatUnexpected( 
1647                "Neither an Item tag nor a Sequence delimiter tag.");
1648       }
1649       if ( elem == 0xe0dd )
1650       {
1651          foundSequenceDelimiter = true;
1652       }
1653       uint32_t itemLength = ReadInt32(); // Once per fragment (if any) of OB,OW DataElements
1654       // We add 4 bytes since we just read the ItemLength with ReadInt32
1655       totalLength += itemLength + 4;
1656       SkipBytes(itemLength);
1657       
1658       if ( foundSequenceDelimiter )
1659       {
1660          break;
1661       }
1662    }
1663    Fp->seekg( positionOnEntry, std::ios::beg); // Only once for OB,OW DataElements
1664    return totalLength;
1665 }
1666
1667 /**
1668  * \brief     Find the Value Representation of the current Dicom Element.
1669  * @return    Value Representation of the current Entry
1670  */
1671 VRKey Document::FindDocEntryVR()
1672 {
1673    if ( Filetype != ExplicitVR )
1674    {
1675       return GDCM_VRUNKNOWN;
1676    }
1677
1678    // Delimiters (0xfffe), are not explicit VR ... 
1679    if ( CurrentGroup == 0xfffe )
1680       return GDCM_VRUNKNOWN;
1681          
1682    //long positionOnEntry;     
1683    //if( Debug::GetWarningFlag() ) 
1684    //  positionOnEntry = Fp->tellg(); // Only in Warning Mode
1685    
1686    // Warning: we believe this is explicit VR (Value Representation) because
1687    // we used a heuristic that found "UL" in the first tag and/or
1688    // 'Transfer Syntax' told us it is.
1689    // Alas this doesn't guarantee that all the tags will be in explicit VR. 
1690    // In some cases one finds implicit VR tags mixed within an explicit VR file
1691    // Well...
1692    // 'Normaly' the only case is : group 0002 Explicit, and other groups Implicit
1693    //
1694    // Hence we make sure the present tag is in explicit VR and try to fix things
1695    // if it happens not to be the case.
1696
1697    VRKey vr;
1698    //Fp->read(&(vr[0]),(size_t)2);
1699    vr[0] = *PtrBegBuffer++;
1700    vr[1] = *PtrBegBuffer++;
1701    
1702    //if ( !CheckDocEntryVR(vr) ) // avoid useless function call
1703    if ( !Global::GetVR()->IsValidVR(vr) )
1704    {
1705 /*   
1706 //      std::cout << "================================================================Unknown VR" 
1707                << std::hex << "0x(" 
1708                         << (unsigned int)vr[0] << "|" << (unsigned int)vr[1] 
1709                         << ")" << "for : " <<  CurrentGroup
1710                         << " at offset : 0x(" << positionOnEntry << ")"
1711                         << std::endl;
1712 */
1713       gdcmWarningMacro( "Unknown VR " << std::hex << "0x(" 
1714                         << (unsigned int)vr[0] << "|" << (unsigned int)vr[1] 
1715                         << ")"  
1716                         << " at offset : 0x(" << CurrentOffsetPosition-4<< ") for group " << CurrentGroup
1717                         );
1718
1719       //Fp->seekg(positionOnEntry, std::ios::beg); //JPRx
1720       //Fp->seekg((long)-2, std::ios::cur);// only for unrecognized VR (?!?) 
1721                                          //see :MR_Philips_Intera_PrivateSequenceExplicitVR.dcm
1722       PtrBegBuffer-=2;
1723       return GDCM_VRUNKNOWN;
1724    }
1725    return vr;
1726 }
1727
1728 /**
1729  * \brief     Check the correspondance between the VR of the header entry
1730  *            and the taken VR. If they are different, the header entry is 
1731  *            updated with the new VR.
1732  * @param     vr    Dicom Value Representation
1733  * @return    false if the VR is incorrect or if the VR isn't referenced
1734  *            otherwise, it returns true
1735 */
1736 bool Document::CheckDocEntryVR(const VRKey &vr)
1737 {
1738    return Global::GetVR()->IsValidVR(vr);
1739 }
1740
1741 /**
1742  * \brief   Skip a given Header Entry 
1743  * @param   entry entry to skip
1744  */
1745 void Document::SkipDocEntry(DocEntry *entry) 
1746 {
1747    SkipBytes(entry->GetLength());
1748 }
1749
1750 /**
1751  * \brief   Skips to the beginning of the next Header Entry 
1752  * @param   currentDocEntry entry to skip
1753  */
1754 void Document::SkipToNextDocEntry(DocEntry *currentDocEntry) 
1755 {
1756    long l = currentDocEntry->GetReadLength();
1757    if ( l == -1 ) // length = 0xffff shouldn't appear here ...
1758                   // ... but PMS imagers happen !
1759       return;
1760    Fp->seekg((size_t)(currentDocEntry->GetOffset()), std::ios::beg); //FIXME :each DocEntry
1761    if (currentDocEntry->GetGroup() != 0xfffe)  // for fffe pb
1762    {
1763       Fp->seekg( l,std::ios::cur);                                 //FIXME :each DocEntry
1764    }
1765 }
1766
1767 /**
1768  * \brief   When the length of an element value is obviously wrong (because
1769  *          the parser went Jabberwocky) one can hope improving things by
1770  *          applying some heuristics.
1771  * @param   entry entry to check
1772  * @param   foundLength first assumption about length (before bug fix, or set to zero if =0xffffffff)    
1773  */
1774 void Document::FixDocEntryFoundLength(DocEntry *entry,
1775                                       uint32_t foundLength)
1776 {
1777    entry->SetReadLength( foundLength );// will be updated only if a bug is found
1778    
1779    if ( foundLength == 0xffffffff)
1780    {
1781       //foundLength = 0;
1782       //entry->SetLength(foundLength);
1783       entry->SetLength(0);
1784       return;  // return ASAP; don't waist time on useless tests
1785    }
1786       
1787    uint16_t gr   = entry->GetGroup();
1788    uint16_t elem = entry->GetElement(); 
1789      
1790    if ( foundLength % 2)
1791    {
1792       gdcmWarningMacro( "Warning : Tag with uneven length " << foundLength
1793         <<  " in x(" << std::hex << gr << "," << elem <<")");
1794    }
1795       
1796    //////// Fix for some naughty General Electric images.
1797    // Allthough not recent many such GE corrupted images are still present
1798    // on Creatis hard disks. Hence this fix shall remain when such images
1799    // are no longer in use (we are talking a few years, here)...
1800    // Note: XMedCon probably uses such a trick since it is able to read
1801    //       those pesky GE images ...
1802    if ( foundLength == 13)
1803    {
1804       // Only happens for this length !
1805       if ( gr != 0x0008 || ( elem != 0x0070 && elem != 0x0080 ) )
1806       {
1807          foundLength = 10;
1808          entry->SetReadLength(10); // a bug is to be fixed !?
1809       }
1810    }
1811
1812    //////// Fix for some brain-dead 'Leonardo' Siemens images.
1813    // Occurence of such images is quite low (unless one leaves close to a
1814    // 'Leonardo' source. Hence, one might consider commenting out the
1815    // following fix on efficiency reasons.
1816    else if ( gr == 0x0009 && ( elem == 0x1113 || elem == 0x1114 ) )
1817    { 
1818    // Ideally we should check we are in Explicit and double check
1819    // that VR=UL... this is done properly in gdcm2
1820       if( foundLength == 6 )
1821       {
1822          gdcmWarningMacro( "Replacing Length from 6 into 4" );
1823          foundLength = 4;
1824          entry->SetReadLength(4); // a bug is to be fixed !
1825       } 
1826       else if ( foundLength%4 )
1827       {
1828         gdcmErrorMacro( "This looks like to a buggy Siemens DICOM file."
1829         "The length of this tag seems to be wrong" );
1830       }
1831    }
1832
1833    else if ( entry->GetVR() == "SQ" )
1834    {
1835       foundLength = 0;      // ReadLength is unchanged
1836    }
1837
1838    //////// We encountered a 'delimiter' element i.e. a tag of the form
1839    // "fffe|xxxx" which is just a marker. Delimiters length should not be
1840    // taken into account.
1841    else if ( gr == 0xfffe )
1842    {
1843      // According to the norm, fffe|0000 shouldn't exist. BUT the Philips
1844      // image gdcmData/gdcm-MR-PHILIPS-16-Multi-Seq.dcm happens to
1845      // causes extra troubles...
1846      if ( elem != 0x0000 )
1847      {
1848         foundLength = 0;
1849      }
1850      else
1851      {
1852         foundLength=12; // to skip the mess that follows this bugged Tag !
1853      }
1854    }
1855    entry->SetLength(foundLength);
1856 }
1857
1858 /**
1859  * \brief   Apply some heuristics to predict whether the considered 
1860  *          element value contains/represents an integer or not.
1861  * @param   entry The element value on which to apply the predicate.
1862  * @return  The result of the heuristical predicate.
1863  */
1864 bool Document::IsDocEntryAnInteger(DocEntry *entry)
1865 {
1866    uint16_t elem         = entry->GetElement();
1867    uint16_t group        = entry->GetGroup();
1868    const VRKey &vr       = entry->GetVR();
1869    uint32_t length       = entry->GetLength();
1870
1871    // When we have some semantics on the element we just read, and if we
1872    // a priori know we are dealing with an integer, then we shall be
1873    // able to swap its element value properly.
1874    if ( elem == 0 )  // This is the group length of the group
1875    {  
1876       if ( length == 4 )
1877       {
1878          return true;
1879       }
1880       else 
1881       {
1882          // Although this should never happen, still some images have a
1883          // corrupted group length [e.g. have a glance at offset x(8336) of
1884          // gdcmData/gdcm-MR-PHILIPS-16-Multi-Seq.dcm.
1885          // Since for dicom compliant and well behaved headers, the present
1886          // test is useless (and might even look a bit paranoid), when we
1887          // encounter such an ill-formed image, we simply display a warning
1888          // message and proceed on parsing (while crossing fingers).
1889          long filePosition = Fp->tellg(); // Only when elem 0x0000 length is not 4 (?!?)
1890          (void)filePosition;
1891          gdcmWarningMacro( "Erroneous Group Length element length  on : (" 
1892            << std::hex << group << " , " << elem
1893            << ") -before- position x(" << filePosition << ")"
1894            << "lgt : " << length );
1895       }
1896    }
1897
1898    if ( vr == "UL" || vr == "US" || vr == "SL" || vr == "SS" )
1899    {
1900       return true;
1901    }   
1902    return false;
1903 }
1904
1905 /**
1906  * \brief   Discover what the swap code is (among little endian, big endian,
1907  *          bad little endian, bad big endian).
1908  *          sw is set
1909  * @return false when we are absolutely sure 
1910  *               it's neither ACR-NEMA nor DICOM
1911  *         true  when we hope ours assuptions are OK
1912  */
1913 bool Document::CheckSwap()
1914 {   
1915    uint32_t  s32;
1916    uint16_t  s16;
1917        
1918    char deb[256];
1919     
1920    // First, compare HostByteOrder and NetworkByteOrder in order to
1921    // determine if we shall need to swap bytes (i.e. the Endian type).
1922    bool net2host = Util::IsCurrentProcessorBigEndian();
1923          
1924    // The easiest case is the one of a 'true' DICOM header, we just have
1925    // to look for the string "DICM" inside the file preamble.
1926    Fp->read(deb, 256);
1927    
1928    char *entCur = deb + 128;
1929    if ( memcmp(entCur, "DICM", (size_t)4) == 0 )
1930    {
1931       gdcmDebugMacro( "Looks like DICOM Version3 (preamble + DCM)" );
1932       
1933       // Group 0002 should always be VR, and the first element 0000
1934       // Let's be carefull (so many wrong headers ...)
1935       // and determine the value representation (VR) : 
1936       // Let's skip to the first element (0002,0000) and check there if we find
1937       // "UL"  - or "OB" if the 1st one is (0002,0001) -,
1938       // in which case we (almost) know it is explicit VR.
1939       // WARNING: if it happens to be implicit VR then what we will read
1940       // is the length of the group. If this ascii representation of this
1941       // length happens to be "UL" then we shall believe it is explicit VR.
1942       // We need to skip :
1943       // * the 128 bytes of File Preamble (often padded with zeroes),
1944       // * the 4 bytes of "DICM" string,
1945       // * the 4 bytes of the first tag (0002, 0000),or (0002, 0001)
1946       // i.e. a total of  136 bytes.
1947       entCur = deb + 136;
1948      
1949       // group 0x0002 *is always* Explicit VR Sometimes,
1950       // even if elem 0002,0010 (Transfer Syntax) tells us the file is
1951       // *Implicit* VR  (see former 'gdcmData/icone.dcm')
1952       
1953       if ( memcmp(entCur, "UL", (size_t)2) == 0 ||
1954            memcmp(entCur, "OB", (size_t)2) == 0 ||
1955            memcmp(entCur, "UI", (size_t)2) == 0 ||
1956            memcmp(entCur, "CS", (size_t)2) == 0 )  // CS, to remove later
1957                                                    // when Write DCM *adds*
1958       // FIXME
1959       // Use Document::dicom_vr to test all the possibilities
1960       // instead of just checking for UL, OB and UI !? group 0000 
1961       {
1962          Filetype = ExplicitVR;
1963          gdcmDebugMacro( "Group 0002 : Explicit Value Representation");
1964       } 
1965       else 
1966       {
1967          Filetype = ImplicitVR;
1968          gdcmWarningMacro( "Group 0002 :Not an explicit Value Representation;"
1969                         << "Looks like a bugged Header!");
1970       }
1971       
1972       // Here, we assume that the file IS kosher Dicom !
1973       // (The meta elements - group 0x0002 - ARE little endian !)
1974       if ( net2host )
1975       {
1976          SwapCode = 4321;
1977          gdcmDebugMacro( "HostByteOrder != NetworkByteOrder, SwapCode = 4321");
1978       }
1979       else 
1980       {
1981          SwapCode = 1234;
1982          gdcmDebugMacro( "HostByteOrder = NetworkByteOrder, SwapCode = 1234");
1983       }
1984       
1985       // Position the file position indicator at first tag 
1986       // (i.e. after the file preamble and the "DICM" string).
1987
1988       Fp->seekg ( 132L, std::ios::beg); // Once per Document
1989       CurrentOffsetPosition = 132;
1990       return true;
1991    } // ------------------------------- End of DicomV3 ----------------
1992
1993    // Alas, this is not a DicomV3 file and whatever happens there is no file
1994    // preamble. We can reset the file position indicator to where the data
1995    // is (i.e. the beginning of the file).
1996
1997    gdcmWarningMacro( "Not a Kosher DICOM Version3 file (no preamble)");
1998
1999    Fp->seekg(0, std::ios::beg); // Once per ACR-NEMA Document
2000    CurrentOffsetPosition = 0;
2001    // Let's check 'No Preamble Dicom File' :
2002    // Should start with group 0x0002
2003    // and be Explicit Value Representation
2004
2005    s16 = *((uint16_t *)(deb));
2006    SwapCode = 0;     
2007    switch ( s16 )
2008    {
2009       case 0x0002 :
2010          SwapCode = 1234;
2011          entCur = deb + 4;
2012          break;
2013       case 0x0200 :
2014          SwapCode = 4321;
2015          entCur = deb + 6;
2016     } 
2017
2018    if ( SwapCode != 0 )
2019    {
2020       if ( memcmp(entCur, "UL", (size_t)2) == 0 ||
2021            memcmp(entCur, "OB", (size_t)2) == 0 ||
2022            memcmp(entCur, "UI", (size_t)2) == 0 ||
2023            memcmp(entCur, "SH", (size_t)2) == 0 ||
2024            memcmp(entCur, "AE", (size_t)2) == 0 ||
2025            memcmp(entCur, "OB", (size_t)2) == 0 )
2026          {
2027             Filetype = ExplicitVR;  // FIXME : not enough to say it's Explicit
2028                                     // Wait untill reading Transfer Syntax
2029             gdcmDebugMacro( "Group 0002 : Explicit Value Representation");
2030             return true;
2031           }
2032     }
2033 // ------------------------------- End of 'No Preamble' DicomV3 -------------
2034
2035    // Our next best chance would be to be considering a 'clean' ACR/NEMA file.
2036    // By clean we mean that the length of the first group is written down.
2037    // If this is the case and since the length of the first group HAS to be
2038    // four (bytes), then determining the proper swap code is straightforward.
2039
2040    entCur = deb + 4;
2041    // We assume the array of char we are considering contains the binary
2042    // representation of a 32 bits integer. Hence the following dirty
2043    // trick :
2044    s32 = *((uint32_t *)(entCur));
2045    switch( s32 )
2046    {
2047       case 0x00040000 :
2048          SwapCode = 3412;
2049          Filetype = ACR;
2050          return true;
2051       case 0x04000000 :
2052          SwapCode = 4321;
2053          Filetype = ACR;
2054          return true;
2055       case 0x00000400 :
2056          SwapCode = 2143;
2057          Filetype = ACR;
2058          return true;
2059       case 0x00000004 :
2060          SwapCode = 1234;
2061          Filetype = ACR;
2062          return true;
2063       default :
2064          // We are out of luck. It is not a DicomV3 nor a 'clean' ACR/NEMA file.
2065          // It is time for despaired wild guesses. 
2066          // So, let's check if this file wouldn't happen to be 'dirty' ACR/NEMA,
2067          //  i.e. the 'group length' element is not present :     
2068          
2069          //  check the supposed-to-be 'group number'
2070          //  in ( 0x0001 .. 0x0008 )
2071          //  to determine ' SwapCode' value .
2072          //  Only 0 or 4321 will be possible 
2073          //  (no oportunity to check for the formerly well known
2074          //  ACR-NEMA 'Bad Big Endian' or 'Bad Little Endian' 
2075          //  if unsuccessfull (i.e. neither 0x0002 nor 0x0200 etc-3, 4, ..., 8-)
2076          //  the file IS NOT ACR-NEMA nor DICOM V3
2077          //  Find a trick to tell it the caller...
2078       
2079          s16 = *((uint16_t *)(deb));
2080  
2081          gdcmDebugMacro("not a DicomV3 nor a 'clean' ACR/NEMA;"
2082                      << " (->despaired wild guesses !)");       
2083          switch ( s16 )
2084          {
2085             case 0x0001 :
2086             case 0x0002 :
2087             case 0x0003 :
2088             case 0x0004 :
2089             case 0x0005 :
2090             case 0x0006 :
2091             case 0x0007 :
2092             case 0x0008 :
2093             case 0x0028 :
2094                SwapCode = 1234;
2095                Filetype = ACR;
2096                return true;
2097             case 0x0100 :
2098             case 0x0200 :
2099             case 0x0300 :
2100             case 0x0400 :
2101             case 0x0500 :
2102             case 0x0600 :
2103             case 0x0700 :
2104             case 0x0800 :
2105             case 0x2800 :
2106                SwapCode = 4321;
2107                Filetype = ACR;
2108                return true;
2109             default :
2110     
2111                s16 = *((uint16_t *)(deb));
2112                if (s16 != 0x0000)
2113                    return false;
2114                s16 = *((uint16_t *)(deb+2));
2115
2116                Fp->seekg ( 0L, std::ios::beg); // Once per Document
2117                CurrentOffsetPosition = 0;
2118                switch(s16)  // try an other trick!
2119                             // -> to be able to decode 0029|1010 DataElement
2120                             // -> and be not less cleaver than dcmdump ;-)
2121                {
2122                   case 0x0004 :
2123                      SwapCode = 1234; 
2124                      break;
2125                   case 0x0400 :
2126                      SwapCode = 3412;
2127                      break;      
2128                   default:
2129                      gdcmWarningMacro("ACR/NEMA unfound swap info (Hopeless !)");
2130                      Filetype = Unknown;
2131                      return false;
2132                }
2133                // Check if next 2 bytes are a VR
2134                // Probabely something more time-consuming exists with std::string
2135                const char VRvalues[] = "AEASCSDADSFLFDISLOLTPNSHSLSSSTTMUIULUSUTOBOWOFATUNSQ";
2136                int nbVal = 26;
2137                const char *pt = VRvalues;
2138                for (int i=0;i<nbVal;i++)
2139                {
2140                   if(*(deb+4) == *pt++)
2141                   if(*(deb+5) == *pt++) {
2142                      Filetype = ExplicitVR;
2143                      return true;       
2144                   }
2145
2146               }
2147               Filetype = ImplicitVR;
2148               return true;       
2149          }
2150    }
2151 }
2152
2153 /**
2154  * \brief Change the Byte Swap code. 
2155  */
2156 void Document::SwitchByteSwapCode() 
2157 {
2158    gdcmDebugMacro( "Switching Byte Swap code from "<< SwapCode
2159                      << " at: 0x" << std::hex << Fp->tellg() );  // Only when DEBUG
2160    if ( SwapCode == 1234 ) 
2161    {
2162       SwapCode = 4321;
2163    }
2164    else if ( SwapCode == 4321 ) 
2165    {
2166       SwapCode = 1234;
2167    }
2168    else if ( SwapCode == 3412 ) 
2169    {
2170       SwapCode = 2143;
2171    }
2172    else if ( SwapCode == 2143 )
2173    {
2174       SwapCode = 3412;
2175    }
2176    gdcmDebugMacro( " Into: "<< SwapCode );
2177 }
2178
2179 /**
2180  * \brief  during parsing, Header Elements too long are not loaded in memory
2181  * @param newSize new size
2182  */
2183 void Document::SetMaxSizeLoadEntry(long newSize)
2184 {
2185    if ( newSize < 0 )
2186    {
2187       return;
2188    }
2189    if ((uint32_t)newSize >= (uint32_t)0xffffffff )
2190    {
2191       MaxSizeLoadEntry = 0xffffffff;
2192       return;
2193    }
2194    MaxSizeLoadEntry = newSize;
2195 }
2196
2197 /**
2198  * \brief   Read the next tag WITHOUT loading it's value
2199  *          (read the 'Group Number', the 'Element Number',
2200  *          gets the Dict Entry
2201  *          gets the VR, gets the length, gets the offset value)
2202  * @return  On succes : the newly created DocEntry, NULL on failure.
2203  */
2204 DocEntry *Document::ReadNextDocEntry()
2205 {
2206    try
2207    {
2208       ReadBegBuffer(8); // Avoid to many time consuming freads
2209       //CurrentGroup = ReadInt16();
2210       //CurrentElem  = ReadInt16();
2211    }
2212    catch ( FormatError )
2213    {
2214       // We reached the EOF (or an error occured) therefore
2215       // header parsing has to be considered as finished.
2216       return 0;
2217    }
2218    
2219    changeFromUN = false;
2220    CurrentGroup = GetInt16();
2221    CurrentElem  = GetInt16();
2222    
2223    // In 'true DICOM' files Group 0002 is always little endian
2224    if ( HasDCMPreamble )
2225    {
2226       if ( !Group0002Parsed && CurrentGroup != 0x0002) // avoid calling a function when useless
2227          HandleOutOfGroup0002(CurrentGroup, CurrentElem);
2228       else
2229          // Sometimes file contains groups of tags with reversed endianess.
2230          HandleBrokenEndian(CurrentGroup, CurrentElem);
2231     }
2232
2233    VRKey vr = FindDocEntryVR();
2234    VRKey realVR = vr;
2235
2236    if ( vr == GDCM_VRUNKNOWN )
2237    {
2238       if ( CurrentElem == 0x0000 ) // Group Length
2239       {
2240          realVR = "UL";     // must be UL
2241       }
2242       else if (CurrentGroup == 0xfffe) // Don't get DictEntry for Delimitors
2243       {
2244          realVR = "UL";
2245       }
2246
2247       // Commented out in order not to generate 'Shadow Groups' where some 
2248       // Data Elements are Explicit VR and some other ones Implicit VR
2249       // (Stupid MatLab DICOM Reader couldn't read gdcm-written images)
2250       /*
2251       else if (CurrentGroup%2 == 1 &&  
2252                                (CurrentElem >= 0x0010 && CurrentElem <=0x00ff ))
2253       {  
2254       // DICOM PS 3-5 7.8.1 a) states that those 
2255       // (gggg-0010->00FF where gggg is odd) attributes have to be LO
2256          realVR = "LO";
2257       }
2258       */
2259       else
2260       {
2261          DictEntry *dictEntry = GetDictEntry(CurrentGroup,CurrentElem);//only when ImplicitVR
2262          if ( dictEntry )
2263          {
2264             realVR = dictEntry->GetVR();
2265             dictEntry->Unregister(); // GetDictEntry registered it 
2266          }
2267       }
2268    }
2269
2270    // if UN found, let's check the dictionary, and trust it!
2271    // (maybe a private dictionary exists?)    
2272    else if (vr == "UN")
2273    {
2274       DictEntry *dictEntry = GetDictEntry(CurrentGroup,CurrentElem);
2275       if ( dictEntry )
2276       {
2277          realVR = dictEntry->GetVR(); 
2278          dictEntry->Unregister(); // GetDictEntry registered it
2279
2280          // for VR = "UN", length is always stored on 4 bytes.
2281          changeFromUN=true;
2282          /// \todo : fixme If inside a supposed to be UN DataElement (but SQ according to a private dictionnary)
2283          ///         there is some more supposed to UN DataElements, it will probabely fail.
2284          ///         --> find a -non time consuming- trick to store changeFromUN info at DataElement level,
2285          ///         not at the Document level.
2286       }   
2287    }
2288
2289
2290    DocEntry *newEntry;
2291    //if ( Global::GetVR()->IsVROfSequence(realVR) )
2292    if (realVR == "SQ")
2293    {
2294       newEntry = NewSeqEntry(CurrentGroup, CurrentElem);
2295    }
2296    else
2297    {
2298       newEntry = NewDataEntry(CurrentGroup, CurrentElem, realVR);
2299       static_cast<DataEntry *>(newEntry)->SetState(DataEntry::STATE_NOTLOADED);
2300    }
2301
2302    if ( vr == GDCM_VRUNKNOWN )
2303    {
2304       if ( Filetype == ExplicitVR )
2305       {
2306          // We thought this was explicit VR, but we end up with an
2307          // implicit VR tag. Let's backtrack.
2308  
2309          //if ( newEntry->GetGroup() != 0xfffe ) 
2310          if (CurrentGroup != 0xfffe)
2311          { 
2312             int offset = Fp->tellg();//Only when heuristic for Explicit/Implicit was wrong
2313
2314             gdcmWarningMacro("Entry (" << newEntry->GetKey() << ") at x("
2315                      <<  offset << ") should be Explicit VR");
2316           }
2317       }
2318       newEntry->SetImplicitVR();
2319    }
2320
2321    try
2322    {
2323       FindDocEntryLength(newEntry);
2324    }
2325    catch ( FormatError )
2326    {
2327       // Call it quits
2328       newEntry->Delete();
2329       return 0;
2330    }
2331
2332    newEntry->SetOffset(Fp->tellg());  // for each DocEntry
2333    return newEntry;
2334 }
2335
2336 /**
2337  * \brief   Handle broken private tag from Philips NTSCAN
2338  *          where the endianess is being switched to BigEndian 
2339  *          for no apparent reason
2340  * @return  no return
2341  */
2342 void Document::HandleBrokenEndian(uint16_t &group, uint16_t &elem)
2343 {
2344  // for strange PMS Gyroscan Intera images
2345  // Item 'starter' has a tag : 0x3f3f,0x3f00, for no apparent reason
2346  
2347  // --- Feel free to remove this test *on your own coy of gdcm*
2348  //     if you are sure you'll never face this problem.
2349  
2350    if ((group == 0x3f3f) && (elem == 0x3f00))
2351    {
2352      // start endian swap mark for group found
2353      gdcmDebugMacro( " delimiter 0x3f3f  found." );
2354      // fix the tag
2355      group = 0xfffe;
2356      elem  = 0xe000;
2357      return;
2358    }
2359    // --- End of removable code
2360    
2361    // Endian reversion. 
2362    // Some files contain groups of tags with reversed endianess.
2363    static int reversedEndian = 0;
2364    // try to fix endian switching in the middle of headers
2365    if ((group == 0xfeff) && (elem == 0x00e0))
2366    {
2367      // start endian swap mark for group found
2368      gdcmDebugMacro( "Start endian swap mark found." );
2369      reversedEndian++;
2370      SwitchByteSwapCode();
2371      // fix the tag
2372      group = 0xfffe;
2373      elem  = 0xe000;
2374    } 
2375    else if (group == 0xfffe && elem == 0xe00d && reversedEndian) 
2376    {
2377      // end of reversed endian group
2378      gdcmDebugMacro( "End of reversed endian." );
2379      reversedEndian--;
2380      SwitchByteSwapCode();
2381    }
2382    else if (group == 0xfeff && elem == 0xdde0) 
2383    {
2384      // reversed Sequence Terminator found
2385      // probabely a bug in the header !
2386      // Do what you want, it breaks !
2387      //reversedEndian--;
2388      //SwitchByteSwapCode();
2389      gdcmWarningMacro( "Should never get here! reversed Sequence Terminator!" );
2390      // fix the tag
2391       group = 0xfffe;
2392       elem  = 0xe0dd;  
2393    }
2394    else if (group == 0xfffe && elem == 0xe0dd) 
2395    {
2396       gdcmDebugMacro( "Straight Sequence Terminator." );  
2397    }
2398 }
2399
2400 /**
2401  * \brief   Group 0002 is always coded Little Endian
2402  *          whatever Transfer Syntax is
2403  * @return  no return
2404  */
2405 void Document::HandleOutOfGroup0002(uint16_t &group, uint16_t &elem)
2406 {
2407    // Endian reversion. 
2408    // Some files contain groups of tags with reversed endianess.
2409    
2410       Group0002Parsed = true;
2411       // we just came out of group 0002
2412       // if Transfer Syntax is Big Endian we have to change CheckSwap
2413
2414       std::string ts = GetTransferSyntax();
2415       TS::SpecialType s = Global::GetTS()->GetSpecialTransferSyntax(ts);
2416
2417       // Group 0002 is always 'Explicit ...' 
2418       // even when Transfer Syntax says 'Implicit ..." 
2419
2420       if ( s == TS::ImplicitVRLittleEndian 
2421         ||
2422           s == TS::ImplicitVRBigEndianPrivateGE  
2423          )
2424       {
2425          Filetype = ImplicitVR;
2426       }
2427        
2428       // FIXME Strangely, this works with 
2429       //'Implicit VR BigEndian Transfer Syntax' (GE Private)
2430       //
2431       // --> Probabely normal, since we considered we never have 
2432       // to trust manufacturers.
2433       // (we often find 'Implicit VR' tag, 
2434       // even when Transfer Syntax tells us it's Explicit ...
2435       
2436        // NEVER trust the meta elements!
2437        // (see what ezDICOM does ...)
2438              
2439       /*
2440       if ( s ==  TS::ExplicitVRBigEndian )
2441       {
2442          gdcmDebugMacro("Transfer Syntax Name = [" 
2443                         << GetTransferSyntaxName() << "]" );
2444          SwitchByteSwapCode();
2445          group = SwapShort(group);
2446          elem  = SwapShort(elem);
2447       }
2448       */
2449     //-- Broken ACR  may start with a Shadow Group --
2450     // worse : some ACR-NEMA like files start 00028 group ?!? 
2451     if ( !( (group >= 0x0001 && group <= 0x0008) || group == 0x0028 ) )
2452     {
2453        // We trust what we see.
2454        SwitchByteSwapCode();
2455        group = SwapShort(group);
2456        elem  = SwapShort(elem); 
2457        // not what we where told (by meta elements) !
2458        gdcmDebugMacro("Transfer Syntax Name = ["       
2459                        << GetTransferSyntaxName() << "]" );         
2460     }
2461       
2462       /// \todo  find a trick to warn user and stop processing
2463             
2464       if ( s == TS::DeflatedExplicitVRLittleEndian)
2465       {
2466            gdcmWarningMacro("Transfer Syntax [" 
2467                         << GetTransferSyntaxName() << "] :"
2468                         << " not yet dealt with ");
2469            return;       
2470       }
2471       
2472       // The following shouldn't occur very often
2473       // Let's check at the very end.
2474
2475       if ( ts == GDCM_UNKNOWN )
2476       {
2477          gdcmDebugMacro("True DICOM File, with NO Transfer Syntax (?!) " );
2478          return;      
2479       }
2480       
2481       if ( !Global::GetTS()->IsTransferSyntax(ts) )
2482       {
2483          gdcmWarningMacro("True DICOM File, with illegal Transfer Syntax: [" 
2484                           << ts << "]");
2485          return;
2486       }      
2487 }
2488
2489 //-----------------------------------------------------------------------------
2490 // Print
2491
2492 //-----------------------------------------------------------------------------
2493 } // end namespace gdcm