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 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600
|
/*=========================================================================
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 "gdcmStringFilter.h"
#include "gdcmGlobal.h"
#include "gdcmElement.h"
#include "gdcmByteValue.h"
#include "gdcmAttribute.h"
#include "gdcmDataSetHelper.h"
#include <string.h> // strtok
namespace gdcm
{
//-----------------------------------------------------------------------------
StringFilter::StringFilter():F(new File)
{
}
//-----------------------------------------------------------------------------
StringFilter::~StringFilter()
= default;
void StringFilter::SetDicts(const Dicts &dicts)
{
(void)dicts;
assert(0); // FIXME
}
std::string StringFilter::ToString(const Tag& t) const
{
return ToStringPair(t).second;
}
std::string StringFilter::ToString(const PrivateTag& privTag) const
{
const DataSet &ds = GetFile().GetDataSet();
const DataElement &de = ds.GetDataElement(privTag);
return ToStringPair(de).second;
}
std::string StringFilter::ToString(const DataElement& de) const
{
return ToStringPair(de).second;
}
/*
std::string StringFilter::ToMIME64(const Tag& t) const
{
return ToStringPair(t).second;
// base64 streams have to be a multiple of 4 bytes long
int encodedLengthEstimate = 2 * bv->GetLength();
encodedLengthEstimate = ((encodedLengthEstimate / 4) + 1) * 4;
char *bin = new char[encodedLengthEstimate];
unsigned int encodedLengthActual = static_cast<unsigned int>(
itksysBase64_Encode(
(const unsigned char *) bv->GetPointer(),
static_cast< unsigned long>( bv->GetLength() ),
(unsigned char *) bin,
static_cast< int >( 0 ) ));
std::string encodedValue(bin, encodedLengthActual);
}
*/
#define StringFilterCase(type) \
case VR::type: \
{ \
Element<VR::type,VM::VM1_n> el; \
if( !de.IsEmpty() ) { \
el.Set( de.GetValue() ); \
if( el.GetLength() ) { \
os << el.GetValue(); \
for(unsigned int i = 1; i < el.GetLength(); ++i) os << "\\" << el.GetValue(i); \
retvalue = os.str(); } } \
} break
std::pair<std::string, std::string> StringFilter::ToStringPair(const Tag& t) const
{
if( t.GetGroup() == 0x2 )
{
const FileMetaInformation &header = GetFile().GetHeader();
return ToStringPair(t, header);
}
else
{
const DataSet &ds = GetFile().GetDataSet();
return ToStringPair(t, ds);
}
}
std::pair<std::string, std::string> StringFilter::ToStringPair(const DataElement& de) const
{
const Tag & t = de.GetTag();
if( t.GetGroup() == 0x2 )
{
const FileMetaInformation &header = GetFile().GetHeader();
return ToStringPairInternal(de, header);
}
else
{
const DataSet &ds = GetFile().GetDataSet();
return ToStringPairInternal(de, ds);
}
}
bool StringFilter::ExecuteQuery(std::string const & query_const, std::string &value ) const
{
// if( t.GetGroup() == 0x2 )
// {
// const FileMetaInformation &header = GetFile().GetHeader();
// return ToStringPair(query_const, header);
// }
// else
{
const DataSet &ds = GetFile().GetDataSet();
return ExecuteQuery(query_const, ds, value);
}
}
bool StringFilter::ExecuteQuery(std::string const & query_const,
DataSet const &ds, std::string &retvalue ) const
{
//std::pair<std::string, std::string> ret;
static Global &g = Global::GetInstance();
static const Dicts &dicts = g.GetDicts();
static const Dict &pubdict = dicts.GetPublicDict();
char *query = strdup( query_const.c_str() );
const char delim[] = "/";
const char subdelim[] = "[]@='";
char *str1, *str2, *token, *subtoken;
char *saveptr1= nullptr, *saveptr2;
int j;
//bool dicomnativemodel = false;//unused
const DataSet *curds = nullptr;
const DataElement *curde = nullptr;
Tag t;
int state = 0;
SmartPointer<SequenceOfItems> sqi;
for (j = 1, str1 = query; state >= 0 ; j++, str1 = nullptr)
{
token = System::StrTokR(str1, delim, &saveptr1);
if (token == nullptr)
break;
//printf("%d: %s\n", j, token);
std::vector< std::string > subtokens;
for (str2 = token; ; str2 = nullptr)
{
subtoken = System::StrTokR(str2, subdelim, &saveptr2);
if (subtoken == nullptr)
break;
//printf(" --> %s\n", subtoken);
subtokens.emplace_back(subtoken );
}
if( subtokens[0] == "DicomNativeModel" )
{
// move to next state
assert( state == 0 );
state = 1;
curds = &ds;
}
else if( subtokens[0] == "DicomAttribute" )
{
if( state != 1 )
{
state = -1;
break;
}
assert( subtokens[1] == "keyword" );
const char *k = subtokens[2].c_str();
/*const DictEntry &dictentry = */pubdict.GetDictEntryByKeyword(k, t);
if( !curds->FindDataElement( t ) )
{
state = -1;
break;
}
curde = &curds->GetDataElement( t );
}
else if( subtokens[0] == "Item" )
{
assert( state == 1 );
assert( curde );
assert( subtokens[1] == "number" );
sqi = curde->GetValueAsSQ();
if( !sqi )
{
state = -1;
break;
}
Item const &item = sqi->GetItem( atoi( subtokens[2].c_str() ) );
curds = &item.GetNestedDataSet();
}
else if( subtokens[0] == "Value" )
{
assert( state == 1 );
// move to next state
state = 2;
assert( subtokens[1] == "number" );
#if !defined(NDEBUG)
const ByteValue * const bv = curde->GetByteValue(); (void)bv;
assert( bv );
//bv->Print( std::cout << std::endl );
#endif
}
else
{
assert( subtokens.size() );
gdcmDebugMacro( "Unhandled token: " << subtokens[0] );
state = -1;
}
}
if( state != 2 )
{
free( query );
return false;
}
free( query );
const DataElement &de = *curde;
const DictEntry &entry = pubdict.GetDictEntry(de.GetTag());
const VR &vr_read = de.GetVR();
const VR &vr_dict = entry.GetVR();
if( vr_dict == VR::INVALID )
{
// FIXME This is a public element we do not support...
return false;
}
VR vr;
// always prefer the vr from the file:
if( vr_read == VR::INVALID )
{
vr = vr_dict;
}
else if ( vr_read == VR::UN && vr_dict != VR::INVALID ) // File is explicit, but still prefer vr from dict when UN
{
vr = vr_dict;
}
else // cool the file is Explicit !
{
vr = vr_read;
}
if( vr.IsDual() ) // This mean vr was read from a dict entry:
{
vr = DataSetHelper::ComputeVR(*F,ds, t);
}
if( vr == VR::UN )
{
// this element is not known...
return false;
}
assert( vr != VR::UN && vr != VR::INVALID );
//ret.first = entry.GetName();
if( VR::IsASCII( vr ) )
{
assert( vr & VR::VRASCII );
const ByteValue *bv = de.GetByteValue();
if( de.GetVL() )
{
assert( bv /*|| bv->IsEmpty()*/ );
retvalue = std::string( bv->GetPointer(), bv->GetLength() );
// Let's remove any trailing \0 :
retvalue.resize( std::min( retvalue.size(), strlen( retvalue.c_str() ) ) ); // strlen is guarantee to be lower or equal to ::size()
}
else
{
//assert( bv == NULL );
retvalue = ""; // ??
}
}
else
{
assert( vr & VR::VRBINARY );
const ByteValue *bv = de.GetByteValue();
if( bv )
{
//VM::VMType vm = entry.GetVM();//!!mmr-- can I remove this, or will it mess with the stream?
//assert( vm == VM::VM1 );
if( vr.IsDual() ) // This mean vr was read from a dict entry:
{
vr = DataSetHelper::ComputeVR(GetFile(),ds, t);
}
std::ostringstream os;
switch(vr)
{
StringFilterCase(AT);
StringFilterCase(FL);
StringFilterCase(FD);
//StringFilterCase(OB);
StringFilterCase(OF);
//StringFilterCase(OW);
StringFilterCase(SL);
//StringFilterCase(SQ);
StringFilterCase(SS);
StringFilterCase(UL);
//StringFilterCase(UN);
StringFilterCase(US);
StringFilterCase(UT);
case VR::UN:
case VR::US_SS:
assert(0);
break;
case VR::OB:
case VR::OW:
case VR::OB_OW:
case VR::SQ:
gdcmWarningMacro( "Unhandled: " << vr << " for tag " << de.GetTag() );
retvalue = "";
break;
default:
assert(0);
break;
}
}
}
return true;
}
std::pair<std::string, std::string> StringFilter::ToStringPair(const Tag& t, DataSet const &ds) const
{
std::pair<std::string, std::string> ret;
if( !ds.FindDataElement(t) )
{
gdcmDebugMacro( "DataSet does not contains tag:" );
return ret;
}
const DataElement &de = ds.GetDataElement( t );
ret = ToStringPairInternal( de, ds );
return ret;
}
std::pair<std::string, std::string> StringFilter::ToStringPairInternal(const DataElement& de, DataSet const &ds) const
{
std::pair<std::string, std::string> ret;
const Global &g = GlobalInstance;
const Dicts &dicts = g.GetDicts();
if( ds.IsEmpty() )
{
gdcmDebugMacro( "DataSet is empty or does not contains tag:" );
return ret;
}
//assert( de.GetTag().IsPublic() );
std::string strowner;
const char *owner = nullptr;
const Tag &t = de.GetTag();
if( t.IsPrivate() && !t.IsPrivateCreator() )
{
strowner = ds.GetPrivateCreator(t);
owner = strowner.c_str();
}
const DictEntry &entry = dicts.GetDictEntry(de.GetTag(), owner);
const VR &vr_read = de.GetVR();
const VR &vr_dict = entry.GetVR();
VR vr;
// always prefer the vr from the file:
if( vr_read == VR::INVALID && vr_dict != VR::INVALID )
{
vr = vr_dict;
}
else if ( vr_read == VR::UN && vr_dict != VR::INVALID ) // File is explicit, but still prefer vr from dict when UN
{
vr = vr_dict;
}
else // cool the file is Explicit !
{
vr = vr_read;
}
if( vr == VR::INVALID )
{
// FIXME This is a public element we do not support...
gdcmDebugMacro( "DataElement does not specify the VR." );
return ret;
}
if( vr.IsDual() ) // This mean vr was read from a dict entry:
{
vr = DataSetHelper::ComputeVR(*F,ds, t);
}
if( vr == VR::UN )
{
// this element is not known...
return ret;
}
assert( vr != VR::UN && vr != VR::INVALID );
//std::cerr << "Found " << vr << " for " << de.GetTag() << std::endl;
ret.first = entry.GetName();
if( VR::IsASCII( vr ) )
{
assert( vr & VR::VRASCII );
const ByteValue *bv = de.GetByteValue();
if( de.GetVL() )
{
assert( bv /*|| bv->IsEmpty()*/ );
ret.second = std::string( bv->GetPointer(), bv->GetLength() );
// Let's remove any trailing \0 :
ret.second.resize( std::min( ret.second.size(), strlen( ret.second.c_str() ) ) ); // strlen is guarantee to be lower or equal to ::size()
}
else
{
//assert( bv == NULL );
ret.second = ""; // ??
}
}
else
{
assert( vr & VR::VRBINARY );
const ByteValue *bv = de.GetByteValue();
if( bv )
{
//VM::VMType vm = entry.GetVM();//!!mmr-- can I remove this, or will it mess with the stream?
//assert( vm == VM::VM1 );
if( vr.IsDual() ) // This mean vr was read from a dict entry:
{
vr = DataSetHelper::ComputeVR(GetFile(),ds, t);
}
std::ostringstream os;
std::string retvalue;
switch(vr)
{
StringFilterCase(AT);
StringFilterCase(FL);
StringFilterCase(FD);
//StringFilterCase(OB);
StringFilterCase(OF);
//StringFilterCase(OW);
StringFilterCase(SL);
//StringFilterCase(SQ);
StringFilterCase(SS);
StringFilterCase(UL);
//StringFilterCase(UN);
StringFilterCase(US);
StringFilterCase(UT);
case VR::UN:
case VR::US_SS:
assert(0);
break;
case VR::OB:
case VR::OW:
case VR::OB_OW:
case VR::SQ:
gdcmWarningMacro( "Unhandled: " << vr << " for tag " << de.GetTag() );
ret.second = "";
break;
default:
assert(0);
break;
}
ret.second = retvalue;
}
}
return ret;
}
#define FromStringFilterCase(type) \
case VR::type: \
{ \
Element<VR::type,VM::VM1_n> el; \
/* el.ReadComputeLength( is ); */ \
el.SetLength( vl ); \
for(unsigned int i = 0; i < vm.GetLength(); ++i) \
{ \
if(i) is.get(); \
is >> el.GetValue(i); \
} \
el.Write(os); \
} \
break
#if 0
static inline size_t count_backslash(const char *s, size_t len)
{
assert( s );
size_t c = 0;
for(size_t i = 0; i < len; ++i, ++s)
{
if( *s == '\\' )
{
++c;
}
}
return c;
}
#endif
std::string StringFilter::FromString(const Tag&t, const char * value, size_t len)
{
if( !value || !len ) return "";
const Global &g = GlobalInstance;
const Dicts &dicts = g.GetDicts();
std::string strowner;
const char *owner = nullptr;
const DataSet &ds = GetFile().GetDataSet();
if( t.IsPrivate() && !t.IsPrivateCreator() )
{
strowner = ds.GetPrivateCreator(t);
owner = strowner.c_str();
}
const DictEntry &entry = dicts.GetDictEntry(t, owner);
const VM &vm = entry.GetVM();
//const VR &vr = entry.GetVR();
const DataElement &de = ds.GetDataElement( t );
const VR &vr_read = de.GetVR();
const VR &vr_dict = entry.GetVR();
VR vr;
// always prefer the vr from the file:
if( vr_read == VR::INVALID )
{
vr = vr_dict;
}
else if ( vr_read == VR::UN && vr_dict != VR::INVALID ) // File is explicit, but still prefer vr from dict when UN
{
vr = vr_dict;
}
else // cool the file is Explicit !
{
vr = vr_read;
}
if( vr.IsDual() ) // This mean vr was read from a dict entry:
{
vr = DataSetHelper::ComputeVR(*F,ds, t);
}
if( vr == VR::UN )
{
// this element is not known...
//return ret;
}
std::string s(value,value+len);
if( VR::IsASCII( vr ) )
{
return s;
}
VL::Type castLen = (VL::Type)len;
size_t count = VM::GetNumberOfElementsFromArray(value, castLen);
VL vl = vm.GetLength() * vr.GetSizeof();
if( vm.GetLength() == 0 )
{
// VM1_n
vl = (VL)( count * vr.GetSizeof());
#if !defined(NDEBUG)
VM check = VM::GetVMTypeFromLength(count, 1);
if( vm != VM::VM0 )
assert( vm.Compatible( check ) );
#endif
}
std::istringstream is;
is.str( s );
std::ostringstream os;
switch(vr)
{
FromStringFilterCase(AT);
FromStringFilterCase(FL);
FromStringFilterCase(FD);
//FromStringFilterCase(OB);
FromStringFilterCase(OF);
//FromStringFilterCase(OW);
FromStringFilterCase(SL);
//FromStringFilterCase(SQ);
FromStringFilterCase(SS);
FromStringFilterCase(UL);
//FromStringFilterCase(UN);
FromStringFilterCase(US);
default:
gdcmErrorMacro( "Not implemented" );
assert(0);
}
return os.str();
}
} // end namespace gdcm
|