]> Creatis software - gdcm.git/blob - Example/PrintDicomDir.cxx
Stage 3 of normalization :
[gdcm.git] / Example / PrintDicomDir.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: PrintDicomDir.cxx,v $
5   Language:  C++
6   Date:      $Date: 2005/01/24 16:10:49 $
7   Version:   $Revision: 1.18 $
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 #include "gdcmDocument.h"
19 #include "gdcmDicomDir.h"
20 #include "gdcmValEntry.h"
21 #include "gdcmDicomDirPatient.h"
22 #include "gdcmDicomDirStudy.h"
23 #include "gdcmDicomDirSerie.h"
24 #include "gdcmDicomDirImage.h"
25 #include "gdcmTS.h"
26 #include "gdcmDebug.h"
27
28 #include <fstream>
29 #include <iostream>
30
31 int main(int argc, char* argv[])
32 {  
33    gdcm::DicomDir *e1;
34    gdcm::TSKey v;
35
36    gdcm::DicomDirPatient *pa;
37    gdcm::DicomDirStudy *st;
38    gdcm::DicomDirSerie *se;
39    gdcm::DicomDirImage *im;
40   
41    std::string fileName; 
42    if (argc > 1) 
43       fileName = argv[1];    
44    else 
45    {
46       fileName = GDCM_DATA_ROOT;
47       fileName += "/DICOMDIR";
48    }
49
50    if (argc > 3)
51       gdcm::Debug::SetDebugOn();
52
53    e1 = new gdcm::DicomDir( fileName );
54
55    e1->SetPrintLevel(2);
56    int detailLevel;
57    if (argc > 2)
58       detailLevel = atoi(argv[2]);   
59    else
60       detailLevel = 3;
61
62    // Test if the DicomDir is readable
63    if( !e1->IsReadable() )
64    {
65       std::cout<<"          DicomDir '"<<fileName
66                <<"' is not readable"<<std::endl
67                <<"          ...Failed"<<std::endl;
68
69       delete e1;
70       return 1;
71    }
72
73    // Test if the DicomDir contains any Patient
74    pa = e1->GetFirstPatient();
75    if ( pa  == 0)
76    {
77       std::cout<<"          DicomDir '"<<fileName
78                <<" has no patient"<<std::endl
79                <<"          ...Failed"<<std::endl;
80
81       delete e1;
82       return 1;
83    }
84
85 // Structure use Examples 
86
87    switch (detailLevel)
88   { 
89   case 1:
90      std::cout << std::endl << std::endl  
91        << " =  PATIENT List ==========================================" 
92        << std::endl<< std::endl;
93
94       pa = e1->GetFirstPatient();
95       while (pa) 
96       {
97          std::cout << pa->GetEntryValue(0x0010, 0x0010) << std::endl; // Patient's Name   
98          pa = e1->GetNextPatient();    
99       }
100       break;
101
102    case 2:    
103       std::cout << std::endl << std::endl  
104         << " = PATIENT/STUDY List =======================================" 
105         << std::endl<< std::endl;
106
107       pa = e1->GetFirstPatient();
108       while ( pa ) // on degouline les PATIENT de ce DICOMDIR
109       {  
110          std::cout << pa->GetEntryValue(0x0010, 0x0010) << std::endl; // Patient's Name 
111
112          st = pa->GetFirstStudy();
113          while ( st ) { // on degouline les STUDY de ce patient
114             std::cout << "--- "<< st->GetEntryValue(0x0008, 0x1030) << std::endl; // Study Description
115             st = pa->GetNextStudy();
116          }
117          pa = e1->GetNextPatient();    
118       }   
119       break;
120
121    case 3: 
122       std::cout << std::endl << std::endl  
123         << " =  PATIENT/STUDY/SERIE List ==================================" 
124         << std::endl<< std::endl;
125
126       pa = e1->GetFirstPatient(); 
127       while ( pa )   // on degouline les PATIENT de ce DICOMDIR
128       {
129        // Patient's Name, Patient ID 
130          std::cout << "Pat.Name:[" << pa->GetEntryValue(0x0010, 0x0010) <<"]"; // Patient's Name
131          std::cout << " Pat.ID:[";
132          std::cout << pa->GetEntryValue(0x0010, 0x0020) << "]" << std::endl; // Patient ID
133
134          st = pa->GetFirstStudy();
135          while ( st ) { // on degouline les STUDY de ce patient
136             std::cout << "--- Stud.descr:["    << st->GetEntryValue(0x0008, 0x1030) << "]";// Study Description 
137             std::cout << " Stud.ID:["          << st->GetEntryValue(0x0020, 0x0010);       // Study ID
138             std::cout << "]" << std::endl;
139
140             se = st->GetFirstSerie();
141             while ( se ) { // on degouline les SERIES de cette study
142                std::cout << "--- --- Ser.Descr:["<< se->GetEntryValue(0x0008, 0x103e)<< "]";  // Series Description
143                std::cout << " Ser.nb:["         <<  se->GetEntryValue(0x0020, 0x0011);        // Series number
144                std::cout << "] Mod.:["          <<  se->GetEntryValue(0x0008, 0x0060) << "]"; // Modality
145                std::cout << std::endl;    
146                se = st->GetNextSerie();   
147             }
148             st = pa->GetNextStudy();
149          }
150          pa = e1->GetNextPatient();    
151       } 
152       break;
153
154    case 4:  
155       std::cout << std::endl << std::endl  
156            << " = PATIENT/STUDY/SERIE/IMAGE List ============================" 
157            << std::endl<< std::endl;
158  
159       pa = e1->GetFirstPatient(); 
160       while ( pa ) {  // les PATIENT de ce DICOMDIR
161          std::cout << pa->GetEntryValue(0x0010, 0x0010) << std::endl; // Patient's Name
162
163          st = pa->GetFirstStudy();
164          while ( st ) { // on degouline les STUDY de ce patient
165             std::cout << "--- "<< st->GetEntryValue(0x0008, 0x1030) << std::endl;    // Study Description
166             std::cout << " Stud.ID:["          << st->GetEntryValue(0x0020, 0x0010); // Study ID
167
168             se = st->GetFirstSerie();
169             while ( se ) { // on degouline les SERIES de cette study
170                std::cout << "--- --- "<< se->GetEntryValue(0x0008, 0x103e) << std::endl;      // Serie Description
171                std::cout << " Ser.nb:["         <<  se->GetEntryValue(0x0020, 0x0011);        // Series number
172                std::cout << "] Mod.:["          <<  se->GetEntryValue(0x0008, 0x0060) << "]"; // Modality
173
174                im = se->GetFirstImage();
175                while ( im ) { // on degouline les Images de cette serie
176                   std::cout << "--- --- --- "<< im->GetEntryValue(0x0004, 0x1500) << std::endl; // File name
177                   im = se->GetNextImage();   
178                }
179                se = st->GetNextSerie();   
180            }
181             st = pa->GetNextStudy();
182         }     
183         pa = e1->GetNextPatient();    
184       }
185       break;
186
187    case 5:
188       std::cout << std::endl << std::endl  
189            << " = DICOMDIR full content ==========================================" 
190            << std::endl<< std::endl;
191       e1->Print();
192       break;
193
194    }  // end switch
195
196
197  /*
198    // Previous code.
199    // Kept as an example. Please don't remove
200  
201    gdcm::ListDicomDirPatient::const_iterator  itPatient;
202    gdcm::ListDicomDirStudy::const_iterator    itStudy;
203    gdcm::ListDicomDirSerie::const_iterator    itSerie;
204    gdcm::ListDicomDirImage::const_iterator    itImage;
205    cout << std::endl << std::endl
206         << " = Liste des PATIENT/STUDY/SERIE/IMAGE ===================================" 
207         << std::endl<< std::endl;
208  
209    itPatient = e1->GetDicomDirPatients().begin();
210    while ( itPatient != e1->GetDicomDirPatients().end() ) {  // on degouline les PATIENT de ce DICOMDIR
211       std::cout << (*itPatient)->GetEntryValue(0x0010, 0x0010) << std::endl; // Patient's Name
212       itStudy = ((*itPatient)->GetDicomDirStudies()).begin();
213       while (itStudy != (*itPatient)->GetDicomDirStudies().end() ) { // on degouline les STUDY de ce patient
214          std::cout << "--- "<< (*itStudy)->GetEntryValue(0x0008, 0x1030) << std::endl; // Study Description
215          itSerie = ((*itStudy)->GetDicomDirSeries()).begin();
216          while (itSerie != (*itStudy)->GetDicomDirSeries().end() ) { // on degouline les SERIES de cette study
217             std::cout << "--- --- "<< (*itSerie)->GetEntryValue(0x0008, 0x103e) << std::endl; // Serie Description
218             itImage = ((*itSerie)->GetDicomDirImages()).begin();
219             while (itImage != (*itSerie)->GetDicomDirImages().end() ) { // on degouline les IMAGES de cette serie
220                std::cout << "--- --- --- "<< (*itImage)->GetEntryValue(0x0004, 0x1500) << std::endl; // File name
221                ++itImage;   
222             }
223             ++itSerie;   
224          }
225          ++itStudy;
226       }  
227       itPatient ++;    
228    }   
229  */  
230
231
232    if(e1->IsReadable())
233       std::cout <<std::endl<<fileName<<" is Readable"<<std::endl;
234    else
235       std::cout <<std::endl<<fileName<<" is NOT Readable"<<std::endl;
236    std::cout<<std::flush;
237    delete e1;
238
239    return(0);
240 }