/usr/include/gdcm-2.4/gdcmDataSet.h is in libgdcm2-dev 2.4.4-3+deb8u1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 | /*=========================================================================
Program: GDCM (Grassroots DICOM). A DICOM library
Copyright (c) 2006-2011 Mathieu Malaterre
All rights reserved.
See Copyright.txt or http://gdcm.sourceforge.net/Copyright.html for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
#ifndef GDCMDATASET_H
#define GDCMDATASET_H
#include "gdcmDataElement.h"
#include "gdcmTag.h"
#include "gdcmVR.h"
#include "gdcmElement.h"
#include "gdcmMediaStorage.h"
#include <set>
#include <iterator>
namespace gdcm
{
class GDCM_EXPORT DataElementException : public std::exception {};
class PrivateTag;
/**
* \brief Class to represent a Data Set (which contains Data Elements)
* A Data Set represents an instance of a real world Information Object
* \note
* DATA SET:
* Exchanged information consisting of a structured set of Attribute values
* directly or indirectly related to Information Objects. The value of each
* Attribute in a Data Set is expressed as a Data Element.
* A collection of Data Elements ordered by increasing Data Element Tag
* number that is an encoding of the values of Attributes of a real world
* object.
* \note
* Implementation note. If one do:
* DataSet ds;
* ds.SetLength(0);
* ds.Read(is);
* setting length to 0 actually means try to read is as if it was a root
* DataSet. Other value are undefined (nested dataset with undefined length)
* or defined length (different from 0) means nested dataset with defined
* length.
*
* \warning
* a DataSet does not have a Transfer Syntax type, only a File does.
*/
class GDCM_EXPORT DataSet
{
friend class CSAHeader;
public:
typedef std::set<DataElement> DataElementSet;
typedef DataElementSet::const_iterator ConstIterator;
typedef DataElementSet::iterator Iterator;
typedef DataElementSet::size_type SizeType;
//typedef typename DataElementSet::iterator iterator;
ConstIterator Begin() const { return DES.begin(); }
Iterator Begin() { return DES.begin(); }
ConstIterator End() const { return DES.end(); }
Iterator End() { return DES.end(); }
const DataElementSet &GetDES() const { return DES; }
DataElementSet &GetDES() { return DES; }
void Clear() {
DES.clear();
assert( DES.empty() );
}
SizeType Size() const {
return DES.size();
}
void Print(std::ostream &os, std::string const &indent = "") const {
// CT_Phillips_JPEG2K_Decompr_Problem.dcm has a SQ of length == 0
//int s = DES.size();
//assert( s );
//std::copy(DES.begin(), DES.end(),
// std::ostream_iterator<DataElement>(os, "\n"));
ConstIterator it = DES.begin();
for( ; it != DES.end(); ++it)
{
os << indent << *it << "\n";
}
}
template <typename TDE>
unsigned int ComputeGroupLength(Tag const &tag) const
{
assert( tag.GetElement() == 0x0 );
const DataElement r(tag);
ConstIterator it = DES.find(r);
unsigned int res = 0;
for( ++it; it != DES.end()
&& it->GetTag().GetGroup() == tag.GetGroup(); ++it)
{
assert( it->GetTag().GetElement() != 0x0 );
assert( it->GetTag().GetGroup() == tag.GetGroup() );
res += it->GetLength<TDE>();
}
return res;
}
template <typename TDE>
VL GetLength() const {
if( DES.empty() ) return 0;
assert( !DES.empty() );
VL ll = 0;
assert( ll == 0 );
ConstIterator it = DES.begin();
for( ; it != DES.end(); ++it)
{
assert( !(it->GetLength<TDE>().IsUndefined()) );
if ( it->GetTag() != Tag(0xfffe,0xe00d) )
{
ll += it->GetLength<TDE>();
}
}
return ll;
}
/// Insert a DataElement in the DataSet.
/// \warning: Tag need to be >= 0x8 to be considered valid data element
void Insert(const DataElement& de) {
// FIXME: there is a special case where a dataset can have value < 0x8, see:
// $ gdcmdump --csa gdcmData/SIEMENS-JPEG-CorruptFrag.dcm
if( de.GetTag().GetGroup() >= 0x0008 || de.GetTag().GetGroup() == 0x4 )
{
// prevent user error:
if( de.GetTag() == Tag(0xfffe,0xe00d)
|| de.GetTag() == Tag(0xfffe,0xe0dd)
|| de.GetTag() == Tag(0xfffe,0xe000) )
{
}
else
{
InsertDataElement( de );
}
}
else
{
gdcmErrorMacro( "Cannot add element with group < 0x0008 and != 0x4 in the dataset: " << de.GetTag() );
}
}
/// Replace a dataelement with another one
void Replace(const DataElement& de) {
if( DES.find(de) != DES.end() ) DES.erase(de);
DES.insert(de);
}
/// Only replace a DICOM attribute when it is missing or empty
void ReplaceEmpty(const DataElement& de) {
ConstIterator it = DES.find(de);
if( it != DES.end() && it->IsEmpty() )
DES.erase(de);
DES.insert(de);
}
/// Completely remove a dataelement from the dataset
SizeType Remove(const Tag& tag) {
DataElementSet::size_type count = DES.erase(tag);
assert( count == 0 || count == 1 );
return count;
}
/// Return the DataElement with Tag 't'
/// \warning:
/// This only search at the 'root level' of the DataSet
//DataElement& GetDataElement(const Tag &t) {
// DataElement r(t);
// Iterator it = DES.find(r);
// if( it != DES.end() )
// return *it;
// return GetDEEnd();
// }
const DataElement& GetDataElement(const Tag &t) const {
const DataElement r(t);
ConstIterator it = DES.find(r);
if( it != DES.end() )
return *it;
return GetDEEnd();
}
const DataElement& operator[] (const Tag &t) const { return GetDataElement(t); }
const DataElement& operator() (uint16_t group, uint16_t element) const { return GetDataElement( Tag(group,element) ); }
/// Return the private creator of the private tag 't':
std::string GetPrivateCreator(const Tag &t) const;
/// Look up if private tag 't' is present in the dataset:
bool FindDataElement(const PrivateTag &t) const;
/// Return the dataelement
const DataElement& GetDataElement(const PrivateTag &t) const;
// DUMB: this only search within the level of the current DataSet
bool FindDataElement(const Tag &t) const {
const DataElement r(t);
//ConstIterator it = DES.find(r);
if( DES.find(r) != DES.end() )
{
return true;
}
return false;
}
// WARNING:
// This only search at the same level as the DataSet is !
const DataElement& FindNextDataElement(const Tag &t) const {
const DataElement r(t);
ConstIterator it = DES.lower_bound(r);
if( it != DES.end() )
return *it;
return GetDEEnd();
}
/// Returns if the dataset is empty
bool IsEmpty() const { return DES.empty(); };
DataSet& operator=(DataSet const &val)
{
DES = val.DES;
return *this;
}
/*
template <typename TOperation>
void ExecuteOperation(TOperation & operation) {
assert( !DES.empty() );
DataElementSet::iterator it = Begin();
for( ; it != End(); ++it)
{
DataElement &de = (DataElement&)*it;
operation( de );
}
}
*/
template <typename TDE, typename TSwap>
std::istream &ReadNested(std::istream &is);
template <typename TDE, typename TSwap>
std::istream &Read(std::istream &is);
template <typename TDE, typename TSwap>
std::istream &ReadUpToTag(std::istream &is, const Tag &t, std::set<Tag> const & skiptags);
template <typename TDE, typename TSwap>
std::istream &ReadUpToTagWithLength(std::istream &is, const Tag &t, std::set<Tag> const & skiptags, VL & length);
template <typename TDE, typename TSwap>
std::istream &ReadSelectedTags(std::istream &is, const std::set<Tag> & tags, bool readvalues = true);
template <typename TDE, typename TSwap>
std::istream &ReadSelectedTagsWithLength(std::istream &is, const std::set<Tag> & tags, VL & length, bool readvalues = true);
template <typename TDE, typename TSwap>
std::istream &ReadSelectedPrivateTags(std::istream &is, const std::set<PrivateTag> & tags, bool readvalues = true);
template <typename TDE, typename TSwap>
std::istream &ReadSelectedPrivateTagsWithLength(std::istream &is, const std::set<PrivateTag> & tags, VL & length, bool readvalues = true);
template <typename TDE, typename TSwap>
std::ostream const &Write(std::ostream &os) const;
template <typename TDE, typename TSwap>
std::istream &ReadWithLength(std::istream &is, VL &length);
MediaStorage GetMediaStorage() const;
protected:
/* GetDEEnd is a Win32 only issue, one cannot use a dllexported
* static member data in an inline function, otherwise symbol
* will get reported as missing in any dll using the inlined function
*/
const DataElement& GetDEEnd() const;
// This function is not safe, it does not check for the value of the tag
// so depending whether we are getting called from a dataset or file meta header
// the condition is different
void InsertDataElement(const DataElement& de) {
//if( de.GetTag() == Tag(0xfffe,0xe00d) ) return;
//if( de.GetTag() == Tag(0xfffe,0xe0dd) ) return;
#ifndef NDEBUG
std::pair<Iterator,bool> pr = DES.insert(de);
if( pr.second == false )
{
gdcmWarningMacro( "DataElement: " << de << " was already found, skipping duplicate entry.\n"
"Original entry kept is: " << *pr.first );
}
#else
DES.insert(de);
#endif
assert( de.IsEmpty() || de.GetVL() == de.GetValue().GetLength() );
}
protected:
// Internal function, that will compute the actual Tag (if found) of
// a requested Private Tag (XXXX,YY,"PRIVATE")
Tag ComputeDataElement(const PrivateTag & t) const;
private:
DataElementSet DES;
static DataElement DEEnd;
friend std::ostream& operator<<(std::ostream &_os, const DataSet &val);
};
//-----------------------------------------------------------------------------
inline std::ostream& operator<<(std::ostream &os, const DataSet &val)
{
val.Print(os);
return os;
}
#if defined(SWIGPYTHON) || defined(SWIGCSHARP) || defined(SWIGJAVA)
/*
* HACK: I need this temp class to be able to manipulate a std::set from python,
* swig does not support wrapping of simple class like std::set...
*/
class SWIGDataSet
{
public:
SWIGDataSet(DataSet &des):Internal(des),it(des.Begin()) {}
const DataElement& GetCurrent() const { return *it; }
void Start() { it = Internal.Begin(); }
bool IsAtEnd() const { return it == Internal.End(); }
void Next() { ++it; }
private:
DataSet & Internal;
DataSet::ConstIterator it;
};
#endif /* SWIG */
/**
* \example SimplePrint.cs
* This is a C# example on how to use gdcm::SWIGDataSet
*/
} // end namespace gdcm
#include "gdcmDataSet.txx"
#endif //GDCMDATASET_H
|