1 /*=========================================================================
4 Module: $RCSfile: gdcmDicomDir.h,v $
6 Date: $Date: 2007/05/23 14:18:08 $
7 Version: $Revision: 1.79 $
9 Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10 l'Image). All rights reserved. See Doc/License.txt or
11 http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
13 This software is distributed WITHOUT ANY WARRANTY; without even
14 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 PURPOSE. See the above copyright notices for more information.
17 =========================================================================*/
19 #ifndef GDCMDICOMDIR_H
20 #define GDCMDICOMDIR_H
22 #include "gdcmDocument.h"
23 #include "gdcmDebug.h"
28 namespace GDCM_NAME_SPACE
30 //-----------------------------------------------------------------------------
31 class DicomDirPatient;
33 class DicomDirElement;
38 class DicomDirPrivate;
41 typedef std::list<DicomDirPatient *> ListDicomDirPatient;
42 typedef std::vector<Document *> VectDocument;
44 //-----------------------------------------------------------------------------
46 * \brief DicomDir defines an object representing a DICOMDIR in memory
47 * as a tree-like structure :
54 * -> DicomDirPrivate (for Siemens CSA non image)
56 class GDCM_EXPORT DicomDir: public Document
58 gdcmTypeMacro(DicomDir);
61 /// \brief Constructs a DicomDir with a RefCounter
62 static DicomDir *New() {return new DicomDir();}
64 // GDCM_LEGACY( bool Load(std::string const &filename) )
66 void Print(std::ostream &os = std::cout, std::string const &indent = "" );
68 /// Sets the root Directory name to parse, recursively
69 void SetDirectoryName(std::string const &dirName)
70 { ParseDir = true; if (Filename != dirName)
71 Filename = dirName, IsDocumentModified = true;}
72 /// Accessor to \ref Filename
73 virtual void SetFileName(std::string const &fileName)
74 { ParseDir = false; if (Filename != fileName)
75 Filename = fileName, IsDocumentModified = true;}
77 // Informations contained in the parser
78 virtual bool IsReadable();
81 DicomDirMeta *NewMeta();
82 /// Returns a pointer to the DicomDirMeta for this DICOMDIR.
83 DicomDirMeta *GetMeta() { return MetaElems; }
86 DicomDirPatient *NewPatient();
89 DicomDirPatient *GetFirstPatient();
90 DicomDirPatient *GetNextPatient();
93 void ParseDirectory();
95 /// GetProgress GetProgress
96 float GetProgress() const { return Progress; }
97 /// AbortProgress AbortProgress
98 void AbortProgress() { Abort = true; }
99 /// IsAborted IsAborted
100 bool IsAborted() { return Abort; }
103 bool Write(std::string const &fileName);
107 virtual void Copy(DocEntrySet *set);
109 /// Types of the DicomDirObject within the DicomDir
114 GDCM_DICOMDIR_PATIENT,
119 GDCM_DICOMDIR_PRIVATE
125 // GDCM_LEGACY( DicomDir(std::string const &filename, bool parseDir = false) )
127 void CreateDicomDirChainedList(std::string const &path);
131 void CreateDicomDir();
132 bool DoTheLoadingJob();
133 bool AddPatientToEnd(DicomDirPatient *dd);
134 bool AddStudyToEnd (DicomDirStudy *dd);
135 bool AddSerieToEnd (DicomDirSerie *dd);
136 bool AddVisitToEnd (DicomDirVisit *dd);
137 bool AddImageToEnd (DicomDirImage *dd);
138 bool AddPrivateToEnd(DicomDirPrivate *dd);
140 void SetElements(std::string const &path, VectDocument const &list);
141 void SetElement (std::string const &path, DicomDirType type,
143 void MoveSQItem(DocEntrySet *dst, DocEntrySet *src);
145 static bool HeaderLessThan(Document *header1, Document *header2);
149 /// Pointer on *the* DicomDirObject 'DicomDirMeta Elements'
150 DicomDirMeta *MetaElems;
152 /// Chained list of DicomDirPatient (to be exploited hierarchicaly)
153 ListDicomDirPatient Patients;
154 ListDicomDirPatient::iterator ItPatient;
156 /// value of the ??? for any progress bar
160 } // end namespace gdcm
161 //-----------------------------------------------------------------------------