]> Creatis software - gdcm.git/blob - src/gdcmDocument.cxx
'(' and ')' removed around the return
[gdcm.git] / src / gdcmDocument.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmDocument.cxx,v $
5   Language:  C++
6   Date:      $Date: 2004/06/23 16:34:36 $
7   Version:   $Revision: 1.31 $
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.htm 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 "gdcmValEntry.h"
21 #include "gdcmBinEntry.h"
22 #include "gdcmSeqEntry.h"
23
24 #include "gdcmGlobal.h"
25 #include "gdcmUtil.h"
26 #include "gdcmDebug.h"
27
28 #include <errno.h>
29 #include <vector>
30
31 // For nthos:
32 #ifdef _MSC_VER
33    #include <winsock.h>
34 #else
35    #include <netinet/in.h>
36 #endif
37
38 #  include <iomanip>
39
40 // Implicit VR Little Endian
41 #define UI1_2_840_10008_1_2      "1.2.840.10008.1.2"
42 // Explicit VR Little Endian
43 #define UI1_2_840_10008_1_2_1    "1.2.840.10008.1.2.1"
44 // Deflated Explicit VR Little Endian
45 #define UI1_2_840_10008_1_2_1_99 "1.2.840.10008.1.2.1.99"
46 // Explicit VR Big Endian
47 #define UI1_2_840_10008_1_2_2    "1.2.840.10008.1.2.2"
48 // JPEG Baseline (Process 1)
49 #define UI1_2_840_10008_1_2_4_50 "1.2.840.10008.1.2.4.50"
50 // JPEG Extended (Process 2 & 4)
51 #define UI1_2_840_10008_1_2_4_51 "1.2.840.10008.1.2.4.51"
52 // JPEG Extended (Process 3 & 5)
53 #define UI1_2_840_10008_1_2_4_52 "1.2.840.10008.1.2.4.52"
54 // JPEG Spectral Selection, Non-Hierarchical (Process 6 & 8)
55 #define UI1_2_840_10008_1_2_4_53 "1.2.840.10008.1.2.4.53"
56 // JPEG Full Progression, Non-Hierarchical (Process 10 & 12)
57 #define UI1_2_840_10008_1_2_4_55 "1.2.840.10008.1.2.4.55"
58 // JPEG Lossless, Non-Hierarchical (Process 14)
59 #define UI1_2_840_10008_1_2_4_57 "1.2.840.10008.1.2.4.57"
60 // JPEG Lossless, Hierarchical, First-Order Prediction (Process 14,
61 // [Selection Value 1])
62 #define UI1_2_840_10008_1_2_4_70 "1.2.840.10008.1.2.4.70"
63 // JPEG 2000 Lossless
64 #define UI1_2_840_10008_1_2_4_90 "1.2.840.10008.1.2.4.90"
65 // JPEG 2000
66 #define UI1_2_840_10008_1_2_4_91 "1.2.840.10008.1.2.4.91"
67 // RLE Lossless
68 #define UI1_2_840_10008_1_2_5    "1.2.840.10008.1.2.5"
69 // UI1_1_2_840_10008_1_2_5
70 #define str2num(str, typeNum) *((typeNum *)(str))
71
72 //-----------------------------------------------------------------------------
73 // Refer to gdcmDocument::CheckSwap()
74 const unsigned int gdcmDocument::HEADER_LENGTH_TO_READ = 256;
75
76 // Refer to gdcmDocument::SetMaxSizeLoadEntry()
77 const unsigned int gdcmDocument::MAX_SIZE_LOAD_ELEMENT_VALUE = 4096;
78
79 const unsigned int gdcmDocument::MAX_SIZE_PRINT_ELEMENT_VALUE = 64;
80
81 //-----------------------------------------------------------------------------
82 // Constructor / Destructor
83
84 /**
85  * \brief   constructor  
86  * @param   inFilename file to be opened for parsing
87  * @param   exception_on_error whether we throw an exception or not
88  * @param   enable_sequences = true to allow the header 
89  *          to be parsed *inside* the SeQuences,
90  *          when they have an actual length 
91  * \warning enable_sequences *has to be* true for reading PAPYRUS 3.0 files 
92  * @param   ignore_shadow to allow skipping the shadow elements, 
93  *          to save memory space.
94  * \warning The TRUE value for this param has to be used 
95  *          with a FALSE value for the 'enable_sequence' param.
96  *          ('public elements' may be embedded in 'shadow Sequences')
97  */
98 gdcmDocument::gdcmDocument(std::string const & inFilename, 
99                            bool exception_on_error,
100                            bool enable_sequences,
101                            bool ignore_shadow) 
102               : gdcmElementSet(-1)   {
103    enableSequences=enable_sequences;
104    IgnoreShadow   =ignore_shadow;
105    
106    SetMaxSizeLoadEntry(MAX_SIZE_LOAD_ELEMENT_VALUE); 
107    Filename = inFilename;
108    Initialise();
109
110    if ( !OpenFile(exception_on_error))
111       return;
112    
113    dbg.Verbose(0, "gdcmDocument::gdcmDocument: starting parsing of file: ",
114                   Filename.c_str());
115    rewind(fp);
116    
117    fseek(fp,0L,SEEK_END);
118    long lgt = ftell(fp);    
119            
120    rewind(fp);
121    CheckSwap();
122    long beg = ftell(fp);
123    lgt -= beg;
124    
125    SQDepthLevel=0;
126    
127    long l=ParseDES( this, beg, lgt, false); // le Load sera fait a la volee
128    (void)l; //is l used anywhere ?
129         
130         rewind(fp); 
131    
132    // Load 'non string' values
133       
134    std::string PhotometricInterpretation = GetEntryByNumber(0x0028,0x0004);   
135    if( PhotometricInterpretation == "PALETTE COLOR " ) {
136       LoadEntryVoidArea(0x0028,0x1200);  // gray LUT   
137       LoadEntryVoidArea(0x0028,0x1201);  // R    LUT
138       LoadEntryVoidArea(0x0028,0x1202);  // G    LUT
139       LoadEntryVoidArea(0x0028,0x1203);  // B    LUT
140       
141       LoadEntryVoidArea(0x0028,0x1221);  // Segmented Red   Palette Color LUT Data
142       LoadEntryVoidArea(0x0028,0x1222);  // Segmented Green Palette Color LUT Data
143       LoadEntryVoidArea(0x0028,0x1223);  // Segmented Blue  Palette Color LUT Data
144    } 
145    //FIXME later : how to use it?
146    LoadEntryVoidArea(0x0028,0x3006);  //LUT Data (CTX dependent) 
147                 
148    CloseFile(); 
149   
150    // --------------------------------------------------------------
151    // Special Patch to allow gdcm to read ACR-LibIDO formated images
152    //
153    // if recognition code tells us we deal with a LibIDO image
154    // we switch lineNumber and columnNumber
155    //
156    std::string RecCode;
157    RecCode = GetEntryByNumber(0x0008, 0x0010); // recognition code
158    if (RecCode == "ACRNEMA_LIBIDO_1.1" ||
159        RecCode == "CANRME_AILIBOD1_1." )  // for brain-damaged softwares
160                                           // with "little-endian strings"
161    {
162          Filetype = gdcmACR_LIBIDO; 
163          std::string rows    = GetEntryByNumber(0x0028, 0x0010);
164          std::string columns = GetEntryByNumber(0x0028, 0x0011);
165          SetEntryByNumber(columns, 0x0028, 0x0010);
166          SetEntryByNumber(rows   , 0x0028, 0x0011);
167    }
168    // ----------------- End of Special Patch ---------------- 
169
170    printLevel = 1;  // 'Medium' print level by default
171 }
172
173 /**
174  * \brief  constructor 
175  * @param   exception_on_error
176  */
177 gdcmDocument::gdcmDocument(bool exception_on_error) 
178              :gdcmElementSet(-1)    {
179    (void)exception_on_error;
180    enableSequences=0;
181
182    SetMaxSizeLoadEntry(MAX_SIZE_LOAD_ELEMENT_VALUE);
183    Initialise();
184
185    printLevel = 1;  // 'Medium' print level by default
186 }
187
188 /**
189  * \brief   Canonical destructor.
190  */
191 gdcmDocument::~gdcmDocument (void) {
192    RefPubDict = NULL;
193    RefShaDict = NULL;
194
195    // Recursive clean up of sequences
196    for (TagDocEntryHT::iterator it = tagHT.begin(); it != tagHT.end(); ++it )
197    { 
198          delete it->second;
199    }
200    tagHT.clear();
201 }
202
203 //-----------------------------------------------------------------------------
204 // Print
205
206 /**
207   * \brief   Prints The Dict Entries of THE public Dicom Dictionary
208   * @return
209   */  
210 void gdcmDocument::PrintPubDict(std::ostream & os) {
211    RefPubDict->Print(os);
212 }
213
214 /**
215   * \brief   Prints The Dict Entries of THE shadow Dicom Dictionary
216   * @return
217   */
218 void gdcmDocument::PrintShaDict(std::ostream & os) {
219    RefShaDict->Print(os);
220 }
221
222 //-----------------------------------------------------------------------------
223 // Public
224 /**
225  * \brief   Get the public dictionary used
226  */
227 gdcmDict *gdcmDocument::GetPubDict(void) {
228    return RefPubDict;
229 }
230
231 /**
232  * \brief   Get the shadow dictionary used
233  */
234 gdcmDict *gdcmDocument::GetShaDict(void) {
235    return RefShaDict;
236 }
237
238 /**
239  * \brief   Set the shadow dictionary used
240  * \param   dict dictionary to use in shadow
241  */
242 bool gdcmDocument::SetShaDict(gdcmDict *dict){
243    RefShaDict=dict;
244    return !RefShaDict;
245 }
246
247 /**
248  * \brief   Set the shadow dictionary used
249  * \param   dictName name of the dictionary to use in shadow
250  */
251 bool gdcmDocument::SetShaDict(DictKey dictName){
252    RefShaDict=gdcmGlobal::GetDicts()->GetDict(dictName);
253    return !RefShaDict;
254 }
255
256 /**
257  * \brief  This predicate, based on hopefully reasonable heuristics,
258  *         decides whether or not the current gdcmDocument was properly parsed
259  *         and contains the mandatory information for being considered as
260  *         a well formed and usable Dicom/Acr File.
261  * @return true when gdcmDocument is the one of a reasonable Dicom/Acr file,
262  *         false otherwise. 
263  */
264 bool gdcmDocument::IsReadable(void) { 
265    if(Filetype==gdcmUnknown) {
266       dbg.Verbose(0, "gdcmDocument::IsReadable: wrong filetype");
267       return false;
268    }
269    if(!tagHT.empty()<=0) { 
270       dbg.Verbose(0, "gdcmDocument::IsReadable: no tags in internal"
271                      " hash table.");
272       return false;
273    }
274
275    return(true);
276 }
277
278
279 /**
280  * \brief   Internal function that checks whether the Transfer Syntax given
281  *          as argument is the one present in the current document.
282  * @param   SyntaxToCheck The transfert syntax we need to check against.
283  * @return  True when SyntaxToCheck corresponds to the Transfer Syntax of
284  *          the current document. False either when the document contains
285  *          no Transfer Syntax, or when the Tranfer Syntaxes don't match.
286  */
287 bool gdcmDocument::IsGivenTransferSyntax(const std::string & SyntaxToCheck)
288 {
289    gdcmDocEntry *Entry = GetDocEntryByNumber(0x0002, 0x0010);
290    if ( !Entry )
291       return false;
292
293    // The entry might be present but not loaded (parsing and loading
294    // happen at differente stages): try loading and proceed with check...
295    LoadDocEntrySafe(Entry);
296    if (gdcmValEntry* ValEntry = dynamic_cast< gdcmValEntry* >(Entry) )
297    {
298       std::string Transfer = ValEntry->GetValue();
299       // The actual transfer (as read from disk) might be padded. We
300       // first need to remove the potential padding. We can make the
301       // weak assumption that padding was not executed with digits...
302       while ( ! isdigit(Transfer[Transfer.length()-1]) )
303       {
304          Transfer.erase(Transfer.length()-1, 1);
305       }
306       if ( Transfer == SyntaxToCheck )
307          return true;
308    }
309    return false;
310 }
311
312 /**
313  * \brief   Determines if the Transfer Syntax of the present document
314  *          corresponds to a Implicit Value Representation of 
315  *          Little Endian.
316  * \sa      \ref gdcmDocument::IsGivenTransferSyntax.
317  * @return  True when ImplicitVRLittleEndian found. False in all other cases.
318  */
319 bool gdcmDocument::IsImplicitVRLittleEndianTransferSyntax(void)
320 {
321    return IsGivenTransferSyntax(UI1_2_840_10008_1_2);
322 }
323
324 /**
325  * \brief   Determines if the Transfer Syntax was already encountered
326  *          and if it corresponds to a ExplicitVRLittleEndian one.
327  * @return  True when ExplicitVRLittleEndian found. False in all other cases.
328  */
329 bool gdcmDocument::IsExplicitVRLittleEndianTransferSyntax(void)
330 {
331    return IsGivenTransferSyntax(UI1_2_840_10008_1_2_1);
332 }
333
334 /**
335  * \brief   Determines if the Transfer Syntax was already encountered
336  *          and if it corresponds to a DeflatedExplicitVRLittleEndian one.
337  * @return  True when DeflatedExplicitVRLittleEndian found. False in all other cases.
338  */
339 bool gdcmDocument::IsDeflatedExplicitVRLittleEndianTransferSyntax(void)
340 {
341    return IsGivenTransferSyntax(UI1_2_840_10008_1_2_1_99);
342 }
343
344 /**
345  * \brief   Determines if the Transfer Syntax was already encountered
346  *          and if it corresponds to a Explicit VR Big Endian one.
347  * @return  True when big endian found. False in all other cases.
348  */
349 bool gdcmDocument::IsExplicitVRBigEndianTransferSyntax(void)
350 {
351    return IsGivenTransferSyntax(UI1_2_840_10008_1_2_2);
352 }
353
354 /**
355  * \brief   Determines if the Transfer Syntax was already encountered
356  *          and if it corresponds to a JPEGBaseLineProcess1 one.
357  * @return  True when JPEGBaseLineProcess1found. False in all other cases.
358  */
359 bool gdcmDocument::IsJPEGBaseLineProcess1TransferSyntax(void)
360 {
361    return IsGivenTransferSyntax(UI1_2_840_10008_1_2_4_50);
362 }
363                                                                                 
364 /**
365  * \brief   Determines if the Transfer Syntax was already encountered
366  *          and if it corresponds to a JPEGExtendedProcess2-4 one.
367  * @return  True when JPEGExtendedProcess2-4 found. False in all other cases.
368  */
369 bool gdcmDocument::IsJPEGExtendedProcess2_4TransferSyntax(void)
370 {
371    return IsGivenTransferSyntax(UI1_2_840_10008_1_2_4_51);
372 }
373                                                                                 
374 /**
375  * \brief   Determines if the Transfer Syntax was already encountered
376  *          and if it corresponds to a JPEGExtendeProcess3-5 one.
377  * @return  True when JPEGExtendedProcess3-5 found. False in all other cases.
378  */
379 bool gdcmDocument::IsJPEGExtendedProcess3_5TransferSyntax(void)
380 {
381    return IsGivenTransferSyntax(UI1_2_840_10008_1_2_4_52);
382 }
383
384 /**
385  * \brief   Determines if the Transfer Syntax was already encountered
386  *          and if it corresponds to a JPEGSpectralSelectionProcess6-8 one.
387  * @return  True when JPEGSpectralSelectionProcess6-8 found. False in all
388  *          other cases.
389  */
390 bool gdcmDocument::IsJPEGSpectralSelectionProcess6_8TransferSyntax(void)
391 {
392    return IsGivenTransferSyntax(UI1_2_840_10008_1_2_4_53);
393 }
394
395 /**
396  * \brief   Determines if the Transfer Syntax was already encountered
397  *          and if it corresponds to a RLE Lossless one.
398  * @return  True when RLE Lossless found. False in all
399  *          other cases.
400  */
401 bool gdcmDocument::IsRLELossLessTransferSyntax(void)
402 {
403    return IsGivenTransferSyntax(UI1_2_840_10008_1_2_5);
404 }
405
406 /**
407  * \brief  Determines if Transfer Syntax was already encountered
408  *          and if it corresponds to a JPEG Lossless one.
409  * @return  True when RLE Lossless found. False in all
410  *          other cases.
411  */
412  
413 bool gdcmDocument::IsJPEGLossless(void)
414 {
415    return (   IsGivenTransferSyntax(UI1_2_840_10008_1_2_4_55)
416            || IsGivenTransferSyntax(UI1_2_840_10008_1_2_4_57)
417            || IsGivenTransferSyntax(UI1_2_840_10008_1_2_4_70) );
418 }
419                                                                                 
420 /**
421  * \brief   Determines if the Transfer Syntax was already encountered
422  *          and if it corresponds to a JPEG2000 one
423  * @return  True when JPEG2000 (Lossly or LossLess) found. False in all
424  *          other cases.
425  */
426 bool gdcmDocument::IsJPEG2000(void)
427 {
428    return (   IsGivenTransferSyntax(UI1_2_840_10008_1_2_4_90)
429            || IsGivenTransferSyntax(UI1_2_840_10008_1_2_4_91) );
430 }
431
432 /**
433  * \brief   Predicate for dicom version 3 file.
434  * @return  True when the file is a dicom version 3.
435  */
436 bool gdcmDocument::IsDicomV3(void) {
437    // Checking if Transfert Syntax exists is enough
438    // Anyway, it's to late check if the 'Preamble' was found ...
439    // And ... would it be a rich idea to check ?
440    // (some 'no Preamble' DICOM images exist !)
441    return (GetDocEntryByNumber(0x0002, 0x0010) != NULL);
442 }
443
444 /**
445  * \brief  returns the File Type 
446  *         (ACR, ACR_LIBIDO, ExplicitVR, ImplicitVR, Unknown)
447  * @return the FileType code
448  */
449 FileType gdcmDocument::GetFileType(void) {
450    return Filetype;
451 }
452
453 /**
454  * \brief   opens the file
455  * @param   exception_on_error
456  * @return  
457  */
458 FILE *gdcmDocument::OpenFile(bool exception_on_error)
459   throw(gdcmFileError) 
460 {
461   fp=fopen(Filename.c_str(),"rb");
462
463   if(!fp)
464   {
465      if(exception_on_error) 
466         throw gdcmFileError("gdcmDocument::gdcmDocument(const char *, bool)");
467      else
468      {
469         dbg.Verbose(0, "gdcmDocument::OpenFile cannot open file: ",
470                     Filename.c_str());
471         return NULL;
472      }
473   }
474
475   if ( fp ) 
476   {
477      guint16 zero;
478      fread(&zero,  (size_t)2, (size_t)1, fp);
479
480     //ACR -- or DICOM with no Preamble --
481     if( zero == 0x0008 || zero == 0x0800 || zero == 0x0002 || zero == 0x0200)
482        return fp;
483
484     //DICOM
485     fseek(fp, 126L, SEEK_CUR);
486     char dicm[4];
487     fread(dicm,  (size_t)4, (size_t)1, fp);
488     if( memcmp(dicm, "DICM", 4) == 0 )
489        return fp;
490
491     fclose(fp);
492     dbg.Verbose(0, "gdcmDocument::OpenFile not DICOM/ACR", Filename.c_str());
493   }
494   else {
495     dbg.Verbose(0, "gdcmDocument::OpenFile cannot open file", Filename.c_str());
496   }
497   return NULL;
498 }
499
500 /**
501  * \brief closes the file  
502  * @return  TRUE if the close was successfull 
503  */
504 bool gdcmDocument::CloseFile(void) {
505   int closed = fclose(fp);
506   fp = (FILE *)0;
507   if (! closed)
508      return false;
509   return true;
510 }
511
512 /**
513  * \brief Writes in a file all the Header Entries (Dicom Elements) 
514  * @param fp file pointer on an already open file
515  * @param filetype Type of the File to be written 
516  *          (ACR-NEMA, ExplicitVR, ImplicitVR)
517  * \return Always true.
518  */
519 bool gdcmDocument::WriteF(FileType filetype) {
520 /// \todo
521 /// ==============
522 ///      The stuff is rewritten using the SeQuence based 
523 ///       tree-like stucture (cf : Print )
524 ///      To be checked
525 /// =============
526
527    /// \todo move the following lines (and a lot of others, to be written)
528    /// to a future function CheckAndCorrectHeader
529    
530    /// WARNING : Si on veut ecrire du DICOM V3 a partir d'un DcmHeader ACR-NEMA
531    /// no way (check : FileType est un champ de gdcmDocument ...)
532    /// a moins de se livrer a un tres complique ajout des champs manquants.
533    /// faire un CheckAndCorrectHeader (?)  
534
535    if (filetype == gdcmImplicitVR) 
536    {
537       std::string implicitVRTransfertSyntax = UI1_2_840_10008_1_2;
538       ReplaceOrCreateByNumber(implicitVRTransfertSyntax,0x0002, 0x0010);
539       
540       /// \todo Refer to standards on page 21, chapter 6.2
541       ///       "Value representation": values with a VR of UI shall be
542       ///       padded with a single trailing null
543       ///       Dans le cas suivant on doit pader manuellement avec un 0
544       
545       SetEntryLengthByNumber(18, 0x0002, 0x0010);
546    } 
547
548    if (filetype == gdcmExplicitVR)
549    {
550       std::string explicitVRTransfertSyntax = UI1_2_840_10008_1_2_1;
551       ReplaceOrCreateByNumber(explicitVRTransfertSyntax,0x0002, 0x0010);
552       
553       /// \todo Refer to standards on page 21, chapter 6.2
554       ///       "Value representation": values with a VR of UI shall be
555       ///       padded with a single trailing null
556       ///       Dans le cas suivant on doit pader manuellement avec un 0
557       
558       SetEntryLengthByNumber(20, 0x0002, 0x0010);
559    }
560
561 /**
562  * \todo rewrite later, if really usefull
563  *               ('Group Length' element is optional in DICOM)
564  *
565  *       --> Warning : un-updated odd groups lengthes can causes pb
566  *       -->           (xmedcon breaks)
567  *       --> to be re- written with future org.
568  *
569  * if ( (filetype == ImplicitVR) || (filetype == ExplicitVR) )
570  *    UpdateGroupLength(false,filetype);
571  * if ( filetype == ACR)
572  *    UpdateGroupLength(true,ACR);
573  */
574         
575         gdcmElementSet::Write(fp,filetype);
576
577    /// WriteEntries(fp,type); // old stuff
578    return true;
579 }
580
581 /**
582  * \brief   Modifies the value of a given Header Entry (Dicom Element)
583  *          when it exists. Create it with the given value when unexistant.
584  * @param   Value (string) Value to be set
585  * @param   Group   Group number of the Entry 
586  * @param   Elem  Element number of the Entry
587  * \return  pointer to the modified/created Header Entry (NULL when creation
588  *          failed).
589  */
590   
591 gdcmValEntry * gdcmDocument::ReplaceOrCreateByNumber(
592                                          std::string Value, 
593                                          guint16 Group, 
594                                          guint16 Elem )
595 {
596    gdcmDocEntry* CurrentEntry;
597    gdcmValEntry* ValEntry;
598
599    CurrentEntry = GetDocEntryByNumber( Group, Elem);
600    if (!CurrentEntry)
601    {
602       // The entry wasn't present and we simply create the required ValEntry:
603       CurrentEntry = NewDocEntryByNumber(Group, Elem);
604       if (!CurrentEntry)
605       {
606          dbg.Verbose(0, "gdcmDocument::ReplaceOrCreateByNumber: call to"
607                         " NewDocEntryByNumber failed.");
608          return NULL;
609       }
610       ValEntry = new gdcmValEntry(CurrentEntry);
611       if ( !AddEntry(ValEntry))
612       {
613          dbg.Verbose(0, "gdcmDocument::ReplaceOrCreateByNumber: AddEntry"
614                         " failed allthough this is a creation.");
615       }
616    }
617    else
618    {
619       ValEntry = dynamic_cast< gdcmValEntry* >(CurrentEntry);
620       if ( !ValEntry )
621       {
622          // We need to promote the gdcmDocEntry to a gdcmValEntry:
623          ValEntry = new gdcmValEntry(CurrentEntry);
624          if (!RemoveEntry(CurrentEntry))
625          {
626             dbg.Verbose(0, "gdcmDocument::ReplaceOrCreateByNumber: removal"
627                            " of previous DocEntry failed.");
628             return NULL;
629          }
630          if ( !AddEntry(ValEntry))
631          {
632             dbg.Verbose(0, "gdcmDocument::ReplaceOrCreateByNumber: adding"
633                            " promoted ValEntry failed.");
634             return NULL;
635          }
636       }
637    }
638
639    SetEntryByNumber(Value, Group, Elem);
640
641    return ValEntry;
642 }   
643
644 /*
645  * \brief   Modifies the value of a given Header Entry (Dicom Element)
646  *          when it exists. Create it with the given value when unexistant.
647  * @param   voidArea (binary) value to be set
648  * @param   Group   Group number of the Entry 
649  * @param   Elem  Element number of the Entry
650  * \return  pointer to the modified/created Header Entry (NULL when creation
651  *          failed).
652  */
653 gdcmBinEntry * gdcmDocument::ReplaceOrCreateByNumber(
654                                          void *voidArea,
655                                          int lgth, 
656                                          guint16 Group, 
657                                          guint16 Elem)
658 {
659    gdcmDocEntry* a;
660    gdcmBinEntry* b;
661    a = GetDocEntryByNumber( Group, Elem);
662    if (a == NULL) {
663       a =NewBinEntryByNumber(Group, Elem);
664       if (a == NULL) 
665          return NULL;
666
667       b = new gdcmBinEntry(a);
668       AddEntry(b);
669    }   
670    SetEntryByNumber(voidArea, lgth, Group, Elem);
671    b->SetVoidArea(voidArea);
672
673    return b;
674 }  
675
676
677
678 /**
679  * \brief Set a new value if the invoked element exists
680  *        Seems to be useless !!!
681  * @param Value new element value
682  * @param Group  group number of the Entry 
683  * @param Elem element number of the Entry
684  * \return  boolean 
685  */
686 bool gdcmDocument::ReplaceIfExistByNumber(char* Value, guint16 Group, guint16 Elem ) 
687 {
688    std::string v = Value;
689    SetEntryByNumber(v, Group, Elem);
690    return true;
691
692
693 //-----------------------------------------------------------------------------
694 // Protected
695
696 /**
697  * \brief   Checks if a given Dicom Element exists within the H table
698  * @param   group      Group number of the searched Dicom Element 
699  * @param   element  Element number of the searched Dicom Element 
700  * @return  number of occurences
701  */
702 int gdcmDocument::CheckIfEntryExistByNumber(guint16 group, guint16 element ) {
703    std::string key = gdcmDictEntry::TranslateToKey(group, element );
704    return tagHT.count(key);
705 }
706
707 /**
708  * \brief   Searches within Header Entries (Dicom Elements) parsed with 
709  *          the public and private dictionaries 
710  *          for the element value of a given tag.
711  * \warning Don't use any longer : use GetPubEntryByName
712  * @param   tagName name of the searched element.
713  * @return  Corresponding element value when it exists,
714  *          and the string GDCM_UNFOUND ("gdcm::Unfound") otherwise.
715  */
716 std::string gdcmDocument::GetEntryByName(std::string tagName) {
717    gdcmDictEntry *dictEntry = RefPubDict->GetDictEntryByName(tagName); 
718    if( dictEntry == NULL)
719       return GDCM_UNFOUND;
720
721    return GetEntryByNumber(dictEntry->GetGroup(),dictEntry->GetElement());
722 }
723
724 /**
725  * \brief   Searches within Header Entries (Dicom Elements) parsed with 
726  *          the public and private dictionaries 
727  *          for the element value representation of a given tag.
728  *
729  *          Obtaining the VR (Value Representation) might be needed by caller
730  *          to convert the string typed content to caller's native type 
731  *          (think of C++ vs Python). The VR is actually of a higher level
732  *          of semantics than just the native C++ type.
733  * @param   tagName name of the searched element.
734  * @return  Corresponding element value representation when it exists,
735  *          and the string GDCM_UNFOUND ("gdcm::Unfound") otherwise.
736  */
737 std::string gdcmDocument::GetEntryVRByName(TagName tagName) {
738    gdcmDictEntry *dictEntry = RefPubDict->GetDictEntryByName(tagName); 
739    if( dictEntry == NULL)
740       return GDCM_UNFOUND;
741
742    gdcmDocEntry* elem =  GetDocEntryByNumber(dictEntry->GetGroup(),
743                                              dictEntry->GetElement());
744    return elem->GetVR();
745 }
746
747
748 /**
749  * \brief   Searches within Header Entries (Dicom Elements) parsed with 
750  *          the public and private dictionaries 
751  *          for the element value representation of a given tag.
752  * @param   group Group number of the searched tag.
753  * @param   element Element number of the searched tag.
754  * @return  Corresponding element value representation when it exists,
755  *          and the string GDCM_UNFOUND ("gdcm::Unfound") otherwise.
756  */
757 std::string gdcmDocument::GetEntryByNumber(guint16 group, guint16 element){
758    TagKey key = gdcmDictEntry::TranslateToKey(group, element);
759    if ( ! tagHT.count(key))
760       return GDCM_UNFOUND;
761    return ((gdcmValEntry *)tagHT.find(key)->second)->GetValue();
762 }
763
764 /**
765  * \brief   Searches within Header Entries (Dicom Elements) parsed with 
766  *          the public and private dictionaries 
767  *          for the element value representation of a given tag..
768  *
769  *          Obtaining the VR (Value Representation) might be needed by caller
770  *          to convert the string typed content to caller's native type 
771  *          (think of C++ vs Python). The VR is actually of a higher level
772  *          of semantics than just the native C++ type.
773  * @param   group     Group number of the searched tag.
774  * @param   element Element number of the searched tag.
775  * @return  Corresponding element value representation when it exists,
776  *          and the string GDCM_UNFOUND ("gdcm::Unfound") otherwise.
777  */
778 std::string gdcmDocument::GetEntryVRByNumber(guint16 group, guint16 element) {
779    gdcmDocEntry* elem =  GetDocEntryByNumber(group, element);
780    if ( !elem )
781       return GDCM_UNFOUND;
782    return elem->GetVR();
783 }
784
785 /**
786  * \brief   Searches within Header Entries (Dicom Elements) parsed with 
787  *          the public and private dictionaries 
788  *          for the value length of a given tag..
789  * @param   group     Group number of the searched tag.
790  * @param   element Element number of the searched tag.
791  * @return  Corresponding element length; -2 if not found
792  */
793 int gdcmDocument::GetEntryLengthByNumber(guint16 group, guint16 element) {
794    gdcmDocEntry* elem =  GetDocEntryByNumber(group, element);
795    if ( !elem )
796       return -2;
797    return elem->GetLength();
798 }
799 /**
800  * \brief   Sets the value (string) of the Header Entry (Dicom Element)
801  * @param   content string value of the Dicom Element
802  * @param   tagName name of the searched Dicom Element.
803  * @return  true when found
804  */
805 bool gdcmDocument::SetEntryByName(std::string content,std::string tagName) {
806    gdcmDictEntry *dictEntry = RefPubDict->GetDictEntryByName(tagName); 
807    if( dictEntry == NULL)
808       return false;    
809
810    return SetEntryByNumber(content,dictEntry->GetGroup(),
811                                    dictEntry->GetElement());
812 }
813
814 /**
815  * \brief   Accesses an existing gdcmDocEntry (i.e. a Dicom Element)
816  *          through it's (group, element) and modifies it's content with
817  *          the given value.
818  * @param   content new value (string) to substitute with
819  * @param   group     group number of the Dicom Element to modify
820  * @param   element element number of the Dicom Element to modify
821  */
822 bool gdcmDocument::SetEntryByNumber(std::string content, 
823                                   guint16 group,
824                                   guint16 element) 
825 {
826    gdcmValEntry* ValEntry = GetValEntryByNumber(group, element);
827    if (!ValEntry)
828    {
829       dbg.Verbose(0, "gdcmDocument::SetEntryByNumber: no corresponding",
830                      " ValEntry (try promotion first).");
831       return false;
832    }
833
834    // Non even content must be padded with a space (020H).
835    if((content.length())%2)
836       content = content + '\0';
837       
838    ValEntry->SetValue(content);
839    
840    // Integers have a special treatement for their length:
841    VRKey vr = ValEntry->GetVR();
842    if( (vr == "US") || (vr == "SS") ) 
843       ValEntry->SetLength(2);
844    else if( (vr == "UL") || (vr == "SL") )
845       ValEntry->SetLength(4);
846    else
847       ValEntry->SetLength(content.length());
848
849    return true;
850
851
852 /**
853  * \brief   Accesses an existing gdcmDocEntry (i.e. a Dicom Element)
854  *          through it's (group, element) and modifies it's content with
855  *          the given value.
856  * @param   content new value (void *) to substitute with
857  * @param   group     group number of the Dicom Element to modify
858  * @param   element element number of the Dicom Element to modify
859  */
860 bool gdcmDocument::SetEntryByNumber(void *content,
861                                   int lgth, 
862                                   guint16 group,
863                                   guint16 element) 
864 {
865    (void)lgth;  //not used
866    TagKey key = gdcmDictEntry::TranslateToKey(group, element);
867    if ( ! tagHT.count(key))
868       return false;
869
870 /* Hope Binray field length is never wrong    
871    if(lgth%2) // Non even length are padded with a space (020H).
872    {  
873       lgth++;
874       //content = content + '\0'; // fing a trick to enlarge a binary field?
875    }
876 */      
877    gdcmBinEntry * a;
878    a = (gdcmBinEntry *)tagHT[key];           
879    a->SetVoidArea(content);  
880    //a->SetLength(lgth);  // ???  
881    return true;
882
883
884 /**
885  * \brief   Accesses an existing gdcmDocEntry (i.e. a Dicom Element)
886  *          in the PubDocEntrySet of this instance
887  *          through it's (group, element) and modifies it's length with
888  *          the given value.
889  * \warning Use with extreme caution.
890  * @param l new length to substitute with
891  * @param group     group number of the Entry to modify
892  * @param element element number of the Entry to modify
893  * @return  true on success, false otherwise.
894  */
895 bool gdcmDocument::SetEntryLengthByNumber(guint32 l, 
896                                         guint16 group, 
897                                         guint16 element) 
898 {
899    TagKey key = gdcmDictEntry::TranslateToKey(group, element);
900    if ( ! tagHT.count(key))
901       return false;
902    if (l%2) l++; // length must be even
903    ( ((tagHT.equal_range(key)).first)->second )->SetLength(l); 
904
905    return true ;
906 }
907
908 /**
909  * \brief   Gets (from Header) the offset  of a 'non string' element value 
910  *          (LoadElementValues has already be executed)
911  * @param Group   group number of the Entry 
912  * @param Elem  element number of the Entry
913  * @return File Offset of the Element Value 
914  */
915 size_t gdcmDocument::GetEntryOffsetByNumber(guint16 Group, guint16 Elem) 
916 {
917    gdcmDocEntry* Entry = GetDocEntryByNumber(Group, Elem);
918    if (!Entry) 
919    {
920       dbg.Verbose(1, "gdcmDocument::GetDocEntryByNumber: no entry present.");
921       return (size_t)0;
922    }
923    return Entry->GetOffset();
924 }
925
926 /**
927  * \brief   Gets (from Header) a 'non string' element value 
928  *          (LoadElementValues has already be executed)  
929  * @param Group   group number of the Entry 
930  * @param Elem  element number of the Entry
931  * @return Pointer to the 'non string' area
932  */
933 void * gdcmDocument::GetEntryVoidAreaByNumber(guint16 Group, guint16 Elem) 
934 {
935    gdcmDocEntry* Entry = GetDocEntryByNumber(Group, Elem);
936    if (!Entry) 
937    {
938       dbg.Verbose(1, "gdcmDocument::GetDocEntryByNumber: no entry");
939       return (NULL);
940    }
941    return ((gdcmBinEntry *)Entry)->GetVoidArea();
942 }
943
944 /**
945  * \brief         Loads (from disk) the element content 
946  *                when a string is not suitable
947  * @param Group   group number of the Entry 
948  * @param Elem  element number of the Entry
949  */
950 void *gdcmDocument::LoadEntryVoidArea(guint16 Group, guint16 Elem) 
951 {
952    gdcmDocEntry * Element= GetDocEntryByNumber(Group, Elem);
953    if ( !Element )
954       return NULL;
955    size_t o =(size_t)Element->GetOffset();
956    fseek(fp, o, SEEK_SET);
957    size_t l = Element->GetLength();
958    char* a = new char[l];
959    if(!a) {
960       dbg.Verbose(0, "gdcmDocument::LoadEntryVoidArea cannot allocate a");
961       return NULL;
962    }
963    SetEntryVoidAreaByNumber(a, Group, Elem);
964    /// \todo check the result 
965    size_t l2 = fread(a, 1, l ,fp);
966    if(l != l2) 
967    {
968       delete[] a;
969       return NULL;
970    }
971
972    return a;  
973 }
974
975 /**
976  * \brief   Sets a 'non string' value to a given Dicom Element
977  * @param   area area containing the 'non string' value
978  * @param   group     Group number of the searched Dicom Element 
979  * @param   element Element number of the searched Dicom Element 
980  * @return  
981  */
982 bool gdcmDocument::SetEntryVoidAreaByNumber(void * area,
983                                           guint16 group, 
984                                           guint16 element) 
985 {
986    TagKey key = gdcmDictEntry::TranslateToKey(group, element);
987    if ( ! tagHT.count(key))
988       return false;
989       // This was for multimap ?
990     (( gdcmBinEntry *)( ((tagHT.equal_range(key)).first)->second ))->SetVoidArea(area);
991       
992    return true;
993 }
994
995 /**
996  * \brief   Update the entries with the shadow dictionary. 
997  *          Only non even entries are analyzed       
998  */
999 void gdcmDocument::UpdateShaEntries(void) {
1000    //gdcmDictEntry *entry;
1001    std::string vr;
1002    
1003    /// \todo TODO : still any use to explore recursively the whole structure?
1004 /*
1005    for(ListTag::iterator it=listEntries.begin();
1006        it!=listEntries.end();
1007        ++it)
1008    {
1009       // Odd group => from public dictionary
1010       if((*it)->GetGroup()%2==0)
1011          continue;
1012
1013       // Peer group => search the corresponding dict entry
1014       if(RefShaDict)
1015          entry=RefShaDict->GetDictEntryByNumber((*it)->GetGroup(),(*it)->GetElement());
1016       else
1017          entry=NULL;
1018
1019       if((*it)->IsImplicitVR())
1020          vr="Implicit";
1021       else
1022          vr=(*it)->GetVR();
1023
1024       (*it)->SetValue(GetDocEntryUnvalue(*it));  // to go on compiling
1025       if(entry){
1026          // Set the new entry and the new value
1027          (*it)->SetDictEntry(entry);
1028          CheckDocEntryVR(*it,vr);
1029
1030          (*it)->SetValue(GetDocEntryValue(*it));    // to go on compiling
1031  
1032       }
1033       else
1034       {
1035          // Remove precedent value transformation
1036          (*it)->SetDictEntry(NewVirtualDictEntry((*it)->GetGroup(),(*it)->GetElement(),vr));
1037       }
1038    }
1039 */   
1040 }
1041
1042 /**
1043  * \brief   Searches within the Header Entries for a Dicom Element of
1044  *          a given tag.
1045  * @param   tagName name of the searched Dicom Element.
1046  * @return  Corresponding Dicom Element when it exists, and NULL
1047  *          otherwise.
1048  */
1049  gdcmDocEntry *gdcmDocument::GetDocEntryByName(std::string tagName) {
1050    gdcmDictEntry *dictEntry = RefPubDict->GetDictEntryByName(tagName); 
1051    if( dictEntry == NULL)
1052       return NULL;
1053
1054   return(GetDocEntryByNumber(dictEntry->GetGroup(),dictEntry->GetElement()));
1055 }
1056
1057 /**
1058  * \brief  retrieves a Dicom Element (the first one) using (group, element)
1059  * \warning (group, element) IS NOT an identifier inside the Dicom Header
1060  *           if you think it's NOT UNIQUE, check the count number
1061  *           and use iterators to retrieve ALL the Dicoms Elements within
1062  *           a given couple (group, element)
1063  * @param   group Group number of the searched Dicom Element 
1064  * @param   element Element number of the searched Dicom Element 
1065  * @return  
1066  */
1067 gdcmDocEntry* gdcmDocument::GetDocEntryByNumber(guint16 group, guint16 element) 
1068 {
1069    TagKey key = gdcmDictEntry::TranslateToKey(group, element);   
1070    if ( ! tagHT.count(key))
1071       return NULL;
1072    return tagHT.find(key)->second;
1073 }
1074
1075 /**
1076  * \brief  Same as \ref gdcmDocument::GetDocEntryByNumber except it only
1077  *         returns a result when the corresponding entry is of type
1078  *         ValEntry.
1079  * @return When present, the corresponding ValEntry. 
1080  */
1081 gdcmValEntry* gdcmDocument::GetValEntryByNumber(guint16 group, guint16 element)
1082 {
1083   gdcmDocEntry* CurrentEntry = GetDocEntryByNumber(group, element);
1084   if (! CurrentEntry)
1085      return (gdcmValEntry*)0;
1086   if ( gdcmValEntry* ValEntry = dynamic_cast<gdcmValEntry*>(CurrentEntry) )
1087   {
1088      return ValEntry;
1089   }
1090   dbg.Verbose(0, "gdcmDocument::GetValEntryByNumber: unfound ValEntry.");
1091   return (gdcmValEntry*)0;
1092 }
1093
1094 /**
1095  * \brief         Loads the element while preserving the current
1096  *                underlying file position indicator as opposed to
1097  *                to LoadDocEntry that modifies it.
1098  * @param entry   Header Entry whose value shall be loaded. 
1099  * @return  
1100  */
1101 void gdcmDocument::LoadDocEntrySafe(gdcmDocEntry * entry) {
1102    long PositionOnEntry = ftell(fp);
1103    LoadDocEntry(entry);
1104    fseek(fp, PositionOnEntry, SEEK_SET);
1105 }
1106
1107 /**
1108  * \brief   Swaps back the bytes of 4-byte long integer accordingly to
1109  *          processor order.
1110  * @return  The properly swaped 32 bits integer.
1111  */
1112 guint32 gdcmDocument::SwapLong(guint32 a) {
1113    switch (sw) {
1114       case    0 :
1115          break;
1116       case 4321 :
1117          a=( ((a<<24) & 0xff000000) | ((a<<8)  & 0x00ff0000) | 
1118              ((a>>8)  & 0x0000ff00) | ((a>>24) & 0x000000ff) );
1119          break;
1120    
1121       case 3412 :
1122          a=( ((a<<16) & 0xffff0000) | ((a>>16) & 0x0000ffff) );
1123          break;
1124    
1125       case 2143 :
1126          a=( ((a<<8) & 0xff00ff00) | ((a>>8) & 0x00ff00ff)  );
1127          break;
1128       default :
1129          std::cout << "swapCode= " << sw << std::endl;
1130          dbg.Error(" gdcmDocument::SwapLong : unset swap code");
1131          a=0;
1132    }
1133    return a;
1134
1135
1136 /**
1137  * \brief   Unswaps back the bytes of 4-byte long integer accordingly to
1138  *          processor order.
1139  * @return  The properly unswaped 32 bits integer.
1140  */
1141 guint32 gdcmDocument::UnswapLong(guint32 a) {
1142    return SwapLong(a);
1143 }
1144
1145 /**
1146  * \brief   Swaps the bytes so they agree with the processor order
1147  * @return  The properly swaped 16 bits integer.
1148  */
1149 guint16 gdcmDocument::SwapShort(guint16 a) {
1150    if ( (sw==4321)  || (sw==2143) )
1151       a =(((a<<8) & 0x0ff00) | ((a>>8)&0x00ff));
1152    return a;
1153 }
1154
1155 /**
1156  * \brief   Unswaps the bytes so they agree with the processor order
1157  * @return  The properly unswaped 16 bits integer.
1158  */
1159 guint16 gdcmDocument::UnswapShort(guint16 a) {
1160    return SwapShort(a);
1161 }
1162
1163 //-----------------------------------------------------------------------------
1164 // Private
1165
1166 /**
1167  * \brief   Parses a DocEntrySet (Zero-level DocEntries or SQ Item DocEntries)
1168  * @return  length of the parsed set. 
1169  */ 
1170
1171 long gdcmDocument::ParseDES(gdcmDocEntrySet *set, long offset, long l_max, bool delim_mode) {
1172
1173    gdcmDocEntry *NewDocEntry = (gdcmDocEntry *)0;
1174    gdcmValEntry *NewValEntry = (gdcmValEntry *)0;
1175    gdcmBinEntry *bn;   
1176    gdcmSeqEntry *sq;
1177    VRKey vr;
1178    unsigned long l;
1179    int depth; 
1180    
1181    depth = set->GetDepthLevel();     
1182    while (true) { 
1183    
1184       if ( !delim_mode && ftell(fp)-offset >= l_max) { 
1185          break;  
1186       }
1187       NewDocEntry = ReadNextDocEntry( );
1188       if (!NewDocEntry)
1189          break;
1190
1191       vr = NewDocEntry->GetVR();
1192       if (vr!="SQ")
1193       {
1194                
1195          if ( gdcmGlobal::GetVR()->IsVROfGdcmStringRepresentable(vr) )
1196          {
1197             /////// ValEntry
1198             NewValEntry = new gdcmValEntry(NewDocEntry->GetDictEntry());
1199             NewValEntry->Copy(NewDocEntry);
1200             NewValEntry->SetDepthLevel(depth);
1201             set->AddEntry(NewValEntry);
1202             LoadDocEntry(NewValEntry);
1203             if (NewValEntry->isItemDelimitor())
1204                break;
1205             if ( !delim_mode && ftell(fp)-offset >= l_max)
1206             {
1207                break;
1208             }
1209          }
1210          else
1211          {
1212             if ( ! gdcmGlobal::GetVR()->IsVROfGdcmBinaryRepresentable(vr) )
1213             { 
1214                 ////// Neither ValEntry NOR BinEntry: should mean UNKOWN VR
1215                 dbg.Verbose(0, "gdcmDocument::ParseDES: neither Valentry, "
1216                                "nor BinEntry. Probably unknown VR.");
1217             }
1218
1219             ////// BinEntry or UNKOWN VR:
1220             bn = new gdcmBinEntry(NewDocEntry->GetDictEntry());
1221             bn->Copy(NewDocEntry);
1222             set->AddEntry(bn);
1223             LoadDocEntry(bn);
1224          }
1225
1226          if (NewDocEntry->GetGroup()   == 0x7fe0 && 
1227              NewDocEntry->GetElement() == 0x0010 )
1228          {
1229              if (NewDocEntry->GetLength()==0xffffffff)
1230              {
1231                 // Broken US.3405.1.dcm
1232                 Parse7FE0(); // to skip the pixels 
1233                              // (multipart JPEG/RLE are trouble makers)
1234              }
1235              else
1236              {
1237                 SkipToNextDocEntry(NewDocEntry);
1238                 l = NewDocEntry->GetFullLength(); 
1239              }
1240          }
1241          else
1242          {
1243              // to be sure we are at the beginning 
1244              SkipToNextDocEntry(NewDocEntry);
1245              l = NewDocEntry->GetFullLength(); 
1246          }
1247       }
1248       else
1249       {   // VR = "SQ"
1250       
1251          l=NewDocEntry->GetReadLength();            
1252          if (l != 0) // don't mess the delim_mode for zero-length sequence
1253             if (l == 0xffffffff)
1254               delim_mode = true;
1255             else
1256               delim_mode = false;
1257          // no other way to create it ...
1258          sq = new gdcmSeqEntry(NewDocEntry->GetDictEntry(),
1259                                set->GetDepthLevel());
1260          sq->Copy(NewDocEntry);
1261          sq->SetDelimitorMode(delim_mode);
1262          sq->SetDepthLevel(depth);
1263
1264          if (l != 0)
1265          {  // Don't try to parse zero-length sequences
1266             long lgt = ParseSQ( sq, 
1267                                 NewDocEntry->GetOffset(),
1268                                 l, delim_mode);
1269             (void)lgt;  //not used...
1270          }
1271          set->AddEntry(sq);
1272          if ( !delim_mode && ftell(fp)-offset >= l_max)
1273          {
1274             break;
1275          }
1276       }
1277       delete NewDocEntry;
1278    }
1279    return l; // Probably useless 
1280 }
1281
1282 /**
1283  * \brief   Parses a Sequence ( SeqEntry after SeqEntry)
1284  * @return  parsed length for this level
1285  */ 
1286 long gdcmDocument::ParseSQ(gdcmSeqEntry *set,
1287                            long offset, long l_max, bool delim_mode)
1288 {
1289    int SQItemNumber = 0;
1290
1291    gdcmDocEntry *NewDocEntry = (gdcmDocEntry *)0;
1292    gdcmSQItem *itemSQ;
1293    bool dlm_mod;
1294    int lgr, lgth;
1295    unsigned int l;
1296    int depth = set->GetDepthLevel();
1297    (void)depth; //not used
1298
1299    while (true) {
1300
1301       NewDocEntry = ReadNextDocEntry();   
1302       if (!NewDocEntry)
1303          break;
1304       if(delim_mode) {   
1305          if (NewDocEntry->isSequenceDelimitor()) {
1306             set->SetSequenceDelimitationItem(NewDocEntry);
1307             break;
1308           }
1309       }
1310       if (!delim_mode && (ftell(fp)-offset) >= l_max) {
1311           break;
1312       }
1313
1314       itemSQ = new gdcmSQItem(set->GetDepthLevel());
1315       itemSQ->AddEntry(NewDocEntry);
1316       l= NewDocEntry->GetReadLength();
1317       
1318       if (l == 0xffffffff)
1319          dlm_mod = true;
1320       else
1321          dlm_mod=false;
1322    
1323       lgr=ParseDES(itemSQ, NewDocEntry->GetOffset(), l, dlm_mod);
1324       
1325       set->AddEntry(itemSQ,SQItemNumber); 
1326       SQItemNumber ++;
1327       if (!delim_mode && (ftell(fp)-offset) >= l_max) {
1328          break;
1329       }
1330    }
1331    lgth = ftell(fp) - offset;
1332    return lgth;
1333 }
1334
1335 /**
1336  * \brief         Loads the element content if its length doesn't exceed
1337  *                the value specified with gdcmDocument::SetMaxSizeLoadEntry()
1338  * @param         Entry Header Entry (Dicom Element) to be dealt with
1339  */
1340 void gdcmDocument::LoadDocEntry(gdcmDocEntry *Entry)
1341 {
1342    size_t item_read;
1343    guint16 group  = Entry->GetGroup();
1344    std::string  vr= Entry->GetVR();
1345    guint32 length = Entry->GetLength();
1346
1347    fseek(fp, (long)Entry->GetOffset(), SEEK_SET);
1348
1349    // A SeQuence "contains" a set of Elements.  
1350    //          (fffe e000) tells us an Element is beginning
1351    //          (fffe e00d) tells us an Element just ended
1352    //          (fffe e0dd) tells us the current SeQuence just ended
1353    if( group == 0xfffe ) {
1354       // NO more value field for SQ !
1355       return;
1356    }
1357
1358    // When the length is zero things are easy:
1359    if ( length == 0 ) {
1360       ((gdcmValEntry *)Entry)->SetValue("");
1361       return;
1362    }
1363
1364    // The elements whose length is bigger than the specified upper bound
1365    // are not loaded. Instead we leave a short notice of the offset of
1366    // the element content and it's length.
1367         
1368    if (length > MaxSizeLoadEntry) {
1369       if (gdcmBinEntry* BinEntryPtr = dynamic_cast< gdcmBinEntry* >(Entry) )
1370       {
1371          std::ostringstream s;
1372          s << "gdcm::NotLoaded (BinEntry)";
1373          s << " Address:" << (long)Entry->GetOffset();
1374          s << " Length:"  << Entry->GetLength();
1375          s << " x(" << std::hex << Entry->GetLength() << ")";
1376          BinEntryPtr->SetValue(s.str());
1377       }
1378       // to be sure we are at the end of the value ...
1379       fseek(fp,(long)Entry->GetOffset()+(long)Entry->GetLength(),SEEK_SET);      
1380       return;           
1381        // Be carefull : a BinEntry IS_A ValEntry ...    
1382       if (gdcmValEntry* ValEntryPtr = dynamic_cast< gdcmValEntry* >(Entry) )
1383       {
1384          std::ostringstream s;
1385          s << "gdcm::NotLoaded. (ValEntry)";
1386          s << " Address:" << (long)Entry->GetOffset();
1387          s << " Length:"  << Entry->GetLength();
1388          s << " x(" << std::hex << Entry->GetLength() << ")";
1389          ValEntryPtr->SetValue(s.str());
1390       }         
1391       // to be sure we are at the end of the value ...
1392       fseek(fp,(long)Entry->GetOffset()+(long)Entry->GetLength(),SEEK_SET);      
1393       return;
1394    }
1395
1396    // When we find a BinEntry not very much can be done :
1397    if (gdcmBinEntry* BinEntryPtr = dynamic_cast< gdcmBinEntry* >(Entry) ) {
1398       LoadEntryVoidArea (BinEntryPtr->GetGroup(),BinEntryPtr->GetElement());
1399                 return; 
1400         }
1401  
1402     
1403    // Any compacter code suggested (?)
1404    if ( IsDocEntryAnInteger(Entry) ) {   
1405       guint32 NewInt;
1406       std::ostringstream s;
1407       int nbInt;
1408    // When short integer(s) are expected, read and convert the following 
1409    // n *two characters properly i.e. as short integers as opposed to strings.
1410    // Elements with Value Multiplicity > 1
1411    // contain a set of integers (not a single one)       
1412       if (vr == "US" || vr == "SS") {
1413          nbInt = length / 2;
1414          NewInt = ReadInt16();
1415          s << NewInt;
1416          if (nbInt > 1){
1417             for (int i=1; i < nbInt; i++) {
1418                s << '\\';
1419                NewInt = ReadInt16();
1420                s << NewInt;
1421             }
1422          }
1423       }
1424    // When integer(s) are expected, read and convert the following 
1425    // n * four characters properly i.e. as integers as opposed to strings.
1426    // Elements with Value Multiplicity > 1
1427    // contain a set of integers (not a single one)           
1428       else if (vr == "UL" || vr == "SL") {
1429          nbInt = length / 4;
1430          NewInt = ReadInt32();
1431          s << NewInt;
1432          if (nbInt > 1) {
1433             for (int i=1; i < nbInt; i++) {
1434                s << '\\';
1435                NewInt = ReadInt32();
1436                s << NewInt;
1437             }
1438          }
1439       }
1440 #ifdef GDCM_NO_ANSI_STRING_STREAM
1441       s << std::ends; // to avoid oddities on Solaris
1442 #endif //GDCM_NO_ANSI_STRING_STREAM
1443
1444       ((gdcmValEntry *)Entry)->SetValue(s.str());
1445       return;
1446    }
1447    
1448    // We need an additional byte for storing \0 that is not on disk
1449    std::string NewValue(length,0);
1450    item_read = fread(&(NewValue[0]), (size_t)length, (size_t)1, fp);
1451         if (gdcmValEntry* ValEntry = dynamic_cast< gdcmValEntry* >(Entry) ) {  
1452       if ( item_read != 1 ) {
1453          dbg.Verbose(1, "gdcmDocument::LoadElementValue","unread element value");
1454          ValEntry->SetValue("gdcm::UnRead");
1455          return;
1456       }
1457
1458       if( (vr == "UI") ) // Because of correspondance with the VR dic
1459          ValEntry->SetValue(NewValue.c_str());
1460       else
1461          ValEntry->SetValue(NewValue);
1462    } else {
1463         // fusible
1464         std::cout << "Should have a ValEntry, here !" << std::endl;
1465         }
1466
1467 }
1468
1469
1470 /**
1471  * \brief  Find the value Length of the passed Header Entry
1472  * @param  Entry Header Entry whose length of the value shall be loaded. 
1473  */
1474  void gdcmDocument::FindDocEntryLength (gdcmDocEntry *Entry) {
1475    guint16 element = Entry->GetElement();
1476    //guint16 group   = Entry->GetGroup(); //FIXME
1477    std::string  vr = Entry->GetVR();
1478    guint16 length16;
1479        
1480    
1481    if ( (Filetype == gdcmExplicitVR) && (! Entry->IsImplicitVR()) ) 
1482    {
1483       if ( (vr=="OB") || (vr=="OW") || (vr=="SQ") || (vr=="UN") ) 
1484       {
1485          // The following reserved two bytes (see PS 3.5-2001, section
1486          // 7.1.2 Data element structure with explicit vr p27) must be
1487          // skipped before proceeding on reading the length on 4 bytes.
1488          fseek(fp, 2L, SEEK_CUR);
1489          guint32 length32 = ReadInt32();
1490
1491          if ( (vr == "OB") && (length32 == 0xffffffff) ) 
1492          {
1493             Entry->SetLength(FindDocEntryLengthOB());
1494             return;
1495          }
1496          FixDocEntryFoundLength(Entry, length32); 
1497          return;
1498       }
1499
1500       // Length is encoded on 2 bytes.
1501       length16 = ReadInt16();
1502       
1503       // We can tell the current file is encoded in big endian (like
1504       // Data/US-RGB-8-epicard) when we find the "Transfer Syntax" tag
1505       // and it's value is the one of the encoding of a big endian file.
1506       // In order to deal with such big endian encoded files, we have
1507       // (at least) two strategies:
1508       // * when we load the "Transfer Syntax" tag with value of big endian
1509       //   encoding, we raise the proper flags. Then we wait for the end
1510       //   of the META group (0x0002) among which is "Transfer Syntax",
1511       //   before switching the swap code to big endian. We have to postpone
1512       //   the switching of the swap code since the META group is fully encoded
1513       //   in little endian, and big endian coding only starts at the next
1514       //   group. The corresponding code can be hard to analyse and adds
1515       //   many additional unnecessary tests for regular tags.
1516       // * the second strategy consists in waiting for trouble, that shall
1517       //   appear when we find the first group with big endian encoding. This
1518       //   is easy to detect since the length of a "Group Length" tag (the
1519       //   ones with zero as element number) has to be of 4 (0x0004). When we
1520       //   encounter 1024 (0x0400) chances are the encoding changed and we
1521       //   found a group with big endian encoding.
1522       // We shall use this second strategy. In order to make sure that we
1523       // can interpret the presence of an apparently big endian encoded
1524       // length of a "Group Length" without committing a big mistake, we
1525       // add an additional check: we look in the already parsed elements
1526       // for the presence of a "Transfer Syntax" whose value has to be "big
1527       // endian encoding". When this is the case, chances are we have got our
1528       // hands on a big endian encoded file: we switch the swap code to
1529       // big endian and proceed...
1530       if ( (element  == 0x0000) && (length16 == 0x0400) ) 
1531       {
1532          if ( ! IsExplicitVRBigEndianTransferSyntax() ) 
1533          {
1534             dbg.Verbose(0, "gdcmDocument::FindLength", "not explicit VR");
1535             errno = 1;
1536             return;
1537          }
1538          length16 = 4;
1539          SwitchSwapToBigEndian();
1540          // Restore the unproperly loaded values i.e. the group, the element
1541          // and the dictionary entry depending on them.
1542          guint16 CorrectGroup   = SwapShort(Entry->GetGroup());
1543          guint16 CorrectElem    = SwapShort(Entry->GetElement());
1544          gdcmDictEntry * NewTag = GetDictEntryByNumber(CorrectGroup,
1545                                                        CorrectElem);
1546          if (!NewTag) 
1547          {
1548             // This correct tag is not in the dictionary. Create a new one.
1549             NewTag = NewVirtualDictEntry(CorrectGroup, CorrectElem);
1550          }
1551          // FIXME this can create a memory leaks on the old entry that be
1552          // left unreferenced.
1553          Entry->SetDictEntry(NewTag);
1554       }
1555        
1556       // Heuristic: well, some files are really ill-formed.
1557       if ( length16 == 0xffff) 
1558       {
1559          length16 = 0;
1560          // Length16= 0xffff means that we deal with
1561          // 'Unknown Length' Sequence  
1562       }
1563       FixDocEntryFoundLength(Entry, (guint32)length16);
1564       return;
1565    }
1566    else
1567    {
1568       // Either implicit VR or a non DICOM conformal (see note below) explicit
1569       // VR that ommited the VR of (at least) this element. Farts happen.
1570       // [Note: according to the part 5, PS 3.5-2001, section 7.1 p25
1571       // on Data elements "Implicit and Explicit VR Data Elements shall
1572       // not coexist in a Data Set and Data Sets nested within it".]
1573       // Length is on 4 bytes.
1574       
1575       FixDocEntryFoundLength(Entry, ReadInt32());
1576       return;
1577    }
1578 }
1579
1580 /**
1581  * \brief     Find the Value Representation of the current Dicom Element.
1582  * @param     Entry
1583  */
1584 void gdcmDocument::FindDocEntryVR( gdcmDocEntry *Entry) 
1585 {
1586    if (Filetype != gdcmExplicitVR)
1587       return;
1588
1589    char VR[3];
1590
1591    long PositionOnEntry = ftell(fp);
1592    // Warning: we believe this is explicit VR (Value Representation) because
1593    // we used a heuristic that found "UL" in the first tag. Alas this
1594    // doesn't guarantee that all the tags will be in explicit VR. In some
1595    // cases (see e-film filtered files) one finds implicit VR tags mixed
1596    // within an explicit VR file. Hence we make sure the present tag
1597    // is in explicit VR and try to fix things if it happens not to be
1598    // the case.
1599    
1600    (void)fread (&VR, (size_t)2,(size_t)1, fp);
1601    VR[2]=0;
1602    if(!CheckDocEntryVR(Entry,VR))
1603    {
1604       fseek(fp, PositionOnEntry, SEEK_SET);
1605       // When this element is known in the dictionary we shall use, e.g. for
1606       // the semantics (see the usage of IsAnInteger), the VR proposed by the
1607       // dictionary entry. Still we have to flag the element as implicit since
1608       // we know now our assumption on expliciteness is not furfilled.
1609       // avoid  .
1610       if ( Entry->IsVRUnknown() )
1611          Entry->SetVR("Implicit");
1612       Entry->SetImplicitVR();
1613    }
1614 }
1615
1616 /**
1617  * \brief     Check the correspondance between the VR of the header entry
1618  *            and the taken VR. If they are different, the header entry is 
1619  *            updated with the new VR.
1620  * @param     Entry Header Entry to check
1621  * @param     vr    Dicom Value Representation
1622  * @return    false if the VR is incorrect of if the VR isn't referenced
1623  *            otherwise, it returns true
1624 */
1625 bool gdcmDocument::CheckDocEntryVR(gdcmDocEntry *Entry, VRKey vr)
1626 {
1627    char msg[100]; // for sprintf
1628    bool RealExplicit = true;
1629
1630    // Assume we are reading a falsely explicit VR file i.e. we reached
1631    // a tag where we expect reading a VR but are in fact we read the
1632    // first to bytes of the length. Then we will interogate (through find)
1633    // the dicom_vr dictionary with oddities like "\004\0" which crashes
1634    // both GCC and VC++ implementations of the STL map. Hence when the
1635    // expected VR read happens to be non-ascii characters we consider
1636    // we hit falsely explicit VR tag.
1637
1638    if ( (!isalpha(vr[0])) && (!isalpha(vr[1])) )
1639       RealExplicit = false;
1640
1641    // CLEANME searching the dicom_vr at each occurence is expensive.
1642    // PostPone this test in an optional integrity check at the end
1643    // of parsing or only in debug mode.
1644    if ( RealExplicit && !gdcmGlobal::GetVR()->Count(vr) )
1645       RealExplicit= false;
1646
1647    if ( !RealExplicit ) 
1648    {
1649       // We thought this was explicit VR, but we end up with an
1650       // implicit VR tag. Let's backtrack.   
1651       sprintf(msg,"Falsely explicit vr file (%04x,%04x)\n", 
1652                    Entry->GetGroup(),Entry->GetElement());
1653       dbg.Verbose(1, "gdcmDocument::FindVR: ",msg);
1654       if (Entry->GetGroup()%2 && Entry->GetElement() == 0x0000) { // Group length is UL !
1655          gdcmDictEntry* NewEntry = NewVirtualDictEntry(
1656                                    Entry->GetGroup(),Entry->GetElement(),
1657                                    "UL","FIXME","Group Length");
1658          Entry->SetDictEntry(NewEntry);     
1659       }
1660       return false;
1661    }
1662
1663    if ( Entry->IsVRUnknown() ) 
1664    {
1665       // When not a dictionary entry, we can safely overwrite the VR.
1666       if (Entry->GetElement() == 0x0000) { // Group length is UL !
1667          Entry->SetVR("UL");
1668       } else {
1669          Entry->SetVR(vr);
1670       }
1671    }
1672    else if ( Entry->GetVR() != vr ) 
1673    {
1674       // The VR present in the file and the dictionary disagree. We assume
1675       // the file writer knew best and use the VR of the file. Since it would
1676       // be unwise to overwrite the VR of a dictionary (since it would
1677       // compromise it's next user), we need to clone the actual DictEntry
1678       // and change the VR for the read one.
1679       gdcmDictEntry* NewEntry = NewVirtualDictEntry(
1680                                  Entry->GetGroup(),Entry->GetElement(),
1681                                  vr,"FIXME",Entry->GetName());
1682       Entry->SetDictEntry(NewEntry);
1683    }
1684    return true; 
1685 }
1686
1687 /**
1688  * \brief   Get the transformed value of the header entry. The VR value 
1689  *          is used to define the transformation to operate on the value
1690  * \warning NOT end user intended method !
1691  * @param   Entry 
1692  * @return  Transformed entry value
1693  */
1694 std::string gdcmDocument::GetDocEntryValue(gdcmDocEntry *Entry)
1695 {
1696    if ( (IsDocEntryAnInteger(Entry)) && (Entry->IsImplicitVR()) )
1697    {
1698       std::string val=((gdcmValEntry *)Entry)->GetValue();
1699       std::string vr=Entry->GetVR();
1700       guint32 length = Entry->GetLength();
1701       std::ostringstream s;
1702       int nbInt;
1703
1704    // When short integer(s) are expected, read and convert the following 
1705    // n * 2 bytes properly i.e. as a multivaluated strings
1706    // (each single value is separated fromthe next one by '\'
1707    // as usual for standard multivaluated filels
1708    // Elements with Value Multiplicity > 1
1709    // contain a set of short integers (not a single one) 
1710    
1711       if (vr == "US" || vr == "SS")
1712       {
1713          guint16 NewInt16;
1714
1715          nbInt = length / 2;
1716          for (int i=0; i < nbInt; i++) 
1717          {
1718             if(i!=0)
1719                s << '\\';
1720             NewInt16 = (val[2*i+0]&0xFF)+((val[2*i+1]&0xFF)<<8);
1721             NewInt16 = SwapShort(NewInt16);
1722             s << NewInt16;
1723          }
1724       }
1725
1726    // When integer(s) are expected, read and convert the following 
1727    // n * 4 bytes properly i.e. as a multivaluated strings
1728    // (each single value is separated fromthe next one by '\'
1729    // as usual for standard multivaluated filels
1730    // Elements with Value Multiplicity > 1
1731    // contain a set of integers (not a single one) 
1732       else if (vr == "UL" || vr == "SL")
1733       {
1734          guint32 NewInt32;
1735
1736          nbInt = length / 4;
1737          for (int i=0; i < nbInt; i++) 
1738          {
1739             if(i!=0)
1740                s << '\\';
1741             NewInt32= (val[4*i+0]&0xFF)+((val[4*i+1]&0xFF)<<8)+
1742                      ((val[4*i+2]&0xFF)<<16)+((val[4*i+3]&0xFF)<<24);
1743             NewInt32=SwapLong(NewInt32);
1744             s << NewInt32;
1745          }
1746       }
1747 #ifdef GDCM_NO_ANSI_STRING_STREAM
1748       s << std::ends; // to avoid oddities on Solaris
1749 #endif //GDCM_NO_ANSI_STRING_STREAM
1750       return s.str();
1751    }
1752
1753    return ((gdcmValEntry *)Entry)->GetValue();
1754 }
1755
1756 /**
1757  * \brief   Get the reverse transformed value of the header entry. The VR 
1758  *          value is used to define the reverse transformation to operate on
1759  *          the value
1760  * \warning NOT end user intended method !
1761  * @param   Entry 
1762  * @return  Reverse transformed entry value
1763  */
1764 std::string gdcmDocument::GetDocEntryUnvalue(gdcmDocEntry *Entry)
1765 {
1766    if ( (IsDocEntryAnInteger(Entry)) && (Entry->IsImplicitVR()) )
1767    {
1768       std::string vr=Entry->GetVR();
1769       std::ostringstream s;
1770       std::vector<std::string> tokens;
1771
1772       if (vr == "US" || vr == "SS") 
1773       {
1774          guint16 NewInt16;
1775
1776          tokens.erase(tokens.begin(),tokens.end()); // clean any previous value
1777          Tokenize (((gdcmValEntry *)Entry)->GetValue(), tokens, "\\");
1778          for (unsigned int i=0; i<tokens.size();i++) 
1779          {
1780             NewInt16 = atoi(tokens[i].c_str());
1781             s<<(NewInt16&0xFF)<<((NewInt16>>8)&0xFF);
1782          }
1783          tokens.clear();
1784       }
1785       if (vr == "UL" || vr == "SL") 
1786       {
1787          guint32 NewInt32;
1788
1789          tokens.erase(tokens.begin(),tokens.end()); // clean any previous value
1790          Tokenize (((gdcmValEntry *)Entry)->GetValue(), tokens, "\\");
1791          for (unsigned int i=0; i<tokens.size();i++) 
1792          {
1793             NewInt32 = atoi(tokens[i].c_str());
1794             s<<(char)(NewInt32&0xFF)<<(char)((NewInt32>>8)&0xFF)
1795                <<(char)((NewInt32>>16)&0xFF)<<(char)((NewInt32>>24)&0xFF);
1796          }
1797          tokens.clear();
1798       }
1799
1800 #ifdef GDCM_NO_ANSI_STRING_STREAM
1801       s << std::ends; // to avoid oddities on Solaris
1802 #endif //GDCM_NO_ANSI_STRING_STREAM
1803       return s.str();
1804    }
1805
1806    return ((gdcmValEntry *)Entry)->GetValue();
1807 }
1808
1809 /**
1810  * \brief   Skip a given Header Entry 
1811  * \warning NOT end user intended method !
1812  * @param   entry 
1813  */
1814 void gdcmDocument::SkipDocEntry(gdcmDocEntry *entry) 
1815 {
1816    SkipBytes(entry->GetLength());
1817 }
1818
1819 /**
1820  * \brief   Skips to the begining of the next Header Entry 
1821  * \warning NOT end user intended method !
1822  * @param   entry 
1823  */
1824 void gdcmDocument::SkipToNextDocEntry(gdcmDocEntry *entry) 
1825 {
1826    (void)fseek(fp, (long)(entry->GetOffset()),     SEEK_SET);
1827    (void)fseek(fp, (long)(entry->GetReadLength()), SEEK_CUR);
1828 }
1829
1830 /**
1831  * \brief   When the length of an element value is obviously wrong (because
1832  *          the parser went Jabberwocky) one can hope improving things by
1833  *          applying some heuristics.
1834  */
1835 void gdcmDocument::FixDocEntryFoundLength(gdcmDocEntry *Entry,
1836                                           guint32 FoundLength)
1837 {
1838    Entry->SetReadLength(FoundLength); // will be updated only if a bug is found        
1839    if ( FoundLength == 0xffffffff) {
1840       FoundLength = 0;
1841    }
1842    
1843    guint16 gr =Entry->GetGroup();
1844    guint16 el =Entry->GetElement(); 
1845      
1846    if (FoundLength%2) {
1847       std::ostringstream s;
1848       s << "Warning : Tag with uneven length "
1849         << FoundLength 
1850         <<  " in x(" << std::hex << gr << "," << el <<")" << std::dec;
1851       dbg.Verbose(0, s.str().c_str());
1852    }
1853       
1854    //////// Fix for some naughty General Electric images.
1855    // Allthough not recent many such GE corrupted images are still present
1856    // on Creatis hard disks. Hence this fix shall remain when such images
1857    // are no longer in user (we are talking a few years, here)...
1858    // Note: XMedCom probably uses such a trick since it is able to read
1859    //       those pesky GE images ...
1860    if (FoundLength == 13) {  // Only happens for this length !
1861       if (   (Entry->GetGroup() != 0x0008)
1862           || (   (Entry->GetElement() != 0x0070)
1863               && (Entry->GetElement() != 0x0080) ) )
1864       {
1865          FoundLength = 10;
1866          Entry->SetReadLength(10); /// \todo a bug is to be fixed !?
1867       }
1868    }
1869
1870    //////// Fix for some brain-dead 'Leonardo' Siemens images.
1871    // Occurence of such images is quite low (unless one leaves close to a
1872    // 'Leonardo' source. Hence, one might consider commenting out the
1873    // following fix on efficiency reasons.
1874    else
1875    if (   (Entry->GetGroup() == 0x0009)
1876        && (   (Entry->GetElement() == 0x1113)
1877            || (Entry->GetElement() == 0x1114) ) )
1878    {
1879       FoundLength = 4;
1880       Entry->SetReadLength(4); /// \todo a bug is to be fixed !?
1881    } 
1882  
1883    //////// Deal with sequences, but only on users request:
1884    else
1885    if ( ( Entry->GetVR() == "SQ") && enableSequences)
1886    {
1887          FoundLength = 0;      // ReadLength is unchanged 
1888    } 
1889     
1890    //////// We encountered a 'delimiter' element i.e. a tag of the form 
1891    // "fffe|xxxx" which is just a marker. Delimiters length should not be
1892    // taken into account.
1893    else
1894    if(Entry->GetGroup() == 0xfffe)
1895    {    
1896      // According to the norm, fffe|0000 shouldn't exist. BUT the Philips
1897      // image gdcmData/gdcm-MR-PHILIPS-16-Multi-Seq.dcm happens to
1898      // causes extra troubles...
1899      if( Entry->GetElement() != 0x0000 )
1900      {
1901         FoundLength = 0;
1902      }
1903    } 
1904            
1905    Entry->SetUsableLength(FoundLength);
1906 }
1907
1908 /**
1909  * \brief   Apply some heuristics to predict whether the considered 
1910  *          element value contains/represents an integer or not.
1911  * @param   Entry The element value on which to apply the predicate.
1912  * @return  The result of the heuristical predicate.
1913  */
1914 bool gdcmDocument::IsDocEntryAnInteger(gdcmDocEntry *Entry) {
1915    guint16 element = Entry->GetElement();
1916    guint16 group   = Entry->GetGroup();
1917    std::string  vr = Entry->GetVR();
1918    guint32 length  = Entry->GetLength();
1919
1920    // When we have some semantics on the element we just read, and if we
1921    // a priori know we are dealing with an integer, then we shall be
1922    // able to swap it's element value properly.
1923    if ( element == 0 )  // This is the group length of the group
1924    {  
1925       if (length == 4)
1926          return true;
1927       else 
1928       {
1929          // Allthough this should never happen, still some images have a
1930          // corrupted group length [e.g. have a glance at offset x(8336) of
1931          // gdcmData/gdcm-MR-PHILIPS-16-Multi-Seq.dcm].
1932          // Since for dicom compliant and well behaved headers, the present
1933          // test is useless (and might even look a bit paranoid), when we
1934          // encounter such an ill-formed image, we simply display a warning
1935          // message and proceed on parsing (while crossing fingers).
1936          std::ostringstream s;
1937          int filePosition = ftell(fp);
1938          s << "Erroneous Group Length element length  on : (" \
1939            << std::hex << group << " , " << element 
1940            << ") -before- position x(" << filePosition << ")"
1941            << "lgt : " << length;
1942          dbg.Verbose(0, "gdcmDocument::IsDocEntryAnInteger", s.str().c_str() );
1943       }
1944    }
1945
1946    if ( (vr == "UL") || (vr == "US") || (vr == "SL") || (vr == "SS") )
1947       return true;
1948    
1949    return false;
1950 }
1951
1952 /**
1953  * \brief  Find the Length till the next sequence delimiter
1954  * \warning NOT end user intended method !
1955  * @return 
1956  */
1957
1958  guint32 gdcmDocument::FindDocEntryLengthOB(void)  {
1959    // See PS 3.5-2001, section A.4 p. 49 on encapsulation of encoded pixel data.
1960    guint16 g;
1961    guint16 n; 
1962    long PositionOnEntry = ftell(fp);
1963    bool FoundSequenceDelimiter = false;
1964    guint32 TotalLength = 0;
1965    guint32 ItemLength;
1966
1967    while ( ! FoundSequenceDelimiter) 
1968    {
1969       g = ReadInt16();
1970       n = ReadInt16();   
1971       if (errno == 1)
1972          return 0;
1973       TotalLength += 4;  // We even have to decount the group and element 
1974      
1975       if ( g != 0xfffe && g!=0xb00c ) //for bogus header  
1976       {
1977          char msg[100]; // for sprintf. Sorry
1978          sprintf(msg,"wrong group (%04x) for an item sequence (%04x,%04x)\n",g, g,n);
1979          dbg.Verbose(1, "gdcmDocument::FindLengthOB: ",msg); 
1980          errno = 1;
1981          return 0;
1982       }
1983       if ( n == 0xe0dd || ( g==0xb00c && n==0x0eb6 ) ) // for bogus header 
1984          FoundSequenceDelimiter = true;
1985       else if ( n != 0xe000 )
1986       {
1987          char msg[100];  // for sprintf. Sorry
1988          sprintf(msg,"wrong element (%04x) for an item sequence (%04x,%04x)\n",
1989                       n, g,n);
1990          dbg.Verbose(1, "gdcmDocument::FindLengthOB: ",msg);
1991          errno = 1;
1992          return 0;
1993       }
1994       ItemLength = ReadInt32();
1995       TotalLength += ItemLength + 4;  // We add 4 bytes since we just read
1996                                       // the ItemLength with ReadInt32                                     
1997       SkipBytes(ItemLength);
1998    }
1999    fseek(fp, PositionOnEntry, SEEK_SET);
2000    return TotalLength;
2001 }
2002
2003 /**
2004  * \brief Reads a supposed to be 16 Bits integer
2005  *       (swaps it depending on processor endianity) 
2006  * @return read value
2007  */
2008 guint16 gdcmDocument::ReadInt16() {
2009    guint16 g;
2010    size_t item_read;
2011    item_read = fread (&g, (size_t)2,(size_t)1, fp);
2012    if ( item_read != 1 ) {
2013       if(ferror(fp)) 
2014          dbg.Verbose(0, "gdcmDocument::ReadInt16", " File Error");
2015       errno = 1;
2016       return 0;
2017    }
2018    errno = 0;
2019    g = SwapShort(g);   
2020    return g;
2021 }
2022
2023 /**
2024  * \brief  Reads a supposed to be 32 Bits integer
2025  *         (swaps it depending on processor endianity)  
2026  * @return read value
2027  */
2028 guint32 gdcmDocument::ReadInt32() {
2029    guint32 g;
2030    size_t item_read;
2031    item_read = fread (&g, (size_t)4,(size_t)1, fp);
2032    if ( item_read != 1 ) { 
2033      if(ferror(fp)) 
2034          dbg.Verbose(0, "gdcmDocument::ReadInt32", " File Error");   
2035       errno = 1;
2036       return 0;
2037    }
2038    errno = 0;   
2039    g = SwapLong(g);
2040    return g;
2041 }
2042
2043 /**
2044  * \brief skips bytes inside the source file 
2045  * \warning NOT end user intended method !
2046  * @return 
2047  */
2048 void gdcmDocument::SkipBytes(guint32 NBytes) {
2049    //FIXME don't dump the returned value
2050    (void)fseek(fp, (long)NBytes, SEEK_CUR);
2051 }
2052
2053 /**
2054  * \brief Loads all the needed Dictionaries
2055  * \warning NOT end user intended method !   
2056  */
2057 void gdcmDocument::Initialise(void) 
2058 {
2059    RefPubDict = gdcmGlobal::GetDicts()->GetDefaultPubDict();
2060    RefShaDict = NULL;
2061 }
2062
2063 /**
2064  * \brief   Discover what the swap code is (among little endian, big endian,
2065  *          bad little endian, bad big endian).
2066  *          sw is set
2067  * @return false when we are absolutely sure 
2068  *               it's neither ACR-NEMA nor DICOM
2069  *         true  when we hope ours assuptions are OK
2070  */
2071 bool gdcmDocument::CheckSwap() {
2072
2073    // The only guaranted way of finding the swap code is to find a
2074    // group tag since we know it's length has to be of four bytes i.e.
2075    // 0x00000004. Finding the swap code in then straigthforward. Trouble
2076    // occurs when we can't find such group...
2077    
2078    guint32  x=4;  // x : for ntohs
2079    bool net2host; // true when HostByteOrder is the same as NetworkByteOrder
2080    guint32  s32;
2081    guint16  s16;
2082        
2083    int lgrLue;
2084    char *entCur;
2085    char deb[HEADER_LENGTH_TO_READ];
2086     
2087    // First, compare HostByteOrder and NetworkByteOrder in order to
2088    // determine if we shall need to swap bytes (i.e. the Endian type).
2089    if (x==ntohs(x))
2090       net2host = true;
2091    else
2092       net2host = false; 
2093          
2094    // The easiest case is the one of a DICOM header, since it possesses a
2095    // file preamble where it suffice to look for the string "DICM".
2096    lgrLue = fread(deb, 1, HEADER_LENGTH_TO_READ, fp);
2097    
2098    entCur = deb + 128;
2099    if(memcmp(entCur, "DICM", (size_t)4) == 0) {
2100       dbg.Verbose(1, "gdcmDocument::CheckSwap:", "looks like DICOM Version3");
2101       
2102       // Next, determine the value representation (VR). Let's skip to the
2103       // first element (0002, 0000) and check there if we find "UL" 
2104       // - or "OB" if the 1st one is (0002,0001) -,
2105       // in which case we (almost) know it is explicit VR.
2106       // WARNING: if it happens to be implicit VR then what we will read
2107       // is the length of the group. If this ascii representation of this
2108       // length happens to be "UL" then we shall believe it is explicit VR.
2109       // FIXME: in order to fix the above warning, we could read the next
2110       // element value (or a couple of elements values) in order to make
2111       // sure we are not commiting a big mistake.
2112       // We need to skip :
2113       // * the 128 bytes of File Preamble (often padded with zeroes),
2114       // * the 4 bytes of "DICM" string,
2115       // * the 4 bytes of the first tag (0002, 0000),or (0002, 0001)
2116       // i.e. a total of  136 bytes.
2117       entCur = deb + 136;
2118      
2119       // FIXME : FIXME:
2120       // Sometimes (see : gdcmData/icone.dcm) group 0x0002 *is* Explicit VR,
2121       // but elem 0002,0010 (Transfert Syntax) tells us the file is
2122       // *Implicit* VR.  -and it is !- 
2123       
2124       if( (memcmp(entCur, "UL", (size_t)2) == 0) ||
2125           (memcmp(entCur, "OB", (size_t)2) == 0) ||
2126           (memcmp(entCur, "UI", (size_t)2) == 0) ||
2127           (memcmp(entCur, "CS", (size_t)2) == 0) )  // CS, to remove later
2128                                                     // when Write DCM *adds*
2129       // FIXME
2130       // Use gdcmDocument::dicom_vr to test all the possibilities
2131       // instead of just checking for UL, OB and UI !? group 0000 
2132       {
2133          Filetype = gdcmExplicitVR;
2134          dbg.Verbose(1, "gdcmDocument::CheckSwap:",
2135                      "explicit Value Representation");
2136       } 
2137       else 
2138       {
2139          Filetype = gdcmImplicitVR;
2140          dbg.Verbose(1, "gdcmDocument::CheckSwap:",
2141                      "not an explicit Value Representation");
2142       }
2143       
2144       if (net2host) 
2145       {
2146          sw = 4321;
2147          dbg.Verbose(1, "gdcmDocument::CheckSwap:",
2148                         "HostByteOrder != NetworkByteOrder");
2149       } 
2150       else 
2151       {
2152          sw = 0;
2153          dbg.Verbose(1, "gdcmDocument::CheckSwap:",
2154                         "HostByteOrder = NetworkByteOrder");
2155       }
2156       
2157       // Position the file position indicator at first tag (i.e.
2158       // after the file preamble and the "DICM" string).
2159       rewind(fp);
2160       fseek (fp, 132L, SEEK_SET);
2161       return true;
2162    } // End of DicomV3
2163
2164    // Alas, this is not a DicomV3 file and whatever happens there is no file
2165    // preamble. We can reset the file position indicator to where the data
2166    // is (i.e. the beginning of the file).
2167    dbg.Verbose(1, "gdcmDocument::CheckSwap:", "not a DICOM Version3 file");
2168    rewind(fp);
2169
2170    // Our next best chance would be to be considering a 'clean' ACR/NEMA file.
2171    // By clean we mean that the length of the first tag is written down.
2172    // If this is the case and since the length of the first group HAS to be
2173    // four (bytes), then determining the proper swap code is straightforward.
2174
2175    entCur = deb + 4;
2176    // We assume the array of char we are considering contains the binary
2177    // representation of a 32 bits integer. Hence the following dirty
2178    // trick :
2179    s32 = *((guint32 *)(entCur));
2180       
2181    switch (s32) {
2182       case 0x00040000 :
2183          sw = 3412;
2184          Filetype = gdcmACR;
2185          return true;
2186       case 0x04000000 :
2187          sw = 4321;
2188          Filetype = gdcmACR;
2189          return true;
2190       case 0x00000400 :
2191          sw = 2143;
2192          Filetype = gdcmACR;
2193          return true;
2194       case 0x00000004 :
2195          sw = 0;
2196          Filetype = gdcmACR;
2197          return true;
2198       default :
2199
2200       // We are out of luck. It is not a DicomV3 nor a 'clean' ACR/NEMA file.
2201       // It is time for despaired wild guesses. 
2202       // So, let's check if this file wouldn't happen to be 'dirty' ACR/NEMA,
2203       //  i.e. the 'group length' element is not present :     
2204       
2205       //  check the supposed to be 'group number'
2206       //  0x0002 or 0x0004 or 0x0008
2207       //  to determine ' sw' value .
2208       //  Only 0 or 4321 will be possible 
2209       //  (no oportunity to check for the formerly well known
2210       //  ACR-NEMA 'Bad Big Endian' or 'Bad Little Endian' 
2211       //  if unsuccessfull (i.e. neither 0x0002 nor 0x0200 etc -4, 8-) 
2212       //  the file IS NOT ACR-NEMA nor DICOM V3
2213       //  Find a trick to tell it the caller...
2214       
2215       s16 = *((guint16 *)(deb));
2216       
2217       switch (s16) {
2218       case 0x0002 :
2219       case 0x0004 :
2220       case 0x0008 :      
2221          sw = 0;
2222          Filetype = gdcmACR;
2223          return true;
2224       case 0x0200 :
2225       case 0x0400 :
2226       case 0x0800 : 
2227          sw = 4321;
2228          Filetype = gdcmACR;
2229          return true;
2230       default :
2231          dbg.Verbose(0, "gdcmDocument::CheckSwap:",
2232                      "ACR/NEMA unfound swap info (Really hopeless !)"); 
2233          Filetype = gdcmUnknown;     
2234          return false;
2235       }
2236       
2237       // Then the only info we have is the net2host one.
2238       //if (! net2host )
2239          //   sw = 0;
2240          //else
2241          //  sw = 4321;
2242          //return;
2243    }
2244 }
2245
2246 /**
2247  * \brief Restore the unproperly loaded values i.e. the group, the element
2248  *        and the dictionary entry depending on them. 
2249  */
2250 void gdcmDocument::SwitchSwapToBigEndian(void) 
2251 {
2252    dbg.Verbose(1, "gdcmDocument::SwitchSwapToBigEndian",
2253                   "Switching to BigEndian mode.");
2254    if ( sw == 0    ) 
2255    {
2256       sw = 4321;
2257       return;
2258    }
2259    if ( sw == 4321 ) 
2260    {
2261       sw = 0;
2262       return;
2263    }
2264    if ( sw == 3412 ) 
2265    {
2266       sw = 2143;
2267       return;
2268    }
2269    if ( sw == 2143 )
2270       sw = 3412;
2271 }
2272
2273 /**
2274  * \brief  during parsing, Header Elements too long are not loaded in memory 
2275  * @param NewSize
2276  */
2277 void gdcmDocument::SetMaxSizeLoadEntry(long NewSize) 
2278 {
2279    if (NewSize < 0)
2280       return;
2281    if ((guint32)NewSize >= (guint32)0xffffffff) 
2282    {
2283       MaxSizeLoadEntry = 0xffffffff;
2284       return;
2285    }
2286    MaxSizeLoadEntry = NewSize;
2287 }
2288
2289
2290 /**
2291  * \brief Header Elements too long will not be printed
2292  * \todo  See comments of \ref gdcmDocument::MAX_SIZE_PRINT_ELEMENT_VALUE 
2293  * @param NewSize
2294  */
2295 void gdcmDocument::SetMaxSizePrintEntry(long NewSize) 
2296 {
2297    if (NewSize < 0)
2298       return;
2299    if ((guint32)NewSize >= (guint32)0xffffffff) 
2300    {
2301       MaxSizePrintEntry = 0xffffffff;
2302       return;
2303    }
2304    MaxSizePrintEntry = NewSize;
2305 }
2306
2307
2308
2309 /**
2310  * \brief   Read the next tag but WITHOUT loading it's value
2311  *          (read the 'Group Number', the 'Element Number',
2312  *           gets the Dict Entry
2313  *          gets the VR, gets the length, gets the offset value)
2314  * @return  On succes the newly created DocEntry, NULL on failure.      
2315  */
2316 gdcmDocEntry *gdcmDocument::ReadNextDocEntry(void) {
2317    guint16 g,n;
2318    gdcmDocEntry *NewEntry;
2319    g = ReadInt16();
2320    n = ReadInt16();
2321       
2322    if (errno == 1)
2323       // We reached the EOF (or an error occured) therefore 
2324       // header parsing has to be considered as finished.
2325       return (gdcmDocEntry *)0;
2326
2327    NewEntry = NewDocEntryByNumber(g, n);
2328    FindDocEntryVR(NewEntry);
2329    FindDocEntryLength(NewEntry);
2330
2331    if (errno == 1) {
2332       // Call it quits
2333       delete NewEntry;
2334       return NULL;
2335    }
2336    NewEntry->SetOffset(ftell(fp));  
2337    return NewEntry;
2338 }
2339
2340
2341 /**
2342  * \brief   Generate a free TagKey i.e. a TagKey that is not present
2343  *          in the TagHt dictionary.
2344  * @param   group The generated tag must belong to this group.  
2345  * @return  The element of tag with given group which is fee.
2346  */
2347 guint32 gdcmDocument::GenerateFreeTagKeyInGroup(guint16 group) 
2348 {
2349    for (guint32 elem = 0; elem < UINT32_MAX; elem++) 
2350    {
2351       TagKey key = gdcmDictEntry::TranslateToKey(group, elem);
2352       if (tagHT.count(key) == 0)
2353          return elem;
2354    }
2355    return UINT32_MAX;
2356 }
2357
2358
2359 /**
2360  * \brief   Assuming the internal file pointer \ref gdcmDocument::fp 
2361  *          is placed at the beginning of a tag (TestGroup, TestElement),
2362  *          read the length associated to the Tag.
2363  * \warning On success the internal file pointer \ref gdcmDocument::fp
2364  *          is modified to point after the tag and it's length.
2365  *          On failure (i.e. when the tag wasn't the expected tag
2366  *          (TestGroup, TestElement) the internal file pointer
2367  *          \ref gdcmDocument::fp is restored to it's original position.
2368  * @param   TestGroup   The expected group of the tag.
2369  * @param   TestElement The expected Element of the tag.
2370  * @return  On success returns the length associated to the tag. On failure
2371  *          returns 0.
2372  */
2373 guint32 gdcmDocument::ReadTagLength(guint16 TestGroup, guint16 TestElement)
2374 {
2375    guint16 ItemTagGroup;
2376    guint16 ItemTagElement; 
2377    long PositionOnEntry = ftell(fp);
2378    long CurrentPosition = ftell(fp);          // On debugging purposes
2379
2380    //// Read the Item Tag group and element, and make
2381    // sure they are respectively 0xfffe and 0xe000:
2382    ItemTagGroup   = ReadInt16();
2383    ItemTagElement = ReadInt16();
2384    if ( (ItemTagGroup != TestGroup) || (ItemTagElement != TestElement ) )
2385    {
2386       std::ostringstream s;
2387       s << "   We should have found tag (";
2388       s << std::hex << TestGroup << "," << TestElement << ")" << std::endl;
2389       s << "   but instead we encountered tag (";
2390       s << std::hex << ItemTagGroup << "," << ItemTagElement << ")"
2391         << std::endl;
2392       s << "  at address: " << (unsigned)CurrentPosition << std::endl;
2393       dbg.Verbose(0, "gdcmDocument::ReadItemTagLength: wrong Item Tag found:");
2394       dbg.Verbose(0, s.str().c_str());
2395       fseek(fp, PositionOnEntry, SEEK_SET);
2396       return 0;
2397    }
2398                                                                                 
2399    //// Then read the associated Item Length
2400    CurrentPosition=ftell(fp);
2401    guint32 ItemLength;
2402    ItemLength = ReadInt32();
2403    {
2404       std::ostringstream s;
2405       s << "Basic Item Length is: "
2406         << ItemLength << std::endl;
2407       s << "  at address: " << (unsigned)CurrentPosition << std::endl;
2408       dbg.Verbose(0, "gdcmDocument::ReadItemTagLength: ", s.str().c_str());
2409    }
2410    return ItemLength;
2411 }
2412
2413 /**
2414  * \brief   Read the length of an exptected Item tag i.e. (0xfffe, 0xe000).
2415  * \sa      \ref gdcmDocument::ReadTagLength
2416  * \warning See warning of \ref gdcmDocument::ReadTagLength
2417  * @return  On success returns the length associated to the item tag.
2418  *          On failure returns 0.
2419  */ 
2420 guint32 gdcmDocument::ReadItemTagLength(void)
2421 {
2422    return ReadTagLength(0xfffe, 0xe000);
2423 }
2424
2425 /**
2426  * \brief   Read the length of an expected Sequence Delimiter tag i.e.
2427  *          (0xfffe, 0xe0dd).
2428  * \sa      \ref gdcmDocument::ReadTagLength
2429  * \warning See warning of \ref gdcmDocument::ReadTagLength
2430  * @return  On success returns the length associated to the Sequence
2431  *          Delimiter tag. On failure returns 0.
2432  */
2433 guint32 gdcmDocument::ReadSequenceDelimiterTagLength(void)
2434 {
2435    return ReadTagLength(0xfffe, 0xe0dd);
2436 }
2437
2438
2439 /**
2440  * \brief   Parse pixel data from disk for multi-fragment Jpeg/Rle files
2441  *          No other way so 'skip' the Data
2442  *
2443  */
2444
2445 void gdcmDocument::Parse7FE0 (void)
2446 {
2447    gdcmDocEntry* Element = GetDocEntryByNumber(0x0002, 0x0010);
2448    if ( !Element )
2449       return;
2450       
2451    if (   IsImplicitVRLittleEndianTransferSyntax()
2452        || IsExplicitVRLittleEndianTransferSyntax()
2453        || IsExplicitVRBigEndianTransferSyntax() /// \todo 1.2.2 ??? A verifier !
2454        || IsDeflatedExplicitVRLittleEndianTransferSyntax() )
2455       return;
2456       
2457    // ---------------- for Parsing : Position on begining of Jpeg/RLE Pixels 
2458
2459    //// Read the Basic Offset Table Item Tag length...
2460    guint32 ItemLength = ReadItemTagLength();
2461
2462    //// ... and then read length[s] itself[themselves]. We don't use
2463    // the values read (BTW  what is the purpous of those lengths ?)
2464    if (ItemLength != 0) {
2465       // BTW, what is the purpous of those length anyhow !? 
2466       char * BasicOffsetTableItemValue = new char[ItemLength + 1];
2467       fread(BasicOffsetTableItemValue, ItemLength, 1, fp); 
2468       for (unsigned int i=0; i < ItemLength; i += 4){
2469          guint32 IndividualLength;
2470          IndividualLength = str2num(&BasicOffsetTableItemValue[i],guint32);
2471          std::ostringstream s;
2472          s << "   Read one length: ";
2473          s << std::hex << IndividualLength << std::endl;
2474          dbg.Verbose(0, "gdcmDocument::Parse7FE0: ", s.str().c_str());
2475       }              
2476    }
2477
2478    if ( ! IsRLELossLessTransferSyntax() )
2479    {
2480       // JPEG Image
2481       
2482       //// We then skip (not reading them) all the fragments of images:
2483       while ( (ItemLength = ReadItemTagLength()) )
2484       {
2485          SkipBytes(ItemLength);
2486       } 
2487
2488    }
2489    else
2490    {
2491       // RLE Image
2492       long ftellRes;
2493       long RleSegmentLength[15], fragmentLength;
2494
2495       // while 'Sequence Delimiter Item' (fffe,e0dd) not found
2496       while ( (fragmentLength = ReadSequenceDelimiterTagLength()) )
2497       { 
2498          // Parse fragments of the current Fragment (Frame)    
2499          //------------------ scanning (not reading) fragment pixels
2500          guint32 nbRleSegments = ReadInt32();
2501          printf("   Nb of RLE Segments : %d\n",nbRleSegments);
2502  
2503          //// Reading RLE Segments Offset Table
2504          guint32 RleSegmentOffsetTable[15];
2505          for(int k=1; k<=15; k++) {
2506             ftellRes=ftell(fp);
2507             RleSegmentOffsetTable[k] = ReadInt32();
2508             printf("        at : %x Offset Segment %d : %d (%x)\n",
2509                     (unsigned)ftellRes,k,RleSegmentOffsetTable[k],
2510                     RleSegmentOffsetTable[k]);
2511          }
2512
2513          // skipping (not reading) RLE Segments
2514          if (nbRleSegments>1) {
2515             for(unsigned int k=1; k<=nbRleSegments-1; k++) { 
2516                 RleSegmentLength[k]=   RleSegmentOffsetTable[k+1]
2517                                      - RleSegmentOffsetTable[k];
2518                 ftellRes=ftell(fp);
2519                 printf ("  Segment %d : Length = %d x(%x) Start at %x\n",
2520                         k,(unsigned)RleSegmentLength[k],
2521                        (unsigned)RleSegmentLength[k], (unsigned)ftellRes);
2522                 SkipBytes(RleSegmentLength[k]);    
2523              }
2524           }
2525
2526           RleSegmentLength[nbRleSegments]= fragmentLength 
2527                                          - RleSegmentOffsetTable[nbRleSegments];
2528           ftellRes=ftell(fp);
2529           printf ("  Segment %d : Length = %d x(%x) Start at %x\n",
2530                   nbRleSegments,(unsigned)RleSegmentLength[nbRleSegments],
2531                   (unsigned)RleSegmentLength[nbRleSegments],(unsigned)ftellRes);
2532           SkipBytes(RleSegmentLength[nbRleSegments]); 
2533       } 
2534    }
2535 }
2536
2537
2538
2539 /**
2540  * \brief   Compares two documents, according to \ref gdcmDicomDir rules
2541  * \warning Does NOT work with ACR-NEMA files
2542  * \todo    Find a trick to solve the pb (use RET fields ?)
2543  * @param   document
2544  * @return  true if 'smaller'
2545  */
2546 bool gdcmDocument::operator<(gdcmDocument &document)
2547 {
2548    std::string s1,s2;
2549                                                                                 
2550    // Patient Name
2551    s1=this->GetEntryByNumber(0x0010,0x0010);
2552    s2=document.GetEntryByNumber(0x0010,0x0010);
2553    if(s1 < s2)
2554       return true;
2555    else if(s1 > s2)
2556       return false;
2557    else
2558    {
2559       // Patient ID
2560       s1=this->GetEntryByNumber(0x0010,0x0020);
2561       s2=document.GetEntryByNumber(0x0010,0x0020);
2562       if (s1 < s2)
2563          return true;
2564       else if (s1 > s2)
2565          return true;
2566       else
2567       {
2568          // Study Instance UID
2569          s1=this->GetEntryByNumber(0x0020,0x000d);
2570          s2=document.GetEntryByNumber(0x0020,0x000d);
2571          if (s1 < s2)
2572             return true;
2573          else if(s1 > s2)
2574             return false;
2575          else
2576          {
2577             // Serie Instance UID
2578             s1=this->GetEntryByNumber(0x0020,0x000e);
2579             s2=document.GetEntryByNumber(0x0020,0x000e);
2580             if (s1 < s2)
2581                return true;
2582             else if(s1 > s2)
2583                return false;
2584          }
2585       }
2586    }
2587    return false;
2588 }
2589
2590
2591 //-----------------------------------------------------------------------------