]> Creatis software - gdcm.git/blob - Testing/TestDicomDir.cxx
Stage 3 of normalization :
[gdcm.git] / Testing / TestDicomDir.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: TestDicomDir.cxx,v $
5   Language:  C++
6   Date:      $Date: 2005/01/24 16:10:50 $
7   Version:   $Revision: 1.32 $
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    else
67    {
68       std::cout<<"          DicomDir '"<<file
69                <<"' is readable"<<std::endl;
70    }
71
72    // Test if the DicomDir contains any Patient
73    if( !e1->GetFirstPatient() )
74    {
75       std::cout<<"          DicomDir '"<<file
76                <<" has no patient"<<std::endl
77                <<"          ...Failed"<<std::endl;
78
79       delete e1;
80       return 1;
81    }
82
83    // step by step structure full exploitation
84    std::cout << std::endl << std::endl  
85              << " = PATIENT/STUDY/SERIE/IMAGE List ============================" 
86              << std::endl<< std::endl;
87   
88    pa = e1->GetFirstPatient(); 
89    while ( pa ) 
90    {  // we process all the PATIENT of this DICOMDIR 
91       std::cout << pa->GetEntryValue(0x0010, 0x0010) << std::endl; // Patient's Name
92
93       st = pa->GetFirstStudy();
94       while ( st ) 
95       { // we process all the STUDY of this patient
96          std::cout << "--- "<< st->GetEntryValue(0x0008, 0x1030) << std::endl;    // Study Description
97          std::cout << " Stud.ID:["          << st->GetEntryValue(0x0020, 0x0010); // Study ID
98
99          se = st->GetFirstSerie();
100          while ( se ) 
101          { // we process all the SERIES of this study
102             std::cout << "--- --- "<< se->GetEntryValue(0x0008, 0x103e) << std::endl;      // Serie Description
103             std::cout << " Ser.nb:["         <<  se->GetEntryValue(0x0020, 0x0011);        // Series number
104             std::cout << "] Mod.:["          <<  se->GetEntryValue(0x0008, 0x0060) << "]"; // Modality
105
106             im = se->GetFirstImage();
107             while ( im ) { // we process all the IMAGE of this serie
108                std::cout << "--- --- --- "<< im->GetEntryValue(0x0004, 0x1500) << std::endl; // File name
109                im = se->GetNextImage();   
110             }
111             se = st->GetNextSerie();   
112          }
113          st = pa->GetNextStudy();
114       }  
115       pa = e1->GetNextPatient();
116    }  
117
118    std::cout << std::endl << std::endl  
119              << " = DICOMDIR full content ====================================" 
120              << std::endl<< std::endl;
121    e1->Print();
122    
123    std::cout<<std::flush;
124    delete e1;
125
126    return 0;
127 }