1 /*=========================================================================
4 Module: $RCSfile: gdcmDicomDirMeta.cxx,v $
6 Date: $Date: 2005/11/04 15:33:35 $
7 Version: $Revision: 1.34 $
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.
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.
17 =========================================================================*/
19 #include "gdcmDicomDirMeta.h"
20 #include "gdcmDocument.h"
21 #include "gdcmDocEntry.h"
22 #include "gdcmGlobal.h"
24 #include "gdcmDataEntry.h"
27 //-----------------------------------------------------------------------------
28 // Constructor / Destructor
32 DicomDirMeta::DicomDirMeta(bool empty):
37 ListDicomDirStudyElem const &elemList =
38 Global::GetDicomDirElements()->GetDicomDirMetaElements();
44 * \brief Canonical destructor.
46 DicomDirMeta::~DicomDirMeta()
50 //-----------------------------------------------------------------------------
53 * \brief Writes the Meta Elements
54 * @param fp ofstream to write to
55 * @param filetype type of the file (ACR, ImplicitVR, ExplicitVR, ...)
58 void DicomDirMeta::WriteContent(std::ofstream *fp, FileType filetype)
60 // 'File Meta Information Version'
62 uint8_t fmiv[2] = {0x02,0x00};
63 // FIXME : the following doesn't make the job (?!?)
64 //SetEntryBinArea(fmiv, 0x0002,0x0001, 2);
65 DataEntry *e00002_0001 = GetDataEntry(0x0002,0x0001);
66 e00002_0001->CopyBinArea(fmiv, 2);
68 // 'Media Storage SOP Instance UID'
69 DataEntry *e00002_0003 = GetDataEntry(0x0002,0x0003);
70 e00002_0003->SetString(Util::CreateUniqueUID());
72 // 'Implementation Class UID'
73 DataEntry *e00002_0012 = GetDataEntry(0x0002,0x0012);
74 e00002_0012->SetString(Util::CreateUniqueUID());
76 // Entry : 0002|0000 = group length -> recalculated
77 DataEntry *e0000 = GetDataEntry(0x0002,0x0000);
78 std::ostringstream sLen;
79 sLen << ComputeGroup0002Length( );
80 e0000->SetString(sLen.str());
82 for (ListDocEntry::iterator i = DocEntries.begin();
83 i != DocEntries.end();
86 (*i)->WriteContent(fp, filetype);
91 * \brief Re-computes the length of the Dicom group 0002 (in the DicomDirMeta)
93 int DicomDirMeta::ComputeGroup0002Length( )
99 bool found0002 = false;
101 // for each Tag in the DicomDirMeta
102 DocEntry *entry = GetFirstEntry();
105 gr = entry->GetGroup();
111 if ( entry->GetElement() != 0x0000 )
119 groupLength += 2 + 2 + 4 + entry->GetLength();
125 entry = GetNextEntry();
130 //-----------------------------------------------------------------------------
133 //-----------------------------------------------------------------------------
136 //-----------------------------------------------------------------------------
139 * \brief Prints the Meta Elements
140 * @param os ostream to write to
141 * @param indent Indentation string to be prepended during printing
143 void DicomDirMeta::Print(std::ostream &os, std::string const & )
145 os << "META" << std::endl;
146 // warning : META doesn't behave exactly like a Objet
147 for (ListDocEntry::iterator i = DocEntries.begin();
148 i != DocEntries.end();
151 (*i)->SetPrintLevel(PrintLevel);
157 //-----------------------------------------------------------------------------
158 } // end namespace gdcm