]> Creatis software - gdcm.git/blob - src/gdcmDicomDirMeta.cxx
2d23a8ad09c41fe6994d51441bddc6dccbe0eb47
[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:22:41 $
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 "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    uint8_t fmiv[2] = {0x02,0x00};      
62    SetEntryBinArea(fmiv, 0x0002,0x0001, 2); 
63        
64    // 'Media Storage SOP Instance UID'   
65    DataEntry *e00002_0003 = GetDataEntry(0x0002,0x0003);
66    e00002_0003->SetString(Util::CreateUniqueUID());
67
68    // 'Implementation Class UID'
69    DataEntry *e00002_0012 = GetDataEntry(0x0002,0x0012);
70    e00002_0012->SetString(Util::CreateUniqueUID());   
71    
72    // Entry : 0002|0000 = group length -> recalculated
73    DataEntry *e0000 = GetDataEntry(0x0002,0x0000);
74    std::ostringstream sLen;
75    sLen << ComputeGroup0002Length( );
76    e0000->SetString(sLen.str());
77    
78    for (ListDocEntry::iterator i = DocEntries.begin();  
79                               i != DocEntries.end();
80                               ++i)
81    {
82       (*i)->WriteContent(fp, filetype);
83    }
84 }
85
86 /**
87  * \brief Re-computes the length of the Dicom group 0002 (in the DicomDirMeta)
88  */
89 int DicomDirMeta::ComputeGroup0002Length( ) 
90 {
91    uint16_t gr;
92    VRKey vr;
93    
94    int groupLength = 0;
95    bool found0002 = false;   
96   
97    // for each Tag in the DicomDirMeta
98    DocEntry *entry = GetFirstEntry();
99    while( entry )
100    {
101       gr = entry->GetGroup();
102
103       if ( gr == 0x0002 )
104       {
105          found0002 = true;
106
107          if ( entry->GetElement() != 0x0000 )
108          {
109             vr = entry->GetVR();
110
111             if ( vr == "OB" ) 
112             {
113                groupLength +=  4;
114             }
115             groupLength += 2 + 2 + 4 + entry->GetLength();   
116          }
117       }
118       else if (found0002 )
119          break;
120
121       entry = GetNextEntry();
122    }
123    return groupLength; 
124 }
125
126 //-----------------------------------------------------------------------------
127 // Protected
128
129 //-----------------------------------------------------------------------------
130 // Private
131
132 //-----------------------------------------------------------------------------
133 // Print
134 /**
135  * \brief   Prints the Meta Elements
136  * @param os ostream to write to 
137  * @param indent Indentation string to be prepended during printing
138  */ 
139 void DicomDirMeta::Print(std::ostream &os, std::string const & )
140 {
141    os << "META" << std::endl;
142    // warning : META doesn't behave exactly like a Objet 
143    for (ListDocEntry::iterator i = DocEntries.begin();
144         i != DocEntries.end();
145         ++i)
146    {
147       (*i)->SetPrintLevel(PrintLevel);
148       (*i)->Print();
149       os << std::endl;
150    }
151 }
152
153 //-----------------------------------------------------------------------------
154 } // end namespace gdcm