]> Creatis software - gdcm.git/blob - src/gdcmDocument.h
* src/gdcmDocEntrySet.[h|cxx], gdcmDocument.[h|cxx] : amelioration of
[gdcm.git] / src / gdcmDocument.h
1 /*=========================================================================
2  
3   Program:   gdcm
4   Module:    $RCSfile: gdcmDocument.h,v $
5   Language:  C++
6   Date:      $Date: 2005/01/06 15:36:48 $
7   Version:   $Revision: 1.73 $
8  
9   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10   l'Image). All rights reserved. See Doc/License.txt or
11   http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
12  
13      This software is distributed WITHOUT ANY WARRANTY; without even
14      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15      PURPOSE.  See the above copyright notices for more information.
16  
17 =========================================================================*/
18
19 #ifndef GDCMDOCUMENT_H
20 #define GDCMDOCUMENT_H
21
22 #include "gdcmVR.h"
23 #include "gdcmDict.h"
24 #include "gdcmElementSet.h"
25
26 #include <map>
27 #include <list>
28 #include <fstream>
29
30 namespace gdcm 
31 {
32 class ValEntry;
33 class BinEntry;
34 class SeqEntry;
35 class Dict;
36 class RLEFramesInfo;
37 class JPEGFragmentsInfo;
38
39 enum TransferSyntaxType {
40   ImplicitVRLittleEndian = 0,
41   ImplicitVRLittleEndianDLXGE,
42   ExplicitVRLittleEndian,
43   DeflatedExplicitVRLittleEndian,
44   ExplicitVRBigEndian,
45   JPEGBaselineProcess1,
46   JPEGExtendedProcess2_4,
47   JPEGExtendedProcess3_5,
48   JPEGSpectralSelectionProcess6_8,
49   JPEGFullProgressionProcess10_12,
50   JPEGLosslessProcess14,
51   JPEGLosslessProcess14_1,
52   JPEG2000Lossless,
53   JPEG2000,
54   RLELossless,
55   UnknownTS
56 };
57
58 //-----------------------------------------------------------------------------
59 /**
60  * \brief Derived by both Header and DicomDir
61  */
62 class GDCM_EXPORT Document : public ElementSet
63 {
64 public:
65 // Informations contained in the parser
66    virtual bool IsReadable();
67    FileType GetFileType();
68
69    TransferSyntaxType GetTransferSyntax();
70
71    bool IsJPEGLossless();
72    bool IsJPEG2000();
73    bool IsJPEG();
74    bool IsEncapsulate();
75    bool IsDicomV3();
76
77    RLEFramesInfo* GetRLEInfo() { return RLEInfo; }
78    JPEGFragmentsInfo* GetJPEGInfo() { return JPEGInfo; }
79
80 // Dictionnaries
81    virtual void PrintPubDict (std::ostream &os = std::cout);
82    virtual void PrintShaDict (std::ostream &os = std::cout);
83
84    Dict* GetPubDict();
85    Dict* GetShaDict();
86    bool SetShaDict(Dict* dict);
87    bool SetShaDict(DictKey const & dictName);
88
89 // Swap code
90    /// 'Swap code' accessor (see \ref SwapCode )
91    int GetSwapCode() { return SwapCode; }
92    // System access (meaning endian related !?)
93    uint16_t SwapShort(uint16_t);   // needed by File
94    uint32_t SwapLong(uint32_t);    // needed by File
95    uint16_t UnswapShort(uint16_t); // needed by File
96    uint32_t UnswapLong(uint32_t);  // needed by File
97    
98 // Ordering of Documents
99    bool operator<(Document &document);
100
101 public:
102 // File I/O
103    /// Accessor to \ref Filename
104    const std::string &GetFileName() const { return Filename; }
105    /// Accessor to \ref Filename
106    void SetFileName(std::string const & fileName) { Filename = fileName; }
107
108    std::ifstream* OpenFile();
109    bool CloseFile();
110    void WriteContent( std::ofstream* fp, FileType type );
111
112 // Content entries
113    virtual bool SetEntryByName  (std::string const & content, 
114                                  TagName const & tagName );
115    virtual bool SetEntryByNumber(std::string const & content,
116                                  uint16_t group, uint16_t element);
117    virtual bool SetEntryByNumber(uint8_t* content, int lgth,
118                                  uint16_t group, uint16_t element);
119    virtual bool SetEntry(std::string const & content,ValEntry* entry);
120    virtual bool SetEntry(uint8_t* content, int lgth,BinEntry* entry);
121
122    virtual void* GetEntryBinAreaByNumber(uint16_t group, uint16_t elem);   
123
124    virtual std::string GetEntryByName    (TagName const & tagName);
125    virtual std::string GetEntryVRByName  (TagName const & tagName);
126    virtual std::string GetEntryByNumber  (uint16_t group, uint16_t elem);
127    virtual std::string GetEntryVRByNumber(uint16_t group, uint16_t elem);
128    virtual int GetEntryLengthByNumber(uint16_t group, uint16_t elem);
129
130    DocEntry* GetDocEntryByNumber(uint16_t group, uint16_t element); 
131    DocEntry* GetDocEntryByName  (TagName const & tagName);
132    ValEntry* GetValEntryByNumber(uint16_t group, uint16_t element); 
133    BinEntry* GetBinEntryByNumber(uint16_t group, uint16_t element); 
134
135    ValEntry* ReplaceOrCreateByNumber(std::string const & value,
136                                      uint16_t group, uint16_t elem,
137                                      TagName const & vr = GDCM_UNKNOWN);
138    BinEntry* ReplaceOrCreateByNumber(uint8_t* binArea, int lgth,
139                                      uint16_t group, uint16_t elem,
140                                      TagName const & vr = GDCM_UNKNOWN);
141    SeqEntry* ReplaceOrCreateByNumber(uint16_t group, uint16_t elem);
142
143    bool ReplaceIfExistByNumber ( std::string const & value,
144                                  uint16_t group, uint16_t elem );
145    
146    virtual void LoadEntryBinArea(uint16_t group, uint16_t elem);
147    virtual void LoadEntryBinArea(BinEntry* entry);
148
149    void LoadDocEntrySafe(DocEntry* entry);
150    TagDocEntryHT* BuildFlatHashTable();
151       
152 // Divers
153    static std::string GetTransferSyntaxValue(TransferSyntaxType type);
154
155 protected:
156 // Methods
157    // Constructor and destructor are protected to forbid end user 
158    // to instanciate from this class Document (only Header and
159    // DicomDir are meaningfull).
160    Document();
161    Document( std::string const & filename );
162    virtual ~Document();
163    
164    void ReadAndSkipEncapsulatedBasicOffsetTable();
165    void ComputeRLEInfo();
166    void ComputeJPEGFragmentInfo();
167    // Entry
168    bool CheckIfEntryExistByNumber(uint16_t group, uint16_t elem );
169
170    int ComputeGroup0002Length( FileType filetype );
171
172 // Variables
173    /// Refering underlying filename.
174    std::string Filename;
175
176    /// \brief SWap code (e.g. Big Endian, Little Endian, Bad Big Endian,
177    /// Bad Little Endian) according to the processor Endianity and
178    /// what is written on disc.
179    int SwapCode;
180
181    /// File Pointer, opened during Header parsing.
182    std::ifstream* Fp;
183
184    /// ACR, ACR_LIBIDO, ExplicitVR, ImplicitVR, Unknown
185    FileType Filetype;  
186
187    /// After opening the file, we read HEADER_LENGTH_TO_READ bytes.
188    static const unsigned int HEADER_LENGTH_TO_READ; 
189
190    /// \brief Elements whose value is longer than MAX_SIZE_LOAD_ELEMENT_VALUE
191    /// are NOT loaded.
192    static const unsigned int MAX_SIZE_LOAD_ELEMENT_VALUE;
193
194    /// \brief Elements whose value is longer than  MAX_SIZE_PRINT_ELEMENT_VALUE
195    /// are NOT printed.
196    /// \todo Currently not used since collides with #define in
197    ///       class DocEntry . See also
198    ///       method ref Document::SetMaxSizePrintEntry()
199    static const unsigned int MAX_SIZE_PRINT_ELEMENT_VALUE;
200
201    /// Store the RLE frames info obtained during parsing of pixels.
202    RLEFramesInfo* RLEInfo;
203
204    /// Store the JPEG fragments info obtained during parsing of pixels.
205    JPEGFragmentsInfo* JPEGInfo;
206
207 private:
208 // Methods
209    // Read
210    void ParseDES(DocEntrySet *set,long offset, long l_max, bool delim_mode);
211    void ParseSQ (SeqEntry *seq,   long offset, long l_max, bool delim_mode);
212
213    void LoadDocEntry         (DocEntry *);
214    void FindDocEntryLength   (DocEntry *) throw ( FormatError );
215    std::string FindDocEntryVR();
216    bool CheckDocEntryVR      (VRKey);
217
218    std::string GetDocEntryValue  (DocEntry *);
219    std::string GetDocEntryUnvalue(DocEntry *);
220
221    void SkipDocEntry          (DocEntry *);
222    void SkipToNextDocEntry    (DocEntry *);
223
224    void FixDocEntryFoundLength(DocEntry *, uint32_t);
225    bool IsDocEntryAnInteger   (DocEntry *);
226
227    uint32_t FindDocEntryLengthOB() throw( FormatUnexpected );
228
229    uint16_t ReadInt16() throw ( FormatError );
230    uint32_t ReadInt32() throw ( FormatError );
231    void     SkipBytes(uint32_t);
232    bool     ReadTag(uint16_t, uint16_t);
233    uint32_t ReadTagLength(uint16_t, uint16_t);
234
235    void Initialise();
236    bool CheckSwap();
237    void SwitchSwapToBigEndian();
238    void SetMaxSizeLoadEntry(long);
239    void SetMaxSizePrintEntry(long);
240
241    // DocEntry related utilities
242    DocEntry* ReadNextDocEntry();
243
244    uint32_t GenerateFreeTagKeyInGroup(uint16_t group);
245    void BuildFlatHashTableRecurse( TagDocEntryHT& builtHT,
246                                    DocEntrySet* set );
247
248    void HandleBrokenEndian(uint16_t  group, uint16_t  elem);
249
250 // Variables
251    /// Public dictionary used to parse this header
252    Dict* RefPubDict;
253    
254    /// \brief Optional "shadow dictionary" (private elements) used to parse
255    /// this header
256    Dict* RefShaDict;
257
258    /// \brief Size threshold above which an element value will NOT be loaded
259    /// in memory (to avoid loading the image/volume itself). By default,
260    /// this upper bound is fixed to 1024 bytes (which might look reasonable
261    /// when one considers the definition of the various VR contents).
262    uint32_t MaxSizeLoadEntry;
263    
264    /// \brief Size threshold above which an element value will NOT be *printed*
265    /// in order no to polute the screen output. By default, this upper bound
266    /// is fixed to 64 bytes.
267    uint32_t MaxSizePrintEntry;   
268
269 private:
270    friend class File;
271 };
272 } // end namespace gdcm
273
274 //-----------------------------------------------------------------------------
275 #endif