]> Creatis software - gdcm.git/blob - src/gdcmHeader.h
*ENH gdcmHeader constructor has one more parameter (default value : false)
[gdcm.git] / src / gdcmHeader.h
1 // $Header: /cvs/public/gdcm/src/Attic/gdcmHeader.h,v 1.43 2003/11/12 15:35:19 jpr Exp $
2
3 #ifndef GDCMHEADER_H
4 #define GDCMHEADER_H
5
6 #include "gdcmCommon.h"
7 #include "gdcmVR.h"
8 #include "gdcmTS.h"
9 #include "gdcmException.h"
10 #include "gdcmDictSet.h"
11 #include "gdcmElValue.h"
12 #include "gdcmElValSet.h"
13 #include <map>
14
15 typedef std::string VRKey;
16 typedef std::string VRAtr;
17 typedef std::map<VRKey, VRAtr> VRHT;    // Value Representation Hash Table
18
19 /// The purpose of an instance of gdcmHeader is to act as a container of
20 /// all the DICOM elements and their corresponding values (and
21 /// additionaly the corresponding DICOM dictionary entry) of the header
22 /// of a DICOM file.
23 ///
24 /// The typical usage of instances of class gdcmHeader is to classify a set of
25 /// dicom files according to header information e.g. to create a file hierarchy
26 /// reflecting the Patient/Study/Serie informations, or extracting a given
27 /// SerieId. Accesing the content (image[s] or volume[s]) is beyond the
28 /// functionality of this class and belongs to gdmcFile.
29 /// \note  The various entries of the explicit value representation (VR) shall
30 ///        be managed within a dictionary which is shared by all gdcmHeader
31 ///        instances.
32 /// \note  The gdcmHeader::Set*Tag* family members cannot be defined as
33 ///        protected due to Swig limitations for as Has_a dependency between
34 ///        gdcmFile and gdcmHeader.
35
36 class GDCM_EXPORT gdcmHeader {
37    void SkipBytes(guint32);
38 private:
39    /// Pointer to the Value Representation Hash Table which contains all
40    /// the VR of the DICOM version3 public dictionary. 
41    gdcmVR *dicom_vr;     // Not a class member for thread-safety reasons
42    /// Pointer to global dictionary container
43    gdcmDictSet *Dicts;   // Not a class member for thread-safety reasons
44    /// Public dictionary used to parse this header
45    gdcmDict *RefPubDict;
46    /// Optional "shadow dictionary" (private elements) used to parse this
47    /// header
48    gdcmDict *RefShaDict;
49    /// Pointer to the Transfert Syntax Hash Table which contains all
50    /// the TS of the DICOM version3 public dictionary. 
51    gdcmTS *dicom_ts;     // Not a class member for thread-safety reasons
52
53    /// ELement VALueS parsed with the PUBlic dictionary.
54    gdcmElValSet PubElValSet;
55    /// ELement VALueS parsed with the SHAdow dictionary.
56    gdcmElValSet ShaElValSet;
57    /// Refering underlying filename.
58    std::string filename; 
59   
60    int enableSequences;
61      
62    // FIXME sw should be an enum e.g.
63    //enum EndianType {
64       //LittleEndian, 
65       //BadLittleEndian,
66       //BigEndian, 
67       //BadBigEndian};
68    /// Swap code e.g. little, big, bad-big, bad-little endian). Warning:
69    /// this code is not fixed during header parsing.
70    int sw;
71
72    /// Size treshold above which an element value will NOT be loaded in 
73    /// memory (to avoid loading the image/volume itself). By default,
74    /// this upper bound is fixed to 1024 bytes (which might look reasonable
75    /// when one considers the definition of the various VR contents).
76    guint32 MaxSizeLoadElementValue;
77
78    guint16 ReadInt16(void);
79    guint32 ReadInt32(void);
80    guint32 FindLengthOB(void);
81    void Initialise(void);
82    void CheckSwap(void);
83    void SwitchSwapToBigEndian(void);
84    // CLEAN ME: NewManualElValToPubDict is NOT called any more.
85    gdcmElValue*  NewManualElValToPubDict(std::string NewTagName,
86                                          std::string VR);
87    void SetMaxSizeLoadElementValue(long);
88
89    gdcmDictEntry * GetDictEntryByNumber(guint16, guint16);
90    gdcmDictEntry * GetDictEntryByName  (std::string Name);
91
92    // ElValue related utilities
93    gdcmElValue * ReadNextElement(void);
94    gdcmElValue * NewElValueByNumber(guint16 group, guint16 element);
95    gdcmElValue * NewElValueByName  (std::string Name);
96
97    void FindLength          (gdcmElValue *);
98    void FindVR              (gdcmElValue *);
99    void LoadElementValue    (gdcmElValue *);
100    void LoadElementValueSafe(gdcmElValue *);
101    void SkipElementValue    (gdcmElValue *);
102    void FixFoundLength      (gdcmElValue*, guint32);
103    bool IsAnInteger         (gdcmElValue *);
104    void LoadElements(void);
105    
106 protected:
107    FILE * fp;
108    FileType filetype;
109    
110    gdcmElValue * GetElValueByNumber(guint16 group, guint16 element);
111    int CheckIfExistByNumber(guint16 Group, guint16 Elem );
112
113    guint16 SwapShort(guint16); // needed by gdcmFile
114    guint32 SwapLong(guint32);  // for JPEG Files :-(
115    bool OpenFile(bool exception_on_error = false)
116      throw(gdcmFileError);
117    bool CloseFile(void);
118    int write(std::ostream&);   
119    int anonymize(std::ostream&);  // FIXME : anonymize should be a friend ?
120 public:
121    bool IsReadable(void);
122    bool IsImplicitVRLittleEndianTransferSyntax(void);
123    bool IsExplicitVRLittleEndianTransferSyntax(void);
124    bool IsDeflatedExplicitVRLittleEndianTransferSyntax(void);
125    bool IsExplicitVRBigEndianTransferSyntax(void);
126    bool IsJPEGBaseLineProcess1TransferSyntax(void);
127    bool IsJPEGExtendedProcess2_4TransferSyntax(void); 
128    bool IsJPEGExtendedProcess3_5TransferSyntax(void);
129    bool IsJPEGSpectralSelectionProcess6_8TransferSyntax(void); 
130    bool IsRLELossLessTransferSyntax(void); 
131    bool IsJPEGLossless(void); 
132    bool IsJPEG2000(void); 
133    bool IsDicomV3(void); 
134       
135    virtual void ParseHeader(bool exception_on_error = false)
136      throw(gdcmFormatError);
137      
138    gdcmHeader( bool exception_on_error = false);
139    gdcmHeader(const char *filename, 
140               bool  exception_on_error = false, 
141               bool  enable_sequences   = false);
142               
143    virtual ~gdcmHeader();
144
145    std::string GetFileName(void) {return filename;}
146    
147    size_t GetPixelOffset(void);
148    size_t GetPixelAreaLength(void);
149
150    int    GetSwapCode(void) { return sw; }
151
152    // TODO Swig int SetPubDict(std::string filename);
153    // When some proprietary shadow groups are disclosed, we can set up
154    // an additional specific dictionary to access extra information.
155    // TODO Swig int SetShaDict(std::string filename);
156
157    std::string GetPubElValByName     (std::string TagName);
158    std::string GetPubElValRepByName  (std::string TagName);
159    std::string GetPubElValByNumber   (guint16 group, guint16 element);
160    std::string GetPubElValRepByNumber(guint16 group, guint16 element);
161    
162    size_t GetPubElValOffsetByNumber(guint16 Group, guint16 Elem);
163    void * GetPubElValVoidAreaByNumber(guint16 Group, guint16 Elem);   
164    void * LoadElementVoidArea(guint16 Group, guint16 Element);
165    
166    ListTag & GetListElem(void) { return PubElValSet.GetListElem(); };
167
168    TagElValueHT & GetPubElVal(void) { return PubElValSet.GetTagHt(); };
169    void   PrintPubElVal(std::ostream & os = std::cout);
170    void   PrintPubDict (std::ostream & os = std::cout);
171      
172    // TODO Swig std::string* GetShaTagNames(); 
173    std::string GetShaElValByName     (std::string TagName);
174    std::string GetShaElValRepByName  (std::string TagName);
175    std::string GetShaElValByNumber   (guint16 group, guint16 element);
176    std::string GetShaElValRepByNumber(guint16 group, guint16 element);
177
178    std::string GetElValByName     (std::string TagName);
179    std::string GetElValRepByName  (std::string TagName);
180    std::string GetElValByNumber   (guint16 group, guint16 element);
181    std::string GetElValRepByNumber(guint16 group, guint16 element);
182
183    int SetPubElValByName  (std::string content, std::string TagName);
184    int SetShaElValByName  (std::string content, std::string ShadowTagName);
185    
186    int SetPubElValByNumber(std::string content, guint16 group, guint16 element);
187    int SetShaElValByNumber(std::string content, guint16 group, guint16 element);
188    
189    int SetPubElValLengthByNumber(guint32 lgr, guint16 group, guint16 element);                                   
190
191    int ReplaceOrCreateByNumber(std::string Value, guint16 Group, guint16 Elem); 
192    int ReplaceOrCreateByNumber(     char * Value, guint16 Group, guint16 Elem);                                
193    int ReplaceIfExistByNumber (     char * Value, guint16 Group, guint16 Elem);
194                                   
195    int Write(FILE *, FileType);
196    
197  // Some heuristic based accessors, end user intended 
198   
199    int GetXSize(void);  
200    int GetYSize(void);
201    int GetZSize(void);
202    int GetBitsStored(void);
203    int GetBitsAllocated(void);
204    int GetSamplesPerPixel(void);
205    
206    int GetPlanarConfiguration(void);
207
208    int GetPixelSize(void);       
209    std::string GetPixelType(void);  
210    
211    std::string GetTransferSyntaxName(void);
212    int    HasLUT(void);
213    int    GetLUTNbits(void);
214    void * GetLUTRGBA(void);
215            
216
217 };
218
219 #endif