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