X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirSerie.cxx;h=3737076e424ff7095a846e7e862ccfaca099a14f;hb=96775cd7d34ec152fbf1430634bb338f524ee212;hp=50dbfa91857b619dd9de6b889c187d83fdf810cd;hpb=a891240601e102b6b07ce593d9b9b28948149e72;p=gdcm.git diff --git a/src/gdcmDicomDirSerie.cxx b/src/gdcmDicomDirSerie.cxx index 50dbfa91..3737076e 100644 --- a/src/gdcmDicomDirSerie.cxx +++ b/src/gdcmDicomDirSerie.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDicomDirSerie.cxx,v $ Language: C++ - Date: $Date: 2005/01/18 14:28:32 $ - Version: $Revision: 1.30 $ + Date: $Date: 2005/11/29 12:48:46 $ + Version: $Revision: 1.40 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -24,53 +24,33 @@ namespace gdcm { - //----------------------------------------------------------------------------- // Constructor / Destructor /** - * \brief Constructor + * \brief Constructor + * \note End user must use : DicomDirStudy::NewSerie() */ -DicomDirSerie::DicomDirSerie(): +DicomDirSerie::DicomDirSerie(bool empty): DicomDirObject() { -} -/** - * \brief Canonical destructor. - */ -DicomDirSerie::~DicomDirSerie() -{ - for(ListDicomDirImage::iterator cc = Images.begin(); - cc != Images.end(); - ++cc) + if ( !empty ) { - delete *cc; + ListDicomDirSerieElem const &elemList = + Global::GetDicomDirElements()->GetDicomDirSerieElements(); + FillObject(elemList); } } -//----------------------------------------------------------------------------- -// Print /** - * \brief Prints the Object - * @param os ostream to write to - * @param indent indent - */ -void DicomDirSerie::Print(std::ostream &os, std::string const &) + * \brief Canonical destructor. + */ +DicomDirSerie::~DicomDirSerie() { - os << "SERIE" << std::endl; - DicomDirObject::Print(os); - - for(ListDicomDirImage::iterator cc = Images.begin(); - cc != Images.end(); - ++cc) - { - (*cc)->SetPrintLevel(PrintLevel); - (*cc)->Print(os); - } + ClearImage(); } //----------------------------------------------------------------------------- // Public - /** * \brief Writes the Object * @param fp ofstream to write to @@ -89,29 +69,39 @@ void DicomDirSerie::WriteContent(std::ofstream *fp, FileType t) } /** - * \brief adds a new Image (with the basic elements) to a partially created DICOMDIR + * \brief adds a new Image (with the basic elements) to a partially created + * DICOMDIR */ DicomDirImage *DicomDirSerie::NewImage() { - ListDicomDirImageElem const &elemList = - Global::GetDicomDirElements()->GetDicomDirImageElements(); - - DicomDirImage *st = new DicomDirImage(); - FillObject(elemList); - Images.push_front(st); + DicomDirImage *dd = DicomDirImage::New(); + Images.push_back(dd); + return dd; +} - return st; +/** + * \brief Remove all images in the serie + */ +void DicomDirSerie::ClearImage() +{ + for(ListDicomDirImage::iterator cc = Images.begin(); + cc != Images.end(); + ++cc) + { + (*cc)->Delete(); + } + Images.clear(); } /** * \brief Get the first entry while visiting the DicomDirImage - * \return The first DicomDirImage if found, otherwhise NULL + * \return The first DicomDirImage if DicomDirserie not empty, otherwhise NULL */ -DicomDirImage *DicomDirSerie::GetFirstEntry() +DicomDirImage *DicomDirSerie::GetFirstImage() { - ItDicomDirImage = Images.begin(); - if (ItDicomDirImage != Images.end()) - return *ItDicomDirImage; + ItImage = Images.begin(); + if (ItImage != Images.end()) + return *ItImage; return NULL; } @@ -120,17 +110,37 @@ DicomDirImage *DicomDirSerie::GetFirstEntry() * \note : meaningfull only if GetFirstEntry already called * \return The next DicomDirImages if found, otherwhise NULL */ -DicomDirImage *DicomDirSerie::GetNextEntry() +DicomDirImage *DicomDirSerie::GetNextImage() +{ + gdcmAssertMacro (ItImage != Images.end()); + + ++ItImage; + if (ItImage != Images.end()) + return *ItImage; + 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 DicomDirSerie::Copy(DocEntrySet *set) { - gdcmAssertMacro (ItDicomDirImage != Images.end()); + // Remove all previous childs + ClearImage(); + + DicomDirObject::Copy(set); + + DicomDirSerie *ddEntry = dynamic_cast(set); + if( ddEntry ) { - ++ItDicomDirImage; - if (ItDicomDirImage != Images.end()) - return *ItDicomDirImage; + Images = ddEntry->Images; + for(ItImage = Images.begin();ItImage != Images.end();++ItImage) + (*ItImage)->Register(); } - return NULL; } - + //----------------------------------------------------------------------------- // Protected @@ -138,6 +148,25 @@ DicomDirImage *DicomDirSerie::GetNextEntry() // Private //----------------------------------------------------------------------------- -} // end namespace gdcm +// Print +/** + * \brief Prints the Object + * @param os ostream to write to + * @param indent Indentation string to be prepended during printing + */ +void DicomDirSerie::Print(std::ostream &os, std::string const &) +{ + os << "SERIE" << std::endl; + DicomDirObject::Print(os); + for(ListDicomDirImage::iterator cc = Images.begin(); + cc != Images.end(); + ++cc) + { + (*cc)->SetPrintLevel(PrintLevel); + (*cc)->Print(os); + } +} +//----------------------------------------------------------------------------- +} // end namespace gdcm