X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirPatient.cxx;h=33896dff5a6a3cb20bc4be534b7ab734d9356f0b;hb=0bcc188c6d5185375f809253e8b9b97c856d2eac;hp=66f58f0529f115ea7ddedb41468332b808183a28;hpb=7b3410ee413b056e0e599a4800ea836c8b56152b;p=gdcm.git diff --git a/src/gdcmDicomDirPatient.cxx b/src/gdcmDicomDirPatient.cxx index 66f58f05..33896dff 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/25 04:08:20 $ - Version: $Revision: 1.18 $ + Date: $Date: 2007/08/29 15:30:48 $ + Version: $Revision: 1.43 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -19,97 +19,143 @@ #include "gdcmDicomDirPatient.h" #include "gdcmDicomDirElement.h" #include "gdcmGlobal.h" -namespace gdcm -{ +#include "gdcmDicomDirStudy.h" +#include "gdcmSQItem.h" +#include "gdcmDebug.h" +namespace GDCM_NAME_SPACE +{ //----------------------------------------------------------------------------- // 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) + * \note End user must use : DicomDir::NewPatient() */ -DicomDirPatient::DicomDirPatient(SQItem *s, TagDocEntryHT *ptagHT) : - DicomDirObject(ptagHT) +DicomDirPatient::DicomDirPatient(bool empty) + :DicomDirObject() { - DocEntries = s->GetDocEntries(); + if ( !empty ) + { + ListDicomDirStudyElem const &elemList = + Global::GetDicomDirElements()->GetDicomDirPatientElements(); + FillObject(elemList); + } } + /** - * \brief Constructor - * @param ptagHT pointer to the HTable (DicomDirObject needs it - * to build the HeaderEntries) + * \brief Canonical destructor. */ -DicomDirPatient::DicomDirPatient(TagDocEntryHT* ptagHT): - DicomDirObject(ptagHT) +DicomDirPatient::~DicomDirPatient() { + ClearStudy(); } + +//----------------------------------------------------------------------------- +// Public /** - * \brief Canonical destructor. - */ -DicomDirPatient::~DicomDirPatient() + * \brief Writes the Object + * @param fp ofstream to write to + * @param t Type of the File (explicit VR, implicitVR, ...) + */ +void DicomDirPatient::WriteContent(std::ofstream *fp, FileType t, bool dummy, bool dummy2) { - for(ListDicomDirStudy::const_iterator cc = Studies.begin(); - cc != Studies.end(); - ++cc ) + DicomDirObject::WriteContent(fp, t, false, true); + + for(ListDicomDirStudy::iterator cc = Studies.begin(); + cc!= Studies.end(); + ++cc ) { - delete *cc; + (*cc)->WriteContent( fp, t, false, true ); } } -//----------------------------------------------------------------------------- -// Print /** - * \brief Prints the Object - * @return - */ -void DicomDirPatient::Print(std::ostream& os) + * \brief adds a new Patient at the beginning of the PatientList + * of a partially created DICOMDIR + */ +DicomDirStudy* DicomDirPatient::NewStudy() { - os << "PATIENT" << std::endl; - DicomDirObject::Print(os); + DicomDirStudy *dd = DicomDirStudy::New(); + Studies.push_back(dd); + return dd; +} +/** + * \brief Remove all studies in the patient + */ +void DicomDirPatient::ClearStudy() +{ for(ListDicomDirStudy::const_iterator cc = Studies.begin(); cc != Studies.end(); ++cc ) { - (*cc)->SetPrintLevel(PrintLevel); - (*cc)->Print(os); + (*cc)->Delete(); } + Studies.clear(); } /** - * \brief Writes the Object - * @return + * \brief Get the first entry while visiting the DicomDirStudy + * \return The first DicomDirStudy if found, otherwhise NULL */ -void DicomDirPatient::Write(std::ofstream* fp, FileType t) +DicomDirStudy *DicomDirPatient::GetFirstStudy() { - DicomDirObject::Write(fp, t); + ItStudy = Studies.begin(); + if (ItStudy != Studies.end()) + return *ItStudy; + return NULL; +} - for(ListDicomDirStudy::iterator cc = Studies.begin(); - cc!= Studies.end(); - ++cc ) +/** + * \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()) { - (*cc)->Write( fp, t ); + --ItStudy; + return *ItStudy; } + return NULL; } -//----------------------------------------------------------------------------- -// Public /** - * \brief adds a new Patient at the begining of the PatientList - * of a partially created DICOMDIR + * \brief Copies all the attributes from an other DocEntrySet + * @param set entry to copy from + * @remarks The contained DocEntries a not copied, only referenced */ -DicomDirStudy* DicomDirPatient::NewStudy() +void DicomDirPatient::Copy(DocEntrySet *set) { - ListDicomDirStudyElem const & elemList = - Global::GetDicomDirElements()->GetDicomDirStudyElements(); - - DicomDirStudy* st = new DicomDirStudy( PtagHT ); - st->FillObject(elemList); - - Studies.push_front(st); - return st; -} + // Remove all previous childs + ClearStudy(); + + DicomDirObject::Copy(set); + + DicomDirPatient *ddEntry = dynamic_cast(set); + if( ddEntry ) + { + Studies = ddEntry->Studies; + for(ItStudy = Studies.begin();ItStudy != Studies.end();++ItStudy) + (*ItStudy)->Register(); + } +} //----------------------------------------------------------------------------- // Protected @@ -118,5 +164,25 @@ DicomDirStudy* DicomDirPatient::NewStudy() // Private //----------------------------------------------------------------------------- +// Print +/** + * \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 & ) +{ + os << "PATIENT" << std::endl; + DicomDirObject::Print(os); + for(ListDicomDirStudy::const_iterator cc = Studies.begin(); + cc != Studies.end(); + ++cc ) + { + (*cc)->SetPrintLevel(PrintLevel); + (*cc)->Print(os); + } +} + +//----------------------------------------------------------------------------- } // end namespace gdcm