X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirPatient.cxx;h=c8cc875f876354c73702860af433fe5f2bcad480;hb=fc4f7706c78baf3f60474c06d871b82db221f37b;hp=abf4d1b2f0fd4b0dc210ab71efcbe481d0b0c94e;hpb=a891240601e102b6b07ce593d9b9b28948149e72;p=gdcm.git diff --git a/src/gdcmDicomDirPatient.cxx b/src/gdcmDicomDirPatient.cxx index abf4d1b2..c8cc875f 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/18 14:28:32 $ - Version: $Revision: 1.28 $ + Date: $Date: 2007/10/08 15:20:17 $ + Version: $Revision: 1.44 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -23,96 +23,86 @@ #include "gdcmSQItem.h" #include "gdcmDebug.h" -namespace gdcm +namespace GDCM_NAME_SPACE { - //----------------------------------------------------------------------------- // Constructor / Destructor /** * \brief Constructor + * \note End user must use : DicomDir::NewPatient() */ -DicomDirPatient::DicomDirPatient(): - DicomDirObject() +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(); } //----------------------------------------------------------------------------- -// Print -/** - * \brief Prints the Object - * @param os ostream to write to - * @param indent indent - */ -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); - } -} - +// Public /** * \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) +void DicomDirPatient::WriteContent(std::ofstream *fp, FileType t, bool , bool ) { - DicomDirObject::WriteContent(fp, t); + DicomDirObject::WriteContent(fp, t, false, true); for(ListDicomDirStudy::iterator cc = Studies.begin(); cc!= Studies.end(); ++cc ) { - (*cc)->WriteContent( fp, t ); + (*cc)->WriteContent( fp, t, false, true ); } } -//----------------------------------------------------------------------------- -// Public /** - * \brief adds a new Patient at the begining of the PatientList + * \brief adds a new Patient at the beginning of the PatientList * of a partially created DICOMDIR */ DicomDirStudy* DicomDirPatient::NewStudy() { - ListDicomDirStudyElem const &elemList = - Global::GetDicomDirElements()->GetDicomDirStudyElements(); - - DicomDirStudy *st = new DicomDirStudy(); - st->FillObject(elemList); - - Studies.push_front(st); - return st; + 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)->Delete(); + } + Studies.clear(); +} + /** * \brief Get the first entry while visiting the DicomDirStudy * \return The first DicomDirStudy if found, otherwhise NULL */ -DicomDirStudy *DicomDirPatient::GetFirstEntry() +DicomDirStudy *DicomDirPatient::GetFirstStudy() { - ItDicomDirStudy = Studies.begin(); - if (ItDicomDirStudy != Studies.end()) - return *ItDicomDirStudy; + ItStudy = Studies.begin(); + if (ItStudy != Studies.end()) + return *ItStudy; return NULL; } @@ -121,16 +111,52 @@ DicomDirStudy *DicomDirPatient::GetFirstEntry() * \note : meaningfull only if GetFirstEntry already called * \return The next DicomDirStudies if found, otherwhise NULL */ -DicomDirStudy *DicomDirPatient::GetNextEntry() +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() { - gdcmAssertMacro (ItDicomDirStudy != Studies.end()) + ItStudy = Studies.end(); + if (ItStudy != Studies.begin()) { - ++ItDicomDirStudy; - if (ItDicomDirStudy != Studies.end()) - return *ItDicomDirStudy; + --ItStudy; + return *ItStudy; } return NULL; } + +/** + * \brief Copies all the attributes from an other DocEntrySet + * @param set entry to copy from + * @remarks The contained DocEntries a not copied, only referenced + */ +void DicomDirPatient::Copy(DocEntrySet *set) +{ + // 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 @@ -138,5 +164,25 @@ DicomDirStudy *DicomDirPatient::GetNextEntry() // 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