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
|
/*=========================================================================
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()
{
}
//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
{
static DictEntry Dummy;
if( tag.IsGroupLength() )
{
const DictEntry & de = PublicDict.GetDictEntry(tag);
const char *name = de.GetName();
if( name && *name )
{
return de;
}
else
{
Dummy.SetName( "Generic Group Length" );
bool retired = true; // Since DICOM 2008, all (but 0002,0004) group length are retired
Dummy.SetVR( VR::UL );
Dummy.SetVM( VM::VM1 );
Dummy.SetRetired( retired );
return Dummy;
}
}
else if( tag.IsPublic() )
{
assert( owner == NULL );
return PublicDict.GetDictEntry(tag);
}
else
{
assert( tag.IsPrivate() );
if( owner && *owner )
{
size_t len = strlen(owner); (void)len;
PrivateTag ptag(tag.GetGroup(), ((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() )
{
std::string pc ( "Illegal Element" );
Dummy.SetName( pc.c_str() );
Dummy.SetVR( VR::INVALID );
Dummy.SetVM( VM::VM0 );
Dummy.SetRetired( false ); // ??
return Dummy;
}
else if( tag.IsPrivateCreator() )
{
assert( !tag.IsIllegal() );
assert( tag.GetElement() ); // Not a group length !
//assert( owner );
assert( tag.IsPrivate() );
std::string pc ( "Private Creator" );
Dummy.SetName( pc.c_str() );
Dummy.SetVR( VR::LO );
Dummy.SetVM( VM::VM1 );
Dummy.SetRetired( false );
return Dummy;
}
else
{
Dummy.SetName( "Private Element without Private Creator" );
Dummy.SetVR( VR::INVALID );
Dummy.SetVM( 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
|