X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirPatient.cxx;h=cc2ba5b58d937cb7495d0d23e81a52a60a32d4cd;hb=93748f382dadb5c9240c4156ce7bbe9dcc8da44f;hp=d6673ac79bab943812ee5fb7949ee94d08142a86;hpb=1d69b92978803204089d270599133917d944c651;p=gdcm.git diff --git a/src/gdcmDicomDirPatient.cxx b/src/gdcmDicomDirPatient.cxx index d6673ac7..cc2ba5b5 100644 --- a/src/gdcmDicomDirPatient.cxx +++ b/src/gdcmDicomDirPatient.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDicomDirPatient.cxx,v $ Language: C++ - Date: $Date: 2004/10/12 04:35:45 $ - Version: $Revision: 1.15 $ + Date: $Date: 2005/01/20 16:16:42 $ + Version: $Revision: 1.30 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -19,6 +19,10 @@ #include "gdcmDicomDirPatient.h" #include "gdcmDicomDirElement.h" #include "gdcmGlobal.h" +#include "gdcmDicomDirStudy.h" +#include "gdcmSQItem.h" +#include "gdcmDebug.h" + namespace gdcm { @@ -26,31 +30,26 @@ namespace gdcm // Constructor / Destructor /** * \brief Constructor - * @param s SQ Item holding the elements related to this "PATIENT" part - * @param ptagHT pointer to the HTable (DicomDirObject needs it - * to build the HeaderEntries) */ -DicomDirPatient::DicomDirPatient(SQItem *s, TagDocEntryHT *ptagHT): - DicomDirObject(ptagHT) -{ - docEntries = s->GetDocEntries(); -} -/** - * \brief Constructor - * @param ptagHT pointer to the HTable (DicomDirObject needs it - * to build the HeaderEntries) - */ -DicomDirPatient::DicomDirPatient(TagDocEntryHT* ptagHT): - DicomDirObject(ptagHT) +DicomDirPatient::DicomDirPatient(bool empty): + DicomDirObject() { + if( !empty ) + { + ListDicomDirStudyElem const &elemList = + Global::GetDicomDirElements()->GetDicomDirPatientElements(); + FillObject(elemList); + } } + /** * \brief Canonical destructor. */ DicomDirPatient::~DicomDirPatient() { - for(ListDicomDirStudy::iterator cc = studies.begin(); - cc != studies.end(); ++cc) + for(ListDicomDirStudy::const_iterator cc = Studies.begin(); + cc != Studies.end(); + ++cc ) { delete *cc; } @@ -60,36 +59,41 @@ DicomDirPatient::~DicomDirPatient() // Print /** * \brief Prints the Object - * @return + * @param os ostream to write to + * @param indent indent */ -void DicomDirPatient::Print(std::ostream& os) +void DicomDirPatient::Print(std::ostream &os, std::string const & ) { os << "PATIENT" << std::endl; DicomDirObject::Print(os); - for(ListDicomDirStudy::iterator cc = studies.begin(); - cc != studies.end(); ++cc) + for(ListDicomDirStudy::const_iterator cc = Studies.begin(); + cc != Studies.end(); + ++cc ) { (*cc)->SetPrintLevel(PrintLevel); (*cc)->Print(os); } } +//----------------------------------------------------------------------------- +// Public /** * \brief Writes the Object - * @return + * @param fp ofstream to write to + * @param t Type of the File (explicit VR, implicitVR, ...) */ -void DicomDirPatient::Write(FILE* fp, FileType t) +void DicomDirPatient::WriteContent(std::ofstream *fp, FileType t) { - DicomDirObject::Write(fp, t); + DicomDirObject::WriteContent(fp, t); - for(ListDicomDirStudy::iterator cc = studies.begin();cc!=studies.end();++cc) + for(ListDicomDirStudy::iterator cc = Studies.begin(); + cc!= Studies.end(); + ++cc ) { - (*cc)->Write( fp, t ); + (*cc)->WriteContent( fp, t ); } } -//----------------------------------------------------------------------------- -// Public /** * \brief adds a new Patient at the begining of the PatientList @@ -97,16 +101,54 @@ void DicomDirPatient::Write(FILE* fp, FileType t) */ DicomDirStudy* DicomDirPatient::NewStudy() { - std::list elemList = - Global::GetDicomDirElements()->GetDicomDirStudyElements(); - - DicomDirStudy* st = new DicomDirStudy( PtagHT ); - st->FillObject(elemList); - - studies.push_front(st); + DicomDirStudy *st = new DicomDirStudy(); + Studies.push_back(st); return st; } +/** + * \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 @@ -114,5 +156,4 @@ DicomDirStudy* DicomDirPatient::NewStudy() // Private //----------------------------------------------------------------------------- - } // end namespace gdcm