X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirStudy.cxx;h=5d30d595871454551076915352d5c77670fb76c6;hb=8d704be3e460a26db22f2d41dbaf02811bc71a45;hp=ca551f164b9b6a5b59b8837d6e6b43c261ce059d;hpb=49c0af19f5bf0f2402d37d8abf7fb139e7453245;p=gdcm.git diff --git a/src/gdcmDicomDirStudy.cxx b/src/gdcmDicomDirStudy.cxx index ca551f16..5d30d595 100644 --- a/src/gdcmDicomDirStudy.cxx +++ b/src/gdcmDicomDirStudy.cxx @@ -3,12 +3,12 @@ Program: gdcm Module: $RCSfile: gdcmDicomDirStudy.cxx,v $ Language: C++ - Date: $Date: 2004/08/01 00:59:21 $ - Version: $Revision: 1.8 $ + Date: $Date: 2005/02/02 10:02:16 $ + Version: $Revision: 1.36 $ 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.htm for details. + 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 @@ -19,83 +19,123 @@ #include "gdcmDicomDirStudy.h" #include "gdcmDicomDirElement.h" #include "gdcmGlobal.h" +#include "gdcmDicomDirSerie.h" +#include "gdcmDebug.h" + +namespace gdcm +{ //----------------------------------------------------------------------------- // Constructor / Destructor - /** - * \ingroup gdcmDicomDirStudy - * \brief constructor - * @param s SQ Item holding the elements related to this "STUDY" part - * @param ptagHT pointer to the HTable (gdcmObject needs it - * to build the gdcmHeaderEntries) + * \brief Constructor + * \note End user must use : DicomDirPatient::NewStudy() */ -gdcmDicomDirStudy::gdcmDicomDirStudy(gdcmSQItem *s, TagDocEntryHT *ptagHT): - gdcmObject(ptagHT) +DicomDirStudy::DicomDirStudy(bool empty) + :DicomDirObject() { - docEntries = s->GetDocEntries(); + if( !empty ) + { + ListDicomDirStudyElem const &elemList = + Global::GetDicomDirElements()->GetDicomDirStudyElements(); + FillObject(elemList); + } } + /** - * \ingroup gdcmDicomDirStudy - * \brief constructor - * @param ptagHT pointer to the HTable (gdcmObject needs it - * to build the gdcmHeaderEntries) + * \brief Canonical destructor. */ -gdcmDicomDirStudy::gdcmDicomDirStudy(TagDocEntryHT *ptagHT): - gdcmObject(ptagHT) +DicomDirStudy::~DicomDirStudy() { + ClearSerie(); } + +//----------------------------------------------------------------------------- +// Public /** - * \ingroup gdcmDicomDirStudy - * \brief Canonical destructor. - */ -gdcmDicomDirStudy::~gdcmDicomDirStudy() + * \brief Writes the Object + * @param fp ofstream to write to + * @param t Type of the File (explicit VR, implicitVR, ...) + * @return + */ +void DicomDirStudy::WriteContent(std::ofstream *fp, FileType t) { - for(ListDicomDirSerie::iterator cc = series.begin();cc != series.end();++cc) + DicomDirObject::WriteContent(fp, t); + + for(ListDicomDirSerie::iterator cc = Series.begin(); + cc!= Series.end(); + ++cc ) { - delete *cc; + (*cc)->WriteContent( fp, t ); } } -//----------------------------------------------------------------------------- -// Print /** - * \ingroup gdcmDicomDirStudy - * \brief Prints the Object - * @return - */ -void gdcmDicomDirStudy::Print(std::ostream &os) + * \brief adds a new Serie at the beginning of the SerieList + * of a partially created DICOMDIR + */ +DicomDirSerie *DicomDirStudy::NewSerie() { - os<<"STUDY"<SetPrintLevel(PrintLevel); - (*cc)->Print(os); + delete *cc; } + Series.clear(); } -//----------------------------------------------------------------------------- -// Public +/** + * \brief Get the first entry while visiting the DicomDirSeries + * \return The first DicomDirSerie if found, otherwhise NULL + */ +DicomDirSerie *DicomDirStudy::GetFirstSerie() +{ + ItSerie = Series.begin(); + if (ItSerie != Series.end()) + return *ItSerie; + return NULL; +} /** - * \ingroup gdcmDicomStudy - * \brief adds a new Serie at the begining of the SerieList - * of a partially created DICOMDIR + * \brief Get the next entry while visiting the DicomDirSeries + * \note : meaningfull only if GetFirstEntry already called + * \return The next DicomDirSerie if found, otherwhise NULL */ -gdcmDicomDirSerie * gdcmDicomDirStudy::NewSerie() +DicomDirSerie *DicomDirStudy::GetNextSerie() { - std::list elemList = - gdcmGlobal::GetDicomDirElements()->GetDicomDirSerieElements(); + gdcmAssertMacro (ItSerie != Series.end()); - gdcmDicomDirSerie *st = new gdcmDicomDirSerie(PtagHT); - FillObject(elemList); - series.push_front(st); + ++ItSerie; + if (ItSerie != Series.end()) + return *ItSerie; + return NULL; +} + +/** + * \brief Get the last entry while visiting the DicomDirSeries + * \return The first DicomDirSerie if found, otherwhise NULL + */ +DicomDirSerie *DicomDirStudy::GetLastSerie() +{ + ItSerie = Series.end(); + if (ItSerie != Series.begin()) + { + --ItSerie; + return *ItSerie; + } + return NULL; +} - return st; -} //----------------------------------------------------------------------------- // Protected @@ -103,3 +143,26 @@ gdcmDicomDirSerie * gdcmDicomDirStudy::NewSerie() // Private //----------------------------------------------------------------------------- +// Print +/** + * \brief Prints the Object + * @param os ostream to write to + * @param indent Indentation string to be prepended during printing + * @return + */ +void DicomDirStudy::Print(std::ostream &os, std::string const & ) +{ + os << "STUDY" << std::endl; + DicomDirObject::Print(os); + + for(ListDicomDirSerie::iterator cc = Series.begin(); + cc != Series.end(); + ++cc) + { + (*cc)->SetPrintLevel(PrintLevel); + (*cc)->Print(os); + } +} + +//----------------------------------------------------------------------------- +} // end namespace gdcm