]> Creatis software - gdcm.git/blob - Example/BuildUpDicomDir.cxx
ENH: Adding 'gdcm' namespace. Be nice with me this was a ~13000 lines patch. Also...
[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    std::string dirName = "NewDICOMDIR";
46
47    if ( argc > 2 )
48       {
49       std::cerr << "Usage: " << argv[0] << " [dicomdirname] ";
50       dirName = argv[1];
51       }
52
53    gdcm::DicomDir *dcmdir;
54    dcmdir = new gdcm::DicomDir();
55
56    printf( "\n------- BuildUpDicomDir: Test Print Meta only -----\n");
57    ((gdcm::Document *)dcmdir)->Print();
58
59    gdcm::DicomDirPatient *p1=dcmdir->NewPatient();
60    p1->SetEntryByNumber("patientONE",0x0010, 0x0010);
61
62      
63    gdcm::DicomDirPatient *p2=dcmdir->NewPatient();
64    p2->SetEntryByNumber("patientTWO",0x0010, 0x0010);     
65    gdcm::DicomDirStudy *s21=p2->NewStudy();  
66        s21->SetEntryByNumber("StudyDescrTwo.One",0x0008, 0x1030);        
67    gdcm::DicomDirSerie *s211=s21->NewSerie();   
68    gdcm::DicomDirImage *s2111=s211->NewImage();
69    (void)s2111; //not used
70
71    gdcm::DicomDirStudy *s11=p1->NewStudy();  
72    s11->SetEntryByNumber("StudyDescrOne.One",0x0008, 0x1030);
73    // Name of the physician reading study
74    // Header Entry to be created
75    s11->SetEntryByNumber("Dr Mabuse",0x0008, 0x1060);
76
77    gdcm::DicomDirPatient *p3 = dcmdir->NewPatient();
78    p3->SetEntryByNumber("patientTHREE",0x0010, 0x0010);
79
80    std::cout << "\n------- BuildUpDicomDir: Test Print of Patient ONE -----\n";
81    p1->Print();
82    std::cout << "\n------- BuildUpDicomDir: Test Print of Patient THREE -----\n";
83    p3->Print();
84    std::cout << "\n------- BuildUpDicomDir: Test Print of Patient TWO -------\n";
85    p2->Print();
86    std::cout << "\n------- BuildUpDicomDir: Test Full Print-------------------\n";
87    dcmdir->SetPrintLevel(-1);
88    dcmdir->Print();
89
90    dcmdir->WriteDicomDir( dirName );
91    std::cout << std::endl;
92
93    delete dcmdir;
94
95    return 0;
96 }