]> Creatis software - gdcm.git/blob - src/gdcmVR.cxx
* src/gdcmDocument.[h|cxx] : remove all copy of DocEntry when parsing a file
[gdcm.git] / src / gdcmVR.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmVR.cxx,v $
5   Language:  C++
6   Date:      $Date: 2005/01/06 17:16:16 $
7   Version:   $Revision: 1.26 $
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 "gdcmVR.h"
20 #include "gdcmUtil.h"
21 #include "gdcmDictSet.h"
22 #include "gdcmDebug.h"
23
24 #include <fstream>
25 #include <iostream>
26
27 namespace gdcm 
28 {
29 void FillDefaultVRDict(VRHT & vr);
30 //-----------------------------------------------------------------------------
31 /**
32  * \brief Constructor
33  */
34 VR::VR() 
35 {
36    std::string filename = DictSet::BuildDictPath() + DICT_VR;
37    std::ifstream from(filename.c_str());
38    if(!from)
39    {
40       dbg.Verbose(2, "VR::VR: can't open dictionary", filename.c_str());
41       FillDefaultVRDict(vr);
42    }
43    else
44    {
45       char buff[1024];
46       VRKey key;
47       VRAtr name;
48    
49       while (!from.eof()) 
50       {
51          from >> std::ws;
52          from.getline(buff, 1024, ' ');
53          key = buff;
54          from >> std::ws;
55          from.getline(buff, 1024, ';');
56          name = buff;
57    
58          from >> std::ws;
59          from.getline(buff, 1024, '\n');
60    
61          if(key != "")
62          {
63             vr[key] = name;
64          }
65       }
66       from.close();
67    }
68 }
69
70 //-----------------------------------------------------------------------------
71 /**
72  * \brief Destructor
73  */
74 VR::~VR()
75 {
76    vr.clear();
77 }
78
79 //-----------------------------------------------------------------------------
80 // Print
81 /**
82  * \brief   Print all 
83  * @param   os The output stream to be written to.
84  */
85 void VR::Print(std::ostream &os) 
86 {
87    std::ostringstream s;
88
89    for (VRHT::iterator it = vr.begin(); it != vr.end(); ++it)
90    {
91       s << "VR : " << it->first << " = " << it->second << std::endl;
92    }
93    os << s.str();
94 }
95
96 //-----------------------------------------------------------------------------
97 // Public
98 /**
99  * \brief   Get the count for an element
100  * @param   key key to count
101  */
102 int VR::Count(VRKey const & key) 
103 {
104    return vr.count(key);
105 }
106
107 //-----------------------------------------------------------------------------
108 /**
109  * \brief   Simple predicate that checks wether the given argument
110  *          corresponds to the Value Representation of a \ref BinEntry .
111  *          This predicate is the negation of
112  *          \ref VR::IsVROfGdcmStringRepresentable .
113  * @param   tested value representation to check for.
114  */
115 bool VR::IsVROfBinaryRepresentable(VRKey const & tested)
116 {
117    //std::cout << "VR::IsVROfGdcmBinaryRepresentable===================="
118    //   << tested << std::endl;
119
120    if ( tested == GDCM_UNKNOWN)
121       return true;
122
123    if ( IsVROfStringRepresentable(tested) )
124       return false;
125
126    if ( IsVROfSequence(tested) )
127       return false;
128
129    return true;
130 }
131
132 /**
133  * \brief   Simple predicate that checks wether the given argument
134  *          corresponds to the Value Representation of a \ref ValEntry
135  *          but NOT a \ref BinEntry.
136  * @param   tested value representation to check for.
137  */
138 bool VR::IsVROfStringRepresentable(VRKey const & tested)
139 {
140    return tested == "AE" ||
141           tested == "AS" ||
142           tested == "CS" ||
143           tested == "DA" ||
144           tested == "DS" ||
145           tested == "IS" || 
146           tested == "LO" ||
147           tested == "LT" ||
148           tested == "PN" ||
149           tested == "SH" ||
150           tested == "SL" ||
151           tested == "SS" ||
152           tested == "ST" ||
153           tested == "TM" ||
154           tested == "UI" ||
155           tested == "UL" ||
156           tested == "UN" ||
157           tested == "US";
158 }
159
160 /**
161  * \brief   Simple predicate that checks wether the given argument
162  *          corresponds to the Value Representation of a \ref SeqEntry
163  * @param   tested value representation to check for.
164  */
165 bool VR::IsVROfSequence(VRKey const & tested)
166 {
167    return tested == "SQ";
168 }
169
170 bool VR::IsValidVR(VRKey const & key)
171 {
172    return(vr.find(key)!=vr.end());
173 }
174
175 //-----------------------------------------------------------------------------
176 // Protected
177
178 //-----------------------------------------------------------------------------
179 // Private
180
181 //-----------------------------------------------------------------------------
182
183 } // end namespace gdcm