]> Creatis software - gdcm.git/blob - src/gdcmParser.h
* DicomDir : clean code, add methods, set variables in protected or private
[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 PrintEntry(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);  // needed by gdcmFile
102    guint16 UnswapShort(guint16); // needed by gdcmFile
103    guint32 UnswapLong(guint32);  // needed by gdcmFile
104
105 protected:
106 // Entry
107    int CheckIfEntryExistByNumber(guint16 Group, guint16 Elem ); // int !
108    virtual std::string GetEntryByName    (std::string tagName);
109    virtual std::string GetEntryVRByName  (std::string tagName);
110    virtual std::string GetEntryByNumber  (guint16 group, guint16 element);
111    virtual std::string GetEntryVRByNumber(guint16 group, guint16 element);
112
113    virtual bool SetEntryByName  (std::string content, std::string tagName);
114    virtual bool SetEntryByNumber(std::string content, guint16 group, guint16 element);
115    virtual bool SetEntryLengthByNumber(guint32 l, guint16 group, guint16 element);
116
117    virtual size_t GetEntryOffsetByNumber  (guint16 Group, guint16 Elem);
118    virtual void  *GetEntryVoidAreaByNumber(guint16 Group, guint16 Elem);   
119    virtual void  *LoadEntryVoidArea       (guint16 Group, guint16 Element);
120    virtual bool   SetEntryVoidAreaByNumber(void *a, guint16 Group, guint16 Elem);
121
122    virtual void UpdateShaEntries(void);
123
124 // Header entry
125    gdcmHeaderEntry *GetHeaderEntryByName  (std::string Name);
126    gdcmHeaderEntry *GetHeaderEntryByNumber(guint16 group, guint16 element); 
127
128    void LoadHeaderEntrySafe(gdcmHeaderEntry *);
129
130    void UpdateGroupLength(bool SkipSequence = false, FileType type = ImplicitVR);
131    void WriteEntries(FileType type, FILE *);
132
133 // Variables
134    FILE *fp;
135    FileType filetype; // ACR, ACR_LIBIDO, ExplicitVR, ImplicitVR, Unknown
136
137    static const unsigned int HEADER_LENGTH_TO_READ; 
138    static const unsigned int MAX_SIZE_LOAD_ELEMENT_VALUE;
139
140 protected:
141    int enableSequences;
142    int printLevel;
143
144 private:
145    // Read
146    void Parse(bool exception_on_error = false) throw(gdcmFormatError);
147
148    void LoadHeaderEntries    (void);
149    void LoadHeaderEntry      (gdcmHeaderEntry *);
150    void AddHeaderEntry       (gdcmHeaderEntry *);
151    void FindHeaderEntryLength(gdcmHeaderEntry *);
152    void FindHeaderEntryVR    (gdcmHeaderEntry *);
153    bool CheckHeaderEntryVR   (gdcmHeaderEntry *, VRKey);
154
155    std::string GetHeaderEntryValue  (gdcmHeaderEntry *);
156    std::string GetHeaderEntryUnvalue(gdcmHeaderEntry *);
157
158    void SkipHeaderEntry          (gdcmHeaderEntry *);
159    void FixHeaderEntryFoundLength(gdcmHeaderEntry *, guint32);
160    bool IsHeaderEntryAnInteger   (gdcmHeaderEntry *);
161
162    guint32 FindHeaderEntryLengthOB(void);
163
164    guint16 ReadInt16(void);
165    guint32 ReadInt32(void);
166    void    SkipBytes(guint32);
167
168    void Initialise(void);
169    void CheckSwap(void);
170    void SwitchSwapToBigEndian(void);
171    void SetMaxSizeLoadEntry(long);
172
173    // Dict
174    gdcmDictEntry *GetDictEntryByName  (std::string Name);
175    gdcmDictEntry *GetDictEntryByNumber(guint16, guint16);
176
177    // HeaderEntry related utilities
178    gdcmHeaderEntry *ReadNextHeaderEntry   (void);
179    gdcmHeaderEntry *NewHeaderEntryByNumber(guint16 group, guint16 element);
180    gdcmHeaderEntry *NewHeaderEntryByName  (std::string Name);
181    gdcmDictEntry *NewVirtualDictEntry(guint16 group, guint16 element,
182                                       std::string vr = "Unknown",
183                                       std::string fourth = "Unknown",
184                                       std::string name   = "Unknown");
185    gdcmDictEntry *NewVirtualDictEntry(gdcmHeaderEntry *);
186
187    // Deprecated (Not used)
188    gdcmHeaderEntry *NewManualHeaderEntryToPubDict(std::string NewTagName,
189                                                   std::string VR);
190    guint32 GenerateFreeTagKeyInGroup(guint16 group);
191
192    // Refering underlying filename.
193    std::string filename; 
194
195    // Public dictionary used to parse this header
196    gdcmDict *RefPubDict;
197    // Optional "shadow dictionary" (private elements) used to parse this header
198    gdcmDict *RefShaDict;
199
200    TagHeaderEntryHT tagHT; // H Table (multimap), to provide fast access
201    ListTag listEntries;    // chained list, to keep the 'spacial' ordering 
202
203
204    // true if a gdcmHeaderEntry was added post parsing 
205    int wasUpdated;
206
207    // Swap code e.g. little, big, bad-big, bad-little endian). Warning:
208    // this code is not fixed during header parsing.
209    int sw;
210
211    // Size treshold above which an element value will NOT be loaded in 
212    // memory (to avoid loading the image/volume itself). By default,
213    // this upper bound is fixed to 1024 bytes (which might look reasonable
214    // when one considers the definition of the various VR contents).
215    guint32 MaxSizeLoadEntry;
216 };
217
218 //-----------------------------------------------------------------------------
219 #endif