]> Creatis software - gdcm.git/blob - src/gdcmDicomDirPatient.cxx
abf4d1b2f0fd4b0dc210ab71efcbe481d0b0c94e
[gdcm.git] / src / gdcmDicomDirPatient.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmDicomDirPatient.cxx,v $
5   Language:  C++
6   Date:      $Date: 2005/01/18 14:28:32 $
7   Version:   $Revision: 1.28 $
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 "gdcmDicomDirPatient.h"
20 #include "gdcmDicomDirElement.h"
21 #include "gdcmGlobal.h"
22 #include "gdcmDicomDirStudy.h"
23 #include "gdcmSQItem.h"
24 #include "gdcmDebug.h"
25
26 namespace gdcm 
27 {
28
29 //-----------------------------------------------------------------------------
30 // Constructor / Destructor
31 /**
32  * \brief   Constructor
33  */
34 DicomDirPatient::DicomDirPatient():
35    DicomDirObject()
36 {
37 }
38 /**
39  * \brief   Canonical destructor.
40  */
41 DicomDirPatient::~DicomDirPatient() 
42 {
43    for(ListDicomDirStudy::const_iterator cc = Studies.begin();
44                                          cc != Studies.end(); 
45                                        ++cc )
46    {
47       delete *cc;
48    }
49 }
50
51 //-----------------------------------------------------------------------------
52 // Print
53 /**
54  * \brief   Prints the Object
55  * @param os ostream to write to 
56  * @param   indent indent
57  */ 
58 void DicomDirPatient::Print(std::ostream &os, std::string const & )
59 {
60    os << "PATIENT" << std::endl;
61    DicomDirObject::Print(os);
62
63    for(ListDicomDirStudy::const_iterator cc = Studies.begin();
64                                          cc != Studies.end(); 
65                                        ++cc )
66    {
67       (*cc)->SetPrintLevel(PrintLevel);
68       (*cc)->Print(os);
69    }
70 }
71
72 /**
73  * \brief   Writes the Object
74  * @param fp ofstream to write to
75  * @param t Type of the File (explicit VR, implicitVR, ...) 
76  */ 
77 void DicomDirPatient::WriteContent(std::ofstream *fp, FileType t)
78 {
79    DicomDirObject::WriteContent(fp, t);
80
81    for(ListDicomDirStudy::iterator cc = Studies.begin();
82                                    cc!= Studies.end();
83                                  ++cc )
84    {
85       (*cc)->WriteContent( fp, t );
86    }
87 }
88 //-----------------------------------------------------------------------------
89 // Public
90
91 /**
92  * \brief   adds a new Patient at the begining of the PatientList
93  *          of a partially created DICOMDIR
94  */
95 DicomDirStudy* DicomDirPatient::NewStudy()
96 {
97    ListDicomDirStudyElem const &elemList = 
98       Global::GetDicomDirElements()->GetDicomDirStudyElements();
99       
100    DicomDirStudy *st = new DicomDirStudy();
101    st->FillObject(elemList);
102
103    Studies.push_front(st);
104    return st; 
105 }   
106
107 /**
108  * \brief   Get the first entry while visiting the DicomDirStudy
109  * \return  The first DicomDirStudy if found, otherwhise NULL
110  */ 
111 DicomDirStudy *DicomDirPatient::GetFirstEntry()
112 {
113    ItDicomDirStudy = Studies.begin();
114    if (ItDicomDirStudy != Studies.end())
115       return *ItDicomDirStudy;
116    return NULL;
117 }
118
119 /**
120  * \brief   Get the next entry while visiting the DicomDirStudies
121  * \note : meaningfull only if GetFirstEntry already called
122  * \return  The next DicomDirStudies if found, otherwhise NULL
123  */
124 DicomDirStudy *DicomDirPatient::GetNextEntry()
125 {
126    gdcmAssertMacro (ItDicomDirStudy != Studies.end())
127    {
128       ++ItDicomDirStudy;
129       if (ItDicomDirStudy != Studies.end())
130          return *ItDicomDirStudy;
131    }
132    return NULL;
133 }
134 //-----------------------------------------------------------------------------
135 // Protected
136
137 //-----------------------------------------------------------------------------
138 // Private
139
140 //-----------------------------------------------------------------------------
141
142 } // end namespace gdcm