]> Creatis software - gdcm.git/blob - src/gdcmDicomDirStudy.cxx
Solve pb when structure (list, map, ...) is empty.
[gdcm.git] / src / gdcmDicomDirStudy.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmDicomDirStudy.cxx,v $
5   Language:  C++
6   Date:      $Date: 2005/01/18 11:39:59 $
7   Version:   $Revision: 1.26 $
8                                                                                 
9   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10   l'Image). All rights reserved. See Doc/License.txt or
11   http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
12                                                                                 
13      This software is distributed WITHOUT ANY WARRANTY; without even
14      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15      PURPOSE.  See the above copyright notices for more information.
16                                                                                 
17 =========================================================================*/
18
19 #include "gdcmDicomDirStudy.h"
20 #include "gdcmDicomDirElement.h"
21 #include "gdcmGlobal.h"
22 #include "gdcmDicomDirSerie.h"
23 #include "gdcmDebug.h"
24
25 namespace gdcm 
26 {
27 //-----------------------------------------------------------------------------
28 // Constructor / Destructor
29 /**
30  * \brief  Constructor 
31  */
32 DicomDirStudy::DicomDirStudy():
33    DicomDirObject()
34 {
35 }
36 /**
37  * \brief   Canonical destructor.
38  */
39 DicomDirStudy::~DicomDirStudy() 
40 {
41    for(ListDicomDirSerie::iterator cc = Series.begin();
42                                    cc != Series.end();
43                                  ++cc )
44    {
45       delete *cc;
46    }
47 }
48
49 //-----------------------------------------------------------------------------
50 // Print
51 /**
52  * \brief   Prints the Object
53  * @param os ostream to write to 
54  * @return
55  */ 
56 void DicomDirStudy::Print(std::ostream &os, std::string const & )
57 {
58    os << "STUDY" << std::endl;
59    DicomDirObject::Print(os);
60
61    for(ListDicomDirSerie::iterator cc = Series.begin();
62                                    cc != Series.end();
63                                    ++cc)
64    {
65       (*cc)->SetPrintLevel(PrintLevel);
66       (*cc)->Print(os);
67    }
68 }
69
70 //-----------------------------------------------------------------------------
71 // Public
72
73 /**
74  * \brief   Writes the Object
75  * @param fp ofstream to write to
76  * @param t Type of the File (explicit VR, implicitVR, ...) 
77  * @return
78  */ 
79 void DicomDirStudy::WriteContent(std::ofstream *fp, FileType t)
80 {
81    DicomDirObject::WriteContent(fp, t);
82
83    for(ListDicomDirSerie::iterator cc = Series.begin();
84                                    cc!= Series.end();
85                                  ++cc )
86    {
87       (*cc)->WriteContent( fp, t );
88    }
89 }
90
91 /**
92  * \brief   adds a new Serie at the begining of the SerieList
93  *          of a partially created DICOMDIR
94  */
95 DicomDirSerie *DicomDirStudy::NewSerie()
96 {
97    ListDicomDirSerieElem const &elemList = 
98       Global::GetDicomDirElements()->GetDicomDirSerieElements();   
99
100    DicomDirSerie* st = new DicomDirSerie();
101    FillObject(elemList);
102    Series.push_front(st);
103
104    return st;  
105
106
107  /**
108  * \brief   Get the first entry while visiting the DicomDirSeries
109  * \return  The first DicomDirSerie if found, otherwhise NULL
110  */
111 DicomDirSerie *DicomDirStudy::GetFirstEntry()
112 {
113    ItDicomDirSerie = Series.begin();
114    if (ItDicomDirSerie != Series.end())
115       return *ItDicomDirSerie;
116    return NULL;
117 }
118
119 /**
120  * \brief   Get the next entry while visiting the DicomDirSeries
121  * \note : meaningfull only if GetFirstEntry already called
122  * \return  The next DicomDirSerie if found, otherwhise NULL
123  */
124 DicomDirSerie *DicomDirStudy::GetNextEntry()
125 {
126    gdcmAssertMacro (ItDicomDirSerie != Series.end());
127    {
128       ++ItDicomDirSerie;
129       if (ItDicomDirSerie != Series.end())
130          return *ItDicomDirSerie;
131    }
132    return NULL;
133 }  
134 //-----------------------------------------------------------------------------
135 // Protected
136
137 //-----------------------------------------------------------------------------
138 // Private
139
140 //-----------------------------------------------------------------------------
141 } // end namespace gdcm
142