]> Creatis software - gdcm.git/blob - src/gdcmDicomDir.h
* ENH : add callback and methods to get the progression of dicomDir
[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    inline void SetStartMethod(gdcmMethod *method,void *arg=NULL)    {startMethod=method;startArg=arg;};
48    inline void SetProgressMethod(gdcmMethod *method,void *arg=NULL) {progressMethod=method;progressArg=arg;};
49    inline void SetEndMethod(gdcmMethod *method,void *arg=NULL)      {endMethod=method;endArg=arg;};
50
51    inline float GetProgress(void)                   {return(progress);};
52
53    inline void AbortProgress(void)                  {abort=true;};
54    inline bool IsAborted(void)                      {return(abort);};
55
56 // Write
57    bool Write(std::string fileName);
58
59 // Types
60    typedef enum
61    {
62       GDCM_NONE,
63       GDCM_META,
64       GDCM_PATIENT,
65       GDCM_STUDY,
66       GDCM_SERIE,
67       GDCM_IMAGE,
68    } gdcmDicomDirType;
69    
70 protected:
71    void NewDicomDir(std::string path);
72    std::string GetPath(void);
73
74    void CallStartMethod(void);
75    void CallProgressMethod(void);
76    void CallEndMethod(void);
77
78 private:
79    void CreateDicomDir(void);
80    void AddObjectToEnd(gdcmDicomDirType type,
81                         ListTag::iterator begin,ListTag::iterator end);
82    void AddMetaToEnd   (ListTag::iterator begin,ListTag::iterator end);
83    void AddPatientToEnd(ListTag::iterator begin,ListTag::iterator end);
84    void AddStudyToEnd  (ListTag::iterator begin,ListTag::iterator end);
85    void AddSerieToEnd  (ListTag::iterator begin,ListTag::iterator end);
86    void AddImageToEnd  (ListTag::iterator begin,ListTag::iterator end);
87
88    void SetElements(std::string &path,ListHeader &list);
89    void SetElement (std::string &path,gdcmDicomDirType type,gdcmHeader *header);
90
91    static bool HeaderLessThan(gdcmHeader *header1,gdcmHeader *header2);
92
93    gdcmMeta *metaElems;
94    ListPatient patients;
95
96    gdcmMethod *startMethod;
97    gdcmMethod *progressMethod;
98    gdcmMethod *endMethod;
99    void *startArg;
100    void *progressArg;
101    void *endArg;
102
103    float progress;
104    bool abort;
105 };
106
107 //-----------------------------------------------------------------------------
108 #endif