]> Creatis software - gdcm.git/blob - src/gdcmDicomDirMeta.cxx
In order to allow to use current version (1.3) of gdcm *and* ITK (that includes
[gdcm.git] / src / gdcmDicomDirMeta.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmDicomDirMeta.cxx,v $
5   Language:  C++
6   Date:      $Date: 2007/05/23 14:18:08 $
7   Version:   $Revision: 1.37 $
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 "gdcmDicomDirMeta.h"
20 #include "gdcmDocument.h"
21 #include "gdcmDocEntry.h"
22 #include "gdcmGlobal.h"
23 #include "gdcmUtil.h"
24 #include "gdcmDataEntry.h"
25
26 namespace GDCM_NAME_SPACE 
27 {
28 //-----------------------------------------------------------------------------
29 // Constructor / Destructor
30 /**
31  * \brief  Constructor
32  */ 
33 DicomDirMeta::DicomDirMeta(bool empty):
34    DicomDirObject()
35 {
36    if ( !empty )
37    {
38       ListDicomDirStudyElem const &elemList = 
39          Global::GetDicomDirElements()->GetDicomDirMetaElements();
40       FillObject(elemList);
41    }
42 }
43
44 /**
45  * \brief   Canonical destructor.
46  */
47 DicomDirMeta::~DicomDirMeta() 
48 {
49 }
50
51 //-----------------------------------------------------------------------------
52 // Public
53 /**
54  * \brief   Writes the Meta Elements
55  * @param fp ofstream to write to
56  * @param filetype type of the file (ImplicitVR, ExplicitVR, ...)
57  * @return
58  */ 
59 void DicomDirMeta::WriteContent(std::ofstream *fp, FileType filetype)
60 {
61    // 'File Meta Information Version'
62    
63    uint8_t fmiv[2] = {0x02,0x00};
64    // FIXME : the following doesn't make the job (?!?)      
65    //SetEntryBinArea(fmiv, 0x0002,0x0001, 2); 
66    DataEntry *e00002_0001 = GetDataEntry(0x0002,0x0001);
67    e00002_0001->CopyBinArea(fmiv, 2);
68          
69    // 'Media Storage SOP Instance UID'   
70    DataEntry *e00002_0003 = GetDataEntry(0x0002,0x0003);
71    e00002_0003->SetString(Util::CreateUniqueUID());
72
73    // 'Implementation Class UID'
74    DataEntry *e00002_0012 = GetDataEntry(0x0002,0x0012);
75    e00002_0012->SetString(Util::CreateUniqueUID());   
76    
77    // Entry : 0002|0000 = group length -> recalculated
78    DataEntry *e0000 = GetDataEntry(0x0002,0x0000);
79    std::ostringstream sLen;
80    sLen << ComputeGroup0002Length( );
81    e0000->SetString(sLen.str());
82    
83    for (ListDocEntry::iterator i = DocEntries.begin();  
84                                i!= DocEntries.end();
85                              ++i)
86    {   
87       (*i)->WriteContent(fp, filetype);
88    }
89 }
90
91 /**
92  * \brief Re-computes the length of the Dicom group 0002 (in the DicomDirMeta)
93  */
94 int DicomDirMeta::ComputeGroup0002Length( ) 
95 {
96    uint16_t gr;
97    VRKey vr;
98    
99    int groupLength = 0;
100    bool found0002 = false;   
101   
102    // for each Tag in the DicomDirMeta
103    DocEntry *entry = GetFirstEntry();
104    while( entry )
105    {
106       gr = entry->GetGroup();
107
108       if ( gr == 0x0002 )
109       {
110          found0002 = true;
111
112          if ( entry->GetElement() != 0x0000 )
113          {
114             vr = entry->GetVR();
115
116             if ( vr == "OB" ) 
117             {
118                groupLength +=  4;
119             }
120             groupLength += 2 + 2 + 4 + entry->GetLength();   
121          }
122       }
123       else if (found0002 )
124          break;
125
126       entry = GetNextEntry();
127    }
128    return groupLength; 
129 }
130
131 //-----------------------------------------------------------------------------
132 // Protected
133
134 //-----------------------------------------------------------------------------
135 // Private
136
137 //-----------------------------------------------------------------------------
138 // Print
139 /**
140  * \brief   Prints the Meta Elements
141  * @param os ostream to write to 
142  * @param indent Indentation string to be prepended during printing
143  */ 
144 void DicomDirMeta::Print(std::ostream &os, std::string const & )
145 {
146    os << "META" << std::endl;
147    // warning : META doesn't behave exactly like a Objet 
148    for (ListDocEntry::iterator i = DocEntries.begin();
149         i != DocEntries.end();
150         ++i)
151    {
152       (*i)->SetPrintLevel(PrintLevel);
153       (*i)->Print();
154       os << std::endl;
155    }
156 }
157
158 //-----------------------------------------------------------------------------
159 } // end namespace gdcm