]> Creatis software - gdcm.git/blob - Example/PrintDicomDir.cxx
Some checking added
[gdcm.git] / Example / PrintDicomDir.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: PrintDicomDir.cxx,v $
5   Language:  C++
6   Date:      $Date: 2005/04/26 16:21:54 $
7   Version:   $Revision: 1.21 $
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::DebugOn();
52
53    // new style is useless, since it has no effect fore *reading* a DICOMDIR
54    // (only meaningfull when *creating* a DICOMDIR)
55
56    e1 = new gdcm::DicomDir( fileName );
57
58    //e1 = new gdcm::DicomDir();
59    //e1->SetParseDir(false);
60    //e1->Load(  fileName );
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    e1->SetPrintLevel(2);
74    int detailLevel;
75    if (argc > 2)
76       detailLevel = atoi(argv[2]);   
77    else
78       detailLevel = 3;
79
80    // Test if the DicomDir contains any Patient
81    pa = e1->GetFirstPatient();
82    if ( pa  == 0)
83    {
84       std::cout<<"          DicomDir '"<<fileName
85                <<" has no patient"<<std::endl
86                <<"          ...Failed"<<std::endl;
87
88       delete e1;
89       return 1;
90    }
91
92 // Structure use Examples 
93
94    switch (detailLevel)
95   { 
96   case 1:
97      std::cout << std::endl << std::endl  
98        << " =  PATIENT List ==========================================" 
99        << std::endl<< std::endl;
100
101       pa = e1->GetFirstPatient();
102       while (pa) 
103       {
104          std::cout << pa->GetEntryValue(0x0010, 0x0010) << std::endl; // Patient's Name   
105          pa = e1->GetNextPatient();    
106       }
107       break;
108
109    case 2:    
110       std::cout << std::endl << std::endl  
111         << " = PATIENT/STUDY List =======================================" 
112         << std::endl<< std::endl;
113
114       pa = e1->GetFirstPatient();
115       while ( pa ) // on degouline les PATIENT de ce DICOMDIR
116       {  
117          std::cout << pa->GetEntryValue(0x0010, 0x0010) << std::endl; // Patient's Name 
118
119          st = pa->GetFirstStudy();
120          while ( st ) { // on degouline les STUDY de ce patient
121             std::cout << "--- "<< st->GetEntryValue(0x0008, 0x1030) << std::endl; // Study Description
122             st = pa->GetNextStudy();
123          }
124          pa = e1->GetNextPatient();    
125       }   
126       break;
127
128    case 3: 
129       std::cout << std::endl << std::endl  
130         << " =  PATIENT/STUDY/SERIE List ==================================" 
131         << std::endl<< std::endl;
132
133       pa = e1->GetFirstPatient(); 
134       while ( pa )   // on degouline les PATIENT de ce DICOMDIR
135       {
136        // Patient's Name, Patient ID 
137          std::cout << "Pat.Name:[" << pa->GetEntryValue(0x0010, 0x0010) <<"]"; // Patient's Name
138          std::cout << " Pat.ID:[";
139          std::cout << pa->GetEntryValue(0x0010, 0x0020) << "]" << std::endl; // Patient ID
140
141          st = pa->GetFirstStudy();
142          while ( st ) { // on degouline les STUDY de ce patient
143             std::cout << "--- Stud.descr:["    << st->GetEntryValue(0x0008, 0x1030) << "]";// Study Description 
144             std::cout << " Stud.ID:["          << st->GetEntryValue(0x0020, 0x0010);       // Study ID
145             std::cout << "]" << std::endl;
146
147             se = st->GetFirstSerie();
148             while ( se ) { // on degouline les SERIES de cette study
149                std::cout << "--- --- Ser.Descr:["<< se->GetEntryValue(0x0008, 0x103e)<< "]";  // Series Description
150                std::cout << " Ser.nb:["         <<  se->GetEntryValue(0x0020, 0x0011);        // Series number
151                std::cout << "] Mod.:["          <<  se->GetEntryValue(0x0008, 0x0060) << "]"; // Modality
152                std::cout << std::endl;    
153                se = st->GetNextSerie();   
154             }
155             st = pa->GetNextStudy();
156          }
157          pa = e1->GetNextPatient();    
158       } 
159       break;
160
161    case 4:  
162       std::cout << std::endl << std::endl  
163            << " = PATIENT/STUDY/SERIE/IMAGE List ============================" 
164            << std::endl<< std::endl;
165  
166       pa = e1->GetFirstPatient(); 
167       while ( pa ) {  // les PATIENT de ce DICOMDIR
168          std::cout << pa->GetEntryValue(0x0010, 0x0010) << std::endl; // Patient's Name
169
170          st = pa->GetFirstStudy();
171          while ( st ) { // on degouline les STUDY de ce patient
172             std::cout << "--- "<< st->GetEntryValue(0x0008, 0x1030) << std::endl;    // Study Description
173             std::cout << " Stud.ID:["          << st->GetEntryValue(0x0020, 0x0010); // Study ID
174
175             se = st->GetFirstSerie();
176             while ( se ) { // on degouline les SERIES de cette study
177                std::cout << "--- --- "<< se->GetEntryValue(0x0008, 0x103e) << std::endl;      // Serie Description
178                std::cout << " Ser.nb:["         <<  se->GetEntryValue(0x0020, 0x0011);        // Series number
179                std::cout << "] Mod.:["          <<  se->GetEntryValue(0x0008, 0x0060) << "]"; // Modality
180
181                im = se->GetFirstImage();
182                while ( im ) { // on degouline les Images de cette serie
183                   std::cout << "--- --- --- "<< im->GetEntryValue(0x0004, 0x1500) << std::endl; // File name
184                   im = se->GetNextImage();   
185                }
186                se = st->GetNextSerie();   
187            }
188             st = pa->GetNextStudy();
189         }     
190         pa = e1->GetNextPatient();    
191       }
192       break;
193
194    case 5:
195       std::cout << std::endl << std::endl  
196            << " = DICOMDIR full content ==========================================" 
197            << std::endl<< std::endl;
198       e1->Print();
199       break;
200
201    }  // end switch
202
203
204  /*
205    // Previous code.
206    // Kept as an example. Please don't remove
207  
208    gdcm::ListDicomDirPatient::const_iterator  itPatient;
209    gdcm::ListDicomDirStudy::const_iterator    itStudy;
210    gdcm::ListDicomDirSerie::const_iterator    itSerie;
211    gdcm::ListDicomDirImage::const_iterator    itImage;
212    cout << std::endl << std::endl
213         << " = Liste des PATIENT/STUDY/SERIE/IMAGE ===================================" 
214         << std::endl<< std::endl;
215  
216    itPatient = e1->GetDicomDirPatients().begin();
217    while ( itPatient != e1->GetDicomDirPatients().end() ) {  // on degouline les PATIENT de ce DICOMDIR
218       std::cout << (*itPatient)->GetEntryValue(0x0010, 0x0010) << std::endl; // Patient's Name
219       itStudy = ((*itPatient)->GetDicomDirStudies()).begin();
220       while (itStudy != (*itPatient)->GetDicomDirStudies().end() ) { // on degouline les STUDY de ce patient
221          std::cout << "--- "<< (*itStudy)->GetEntryValue(0x0008, 0x1030) << std::endl; // Study Description
222          itSerie = ((*itStudy)->GetDicomDirSeries()).begin();
223          while (itSerie != (*itStudy)->GetDicomDirSeries().end() ) { // on degouline les SERIES de cette study
224             std::cout << "--- --- "<< (*itSerie)->GetEntryValue(0x0008, 0x103e) << std::endl; // Serie Description
225             itImage = ((*itSerie)->GetDicomDirImages()).begin();
226             while (itImage != (*itSerie)->GetDicomDirImages().end() ) { // on degouline les IMAGES de cette serie
227                std::cout << "--- --- --- "<< (*itImage)->GetEntryValue(0x0004, 0x1500) << std::endl; // File name
228                ++itImage;   
229             }
230             ++itSerie;   
231          }
232          ++itStudy;
233       }  
234       itPatient ++;    
235    }   
236  */  
237
238
239    if(e1->IsReadable())
240       std::cout <<std::endl<<fileName<<" is Readable"<<std::endl;
241    else
242       std::cout <<std::endl<<fileName<<" is NOT Readable"<<std::endl;
243    std::cout<<std::flush;
244    delete e1;
245
246    return(0);
247 }