]> Creatis software - gdcm.git/blob - src/gdcmParser.h
upgrade GdcmHeaderEntry Print Method for DICOMDIR
[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 gdcmParser
33  * \brief used by both gdcmHeader and gdcmDicomDir
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               bool  ignore_shadow      = false);
43    virtual ~gdcmParser(void);
44
45 // Print
46    /**
47     * \ingroup gdcmParser
48     * \brief   Sets the print level for the Dicom Header 
49     * \note    0 for Light Print; 1 for 'medium' Print, 2 for Heavy
50     */
51    void SetPrintLevel(int level) { printLevel = level; };
52    virtual void PrintEntry   (std::ostream &os = std::cout);
53    virtual void PrintPubDict (std::ostream &os = std::cout);
54    virtual void PrintShaDict (std::ostream &os = std::cout);
55
56 // Standard values
57    inline std::string GetFileName(void) {return filename;}
58
59 // Dictionnaries
60    gdcmDict *GetPubDict(void);
61    gdcmDict *GetShaDict(void);
62    bool SetShaDict(gdcmDict *dict);
63    bool SetShaDict(DictKey dictName);
64
65 // Informations contained in the parser
66    virtual bool IsReadable(void);
67    bool IsImplicitVRLittleEndianTransferSyntax(void);
68    bool IsExplicitVRLittleEndianTransferSyntax(void);
69    bool IsDeflatedExplicitVRLittleEndianTransferSyntax(void);
70    bool IsExplicitVRBigEndianTransferSyntax(void);
71    FileType GetFileType(void);
72
73 // Entries
74    /**
75     * \ingroup gdcmHeader
76     * \brief   returns a ref to the Dicom Header H table (multimap)
77     * return the Dicom Header H table
78     */
79    inline TagHeaderEntryHT &GetEntry(void) { return tagHT; };
80
81    /**
82     * \ingroup gdcmHeader
83     * \brief   returns a ref to the Dicom Header chained list
84     * return the Dicom Header chained list
85     */
86    inline ListTag &GetListEntry(void) { return listEntries; };
87
88 // Read (used in gdcmFile)
89    FILE *OpenFile(bool exception_on_error = false) throw(gdcmFileError);
90    bool CloseFile(void);
91
92 // Write (used in gdcmFile)
93    virtual bool Write(FILE *, FileType);
94
95    bool ReplaceOrCreateByNumber(std::string Value, guint16 Group, guint16 Elem);
96    bool ReplaceOrCreateByNumber(     char  *Value, guint16 Group, guint16 Elem);
97    bool ReplaceIfExistByNumber (     char  *Value, guint16 Group, guint16 Elem);
98
99 // System access
100    inline int GetSwapCode(void) { return sw; }
101    guint16 SwapShort(guint16);   // needed by gdcmFile
102    guint32 SwapLong(guint32);    // needed by gdcmFile
103    guint16 UnswapShort(guint16); // needed by gdcmFile
104    guint32 UnswapLong(guint32);  // needed by gdcmFile
105
106 protected:
107 // Entry
108    int CheckIfEntryExistByNumber(guint16 Group, guint16 Elem ); // int !
109    virtual std::string GetEntryByName    (std::string tagName);
110    virtual std::string GetEntryVRByName  (std::string tagName);
111    virtual std::string GetEntryByNumber  (guint16 group, guint16 element);
112    virtual std::string GetEntryVRByNumber(guint16 group, guint16 element);
113
114    virtual bool SetEntryByName  (std::string content, std::string tagName);
115    virtual bool SetEntryByNumber(std::string content, guint16 group, guint16 element);
116    virtual bool SetEntryLengthByNumber(guint32 l, guint16 group, guint16 element);
117
118    virtual size_t GetEntryOffsetByNumber  (guint16 Group, guint16 Elem);
119    virtual void  *GetEntryVoidAreaByNumber(guint16 Group, guint16 Elem);   
120    virtual void  *LoadEntryVoidArea       (guint16 Group, guint16 Element);
121    virtual bool   SetEntryVoidAreaByNumber(void *a, guint16 Group, guint16 Elem);
122
123    virtual void UpdateShaEntries(void);
124
125 // Header entry
126    gdcmHeaderEntry *GetHeaderEntryByNumber  (guint16 group, guint16 element); 
127    gdcmHeaderEntry *GetHeaderEntryByName    (std::string Name);
128    IterHT           GetHeaderEntrySameNumber(guint16 group, guint16 element); 
129 // IterHT           GetHeaderEntrySameName  (std::string Name); 
130
131    void LoadHeaderEntrySafe(gdcmHeaderEntry *);
132
133    void UpdateGroupLength(bool SkipSequence = false, FileType type = ImplicitVR);
134    void WriteEntries(FileType type, FILE *);
135
136 // Variables
137    FILE *fp;
138    FileType filetype; // ACR, ACR_LIBIDO, ExplicitVR, ImplicitVR, Unknown
139
140    static const unsigned int HEADER_LENGTH_TO_READ; 
141    static const unsigned int MAX_SIZE_LOAD_ELEMENT_VALUE;
142
143 protected:
144    int enableSequences;
145    int printLevel;
146    
147    TagHeaderEntryHT tagHT; // H Table (multimap), to provide fast access
148    ListTag listEntries;    // chained list, to keep the 'spacial' ordering 
149    
150 private:
151    // Read
152    void Parse(bool exception_on_error = false) throw(gdcmFormatError);
153
154    void LoadHeaderEntries    (void);
155    void LoadHeaderEntry      (gdcmHeaderEntry *);
156    void AddHeaderEntry       (gdcmHeaderEntry *);
157    void FindHeaderEntryLength(gdcmHeaderEntry *);
158    void FindHeaderEntryVR    (gdcmHeaderEntry *);
159    bool CheckHeaderEntryVR   (gdcmHeaderEntry *, VRKey);
160
161    std::string GetHeaderEntryValue  (gdcmHeaderEntry *);
162    std::string GetHeaderEntryUnvalue(gdcmHeaderEntry *);
163
164    void SkipHeaderEntry          (gdcmHeaderEntry *);
165    void FixHeaderEntryFoundLength(gdcmHeaderEntry *, guint32);
166    bool IsHeaderEntryAnInteger   (gdcmHeaderEntry *);
167
168    guint32 FindHeaderEntryLengthOB(void);
169
170    guint16 ReadInt16(void);
171    guint32 ReadInt32(void);
172    void    SkipBytes(guint32);
173
174    void Initialise(void);
175    void CheckSwap(void);
176    void SwitchSwapToBigEndian(void);
177    void SetMaxSizeLoadEntry(long);
178
179    // DictEntry  related utilities
180    gdcmDictEntry *GetDictEntryByName  (std::string Name);
181    gdcmDictEntry *GetDictEntryByNumber(guint16, guint16);
182    gdcmDictEntry *NewVirtualDictEntry(guint16 group, 
183                                       guint16 element,
184                                       std::string vr     = "Unknown",
185                                       std::string fourth = "Unknown",
186                                       std::string name   = "Unknown");
187    gdcmDictEntry *NewVirtualDictEntry(gdcmHeaderEntry *);
188    
189    // HeaderEntry related utilities
190    gdcmHeaderEntry *ReadNextHeaderEntry   (void);
191    gdcmHeaderEntry *NewHeaderEntryByNumber(guint16 group, 
192                                            guint16 element);
193    gdcmHeaderEntry *NewHeaderEntryByName  (std::string Name);
194
195
196    // Deprecated (Not used)
197    gdcmHeaderEntry *NewManualHeaderEntryToPubDict(std::string NewTagName,
198                                                   std::string VR);
199    guint32 GenerateFreeTagKeyInGroup(guint16 group);
200
201    // Refering underlying filename.
202    std::string filename; 
203
204    // Public dictionary used to parse this header
205    gdcmDict *RefPubDict;
206    // Optional "shadow dictionary" (private elements) used to parse this header
207    gdcmDict *RefShaDict;
208
209    // = 1 if a gdcmHeaderEntry was added post parsing 
210    int wasUpdated;
211    
212    // =1 if user wants to skip shadow groups while parsing (to save space)
213    int ignoreShadow;
214
215    // Swap code e.g. little, big, bad-big, bad-little endian). Warning:
216    // this code is not fixed during header parsing.
217    int sw;
218
219    // Size treshold above which an element value will NOT be loaded in 
220    // memory (to avoid loading the image/volume itself). By default,
221    // this upper bound is fixed to 1024 bytes (which might look reasonable
222    // when one considers the definition of the various VR contents).
223    guint32 MaxSizeLoadEntry;
224 };
225
226 //-----------------------------------------------------------------------------
227 #endif