X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirPatient.cxx;h=c8cc875f876354c73702860af433fe5f2bcad480;hb=df1540af8230b8ca5e3cba23e9127e2a2428df78;hp=33ae75b94f4b49d48789b20200f548e947b19ca7;hpb=30d2b02b938fe912d866b40ca2b9842961481ab2;p=gdcm.git diff --git a/src/gdcmDicomDirPatient.cxx b/src/gdcmDicomDirPatient.cxx index 33ae75b9..c8cc875f 100644 --- a/src/gdcmDicomDirPatient.cxx +++ b/src/gdcmDicomDirPatient.cxx @@ -1,79 +1,161 @@ -// gdcmDicomDirPatient.cxx -//----------------------------------------------------------------------------- +/*========================================================================= + + Program: gdcm + Module: $RCSfile: gdcmDicomDirPatient.cxx,v $ + Language: C++ + 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 + 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); + } } -gdcmDicomDirPatient::gdcmDicomDirPatient(TagDocEntryHT *ptagHT): - gdcmObject(ptagHT) +/** + * \brief Canonical destructor. + */ +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 , bool ) +{ + 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 @@ -82,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