1 /*=========================================================================
4 Module: $RCSfile: gdcmDocument.h,v $
6 Date: $Date: 2008/09/15 15:49:22 $
7 Version: $Revision: 1.154 $
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 #ifndef _GDCMDOCUMENT_H_
20 #define _GDCMDOCUMENT_H_
24 #include "gdcmElementSet.h"
25 #include "gdcmException.h"
26 #include "gdcmDebug.h" // for LEGACY
27 #include "gdcmCommandManager.h"
33 namespace GDCM_NAME_SPACE
38 //-----------------------------------------------------------------------------
40 * \brief Derived by both GDCM_NAME_SPACE::File and GDCM_NAME_SPACE::DicomDir
42 class GDCM_EXPORT Document : public ElementSet
44 gdcmTypeMacro(Document);
47 typedef std::list<DicomElement> ListElements;
50 //Deprecated : use SetFileName() + Load()
51 //#ifndef GDCM_LEGACY_REMOVE
52 // virtual bool Load( std::string const &filename );
59 bool SetShaDict(Dict *dict);
60 bool SetShaDict(DictKey const &dictName);
62 // Informations contained in the GDCM_NAME_SPACE::Document
64 virtual bool IsReadable();
67 FileType GetFileType();
68 std::string GetTransferSyntax();
69 /// Return the Transfer Syntax as a string
70 std::string GetTransferSyntaxName();
73 /// 'Swap code' accessor (see SwapCode )
74 int GetSwapCode() { return SwapCode; }
77 /// Accessor to Filename
78 const std::string &GetFileName() const { return Filename; }
79 /// Accessor to Filename
80 virtual void SetFileName(std::string const &fileName)
81 { if (Filename != fileName)
82 Filename = fileName, IsDocumentModified = true; }
84 std::ifstream *OpenFile();
86 void WriteContent( std::ofstream *fp, FileType type, bool insideMetaElements, bool insideSequence );
89 virtual void LoadEntryBinArea(uint16_t group, uint16_t elem);
90 virtual void LoadEntryBinArea(DataEntry *entry);
92 void SetMaxSizeLoadEntry(long);
93 void AddForceLoadElement(uint16_t group, uint16_t elem);
95 // Ordering of Documents
96 bool operator<(Document &document);
99 * \brief Sets the LoadMode as a boolean string.
100 * LD_NOSEQ, LD_NOSHADOW, LD_NOSHADOWSEQ
101 ... (nothing more, right now)
102 * WARNING : before using NO_SHADOW, be sure *all* your files
103 * contain accurate values in the 0x0000 element (if any)
104 * of *each* Shadow Group. The parser will fail if the size is wrong !
105 * @param mode Load mode to be used
107 void SetLoadMode (int mode) { if (LoadMode != mode)
108 LoadMode=mode, IsDocumentModified = true; }
112 // Constructor and destructor are protected to forbid end user
113 // to instanciate from this class Document (only GDCM_NAME_SPACE::File and
114 // GDCM_NAME_SPACE::DicomDir are meaningfull).
118 virtual void CallStartMethod();
119 virtual void CallProgressMethod();
120 virtual void CallEndMethod();
122 uint16_t ReadInt16() throw ( FormatError );
123 uint32_t ReadInt32() throw ( FormatError );
125 /// \brief skips bytes inside the source file
126 void SkipBytes(uint32_t nBytes) { Fp->seekg((long)nBytes, std::ios::cur);}
127 int ComputeGroup0002Length( );
130 /// Refering underlying filename.
131 std::string Filename;
133 /// \brief Swap code gives an information on the byte order of a
134 /// supposed to be an int32, as it's read on disc
135 /// (depending on the image Transfer Syntax *and* on the processor endianess)
136 /// as opposed as it should in memory to be dealt as an int32.
138 /// - a 'Little Endian' image, read with a little endian processor
139 /// will have a SwapCode= 1234 (the order is OK; nothing to do)
140 /// - a 'Little Endian' image, read with a big endian procesor
141 /// will have a SwapCode= 4321 (the order is wrong; int32 an int16 must be
143 /// note : values 2143, 4321, 3412 remain for the ACR-NEMA time, and
144 /// the well known 'Bad Big Endian' and 'Bad Little Endian' codes
147 ///\brief whether we already parsed group 0002 (Meta Elements)
148 bool Group0002Parsed;
150 ///\brief whether file has a DCM Preamble
153 /// File Pointer, opened during Document parsing.
156 /// ACR, ACR_LIBIDO, ExplicitVR, ImplicitVR, Unknown
159 /// After opening the file, we read HEADER_LENGTH_TO_READ bytes.
160 static const unsigned int HEADER_LENGTH_TO_READ;
161 /// \brief Elements whose value is longer than MAX_SIZE_LOAD_ELEMENT_VALUE
163 static const unsigned int MAX_SIZE_LOAD_ELEMENT_VALUE;
165 /// User supplied list of elements to Anonymize
166 ListElements UserAnonymizeList;
168 /// User supplied list of elements to force Load
169 ListElements UserForceLoadList;
171 /// \brief Bit string integer (each one considered as a boolean)
172 /// Bit 0 : Skip Sequences, if possible
173 /// Bit 1 : Skip Shadow Groups if possible
174 /// Probabely, some more to add
177 /// \brief Whether the GDCM_NAME_SPACE::Document is already parsed/loaded :
178 /// False from the creation of the GDCM_NAME_SPACE::Document untill
179 /// GDCM_NAME_SPACE::Document:Load()
180 bool IsDocumentAlreadyLoaded; // FIXME : probabely useless now
182 /// Whether the GDCM_NAME_SPACE::Document was modified since the last Load()
183 bool IsDocumentModified;
188 bool DoTheLoadingDocumentJob();
190 // System access (meaning endian related !?)
191 void ReadBegBuffer(size_t l) throw ( FormatError );
192 uint16_t SwapShort(uint16_t);
193 uint32_t SwapLong(uint32_t);
194 double SwapDouble(double);
195 /// \brief Unswaps back the bytes of 2-bytes long integer
196 /// so they agree with the processor order.
197 uint16_t UnswapShort(uint16_t a) { return SwapShort(a);}
198 /// \brief Unswaps back the bytes of 4-byte long integer
199 /// so they agree with the processor order.
200 uint32_t UnswapLong(uint32_t a) { return SwapLong(a);}
203 void ParseDES(DocEntrySet *set, long offset, long l_max, bool delim_mode);
204 bool ParseSQ (SeqEntry *seq, long offset, long l_max, bool delim_mode);
206 void LoadDocEntry (DocEntry *e, bool forceLoad = false);
207 void FindDocEntryLength (DocEntry *e) throw ( FormatError );
208 uint32_t FindDocEntryLengthOBOrOW() throw( FormatUnexpected );
209 VRKey FindDocEntryVR();
210 bool CheckDocEntryVR (const VRKey &k);
212 void SkipDocEntry (DocEntry *entry);
213 void SkipToNextDocEntry (DocEntry *entry);
215 void FixDocEntryFoundLength(DocEntry *entry, uint32_t l);
216 bool IsDocEntryAnInteger (DocEntry *entry);
219 void SwitchByteSwapCode();
221 // DocEntry related utilities
222 DocEntry *ReadNextDocEntry();
226 void HandleBrokenEndian (uint16_t &group, uint16_t &elem);
227 void HandleOutOfGroup0002(uint16_t &group, uint16_t &elem);
228 DocEntry *Backtrack(DocEntry *docEntry, DocEntrySet *set);
232 /// value of the ??? for any progress bar
236 /// Public dictionary used to parse this header
238 /// \brief Optional "shadow dictionary" (private elements) used to parse
242 /// \brief Size threshold above which an element value will NOT be loaded
243 /// in memory (to avoid loading the image/volume itself). By default,
244 /// this upper bound is fixed to 1024 bytes (which might look reasonable
245 /// when one considers the definition of the various VR contents).
246 uint32_t MaxSizeLoadEntry;
248 /// \brief to allow any inner method to know current tag Group number
249 uint16_t CurrentGroup;
250 /// \brief to allow any inner method to know current tag Element number
251 uint16_t CurrentElem;
253 // uint32_t GenerateFreeTagKeyInGroup(uint16_t group);
254 // void BuildFlatHashTableRecurse( TagDocEntryHT &builtHT,
255 // DocEntrySet *set );
258 /// \brief buffer to avoid some freads
261 /// \brief to avoid time consuming ftellg
262 size_t CurrentOffsetPosition;
263 /// \brief to indicate if last supposed to be UN DataElement is not
264 /// (according to a private Dicom dictionary)
266 /// \brief whether an unexpected EOF was encountered
268 /// \brief to avoid infinite loop when illegal UN stands for OB
269 size_t OffsetOfPreviousParseDES;
272 } // end namespace gdcm
274 //-----------------------------------------------------------------------------