]> Creatis software - gdcm.git/blob - src/gdcmDicomDirElement.cxx
9d0bd87822e784090c3694e50b0b8b810f5f98ae
[gdcm.git] / src / gdcmDicomDirElement.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmDicomDirElement.cxx,v $
5   Language:  C++
6   Date:      $Date: 2005/01/28 17:01:29 $
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
19 #include "gdcmDicomDirElement.h"
20 #include "gdcmUtil.h"
21 #include "gdcmDebug.h"
22 #include "gdcmDictSet.h"
23
24 #include <fstream>
25 #include <iostream>
26
27 namespace gdcm 
28 {
29 void FillDefaultDIRDict(DicomDirElement *dde);
30 //-----------------------------------------------------------------------------
31 // Constructor / Destructor
32
33 /**
34  * \brief   constructor : populates the chained lists 
35  *          from the file 'Dicts/DicomDir.dic'
36  */
37 DicomDirElement::DicomDirElement()
38 {
39    std::string filename = DictSet::BuildDictPath() + DICT_ELEM;
40    std::ifstream from(filename.c_str());
41    if(!from)
42    {
43       gdcmVerboseMacro( "Can't open DicomDirElement dictionary" 
44                         << filename.c_str());
45       FillDefaultDIRDict( this );
46    }
47    else
48    {
49       char buff[1024];
50       std::string strType;
51       Element elem;
52       DicomDirType type;
53
54       while (!from.eof())
55       {
56          from >> std::ws;
57          from.getline(buff, 1024, ' ');
58          strType = buff;
59
60          if( strType == "metaElem" )
61             type = DD_META;
62          else if( strType == "patientElem" )
63             type = DD_PATIENT;
64          else if( strType == "studyElem" )
65             type = DD_STUDY;
66          else if( strType == "serieElem" )
67             type = DD_SERIE;
68          else if( strType == "imageElem" )
69             type = DD_IMAGE;
70          else
71          {
72             gdcmVerboseMacro("Unknown type found in the file : "
73                              <<filename.c_str());
74             type = DD_UNKNOWN;
75          }
76
77          if( type!=DD_UNKNOWN )
78          {
79             from >> std::hex >> elem.Group >> elem.Elem;
80
81             from >> std::ws;
82             from.getline(buff, 1024, '"');
83             from >> std::ws;
84             from.getline(buff, 1024, '"');
85             elem.Value = buff;
86
87             AddEntry(type, elem);
88          }
89          from.getline(buff, 1024, '\n');
90       }
91       from.close();
92    }
93 }
94
95 /**
96  * \brief   canonical destructor 
97  */
98 DicomDirElement::~DicomDirElement()
99 {
100    DicomDirMetaList.clear();
101    DicomDirPatientList.clear();
102    DicomDirStudyList.clear();
103    DicomDirSerieList.clear();
104    DicomDirImageList.clear();
105 }
106
107 //-----------------------------------------------------------------------------
108 // Print
109 /**
110  * \brief   Print all
111  * @param   os The output stream to be written to.
112  */
113 void DicomDirElement::Print(std::ostream &os)
114 {
115    std::ostringstream s;
116    std::list<Element>::iterator it;
117    //char greltag[10];  //group element tag
118    std::string greltag;
119
120    s << "Meta Elements :"<<std::endl;
121    for (it = DicomDirMetaList.begin(); it != DicomDirMetaList.end(); ++it)
122    {
123       greltag = Util::Format("%04x|%04x ",it->Group,it->Elem);
124       s << "   (" << greltag << ") = " << it->Value << std::endl;
125    }
126
127    s << "Patient Elements :"<<std::endl;
128    for (it = DicomDirPatientList.begin(); it != DicomDirPatientList.end(); ++it)
129    {
130       greltag = Util::Format("%04x|%04x ",it->Group,it->Elem);
131       s << "   (" << greltag << ") = " << it->Value << std::endl;
132    }
133
134    s << "Study Elements :"<<std::endl;
135    for (it = DicomDirStudyList.begin(); it != DicomDirStudyList.end(); ++it)
136    {
137       greltag = Util::Format("%04x|%04x ", it->Group, it->Elem);
138       s << "   (" << greltag << ") = " << it->Value << std::endl;
139    }
140
141    s << "Serie Elements :"<<std::endl;
142    for (it = DicomDirSerieList.begin(); it != DicomDirSerieList.end(); ++it)
143    {
144       greltag = Util::Format("%04x|%04x ", it->Group, it->Elem);
145       s << "   (" << greltag << ") = " << it->Value << std::endl;
146    }
147
148    s << "Image Elements :"<<std::endl;
149    for (it = DicomDirImageList.begin(); it != DicomDirImageList.end(); ++it)
150    {
151       greltag = Util::Format("%04x|%04x ", it->Group, it->Elem);
152       s << "   (" << greltag << ") = " << it->Value << std::endl;
153    }
154
155    os << s.str();
156 }
157
158 //-----------------------------------------------------------------------------
159 // Public
160 /**
161  * \brief Add an entry 
162  * @param type type
163  * @param elem elem
164  */
165 bool DicomDirElement::AddEntry(DicomDirType type, Element const &elem)
166 {
167    switch( type )
168    {
169       case DD_META :
170          DicomDirMetaList.push_back(elem);
171          break;
172       case DD_PATIENT :
173          DicomDirPatientList.push_back(elem);
174          break;
175       case DD_STUDY :
176          DicomDirStudyList.push_back(elem);
177          break;
178       case DD_SERIE :
179          DicomDirSerieList.push_back(elem);
180          break;
181       case DD_IMAGE :
182          DicomDirImageList.push_back(elem);
183          break;
184       default :
185          return false;
186    }
187    return true;
188 }
189 //-----------------------------------------------------------------------------
190 // Protected
191
192 //-----------------------------------------------------------------------------
193 // Private
194
195 //-----------------------------------------------------------------------------
196
197 } // end namespace gdcm