1 /*=========================================================================
4 Module: $RCSfile: gdcmDocument.cxx,v $
6 Date: $Date: 2005/12/14 10:00:28 $
7 Version: $Revision: 1.334 $
9 Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10 l'Image). All rights reserved. See Doc/License.txt or
11 http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
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.
17 =========================================================================*/
19 #include "gdcmDocument.h"
20 #include "gdcmSeqEntry.h"
21 #include "gdcmGlobal.h"
23 #include "gdcmDebug.h"
25 #include "gdcmDictSet.h"
26 #include "gdcmDocEntrySet.h"
27 #include "gdcmSQItem.h"
28 #include "gdcmDataEntry.h"
33 #include <ctype.h> // for isdigit
34 #include <stdlib.h> // for atoi
38 //-----------------------------------------------------------------------------
40 // Refer to Document::SetMaxSizeLoadEntry()
41 const unsigned int Document::MAX_SIZE_LOAD_ELEMENT_VALUE = 0xfff; // 4096
43 //-----------------------------------------------------------------------------
44 // Constructor / Destructor
45 // Constructors and destructors are protected to avoid user to invoke directly
48 * \brief This default constructor neither loads nor parses the file.
49 * You should then invoke \ref Document::Load.
57 SetMaxSizeLoadEntry(MAX_SIZE_LOAD_ELEMENT_VALUE);
60 Filetype = ExplicitVR;
61 // Load will set it to true if sucessfull
62 Group0002Parsed = false;
63 IsDocumentAlreadyLoaded = false;
64 IsDocumentModified = true;
65 LoadMode = LD_ALL; // default : load everything, later
70 * \brief Canonical destructor.
72 Document::~Document ()
77 //-----------------------------------------------------------------------------
80 * \brief Loader. use SetLoadMode(), SetFileName() before !
81 * @return false if file cannot be open or no swap info was found,
82 * or no tag was found.
84 bool Document::Load( )
86 if ( GetFileName() == "" )
88 gdcmWarningMacro( "Use SetFileName, before !" );
91 return DoTheLoadingDocumentJob( );
95 * \brief Performs the Loading Job (internal use only)
96 * @return false if file cannot be open or no swap info was found,
97 * or no tag was found.
99 bool Document::DoTheLoadingDocumentJob( )
101 if ( ! IsDocumentModified ) // Nothing to do !
109 // warning already performed in OpenFile()
114 Group0002Parsed = false;
116 gdcmDebugMacro( "Starting parsing of file: " << Filename.c_str());
118 Fp->seekg(0, std::ios::end);
119 long lgt = Fp->tellg(); // total length of the file
121 Fp->seekg(0, std::ios::beg);
123 // CheckSwap returns a boolean
124 // (false if no swap info of any kind was found)
127 gdcmWarningMacro( "Neither a DICOM V3 nor an ACR-NEMA file: "
128 << Filename.c_str());
133 long beg = Fp->tellg(); // just after DICOM preamble (if any)
135 lgt -= beg; // remaining length to parse
138 // Loading is done during parsing
139 ParseDES( this, beg, lgt, false); // delim_mode is first defaulted to false
143 gdcmErrorMacro( "No tag in internal hash table for: "
144 << Filename.c_str());
148 IsDocumentAlreadyLoaded = true;
150 Fp->seekg( 0, std::ios::beg);
152 // Load 'non string' values
154 std::string PhotometricInterpretation = GetEntryString(0x0028,0x0004);
155 if ( PhotometricInterpretation == "PALETTE COLOR " )
158 // Probabely this line should be outside the 'if'
159 // Try to find an image sample holding a 'gray LUT'
160 LoadEntryBinArea(0x0028,0x1200); // gray LUT
163 /// --> FIXME : The difference between BinEntry and DataEntry
164 /// --> no longer exists, but the alteration of Dicom Dictionary remains.
165 /// --> Old comment restored on purpose.
166 /// --> New one (replacing both BinEntry and ValEntry by DataEntry)
167 /// --> had absolutely no meaning.
168 /// --> The whole comment will be removed when the stuff is cleaned !
170 /// The tags refered by the three following lines used to be CORRECTLY
171 /// defined as having an US Value Representation in the public
172 /// dictionary. BUT the semantics implied by the three following
173 /// lines state that the corresponding tag contents are in fact
174 /// the ones of a BinEntry.
175 /// In order to fix things "Quick and Dirty" the dictionary was
176 /// altered on PURPOSE but now contains a WRONG value.
177 /// In order to fix things and restore the dictionary to its
178 /// correct value, one needs to decide of the semantics by deciding
179 /// whether the following tags are either :
180 /// - multivaluated US, and hence loaded as ValEntry, but afterwards
181 /// also used as BinEntry, which requires the proper conversion,
182 /// - OW, and hence loaded as BinEntry, but afterwards also used
183 /// as ValEntry, which requires the proper conversion.
185 // --> OB (byte aray) or OW (short int aray)
186 // The actual VR has to be deduced from other entries.
187 // Our way of loading them may fail in some cases :
188 // We must or not SwapByte depending on other field values.
190 LoadEntryBinArea(0x0028,0x1201); // R LUT
191 LoadEntryBinArea(0x0028,0x1202); // G LUT
192 LoadEntryBinArea(0x0028,0x1203); // B LUT
194 // Segmented Red Palette Color LUT Data
195 LoadEntryBinArea(0x0028,0x1221);
196 // Segmented Green Palette Color LUT Data
197 LoadEntryBinArea(0x0028,0x1222);
198 // Segmented Blue Palette Color LUT Data
199 LoadEntryBinArea(0x0028,0x1223);
202 //FIXME later : how to use it?
203 SeqEntry *modLutSeq = GetSeqEntry(0x0028,0x3000);
206 SQItem *sqi= modLutSeq->GetFirstSQItem();
209 DataEntry *dataEntry = sqi->GetDataEntry(0x0028,0x3006);
210 if ( dataEntry != 0 )
212 if ( dataEntry->GetLength() != 0 )
214 // FIXME : CTX dependent means : contexted dependant.
215 // see upper comment.
216 LoadEntryBinArea(dataEntry); //LUT Data (CTX dependent)
222 // Force Loading some more elements if user asked to.
225 for (ListElements::iterator it = UserForceLoadList.begin();
226 it != UserForceLoadList.end();
229 gdcmDebugMacro( "Force Load " << std::hex
230 << (*it).Group << "|" <<(*it).Elem );
232 d = GetDocEntry( (*it).Group, (*it).Elem);
236 gdcmWarningMacro( "You asked toForce Load " << std::hex
237 << (*it).Group <<"|"<< (*it).Elem
238 << " that doesn't exist" );
242 LoadDocEntry(d, true);
247 // ----------------------------
248 // Specific code to allow gdcm to read ACR-LibIDO formated images
249 // Note: ACR-LibIDO is an extension of the ACR standard that was
250 // used at CREATIS. For the time being (say a couple of years)
251 // we keep this kludge to allow CREATIS users
252 // reading their old images.
254 // if recognition code tells us we deal with a LibIDO image
255 // we switch lineNumber and columnNumber
258 RecCode = GetEntryString(0x0008, 0x0010); // recognition code (RET)
259 if (RecCode == "ACRNEMA_LIBIDO_1.1" ||
260 RecCode == "CANRME_AILIBOD1_1." ) // for brain-damaged softwares
261 // with "little-endian strings"
263 Filetype = ACR_LIBIDO;
264 std::string rows = GetEntryString(0x0028, 0x0010);
265 std::string columns = GetEntryString(0x0028, 0x0011);
266 SetEntryString(columns, 0x0028, 0x0010);
267 SetEntryString(rows , 0x0028, 0x0011);
269 // --- End of ACR-LibIDO kludge ---
275 * \brief Adds a new element we want to load anyway
276 * @param group Group number of the target tag.
277 * @param elem Element number of the target tag.
279 void Document::AddForceLoadElement (uint16_t group, uint16_t elem)
284 UserForceLoadList.push_back(el);
287 * \brief Get the public dictionary used
289 Dict *Document::GetPubDict()
295 * \brief Get the shadow dictionary used
297 Dict *Document::GetShaDict()
303 * \brief Set the shadow dictionary used
304 * @param dict dictionary to use in shadow
306 bool Document::SetShaDict(Dict *dict)
313 * \brief Set the shadow dictionary used
314 * @param dictName name of the dictionary to use in shadow
316 bool Document::SetShaDict(DictKey const &dictName)
318 RefShaDict = Global::GetDicts()->GetDict(dictName);
323 * \brief This predicate tells us whether or not the current Document
324 * was properly parsed and contains at least *one* Dicom Element
325 * (and nothing more, sorry).
326 * @return false when we're 150 % sure it's NOT a Dicom/Acr file,
329 bool Document::IsParsable()
331 if ( Filetype == Unknown )
333 gdcmWarningMacro( "Wrong filetype for " << GetFileName());
339 gdcmWarningMacro( "No tag in internal hash table.");
346 * \brief This predicate tells us whether or not the current Document
347 * was properly parsed and contains at least *one* Dicom Element
348 * (and nothing more, sorry).
349 * @return false when we're 150 % sure it's NOT a Dicom/Acr file,
352 bool Document::IsReadable()
358 * \brief Predicate for dicom version 3 file.
359 * @return True when the file is a dicom version 3.
361 bool Document::IsDicomV3()
363 // Checking if Transfer Syntax exists is enough
364 // Anyway, it's too late check if the 'Preamble' was found ...
365 // And ... would it be a rich idea to check ?
366 // (some 'no Preamble' DICOM images exist !)
367 return GetDocEntry(0x0002, 0x0010) != NULL;
371 * \brief Predicate for Papyrus file
372 * Dedicated to whomsoever it may concern
373 * @return True when the file is a Papyrus file.
375 bool Document::IsPapyrus()
377 // check for Papyrus private Sequence
378 DocEntry *e = GetDocEntry(0x0041, 0x1050);
381 // check if it's actually a Sequence
382 if ( !dynamic_cast<SeqEntry*>(e) )
388 * \brief returns the File Type
389 * (ACR, ACR_LIBIDO, ExplicitVR, ImplicitVR, Unknown)
390 * @return the FileType code
392 FileType Document::GetFileType()
398 * \brief Accessor to the Transfer Syntax (when present) of the
399 * current document (it internally handles reading the
400 * value from disk when only parsing occured).
401 * @return The encountered Transfer Syntax of the current document, if DICOM.
402 * GDCM_UNKNOWN for ACR-NEMA files (or broken headers ...)
404 std::string Document::GetTransferSyntax()
406 DocEntry *entry = GetDocEntry(0x0002, 0x0010);
412 // The entry might be present but not loaded (parsing and loading
413 // happen at different stages): try loading and proceed with check...
414 LoadDocEntrySafe(entry);
415 if (DataEntry *dataEntry = dynamic_cast<DataEntry *>(entry) )
417 std::string transfer = dataEntry->GetString();
418 // The actual transfer (as read from disk) might be padded. We
419 // first need to remove the potential padding. We can make the
420 // weak assumption that padding was not executed with digits...
421 if ( transfer.length() == 0 )
423 // for brain damaged headers
424 gdcmWarningMacro( "Transfer Syntax has length = 0.");
427 while ( !isdigit((unsigned char)transfer[transfer.length()-1]) )
429 transfer.erase(transfer.length()-1, 1);
430 if ( transfer.length() == 0 )
432 // for brain damaged headers
433 gdcmWarningMacro( "Transfer Syntax contains no valid character.");
443 * \brief Accesses the info from 0002,0010 : Transfer Syntax and TS
444 * @return The full Transfer Syntax Name (as opposed to Transfer Syntax UID)
446 std::string Document::GetTransferSyntaxName()
448 // use the TS (TS : Transfer Syntax)
449 std::string transferSyntax = GetEntryString(0x0002,0x0010);
451 if ( (transferSyntax.find(GDCM_NOTLOADED) < transferSyntax.length()) )
453 gdcmErrorMacro( "Transfer Syntax not loaded. " << std::endl
454 << "Better you increase MAX_SIZE_LOAD_ELEMENT_VALUE" );
455 return "Uncompressed ACR-NEMA";
457 if ( transferSyntax == GDCM_UNFOUND )
459 gdcmDebugMacro( "Unfound Transfer Syntax (0002,0010)");
460 return "Uncompressed ACR-NEMA";
463 // we do it only when we need it
464 const TSKey &tsName = Global::GetTS()->GetValue( transferSyntax );
466 // Global::GetTS() is a global static you shall never try to delete it!
470 // --------------- Swap Code ------------------
472 * \brief Swaps the bytes so they agree with the processor order
473 * @return The properly swaped 16 bits integer.
475 uint16_t Document::SwapShort(uint16_t a)
477 if ( SwapCode == 4321 || SwapCode == 2143 )
479 //a = ((( a << 8 ) & 0xff00 ) | (( a >> 8 ) & 0x00ff ) );
481 a = ( a << 8 ) | ( a >> 8 );
487 * \brief Swaps back the bytes of 4-byte long integer accordingly to
489 * @return The properly swaped 32 bits integer.
491 uint32_t Document::SwapLong(uint32_t a)
498 // a=( ((a<<24) & 0xff000000) | ((a<<8) & 0x00ff0000) |
499 // ((a>>8) & 0x0000ff00) | ((a>>24) & 0x000000ff) );
501 a=( ( a<<24) | ((a<<8) & 0x00ff0000) |
502 ((a>>8) & 0x0000ff00) | (a>>24) );
505 // a=( ((a<<16) & 0xffff0000) | ((a>>16) & 0x0000ffff) );
506 a=( (a<<16) | (a>>16) );
509 a=( ((a<< 8) & 0xff00ff00) | ((a>>8) & 0x00ff00ff) );
512 gdcmErrorMacro( "Unexpected swap code:" << SwapCode );
519 * \brief Swaps back the bytes of 8-byte long 'double' accordingly to
521 * @return The properly swaped 64 bits double.
523 double Document::SwapDouble(double a)
527 // There were no 'double' at ACR-NEMA time.
528 // We just have to deal with 'straight Little Endian' and
529 // 'straight Big Endian'
534 char *beg = (char *)&a;
537 for (unsigned int i = 0; i<7; i++)
548 gdcmErrorMacro( "Unexpected swap code:" << SwapCode );
555 // -----------------File I/O ---------------
557 * \brief Tries to open the file \ref Document::Filename and
558 * checks the preamble when existing.
559 * @return The FILE pointer on success.
561 std::ifstream *Document::OpenFile()
563 HasDCMPreamble = false;
564 if (Filename.length() == 0)
571 gdcmDebugMacro( "File already open: " << Filename.c_str());
575 Fp = new std::ifstream(Filename.c_str(), std::ios::in | std::ios::binary);
578 // Don't user gdcmErrorMacro :
579 // a spurious message will appear when you use, for instance
580 // gdcm::FileHelper *fh = new gdcm::FileHelper( outputFileName );
581 // to create outputFileName.
583 // FIXME : if the upper comment is still usefull
584 // --> the constructor is not so good ...
586 gdcmWarningMacro( "Cannot open file: " << Filename.c_str());
590 //exit(1); // No function is allowed to leave the application instead
591 // of warning the caller
595 Fp->read((char*)&zero, (size_t)2);
602 //-- Broken ACR or DICOM with no Preamble; may start with a Shadow Group --
604 // FIXME : We cannot be sure the preable is only zeroes..
605 // (see ACUSON-24-YBR_FULL-RLE.dcm )
607 zero == 0x0001 || zero == 0x0100 || zero == 0x0002 || zero == 0x0200 ||
608 zero == 0x0003 || zero == 0x0300 || zero == 0x0004 || zero == 0x0400 ||
609 zero == 0x0005 || zero == 0x0500 || zero == 0x0006 || zero == 0x0600 ||
610 zero == 0x0007 || zero == 0x0700 || zero == 0x0008 || zero == 0x0800 )
612 std::string msg = Util::Format(
613 "ACR/DICOM starting by 0x(%04x) at the beginning of the file\n", zero);
614 // FIXME : is it a Warning message, or a Debug message?
615 gdcmWarningMacro( msg.c_str() );
620 Fp->seekg(126L, std::ios::cur);
621 char dicm[4]; // = {' ',' ',' ',' '};
622 Fp->read(dicm, (size_t)4);
628 if ( memcmp(dicm, "DICM", 4) == 0 )
630 HasDCMPreamble = true;
634 // -- Neither ACR/No Preamble Dicom nor DICOMV3 file
636 // Don't user Warning nor Error, not to polute the output
637 // while directory recursive parsing ...
638 gdcmDebugMacro( "Neither ACR/No Preamble Dicom nor DICOMV3 file: "
639 << Filename.c_str());
644 * \brief closes the file
645 * @return TRUE if the close was successfull
647 bool Document::CloseFile()
659 * \brief Writes in a file all the Entries (Dicom Elements)
660 * @param fp file pointer on an already open file (actually: Output File Stream)
661 * @param filetype Type of the File to be written
662 * (ACR-NEMA, ExplicitVR, ImplicitVR)
664 void Document::WriteContent(std::ofstream *fp, FileType filetype)
666 // Skip if user wants to write an ACR-NEMA file
668 if ( filetype == ImplicitVR || filetype == ExplicitVR ||
671 // writing Dicom File Preamble
672 char filePreamble[128];
673 memset(filePreamble, 0, 128);
674 fp->write(filePreamble, 128);
675 fp->write("DICM", 4);
679 * \todo rewrite later, if really usefull
680 * - 'Group Length' element is optional in DICOM
681 * - but un-updated odd groups lengthes can causes pb
684 * if ( (filetype == ImplicitVR) || (filetype == ExplicitVR) )
685 * UpdateGroupLength(false,filetype);
686 * if ( filetype == ACR)
687 * UpdateGroupLength(true,ACR);
689 * --> Computing group length for groups with embeded Sequences
690 * --> was too much tricky / we were [in a hurry / too lazy]
691 * --> We don't write the element 0x0000 (group length)
694 ElementSet::WriteContent(fp, filetype); // This one is recursive
697 // -----------------------------------------
700 * \brief Loads (from disk) the element content
701 * when a string is not suitable
702 * @param group group number of the Entry
703 * @param elem element number of the Entry
705 void Document::LoadEntryBinArea(uint16_t group, uint16_t elem)
707 // Search the corresponding DocEntry
708 DocEntry *docEntry = GetDocEntry(group, elem);
711 gdcmDebugMacro(std::hex << group << "|" << elem
712 << " doesn't exist" );
715 DataEntry *dataEntry = dynamic_cast<DataEntry *>(docEntry);
718 gdcmWarningMacro(std::hex << group << "|" << elem
719 << " is NOT a DataEntry");
722 LoadEntryBinArea(dataEntry);
726 * \brief Loads (from disk) the element content
727 * when a string is not suitable
728 * @param entry Entry whose binArea is going to be loaded
730 void Document::LoadEntryBinArea(DataEntry *entry)
732 if( entry->GetBinArea() )
739 size_t o =(size_t)entry->GetOffset();
740 Fp->seekg(o, std::ios::beg);
742 size_t l = entry->GetLength();
743 uint8_t *data = new uint8_t[l];
746 gdcmWarningMacro( "Cannot allocate DataEntry content for : "
747 << std::hex << entry->GetGroup()
748 << "|" << entry->GetElement() );
753 Fp->read((char*)data, l);
754 if ( Fp->fail() || Fp->eof() )
757 entry->SetState(DataEntry::STATE_UNREAD);
761 // Swap the data content if necessary
763 unsigned short vrLgth =
764 Global::GetVR()->GetAtomicElementLength(entry->GetVR());
766 // FIXME : trouble expected if we read an ... OW Entry (LUT, etc ..)
767 // if( entry->GetVR() == "OW" )
778 uint16_t *data16 = (uint16_t *)data;
779 for(i=0;i<l/vrLgth;i++)
780 data16[i] = SwapShort(data16[i]);
785 uint32_t *data32 = (uint32_t *)data;
786 for(i=0;i<l/vrLgth;i++)
787 data32[i] = SwapLong(data32[i]);
792 double *data64 = (double *)data;
793 for(i=0;i<l/vrLgth;i++)
794 data64[i] = SwapDouble(data64[i]);
799 entry->SetBinArea(data);
806 * \brief Loads the element while preserving the current
807 * underlying file position indicator as opposed to
808 * LoadDocEntry that modifies it.
809 * @param entry DocEntry whose value will be loaded.
811 void Document::LoadDocEntrySafe(DocEntry *entry)
815 long PositionOnEntry = Fp->tellg();
817 Fp->seekg(PositionOnEntry, std::ios::beg);
822 * \brief Compares two documents, according to \ref DicomDir rules
823 * \warning Does NOT work with ACR-NEMA files
824 * \todo Find a trick to solve the pb (use RET fields ?)
825 * @param document to compare with current one
826 * @return true if 'smaller'
828 bool Document::operator<(Document &document)
831 std::string s1 = GetEntryString(0x0010,0x0010);
832 std::string s2 = document.GetEntryString(0x0010,0x0010);
844 s1 = GetEntryString(0x0010,0x0020);
845 s2 = document.GetEntryString(0x0010,0x0020);
856 // Study Instance UID
857 s1 = GetEntryString(0x0020,0x000d);
858 s2 = document.GetEntryString(0x0020,0x000d);
869 // Serie Instance UID
870 s1 = GetEntryString(0x0020,0x000e);
871 s2 = document.GetEntryString(0x0020,0x000e);
886 //-----------------------------------------------------------------------------
889 * \brief Reads a supposed to be 16 Bits integer
890 * (swaps it depending on processor endianness)
893 uint16_t Document::ReadInt16()
897 Fp->read ((char*)&g, (size_t)2);
900 throw FormatError( "Document::ReadInt16()", " file error." );
904 throw FormatError( "Document::ReadInt16()", "EOF." );
911 * \brief Reads a supposed to be 32 Bits integer
912 * (swaps it depending on processor endianness)
915 uint32_t Document::ReadInt32()
919 Fp->read ((char*)&g, (size_t)4);
922 throw FormatError( "Document::ReadInt32()", " file error." );
926 throw FormatError( "Document::ReadInt32()", "EOF." );
933 * \brief skips bytes inside the source file
936 void Document::SkipBytes(uint32_t nBytes)
938 //FIXME don't dump the returned value
939 Fp->seekg((long)nBytes, std::ios::cur);
943 * \brief Re-computes the length of the Dicom group 0002.
945 int Document::ComputeGroup0002Length( )
951 bool found0002 = false;
953 // for each zero-level Tag in the DCM Header
954 DocEntry *entry = GetFirstEntry();
957 gr = entry->GetGroup();
963 if ( entry->GetElement() != 0x0000 )
967 //if ( (vr == "OB")||(vr == "OW")||(vr == "UT")||(vr == "SQ"))
968 // (no SQ, OW, UT in group 0x0002;)
971 // explicit VR AND (OB, OW, SQ, UT) : 4 more bytes
975 groupLength += 2 + 2 + 4 + entry->GetLength();
981 entry = GetNextEntry();
987 * \brief CallStartMethod
989 void Document::CallStartMethod()
993 CommandManager::ExecuteCommand(this,CMD_STARTPROGRESS);
997 * \brief CallProgressMethod
999 void Document::CallProgressMethod()
1001 CommandManager::ExecuteCommand(this,CMD_PROGRESS);
1005 * \brief CallEndMethod
1007 void Document::CallEndMethod()
1010 CommandManager::ExecuteCommand(this,CMD_ENDPROGRESS);
1013 //-----------------------------------------------------------------------------
1016 * \brief Loads all the needed Dictionaries
1018 void Document::Initialize()
1020 RefPubDict = Global::GetDicts()->GetDefaultPubDict();
1026 * \brief Parses a DocEntrySet (Zero-level DocEntries or SQ Item DocEntries)
1027 * @param set DocEntrySet we are going to parse ('zero level' or a SQItem)
1028 * @param offset start of parsing
1029 * @param l_max length to parse (meaningless when we are in 'delimitor mode')
1030 * @param delim_mode : whether we are in 'delimitor mode' (l=0xffffff) or not
1032 void Document::ParseDES(DocEntrySet *set, long offset,
1033 long l_max, bool delim_mode)
1035 DocEntry *newDocEntry;
1036 DataEntry *newDataEntry;
1037 SeqEntry *newSeqEntry;
1039 bool used; // will be set to false when something wrong happens to an Entry.
1040 // (Entry will then be deleted)
1041 bool delim_mode_intern = delim_mode;
1043 gdcmDebugMacro( "Enter in ParseDES, delim-mode " << delim_mode
1044 << " at offset " << std::hex << "0x(" << offset << ")" );
1047 if ( !delim_mode && ((long)(Fp->tellg())-offset) >= l_max)
1052 newDocEntry = ReadNextDocEntry( );
1054 // Uncoment this cerr line to be able to 'follow' the DocEntries
1055 // when something *very* strange happens
1056 if( Debug::GetDebugFlag() )
1057 std::cerr<<newDocEntry->GetKey()<<" "<<newDocEntry->GetVR()<<std::endl;
1064 // an Item Starter found elsewhere but the first position
1065 // of a SeqEntry means previous entry was a Sequence
1066 // but we didn't get it (private Sequence + Implicit VR)
1067 // we have to backtrack.
1068 if ( !first && newDocEntry->IsItemStarter() )
1070 // Debug message within the method !
1071 newDocEntry = Backtrack(newDocEntry);
1075 PreviousDocEntry = newDocEntry;
1079 newDataEntry = dynamic_cast<DataEntry*>(newDocEntry);
1083 //////////////////////////// DataEntry
1085 vr = newDocEntry->GetVR();
1087 if ( !set->AddEntry( newDataEntry ) )
1089 gdcmDebugMacro( "in ParseDES : cannot add a DataEntry "
1090 << newDataEntry->GetKey()
1091 << " (at offset : 0x("
1092 << newDataEntry->GetOffset() << ") )" );
1097 newDataEntry->Delete();
1098 // Load only if we can add (not a duplicate key)
1099 LoadDocEntry( newDataEntry );
1101 if ( newDataEntry->GetElement() == 0x0000 ) // if on group length
1103 if ( newDataEntry->GetGroup()%2 != 0 ) // if Shadow Group
1105 if ( LoadMode & LD_NOSHADOW ) // if user asked to skip shad.gr
1107 std::string strLgrGroup = newDataEntry->GetString();
1110 //if ( newDataEntry->IsUnfound() ) /?!? JPR
1112 lgrGroup = atoi(strLgrGroup.c_str());
1113 Fp->seekg(lgrGroup, std::ios::cur);
1114 //used = false; // never used
1115 RemoveEntry( newDocEntry ); // Remove and delete
1116 // bcc 5.5 is right "assigned a value that's never used"
1124 bool delimitor = newDataEntry->IsItemDelimitor();
1127 (!delim_mode && ((long)(Fp->tellg())-offset) >= l_max) )
1130 newDocEntry->Delete();
1134 // Just to make sure we are at the beginning of next entry.
1135 SkipToNextDocEntry(newDocEntry);
1139 /////////////////////// SeqEntry : VR = "SQ"
1141 unsigned long l = newDocEntry->GetReadLength();
1142 if ( l != 0 ) // don't mess the delim_mode for 'zero-length sequence'
1144 if ( l == 0xffffffff )
1146 delim_mode_intern = true;
1150 delim_mode_intern = false;
1154 if ( (LoadMode & LD_NOSHADOWSEQ) && ! delim_mode_intern )
1156 // User asked to skip SeQuences *only* if they belong to Shadow Group
1157 if ( newDocEntry->GetGroup()%2 != 0 )
1159 Fp->seekg( l, std::ios::cur);
1160 newDocEntry->Delete(); // Delete, not in the set
1164 if ( (LoadMode & LD_NOSEQ) && ! delim_mode_intern )
1166 // User asked to skip *any* SeQuence
1167 Fp->seekg( l, std::ios::cur);
1168 newDocEntry->Delete(); // Delete, not in the set
1171 // delay the dynamic cast as late as possible
1172 newSeqEntry = dynamic_cast<SeqEntry*>(newDocEntry);
1174 // no other way to create the Delimitor ...
1175 newSeqEntry->SetDelimitorMode( delim_mode_intern );
1177 // At the top of the hierarchy, stands a Document. When "set"
1178 // is a Document, then we are building the first depth level.
1179 // Hence the SeqEntry we are building simply has a depth
1181 if ( set == this ) // ( dynamic_cast< Document* > ( set ) )
1183 newSeqEntry->SetDepthLevel( 1 );
1185 // But when "set" is already a SQItem, we are building a nested
1186 // sequence, and hence the depth level of the new SeqEntry
1187 // we are building, is one level deeper:
1189 // time waste hunting
1190 else if (SQItem *parentSQItem = dynamic_cast< SQItem* > ( set ) )
1192 newSeqEntry->SetDepthLevel( parentSQItem->GetDepthLevel() + 1 );
1196 { // Don't try to parse zero-length sequences
1198 gdcmDebugMacro( "Entry in ParseSQ, delim " << delim_mode_intern
1199 << " at offset 0x(" << std::hex
1200 << newDocEntry->GetOffset() << ")");
1202 ParseSQ( newSeqEntry,
1203 newDocEntry->GetOffset(),
1204 l, delim_mode_intern);
1206 gdcmDebugMacro( "Exit from ParseSQ, delim " << delim_mode_intern);
1209 if ( !set->AddEntry( newSeqEntry ) )
1211 gdcmWarningMacro( "in ParseDES : cannot add a SeqEntry "
1212 << newSeqEntry->GetKey()
1213 << " (at offset : 0x("
1214 << newSeqEntry->GetOffset() << ") )" );
1219 newDocEntry->Delete();
1222 if ( !delim_mode && ((long)(Fp->tellg())-offset) >= l_max)
1225 newDocEntry->Delete();
1228 } // end SeqEntry : VR = "SQ"
1232 newDocEntry->Delete();
1236 gdcmDebugMacro( "Exit from ParseDES, delim-mode " << delim_mode );
1240 * \brief Parses a Sequence ( SeqEntry after SeqEntry)
1241 * @return parsed length for this level
1243 void Document::ParseSQ( SeqEntry *seqEntry,
1244 long offset, long l_max, bool delim_mode)
1246 int SQItemNumber = 0;
1248 long offsetStartCurrentSQItem = offset;
1252 // the first time, we read the fff0,e000 of the first SQItem
1253 DocEntry *newDocEntry = ReadNextDocEntry();
1257 gdcmWarningMacro("in ParseSQ : should never get here!");
1262 if ( newDocEntry->IsSequenceDelimitor() )
1264 seqEntry->SetDelimitationItem( newDocEntry );
1265 newDocEntry->Delete();
1269 if ( !delim_mode && ((long)(Fp->tellg())-offset) >= l_max)
1271 newDocEntry->Delete();
1274 // create the current SQItem
1275 SQItem *itemSQ = SQItem::New( seqEntry->GetDepthLevel() );
1276 unsigned int l = newDocEntry->GetReadLength();
1278 if ( l == 0xffffffff )
1287 // remove fff0,e000, created out of the SQItem
1288 Fp->seekg(offsetStartCurrentSQItem, std::ios::beg);
1289 // fill up the current SQItem, starting at the beginning of fff0,e000
1291 ParseDES(itemSQ, offsetStartCurrentSQItem, l+8, dlm_mod);
1293 offsetStartCurrentSQItem = Fp->tellg();
1295 seqEntry->AddSQItem( itemSQ, SQItemNumber );
1297 newDocEntry->Delete();
1299 if ( !delim_mode && ((long)(Fp->tellg())-offset ) >= l_max )
1307 * \brief When a private Sequence + Implicit VR is encountered
1308 * we cannot guess it's a Sequence till we find the first
1309 * Item Starter. We then backtrack to do the job.
1310 * @param docEntry Item Starter that warned us
1312 DocEntry *Document::Backtrack(DocEntry *docEntry)
1314 // delete the Item Starter, built erroneously out of any Sequence
1315 // it's not yet in the HTable/chained list
1318 // Get all info we can from PreviousDocEntry
1319 uint16_t group = PreviousDocEntry->GetGroup();
1320 uint16_t elem = PreviousDocEntry->GetElement();
1321 uint32_t lgt = PreviousDocEntry->GetLength();
1322 long offset = PreviousDocEntry->GetOffset();
1324 gdcmDebugMacro( "Backtrack :" << std::hex << group
1326 << " at offset 0x(" <<offset << ")" );
1327 RemoveEntry( PreviousDocEntry );
1329 // forge the Seq Entry
1330 DocEntry *newEntry = NewSeqEntry(group, elem);
1331 newEntry->SetLength(lgt);
1332 newEntry->SetOffset(offset);
1334 // Move back to the beginning of the Sequence
1335 Fp->seekg( 0, std::ios::beg);
1336 Fp->seekg(offset, std::ios::cur);
1342 * \brief Loads (or not) the element content depending if its length exceeds
1343 * or not the value specified with Document::SetMaxSizeLoadEntry()
1344 * @param entry Header Entry (Dicom Element) to be dealt with
1345 * @param forceLoad whether you want to force loading of 'long' elements
1347 void Document::LoadDocEntry(DocEntry *entry, bool forceLoad)
1349 uint16_t group = entry->GetGroup();
1350 uint16_t elem = entry->GetElement();
1351 const VRKey &vr = entry->GetVR();
1352 uint32_t length = entry->GetLength();
1354 Fp->seekg((long)entry->GetOffset(), std::ios::beg);
1356 // A SeQuence "contains" a set of Elements.
1357 // (fffe e000) tells us an Element is beginning
1358 // (fffe e00d) tells us an Element just ended
1359 // (fffe e0dd) tells us the current SeQuence just ended
1361 // (fffe 0000) is an 'impossible' tag value,
1362 // found in MR-PHILIPS-16-Multi-Seq.dcm
1364 if ( (group == 0xfffe && elem != 0x0000 ) || vr == "SQ" )
1366 // NO more value field for SQ !
1370 DataEntry *dataEntryPtr = dynamic_cast< DataEntry* >(entry);
1376 // When the length is zero things are easy:
1379 dataEntryPtr->SetBinArea(NULL,true);
1383 // The elements whose length is bigger than the specified upper bound
1386 std::ostringstream s;
1390 if (length > MaxSizeLoadEntry)
1392 dataEntryPtr->SetBinArea(NULL,true);
1393 dataEntryPtr->SetState(DataEntry::STATE_NOTLOADED);
1395 // to be sure we are at the end of the value ...
1396 Fp->seekg((long)entry->GetOffset()+(long)entry->GetLength(),
1402 LoadEntryBinArea(dataEntryPtr); // last one, not to erase length !
1406 * \brief Find the value Length of the passed Doc Entry
1407 * @param entry Header Entry whose length of the value shall be loaded.
1409 void Document::FindDocEntryLength( DocEntry *entry )
1410 throw ( FormatError )
1412 const VRKey &vr = entry->GetVR();
1415 if ( Filetype == ExplicitVR && !entry->IsImplicitVR() )
1417 if ( vr == "OB" || vr == "OW" || vr == "SQ" || vr == "UT"
1420 // The following reserved two bytes (see PS 3.5-2003, section
1421 // "7.1.2 Data element structure with explicit vr", p 27) must be
1422 // skipped before proceeding on reading the length on 4 bytes.
1423 Fp->seekg( 2L, std::ios::cur);
1424 uint32_t length32 = ReadInt32();
1426 if ( (vr == "OB" || vr == "OW") && length32 == 0xffffffff )
1431 lengthOB = FindDocEntryLengthOBOrOW();
1433 catch ( FormatUnexpected )
1435 // Computing the length failed (this happens with broken
1436 // files like gdcm-JPEG-LossLess3a.dcm). We still have a
1437 // chance to get the pixels by deciding the element goes
1438 // until the end of the file. Hence we artificially fix the
1439 // the length and proceed.
1440 gdcmWarningMacro( " Computing the length failed for " <<
1441 entry->GetKey() <<" in " <<GetFileName());
1443 long currentPosition = Fp->tellg();
1444 Fp->seekg(0L,std::ios::end);
1446 long lengthUntilEOF = (long)(Fp->tellg())-currentPosition;
1447 Fp->seekg(currentPosition, std::ios::beg);
1449 entry->SetReadLength(lengthUntilEOF);
1450 entry->SetLength(lengthUntilEOF);
1453 entry->SetReadLength(lengthOB);
1454 entry->SetLength(lengthOB);
1457 FixDocEntryFoundLength(entry, length32);
1461 // Length is encoded on 2 bytes.
1462 length16 = ReadInt16();
1464 // 0xffff means that we deal with 'No Length' Sequence
1465 // or 'No Length' SQItem
1466 if ( length16 == 0xffff)
1470 FixDocEntryFoundLength( entry, (uint32_t)length16 );
1475 // Either implicit VR or a non DICOM conformal (see note below) explicit
1476 // VR that ommited the VR of (at least) this element. Farts happen.
1477 // [Note: according to the part 5, PS 3.5-2001, section 7.1 p25
1478 // on Data elements "Implicit and Explicit VR Data Elements shall
1479 // not coexist in a Data Set and Data Sets nested within it".]
1480 // Length is on 4 bytes.
1482 // Well ... group 0002 is always coded in 'Explicit VR Litle Endian'
1483 // even if Transfer Syntax is 'Implicit VR ...'
1484 // --> Except for 'Implicit VR Big Endian Transfer Syntax GE Private'
1486 FixDocEntryFoundLength( entry, ReadInt32() );
1492 * \brief Find the Length till the next sequence delimiter
1495 uint32_t Document::FindDocEntryLengthOBOrOW()
1496 throw( FormatUnexpected )
1498 // See PS 3.5-2001, section A.4 p. 49 on encapsulation of encoded pixel data.
1499 long positionOnEntry = Fp->tellg();
1500 bool foundSequenceDelimiter = false;
1501 uint32_t totalLength = 0;
1503 while ( !foundSequenceDelimiter )
1509 group = ReadInt16();
1512 catch ( FormatError )
1514 throw FormatError("Unexpected end of file encountered during ",
1515 "Document::FindDocEntryLengthOBOrOW()");
1517 // We have to decount the group and element we just read
1519 if ( group != 0xfffe || ( ( elem != 0xe0dd ) && ( elem != 0xe000 ) ) )
1521 long filePosition = Fp->tellg();
1523 "Neither an Item tag nor a Sequence delimiter tag on :"
1524 << std::hex << group << " , " << elem
1525 << ") -before- position x(" << filePosition << ")" );
1527 Fp->seekg(positionOnEntry, std::ios::beg);
1528 throw FormatUnexpected(
1529 "Neither an Item tag nor a Sequence delimiter tag.");
1531 if ( elem == 0xe0dd )
1533 foundSequenceDelimiter = true;
1535 uint32_t itemLength = ReadInt32();
1536 // We add 4 bytes since we just read the ItemLength with ReadInt32
1537 totalLength += itemLength + 4;
1538 SkipBytes(itemLength);
1540 if ( foundSequenceDelimiter )
1545 Fp->seekg( positionOnEntry, std::ios::beg);
1550 * \brief Find the Value Representation of the current Dicom Element.
1551 * @return Value Representation of the current Entry
1553 VRKey Document::FindDocEntryVR()
1555 if ( Filetype != ExplicitVR )
1556 return GDCM_VRUNKNOWN;
1558 long positionOnEntry = Fp->tellg();
1559 // Warning: we believe this is explicit VR (Value Representation) because
1560 // we used a heuristic that found "UL" in the first tag and/or
1561 // 'Transfer Syntax' told us it is.
1562 // Alas this doesn't guarantee that all the tags will be in explicit VR.
1563 // In some cases one finds implicit VR tags mixed within an explicit VR file.
1564 // Hence we make sure the present tag is in explicit VR and try to fix things
1565 // if it happens not to be the case.
1568 Fp->read(&(vr[0]),(size_t)2);
1570 if ( !CheckDocEntryVR(vr) )
1572 // Don't warn user with useless messages
1573 // Often, delimiters (0xfffe), are not explicit VR ...
1574 if ( CurrentGroup != 0xfffe )
1575 gdcmWarningMacro( "Unknown VR " << std::hex << "0x("
1576 << (unsigned int)vr[0] << "|" << (unsigned int)vr[1]
1577 << ") at offset : 0x(" << positionOnEntry<< ")" );
1578 Fp->seekg(positionOnEntry, std::ios::beg);
1579 return GDCM_VRUNKNOWN;
1585 * \brief Check the correspondance between the VR of the header entry
1586 * and the taken VR. If they are different, the header entry is
1587 * updated with the new VR.
1588 * @param vr Dicom Value Representation
1589 * @return false if the VR is incorrect or if the VR isn't referenced
1590 * otherwise, it returns true
1592 bool Document::CheckDocEntryVR(const VRKey &vr)
1594 return Global::GetVR()->IsValidVR(vr);
1598 * \brief Skip a given Header Entry
1599 * @param entry entry to skip
1601 void Document::SkipDocEntry(DocEntry *entry)
1603 SkipBytes(entry->GetLength());
1607 * \brief Skips to the beginning of the next Header Entry
1608 * @param currentDocEntry entry to skip
1610 void Document::SkipToNextDocEntry(DocEntry *currentDocEntry)
1612 int l = currentDocEntry->GetReadLength();
1613 if ( l == -1 ) // length = 0xffff shouldn't appear here ...
1614 // ... but PMS imagers happen !
1616 Fp->seekg((long)(currentDocEntry->GetOffset()), std::ios::beg);
1617 if (currentDocEntry->GetGroup() != 0xfffe) // for fffe pb
1619 Fp->seekg( (long)(currentDocEntry->GetReadLength()),std::ios::cur);
1624 * \brief When the length of an element value is obviously wrong (because
1625 * the parser went Jabberwocky) one can hope improving things by
1626 * applying some heuristics.
1627 * @param entry entry to check
1628 * @param foundLength first assumption about length
1630 void Document::FixDocEntryFoundLength(DocEntry *entry,
1631 uint32_t foundLength)
1633 entry->SetReadLength( foundLength );// will be updated only if a bug is found
1634 if ( foundLength == 0xffffffff)
1639 uint16_t gr = entry->GetGroup();
1640 uint16_t elem = entry->GetElement();
1642 if ( foundLength % 2)
1644 gdcmWarningMacro( "Warning : Tag with uneven length " << foundLength
1645 << " in x(" << std::hex << gr << "," << elem <<")");
1648 //////// Fix for some naughty General Electric images.
1649 // Allthough not recent many such GE corrupted images are still present
1650 // on Creatis hard disks. Hence this fix shall remain when such images
1651 // are no longer in use (we are talking a few years, here)...
1652 // Note: XMedCon probably uses such a trick since it is able to read
1653 // those pesky GE images ...
1654 if ( foundLength == 13)
1656 // Only happens for this length !
1657 if ( gr != 0x0008 || ( elem != 0x0070 && elem != 0x0080 ) )
1660 entry->SetReadLength(10); // a bug is to be fixed !?
1664 //////// Fix for some brain-dead 'Leonardo' Siemens images.
1665 // Occurence of such images is quite low (unless one leaves close to a
1666 // 'Leonardo' source. Hence, one might consider commenting out the
1667 // following fix on efficiency reasons.
1668 else if ( gr == 0x0009 && ( elem == 0x1113 || elem == 0x1114 ) )
1671 entry->SetReadLength(4); // a bug is to be fixed !
1674 else if ( entry->GetVR() == "SQ" )
1676 foundLength = 0; // ReadLength is unchanged
1679 //////// We encountered a 'delimiter' element i.e. a tag of the form
1680 // "fffe|xxxx" which is just a marker. Delimiters length should not be
1681 // taken into account.
1682 else if ( gr == 0xfffe )
1684 // According to the norm, fffe|0000 shouldn't exist. BUT the Philips
1685 // image gdcmData/gdcm-MR-PHILIPS-16-Multi-Seq.dcm happens to
1686 // causes extra troubles...
1687 if ( entry->GetElement() != 0x0000 )
1693 foundLength=12; // to skip the mess that follows this bugged Tag !
1696 entry->SetLength(foundLength);
1700 * \brief Apply some heuristics to predict whether the considered
1701 * element value contains/represents an integer or not.
1702 * @param entry The element value on which to apply the predicate.
1703 * @return The result of the heuristical predicate.
1705 bool Document::IsDocEntryAnInteger(DocEntry *entry)
1707 uint16_t elem = entry->GetElement();
1708 uint16_t group = entry->GetGroup();
1709 const VRKey &vr = entry->GetVR();
1710 uint32_t length = entry->GetLength();
1712 // When we have some semantics on the element we just read, and if we
1713 // a priori know we are dealing with an integer, then we shall be
1714 // able to swap it's element value properly.
1715 if ( elem == 0 ) // This is the group length of the group
1723 // Although this should never happen, still some images have a
1724 // corrupted group length [e.g. have a glance at offset x(8336) of
1725 // gdcmData/gdcm-MR-PHILIPS-16-Multi-Seq.dcm.
1726 // Since for dicom compliant and well behaved headers, the present
1727 // test is useless (and might even look a bit paranoid), when we
1728 // encounter such an ill-formed image, we simply display a warning
1729 // message and proceed on parsing (while crossing fingers).
1730 long filePosition = Fp->tellg();
1731 gdcmWarningMacro( "Erroneous Group Length element length on : ("
1732 << std::hex << group << " , " << elem
1733 << ") -before- position x(" << filePosition << ")"
1734 << "lgt : " << length );
1738 if ( vr == "UL" || vr == "US" || vr == "SL" || vr == "SS" )
1746 * \brief Discover what the swap code is (among little endian, big endian,
1747 * bad little endian, bad big endian).
1749 * @return false when we are absolutely sure
1750 * it's neither ACR-NEMA nor DICOM
1751 * true when we hope ours assuptions are OK
1753 bool Document::CheckSwap()
1760 // First, compare HostByteOrder and NetworkByteOrder in order to
1761 // determine if we shall need to swap bytes (i.e. the Endian type).
1762 bool net2host = Util::IsCurrentProcessorBigEndian();
1764 // The easiest case is the one of a 'true' DICOM header, we just have
1765 // to look for the string "DICM" inside the file preamble.
1768 char *entCur = deb + 128;
1769 if ( memcmp(entCur, "DICM", (size_t)4) == 0 )
1771 gdcmDebugMacro( "Looks like DICOM Version3 (preamble + DCM)" );
1773 // Group 0002 should always be VR, and the first element 0000
1774 // Let's be carefull (so many wrong headers ...)
1775 // and determine the value representation (VR) :
1776 // Let's skip to the first element (0002,0000) and check there if we find
1777 // "UL" - or "OB" if the 1st one is (0002,0001) -,
1778 // in which case we (almost) know it is explicit VR.
1779 // WARNING: if it happens to be implicit VR then what we will read
1780 // is the length of the group. If this ascii representation of this
1781 // length happens to be "UL" then we shall believe it is explicit VR.
1782 // We need to skip :
1783 // * the 128 bytes of File Preamble (often padded with zeroes),
1784 // * the 4 bytes of "DICM" string,
1785 // * the 4 bytes of the first tag (0002, 0000),or (0002, 0001)
1786 // i.e. a total of 136 bytes.
1789 // group 0x0002 *is always* Explicit VR Sometimes ,
1790 // even if elem 0002,0010 (Transfer Syntax) tells us the file is
1791 // *Implicit* VR (see former 'gdcmData/icone.dcm')
1793 if ( memcmp(entCur, "UL", (size_t)2) == 0 ||
1794 memcmp(entCur, "OB", (size_t)2) == 0 ||
1795 memcmp(entCur, "UI", (size_t)2) == 0 ||
1796 memcmp(entCur, "CS", (size_t)2) == 0 ) // CS, to remove later
1797 // when Write DCM *adds*
1799 // Use Document::dicom_vr to test all the possibilities
1800 // instead of just checking for UL, OB and UI !? group 0000
1802 Filetype = ExplicitVR;
1803 gdcmDebugMacro( "Group 0002 : Explicit Value Representation");
1807 Filetype = ImplicitVR;
1808 gdcmWarningMacro( "Group 0002 :Not an explicit Value Representation;"
1809 << "Looks like a bugged Header!");
1815 gdcmDebugMacro( "HostByteOrder != NetworkByteOrder, SwapCode = 4321");
1820 gdcmDebugMacro( "HostByteOrder = NetworkByteOrder, SwapCode = 1234");
1823 // Position the file position indicator at first tag
1824 // (i.e. after the file preamble and the "DICM" string).
1826 Fp->seekg(0, std::ios::beg); // FIXME : Is it usefull?
1828 Fp->seekg ( 132L, std::ios::beg);
1830 } // ------------------------------- End of DicomV3 ----------------
1832 // Alas, this is not a DicomV3 file and whatever happens there is no file
1833 // preamble. We can reset the file position indicator to where the data
1834 // is (i.e. the beginning of the file).
1836 gdcmWarningMacro( "Not a Kosher DICOM Version3 file (no preamble)");
1838 Fp->seekg(0, std::ios::beg);
1840 // Let's check 'No Preamble Dicom File' :
1841 // Should start with group 0x0002
1842 // and be Explicit Value Representation
1844 s16 = *((uint16_t *)(deb));
1857 if ( SwapCode != 0 )
1859 if ( memcmp(entCur, "UL", (size_t)2) == 0 ||
1860 memcmp(entCur, "OB", (size_t)2) == 0 ||
1861 memcmp(entCur, "UI", (size_t)2) == 0 ||
1862 memcmp(entCur, "SH", (size_t)2) == 0 ||
1863 memcmp(entCur, "AE", (size_t)2) == 0 ||
1864 memcmp(entCur, "OB", (size_t)2) == 0 )
1866 Filetype = ExplicitVR;
1867 gdcmDebugMacro( "Group 0002 : Explicit Value Representation");
1871 // ------------------------------- End of 'No Preamble' DicomV3 -------------
1873 // Our next best chance would be to be considering a 'clean' ACR/NEMA file.
1874 // By clean we mean that the length of the first group is written down.
1875 // If this is the case and since the length of the first group HAS to be
1876 // four (bytes), then determining the proper swap code is straightforward.
1879 // We assume the array of char we are considering contains the binary
1880 // representation of a 32 bits integer. Hence the following dirty
1882 s32 = *((uint32_t *)(entCur));
1902 // We are out of luck. It is not a DicomV3 nor a 'clean' ACR/NEMA file.
1903 // It is time for despaired wild guesses.
1904 // So, let's check if this file wouldn't happen to be 'dirty' ACR/NEMA,
1905 // i.e. the 'group length' element is not present :
1907 // check the supposed-to-be 'group number'
1908 // in ( 0x0001 .. 0x0008 )
1909 // to determine ' SwapCode' value .
1910 // Only 0 or 4321 will be possible
1911 // (no oportunity to check for the formerly well known
1912 // ACR-NEMA 'Bad Big Endian' or 'Bad Little Endian'
1913 // if unsuccessfull (i.e. neither 0x0002 nor 0x0200 etc-3, 4, ..., 8-)
1914 // the file IS NOT ACR-NEMA nor DICOM V3
1915 // Find a trick to tell it the caller...
1917 s16 = *((uint16_t *)(deb));
1944 gdcmWarningMacro("ACR/NEMA unfound swap info (Hopeless !)");
1952 * \brief Change the Byte Swap code.
1954 void Document::SwitchByteSwapCode()
1956 gdcmDebugMacro( "Switching Byte Swap code from "<< SwapCode
1957 << " at: 0x" << std::hex << Fp->tellg() );
1958 if ( SwapCode == 1234 )
1962 else if ( SwapCode == 4321 )
1966 else if ( SwapCode == 3412 )
1970 else if ( SwapCode == 2143 )
1974 gdcmDebugMacro( " Into: "<< SwapCode );
1978 * \brief during parsing, Header Elements too long are not loaded in memory
1979 * @param newSize new size
1981 void Document::SetMaxSizeLoadEntry(long newSize)
1987 if ((uint32_t)newSize >= (uint32_t)0xffffffff )
1989 MaxSizeLoadEntry = 0xffffffff;
1992 MaxSizeLoadEntry = newSize;
1996 * \brief Read the next tag WITHOUT loading it's value
1997 * (read the 'Group Number', the 'Element Number',
1998 * gets the Dict Entry
1999 * gets the VR, gets the length, gets the offset value)
2000 * @return On succes : the newly created DocEntry, NULL on failure.
2002 DocEntry *Document::ReadNextDocEntry()
2006 CurrentGroup = ReadInt16();
2007 CurrentElem = ReadInt16();
2009 catch ( FormatError )
2011 // We reached the EOF (or an error occured) therefore
2012 // header parsing has to be considered as finished.
2016 // Sometimes file contains groups of tags with reversed endianess.
2017 HandleBrokenEndian(CurrentGroup, CurrentElem);
2019 // In 'true DICOM' files Group 0002 is always little endian
2020 if ( HasDCMPreamble )
2021 HandleOutOfGroup0002(CurrentGroup, CurrentElem);
2023 VRKey vr = FindDocEntryVR();
2027 if ( vr == GDCM_VRUNKNOWN )
2029 if ( CurrentElem == 0x0000 ) // Group Length
2031 realVR = "UL"; // must be UL
2033 else if (CurrentGroup%2 == 1 &&
2034 (CurrentElem >= 0x0010 && CurrentElem <=0x00ff ))
2036 // DICOM PS 3-5 7.8.1 a) states that those
2037 // (gggg-0010->00FF where gggg is odd) attributes have to be LO
2042 DictEntry *dictEntry = GetDictEntry(CurrentGroup,CurrentElem);
2045 realVR = dictEntry->GetVR();
2046 dictEntry->Unregister();
2050 // gdcmDebugMacro( "Found VR: " << vr << " / Real VR: " << realVR );
2053 if ( Global::GetVR()->IsVROfSequence(realVR) )
2054 newEntry = NewSeqEntry(CurrentGroup, CurrentElem);
2057 newEntry = NewDataEntry(CurrentGroup, CurrentElem, realVR);
2058 static_cast<DataEntry *>(newEntry)->SetState(DataEntry::STATE_NOTLOADED);
2061 if ( vr == GDCM_VRUNKNOWN )
2063 if ( Filetype == ExplicitVR )
2065 // We thought this was explicit VR, but we end up with an
2066 // implicit VR tag. Let's backtrack.
2067 if ( newEntry->GetGroup() != 0xfffe )
2070 int offset = Fp->tellg();
2072 "Entry (%04x,%04x) at x(%x) should be Explicit VR\n",
2073 newEntry->GetGroup(), newEntry->GetElement(), offset );
2074 gdcmWarningMacro( msg.c_str() );
2077 newEntry->SetImplicitVR();
2082 FindDocEntryLength(newEntry);
2084 catch ( FormatError )
2091 newEntry->SetOffset(Fp->tellg());
2097 * \brief Handle broken private tag from Philips NTSCAN
2098 * where the endianess is being switched to BigEndian
2099 * for no apparent reason
2102 void Document::HandleBrokenEndian(uint16_t &group, uint16_t &elem)
2104 // Endian reversion.
2105 // Some files contain groups of tags with reversed endianess.
2106 static int reversedEndian = 0;
2107 // try to fix endian switching in the middle of headers
2108 if ((group == 0xfeff) && (elem == 0x00e0))
2110 // start endian swap mark for group found
2111 gdcmDebugMacro( "Start endian swap mark found." );
2113 SwitchByteSwapCode();
2118 else if (group == 0xfffe && elem == 0xe00d && reversedEndian)
2120 // end of reversed endian group
2121 gdcmDebugMacro( "End of reversed endian." );
2123 SwitchByteSwapCode();
2125 else if (group == 0xfeff && elem == 0xdde0)
2127 // reversed Sequence Terminator found
2128 // probabely a bug in the header !
2129 // Do what you want, it breaks !
2131 //SwitchByteSwapCode();
2132 gdcmWarningMacro( "Should never get here! reversed Sequence Terminator!" );
2137 else if (group == 0xfffe && elem == 0xe0dd)
2139 gdcmDebugMacro( "Straight Sequence Terminator." );
2144 * \brief Group 0002 is always coded Little Endian
2145 * whatever Transfer Syntax is
2148 void Document::HandleOutOfGroup0002(uint16_t &group, uint16_t &elem)
2150 // Endian reversion.
2151 // Some files contain groups of tags with reversed endianess.
2152 if ( !Group0002Parsed && group != 0x0002)
2154 Group0002Parsed = true;
2155 // we just came out of group 0002
2156 // if Transfer Syntax is Big Endian we have to change CheckSwap
2158 std::string ts = GetTransferSyntax();
2159 if ( ts == GDCM_UNKNOWN )
2161 gdcmDebugMacro("True DICOM File, with NO Transfer Syntax (?!) " );
2164 if ( !Global::GetTS()->IsTransferSyntax(ts) )
2166 gdcmWarningMacro("True DICOM File, with illegal Transfer Syntax: ["
2171 // Group 0002 is always 'Explicit ...'
2172 // even when Transfer Syntax says 'Implicit ..."
2174 if ( Global::GetTS()->GetSpecialTransferSyntax(ts) ==
2175 TS::ImplicitVRLittleEndian )
2177 Filetype = ImplicitVR;
2180 // FIXME Strangely, this works with
2181 //'Implicit VR BigEndian Transfer Syntax (GE Private)
2183 // --> Probabely normal, since we considered we never have
2184 // to trust manufacturers.
2185 // (we find very often 'Implicit VR' tag,
2186 // even when Transfer Syntax tells us it's Explicit ...
2187 if ( Global::GetTS()->GetSpecialTransferSyntax(ts) ==
2188 TS::ExplicitVRBigEndian )
2190 gdcmDebugMacro("Transfer Syntax Name = ["
2191 << GetTransferSyntaxName() << "]" );
2192 SwitchByteSwapCode();
2193 group = SwapShort(group);
2194 elem = SwapShort(elem);
2199 //-----------------------------------------------------------------------------
2202 //-----------------------------------------------------------------------------
2203 } // end namespace gdcm