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