1 /*=========================================================================
4 Module: $RCSfile: gdcmDocument.cxx,v $
6 Date: $Date: 2005/10/27 16:52:44 $
7 Version: $Revision: 1.316 $
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 //-----------------------------------------------------------------------------
81 * \brief Loader. use SetLoadMode(), SetFileName() before !
82 * @return false if file cannot be open or no swap info was found,
83 * or no tag was found.
85 bool Document::Load( )
87 if ( GetFileName() == "" )
89 gdcmWarningMacro( "Use SetFileName, before !" );
92 return DoTheLoadingDocumentJob( );
95 * \brief Loader. (DEPRECATED : not to break the API)
96 * @param fileName 'Document' (File or DicomDir) to be open for parsing
97 * @return false if file cannot be open or no swap info was found,
98 * or no tag was found.
100 bool Document::Load( std::string const &fileName )
103 return DoTheLoadingDocumentJob( );
107 * \brief Performs the Loading Job (internal use only)
108 * @return false if file cannot be open or no swap info was found,
109 * or no tag was found.
111 bool Document::DoTheLoadingDocumentJob( )
113 if ( ! IsDocumentModified ) // Nothing to do !
121 // warning already performed in OpenFile()
126 Group0002Parsed = false;
128 gdcmDebugMacro( "Starting parsing of file: " << Filename.c_str());
130 Fp->seekg(0, std::ios::end);
131 long lgt = Fp->tellg(); // total length of the file
133 Fp->seekg(0, std::ios::beg);
135 // CheckSwap returns a boolean
136 // (false if no swap info of any kind was found)
139 gdcmWarningMacro( "Neither a DICOM V3 nor an ACR-NEMA file: "
140 << Filename.c_str());
145 long beg = Fp->tellg(); // just after DICOM preamble (if any)
147 lgt -= beg; // remaining length to parse
150 // Loading is done during parsing
151 ParseDES( this, beg, lgt, false); // delim_mode is first defaulted to false
155 gdcmErrorMacro( "No tag in internal hash table for: "
156 << Filename.c_str());
160 IsDocumentAlreadyLoaded = true;
162 Fp->seekg( 0, std::ios::beg);
164 // Load 'non string' values
166 std::string PhotometricInterpretation = GetEntryString(0x0028,0x0004);
167 if ( PhotometricInterpretation == "PALETTE COLOR " )
170 // Probabely this line should be outside the 'if'
171 // Try to find an image sample holding a 'gray LUT'
172 LoadEntryBinArea(0x0028,0x1200); // gray LUT
175 /// --> FIXME : The difference between BinEntry and DataEntry
176 /// --> no longer exists, but the alteration of Dicom Dictionary remains.
177 /// --> Old comment restored on purpose.
178 /// --> New one (replacing both BinEntry and ValEntry by DataEntry)
179 /// --> had absolutely no meaning.
180 /// --> The whole comment will be removed when the stuff is cleaned !
182 /// The tags refered by the three following lines used to be CORRECTLY
183 /// defined as having an US Value Representation in the public
184 /// dictionary. BUT the semantics implied by the three following
185 /// lines state that the corresponding tag contents are in fact
186 /// the ones of a BinEntry.
187 /// In order to fix things "Quick and Dirty" the dictionary was
188 /// altered on PURPOSE but now contains a WRONG value.
189 /// In order to fix things and restore the dictionary to its
190 /// correct value, one needs to decided of the semantics by deciding
191 /// whether the following tags are either :
192 /// - multivaluated US, and hence loaded as ValEntry, but afterwards
193 /// also used as BinEntry, which requires the proper conversion,
194 /// - OW, and hence loaded as BinEntry, but afterwards also used
195 /// as ValEntry, which requires the proper conversion.
197 // --> OB (byte aray) or OW (short int aray)
198 // The actual VR has to be deduced from other entries.
199 // Our way of loading them may fail in some cases :
200 // We must or not SwapByte depending on other field values.
202 LoadEntryBinArea(0x0028,0x1201); // R LUT
203 LoadEntryBinArea(0x0028,0x1202); // G LUT
204 LoadEntryBinArea(0x0028,0x1203); // B LUT
206 // Segmented Red Palette Color LUT Data
207 LoadEntryBinArea(0x0028,0x1221);
208 // Segmented Green Palette Color LUT Data
209 LoadEntryBinArea(0x0028,0x1222);
210 // Segmented Blue Palette Color LUT Data
211 LoadEntryBinArea(0x0028,0x1223);
214 //FIXME later : how to use it?
215 SeqEntry *modLutSeq = GetSeqEntry(0x0028,0x3000);
218 SQItem *sqi= modLutSeq->GetFirstSQItem();
221 DataEntry *dataEntry = sqi->GetDataEntry(0x0028,0x3006);
222 if ( dataEntry != 0 )
224 if ( dataEntry->GetLength() != 0 )
226 // FIXME : CTX dependent means : contexted dependant.
227 // see upper comment.
228 LoadEntryBinArea(dataEntry); //LUT Data (CTX dependent)
234 // Force Loading some more elements if user asked to.
237 for (ListElements::iterator it = UserForceLoadList.begin();
238 it != UserForceLoadList.end();
241 gdcmDebugMacro( "Force Load " << std::hex
242 << (*it).Group << "|" <<(*it).Elem );
244 d = GetDocEntry( (*it).Group, (*it).Elem);
248 gdcmWarningMacro( "You asked toForce Load " << std::hex
249 << (*it).Group <<"|"<< (*it).Elem
250 << " that doesn't exist" );
254 LoadDocEntry(d, true);
259 // ----------------------------
260 // Specific code to allow gdcm to read ACR-LibIDO formated images
261 // Note: ACR-LibIDO is an extension of the ACR standard that was
262 // used at CREATIS. For the time being (say a couple of years)
263 // we keep this kludge to allow CREATIS users
264 // reading their old images.
266 // if recognition code tells us we deal with a LibIDO image
267 // we switch lineNumber and columnNumber
270 RecCode = GetEntryString(0x0008, 0x0010); // recognition code (RET)
271 if (RecCode == "ACRNEMA_LIBIDO_1.1" ||
272 RecCode == "CANRME_AILIBOD1_1." ) // for brain-damaged softwares
273 // with "little-endian strings"
275 Filetype = ACR_LIBIDO;
276 std::string rows = GetEntryString(0x0028, 0x0010);
277 std::string columns = GetEntryString(0x0028, 0x0011);
278 SetEntryString(columns, 0x0028, 0x0010);
279 SetEntryString(rows , 0x0028, 0x0011);
281 // --- End of ACR-LibIDO kludge ---
287 * \brief Adds a new element we want to load anyway
288 * @param group Group number of the target tag.
289 * @param elem Element number of the target tag.
291 void Document::AddForceLoadElement (uint16_t group, uint16_t elem)
296 UserForceLoadList.push_back(el);
299 * \brief Get the public dictionary used
301 Dict *Document::GetPubDict()
307 * \brief Get the shadow dictionary used
309 Dict *Document::GetShaDict()
315 * \brief Set the shadow dictionary used
316 * @param dict dictionary to use in shadow
318 bool Document::SetShaDict(Dict *dict)
325 * \brief Set the shadow dictionary used
326 * @param dictName name of the dictionary to use in shadow
328 bool Document::SetShaDict(DictKey const &dictName)
330 RefShaDict = Global::GetDicts()->GetDict(dictName);
335 * \brief This predicate tells us whether or not the current Document
336 * was properly parsed and contains at least *one* Dicom Element
337 * (and nothing more, sorry).
338 * @return false when we're 150 % sure it's NOT a Dicom/Acr file,
341 bool Document::IsReadable()
343 if ( Filetype == Unknown )
345 gdcmErrorMacro( "Wrong filetype");
351 gdcmErrorMacro( "No tag in internal hash table.");
359 * \brief Predicate for dicom version 3 file.
360 * @return True when the file is a dicom version 3.
362 bool Document::IsDicomV3()
364 // Checking if Transfer Syntax exists is enough
365 // Anyway, it's too late check if the 'Preamble' was found ...
366 // And ... would it be a rich idea to check ?
367 // (some 'no Preamble' DICOM images exist !)
368 return GetDocEntry(0x0002, 0x0010) != NULL;
372 * \brief Predicate for Papyrus file
373 * Dedicated to whomsoever it may concern
374 * @return True when the file is a Papyrus file.
376 bool Document::IsPapyrus()
378 // check for Papyrus private Sequence
379 DocEntry *e = GetDocEntry(0x0041, 0x1050);
382 // check if it's actually a Sequence
383 if ( !dynamic_cast<SeqEntry*>(e) )
389 * \brief returns the File Type
390 * (ACR, ACR_LIBIDO, ExplicitVR, ImplicitVR, Unknown)
391 * @return the FileType code
393 FileType Document::GetFileType()
399 * \brief Accessor to the Transfer Syntax (when present) of the
400 * current document (it internally handles reading the
401 * value from disk when only parsing occured).
402 * @return The encountered Transfer Syntax of the current document, if DICOM.
403 * GDCM_UNKNOWN for ACR-NEMA files (or broken headers ...)
405 std::string Document::GetTransferSyntax()
407 DocEntry *entry = GetDocEntry(0x0002, 0x0010);
413 // The entry might be present but not loaded (parsing and loading
414 // happen at different stages): try loading and proceed with check...
415 LoadDocEntrySafe(entry);
416 if (DataEntry *dataEntry = dynamic_cast<DataEntry *>(entry) )
418 std::string transfer = dataEntry->GetString();
419 // The actual transfer (as read from disk) might be padded. We
420 // first need to remove the potential padding. We can make the
421 // weak assumption that padding was not executed with digits...
422 if ( transfer.length() == 0 )
424 // for brain damaged headers
425 gdcmWarningMacro( "Transfer Syntax has length = 0.");
428 while ( !isdigit((unsigned char)transfer[transfer.length()-1]) )
430 transfer.erase(transfer.length()-1, 1);
431 if ( transfer.length() == 0 )
433 // for brain damaged headers
434 gdcmWarningMacro( "Transfer Syntax contains no valid character.");
444 * \brief Accesses the info from 0002,0010 : Transfer Syntax and TS
445 * @return The full Transfer Syntax Name (as opposed to Transfer Syntax UID)
447 std::string Document::GetTransferSyntaxName()
449 // use the TS (TS : Transfer Syntax)
450 std::string transferSyntax = GetEntryString(0x0002,0x0010);
452 if ( (transferSyntax.find(GDCM_NOTLOADED) < transferSyntax.length()) )
454 gdcmErrorMacro( "Transfer Syntax not loaded. " << std::endl
455 << "Better you increase MAX_SIZE_LOAD_ELEMENT_VALUE" );
456 return "Uncompressed ACR-NEMA";
458 if ( transferSyntax == GDCM_UNFOUND )
460 gdcmDebugMacro( "Unfound Transfer Syntax (0002,0010)");
461 return "Uncompressed ACR-NEMA";
464 // we do it only when we need it
465 const TSKey &tsName = Global::GetTS()->GetValue( transferSyntax );
467 // Global::GetTS() is a global static you shall never try to delete it!
471 // --------------- Swap Code ------------------
473 * \brief Swaps the bytes so they agree with the processor order
474 * @return The properly swaped 16 bits integer.
476 uint16_t Document::SwapShort(uint16_t a)
478 if ( SwapCode == 4321 || SwapCode == 2143 )
480 //a = ((( a << 8 ) & 0xff00 ) | (( a >> 8 ) & 0x00ff ) );
482 a = ( a << 8 ) | ( a >> 8 );
488 * \brief Swaps back the bytes of 4-byte long integer accordingly to
490 * @return The properly swaped 32 bits integer.
492 uint32_t Document::SwapLong(uint32_t a)
499 // a=( ((a<<24) & 0xff000000) | ((a<<8) & 0x00ff0000) |
500 // ((a>>8) & 0x0000ff00) | ((a>>24) & 0x000000ff) );
502 a=( ( a<<24) | ((a<<8) & 0x00ff0000) |
503 ((a>>8) & 0x0000ff00) | (a>>24) );
506 // a=( ((a<<16) & 0xffff0000) | ((a>>16) & 0x0000ffff) );
507 a=( (a<<16) | (a>>16) );
510 a=( ((a<< 8) & 0xff00ff00) | ((a>>8) & 0x00ff00ff) );
513 gdcmErrorMacro( "Unexpected swap code:" << SwapCode );
520 * \brief Swaps back the bytes of 8-byte long 'double' accordingly to
522 * @return The properly swaped 64 bits double.
524 double Document::SwapDouble(double a)
528 // There were no 'double' at ACR-NEMA time.
529 // We just have to deal with 'straight Little Endian' and
530 // 'straight Big Endian'
534 char *beg = (char *)&a;
537 for (unsigned int i = 0; i<7; i++)
547 gdcmErrorMacro( "Unexpected swap code:" << SwapCode );
554 // -----------------File I/O ---------------
556 * \brief Tries to open the file \ref Document::Filename and
557 * checks the preamble when existing.
558 * @return The FILE pointer on success.
560 std::ifstream *Document::OpenFile()
562 HasDCMPreamble = false;
563 if (Filename.length() == 0)
570 gdcmDebugMacro( "File already open: " << Filename.c_str());
574 Fp = new std::ifstream(Filename.c_str(), std::ios::in | std::ios::binary);
577 // Don't user gdcmErrorMacro :
578 // a spurious message will appear when you use, for instance
579 // gdcm::FileHelper *fh = new gdcm::FileHelper( outputFileName );
580 // to create outputFileName.
582 // FIXME : if the upper comment is still usefull
583 // --> the constructor is not so good ...
585 gdcmWarningMacro( "Cannot open file: " << Filename.c_str());
589 //exit(1); // No function is allowed to leave the application instead
590 // of warning the caller
594 Fp->read((char*)&zero, (size_t)2);
601 //-- ACR or DICOM with no Preamble; may start with a Shadow Group --
603 zero == 0x0001 || zero == 0x0100 || zero == 0x0002 || zero == 0x0200 ||
604 zero == 0x0003 || zero == 0x0300 || zero == 0x0004 || zero == 0x0400 ||
605 zero == 0x0005 || zero == 0x0500 || zero == 0x0006 || zero == 0x0600 ||
606 zero == 0x0007 || zero == 0x0700 || zero == 0x0008 || zero == 0x0800 )
608 std::string msg = Util::Format(
609 "ACR/DICOM starting by 0x(%04x) at the beginning of the file\n", zero);
610 // FIXME : is it a Warning message, or a Debug message?
611 gdcmWarningMacro( msg.c_str() );
616 Fp->seekg(126L, std::ios::cur);
617 char dicm[4]; // = {' ',' ',' ',' '};
618 Fp->read(dicm, (size_t)4);
624 if ( memcmp(dicm, "DICM", 4) == 0 )
626 HasDCMPreamble = true;
630 // -- Neither ACR/No Preamble Dicom nor DICOMV3 file
632 // Don't user Warning nor Error, not to polute the output
633 // while directory recursive parsing ...
634 gdcmDebugMacro( "Neither ACR/No Preamble Dicom nor DICOMV3 file: "
635 << Filename.c_str());
640 * \brief closes the file
641 * @return TRUE if the close was successfull
643 bool Document::CloseFile()
655 * \brief Writes in a file all the Entries (Dicom Elements)
656 * @param fp file pointer on an already open file (actually: Output File Stream)
657 * @param filetype Type of the File to be written
658 * (ACR-NEMA, ExplicitVR, ImplicitVR)
660 void Document::WriteContent(std::ofstream *fp, FileType filetype)
662 // Skip if user wants to write an ACR-NEMA file
664 if ( filetype == ImplicitVR || filetype == ExplicitVR ||
667 // writing Dicom File Preamble
668 char filePreamble[128];
669 memset(filePreamble, 0, 128);
670 fp->write(filePreamble, 128);
671 fp->write("DICM", 4);
675 * \todo rewrite later, if really usefull
676 * - 'Group Length' element is optional in DICOM
677 * - but un-updated odd groups lengthes can causes pb
680 * if ( (filetype == ImplicitVR) || (filetype == ExplicitVR) )
681 * UpdateGroupLength(false,filetype);
682 * if ( filetype == ACR)
683 * UpdateGroupLength(true,ACR);
685 * --> Computing group length for groups with embeded Sequences
686 * --> was too much tricky / we were [in a hurry / too lazy]
687 * --> We don't write the element 0x0000 (group length)
690 ElementSet::WriteContent(fp, filetype); // This one is recursive
693 // -----------------------------------------
696 * \brief Loads (from disk) the element content
697 * when a string is not suitable
698 * @param group group number of the Entry
699 * @param elem element number of the Entry
701 void Document::LoadEntryBinArea(uint16_t group, uint16_t elem)
703 // Search the corresponding DocEntry
704 DocEntry *docEntry = GetDocEntry(group, elem);
707 gdcmWarningMacro(std::hex << group << "|" << elem
708 << "doesn't exist" );
711 DataEntry *dataEntry = dynamic_cast<DataEntry *>(docEntry);
714 gdcmWarningMacro(std::hex << group << "|" << elem
715 << "is NOT a DataEntry");
718 LoadEntryBinArea(dataEntry);
722 * \brief Loads (from disk) the element content
723 * when a string is not suitable
724 * @param entry Entry whose binArea is going to be loaded
726 void Document::LoadEntryBinArea(DataEntry *entry)
728 if( entry->GetBinArea() )
735 size_t o =(size_t)entry->GetOffset();
736 Fp->seekg(o, std::ios::beg);
738 size_t l = entry->GetLength();
739 uint8_t *data = new uint8_t[l];
742 gdcmWarningMacro( "Cannot allocate DataEntry content for : "
743 << std::hex << entry->GetGroup()
744 << "|" << entry->GetElement() );
749 Fp->read((char*)data, l);
750 if ( Fp->fail() || Fp->eof() )
753 entry->SetState(DataEntry::STATE_UNREAD);
757 // Swap the data content if necessary
759 unsigned short vrLgth =
760 Global::GetVR()->GetAtomicElementLength(entry->GetVR());
762 // FIXME : trouble expected if we read an ... OW Entry (LUT, etc ..)
763 if( entry->GetVR() == "OW" )
770 std::cout << "Atomic lgt = 1 ; NO swap at reading" << std::endl;
775 uint16_t *data16 = (uint16_t *)data;
776 for(i=0;i<l/vrLgth;i++)
777 data16[i] = SwapShort(data16[i]);
782 uint32_t *data32 = (uint32_t *)data;
783 for(i=0;i<l/vrLgth;i++)
784 data32[i] = SwapLong(data32[i]);
789 double *data64 = (double *)data;
790 for(i=0;i<l/vrLgth;i++)
791 data64[i] = SwapDouble(data64[i]);
796 entry->SetBinArea(data);
803 * \brief Loads the element while preserving the current
804 * underlying file position indicator as opposed to
805 * LoadDocEntry that modifies it.
806 * @param entry DocEntry whose value will be loaded.
808 void Document::LoadDocEntrySafe(DocEntry *entry)
812 long PositionOnEntry = Fp->tellg();
814 Fp->seekg(PositionOnEntry, std::ios::beg);
819 * \brief Compares two documents, according to \ref DicomDir rules
820 * \warning Does NOT work with ACR-NEMA files
821 * \todo Find a trick to solve the pb (use RET fields ?)
822 * @param document to compare with current one
823 * @return true if 'smaller'
825 bool Document::operator<(Document &document)
828 std::string s1 = GetEntryString(0x0010,0x0010);
829 std::string s2 = document.GetEntryString(0x0010,0x0010);
841 s1 = GetEntryString(0x0010,0x0020);
842 s2 = document.GetEntryString(0x0010,0x0020);
853 // Study Instance UID
854 s1 = GetEntryString(0x0020,0x000d);
855 s2 = document.GetEntryString(0x0020,0x000d);
866 // Serie Instance UID
867 s1 = GetEntryString(0x0020,0x000e);
868 s2 = document.GetEntryString(0x0020,0x000e);
883 //-----------------------------------------------------------------------------
886 * \brief Reads a supposed to be 16 Bits integer
887 * (swaps it depending on processor endianness)
890 uint16_t Document::ReadInt16()
894 Fp->read ((char*)&g, (size_t)2);
897 throw FormatError( "Document::ReadInt16()", " file error." );
901 throw FormatError( "Document::ReadInt16()", "EOF." );
908 * \brief Reads a supposed to be 32 Bits integer
909 * (swaps it depending on processor endianness)
912 uint32_t Document::ReadInt32()
916 Fp->read ((char*)&g, (size_t)4);
919 throw FormatError( "Document::ReadInt32()", " file error." );
923 throw FormatError( "Document::ReadInt32()", "EOF." );
930 * \brief skips bytes inside the source file
931 * \warning NOT end user intended method !
934 void Document::SkipBytes(uint32_t nBytes)
936 //FIXME don't dump the returned value
937 Fp->seekg((long)nBytes, std::ios::cur);
941 * \brief Re-computes the length of a ACR-NEMA/Dicom group from a DcmHeader
943 int Document::ComputeGroup0002Length( )
949 bool found0002 = false;
951 // for each zero-level Tag in the DCM Header
952 DocEntry *entry = GetFirstEntry();
955 gr = entry->GetGroup();
961 if ( entry->GetElement() != 0x0000 )
965 // FIXME : group 0x0002 is *always* Explicit VR!
966 // --> Except for Implicit VR Transfer Syntax (GE Private) !!
968 //if ( filetype == ExplicitVR )
970 //if ( (vr == "OB")||(vr == "OW")||(vr == "UT")||(vr == "SQ"))
971 // (no SQ, OW, UT in group 0x0002;)
974 // explicit VR AND (OB, OW, SQ, UT) : 4 more bytes
978 groupLength += 2 + 2 + 4 + entry->GetLength();
984 entry = GetNextEntry();
989 //-----------------------------------------------------------------------------
992 * \brief Loads all the needed Dictionaries
993 * \warning NOT end user intended method !
995 void Document::Initialize()
997 RefPubDict = Global::GetDicts()->GetDefaultPubDict();
1003 * \brief Parses a DocEntrySet (Zero-level DocEntries or SQ Item DocEntries)
1004 * @param set DocEntrySet we are going to parse ('zero level' or a SQItem)
1005 * @param offset start of parsing
1006 * @param l_max length to parse (meaningless when we are in 'delimitor mode')
1007 * @param delim_mode : whether we are in 'delimitor mode' (l=0xffffff) or not
1009 void Document::ParseDES(DocEntrySet *set, long offset,
1010 long l_max, bool delim_mode)
1012 DocEntry *newDocEntry;
1013 DataEntry *newDataEntry;
1014 SeqEntry *newSeqEntry;
1016 bool used; // will be set to false when something wrong happens to an Entry.
1017 // (Entry will then be deleted)
1018 bool delim_mode_intern = delim_mode;
1020 gdcmDebugMacro( "Enter in ParseDES, delim-mode " << delim_mode
1021 << " at offset " << std::hex << offset );
1024 if ( !delim_mode && ((long)(Fp->tellg())-offset) >= l_max)
1029 newDocEntry = ReadNextDocEntry( );
1031 // Uncoment this cerr line to be able to 'follow' the DocEntries
1032 // when something *very* strange happens
1033 if( Debug::GetDebugFlag() )
1034 std::cerr<<newDocEntry->GetKey()<<" "<<newDocEntry->GetVR()<<std::endl;
1041 // an Item Starter found elsewhere but the first position
1042 // of a SeqEntry means previous entry was a Sequence
1043 // but we didn't get it (private Sequence + Implicit VR)
1044 // we have to backtrack.
1045 if ( !first && newDocEntry->IsItemStarter() )
1047 // Debug message within the method !
1048 newDocEntry = Backtrack(newDocEntry);
1052 PreviousDocEntry = newDocEntry;
1056 newDataEntry = dynamic_cast<DataEntry*>(newDocEntry);
1060 //////////////////////////// DataEntry
1062 vr = newDocEntry->GetVR();
1064 if ( !set->AddEntry( newDataEntry ) )
1066 gdcmDebugMacro( "in ParseDES : cannot add a DataEntry "
1067 << newDataEntry->GetKey()
1069 << newDataEntry->GetOffset() << " )" );
1074 newDataEntry->Delete();
1075 // Load only if we can add (not a duplicate key)
1076 LoadDocEntry( newDataEntry );
1079 if ( newDataEntry->GetElement() == 0x0000 ) // if on group length
1081 if ( newDataEntry->GetGroup()%2 != 0 ) // if Shadow Group
1083 if ( LoadMode & LD_NOSHADOW ) // if user asked to skip shad.gr
1085 std::string strLgrGroup = newDataEntry->GetString();
1087 if ( newDataEntry->IsUnfound() )
1089 lgrGroup = atoi(strLgrGroup.c_str());
1090 Fp->seekg(lgrGroup, std::ios::cur);
1091 //used = false; // never used
1092 RemoveEntry( newDocEntry ); // Remove and delete
1093 // bcc 5.5 is right "assigned a value that's never used"
1101 bool delimitor = newDataEntry->IsItemDelimitor();
1104 (!delim_mode && ((long)(Fp->tellg())-offset) >= l_max) )
1107 newDocEntry->Delete();
1111 // Just to make sure we are at the beginning of next entry.
1112 SkipToNextDocEntry(newDocEntry);
1116 /////////////////////// SeqEntry : VR = "SQ"
1118 unsigned long l = newDocEntry->GetReadLength();
1119 if ( l != 0 ) // don't mess the delim_mode for 'zero-length sequence'
1121 if ( l == 0xffffffff )
1123 delim_mode_intern = true;
1127 delim_mode_intern = false;
1131 if ( (LoadMode & LD_NOSHADOWSEQ) && ! delim_mode_intern )
1133 // User asked to skip SeQuences *only* if they belong to Shadow Group
1134 if ( newDocEntry->GetGroup()%2 != 0 )
1136 Fp->seekg( l, std::ios::cur);
1137 newDocEntry->Delete(); // Delete, not in the set
1141 if ( (LoadMode & LD_NOSEQ) && ! delim_mode_intern )
1143 // User asked to skip *any* SeQuence
1144 Fp->seekg( l, std::ios::cur);
1145 newDocEntry->Delete(); // Delete, not in the set
1148 // delay the dynamic cast as late as possible
1149 newSeqEntry = dynamic_cast<SeqEntry*>(newDocEntry);
1151 // no other way to create the Delimitor ...
1152 newSeqEntry->SetDelimitorMode( delim_mode_intern );
1154 // At the top of the hierarchy, stands a Document. When "set"
1155 // is a Document, then we are building the first depth level.
1156 // Hence the SeqEntry we are building simply has a depth
1158 if ( set == this ) // ( dynamic_cast< Document* > ( set ) )
1160 newSeqEntry->SetDepthLevel( 1 );
1162 // But when "set" is already a SQItem, we are building a nested
1163 // sequence, and hence the depth level of the new SeqEntry
1164 // we are building, is one level deeper:
1166 // time waste hunting
1167 else if (SQItem *parentSQItem = dynamic_cast< SQItem* > ( set ) )
1169 newSeqEntry->SetDepthLevel( parentSQItem->GetDepthLevel() + 1 );
1173 { // Don't try to parse zero-length sequences
1175 gdcmDebugMacro( "Entry in ParseSQ, delim " << delim_mode_intern
1176 << " at offset " << std::hex
1177 << newDocEntry->GetOffset() );
1179 ParseSQ( newSeqEntry,
1180 newDocEntry->GetOffset(),
1181 l, delim_mode_intern);
1183 gdcmDebugMacro( "Exit from ParseSQ, delim " << delim_mode_intern);
1186 if ( !set->AddEntry( newSeqEntry ) )
1188 gdcmWarningMacro( "in ParseDES : cannot add a SeqEntry "
1189 << newSeqEntry->GetKey()
1191 << newSeqEntry->GetOffset() << " )" );
1196 newDocEntry->Delete();
1199 if ( !delim_mode && ((long)(Fp->tellg())-offset) >= l_max)
1202 newDocEntry->Delete();
1205 } // end SeqEntry : VR = "SQ"
1209 newDocEntry->Delete();
1213 gdcmDebugMacro( "Exit from ParseDES, delim-mode " << delim_mode );
1217 * \brief Parses a Sequence ( SeqEntry after SeqEntry)
1218 * @return parsed length for this level
1220 void Document::ParseSQ( SeqEntry *seqEntry,
1221 long offset, long l_max, bool delim_mode)
1223 int SQItemNumber = 0;
1225 long offsetStartCurrentSQItem = offset;
1229 // the first time, we read the fff0,e000 of the first SQItem
1230 DocEntry *newDocEntry = ReadNextDocEntry();
1234 gdcmWarningMacro("in ParseSQ : should never get here!");
1239 if ( newDocEntry->IsSequenceDelimitor() )
1241 seqEntry->SetDelimitationItem( newDocEntry );
1242 newDocEntry->Delete();
1246 if ( !delim_mode && ((long)(Fp->tellg())-offset) >= l_max)
1248 newDocEntry->Delete();
1251 // create the current SQItem
1252 SQItem *itemSQ = SQItem::New( seqEntry->GetDepthLevel() );
1253 unsigned int l = newDocEntry->GetReadLength();
1255 if ( l == 0xffffffff )
1264 // remove fff0,e000, created out of the SQItem
1265 Fp->seekg(offsetStartCurrentSQItem, std::ios::beg);
1266 // fill up the current SQItem, starting at the beginning of fff0,e000
1268 ParseDES(itemSQ, offsetStartCurrentSQItem, l+8, dlm_mod);
1270 offsetStartCurrentSQItem = Fp->tellg();
1272 seqEntry->AddSQItem( itemSQ, SQItemNumber );
1274 newDocEntry->Delete();
1276 if ( !delim_mode && ((long)(Fp->tellg())-offset ) >= l_max )
1284 * \brief When a private Sequence + Implicit VR is encountered
1285 * we cannot guess it's a Sequence till we find the first
1286 * Item Starter. We then backtrack to do the job.
1287 * @param docEntry Item Starter that warned us
1289 DocEntry *Document::Backtrack(DocEntry *docEntry)
1291 // delete the Item Starter, built erroneously out of any Sequence
1292 // it's not yet in the HTable/chained list
1295 // Get all info we can from PreviousDocEntry
1296 uint16_t group = PreviousDocEntry->GetGroup();
1297 uint16_t elem = PreviousDocEntry->GetElement();
1298 uint32_t lgt = PreviousDocEntry->GetLength();
1299 long offset = PreviousDocEntry->GetOffset();
1301 gdcmDebugMacro( "Backtrack :" << std::hex << group
1303 << " at offset " << offset );
1304 RemoveEntry( PreviousDocEntry );
1306 // forge the Seq Entry
1307 DocEntry *newEntry = NewSeqEntry(group, elem);
1308 newEntry->SetLength(lgt);
1309 newEntry->SetOffset(offset);
1311 // Move back to the beginning of the Sequence
1312 Fp->seekg( 0, std::ios::beg);
1313 Fp->seekg(offset, std::ios::cur);
1319 * \brief Loads (or not) the element content depending if its length exceeds
1320 * or not the value specified with Document::SetMaxSizeLoadEntry()
1321 * @param entry Header Entry (Dicom Element) to be dealt with
1322 * @param forceLoad whether you want to force loading of 'long' elements
1324 void Document::LoadDocEntry(DocEntry *entry, bool forceLoad)
1326 uint16_t group = entry->GetGroup();
1327 uint16_t elem = entry->GetElement();
1328 const VRKey &vr = entry->GetVR();
1329 uint32_t length = entry->GetLength();
1331 Fp->seekg((long)entry->GetOffset(), std::ios::beg);
1333 // A SeQuence "contains" a set of Elements.
1334 // (fffe e000) tells us an Element is beginning
1335 // (fffe e00d) tells us an Element just ended
1336 // (fffe e0dd) tells us the current SeQuence just ended
1338 // (fffe 0000) is an 'impossible' tag value,
1339 // found in MR-PHILIPS-16-Multi-Seq.dcm
1341 if ( (group == 0xfffe && elem != 0x0000 ) || vr == "SQ" )
1343 // NO more value field for SQ !
1347 DataEntry *dataEntryPtr = dynamic_cast< DataEntry* >(entry);
1353 // When the length is zero things are easy:
1356 dataEntryPtr->SetBinArea(NULL,true);
1360 // The elements whose length is bigger than the specified upper bound
1363 std::ostringstream s;
1367 if (length > MaxSizeLoadEntry)
1369 dataEntryPtr->SetBinArea(NULL,true);
1370 dataEntryPtr->SetState(DataEntry::STATE_NOTLOADED);
1372 // to be sure we are at the end of the value ...
1373 Fp->seekg((long)entry->GetOffset()+(long)entry->GetLength(),
1379 LoadEntryBinArea(dataEntryPtr); // last one, not to erase length !
1383 * \brief Find the value Length of the passed Doc Entry
1384 * @param entry Header Entry whose length of the value shall be loaded.
1386 void Document::FindDocEntryLength( DocEntry *entry )
1387 throw ( FormatError )
1389 const VRKey &vr = entry->GetVR();
1392 if ( Filetype == ExplicitVR && !entry->IsImplicitVR() )
1394 if ( vr == "OB" || vr == "OW" || vr == "SQ" || vr == "UT"
1397 // The following reserved two bytes (see PS 3.5-2003, section
1398 // "7.1.2 Data element structure with explicit vr", p 27) must be
1399 // skipped before proceeding on reading the length on 4 bytes.
1400 Fp->seekg( 2L, std::ios::cur);
1401 uint32_t length32 = ReadInt32();
1403 if ( (vr == "OB" || vr == "OW") && length32 == 0xffffffff )
1408 lengthOB = FindDocEntryLengthOBOrOW();
1410 catch ( FormatUnexpected )
1412 // Computing the length failed (this happens with broken
1413 // files like gdcm-JPEG-LossLess3a.dcm). We still have a
1414 // chance to get the pixels by deciding the element goes
1415 // until the end of the file. Hence we artificially fix the
1416 // the length and proceed.
1417 gdcmWarningMacro( " Computing the length failed for " <<
1418 entry->GetKey() <<" in " <<GetFileName());
1420 long currentPosition = Fp->tellg();
1421 Fp->seekg(0L,std::ios::end);
1423 long lengthUntilEOF = (long)(Fp->tellg())-currentPosition;
1424 Fp->seekg(currentPosition, std::ios::beg);
1426 entry->SetReadLength(lengthUntilEOF);
1427 entry->SetLength(lengthUntilEOF);
1430 entry->SetReadLength(lengthOB);
1431 entry->SetLength(lengthOB);
1434 FixDocEntryFoundLength(entry, length32);
1438 // Length is encoded on 2 bytes.
1439 length16 = ReadInt16();
1441 // 0xffff means that we deal with 'No Length' Sequence
1442 // or 'No Length' SQItem
1443 if ( length16 == 0xffff)
1447 FixDocEntryFoundLength( entry, (uint32_t)length16 );
1452 // Either implicit VR or a non DICOM conformal (see note below) explicit
1453 // VR that ommited the VR of (at least) this element. Farts happen.
1454 // [Note: according to the part 5, PS 3.5-2001, section 7.1 p25
1455 // on Data elements "Implicit and Explicit VR Data Elements shall
1456 // not coexist in a Data Set and Data Sets nested within it".]
1457 // Length is on 4 bytes.
1459 // Well ... group 0002 is always coded in 'Explicit VR Litle Endian'
1460 // even if Transfer Syntax is 'Implicit VR ...'
1461 // --> Except for 'Implicit VR Big Endian Transfer Syntax GE Private'
1463 FixDocEntryFoundLength( entry, ReadInt32() );
1469 * \brief Find the Length till the next sequence delimiter
1470 * \warning NOT end user intended method !
1473 uint32_t Document::FindDocEntryLengthOBOrOW()
1474 throw( FormatUnexpected )
1476 // See PS 3.5-2001, section A.4 p. 49 on encapsulation of encoded pixel data.
1477 long positionOnEntry = Fp->tellg();
1478 bool foundSequenceDelimiter = false;
1479 uint32_t totalLength = 0;
1481 while ( !foundSequenceDelimiter )
1487 group = ReadInt16();
1490 catch ( FormatError )
1492 throw FormatError("Unexpected end of file encountered during ",
1493 "Document::FindDocEntryLengthOBOrOW()");
1495 // We have to decount the group and element we just read
1497 if ( group != 0xfffe || ( ( elem != 0xe0dd ) && ( elem != 0xe000 ) ) )
1499 long filePosition = Fp->tellg();
1501 "Neither an Item tag nor a Sequence delimiter tag on :"
1502 << std::hex << group << " , " << elem
1503 << ") -before- position x(" << filePosition << ")" );
1505 Fp->seekg(positionOnEntry, std::ios::beg);
1506 throw FormatUnexpected(
1507 "Neither an Item tag nor a Sequence delimiter tag.");
1509 if ( elem == 0xe0dd )
1511 foundSequenceDelimiter = true;
1513 uint32_t itemLength = ReadInt32();
1514 // We add 4 bytes since we just read the ItemLength with ReadInt32
1515 totalLength += itemLength + 4;
1516 SkipBytes(itemLength);
1518 if ( foundSequenceDelimiter )
1523 Fp->seekg( positionOnEntry, std::ios::beg);
1528 * \brief Find the Value Representation of the current Dicom Element.
1529 * @return Value Representation of the current Entry
1531 VRKey Document::FindDocEntryVR()
1533 if ( Filetype != ExplicitVR )
1534 return GDCM_VRUNKNOWN;
1536 long positionOnEntry = Fp->tellg();
1537 // Warning: we believe this is explicit VR (Value Representation) because
1538 // we used a heuristic that found "UL" in the first tag and/or
1539 // 'Transfer Syntax' told us it is.
1540 // Alas this doesn't guarantee that all the tags will be in explicit VR.
1541 // In some cases one finds implicit VR tags mixed within an explicit VR file.
1542 // Hence we make sure the present tag is in explicit VR and try to fix things
1543 // if it happens not to be the case.
1546 Fp->read(&(vr[0]),(size_t)2);
1548 if ( !CheckDocEntryVR(vr) )
1550 gdcmWarningMacro( "Unknown VR " << std::hex << "0x("
1551 << (unsigned int)vr[0] << "|" << (unsigned int)vr[1]
1552 << ") at offset :" << positionOnEntry );
1553 Fp->seekg(positionOnEntry, std::ios::beg);
1554 return GDCM_VRUNKNOWN;
1560 * \brief Check the correspondance between the VR of the header entry
1561 * and the taken VR. If they are different, the header entry is
1562 * updated with the new VR.
1563 * @param vr Dicom Value Representation
1564 * @return false if the VR is incorrect or if the VR isn't referenced
1565 * otherwise, it returns true
1567 bool Document::CheckDocEntryVR(const VRKey &vr)
1569 return Global::GetVR()->IsValidVR(vr);
1573 * \brief Skip a given Header Entry
1574 * \warning NOT end user intended method !
1575 * @param entry entry to skip
1577 void Document::SkipDocEntry(DocEntry *entry)
1579 SkipBytes(entry->GetLength());
1583 * \brief Skips to the beginning of the next Header Entry
1584 * \warning NOT end user intended method !
1585 * @param currentDocEntry entry to skip
1587 void Document::SkipToNextDocEntry(DocEntry *currentDocEntry)
1589 int l = currentDocEntry->GetReadLength();
1590 if ( l == -1 ) // length = 0xffff shouldn't appear here ...
1591 // ... but PMS imagers happen !
1593 Fp->seekg((long)(currentDocEntry->GetOffset()), std::ios::beg);
1594 if (currentDocEntry->GetGroup() != 0xfffe) // for fffe pb
1596 Fp->seekg( (long)(currentDocEntry->GetReadLength()),std::ios::cur);
1601 * \brief When the length of an element value is obviously wrong (because
1602 * the parser went Jabberwocky) one can hope improving things by
1603 * applying some heuristics.
1604 * @param entry entry to check
1605 * @param foundLength first assumption about length
1607 void Document::FixDocEntryFoundLength(DocEntry *entry,
1608 uint32_t foundLength)
1610 entry->SetReadLength( foundLength );// will be updated only if a bug is found
1611 if ( foundLength == 0xffffffff)
1616 uint16_t gr = entry->GetGroup();
1617 uint16_t elem = entry->GetElement();
1619 if ( foundLength % 2)
1621 gdcmWarningMacro( "Warning : Tag with uneven length " << foundLength
1622 << " in x(" << std::hex << gr << "," << elem <<")");
1625 //////// Fix for some naughty General Electric images.
1626 // Allthough not recent many such GE corrupted images are still present
1627 // on Creatis hard disks. Hence this fix shall remain when such images
1628 // are no longer in use (we are talking a few years, here)...
1629 // Note: XMedCon probably uses such a trick since it is able to read
1630 // those pesky GE images ...
1631 if ( foundLength == 13)
1633 // Only happens for this length !
1634 if ( gr != 0x0008 || ( elem != 0x0070 && elem != 0x0080 ) )
1637 entry->SetReadLength(10); // a bug is to be fixed !?
1641 //////// Fix for some brain-dead 'Leonardo' Siemens images.
1642 // Occurence of such images is quite low (unless one leaves close to a
1643 // 'Leonardo' source. Hence, one might consider commenting out the
1644 // following fix on efficiency reasons.
1645 else if ( gr == 0x0009 && ( elem == 0x1113 || elem == 0x1114 ) )
1648 entry->SetReadLength(4); // a bug is to be fixed !
1651 else if ( entry->GetVR() == "SQ" )
1653 foundLength = 0; // ReadLength is unchanged
1656 //////// We encountered a 'delimiter' element i.e. a tag of the form
1657 // "fffe|xxxx" which is just a marker. Delimiters length should not be
1658 // taken into account.
1659 else if ( gr == 0xfffe )
1661 // According to the norm, fffe|0000 shouldn't exist. BUT the Philips
1662 // image gdcmData/gdcm-MR-PHILIPS-16-Multi-Seq.dcm happens to
1663 // causes extra troubles...
1664 if ( entry->GetElement() != 0x0000 )
1670 foundLength=12; // to skip the mess that follows this bugged Tag !
1673 entry->SetLength(foundLength);
1677 * \brief Apply some heuristics to predict whether the considered
1678 * element value contains/represents an integer or not.
1679 * @param entry The element value on which to apply the predicate.
1680 * @return The result of the heuristical predicate.
1682 bool Document::IsDocEntryAnInteger(DocEntry *entry)
1684 uint16_t elem = entry->GetElement();
1685 uint16_t group = entry->GetGroup();
1686 const VRKey &vr = entry->GetVR();
1687 uint32_t length = entry->GetLength();
1689 // When we have some semantics on the element we just read, and if we
1690 // a priori know we are dealing with an integer, then we shall be
1691 // able to swap it's element value properly.
1692 if ( elem == 0 ) // This is the group length of the group
1700 // Although this should never happen, still some images have a
1701 // corrupted group length [e.g. have a glance at offset x(8336) of
1702 // gdcmData/gdcm-MR-PHILIPS-16-Multi-Seq.dcm.
1703 // Since for dicom compliant and well behaved headers, the present
1704 // test is useless (and might even look a bit paranoid), when we
1705 // encounter such an ill-formed image, we simply display a warning
1706 // message and proceed on parsing (while crossing fingers).
1707 long filePosition = Fp->tellg();
1708 gdcmWarningMacro( "Erroneous Group Length element length on : ("
1709 << std::hex << group << " , " << elem
1710 << ") -before- position x(" << filePosition << ")"
1711 << "lgt : " << length );
1715 if ( vr == "UL" || vr == "US" || vr == "SL" || vr == "SS" )
1723 * \brief Discover what the swap code is (among little endian, big endian,
1724 * bad little endian, bad big endian).
1726 * @return false when we are absolutely sure
1727 * it's neither ACR-NEMA nor DICOM
1728 * true when we hope ours assuptions are OK
1730 bool Document::CheckSwap()
1737 // First, compare HostByteOrder and NetworkByteOrder in order to
1738 // determine if we shall need to swap bytes (i.e. the Endian type).
1739 bool net2host = Util::IsCurrentProcessorBigEndian();
1741 // The easiest case is the one of a 'true' DICOM header, we just have
1742 // to look for the string "DICM" inside the file preamble.
1745 char *entCur = deb + 128;
1746 if ( memcmp(entCur, "DICM", (size_t)4) == 0 )
1748 gdcmDebugMacro( "Looks like DICOM Version3 (preamble + DCM)" );
1750 // Group 0002 should always be VR, and the first element 0000
1751 // Let's be carefull (so many wrong headers ...)
1752 // and determine the value representation (VR) :
1753 // Let's skip to the first element (0002,0000) and check there if we find
1754 // "UL" - or "OB" if the 1st one is (0002,0001) -,
1755 // in which case we (almost) know it is explicit VR.
1756 // WARNING: if it happens to be implicit VR then what we will read
1757 // is the length of the group. If this ascii representation of this
1758 // length happens to be "UL" then we shall believe it is explicit VR.
1759 // We need to skip :
1760 // * the 128 bytes of File Preamble (often padded with zeroes),
1761 // * the 4 bytes of "DICM" string,
1762 // * the 4 bytes of the first tag (0002, 0000),or (0002, 0001)
1763 // i.e. a total of 136 bytes.
1766 // group 0x0002 *is always* Explicit VR Sometimes ,
1767 // even if elem 0002,0010 (Transfer Syntax) tells us the file is
1768 // *Implicit* VR (see former 'gdcmData/icone.dcm')
1770 if ( memcmp(entCur, "UL", (size_t)2) == 0 ||
1771 memcmp(entCur, "OB", (size_t)2) == 0 ||
1772 memcmp(entCur, "UI", (size_t)2) == 0 ||
1773 memcmp(entCur, "CS", (size_t)2) == 0 ) // CS, to remove later
1774 // when Write DCM *adds*
1776 // Use Document::dicom_vr to test all the possibilities
1777 // instead of just checking for UL, OB and UI !? group 0000
1779 Filetype = ExplicitVR;
1780 gdcmDebugMacro( "Group 0002 : Explicit Value Representation");
1784 Filetype = ImplicitVR;
1785 gdcmWarningMacro( "Group 0002 :Not an explicit Value Representation;"
1786 << "Looks like a bugged Header!");
1792 gdcmDebugMacro( "HostByteOrder != NetworkByteOrder, SwapCode = 4321");
1797 gdcmDebugMacro( "HostByteOrder = NetworkByteOrder, SwapCode = 1234");
1800 // Position the file position indicator at first tag
1801 // (i.e. after the file preamble and the "DICM" string).
1803 Fp->seekg(0, std::ios::beg); // FIXME : Is it usefull?
1805 Fp->seekg ( 132L, std::ios::beg);
1807 } // ------------------------------- End of DicomV3 ----------------
1809 // Alas, this is not a DicomV3 file and whatever happens there is no file
1810 // preamble. We can reset the file position indicator to where the data
1811 // is (i.e. the beginning of the file).
1813 gdcmWarningMacro( "Not a Kosher DICOM Version3 file (no preamble)");
1815 Fp->seekg(0, std::ios::beg);
1817 // Let's check 'No Preamble Dicom File' :
1818 // Should start with group 0x0002
1819 // and be Explicit Value Representation
1821 s16 = *((uint16_t *)(deb));
1834 if ( SwapCode != 0 )
1836 if ( memcmp(entCur, "UL", (size_t)2) == 0 ||
1837 memcmp(entCur, "OB", (size_t)2) == 0 ||
1838 memcmp(entCur, "UI", (size_t)2) == 0 ||
1839 memcmp(entCur, "SH", (size_t)2) == 0 ||
1840 memcmp(entCur, "AE", (size_t)2) == 0 ||
1841 memcmp(entCur, "OB", (size_t)2) == 0 )
1843 Filetype = ExplicitVR;
1844 gdcmDebugMacro( "Group 0002 : Explicit Value Representation");
1848 // ------------------------------- End of 'No Preamble' DicomV3 -------------
1850 // Our next best chance would be to be considering a 'clean' ACR/NEMA file.
1851 // By clean we mean that the length of the first group is written down.
1852 // If this is the case and since the length of the first group HAS to be
1853 // four (bytes), then determining the proper swap code is straightforward.
1856 // We assume the array of char we are considering contains the binary
1857 // representation of a 32 bits integer. Hence the following dirty
1859 s32 = *((uint32_t *)(entCur));
1879 // We are out of luck. It is not a DicomV3 nor a 'clean' ACR/NEMA file.
1880 // It is time for despaired wild guesses.
1881 // So, let's check if this file wouldn't happen to be 'dirty' ACR/NEMA,
1882 // i.e. the 'group length' element is not present :
1884 // check the supposed-to-be 'group number'
1885 // in ( 0x0001 .. 0x0008 )
1886 // to determine ' SwapCode' value .
1887 // Only 0 or 4321 will be possible
1888 // (no oportunity to check for the formerly well known
1889 // ACR-NEMA 'Bad Big Endian' or 'Bad Little Endian'
1890 // if unsuccessfull (i.e. neither 0x0002 nor 0x0200 etc-3, 4, ..., 8-)
1891 // the file IS NOT ACR-NEMA nor DICOM V3
1892 // Find a trick to tell it the caller...
1894 s16 = *((uint16_t *)(deb));
1921 gdcmWarningMacro("ACR/NEMA unfound swap info (Hopeless !)");
1929 * \brief Change the Byte Swap code.
1931 void Document::SwitchByteSwapCode()
1933 gdcmDebugMacro( "Switching Byte Swap code from "<< SwapCode
1934 << " at: 0x" << std::hex << Fp->tellg() );
1935 if ( SwapCode == 1234 )
1939 else if ( SwapCode == 4321 )
1943 else if ( SwapCode == 3412 )
1947 else if ( SwapCode == 2143 )
1951 gdcmDebugMacro( " Into: "<< SwapCode );
1955 * \brief during parsing, Header Elements too long are not loaded in memory
1956 * @param newSize new size
1958 void Document::SetMaxSizeLoadEntry(long newSize)
1964 if ((uint32_t)newSize >= (uint32_t)0xffffffff )
1966 MaxSizeLoadEntry = 0xffffffff;
1969 MaxSizeLoadEntry = newSize;
1973 * \brief Read the next tag WITHOUT loading it's value
1974 * (read the 'Group Number', the 'Element Number',
1975 * gets the Dict Entry
1976 * gets the VR, gets the length, gets the offset value)
1977 * @return On succes : the newly created DocEntry, NULL on failure.
1979 DocEntry *Document::ReadNextDocEntry()
1986 group = ReadInt16();
1989 catch ( FormatError )
1991 // We reached the EOF (or an error occured) therefore
1992 // header parsing has to be considered as finished.
1996 // Sometimes file contains groups of tags with reversed endianess.
1997 HandleBrokenEndian(group, elem);
1999 // In 'true DICOM' files Group 0002 is always little endian
2000 if ( HasDCMPreamble )
2001 HandleOutOfGroup0002(group, elem);
2003 VRKey vr = FindDocEntryVR();
2007 if ( vr == GDCM_VRUNKNOWN )
2009 if ( elem == 0x0000 ) // Group Length
2011 realVR = "UL"; // must be UL
2013 else if (group%2 == 1 && (elem >= 0x0010 && elem <=0x00ff ))
2015 // DICOM PS 3-5 7.8.1 a) states that those
2016 // (gggg-0010->00FF where gggg is odd) attributes have to be LO
2021 DictEntry *dictEntry = GetDictEntry(group,elem);
2024 realVR = dictEntry->GetVR();
2025 dictEntry->Unregister();
2029 // gdcmDebugMacro( "Found VR: " << vr << " / Real VR: " << realVR );
2032 if ( Global::GetVR()->IsVROfSequence(realVR) )
2033 newEntry = NewSeqEntry(group, elem);
2036 newEntry = NewDataEntry(group, elem, realVR);
2037 static_cast<DataEntry *>(newEntry)->SetState(DataEntry::STATE_NOTLOADED);
2040 if ( vr == GDCM_VRUNKNOWN )
2042 if ( Filetype == ExplicitVR )
2044 // We thought this was explicit VR, but we end up with an
2045 // implicit VR tag. Let's backtrack.
2046 if ( newEntry->GetGroup() != 0xfffe )
2049 int offset = Fp->tellg();
2051 "Entry (%04x,%04x) at x(%x) should be Explicit VR\n",
2052 newEntry->GetGroup(), newEntry->GetElement(), offset );
2053 gdcmWarningMacro( msg.c_str() );
2056 newEntry->SetImplicitVR();
2061 FindDocEntryLength(newEntry);
2063 catch ( FormatError )
2070 newEntry->SetOffset(Fp->tellg());
2076 * \brief Handle broken private tag from Philips NTSCAN
2077 * where the endianess is being switched to BigEndian
2078 * for no apparent reason
2081 void Document::HandleBrokenEndian(uint16_t &group, uint16_t &elem)
2083 // Endian reversion.
2084 // Some files contain groups of tags with reversed endianess.
2085 static int reversedEndian = 0;
2086 // try to fix endian switching in the middle of headers
2087 if ((group == 0xfeff) && (elem == 0x00e0))
2089 // start endian swap mark for group found
2091 SwitchByteSwapCode();
2096 else if (group == 0xfffe && elem == 0xe00d && reversedEndian)
2098 // end of reversed endian group
2100 SwitchByteSwapCode();
2102 else if (group == 0xfeff && elem == 0xdde0)
2104 // reversed Sequence Terminator found
2105 // probabely a bug in the header !
2106 // Do what you want, it breaks !
2108 //SwitchByteSwapCode();
2109 gdcmWarningMacro( "Should never get here! reversed Sequence Terminator!" );
2114 else if (group == 0xfffe && elem == 0xe0dd)
2116 gdcmDebugMacro( "Straight Sequence Terminator." );
2121 * \brief Group 0002 is always coded Little Endian
2122 * whatever Transfer Syntax is
2125 void Document::HandleOutOfGroup0002(uint16_t &group, uint16_t &elem)
2127 // Endian reversion.
2128 // Some files contain groups of tags with reversed endianess.
2129 if ( !Group0002Parsed && group != 0x0002)
2131 Group0002Parsed = true;
2132 // we just came out of group 0002
2133 // if Transfer Syntax is Big Endian we have to change CheckSwap
2135 std::string ts = GetTransferSyntax();
2136 if ( ts == GDCM_UNKNOWN )
2138 gdcmDebugMacro("True DICOM File, with NO Transfer Syntax (?!) " );
2141 if ( !Global::GetTS()->IsTransferSyntax(ts) )
2143 gdcmWarningMacro("True DICOM File, with illegal Transfer Syntax: ["
2148 // Group 0002 is always 'Explicit ...'
2149 // even when Transfer Syntax says 'Implicit ..."
2151 if ( Global::GetTS()->GetSpecialTransferSyntax(ts) ==
2152 TS::ImplicitVRLittleEndian )
2154 Filetype = ImplicitVR;
2157 // FIXME Strangely, this works with
2158 //'Implicit VR BigEndian Transfer Syntax (GE Private)
2160 // --> Probabely normal, since we considered we never have
2161 // to trust manufacturers.
2162 // (we find very often 'Implicit VR' tag,
2163 // even when Transfer Syntax tells us it's Explicit ...
2164 if ( Global::GetTS()->GetSpecialTransferSyntax(ts) ==
2165 TS::ExplicitVRBigEndian )
2167 gdcmDebugMacro("Transfer Syntax Name = ["
2168 << GetTransferSyntaxName() << "]" );
2169 SwitchByteSwapCode();
2170 group = SwapShort(group);
2171 elem = SwapShort(elem);
2176 //-----------------------------------------------------------------------------
2179 //-----------------------------------------------------------------------------
2180 } // end namespace gdcm