// gdcmDicomDir.cxx //----------------------------------------------------------------------------- #include "gdcmDicomDir.h" #include "gdcmStudy.h" #include "gdcmSerie.h" #include "gdcmImage.h" #include "gdcmUtil.h" #include //----------------------------------------------------------------------------- // Constructor / Destructor gdcmDicomDir::gdcmDicomDir(std::string & FileName, bool exception_on_error): gdcmParser(FileName.c_str(),exception_on_error, true ) { if ( GetListEntry().begin() == GetListEntry().end() ) { dbg.Verbose(0, "gdcmDicomDir::gdcmDicomDir entry list empty"); } CreateDicomDir(); } gdcmDicomDir::~gdcmDicomDir() { for(ListPatient::iterator cc = patients.begin();cc!=patients.end();++cc) { delete *cc; } } //----------------------------------------------------------------------------- // Print void gdcmDicomDir::Print(std::ostream &os) { for(ListPatient::iterator cc = patients.begin();cc!=patients.end();++cc) { (*cc)->SetPrintLevel(printLevel); (*cc)->Print(os); } } //----------------------------------------------------------------------------- // Public //----------------------------------------------------------------------------- // Protected //----------------------------------------------------------------------------- // Private void gdcmDicomDir::CreateDicomDir(void) { // The list is parsed. When a tag is found : // 1 - we save the beginning iterator // 2 - we continue to parse // 3 - we find an other tag // + we create the object for the precedent tag // + loop to 1 - gdcmDicomDirType type=gdcmDicomDir::GDCM_NONE; ListTag::iterator begin; ListTag::iterator end; begin=GetListEntry().begin(); end=begin; for(ListTag::iterator i=GetListEntry().begin();i != GetListEntry().end();++i) { // std::cout << std::hex << (*i)->GetGroup() << // " " << (*i)->GetElement() << endl; std::string v = (*i)->GetValue(); if (v == "PATIENT ") { // std::cout<<"PATIENT"<0) { ListPatient::iterator itp=patients.end(); itp--; (*itp)->AddStudy(new gdcmStudy(begin,end)); } } void gdcmDicomDir::AddSerieToEnd(ListTag::iterator begin,ListTag::iterator end) { if(patients.size()>0) { ListPatient::iterator itp=patients.end(); itp--; if((*itp)->GetStudies().size()>0) { ListStudy::iterator itst=(*itp)->GetStudies().end(); itst--; (*itst)->AddSerie(new gdcmSerie(begin,end)); } } } void gdcmDicomDir::AddImageToEnd(ListTag::iterator begin,ListTag::iterator end) { if(patients.size()>0) { ListPatient::iterator itp=patients.end(); itp--; if((*itp)->GetStudies().size()>0) { ListStudy::iterator itst=(*itp)->GetStudies().end(); itst--; if((*itst)->GetSeries().size()>0) { ListSerie::iterator its=(*itst)->GetSeries().end(); its--; (*its)->AddImage(new gdcmImage(begin,end)); } } } } //-----------------------------------------------------------------------------