]> Creatis software - gdcm.git/blob - src/gdcmParser.h
* src/gdcmFile.cxx : bug fix concerning the close of file
[gdcm.git] / src / gdcmParser.h
1 // gdcmParser.h
2 //-----------------------------------------------------------------------------
3 #ifndef GDCMPARSER_H
4 #define GDCMPARSER_H
5
6 #include "gdcmCommon.h"
7 #include "gdcmVR.h"
8 #include "gdcmTS.h"
9 #include "gdcmException.h"
10 #include "gdcmDictSet.h"
11 #include "gdcmHeaderEntry.h"
12
13 #include <map>
14 #include <list>       // for linking together *all* the Dicom Elements
15
16 //-----------------------------------------------------------------------------
17 typedef std::string VRKey;
18 typedef std::string VRAtr;
19 typedef std::map<VRKey, VRAtr> VRHT;    // Value Representation Hash Table
20
21 typedef std::multimap<TagKey, gdcmHeaderEntry*> TagHeaderEntryHT;
22 typedef std::pair<TagKey, gdcmHeaderEntry*> PairHT;
23 typedef std::pair<TagHeaderEntryHT::iterator,TagHeaderEntryHT::iterator> IterHT; 
24
25 typedef std::list<gdcmHeaderEntry*> ListTag; // for linking together the Elements
26
27 typedef std::string GroupKey;
28 typedef std::map<GroupKey, int> GroupHT;
29
30 //-----------------------------------------------------------------------------
31 /*
32  * \defgroup gdcmHeader
33  * \brief
34  */
35 class GDCM_EXPORT gdcmParser
36 {
37 public:
38    gdcmParser(bool exception_on_error = false);
39    gdcmParser(const char *filename, 
40               bool  exception_on_error = false, 
41               bool  enable_sequences   = false);
42    virtual ~gdcmParser(void);
43
44 // Print
45    /**
46     * \ingroup gdcmParser
47     * \brief   Sets the print level for the Dicom Header 
48     * \note    0 for Light Print; 1 for 'medium' Print, 2 for Heavy
49     */
50    void SetPrintLevel(int level) { printLevel = level; };
51    virtual void PrintPubEntry(std::ostream &os = std::cout);
52    virtual void PrintPubDict (std::ostream &os = std::cout);
53    virtual void PrintShaDict (std::ostream &os = std::cout);
54
55 // Standard values
56    inline std::string GetFileName(void) {return filename;}
57
58 // Dictionnaries
59    gdcmDict *GetPubDict(void);
60    gdcmDict *GetShaDict(void);
61    bool SetShaDict(gdcmDict *dict);
62    bool SetShaDict(DictKey dictName);
63
64 // Informations contained in the parser
65    bool IsReadable(void);
66    bool IsImplicitVRLittleEndianTransferSyntax(void);
67    bool IsExplicitVRLittleEndianTransferSyntax(void);
68    bool IsDeflatedExplicitVRLittleEndianTransferSyntax(void);
69    bool IsExplicitVRBigEndianTransferSyntax(void);
70    FileType GetFileType(void);
71
72 // Entries
73    /**
74     * \ingroup gdcmHeader
75     * \brief   returns a ref to the Dicom Header H table (multimap)
76     * return the Dicom Header H table
77     */
78    inline TagHeaderEntryHT &GetEntry(void) { return tagHT; };
79
80    /**
81     * \ingroup gdcmHeader
82     * \brief   returns a ref to the Dicom Header chained list
83     * return the Dicom Header chained list
84     */
85    inline ListTag &GetListEntry(void) { return listEntries; };
86
87 // Read (used in gdcmFile)
88    FILE *OpenFile(bool exception_on_error = false) throw(gdcmFileError);
89    bool CloseFile(void);
90
91 // Write (used in gdcmFile)
92    virtual bool Write(FILE *, FileType);
93
94    bool ReplaceOrCreateByNumber(std::string Value, guint16 Group, guint16 Elem);
95    bool ReplaceOrCreateByNumber(     char  *Value, guint16 Group, guint16 Elem);
96    bool ReplaceIfExistByNumber (     char  *Value, guint16 Group, guint16 Elem);
97
98 // System access
99    inline int GetSwapCode(void) { return sw; }
100    guint16 SwapShort(guint16); // needed by gdcmFile
101    guint32 SwapLong(guint32);  // for JPEG Files
102
103 protected:
104 // Entry
105    int CheckIfEntryExistByNumber(guint16 Group, guint16 Elem ); // int !
106    virtual std::string GetEntryByName    (std::string tagName);
107    virtual std::string GetEntryVRByName  (std::string tagName);
108    virtual std::string GetEntryByNumber  (guint16 group, guint16 element);
109    virtual std::string GetEntryVRByNumber(guint16 group, guint16 element);
110
111    virtual bool SetEntryByName  (std::string content, std::string tagName);
112    virtual bool SetEntryByNumber(std::string content, guint16 group, guint16 element);
113    virtual bool SetEntryLengthByNumber(guint32 l, guint16 group, guint16 element);
114
115    virtual size_t GetEntryOffsetByNumber  (guint16 Group, guint16 Elem);
116    virtual void  *GetEntryVoidAreaByNumber(guint16 Group, guint16 Elem);   
117    virtual void  *LoadEntryVoidArea       (guint16 Group, guint16 Element);
118    virtual bool   SetEntryVoidAreaByNumber(void *a, guint16 Group, guint16 Elem);
119
120 // Header entry
121    gdcmHeaderEntry *GetHeaderEntryByName  (std::string Name);
122    gdcmHeaderEntry *GetHeaderEntryByNumber(guint16 group, guint16 element); 
123
124    void LoadHeaderEntrySafe  (gdcmHeaderEntry *);
125
126    void UpdateGroupLength(bool SkipSequence = false, FileType type = ImplicitVR);
127    void WriteEntries(FileType type, FILE *);
128
129 // Variables
130    FILE *fp;
131    FileType filetype; // ACR, ACR_LIBIDO, ExplicitVR, ImplicitVR, Unknown
132
133    static const unsigned int HEADER_LENGTH_TO_READ; 
134    static const unsigned int MAX_SIZE_LOAD_ELEMENT_VALUE;
135
136 private:
137    // Read
138    void Parse(bool exception_on_error = false) throw(gdcmFormatError);
139
140    void LoadHeaderEntries    (void);
141    void LoadHeaderEntry      (gdcmHeaderEntry *);
142    void AddHeaderEntry       (gdcmHeaderEntry *);
143    void FindHeaderEntryLength(gdcmHeaderEntry *);
144    void FindHeaderEntryVR    (gdcmHeaderEntry *);
145
146    void SkipHeaderEntry          (gdcmHeaderEntry *);
147    void FixHeaderEntryFoundLength(gdcmHeaderEntry *, guint32);
148    bool IsHeaderEntryAnInteger   (gdcmHeaderEntry *);
149
150    guint32 FindHeaderEntryLengthOB(void);
151
152    guint16 ReadInt16(void);
153    guint32 ReadInt32(void);
154    void    SkipBytes(guint32);
155
156    void Initialise(void);
157    void CheckSwap(void);
158    void SwitchSwapToBigEndian(void);
159    void SetMaxSizeLoadEntry(long);
160
161    // Dict
162    gdcmDictEntry *GetDictEntryByName  (std::string Name);
163    gdcmDictEntry *GetDictEntryByNumber(guint16, guint16);
164
165    // HeaderEntry related utilities
166    gdcmHeaderEntry *ReadNextHeaderEntry   (void);
167    gdcmHeaderEntry *NewHeaderEntryByNumber(guint16 group, guint16 element);
168    gdcmHeaderEntry *NewHeaderEntryByName  (std::string Name);
169    gdcmDictEntry *NewVirtualDictEntry(guint16 group, guint16 element,
170                                       std::string vr = "Unknown",
171                                       std::string fourth = "Unknown",
172                                       std::string name   = "Unknown");
173
174    // Deprecated (Not used)
175    gdcmHeaderEntry *NewManualHeaderEntryToPubDict(std::string NewTagName,
176                                                   std::string VR);
177    guint32 GenerateFreeTagKeyInGroup(guint16 group);
178
179    // Refering underlying filename.
180    std::string filename; 
181
182    // Public dictionary used to parse this header
183    gdcmDict *RefPubDict;
184    // Optional "shadow dictionary" (private elements) used to parse this header
185    gdcmDict *RefShaDict;
186
187    TagHeaderEntryHT tagHT; // H Table (multimap), to provide fast access
188    ListTag listEntries;    // chained list, to keep the 'spacial' ordering 
189    int enableSequences;
190
191    // true if a gdcmHeaderEntry was added post parsing 
192    int wasUpdated;
193
194    // Swap code e.g. little, big, bad-big, bad-little endian). Warning:
195    // this code is not fixed during header parsing.
196    int sw;
197
198    // Size treshold above which an element value will NOT be loaded in 
199    // memory (to avoid loading the image/volume itself). By default,
200    // this upper bound is fixed to 1024 bytes (which might look reasonable
201    // when one considers the definition of the various VR contents).
202    guint32 MaxSizeLoadEntry;
203
204    // for PrintHeader
205    int printLevel;
206 };
207
208 //-----------------------------------------------------------------------------
209 #endif