]> Creatis software - gdcm.git/blob - src/gdcmDicomDirElement.cxx
* src/*.cxx *.h Reference to License.htm fixed to License.html.
[gdcm.git] / src / gdcmDicomDirElement.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmDicomDirElement.cxx,v $
5   Language:  C++
6   Date:      $Date: 2004/09/27 08:39:06 $
7   Version:   $Revision: 1.16 $
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
19 #include <fstream>
20 #include <stdio.h>    // For sprintf
21 #include <iostream>
22
23 #include "gdcmDicomDirElement.h"
24 #include "gdcmUtil.h"
25 #include "gdcmDebug.h"
26 #include "gdcmDictSet.h"
27
28
29 //-----------------------------------------------------------------------------
30 // Constructor / Destructor
31
32 /**
33  * \brief   constructor : populates the chained lists 
34  *          from the file 'Dicts/DicomDir.dic'
35  */
36 gdcmDicomDirElement::gdcmDicomDirElement()
37 {
38    std::string filename = gdcmDictSet::BuildDictPath() + std::string(DICT_ELEM);
39    std::ifstream from(filename.c_str());
40    dbg.Error(!from, "gdcmDicomDirElement::gdcmDicomDirElement: can't open dictionary",
41               filename.c_str());
42
43    char buff[1024];
44    std::string type;
45    gdcmElement elem;
46
47    while (!from.eof())
48    {
49       eatwhite(from);
50       from.getline(buff, 1024, ' ');
51       type = buff;
52
53       if( (type=="metaElem")  || (type=="patientElem") || 
54           (type=="studyElem") || (type=="serieElem")   || 
55           (type=="imageElem") )
56       {
57          from >> std::hex >> elem.group >> elem.elem;
58
59          eatwhite(from);
60          from.getline(buff, 1024, '"');
61          eatwhite(from);
62          from.getline(buff, 1024, '"');
63          elem.value = buff;
64
65          if( type == "metaElem" )
66          {
67             DicomDirMetaList.push_back(elem);
68          }
69          else if( type == "patientElem" )
70          {
71             DicomDirPatientList.push_back(elem);
72          }
73          else if( type == "studyElem" )
74          {
75             DicomDirStudyList.push_back(elem);
76          }
77          else if( type == "serieElem" )
78          {
79             DicomDirSerieList.push_back(elem);
80          }
81          else if( type == "imageElem" )
82          {
83             DicomDirImageList.push_back(elem);
84          }
85       }
86       from.getline(buff, 1024, '\n');
87    }
88    from.close();
89 }
90
91 /**
92  * \ingroup gdcmDicomDirElement
93  * \brief   canonical destructor 
94  */
95 gdcmDicomDirElement::~gdcmDicomDirElement()
96 {
97    DicomDirMetaList.clear();
98    DicomDirPatientList.clear();
99    DicomDirStudyList.clear();
100    DicomDirSerieList.clear();
101    DicomDirImageList.clear();
102 }
103
104 //-----------------------------------------------------------------------------
105 // Print
106 /**
107  * \ingroup gdcmDicomDirElement
108  * \brief   Print all
109  * \todo add a 'Print Level' check 
110  * @param   os The output stream to be written to.
111  */
112 void gdcmDicomDirElement::Print(std::ostream &os)
113 {
114    std::ostringstream s;
115    std::list<gdcmElement>::iterator it;
116    char greltag[10];  //group element tag
117
118    s << "Meta Elements :"<<std::endl;
119    for (it = DicomDirMetaList.begin(); it != DicomDirMetaList.end(); ++it)
120    {
121       sprintf(greltag,"%04x|%04x ",it->group,it->elem);
122       s << "   ("<<greltag<<") = "<< it->value<<std::endl;
123    }
124
125    s << "Patient Elements :"<<std::endl;
126    for (it = DicomDirPatientList.begin(); it != DicomDirPatientList.end(); ++it)
127    {
128       sprintf(greltag,"%04x|%04x ",it->group,it->elem);
129       s << "   ("<<greltag<<") = "<< it->value<<std::endl;
130    }
131
132    s << "Study Elements :"<<std::endl;
133    for (it = DicomDirStudyList.begin(); it != DicomDirStudyList.end(); ++it)
134    {
135       sprintf(greltag,"%04x|%04x ",it->group,it->elem);
136       s << "   ("<<greltag<<") = "<< it->value<<std::endl;
137    }
138
139    s << "Serie Elements :"<<std::endl;
140    for (it = DicomDirSerieList.begin(); it != DicomDirSerieList.end(); ++it)
141    {
142       sprintf(greltag,"%04x|%04x ",it->group,it->elem);
143       s << "   ("<<greltag<<") = "<< it->value<<std::endl;
144    }
145
146    s << "Image Elements :"<<std::endl;
147    for (it = DicomDirImageList.begin(); it != DicomDirImageList.end(); ++it)
148    {
149       sprintf(greltag,"%04x|%04x ",it->group,it->elem);
150       s << "   ("<<greltag<<") = "<< it->value<<std::endl;
151    }
152
153    os << s.str();
154 }
155
156 //-----------------------------------------------------------------------------
157 // Public
158
159 //-----------------------------------------------------------------------------
160 // Protected
161
162 //-----------------------------------------------------------------------------
163 // Private
164
165 //-----------------------------------------------------------------------------