]> Creatis software - gdcm.git/blob - src/gdcmDocument.cxx
4d88d9c8d623b85b76f12f8117f19fbefb591302
[gdcm.git] / src / gdcmDocument.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmDocument.cxx,v $
5   Language:  C++
6   Date:      $Date: 2007/09/17 12:16:02 $
7   Version:   $Revision: 1.369 $
8                                                                                 
9   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10   l'Image). All rights reserved. See Doc/License.txt or
11   http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
12                                                                                 
13      This software is distributed WITHOUT ANY WARRANTY; without even
14      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15      PURPOSE.  See the above copyright notices for more information.
16                                                                                 
17 =========================================================================*/
18
19 #include "gdcmDocument.h"
20 #include "gdcmSeqEntry.h"
21 #include "gdcmGlobal.h"
22 #include "gdcmUtil.h"
23 #include "gdcmDebug.h"
24 #include "gdcmTS.h"
25 #include "gdcmDictSet.h"
26 #include "gdcmDocEntrySet.h"
27 #include "gdcmSQItem.h"
28 #include "gdcmDataEntry.h"
29
30 #include <vector>
31 #include <iomanip>
32 #include <fstream>
33 #include <ctype.h>  // for isdigit
34 #include <stdlib.h> // for atoi
35
36 #if defined(__BORLANDC__)
37    #include <mem.h> // for memset
38 #endif 
39
40 namespace GDCM_NAME_SPACE 
41 {
42 //-----------------------------------------------------------------------------
43
44 // Refer to Document::SetMaxSizeLoadEntry()
45 const unsigned int Document::MAX_SIZE_LOAD_ELEMENT_VALUE = 0xfff; // 4096
46
47 //-----------------------------------------------------------------------------
48 // Constructor / Destructor
49 // Constructors and destructors are protected to avoid user to invoke directly
50
51 /**
52  * \brief This default constructor neither loads nor parses the file. 
53  *        You should then invoke Document::Load.
54  *         
55  */
56 Document::Document() 
57          :ElementSet()
58 {
59    Fp = 0;
60
61    SetMaxSizeLoadEntry(MAX_SIZE_LOAD_ELEMENT_VALUE);
62    Initialize();
63    SwapCode = 1234;
64    Filetype = ExplicitVR;
65    CurrentOffsetPosition = 0;
66    // 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 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  // This one is recursive
725  // false : outside MetaElements
726  // false : outside Sequence
727    ElementSet::WriteContent(fp, filetype, false, false);
728 }
729
730 // -----------------------------------------
731 // Content entries 
732 /**
733  * \brief Loads (from disk) the element content 
734  *        when a string is not suitable
735  * @param group   group number of the Entry 
736  * @param elem  element number of the Entry
737  */
738 void Document::LoadEntryBinArea(uint16_t group, uint16_t elem)
739 {
740    // Search the corresponding DocEntry
741    DocEntry *docEntry = GetDocEntry(group, elem);
742    if ( !docEntry )
743    {
744       gdcmDebugMacro(std::hex << group << "|" << elem 
745                        <<  " doesn't exist" );
746       return;
747    }
748    DataEntry *dataEntry = dynamic_cast<DataEntry *>(docEntry);
749    if ( !dataEntry )
750    {
751       gdcmWarningMacro(std::hex << group << "|" << elem 
752                        <<  " is NOT a DataEntry");
753       return;
754    }
755    LoadEntryBinArea(dataEntry);
756 }
757
758 /**
759  * \brief Loads (from disk) the element content 
760  *        when a string is not suitable
761  * @param entry  Entry whose binArea is going to be loaded
762  */
763 void Document::LoadEntryBinArea(DataEntry *entry) 
764
765    if( entry->GetBinArea() )
766       return;
767
768    bool openFile = !Fp;
769    if ( openFile )
770       OpenFile();
771
772    //size_t o =(size_t)entry->GetOffset();
773    Fp->seekg((size_t)entry->GetOffset(), std::ios::beg);  // FIXME : for each DataEntry !
774
775    size_t l = entry->GetLength();
776    uint8_t *data = new uint8_t[l];
777    if ( !data )
778    {
779       gdcmWarningMacro(  "Cannot allocate DataEntry content for : "
780                        << std::hex << entry->GetGroup() 
781                        << "|" << entry->GetElement() );
782       return;
783    }
784
785    // Read the data
786    Fp->read((char*)data, l);
787    if ( Fp->fail() || Fp->eof() )
788    {
789       delete[] data;
790       entry->SetState(DataEntry::STATE_UNREAD);
791       return;
792    }
793
794    // Swap the data content if necessary
795    uint32_t i;
796    unsigned short vrLgth = 
797                         Global::GetVR()->GetAtomicElementLength(entry->GetVR());
798
799 // FIXME : trouble expected if we read an ... OW Entry (LUT, etc ..)
800 //   if( entry->GetVR() == "OW" )
801 //      vrLgth = 1;
802
803    switch(vrLgth)
804    {
805       case 1:
806       {
807          break;
808       }     
809       case 2:
810       {
811          uint16_t *data16 = (uint16_t *)data;
812          for(i=0;i<l/vrLgth;i++)
813             data16[i] = SwapShort(data16[i]);
814          break;
815       }
816       case 4:
817       {
818          uint32_t *data32 = (uint32_t *)data;
819          for(i=0;i<l/vrLgth;i++)
820             data32[i] = SwapLong(data32[i]);
821          break;
822       }
823       case 8:
824       {
825          double *data64 = (double *)data;
826          for(i=0;i<l/vrLgth;i++)
827             data64[i] = SwapDouble(data64[i]);
828          break;
829       }
830    }
831    
832    entry->SetBinArea(data);
833
834    if ( openFile ) // The file is left in the state (open/close) it was at entrance
835       CloseFile();
836 }
837
838 /**
839  * \brief  Loads the element while preserving the current
840  *         underlying file position indicator as opposed to
841  *        LoadDocEntry that modifies it
842  * \note seems to be unused!.
843  * @param entry   DocEntry whose value will be loaded. 
844  */
845 //void Document::LoadDocEntrySafe(DocEntry *entry)
846 //{
847 //   if ( Fp )
848 //   {
849 //      long PositionOnEntry = Fp->tellg();        // LoadDocEntrySafe is not used
850 //      LoadDocEntry(entry);
851 //      Fp->seekg(PositionOnEntry, std::ios::beg); // LoadDocEntrySafe is not used
852 //   }
853 //}
854
855 /**
856  * \brief   Compares two documents, according to DicomDir rules
857  * \warning Does NOT work with ACR-NEMA files
858  * \todo    Find a trick to solve the pb (use RET fields ?)
859  * @param   document to compare with current one
860  * @return  true if 'smaller'
861  */
862 bool Document::operator<(Document &document)
863 {
864    // Patient Name
865    std::string s1 = GetEntryString(0x0010,0x0010);
866    std::string s2 = document.GetEntryString(0x0010,0x0010);
867    if (s1 < s2)
868    {
869       return true;
870    }
871    else if ( s1 > s2 )
872    {
873       return false;
874    }
875    else
876    {
877       // Patient ID
878       s1 = GetEntryString(0x0010,0x0020);
879       s2 = document.GetEntryString(0x0010,0x0020);
880       if ( s1 < s2 )
881       {
882          return true;
883       }
884       else if ( s1 > s2 )
885       {
886          return false;
887       }
888       else
889       {
890          // Study Instance UID
891          s1 = GetEntryString(0x0020,0x000d);
892          s2 = document.GetEntryString(0x0020,0x000d);
893          if ( s1 < s2 )
894          {
895             return true;
896          }
897          else if ( s1 > s2 )
898          {
899             return false;
900          }
901          else
902          {
903             // Serie Instance UID
904             s1 = GetEntryString(0x0020,0x000e);
905             s2 = document.GetEntryString(0x0020,0x000e);    
906             if ( s1 < s2 )
907             {
908                return true;
909             }
910             else if ( s1 > s2 )
911             {
912                return false;
913             }
914          }
915       }
916    }
917    return false;
918 }
919
920 //-----------------------------------------------------------------------------
921 // Protected
922
923 /**
924  * \brief Reads a given length of bytes
925  *       (in order to avoid to many CPU time-consuming fread-s)
926  * @param l length to read 
927  */
928 void Document::ReadBegBuffer(size_t l)
929    throw( FormatError )
930 {   
931    Fp->read (BegBuffer, (size_t)l);
932    if ( Fp->fail() )
933    {
934       throw FormatError( "Document::ReadBegBuffer()", " file error." );
935    }
936    if ( Fp->eof() )
937    {
938       throw FormatError( "Document::ReadBegBuffer()", "EOF." );
939    }
940    PtrBegBuffer = BegBuffer;
941    CurrentOffsetPosition+=l;
942 }
943 /**
944  * \brief Reads a supposed to be 16 Bits integer
945  *       (swaps it depending on processor endianness) 
946  * @return read value
947  */
948 uint16_t Document::ReadInt16()
949    throw( FormatError )
950 {
951    uint16_t g;
952    Fp->read ((char*)&g, (size_t)2);
953    if ( Fp->fail() )
954    {
955       throw FormatError( "Document::ReadInt16()", " file error." );
956    }
957    if ( Fp->eof() )
958    {
959       throw FormatError( "Document::ReadInt16()", "EOF." );
960    }
961    g = SwapShort(g); 
962    return g;
963 }
964
965 /**
966  * \brief Gets from BegBuffer a supposed to be 16 Bits integer
967  *       (swaps it depending on processor endianness) 
968  * @return read value
969  */
970 uint16_t Document::GetInt16()
971 {
972    uint16_t g = *((uint16_t*)PtrBegBuffer);
973    g = SwapShort(g);
974    PtrBegBuffer+=2; 
975    return g;
976 }
977 /**
978  * \brief  Reads a supposed to be 32 Bits integer
979  *        (swaps it depending on processor endianness)  
980  * @return read value
981  */
982 uint32_t Document::ReadInt32()
983    throw( FormatError )
984 {
985    uint32_t g;
986    Fp->read ((char*)&g, (size_t)4);
987    if ( Fp->fail() )
988    {
989       throw FormatError( "Document::ReadInt32()", " file error." );
990    }
991    if ( Fp->eof() )
992    {
993       throw FormatError( "Document::ReadInt32()", "EOF." );
994    }
995    g = SwapLong(g);
996    return g;
997 }
998
999 /**
1000  * \brief Gets from BegBuffer a supposed to be 32 Bits integer
1001  *       (swaps it depending on processor endianness) 
1002  * @return read value
1003  */
1004 uint32_t Document::GetInt32()
1005 {
1006    uint32_t g = *((uint32_t*)PtrBegBuffer);
1007    g = SwapLong(g); 
1008    PtrBegBuffer+=4;
1009    return g;
1010 }
1011
1012 /**
1013  * \brief   Re-computes the length of the Dicom group 0002.
1014  */
1015 int Document::ComputeGroup0002Length( ) 
1016 {
1017    uint16_t gr;
1018    VRKey vr;
1019    
1020    int groupLength = 0;
1021    bool found0002 = false;   
1022   
1023    // for each zero-level Tag in the DCM Header
1024    DocEntry *entry = GetFirstEntry();
1025    while( entry )
1026    {
1027       gr = entry->GetGroup();
1028
1029       if ( gr == 0x0002 )
1030       {
1031          found0002 = true;
1032
1033          if ( entry->GetElement() != 0x0000 )
1034          {
1035             vr = entry->GetVR();
1036
1037             //if ( (vr == "OB")||(vr == "OW")||(vr == "UT")||(vr == "SQ"))
1038             // (no SQ, OW, UT in group 0x0002;)
1039                if ( vr == "OB" ) 
1040                {
1041                   // explicit VR AND (OB, OW, SQ, UT) : 4 more bytes
1042                   groupLength +=  4;
1043                }
1044             groupLength += 2 + 2 + 4 + entry->GetLength();   
1045          }
1046       }
1047       else if (found0002 )
1048          break;
1049
1050       entry = GetNextEntry();
1051    }
1052    return groupLength; 
1053 }
1054
1055 /**
1056  * \brief   CallStartMethod
1057  */
1058 void Document::CallStartMethod()
1059 {
1060    Progress = 0.0f;
1061    Abort    = false;
1062    CommandManager::ExecuteCommand(this,CMD_STARTPROGRESS);
1063 }
1064
1065 /**
1066  * \brief   CallProgressMethod
1067  */
1068 void Document::CallProgressMethod()
1069 {
1070    CommandManager::ExecuteCommand(this,CMD_PROGRESS);
1071 }
1072
1073 /**
1074  * \brief   CallEndMethod
1075  */
1076 void Document::CallEndMethod()
1077 {
1078    Progress = 1.0f;
1079    CommandManager::ExecuteCommand(this,CMD_ENDPROGRESS);
1080 }
1081
1082 //-----------------------------------------------------------------------------
1083 // Private
1084 /**
1085  * \brief Loads all the needed Dictionaries
1086  * \warning NOT end user intended method !
1087  */
1088 void Document::Initialize() 
1089 {
1090    RefPubDict = Global::GetDicts()->GetDefaultPubDict();
1091    RefShaDict = NULL;
1092    Filetype   = Unknown;
1093 }
1094
1095 /**
1096  * \brief   Parses a DocEntrySet (Zero-level DocEntries or SQ Item DocEntries)
1097  * @param set DocEntrySet we are going to parse ('zero level' or a SQItem)
1098  * @param offset start of parsing
1099  * @param l_max  length to parse (meaningless when we are in 'delimitor mode')
1100  * @param delim_mode : whether we are in 'delimitor mode' (l=0xffffff) or not
1101  */ 
1102 void Document::ParseDES(DocEntrySet *set, long offset, 
1103                         long l_max, bool delim_mode)
1104 {
1105    DocEntry *newDocEntry;
1106    DataEntry *newDataEntry;
1107    SeqEntry *newSeqEntry;
1108    //VRKey vr;
1109    bool used; // will be set to false when something wrong happens to an Entry.
1110               // (Entry will then be deleted)
1111    bool delim_mode_intern = delim_mode;
1112    bool first = true;
1113    gdcmDebugMacro( "Enter in ParseDES, delim-mode " <<  delim_mode
1114                      << " at offset " << std::hex << "0x(" << offset << ")" );    
1115    while (true)
1116    {
1117    
1118    ///\todo FIXME : On 64 bits processors, tellg gives unexpected results after a while ?
1119    ///              Probabely a bug in gdcm code somwhere (some memory erased ?)
1120
1121 // Uncomment to track the bug
1122 /*   
1123    if( Debug::GetDebugFlag() )   
1124       std::cout << std::dec <<"(long)(Fp->tellg()) " << (long)(Fp->tellg()) // in Debug mode
1125                 << std::hex << " 0x(" <<(long)(Fp->tellg()) <<  ")" << std::endl;
1126  */ 
1127  
1128    // if ( !delim_mode && ((long)(Fp->tellg())-offset) >= l_max) // Once per DocEntry   
1129       if ( !delim_mode ) // 'and then' doesn't exist in C++ :-(
1130          if ( ((long)(Fp->tellg())-offset) >= l_max) // Once per DocEntry, when no delim mode
1131          {
1132             break;
1133          }
1134
1135       newDocEntry = ReadNextDocEntry( );
1136
1137       if ( !newDocEntry )
1138       {
1139          break;
1140       }
1141       
1142       // Uncoment this cerr line to be able to 'follow' the DocEntries
1143       // when something *very* strange happens
1144       if( Debug::GetDebugFlag() ) 
1145          std::cerr<<newDocEntry->GetKey()<<" "<<newDocEntry->GetVR()<<std::endl;
1146
1147        // an Item Starter found elsewhere but in the first position
1148        // of a SeqEntry means previous entry was a Sequence
1149        // but we didn't get it (private Sequence + Implicit VR)
1150        // we have to backtrack.
1151       if ( !first && newDocEntry->IsItemStarter() )
1152       {
1153          // Debug message within the method !
1154          newDocEntry = Backtrack(newDocEntry);
1155       }
1156       else
1157       { 
1158          PreviousDocEntry = newDocEntry; 
1159       }
1160  
1161       used = true;
1162       newDataEntry = dynamic_cast<DataEntry*>(newDocEntry);
1163
1164       if ( newDataEntry )  
1165       {
1166          //////////////////////////// DataEntry
1167  
1168          //vr = newDocEntry->GetVR(); // useless ?
1169
1170          if ( !set->AddEntry( newDataEntry ) )
1171          {
1172             gdcmDebugMacro( "in ParseDES : cannot add a DataEntry "
1173                                  << newDataEntry->GetKey()
1174                                  << " (at offset : 0x(" 
1175                                  << newDataEntry->GetOffset() << ") )" );
1176             used=false;
1177          }
1178          else
1179          {
1180             newDataEntry->Delete();
1181             // Load only if we can add (not a duplicate key)
1182             LoadDocEntry( newDataEntry );
1183          }
1184          if ( newDataEntry->GetElement() == 0x0000 ) // if on group length
1185          {
1186             if ( newDataEntry->GetGroup()%2 != 0 )   // if Shadow Group
1187             {
1188                if ( LoadMode & LD_NOSHADOW ) // if user asked to skip shad.gr
1189                {
1190                   std::string strLgrGroup = newDataEntry->GetString();
1191
1192                   int lgrGroup;
1193                   //if ( newDataEntry->IsUnfound() ) /?!? JPR
1194                   {
1195                      lgrGroup = atoi(strLgrGroup.c_str());
1196                      Fp->seekg(lgrGroup, std::ios::cur); // Once per Shadow group, when NOSHADOW
1197                      RemoveEntry( newDocEntry );  // Remove and delete
1198                      continue;
1199                   }
1200                }
1201             }
1202          }
1203
1204          bool delimitor = newDataEntry->IsItemDelimitor(); 
1205          bool outOfBounds = false;
1206          if (!delim_mode )
1207             if ( ((long)(Fp->tellg())-offset) >= l_max ) //Once per DataEntry when no delim mode
1208                outOfBounds = true;
1209
1210   //       'and then', 'or else' don't exist in C++ :-(
1211   //       if ( (delimitor) || 
1212   //             (!delim_mode && ((long)(Fp->tellg())-offset) >= l_max) ) // Once per DataEntry
1213
1214          if ( delimitor || outOfBounds )
1215          {
1216             if ( !used )
1217                newDocEntry->Delete();
1218             break;
1219          }
1220
1221          // Just to make sure we are at the beginning of next entry.
1222          SkipToNextDocEntry(newDocEntry); // FIXME : once per DocEntry, segfault if commented out
1223       }
1224       else
1225       {
1226          /////////////////////// SeqEntry :  VR = "SQ"
1227
1228          unsigned long l = newDocEntry->GetReadLength();          
1229          if ( l != 0 ) // don't mess the delim_mode for 'zero-length sequence'
1230          {
1231             if ( l == 0xffffffff )
1232             {
1233               delim_mode_intern = true;
1234             }
1235             else
1236             {
1237               delim_mode_intern = false;
1238             }
1239          }
1240
1241          if ( (LoadMode & LD_NOSHADOWSEQ) && ! delim_mode_intern )
1242          { 
1243            // User asked to skip SeQuences *only* if they belong to Shadow Group
1244             if ( newDocEntry->GetGroup()%2 != 0 )
1245             {
1246                 Fp->seekg( l, std::ios::cur);  // once per SQITEM, when NOSHADOWSEQ
1247                 newDocEntry->Delete();  // Delete, not in the set 
1248                 continue;  
1249             } 
1250          } 
1251          if ( (LoadMode & LD_NOSEQ) && ! delim_mode_intern ) 
1252          {
1253            // User asked to skip *any* SeQuence
1254             Fp->seekg( l, std::ios::cur); // Once per SQ, when NOSEQ
1255             newDocEntry->Delete(); // Delete, not in the set
1256             continue;
1257          }
1258          // delay the dynamic cast as late as possible
1259          newSeqEntry = dynamic_cast<SeqEntry*>(newDocEntry);
1260          
1261          // no other way to create the Delimitor ...
1262          newSeqEntry->SetDelimitorMode( delim_mode_intern );
1263
1264          // At the top of the hierarchy, stands a Document. When "set"
1265          // is a Document, then we are building the first depth level.
1266          // Hence the SeqEntry we are building simply has a depth
1267          // level of one:
1268         if ( set == this ) // ( dynamic_cast< Document* > ( set ) )
1269          {
1270             newSeqEntry->SetDepthLevel( 1 );
1271          }
1272          // But when "set" is already a SQItem, we are building a nested
1273          // sequence, and hence the depth level of the new SeqEntry
1274          // we are building, is one level deeper:
1275
1276          // time waste hunting
1277          else if (SQItem *parentSQItem = dynamic_cast< SQItem* > ( set ) )
1278          {
1279             newSeqEntry->SetDepthLevel( parentSQItem->GetDepthLevel() + 1 );
1280          }
1281
1282          if ( l != 0 )
1283          {  // Don't try to parse zero-length sequences
1284
1285             gdcmDebugMacro( "Entry in ParseSQ, delim " << delim_mode_intern
1286                                << " at offset 0x(" << std::hex
1287                                << newDocEntry->GetOffset() << ")");
1288
1289             bool res = ParseSQ( newSeqEntry, 
1290                          newDocEntry->GetOffset(),
1291                          l, delim_mode_intern);
1292
1293             gdcmDebugMacro( "Exit from ParseSQ, delim " << delim_mode_intern << " -->return : " << res);
1294          }
1295          if ( !set->AddEntry( newSeqEntry ) )
1296          {
1297             gdcmWarningMacro( "in ParseDES : cannot add a SeqEntry "
1298                                 << newSeqEntry->GetKey()
1299                                 << " (at offset : 0x(" 
1300                                 << newSeqEntry->GetOffset() << ") )" ); 
1301             used = false;
1302          }
1303          else
1304          {
1305             newDocEntry->Delete();
1306          }
1307
1308       // if ( !delim_mode && ((long)(Fp->tellg())-offset) >= l_max) // Once per SeqEntry
1309  
1310          if ( !delim_mode ) // 'and then' doesn't exist in C++ :-(
1311             if ( ((long)(Fp->tellg())-offset) >= l_max) // Once per SeqEntry when no delim mode
1312      
1313          {
1314             if ( !used )
1315                newDocEntry->Delete();
1316             break;
1317          }
1318       }  // end SeqEntry : VR = "SQ"
1319
1320       if ( !used )
1321       {
1322          newDocEntry->Delete();
1323       }
1324       first = false;
1325       
1326       if (UnexpectedEOF) // some terminator was missing
1327          break;
1328    }                               // end While
1329    gdcmDebugMacro( "Exit from ParseDES, delim-mode " << delim_mode );
1330 }
1331
1332 /**
1333  * \brief   Parses a Sequence ( SeqEntry after SeqEntry)
1334  * @return  false if expected fff0,e000 not found
1335  */ 
1336 bool Document::ParseSQ( SeqEntry *seqEntry,
1337                         long offset, long l_max, bool delim_mode)
1338 {
1339    int SQItemNumber = 0;
1340    bool dlm_mod;
1341    long offsetStartCurrentSQItem = offset;
1342
1343    while (true)
1344    {
1345       // the first time, we read the fff0,e000 of the first SQItem
1346       DocEntry *newDocEntry = ReadNextDocEntry();
1347
1348       if ( !newDocEntry )
1349       { 
1350          // The most frequent is when a SQ terminator is missing (?!?)
1351          gdcmWarningMacro("in ParseSQ : should never get here!");
1352          UnexpectedEOF = true;
1353          return false;
1354       }
1355       if ( delim_mode )
1356       {
1357          if ( newDocEntry->IsSequenceDelimitor() )
1358          {
1359             seqEntry->SetDelimitationItem( newDocEntry ); 
1360             newDocEntry->Delete();
1361             break;
1362          }
1363       }
1364       else // ! delim_mode
1365       {
1366          if ( ((long)(Fp->tellg())-offset) >= l_max) // Once per SQItem when no delim mode
1367          {
1368             newDocEntry->Delete();
1369             break;
1370          }
1371       }
1372       // create the current SQItem
1373       SQItem *itemSQ = SQItem::New( seqEntry->GetDepthLevel() );
1374       unsigned int l = newDocEntry->GetReadLength();
1375       
1376       if ( l == 0xffffffff )
1377       {
1378          dlm_mod = true;
1379       }
1380       else
1381       {
1382          dlm_mod = false;
1383       }
1384             
1385       // fill up the current SQItem, starting at the beginning of fff0,e000
1386       
1387       Fp->seekg(offsetStartCurrentSQItem, std::ios::beg);        // Once per SQItem
1388       ParseDES(itemSQ, offsetStartCurrentSQItem, l+8, dlm_mod);
1389       offsetStartCurrentSQItem = Fp->tellg();                    // Once per SQItem
1390  
1391       seqEntry->AddSQItem( itemSQ, SQItemNumber ); 
1392       itemSQ->Delete();
1393       newDocEntry->Delete();
1394       SQItemNumber++;
1395       //if ( !delim_mode && ((long)(Fp->tellg())-offset ) >= l_max ) //JPRx
1396       if ( !delim_mode && (offsetStartCurrentSQItem-offset ) >= l_max )
1397       {
1398          break;
1399       }
1400    }
1401    return true;
1402 }
1403
1404 /**
1405  * \brief   When a private Sequence + Implicit VR is encountered
1406  *           we cannot guess it's a Sequence till we find the first
1407  *           Item Starter. We then backtrack to do the job.
1408  * @param   docEntry Item Starter that warned us 
1409  */
1410 DocEntry *Document::Backtrack(DocEntry *docEntry)
1411 {
1412    // delete the Item Starter, built erroneously out of any Sequence
1413    // it's not yet in the HTable/chained list
1414    docEntry->Delete();
1415
1416    // Get all info we can from PreviousDocEntry
1417    uint16_t group = PreviousDocEntry->GetGroup();
1418    uint16_t elem  = PreviousDocEntry->GetElement();
1419    uint32_t lgt   = PreviousDocEntry->GetLength();
1420    long offset    = PreviousDocEntry->GetOffset();
1421
1422    gdcmDebugMacro( "Backtrack :" << std::hex << group 
1423                                  << "|" << elem
1424                                  << " at offset 0x(" <<offset << ")" );
1425    RemoveEntry( PreviousDocEntry );
1426
1427    // forge the Seq Entry
1428    DocEntry *newEntry = NewSeqEntry(group, elem);
1429    newEntry->SetLength(lgt);
1430    newEntry->SetOffset(offset);
1431
1432    // Move back to the beginning of the Sequence
1433
1434    Fp->seekg(offset, std::ios::beg); // Only for Shadow Implicit VR SQ
1435    return newEntry;
1436 }
1437
1438 /**
1439  * \brief   Loads (or not) the element content depending if its length exceeds
1440  *          or not the value specified with Document::SetMaxSizeLoadEntry()
1441  * @param   entry Header Entry (Dicom Element) to be dealt with
1442  * @param forceLoad whether you want to force loading of 'long' elements
1443  */
1444 void Document::LoadDocEntry(DocEntry *entry, bool forceLoad)
1445 {
1446    uint16_t group   = entry->GetGroup();
1447    uint16_t elem    = entry->GetElement();
1448    const VRKey  &vr = entry->GetVR();
1449    uint32_t length  = entry->GetLength();
1450
1451  //  Fp->seekg((long)entry->GetOffset(), std::ios::beg); // JPRx
1452
1453    // A SeQuence "contains" a set of Elements.  
1454    //          (fffe e000) tells us an Element is beginning
1455    //          (fffe e00d) tells us an Element just ended
1456    //          (fffe e0dd) tells us the current SeQuence just ended
1457    //          (fffe 0000) is an 'impossible' tag value, 
1458    //                                    found in MR-PHILIPS-16-Multi-Seq.dcm
1459    
1460    if ( (group == 0xfffe && elem != 0x0000 ) || vr == "SQ" )
1461    {
1462       // NO more value field for SQ !
1463       return;
1464    }
1465
1466    DataEntry *dataEntryPtr = dynamic_cast< DataEntry* >(entry);
1467    if( !dataEntryPtr )
1468    {
1469       return;
1470    }
1471
1472    // When the length is zero things are easy:
1473    if ( length == 0 )
1474    {
1475       dataEntryPtr->SetBinArea(NULL,true);
1476       return;
1477    }
1478
1479    // The elements whose length is bigger than the specified upper bound
1480    // are not loaded.
1481
1482    if (!forceLoad)
1483    {
1484       if (length > MaxSizeLoadEntry)
1485       {
1486          dataEntryPtr->SetBinArea(NULL,true);
1487          dataEntryPtr->SetState(DataEntry::STATE_NOTLOADED);
1488
1489        // to be sure we are at the end of the value ...
1490        //  Fp->seekg((long)entry->GetOffset()+(long)entry->GetLength(),
1491        //           std::ios::beg);  //JPRx
1492          return;
1493       }
1494    }
1495    
1496    /// \todo: a method that *doesn't* load anything (maybe with MaxSizeLoadEntry=0 ?)
1497    ///       + a ForceLoad call on the +/- 20 'usefull' fields  
1498    ///       Allow user to tell the fields he wants to ForceLoad 
1499    ///       during initial stage.
1500    ///       Later, a GetString or GetBinArea will load the value from disk, if not loaded
1501    ///       + a method that load *everything* that's not yet loaded
1502    
1503    LoadEntryBinArea(dataEntryPtr); // last one, not to erase length !
1504 }
1505
1506 /**
1507  * \brief  Find the value Length of the passed Doc Entry
1508  * @param  entry Header Entry whose length of the value shall be loaded. 
1509  */
1510 void Document::FindDocEntryLength( DocEntry *entry )
1511    throw ( FormatError )
1512 {
1513    const VRKey &vr  = entry->GetVR();
1514    uint16_t length16;       
1515    if ( Filetype == ExplicitVR && !entry->IsImplicitVR() ) 
1516    {
1517    
1518    // WARNING :
1519    //
1520    // For some images, length of UN elements is coded on 2 bytes (instead of 4)
1521    // There are *not* readable !
1522    // You can make a quick and dirty patch, commenting out 
1523    //| vr == "UN"
1524    // in the following line.
1525    // (the 'straight' images will no longer be readable ...)
1526    
1527       if ( vr == "OB" || vr == "OW" || vr == "SQ" || vr == "UT" 
1528                                                           || vr == "UN" || changeFromUN == true)
1529       {
1530          changeFromUN = false;
1531          // The following reserved two bytes (see PS 3.5-2003, section
1532          // "7.1.2 Data element structure with explicit vr", p 27) must be
1533          // skipped before proceeding on reading the length on 4 bytes.
1534
1535          //Fp->seekg( 2L, std::ios::cur); // Once per OW,OB,SQ DocEntry
1536          uint32_t length32 = ReadInt32(); // Once per OW,OB,SQ DocEntry
1537          CurrentOffsetPosition+=4;
1538          if ( (vr == "OB" || vr == "OW") && length32 == 0xffffffff ) 
1539          {
1540             uint32_t lengthOB;
1541             try 
1542             {
1543                lengthOB = FindDocEntryLengthOBOrOW();// for encapsulation of encoded pixel 
1544             }
1545             catch ( FormatUnexpected )
1546             {
1547                // Computing the length failed (this happens with broken
1548                // files like gdcm-JPEG-LossLess3a.dcm). We still have a
1549                // chance to get the pixels by deciding the element goes
1550                // until the end of the file. Hence we artificially fix the
1551                // the length and proceed.
1552                gdcmWarningMacro( " Computing the length failed for " << 
1553                                    entry->GetKey() <<" in " <<GetFileName());
1554
1555                long currentPosition = Fp->tellg(); // Only for gdcm-JPEG-LossLess3a.dcm-like
1556                Fp->seekg(0L,std::ios::end);        // Only for gdcm-JPEG-LossLess3a.dcm-like
1557
1558                long lengthUntilEOF = (long)(Fp->tellg())-currentPosition; // Only for gdcm-JPEG-LossLess3a.dcm-like
1559                Fp->seekg(currentPosition, std::ios::beg);                 // Only for gdcm-JPEG-LossLess3a.dcm-like
1560
1561                entry->SetReadLength(lengthUntilEOF);
1562                entry->SetLength(lengthUntilEOF);
1563                return;
1564             }
1565             entry->SetReadLength(lengthOB);
1566             entry->SetLength(lengthOB);
1567             return;
1568          }
1569          FixDocEntryFoundLength(entry, length32); 
1570          return;
1571       }
1572       // Length is encoded on 2 bytes.
1573       //length16 = ReadInt16();
1574       length16 = GetInt16();
1575       // 0xffff means that we deal with 'No Length' Sequence 
1576       //        or 'No Length' SQItem
1577       if ( length16 == 0xffff) 
1578       {           
1579          length16 = 0;
1580       }
1581       FixDocEntryFoundLength( entry, (uint32_t)length16 );
1582       return;
1583    }
1584    else
1585    {
1586       // Either implicit VR or a non DICOM conformal (see note below) explicit
1587       // VR that ommited the VR of (at least) this element. Farts happen.
1588       // [Note: according to the part 5, PS 3.5-2001, section 7.1 p25
1589       // on Data elements "Implicit and Explicit VR Data Elements shall
1590       // not coexist in a Data Set and Data Sets nested within it".]
1591       // Length is on 4 bytes.
1592
1593      // Well ... group 0002 is always coded in 'Explicit VR Litle Endian'
1594      // even if Transfer Syntax is 'Implicit VR ...'
1595      // --> Except for 'Implicit VR Big Endian Transfer Syntax GE Private' 
1596      //     where Group 0x0002 is *also* encoded in Implicit VR !
1597
1598       FixDocEntryFoundLength( entry, GetInt32() /*ReadInt32()*/ );
1599       return;
1600    }
1601 }
1602
1603 /**
1604  * \brief  Find the Length till the next sequence delimiter
1605  * \warning NOT end user intended method !
1606  * @return 
1607  */
1608 uint32_t Document::FindDocEntryLengthOBOrOW()
1609    throw( FormatUnexpected )
1610 {
1611    // See PS 3.5-2001, section A.4 p. 49 on encapsulation of encoded pixel data.
1612    
1613    long positionOnEntry = Fp->tellg(); // Only for OB,OW DataElements
1614
1615    bool foundSequenceDelimiter = false;
1616    uint32_t totalLength = 0;
1617
1618    while ( !foundSequenceDelimiter )
1619    {
1620       uint16_t group;
1621       uint16_t elem;
1622
1623       try
1624       {
1625          //group = ReadInt16(); // Once per fragment (if any) of OB,OW DataElements
1626          //elem  = ReadInt16(); // Once per fragment (if any) of OB,OW DataElements 
1627          ReadBegBuffer(4); // Once per fragment (if any) of OB,OW DataElements
1628       }
1629       catch ( FormatError )
1630       {
1631          throw FormatError("Unexpected end of file encountered during ",
1632                            "Document::FindDocEntryLengthOBOrOW()");
1633       }
1634       group = GetInt16();
1635       elem  = GetInt16();
1636
1637       // We have to decount the group and element we just read
1638       totalLength += 4;     
1639       if ( group != 0xfffe || ( ( elem != 0xe0dd ) && ( elem != 0xe000 ) ) )
1640       {
1641          gdcmWarningMacro( 
1642               "Neither an Item tag nor a Sequence delimiter tag on :" 
1643            << std::hex << group << " , " << elem 
1644            << ")" );
1645   
1646          Fp->seekg(positionOnEntry, std::ios::beg); // Once per fragment (if any) of OB,OW DataElements
1647          throw FormatUnexpected( 
1648                "Neither an Item tag nor a Sequence delimiter tag.");
1649       }
1650       if ( elem == 0xe0dd )
1651       {
1652          foundSequenceDelimiter = true;
1653       }
1654       uint32_t itemLength = ReadInt32(); // Once per fragment (if any) of OB,OW DataElements
1655       // We add 4 bytes since we just read the ItemLength with ReadInt32
1656       totalLength += itemLength + 4;
1657       SkipBytes(itemLength);
1658       
1659       if ( foundSequenceDelimiter )
1660       {
1661          break;
1662       }
1663    }
1664    Fp->seekg( positionOnEntry, std::ios::beg); // Only once for OB,OW DataElements
1665    return totalLength;
1666 }
1667
1668 /**
1669  * \brief     Find the Value Representation of the current Dicom Element.
1670  * @return    Value Representation of the current Entry
1671  */
1672 VRKey Document::FindDocEntryVR()
1673 {
1674    if ( Filetype != ExplicitVR )
1675    {
1676       return GDCM_VRUNKNOWN;
1677    }
1678
1679    // Delimiters (0xfffe), are not explicit VR ... 
1680    if ( CurrentGroup == 0xfffe )
1681       return GDCM_VRUNKNOWN;
1682          
1683    //long positionOnEntry;     
1684    //if( Debug::GetWarningFlag() ) 
1685    //  positionOnEntry = Fp->tellg(); // Only in Warning Mode
1686    
1687    // Warning: we believe this is explicit VR (Value Representation) because
1688    // we used a heuristic that found "UL" in the first tag and/or
1689    // 'Transfer Syntax' told us it is.
1690    // Alas this doesn't guarantee that all the tags will be in explicit VR. 
1691    // In some cases one finds implicit VR tags mixed within an explicit VR file
1692    // Well...
1693    // 'Normaly' the only case is : group 0002 Explicit, and other groups Implicit
1694    //
1695    // Hence we make sure the present tag is in explicit VR and try to fix things
1696    // if it happens not to be the case.
1697
1698    VRKey vr;
1699    //Fp->read(&(vr[0]),(size_t)2);
1700    vr[0] = *PtrBegBuffer++;
1701    vr[1] = *PtrBegBuffer++;
1702    
1703    //if ( !CheckDocEntryVR(vr) ) // avoid useless function call
1704    if ( !Global::GetVR()->IsValidVR(vr) )
1705    {
1706 /*   
1707 //      std::cout << "================================================================Unknown VR" 
1708                << std::hex << "0x(" 
1709                         << (unsigned int)vr[0] << "|" << (unsigned int)vr[1] 
1710                         << ")" << "for : " <<  CurrentGroup
1711                         << " at offset : 0x(" << positionOnEntry << ")"
1712                         << std::endl;
1713 */
1714       gdcmWarningMacro( "Unknown VR " << std::hex << "0x(" 
1715                         << (unsigned int)vr[0] << "|" << (unsigned int)vr[1] 
1716                         << ")"  
1717                         << " at offset : 0x(" << CurrentOffsetPosition-4<< ") for group " << CurrentGroup
1718                         );
1719
1720       //Fp->seekg(positionOnEntry, std::ios::beg); //JPRx
1721       //Fp->seekg((long)-2, std::ios::cur);// only for unrecognized VR (?!?) 
1722                                          //see :MR_Philips_Intera_PrivateSequenceExplicitVR.dcm
1723       PtrBegBuffer-=2;
1724       return GDCM_VRUNKNOWN;
1725    }
1726    return vr;
1727 }
1728
1729 /**
1730  * \brief     Check the correspondance between the VR of the header entry
1731  *            and the taken VR. If they are different, the header entry is 
1732  *            updated with the new VR.
1733  * @param     vr    Dicom Value Representation
1734  * @return    false if the VR is incorrect or if the VR isn't referenced
1735  *            otherwise, it returns true
1736 */
1737 bool Document::CheckDocEntryVR(const VRKey &vr)
1738 {
1739    return Global::GetVR()->IsValidVR(vr);
1740 }
1741
1742 /**
1743  * \brief   Skip a given Header Entry 
1744  * @param   entry entry to skip
1745  */
1746 void Document::SkipDocEntry(DocEntry *entry) 
1747 {
1748    SkipBytes(entry->GetLength());
1749 }
1750
1751 /**
1752  * \brief   Skips to the beginning of the next Header Entry 
1753  * @param   currentDocEntry entry to skip
1754  */
1755 void Document::SkipToNextDocEntry(DocEntry *currentDocEntry) 
1756 {
1757    long l = currentDocEntry->GetReadLength();
1758    if ( l == -1 ) // length = 0xffff shouldn't appear here ...
1759                   // ... but PMS imagers happen !
1760       return;
1761    Fp->seekg((size_t)(currentDocEntry->GetOffset()), std::ios::beg); //FIXME :each DocEntry
1762    if (currentDocEntry->GetGroup() != 0xfffe)  // for fffe pb
1763    {
1764       Fp->seekg( l,std::ios::cur);                                 //FIXME :each DocEntry
1765    }
1766 }
1767
1768 /**
1769  * \brief   When the length of an element value is obviously wrong (because
1770  *          the parser went Jabberwocky) one can hope improving things by
1771  *          applying some heuristics.
1772  * @param   entry entry to check
1773  * @param   foundLength first assumption about length (before bug fix, or set to zero if =0xffffffff)    
1774  */
1775 void Document::FixDocEntryFoundLength(DocEntry *entry,
1776                                       uint32_t foundLength)
1777 {
1778    entry->SetReadLength( foundLength );// will be updated only if a bug is found
1779    
1780    if ( foundLength == 0xffffffff)
1781    {
1782       //foundLength = 0;
1783       //entry->SetLength(foundLength);
1784       entry->SetLength(0);
1785       return;  // return ASAP; don't waist time on useless tests
1786    }
1787       
1788    uint16_t gr   = entry->GetGroup();
1789    uint16_t elem = entry->GetElement(); 
1790      
1791    if ( foundLength % 2)
1792    {
1793       gdcmWarningMacro( "Warning : Tag with uneven length " << foundLength
1794         <<  " in x(" << std::hex << gr << "," << elem <<")");
1795    }
1796       
1797    //////// Fix for some naughty General Electric images.
1798    // Allthough not recent many such GE corrupted images are still present
1799    // on Creatis hard disks. Hence this fix shall remain when such images
1800    // are no longer in use (we are talking a few years, here)...
1801    // Note: XMedCon probably uses such a trick since it is able to read
1802    //       those pesky GE images ...
1803    if ( foundLength == 13)
1804    {
1805       // Only happens for this length !
1806       if ( gr != 0x0008 || ( elem != 0x0070 && elem != 0x0080 ) )
1807       {
1808          foundLength = 10;
1809          entry->SetReadLength(10); // a bug is to be fixed !?
1810       }
1811    }
1812
1813    //////// Fix for some brain-dead 'Leonardo' Siemens images.
1814    // Occurence of such images is quite low (unless one leaves close to a
1815    // 'Leonardo' source. Hence, one might consider commenting out the
1816    // following fix on efficiency reasons.
1817    else if ( gr == 0x0009 && ( elem == 0x1113 || elem == 0x1114 ) )
1818    { 
1819    // Ideally we should check we are in Explicit and double check
1820    // that VR=UL... this is done properly in gdcm2
1821       if( foundLength == 6 )
1822       {
1823          gdcmWarningMacro( "Replacing Length from 6 into 4" );
1824          foundLength = 4;
1825          entry->SetReadLength(4); // a bug is to be fixed !
1826       } 
1827       else if ( foundLength%4 )
1828       {
1829         gdcmErrorMacro( "This looks like to a buggy Siemens DICOM file."
1830         "The length of this tag seems to be wrong" );
1831       }
1832    }
1833
1834    else if ( entry->GetVR() == "SQ" )
1835    {
1836       foundLength = 0;      // ReadLength is unchanged
1837    }
1838
1839    //////// We encountered a 'delimiter' element i.e. a tag of the form
1840    // "fffe|xxxx" which is just a marker. Delimiters length should not be
1841    // taken into account.
1842    else if ( gr == 0xfffe )
1843    {
1844      // According to the norm, fffe|0000 shouldn't exist. BUT the Philips
1845      // image gdcmData/gdcm-MR-PHILIPS-16-Multi-Seq.dcm happens to
1846      // causes extra troubles...
1847      if ( elem != 0x0000 )
1848      {
1849         foundLength = 0;
1850      }
1851      else
1852      {
1853         foundLength=12; // to skip the mess that follows this bugged Tag !
1854      }
1855    }
1856    entry->SetLength(foundLength);
1857 }
1858
1859 /**
1860  * \brief   Apply some heuristics to predict whether the considered 
1861  *          element value contains/represents an integer or not.
1862  * @param   entry The element value on which to apply the predicate.
1863  * @return  The result of the heuristical predicate.
1864  */
1865 bool Document::IsDocEntryAnInteger(DocEntry *entry)
1866 {
1867    uint16_t elem         = entry->GetElement();
1868    uint16_t group        = entry->GetGroup();
1869    const VRKey &vr       = entry->GetVR();
1870    uint32_t length       = entry->GetLength();
1871
1872    // When we have some semantics on the element we just read, and if we
1873    // a priori know we are dealing with an integer, then we shall be
1874    // able to swap its element value properly.
1875    if ( elem == 0 )  // This is the group length of the group
1876    {  
1877       if ( length == 4 )
1878       {
1879          return true;
1880       }
1881       else 
1882       {
1883          // Although this should never happen, still some images have a
1884          // corrupted group length [e.g. have a glance at offset x(8336) of
1885          // gdcmData/gdcm-MR-PHILIPS-16-Multi-Seq.dcm.
1886          // Since for dicom compliant and well behaved headers, the present
1887          // test is useless (and might even look a bit paranoid), when we
1888          // encounter such an ill-formed image, we simply display a warning
1889          // message and proceed on parsing (while crossing fingers).
1890          long filePosition = Fp->tellg(); // Only when elem 0x0000 length is not 4 (?!?)
1891          (void)filePosition;
1892          gdcmWarningMacro( "Erroneous Group Length element length  on : (" 
1893            << std::hex << group << " , " << elem
1894            << ") -before- position x(" << filePosition << ")"
1895            << "lgt : " << length );
1896       }
1897    }
1898
1899    if ( vr == "UL" || vr == "US" || vr == "SL" || vr == "SS" )
1900    {
1901       return true;
1902    }   
1903    return false;
1904 }
1905
1906 /**
1907  * \brief   Discover what the swap code is (among little endian, big endian,
1908  *          bad little endian, bad big endian).
1909  *          sw is set
1910  * @return false when we are absolutely sure 
1911  *               it's neither ACR-NEMA nor DICOM
1912  *         true  when we hope ours assuptions are OK
1913  */
1914 bool Document::CheckSwap()
1915 {   
1916    uint32_t  s32;
1917    uint16_t  s16;
1918        
1919    char deb[256];
1920     
1921    // First, compare HostByteOrder and NetworkByteOrder in order to
1922    // determine if we shall need to swap bytes (i.e. the Endian type).
1923    bool net2host = Util::IsCurrentProcessorBigEndian();
1924          
1925    // The easiest case is the one of a 'true' DICOM header, we just have
1926    // to look for the string "DICM" inside the file preamble.
1927    Fp->read(deb, 256);
1928    
1929    char *entCur = deb + 128;
1930    if ( memcmp(entCur, "DICM", (size_t)4) == 0 )
1931    {
1932       gdcmDebugMacro( "Looks like DICOM Version3 (preamble + DCM)" );
1933       
1934       // Group 0002 should always be VR, and the first element 0000
1935       // Let's be carefull (so many wrong headers ...)
1936       // and determine the value representation (VR) : 
1937       // Let's skip to the first element (0002,0000) and check there if we find
1938       // "UL"  - or "OB" if the 1st one is (0002,0001) -,
1939       // in which case we (almost) know it is explicit VR.
1940       // WARNING: if it happens to be implicit VR then what we will read
1941       // is the length of the group. If this ascii representation of this
1942       // length happens to be "UL" then we shall believe it is explicit VR.
1943       // We need to skip :
1944       // * the 128 bytes of File Preamble (often padded with zeroes),
1945       // * the 4 bytes of "DICM" string,
1946       // * the 4 bytes of the first tag (0002, 0000),or (0002, 0001)
1947       // i.e. a total of  136 bytes.
1948       entCur = deb + 136;
1949      
1950       // group 0x0002 *is always* Explicit VR Sometimes,
1951       // even if elem 0002,0010 (Transfer Syntax) tells us the file is
1952       // *Implicit* VR  (see former 'gdcmData/icone.dcm')
1953       
1954       if ( memcmp(entCur, "UL", (size_t)2) == 0 ||
1955            memcmp(entCur, "OB", (size_t)2) == 0 ||
1956            memcmp(entCur, "UI", (size_t)2) == 0 ||
1957            memcmp(entCur, "CS", (size_t)2) == 0 )  // CS, to remove later
1958                                                    // when Write DCM *adds*
1959       // FIXME
1960       // Use Document::dicom_vr to test all the possibilities
1961       // instead of just checking for UL, OB and UI !? group 0000 
1962       {
1963          Filetype = ExplicitVR;
1964          gdcmDebugMacro( "Group 0002 : Explicit Value Representation");
1965       } 
1966       else 
1967       {
1968          Filetype = ImplicitVR;
1969          gdcmWarningMacro( "Group 0002 :Not an explicit Value Representation;"
1970                         << "Looks like a bugged Header!");
1971       }
1972       
1973       // Here, we assume that the file IS kosher Dicom !
1974       // (The meta elements - group 0x0002 - ARE little endian !)
1975       if ( net2host )
1976       {
1977          SwapCode = 4321;
1978          gdcmDebugMacro( "HostByteOrder != NetworkByteOrder, SwapCode = 4321");
1979       }
1980       else 
1981       {
1982          SwapCode = 1234;
1983          gdcmDebugMacro( "HostByteOrder = NetworkByteOrder, SwapCode = 1234");
1984       }
1985       
1986       // Position the file position indicator at first tag 
1987       // (i.e. after the file preamble and the "DICM" string).
1988
1989       Fp->seekg ( 132L, std::ios::beg); // Once per Document
1990       CurrentOffsetPosition = 132;
1991       return true;
1992    } // ------------------------------- End of DicomV3 ----------------
1993
1994    // Alas, this is not a DicomV3 file and whatever happens there is no file
1995    // preamble. We can reset the file position indicator to where the data
1996    // is (i.e. the beginning of the file).
1997
1998    gdcmWarningMacro( "Not a Kosher DICOM Version3 file (no preamble)");
1999
2000    Fp->seekg(0, std::ios::beg); // Once per ACR-NEMA Document
2001    CurrentOffsetPosition = 0;
2002    // Let's check 'No Preamble Dicom File' :
2003    // Should start with group 0x0002
2004    // and be Explicit Value Representation
2005
2006    s16 = *((uint16_t *)(deb));
2007    SwapCode = 0;     
2008    switch ( s16 )
2009    {
2010       case 0x0002 :
2011          SwapCode = 1234;
2012          entCur = deb + 4;
2013          break;
2014       case 0x0200 :
2015          SwapCode = 4321;
2016          entCur = deb + 6;
2017     } 
2018
2019    if ( SwapCode != 0 )
2020    {
2021       if ( memcmp(entCur, "UL", (size_t)2) == 0 ||
2022            memcmp(entCur, "OB", (size_t)2) == 0 ||
2023            memcmp(entCur, "UI", (size_t)2) == 0 ||
2024            memcmp(entCur, "SH", (size_t)2) == 0 ||
2025            memcmp(entCur, "AE", (size_t)2) == 0 ||
2026            memcmp(entCur, "OB", (size_t)2) == 0 )
2027          {
2028             Filetype = ExplicitVR;  // FIXME : not enough to say it's Explicit
2029                                     // Wait untill reading Transfer Syntax
2030             gdcmDebugMacro( "Group 0002 : Explicit Value Representation");
2031             return true;
2032           }
2033     }
2034 // ------------------------------- End of 'No Preamble' DicomV3 -------------
2035
2036    // Our next best chance would be to be considering a 'clean' ACR/NEMA file.
2037    // By clean we mean that the length of the first group is written down.
2038    // If this is the case and since the length of the first group HAS to be
2039    // four (bytes), then determining the proper swap code is straightforward.
2040
2041    entCur = deb + 4;
2042    // We assume the array of char we are considering contains the binary
2043    // representation of a 32 bits integer. Hence the following dirty
2044    // trick :
2045    s32 = *((uint32_t *)(entCur));
2046    switch( s32 )
2047    {
2048       case 0x00040000 :
2049          SwapCode = 3412;
2050          Filetype = ACR;
2051          return true;
2052       case 0x04000000 :
2053          SwapCode = 4321;
2054          Filetype = ACR;
2055          return true;
2056       case 0x00000400 :
2057          SwapCode = 2143;
2058          Filetype = ACR;
2059          return true;
2060       case 0x00000004 :
2061          SwapCode = 1234;
2062          Filetype = ACR;
2063          return true;
2064       default :
2065          // We are out of luck. It is not a DicomV3 nor a 'clean' ACR/NEMA file.
2066          // It is time for despaired wild guesses. 
2067          // So, let's check if this file wouldn't happen to be 'dirty' ACR/NEMA,
2068          //  i.e. the 'group length' element is not present :     
2069          
2070          //  check the supposed-to-be 'group number'
2071          //  in ( 0x0001 .. 0x0008 )
2072          //  to determine ' SwapCode' value .
2073          //  Only 0 or 4321 will be possible 
2074          //  (no oportunity to check for the formerly well known
2075          //  ACR-NEMA 'Bad Big Endian' or 'Bad Little Endian' 
2076          //  if unsuccessfull (i.e. neither 0x0002 nor 0x0200 etc-3, 4, ..., 8-)
2077          //  the file IS NOT ACR-NEMA nor DICOM V3
2078          //  Find a trick to tell it the caller...
2079       
2080          s16 = *((uint16_t *)(deb));
2081  
2082          gdcmDebugMacro("not a DicomV3 nor a 'clean' ACR/NEMA;"
2083                      << " (->despaired wild guesses !)");       
2084          switch ( s16 )
2085          {
2086             case 0x0001 :
2087             case 0x0002 :
2088             case 0x0003 :
2089             case 0x0004 :
2090             case 0x0005 :
2091             case 0x0006 :
2092             case 0x0007 :
2093             case 0x0008 :
2094             case 0x0028 :
2095                SwapCode = 1234;
2096                Filetype = ACR;
2097                return true;
2098             case 0x0100 :
2099             case 0x0200 :
2100             case 0x0300 :
2101             case 0x0400 :
2102             case 0x0500 :
2103             case 0x0600 :
2104             case 0x0700 :
2105             case 0x0800 :
2106             case 0x2800 :
2107                SwapCode = 4321;
2108                Filetype = ACR;
2109                return true;
2110             default :
2111     
2112                s16 = *((uint16_t *)(deb));
2113                if (s16 != 0x0000)
2114                    return false;
2115                s16 = *((uint16_t *)(deb+2));
2116
2117                Fp->seekg ( 0L, std::ios::beg); // Once per Document
2118                CurrentOffsetPosition = 0;
2119                switch(s16)  // try an other trick!
2120                             // -> to be able to decode 0029|1010 DataElement
2121                             // -> and be not less cleaver than dcmdump ;-)
2122                {
2123                   case 0x0004 :
2124                      SwapCode = 1234; 
2125                      break;
2126                   case 0x0400 :
2127                      SwapCode = 3412;
2128                      break;      
2129                   default:
2130                      gdcmWarningMacro("ACR/NEMA unfound swap info (Hopeless !)");
2131                      Filetype = Unknown;
2132                      return false;
2133                }
2134                // Check if next 2 bytes are a VR
2135                // Probabely something more time-consuming exists with std::string
2136                const char VRvalues[] = "AEASCSDADSFLFDISLOLTPNSHSLSSSTTMUIULUSUTOBOWOFATUNSQ";
2137                int nbVal = 26;
2138                const char *pt = VRvalues;
2139                for (int i=0;i<nbVal;i++)
2140                {
2141                   if(*(deb+4) == *pt++)
2142                   if(*(deb+5) == *pt++) {
2143                      Filetype = ExplicitVR;
2144                      return true;       
2145                   }
2146
2147               }
2148               Filetype = ImplicitVR;
2149               return true;       
2150          }
2151    }
2152 }
2153
2154 /**
2155  * \brief Change the Byte Swap code. 
2156  */
2157 void Document::SwitchByteSwapCode() 
2158 {
2159    gdcmDebugMacro( "Switching Byte Swap code from "<< SwapCode
2160                      << " at: 0x" << std::hex << Fp->tellg() );  // Only when DEBUG
2161    if ( SwapCode == 1234 ) 
2162    {
2163       SwapCode = 4321;
2164    }
2165    else if ( SwapCode == 4321 ) 
2166    {
2167       SwapCode = 1234;
2168    }
2169    else if ( SwapCode == 3412 ) 
2170    {
2171       SwapCode = 2143;
2172    }
2173    else if ( SwapCode == 2143 )
2174    {
2175       SwapCode = 3412;
2176    }
2177    gdcmDebugMacro( " Into: "<< SwapCode );
2178 }
2179
2180 /**
2181  * \brief  during parsing, Header Elements too long are not loaded in memory
2182  * @param newSize new size
2183  */
2184 void Document::SetMaxSizeLoadEntry(long newSize)
2185 {
2186    if ( newSize < 0 )
2187    {
2188       return;
2189    }
2190    if ((uint32_t)newSize >= (uint32_t)0xffffffff )
2191    {
2192       MaxSizeLoadEntry = 0xffffffff;
2193       return;
2194    }
2195    MaxSizeLoadEntry = newSize;
2196 }
2197
2198 /**
2199  * \brief   Read the next tag WITHOUT loading it's value
2200  *          (read the 'Group Number', the 'Element Number',
2201  *          gets the Dict Entry
2202  *          gets the VR, gets the length, gets the offset value)
2203  * @return  On succes : the newly created DocEntry, NULL on failure.
2204  */
2205 DocEntry *Document::ReadNextDocEntry()
2206 {
2207    try
2208    {
2209       ReadBegBuffer(8); // Avoid to many time consuming freads
2210       //CurrentGroup = ReadInt16();
2211       //CurrentElem  = ReadInt16();
2212    }
2213    catch ( FormatError )
2214    {
2215       // We reached the EOF (or an error occured) therefore
2216       // header parsing has to be considered as finished.
2217       return 0;
2218    }
2219    
2220    changeFromUN = false;
2221    CurrentGroup = GetInt16();
2222    CurrentElem  = GetInt16();
2223       
2224    // In 'true DICOM' files Group 0002 is always little endian
2225    if ( HasDCMPreamble )
2226    {
2227       if ( !Group0002Parsed && CurrentGroup != 0x0002) // avoid calling a function when useless
2228          HandleOutOfGroup0002(CurrentGroup, CurrentElem);
2229       else
2230          // Sometimes file contains groups of tags with reversed endianess.
2231          HandleBrokenEndian(CurrentGroup, CurrentElem);
2232     }
2233
2234    VRKey vr = FindDocEntryVR();
2235    VRKey realVR = vr;
2236
2237    if ( vr == GDCM_VRUNKNOWN )
2238    {
2239       if ( CurrentElem == 0x0000 ) // Group Length
2240       {
2241          realVR = "UL";     // must be UL
2242       }
2243       else if (CurrentGroup == 0xfffe) // Don't get DictEntry for Delimitors
2244       {
2245          realVR = "UL";
2246       }
2247
2248       // Was commented out in order not to generate 'Shadow Groups' where some 
2249       // Data Elements are Explicit VR and some other ones Implicit VR
2250       // -> Better we fix the problem at Write time
2251      
2252       else if (CurrentGroup%2 == 1 )
2253       { 
2254          if (CurrentElem >= 0x0010 && CurrentElem <=0x00ff )
2255             // DICOM PS 3-5 7.8.1 a) states that :
2256             // Private Creator Data Elements numbered (gggg,0010-00FF) (gggg is odd)
2257             // attributes have to be LO (Long String) and the VM shall be equal to 1
2258             realVR = "LO";
2259     
2260             // Seems not to be true
2261             // Still in gdcmtk, David Clunnie disagrees, Marco Eichelberg says it's OK ...
2262             // We let it for a while? 
2263             //(We should check length==4, for more security, but we don't have it yet !)
2264          else if ( CurrentElem == 0x0001)
2265             realVR = "UL"; // Private Group Length To End      
2266       }
2267       
2268       else
2269       {
2270          DictEntry *dictEntry = GetDictEntry(CurrentGroup,CurrentElem);//only when ImplicitVR
2271          if ( dictEntry )
2272          {
2273             realVR = dictEntry->GetVR();
2274             dictEntry->Unregister(); // GetDictEntry registered it 
2275          }
2276       }
2277    }
2278
2279    // if UN found, let's check the dictionary, and trust it!
2280    // (maybe a private dictionary exists?)    
2281    else if (vr == "UN")
2282    {
2283       DictEntry *dictEntry = GetDictEntry(CurrentGroup,CurrentElem);
2284       if ( dictEntry )
2285       {
2286          realVR = dictEntry->GetVR(); 
2287          dictEntry->Unregister(); // GetDictEntry registered it
2288
2289          // for VR = "UN", length is always stored on 4 bytes.
2290          changeFromUN=true;
2291          /// \todo : fixme If inside a supposed to be UN DataElement (but SQ according to a private dictionnary)
2292          ///         there is some more supposed to be UN DataElements, it will probabely fail.
2293          ///         --> find a -non time consuming- trick to store changeFromUN info at DataElement level,
2294          ///         not at the Document level.
2295       }   
2296    }
2297
2298
2299    DocEntry *newEntry;
2300    //if ( Global::GetVR()->IsVROfSequence(realVR) )
2301    if (realVR == "SQ")
2302    {
2303       newEntry = NewSeqEntry(CurrentGroup, CurrentElem);
2304    }
2305    else
2306    {
2307       newEntry = NewDataEntry(CurrentGroup, CurrentElem, realVR);
2308       static_cast<DataEntry *>(newEntry)->SetState(DataEntry::STATE_NOTLOADED);
2309    }
2310
2311    if ( vr == GDCM_VRUNKNOWN )
2312    {
2313       if ( Filetype == ExplicitVR )
2314       {
2315          // We thought this was explicit VR, but we end up with an
2316          // implicit VR tag. Let's backtrack.
2317  
2318          //if ( newEntry->GetGroup() != 0xfffe ) 
2319          if (CurrentGroup != 0xfffe)
2320          { 
2321             int offset = Fp->tellg();//Only when heuristic for Explicit/Implicit was wrong
2322
2323             gdcmWarningMacro("Entry (" << newEntry->GetKey() << ") at x("
2324                      <<  offset << ") should be Explicit VR");
2325           }
2326       }
2327       newEntry->SetImplicitVR();
2328    }
2329
2330    try
2331    {
2332       FindDocEntryLength(newEntry);
2333    }
2334    catch ( FormatError )
2335    {
2336       // Call it quits
2337       newEntry->Delete();
2338       return 0;
2339    }
2340
2341    newEntry->SetOffset(Fp->tellg());  // for each DocEntry
2342    return newEntry;
2343 }
2344
2345 /**
2346  * \brief   Handle broken private tag from Philips NTSCAN
2347  *          where the endianess is being switched to BigEndian 
2348  *          for no apparent reason
2349  * @return  no return
2350  */
2351 void Document::HandleBrokenEndian(uint16_t &group, uint16_t &elem)
2352 {
2353  // for strange PMS Gyroscan Intera images
2354  // Item 'starter' has a tag : 0x3f3f,0x3f00, for no apparent reason
2355  
2356  // --- Feel free to remove this test *on your own coy of gdcm*
2357  //     if you are sure you'll never face this problem.
2358  
2359    if ((group == 0x3f3f) && (elem == 0x3f00))
2360    {
2361      // start endian swap mark for group found
2362      gdcmDebugMacro( " delimiter 0x3f3f  found." );
2363      // fix the tag
2364      group = 0xfffe;
2365      elem  = 0xe000;
2366      return;
2367    }
2368    // --- End of removable code
2369    
2370    // Endian reversion. 
2371    // Some files contain groups of tags with reversed endianess.
2372    static int reversedEndian = 0;
2373    // try to fix endian switching in the middle of headers
2374    if ((group == 0xfeff) && (elem == 0x00e0))
2375    {
2376      // start endian swap mark for group found
2377      gdcmDebugMacro( "Start endian swap mark found." );
2378      reversedEndian++;
2379      SwitchByteSwapCode();
2380      // fix the tag
2381      group = 0xfffe;
2382      elem  = 0xe000;
2383    } 
2384    else if (group == 0xfffe && elem == 0xe00d && reversedEndian) 
2385    {
2386      // end of reversed endian group
2387      gdcmDebugMacro( "End of reversed endian." );
2388      reversedEndian--;
2389      SwitchByteSwapCode();
2390    }
2391    else if (group == 0xfeff && elem == 0xdde0) 
2392    {
2393      // reversed Sequence Terminator found
2394      // probabely a bug in the header !
2395      // Do what you want, it breaks !
2396      //reversedEndian--;
2397      //SwitchByteSwapCode();
2398      gdcmWarningMacro( "Should never get here! reversed Sequence Terminator!" );
2399      // fix the tag
2400       group = 0xfffe;
2401       elem  = 0xe0dd;  
2402    }
2403    else if (group == 0xfffe && elem == 0xe0dd) 
2404    {
2405       gdcmDebugMacro( "Straight Sequence Terminator." );  
2406    }
2407 }
2408
2409 /**
2410  * \brief   Group 0002 is always coded Little Endian
2411  *          whatever Transfer Syntax is
2412  * @return  no return
2413  */
2414 void Document::HandleOutOfGroup0002(uint16_t &group, uint16_t &elem)
2415 {
2416    // Endian reversion. 
2417    // Some files contain groups of tags with reversed endianess.
2418    
2419       Group0002Parsed = true;
2420       // we just came out of group 0002
2421       // if Transfer Syntax is Big Endian we have to change CheckSwap
2422
2423       std::string ts = GetTransferSyntax();
2424       TS::SpecialType s = Global::GetTS()->GetSpecialTransferSyntax(ts);
2425
2426       // Group 0002 is always 'Explicit ...' 
2427       // even when Transfer Syntax says 'Implicit ..." 
2428
2429       if ( s == TS::ImplicitVRLittleEndian 
2430         ||
2431           s == TS::ImplicitVRBigEndianPrivateGE  
2432          )
2433       {
2434          Filetype = ImplicitVR;
2435       }
2436        
2437       // FIXME Strangely, this works with 
2438       //'Implicit VR BigEndian Transfer Syntax' (GE Private)
2439       //
2440       // --> Probabely normal, since we considered we never have 
2441       // to trust manufacturers.
2442       // (we often find 'Implicit VR' tag, 
2443       // even when Transfer Syntax tells us it's Explicit ...
2444       
2445        // NEVER trust the meta elements!
2446        // (see what ezDICOM does ...)
2447              
2448       /*
2449       if ( s ==  TS::ExplicitVRBigEndian )
2450       {
2451          gdcmDebugMacro("Transfer Syntax Name = [" 
2452                         << GetTransferSyntaxName() << "]" );
2453          SwitchByteSwapCode();
2454          group = SwapShort(group);
2455          elem  = SwapShort(elem);
2456       }
2457       */
2458     //-- Broken ACR  may start with a Shadow Group --
2459     // worse : some ACR-NEMA like files start 00028 group ?!? 
2460     if ( !( (group >= 0x0001 && group <= 0x0008) || group == 0x0028 ) )
2461     {
2462        // We trust what we see.
2463        SwitchByteSwapCode();
2464        group = SwapShort(group);
2465        elem  = SwapShort(elem); 
2466        // not what we where told (by meta elements) !
2467        gdcmDebugMacro("Transfer Syntax Name = ["       
2468                        << GetTransferSyntaxName() << "]" );         
2469     }
2470       
2471       /// \todo  find a trick to warn user and stop processing
2472             
2473       if ( s == TS::DeflatedExplicitVRLittleEndian)
2474       {
2475            gdcmWarningMacro("Transfer Syntax [" 
2476                         << GetTransferSyntaxName() << "] :"
2477                         << " not yet dealt with ");
2478            return;       
2479       }
2480       
2481       // The following shouldn't occur very often
2482       // Let's check at the very end.
2483
2484       if ( ts == GDCM_UNKNOWN )
2485       {
2486          gdcmDebugMacro("True DICOM File, with NO Transfer Syntax (?!) " );
2487          return;      
2488       }
2489       
2490       if ( !Global::GetTS()->IsTransferSyntax(ts) )
2491       {
2492          gdcmWarningMacro("True DICOM File, with illegal Transfer Syntax: [" 
2493                           << ts << "]");
2494          return;
2495       }      
2496 }
2497
2498 //-----------------------------------------------------------------------------
2499 // Print
2500
2501 //-----------------------------------------------------------------------------
2502 } // end namespace gdcm