]> Creatis software - gdcm.git/blob - src/gdcmDicomDir.h
* FIX : memory leaks and the set of ArgDelete methods in gdcmDicomDir
[gdcm.git] / src / gdcmDicomDir.h
1 // gdcmDicomDir.h
2 //-----------------------------------------------------------------------------
3 #ifndef GDCMDICOMDIR_H
4 #define GDCMDICOMDIR_H
5
6 #include "gdcmHeader.h"
7 #include "gdcmCommon.h"
8 #include "gdcmPatient.h"
9 #include "gdcmMeta.h"
10 #include "gdcmDicomDirElement.h"
11
12 #include <list>
13 #include <vector>
14
15 //-----------------------------------------------------------------------------
16 typedef std::list<gdcmPatient *>   ListPatient;
17 typedef std::vector<gdcmHeader *>  ListHeader;
18
19 typedef GDCM_EXPORT void( gdcmMethod)(void * =NULL);
20 //-----------------------------------------------------------------------------
21 /*
22  * \defgroup gdcmDicomDir
23  * \brief    gdcmDicomDir defines an object representing a DICOMDIR in memory.
24  *
25  */
26 class GDCM_EXPORT gdcmDicomDir: public gdcmParser
27 {
28 public:
29 //   gdcmDicomDir(ListTag *l,         bool exception_on_error = false);
30    gdcmDicomDir(const char *FileName, 
31                 bool parseDir = false,
32                 bool exception_on_error = false);
33    
34    ~gdcmDicomDir(void);
35
36    void SetPrintLevel(int level) { printLevel = level; };
37    virtual void Print(std::ostream &os = std::cout);
38
39 // Informations contained in the parser
40    virtual bool IsReadable(void);
41    inline gdcmMeta   *GetMeta()      {return metaElems;};
42    inline ListPatient &GetPatients() {return patients;};
43
44 // Parsing
45    void ParseDirectory(void);
46
47    void SetStartMethod(gdcmMethod *,void * =NULL,gdcmMethod * =NULL);
48    void SetStartMethodArgDelete(gdcmMethod *);
49    void SetProgressMethod(gdcmMethod *,void * =NULL,gdcmMethod * =NULL);
50    void SetProgressMethodArgDelete(gdcmMethod *);
51    void SetEndMethod(gdcmMethod *,void * =NULL,gdcmMethod * =NULL);
52    void SetEndMethodArgDelete(gdcmMethod *);
53
54    inline float GetProgress(void)  {return(progress);};
55
56    inline void AbortProgress(void) {abort=true;};
57    inline bool IsAborted(void)     {return(abort);};
58
59 // Write
60    bool Write(std::string fileName);
61
62 // Types
63    typedef enum
64    {
65       GDCM_NONE,
66       GDCM_META,
67       GDCM_PATIENT,
68       GDCM_STUDY,
69       GDCM_SERIE,
70       GDCM_IMAGE,
71    } gdcmDicomDirType;
72    
73 protected:
74    void NewDicomDir(std::string path);
75    std::string GetPath(void);
76
77    void CallStartMethod(void);
78    void CallProgressMethod(void);
79    void CallEndMethod(void);
80
81 private:
82    void CreateDicomDir(void);
83    void AddObjectToEnd(gdcmDicomDirType type,
84                         ListTag::iterator begin,ListTag::iterator end);
85    void AddMetaToEnd   (ListTag::iterator begin,ListTag::iterator end);
86    void AddPatientToEnd(ListTag::iterator begin,ListTag::iterator end);
87    void AddStudyToEnd  (ListTag::iterator begin,ListTag::iterator end);
88    void AddSerieToEnd  (ListTag::iterator begin,ListTag::iterator end);
89    void AddImageToEnd  (ListTag::iterator begin,ListTag::iterator end);
90
91    void SetElements(std::string &path,ListHeader &list);
92    void SetElement (std::string &path,gdcmDicomDirType type,gdcmHeader *header);
93
94    static bool HeaderLessThan(gdcmHeader *header1,gdcmHeader *header2);
95
96    gdcmMeta *metaElems;
97    ListPatient patients;
98
99    gdcmMethod *startMethod;
100    gdcmMethod *progressMethod;
101    gdcmMethod *endMethod;
102    gdcmMethod *startMethodArgDelete;
103    gdcmMethod *progressMethodArgDelete;
104    gdcmMethod *endMethodArgDelete;
105    void *startArg;
106    void *progressArg;
107    void *endArg;
108
109    float progress;
110    bool abort;
111 };
112
113 //-----------------------------------------------------------------------------
114 #endif