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