X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirPatient.cxx;h=33896dff5a6a3cb20bc4be534b7ab734d9356f0b;hb=0bcc188c6d5185375f809253e8b9b97c856d2eac;hp=5c42ad6d65a63629f96bbb566a6a81d3f2443d3e;hpb=5c198a737e21a72460f81e81a1b9405b5a591b60;p=gdcm.git diff --git a/src/gdcmDicomDirPatient.cxx b/src/gdcmDicomDirPatient.cxx index 5c42ad6d..33896dff 100644 --- a/src/gdcmDicomDirPatient.cxx +++ b/src/gdcmDicomDirPatient.cxx @@ -1,84 +1,161 @@ -// gdcmDicomDirPatient.cxx -//----------------------------------------------------------------------------- +/*========================================================================= + + Program: gdcm + Module: $RCSfile: gdcmDicomDirPatient.cxx,v $ + Language: C++ + 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 + http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details. + + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + PURPOSE. See the above copyright notices for more information. + +=========================================================================*/ + #include "gdcmDicomDirPatient.h" #include "gdcmDicomDirElement.h" #include "gdcmGlobal.h" +#include "gdcmDicomDirStudy.h" +#include "gdcmSQItem.h" +#include "gdcmDebug.h" +namespace GDCM_NAME_SPACE +{ //----------------------------------------------------------------------------- // Constructor / Destructor /** - * \ingroup gdcmDicomDirPatient * \brief Constructor - * @param s SQ Item holding the elements related to this "PATIENT" part - * @param ptagHT pointer to the HTable (gdcmObject needs it - * to build the gdcmHeaderEntries) + * \note End user must use : DicomDir::NewPatient() */ -gdcmDicomDirPatient::gdcmDicomDirPatient(gdcmSQItem *s, TagDocEntryHT *ptagHT): - gdcmObject(ptagHT) +DicomDirPatient::DicomDirPatient(bool empty) + :DicomDirObject() { - docEntries = s->GetDocEntries(); + if ( !empty ) + { + ListDicomDirStudyElem const &elemList = + Global::GetDicomDirElements()->GetDicomDirPatientElements(); + FillObject(elemList); + } } + /** - * \ingroup gdcmDicomDirPatient - * \brief Constructor - * @param ptagHT pointer to the HTable (gdcmObject needs it - * to build the gdcmHeaderEntries) + * \brief Canonical destructor. */ -gdcmDicomDirPatient::gdcmDicomDirPatient(TagDocEntryHT *ptagHT): - gdcmObject(ptagHT) +DicomDirPatient::~DicomDirPatient() { + ClearStudy(); } + +//----------------------------------------------------------------------------- +// Public /** - * \ingroup gdcmDicomDirPatient - * \brief Canonical destructor. + * \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) +{ + DicomDirObject::WriteContent(fp, t, false, true); + + for(ListDicomDirStudy::iterator cc = Studies.begin(); + cc!= Studies.end(); + ++cc ) + { + (*cc)->WriteContent( fp, t, false, true ); + } +} + +/** + * \brief adds a new Patient at the beginning of the PatientList + * of a partially created DICOMDIR */ -gdcmDicomDirPatient::~gdcmDicomDirPatient() +DicomDirStudy* DicomDirPatient::NewStudy() { - for(ListDicomDirStudy::iterator cc = studies.begin();cc != studies.end();++cc) + 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 ) { - delete *cc; + (*cc)->Delete(); } + Studies.clear(); } -//----------------------------------------------------------------------------- -// Print /** - * \ingroup gdcmDicomDirPatient - * \brief Prints the Object - * @return + * \brief Get the first entry while visiting the DicomDirStudy + * \return The first DicomDirStudy if found, otherwhise NULL */ -void gdcmDicomDirPatient::Print(std::ostream &os) +DicomDirStudy *DicomDirPatient::GetFirstStudy() { - os<<"PATIENT"<SetPrintLevel(printLevel); - (*cc)->Print(os); + --ItStudy; + return *ItStudy; } + return NULL; } -//----------------------------------------------------------------------------- -// Public - /** - * \ingroup gdcmDicomDir - * \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 */ -gdcmDicomDirStudy * gdcmDicomDirPatient::NewStudy(void) { - std::list elemList; - elemList=gdcmGlobal::GetDicomDirElements()->GetDicomDirStudyElements(); - - gdcmDicomDirStudy *st = new gdcmDicomDirStudy( ptagHT); - st->FillObject(elemList); +void DicomDirPatient::Copy(DocEntrySet *set) +{ + // Remove all previous childs + ClearStudy(); - studies.push_front(st); - return st; + DicomDirObject::Copy(set); - -} + DicomDirPatient *ddEntry = dynamic_cast(set); + if( ddEntry ) + { + Studies = ddEntry->Studies; + for(ItStudy = Studies.begin();ItStudy != Studies.end();++ItStudy) + (*ItStudy)->Register(); + } +} //----------------------------------------------------------------------------- // Protected @@ -87,3 +164,25 @@ gdcmDicomDirStudy * gdcmDicomDirPatient::NewStudy(void) { // 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