]> Creatis software - gdcm.git/blob - src/gdcmDictEntry.cxx
* src/*.cxx : first parss to normalize file organisation
[gdcm.git] / src / gdcmDictEntry.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmDictEntry.cxx,v $
5   Language:  C++
6   Date:      $Date: 2005/02/01 10:29:55 $
7   Version:   $Revision: 1.44 $
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 "gdcmDictEntry.h"
20 #include "gdcmDebug.h"
21 #include "gdcmUtil.h"
22
23 #include <iomanip> // for std::ios::left, ...
24 #include <fstream>
25
26 namespace gdcm 
27 {
28 //-----------------------------------------------------------------------------
29 // Constructor / Destructor
30 /**
31  * \brief   Constructor
32  * @param   group      DICOM-Group Number
33  * @param   elem       DICOM-Element Number
34  * @param   vr         Value Representation
35  * @param   vm         Value Mutlplicity 
36  * @param   name      description of the element
37 */
38
39 DictEntry::DictEntry(uint16_t group, uint16_t elem,
40                      TagName const &vr, 
41                      TagName const &vm,
42                      TagName const &name)
43 {
44    Group   = group;
45    Element = elem;
46    VR      = vr;
47    VM      = vm;
48    Name    = name;
49    Key     = TranslateToKey(group, elem);
50 }
51
52 //-----------------------------------------------------------------------------
53 // Public
54 /**
55  * \brief   concatenates 2 uint16_t (supposed to be a Dicom group number 
56  *                                              and a Dicom element number)
57  * @param  group the Dicom group number used to build the tag
58  * @param  elem the Dicom element number used to build the tag
59  * @return the built tag
60  */
61 TagKey DictEntry::TranslateToKey(uint16_t group, uint16_t elem)
62 {
63    return Util::Format("%04x|%04x", group, elem);
64 }
65
66 /**
67  * \brief       If-and only if-the V(alue) R(epresentation)
68  * \            is unset then overwrite it.
69  * @param vr    New V(alue) R(epresentation) to be set.
70  */
71 void DictEntry::SetVR(TagName const &vr) 
72 {
73    if ( IsVRUnknown() )
74    {
75       VR = vr;
76    }
77    else 
78    {
79       gdcmErrorMacro( "Overwriting VR might compromise a dictionary");
80    }
81 }
82
83 /**
84  * \brief       If-and only if-the V(alue) M(ultiplicity)
85  * \            is unset then overwrite it.
86  * @param vm    New V(alue) M(ultiplicity) to be set.
87  */
88 void DictEntry::SetVM(TagName const &vm) 
89 {
90    if ( IsVMUnknown() )
91    {
92       VM = vm;
93    }
94    else 
95    {
96       gdcmErrorMacro( "Overwriting VM might compromise a dictionary");
97    }
98 }
99 //-----------------------------------------------------------------------------
100 // Protected
101
102 //-----------------------------------------------------------------------------
103 // Private
104
105 //-----------------------------------------------------------------------------
106 // Print
107 /**
108  * \brief   Prints an entry of the Dicom DictionaryEntry
109  * @param   os ostream we want to print in
110  * @param indent Indentation string to be prepended during printing
111  */
112 void DictEntry::Print(std::ostream &os, std::string const & )
113 {
114    std::string vr;
115    std::ostringstream s;
116
117    vr = GetVR();
118    if(vr==GDCM_UNKNOWN)
119       vr="  ";
120
121    s << DictEntry::TranslateToKey(GetGroup(),GetElement()); 
122    s << " [" << vr  << "] ";
123
124    if (PrintLevel >= 1)
125    {
126       s.setf(std::ios::left);
127       s << std::setw(66-GetName().length()) << " ";
128    }
129
130    s << "[" << GetName()<< "]";
131    os << s.str() << std::endl;
132 }
133
134 //-----------------------------------------------------------------------------
135 } // end namespace gdcm
136