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