X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirPatient.cxx;h=72081cf3a763f166569d9caa664ba97d9eb039fe;hb=c67ffef593e7635d8dfa7d3fe63d702e5afafc3e;hp=9a26b4fc9ca21da230f0a377ac215131e1c0144b;hpb=e8caac199c2683cb0f118c42c61dc6aec85b1eec;p=gdcm.git diff --git a/src/gdcmDicomDirPatient.cxx b/src/gdcmDicomDirPatient.cxx index 9a26b4fc..72081cf3 100644 --- a/src/gdcmDicomDirPatient.cxx +++ b/src/gdcmDicomDirPatient.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDicomDirPatient.cxx,v $ Language: C++ - Date: $Date: 2005/01/16 04:50:41 $ - Version: $Revision: 1.24 $ + Date: $Date: 2005/01/25 15:44:23 $ + Version: $Revision: 1.33 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -21,6 +21,7 @@ #include "gdcmGlobal.h" #include "gdcmDicomDirStudy.h" #include "gdcmSQItem.h" +#include "gdcmDebug.h" namespace gdcm { @@ -30,21 +31,23 @@ namespace gdcm /** * \brief Constructor */ -DicomDirPatient::DicomDirPatient(): +DicomDirPatient::DicomDirPatient(bool empty): DicomDirObject() { + if( !empty ) + { + ListDicomDirStudyElem const &elemList = + Global::GetDicomDirElements()->GetDicomDirPatientElements(); + FillObject(elemList); + } } + /** * \brief Canonical destructor. */ DicomDirPatient::~DicomDirPatient() { - for(ListDicomDirStudy::const_iterator cc = Studies.begin(); - cc != Studies.end(); - ++cc ) - { - delete *cc; - } + ClearStudy(); } //----------------------------------------------------------------------------- @@ -52,6 +55,7 @@ DicomDirPatient::~DicomDirPatient() /** * \brief Prints the Object * @param os ostream to write to + * @param indent Indentation string to be prepended during printing */ void DicomDirPatient::Print(std::ostream &os, std::string const & ) { @@ -67,6 +71,8 @@ void DicomDirPatient::Print(std::ostream &os, std::string const & ) } } +//----------------------------------------------------------------------------- +// Public /** * \brief Writes the Object * @param fp ofstream to write to @@ -83,8 +89,6 @@ void DicomDirPatient::WriteContent(std::ofstream *fp, FileType t) (*cc)->WriteContent( fp, t ); } } -//----------------------------------------------------------------------------- -// Public /** * \brief adds a new Patient at the begining of the PatientList @@ -92,16 +96,67 @@ void DicomDirPatient::WriteContent(std::ofstream *fp, FileType t) */ DicomDirStudy* DicomDirPatient::NewStudy() { - ListDicomDirStudyElem const &elemList = - Global::GetDicomDirElements()->GetDicomDirStudyElements(); - DicomDirStudy *st = new DicomDirStudy(); - st->FillObject(elemList); - - Studies.push_front(st); + Studies.push_back(st); return st; } +/** + * \brief Remove all studies in the patient + */ +void DicomDirPatient::ClearStudy() +{ + for(ListDicomDirStudy::const_iterator cc = Studies.begin(); + cc != Studies.end(); + ++cc ) + { + delete *cc; + } + Studies.clear(); +} + +/** + * \brief Get the first entry while visiting the DicomDirStudy + * \return The first DicomDirStudy if found, otherwhise NULL + */ +DicomDirStudy *DicomDirPatient::GetFirstStudy() +{ + ItStudy = Studies.begin(); + if (ItStudy != Studies.end()) + return *ItStudy; + return NULL; +} + +/** + * \brief Get the next entry while visiting the DicomDirStudies + * \note : meaningfull only if GetFirstEntry already called + * \return The next DicomDirStudies if found, otherwhise NULL + */ +DicomDirStudy *DicomDirPatient::GetNextStudy() +{ + gdcmAssertMacro (ItStudy != Studies.end()) + + ++ItStudy; + if (ItStudy != Studies.end()) + return *ItStudy; + return NULL; +} + +/** + * \brief Get the first entry while visiting the DicomDirStudy + * \return The first DicomDirStudy if found, otherwhise NULL + */ +DicomDirStudy *DicomDirPatient::GetLastStudy() +{ + ItStudy = Studies.end(); + if (ItStudy != Studies.begin()) + { + --ItStudy; + return *ItStudy; + } + return NULL; +} + //----------------------------------------------------------------------------- // Protected @@ -109,5 +164,4 @@ DicomDirStudy* DicomDirPatient::NewStudy() // Private //----------------------------------------------------------------------------- - } // end namespace gdcm