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
|
/*=========================================================================
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 "gdcmXMLDictReader.h"
#include "gdcmDict.h"
#include <iostream>
#include <stdlib.h> // abort
namespace gdcm
{
XMLDictReader::XMLDictReader():ParsingDescription(false),Description()
{
}
void XMLDictReader::HandleEntry(const char **atts)
{
assert( !ParsingDescription );
VR vr;
VM vm;
assert( vm == VM::VM0 );
std::string name;
bool ret;
Tag &tag = CurrentTag;
DictEntry &de = CurrentDE;
int i = 0;
const char **current = atts;
// Supported attributes:
std::string group = "group";
std::string element = "element";
std::string strvr = "vr";
std::string strvm = "vm";
std::string retired = "retired";
std::string retiredtrue = "true";
std::string retiredfalse = "false";
std::string version = "version";
std::string strname = "name";
while(*current /*&& current+1*/)
{
assert( *(current + 1) );
if( group == *current )
{
unsigned int v;
const char *raw = *(current+1);
int r = sscanf(raw, "%04x", &v);
assert( r == 1 );
assert( v <= 0xFFFF );
char sv[4+1];
r = sprintf(sv, "%04x", v);
assert( r == 4 );
if( strncmp(raw, sv, 4) == 0 ) // GroupXX
{
tag.SetGroup( v );
}
else
{
assert( (raw[0] == '5' && raw[1] == '0') || (raw[0] == '6' && raw[1] == '0') );
if( raw[0] == '5' ) tag.SetGroup( 0x5000 );
if( raw[0] == '6' ) tag.SetGroup( 0x6000 );
CurrentDE.SetGroupXX( true );
}
}
else if( element == *current )
{
unsigned int v;
const char *raw = *(current+1);
int r = sscanf(raw, "%04x", &v);
assert( r == 1 );
assert( v <= 0xFFFF );
char sv[4+1];
r = sprintf(sv, "%04x", v);
assert( r == 4 );
if( strncmp(raw, sv, 4) == 0 )
{
tag.SetElement( v );
}
else
{
assert( raw[0] == '3' && raw[1] == '1' );
tag.SetElement( 0x3100 );
CurrentDE.SetElementXX( true );
}
}
else if( strvr == *current )
{
vr = VR::GetVRTypeFromFile( *(current + 1) );
//assert( vr != VR::INVALID );
}
else if( strvm == *current )
{
vm = VM::GetVMType( *(current + 1) );
//assert( *(current+1) != '\0' );
//assert( vm != VM::VM0 );
//assert( vm != VM::VM_END );
}
else if( retired == *current )
{
if( retiredtrue == *(current+1) )
{
ret = true;
}
else if( retiredfalse == *(current+1) )
{
ret = false;
}
else
{
assert(0);
}
}
else if( version == *current )
{
// ??
}
else if( strname == *current )
{
name = *(current+1);
}
else
{
assert(0);
}
// goes on to the next attribute (need to skip value)
++current;
++current;
}
// Done !
de = DictEntry(name.c_str(), vr, vm, ret );
}
void XMLDictReader::HandleDescription(const char **atts)
{
assert( ParsingDescription );
assert( *atts == NULL );
assert( Description == "" );
#if 0
DictEntry &de = CurrentDE;
const char **current = atts;
std::string description;
while(*current /*&& current+1*/)
{
assert( *(current + 1) );
++current;
}
// Done !
//de.SetName( description.c_str() );
#endif
}
void XMLDictReader::StartElement(const char *name, const char **atts)
{
std::string dict = "dict";
std::string entry = "entry";
std::string description = "description"; // aka name
Tag currenttag;
//DictEntry currentde("",VR::INVALID,VM::VM0,true);
if( dict == name )
{
// dict ??
}
else if( entry == name )
{
HandleEntry(atts);
}
else if( description == name )
{
ParsingDescription = true; // mark that we are processing description element
// We need a second pass to fill in the currentde struct:
HandleDescription(atts);
}
else
{
std::cerr << name << std::endl;
assert(0);
}
}
void XMLDictReader::EndElement(const char *name)
{
std::string entry = "entry";
std::string dict = "dict";
std::string description = "description"; // free form text usually the raw description of tag
if( entry == name )
{
// Ok currentde is now valid let's insert it into the Dict:
DICOMDict.AddDictEntry( CurrentTag, CurrentDE);
}
else if( description == name )
{
assert( ParsingDescription );
ParsingDescription = false;
// TODO: do something with description ??
Description = "";
}
else if ( dict == name )
{
}
else
{
assert(0);
}
}
void XMLDictReader::CharacterDataHandler(const char *data, int length)
{
if( ParsingDescription )
{
std::string name( data, length);
assert( length == strlen( name.c_str() ) );
Description.append( name );
}
}
}
|