]> Creatis software - gdcm.git/blob - Testing/TestDicomDir.cxx
Modify the parsing process, not to use (now unexposed) intermal mechanisms
[gdcm.git] / Testing / TestDicomDir.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: TestDicomDir.cxx,v $
5   Language:  C++
6   Date:      $Date: 2005/01/17 11:01:26 $
7   Version:   $Revision: 1.27 $
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 "gdcmDocEntry.h"
19 #include "gdcmDicomDir.h"
20 #include "gdcmDicomDirPatient.h"
21 #include "gdcmDicomDirStudy.h"
22 #include "gdcmDicomDirSerie.h"
23 #include "gdcmDicomDirImage.h"
24 #include "gdcmTS.h"
25
26 #include <iostream>
27 #include <fstream>
28
29 int TestDicomDir(int argc, char* argv[])
30 {  
31    gdcm::DicomDir *e1;
32    
33    gdcm::DicomDirPatient *pa;
34    gdcm::DicomDirStudy *st;
35    gdcm::DicomDirSerie *se;
36    gdcm::DicomDirImage *im;
37
38    gdcm::TSKey v;
39     
40    std::string file; 
41    if (argc > 1) 
42       file = argv[1];    
43    else 
44    {
45       file += GDCM_DATA_ROOT;
46       file += "/DICOMDIR";
47    }
48
49    e1 = new gdcm::DicomDir(file);
50    if (argc > 2) 
51    {
52       int level = atoi(argv[2]);   
53       e1->SetPrintLevel(level);
54    }
55
56    // Test if the DicomDir is readable
57    if( !e1->IsReadable() )
58    {
59       std::cout<<"          DicomDir '"<<file
60                <<"' is not readable"<<std::endl
61                <<"          ...Failed"<<std::endl;
62
63       delete e1;
64       return 1;
65    }
66
67    // Test if the DicomDir contains any Patient
68    if( e1->GetNextEntry() )
69    {
70       std::cout<<"          DicomDir '"<<file
71                <<" has no patient"<<std::endl
72                <<"          ...Failed"<<std::endl;
73
74       delete e1;
75       return 1;
76    }
77
78   // step by step structure full exploitation
79   
80    std::cout << std::endl << std::endl  
81              << " = PATIENT/STUDY/SERIE/IMAGE List ============================" 
82              << std::endl<< std::endl;
83   
84    e1->InitTraversal();
85    pa = e1->GetNextEntry(); 
86    while ( pa ) {  // on degouline la liste de PATIENT
87       std::cout << pa->GetEntry(0x0010, 0x0010) << std::endl; // Patient's Name
88       pa->InitTraversal();
89       st = pa->GetNextEntry();
90       while ( st ) { // on degouline les STUDY de ce patient
91          std::cout << "--- "<< st->GetEntry(0x0008, 0x1030) << std::endl;    // Study Description
92          std::cout << " Stud.ID:["          << st->GetEntry(0x0020, 0x0010); // Study ID
93          st->InitTraversal();
94          se = st->GetNextEntry();
95          while ( se ) { // on degouline les SERIES de cette study
96             std::cout << "--- --- "<< se->GetEntry(0x0008, 0x103e) << std::endl;      // Serie Description
97             std::cout << " Ser.nb:["         <<  se->GetEntry(0x0020, 0x0011);        // Series number
98             std::cout << "] Mod.:["          <<  se->GetEntry(0x0008, 0x0060) << "]"; // Modality
99             se->InitTraversal();
100             im = se->GetNextEntry();
101             while ( im ) { // on degouline les Images de cette serie
102                std::cout << "--- --- --- "<< im->GetEntry(0x0004, 0x1500) << std::endl; // File name
103                im = se->GetNextEntry();   
104             }
105             se = st->GetNextEntry();   
106          }
107          st = pa->GetNextEntry();
108      }  
109      pa = e1->GetNextEntry();
110   }  
111       
112     
113    std::cout << std::endl << std::endl  
114              << " = DICOMDIR full content ====================================" 
115              << std::endl<< std::endl;
116    e1->Print();
117    
118    std::cout<<std::flush;
119    delete e1;
120
121    return 0;
122 }