1 /*=========================================================================
4 Module: $RCSfile: gdcmDicomDir.h,v $
6 Date: $Date: 2006/05/30 08:10:19 $
7 Version: $Revision: 1.77 $
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"
30 //-----------------------------------------------------------------------------
31 class DicomDirPatient;
33 class DicomDirElement;
40 typedef std::list<DicomDirPatient *> ListDicomDirPatient;
41 typedef std::vector<Document *> VectDocument;
43 //-----------------------------------------------------------------------------
45 * \brief DicomDir defines an object representing a DICOMDIR in memory
46 * as a tree-like structure DicomDirPatient
51 class GDCM_EXPORT DicomDir: public Document
53 gdcmTypeMacro(DicomDir);
56 /// \brief Constructs a DicomDir with a RefCounter
57 static DicomDir *New() {return new DicomDir();}
59 // GDCM_LEGACY( bool Load(std::string const &filename) )
61 void Print(std::ostream &os = std::cout, std::string const &indent = "" );
63 /// Sets the root Directory name to parse, recursively
64 void SetDirectoryName(std::string const &dirName)
65 { ParseDir = true; if (Filename != dirName)
66 Filename = dirName, IsDocumentModified = true;}
67 /// Accessor to \ref Filename
68 virtual void SetFileName(std::string const &fileName)
69 { ParseDir = false; if (Filename != fileName)
70 Filename = fileName, IsDocumentModified = true;}
72 // Informations contained in the parser
73 virtual bool IsReadable();
76 DicomDirMeta *NewMeta();
77 /// Returns a pointer to the DicomDirMeta for this DICOMDIR.
78 DicomDirMeta *GetMeta() { return MetaElems; }
81 DicomDirPatient *NewPatient();
84 DicomDirPatient *GetFirstPatient();
85 DicomDirPatient *GetNextPatient();
88 void ParseDirectory();
90 /// GetProgress GetProgress
91 float GetProgress() const { return Progress; }
92 /// AbortProgress AbortProgress
93 void AbortProgress() { Abort = true; }
94 /// IsAborted IsAborted
95 bool IsAborted() { return Abort; }
98 bool Write(std::string const &fileName);
102 virtual void Copy(DocEntrySet *set);
104 /// Types of the DicomDirObject within the DicomDir
109 GDCM_DICOMDIR_PATIENT,
119 // GDCM_LEGACY( DicomDir(std::string const &filename, bool parseDir = false) )
121 void CreateDicomDirChainedList(std::string const &path);
125 void CreateDicomDir();
126 bool DoTheLoadingJob();
127 bool AddPatientToEnd(DicomDirPatient *dd);
128 bool AddStudyToEnd (DicomDirStudy *dd);
129 bool AddSerieToEnd (DicomDirSerie *dd);
130 bool AddVisitToEnd (DicomDirVisit *dd);
131 bool AddImageToEnd (DicomDirImage *dd);
133 void SetElements(std::string const &path, VectDocument const &list);
134 void SetElement (std::string const &path, DicomDirType type,
136 void MoveSQItem(DocEntrySet *dst, DocEntrySet *src);
138 static bool HeaderLessThan(Document *header1, Document *header2);
142 /// Pointer on *the* DicomDirObject 'DicomDirMeta Elements'
143 DicomDirMeta *MetaElems;
145 /// Chained list of DicomDirPatient (to be exploited hierarchicaly)
146 ListDicomDirPatient Patients;
147 ListDicomDirPatient::iterator ItPatient;
149 /// value of the ??? for any progress bar
153 } // end namespace gdcm
154 //-----------------------------------------------------------------------------