]> Creatis software - gdcm.git/blob - Example/BuildUpDicomDir.cxx
* Test/TestAllEntryVerify.cxx minor fix and added comments.
[gdcm.git] / Example / BuildUpDicomDir.cxx
1 #include <iostream>
2 #include "gdcm.h"
3 #include "gdcmDocEntry.h"
4 #include "gdcmDicomDir.h"
5 #include "gdcmDicomDirPatient.h"
6 #include "gdcmDirList.h"
7 #include "gdcmDebug.h"
8
9 #include <fstream>
10 #ifdef GDCM_NO_ANSI_STRING_STREAM
11 #  include <strstream>
12 #  define  ostringstream ostrstream
13 # else
14 #  include <sstream>
15 #endif
16
17 #define  ostringstream ostrstream
18
19 #include <sys/types.h>
20 #include <errno.h>
21
22 // for Directory pb
23 #ifdef _MSC_VER 
24    #include <windows.h> 
25    #include <direct.h>
26 #else
27    #include <dirent.h>   
28    #include <unistd.h>
29 #endif
30
31 #include <vector>
32 #include <algorithm>
33
34 // ===============================================================
35 /**
36   * \ingroup Test
37   * \brief   Builds up ex-nihilo a DICOMDIR file 
38   *          adding Patient, Study, Serie, Image descriptions
39   *          to an empty gdcmDicomDir occurence
40   *          and writes a file named NewDICOMDIR. 
41   */
42   
43 int main(int argc, char* argv[])
44 {
45    if (argc) {
46       std::cerr << "Usage: " << argv[0] << " dummy ";
47    }
48
49    gdcmDicomDir *dcmdir;
50    std::string dirName;  
51
52    printf( "BuildUpDicomDir: entering  BuildUpDicomDir\n");
53
54    dcmdir=new gdcmDicomDir();
55    printf( "BuildUpDicomDir: exiting new DicomDir\n");
56
57    printf( "\n------- BuildUpDicomDir: Test Print Meta only -----\n");
58    ((gdcmDocument *)dcmdir)->Print();
59
60    gdcmDicomDirPatient *p1=dcmdir->NewPatient();
61    p1->SetEntryByNumber("patientONE",0x0010, 0x0010);
62
63      
64    gdcmDicomDirPatient *p2=dcmdir->NewPatient();
65    p2->SetEntryByNumber("patientTWO",0x0010, 0x0010);     
66    gdcmDicomDirStudy *s21=p2->NewStudy();  
67        s21->SetEntryByNumber("StudyDescrTwo.One",0x0008, 0x1030);        
68    gdcmDicomDirSerie *s211=s21->NewSerie();   
69    gdcmDicomDirImage *s2111=s211->NewImage();
70    (void)s2111; //not used
71
72    gdcmDicomDirStudy *s11=p1->NewStudy();  
73        s11->SetEntryByNumber("StudyDescrOne.One",0x0008, 0x1030);
74        // Name of the physician reading study
75        // Header Entry to be created
76        s11->SetEntryByNumber("Dr Mabuse",0x0008, 0x1060);
77
78    gdcmDicomDirPatient *p3=dcmdir->NewPatient();
79    p3->SetEntryByNumber("patientTHREE",0x0010, 0x0010);
80
81    printf( "\n------- BuildUpDicomDir: Test Print of Patient ONE -----\n");
82    p1->Print();
83    printf( "\n------- BuildUpDicomDir: Test Print of Patient THREE -----\n");
84    p3->Print();
85    printf( "\n------- BuildUpDicomDir: Test Print of Patient TWO -------\n");
86    p2->Print();
87    printf( "\n------- BuildUpDicomDir: Test Full Print-------------------\n");  
88    dcmdir->SetPrintLevel(-1);
89    dcmdir->Print();
90
91    dcmdir->Write("NewDICOMDIR");
92    std::cout<<std::flush;
93
94    delete dcmdir;
95
96    return 0;
97 }