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