X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDir.h;h=3fc3c11f5a3bacbd6457642db12bc98f235d5ae1;hb=b09dc3ae7c36afed949e4136b6772675018751de;hp=0e7cdcf67d04c1c03bf95492addca61a5f86648a;hpb=a45b09d6e37f0d0c31f62f8ef01b78d3204de51e;p=gdcm.git diff --git a/src/gdcmDicomDir.h b/src/gdcmDicomDir.h index 0e7cdcf6..3fc3c11f 100644 --- a/src/gdcmDicomDir.h +++ b/src/gdcmDicomDir.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDicomDir.h,v $ Language: C++ - Date: $Date: 2005/02/07 14:48:34 $ - Version: $Revision: 1.55 $ + Date: $Date: 2005/07/08 19:07:12 $ + Version: $Revision: 1.63 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -32,6 +32,7 @@ class DicomDirMeta; class DicomDirElement; class DicomDirStudy; class DicomDirSerie; +class DicomDirVisit; class DicomDirImage; class SQItem; @@ -49,22 +50,36 @@ typedef std::vector VectDocument; class GDCM_EXPORT DicomDir: public Document { public: - typedef void(Method)(void*); + typedef void Method(void*); DicomDir( std::string const &filename, bool parseDir = false ); DicomDir(); ~DicomDir(); + bool Load( std::string const &filename ); + bool Load( ); void Print(std::ostream &os = std::cout, std::string const &indent = "" ); - + + /// Sets the root Directory name to parse, recursively + void SetDirectoryName(std::string const &dirName) + { ParseDir = true; if (Filename != dirName) + Filename = dirName, IsDocumentModified = true; }; + /// Accessor to \ref Filename + virtual void SetFileName(std::string const &fileName) + { ParseDir = false; if (Filename != fileName) + Filename = fileName, IsDocumentModified = true; } + + /// DEPRECATED : use SetDirectoryName + void SetParseDir(bool parseDir) { ParseDir = parseDir; }; + // Informations contained in the parser virtual bool IsReadable(); // Meta - DicomDirMeta *NewMeta(); + DicomDirMeta *NewMeta(); /// Returns a pointer to the DicomDirMeta for this DICOMDIR. - DicomDirMeta* GetMeta() { return MetaElems; }; + DicomDirMeta *GetMeta() { return MetaElems; }; // Patients DicomDirPatient *NewPatient(); @@ -78,7 +93,7 @@ public: // Note: the DicomDir:: namespace prefix is needed by Swig in the // following method declarations. Refer to gdcmPython/gdcm.i - // for the reasons of this unecessary notation at C++ level. + // for the reasons of this unnecessary notation at C++ level. void SetStartMethod( DicomDir::Method *method, void *arg = NULL, DicomDir::Method *argDelete = NULL ); @@ -88,9 +103,9 @@ public: void SetEndMethod( DicomDir::Method *method, void *arg = NULL, DicomDir::Method *argDelete = NULL ); - void SetStartMethodArgDelete( DicomDir::Method *m ); + void SetStartMethodArgDelete ( DicomDir::Method *m ); void SetProgressMethodArgDelete( DicomDir::Method *m ); - void SetEndMethodArgDelete( DicomDir::Method *m ); + void SetEndMethodArgDelete ( DicomDir::Method *m ); /// GetProgress GetProgress float GetProgress() { return Progress; }; @@ -102,6 +117,8 @@ public: // Write bool WriteDicomDir(std::string const &fileName); + bool AnonymizeDicomDir(); + /// Types of the DicomDirObject within the DicomDir typedef enum { @@ -110,6 +127,7 @@ public: GDCM_DICOMDIR_PATIENT, GDCM_DICOMDIR_STUDY, GDCM_DICOMDIR_SERIE, + GDCM_DICOMDIR_VISIT, GDCM_DICOMDIR_IMAGE } DicomDirType; @@ -122,23 +140,24 @@ protected: private: void Initialize(); void CreateDicomDir(); - + bool DoTheLoadingJob(); bool AddPatientToEnd(DicomDirPatient *dd); bool AddStudyToEnd (DicomDirStudy *dd); bool AddSerieToEnd (DicomDirSerie *dd); + bool AddVisitToEnd (DicomDirVisit *dd); bool AddImageToEnd (DicomDirImage *dd); void SetElements(std::string const &path, VectDocument const &list); void SetElement (std::string const &path, DicomDirType type, Document *header); - void MoveSQItem(DocEntrySet *dst,DocEntrySet *src); + void MoveSQItem(DocEntrySet *dst, DocEntrySet *src); static bool HeaderLessThan(Document *header1, Document *header2); // Variables /// Pointer on *the* DicomDirObject 'DicomDirMeta Elements' - DicomDirMeta* MetaElems; + DicomDirMeta *MetaElems; /// Chained list of DicomDirPatient (to be exploited hierarchicaly) ListDicomDirPatient Patients; @@ -166,6 +185,7 @@ private: float Progress; /// value of the ??? for any progress bar bool Abort; + bool ParseDir; }; } // end namespace gdcm //-----------------------------------------------------------------------------