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
|
/*=========================================================================
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.
=========================================================================*/
#include "gdcmDicts.h"
namespace gdcm
{
Dicts::Dicts():PublicDict(),ShadowDict()
{
//PublicType = DICOMV3_DICT;
//PublicDicts.resize(3, Dict() );
}
Dicts::~Dicts()
= default;
//void Dicts::AddPublicDict(const Dict& dict)
//{
// (void)dict;
// //PublicDicts.push_back( dict );
//}
//void Dicts::SetPublicType(int type)
//{
// PublicType = type;
//}
const DictEntry &Dicts::GetDictEntry(const Tag& tag, const char *owner) const
{
if( tag.IsGroupLength() )
{
const DictEntry & de = PublicDict.GetDictEntry(tag);
const char *name = de.GetName();
if( name && *name )
{
return de;
}
else
{
bool retired = true; // Since DICOM 2008, all (but 0002,0004) group length are retired
static const DictEntry Dummy("Generic Group Length", "GenericGroupLength", VR::UL, VM::VM1, retired);
return Dummy;
}
}
else if( tag.IsPublic() )
{
assert( owner == nullptr );
return PublicDict.GetDictEntry(tag);
}
else
{
assert( tag.IsPrivate() );
if( owner && *owner )
{
size_t len = strlen(owner); (void)len;
PrivateTag ptag(tag.GetGroup(), (uint16_t)(((uint16_t)(tag.GetElement() << 8)) >> 8), owner);
const DictEntry &de = GetPrivateDict().GetDictEntry(ptag);
return de;
}
else
{
// Check special private element: 0x0000 and [0x1,0xFF] are special cases:
if( tag.IsIllegal() )
{
static const DictEntry Dummy("Illegal Element", "IllegalElement", VR::INVALID, VM::VM0, false);
return Dummy;
}
else if( tag.IsPrivateCreator() )
{
assert( !tag.IsIllegal() );
assert( tag.GetElement() ); // Not a group length !
assert( tag.IsPrivate() );
assert( owner == nullptr );
static const DictEntry Dummy("Private Creator", "PrivateCreator", VR::LO, VM::VM1, false);
return Dummy;
}
else
{
static const DictEntry Dummy("Private Element With Empty Private Creator",
"PrivateElementWithEmptyPrivateCreator", VR::INVALID, VM::VM0);
return Dummy;
}
}
}
}
const DictEntry &Dicts::GetDictEntry(const PrivateTag& tag) const
{
return GetDictEntry(tag, tag.GetOwner() );
}
const char *Dicts::GetConstructorString(ConstructorType type)
{
(void)type;
return "";
}
const Dict &Dicts::GetPublicDict() const
{
//assert( PublicType < PublicDicts.size() );
return PublicDict; //[PublicType];
}
const PrivateDict &Dicts::GetPrivateDict() const
{
return ShadowDict;
}
PrivateDict &Dicts::GetPrivateDict()
{
return ShadowDict;
}
const CSAHeaderDict &Dicts::GetCSAHeaderDict() const
{
return CSADict;
}
void Dicts::LoadDefaults()
{
// TODO: should the user be able to control which dict to load ?
PublicDict.LoadDefault();
ShadowDict.LoadDefault();
CSADict.LoadDefault();
}
} // end namespace gdcm
|