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
|
/*=========================================================================
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.
=========================================================================*/
/*
Try to extract contents of Philips RAW storage class:
(0002,0002) UI [1.2.840.10008.5.1.4.1.1.66] # 26,1 Media Storage SOP Class UID
(0002,0003) UI [1.3.46.670589.11.17240.5.23.4.1.3012.2010032409482568018] # 56,1 Media Storage SOP Instance UID
(0002,0010) UI [1.2.840.10008.1.2.1] # 20,1 Transfer Syntax UID
(0002,0012) UI [1.3.46.670589.11.0.0.51.4.4.1] # 30,1 Implementation Class UID
(0002,0013) SH [MR DICOM 4.1] # 12,1 Implementation Version Name
* Everything done in this code is for the sole purpose of writing interoperable
* software under Sect. 1201 (f) Reverse Engineering exception of the DMCA.
* If you believe anything in this code violates any law or any of your rights,
* please contact us (gdcm-developers@lists.sourceforge.net) so that we can
* find a solution.
*
* Everything you do with this code is at your own risk, since decompression
* algorithm was not written from specification documents.
*
* Special thanks to:
* Triplett,William T for bringing to your attention on this ExamCard stuff
*/
#include "gdcmReader.h"
#include "gdcmDataSet.h"
#include "gdcmPrivateTag.h"
#include "gdcmBase64.h"
#include <iomanip>
static bool compfn(const char *s1, const char *s2)
{
return strcmp(s1,s2) < 0 ? true : false;
}
static const char *PDFStrings[] = { // Keep me ordered please
"PDF_CONTROL_GEN_PARS",
"PDF_CONTROL_PREP_PARS",
"PDF_CONTROL_RECON_PARS",
"PDF_CONTROL_SCAN_PARS",
"PDF_EXAM_PARS",
"PDF_HARDWARE_PARS",
"PDF_PREP_PARS",
"PDF_SPT_PARS",
};
static bool isvalidpdfstring( const char *pdfstring )
{
assert( pdfstring );
static const size_t n = sizeof( PDFStrings ) / sizeof( *PDFStrings );
static const char **begin = PDFStrings;
static const char **end = begin + n;
return std::binary_search(begin, end, pdfstring, compfn);
}
typedef enum
{
param_float = 0,
param_integer,
param_string,
param_3, // ??
param_enum,
} param_type;
static const char *gettypenamefromtype( int i)
{
const char *ret = NULL;
param_type e = (param_type)i;
switch( e )
{
case param_float:
ret = "float";
break;
case param_integer:
ret = "int";
break;
case param_string:
ret = "string";
break;
case param_3:
ret = "??";
break;
case param_enum:
ret = "enum";
break;
}
assert( ret );
return ret;
}
struct header
{
/*
* TODO:
* Looks as if we could read all int*, float* and string* at once...
*/
int32_t v1; // offset to int pointer array ?
uint16_t nints; // number of ints (max number?)
uint16_t v3; // always 0 ?
int32_t v4; // offset to float pointer array ?
uint32_t nfloats;
int32_t v6; // offset to string pointer array ?
uint32_t nstrings;
int32_t v8; // always 8 ??
uint32_t numparams;
uint32_t getnints() const { return nints; }
uint32_t getnfloats() const { return nfloats; }
uint32_t getnstrings() const { return nstrings; }
uint32_t getnparams() const { return numparams; }
void read( std::istream & is )
{
is.read( (char*)&v1,sizeof(v1));
is.read( (char*)&nints,sizeof(nints));
is.read( (char*)&v3,sizeof(v3));
assert( v3 == 0 ); // looks like this is always 0
is.read( (char*)&v4,sizeof(v4));
is.read( (char*)&nfloats,sizeof(nfloats));
is.read( (char*)&v6,sizeof(v6));
is.read( (char*)&nstrings,sizeof(nstrings));
is.read( (char*)&v8,sizeof(v8));
assert( v8 == 8 );
is.read( (char*)&numparams,sizeof(numparams));
}
void print( std::ostream & os )
{
os << v1 << ",";
os << nints << ",";
os << v3 << ",";
os << v4 << ",";
os << nfloats << ",";
os << v6 << ",";
os << nstrings << ",";
os << v8 << ",";
os << numparams << std::endl;
}
};
struct param
{
char name[32+1];
int8_t boolean;
int32_t type;
uint32_t dim;
uint32_t v4;
/*int32_t*/ std::streamoff offset;
param_type gettype() const { return (param_type)type; }
uint32_t getdim() const { return dim; }
void read( std::istream & is )
{
is.read( name, 32 + 1);
//assert( name[32] == 0 ); // fails sometimes...
// This is always the same issue the string can contains garbarge from previous run,
// we need to print only until the first \0 character:
assert( strlen( name ) <= 32 ); // sigh
is.read( (char*)&boolean,1);
assert( boolean == 0 || boolean == 1 ); // some kind of bool...
is.read( (char*)&type, sizeof( type ) );
assert( gettypenamefromtype( type ) );
is.read( (char*)&dim, sizeof( dim ) );
is.read( (char*)&v4, sizeof( v4 ) );
//assert( v4 == 0 ); // always 0 ? sometimes not...
const std::streamoff cur = is.tellg();
is.read( (char*)&offset, sizeof( offset ) );
offset += cur;
}
void print( std::ostream & os ) const
{
os << name << ",";
os << (int)boolean << ",";
os << type << ",";
os << dim << ",";
os << v4 << ",";
os << offset << std::endl;
}
void printvalue( std::ostream & os, std::istream & is ) const
{
is.seekg( offset );
switch( type )
{
case param_float:
{
os.precision(2);
os << std::fixed;
for( uint32_t idx = 0; idx < dim; ++idx )
{
if( idx ) os << ",";
float v;
is.read( (char*)&v, sizeof(v) );
os << v; // what if the string contains \0 ?
}
}
break;
case param_integer:
{
for( uint32_t idx = 0; idx < dim; ++idx )
{
if( idx ) os << ",";
int32_t v;
is.read( (char*)&v, sizeof(v) );
os << v;
}
}
break;
case param_string:
{
std::string v;
v.resize( dim );
is.read( &v[0], dim );
os << v;
}
break;
case param_enum:
{
for( uint32_t idx = 0; idx < dim; ++idx )
{
if( idx ) os << ",";
int32_t v;
is.read( (char*)&v, sizeof(v) );
os << v;
}
}
break;
}
}
void printxml( std::ostream & os, std::istream & is ) const
{
// <Attribute Name="CGEN_force_par_mode" Type="enum">0</Attribute>
os << " <Attribute";
os << " Name=\"" << name << "\"";
os << " Type=\"" << gettypenamefromtype(type) << "\"";
if( dim != 1 )
{
os << " ArraySize=\"" << dim << "\"";
}
os << ">";
printvalue( os, is );
os << "</Attribute>\n";
}
void printcsv( std::ostream & os, std::istream & is ) const
{
os << std::setw(32) << std::left << name << ",";
os << std::setw(7) << std::right << gettypenamefromtype(type) << ",";
os << std::setw(4) << dim << ",";
os << " ";
printvalue( os, is );
os << ",\n";
}
};
static bool ProcessNested( gdcm::DataSet & ds )
{
/*
TODO:
Looks like the real length of the blob is stored here:
(2005,1132) SQ # u/l,1 ?
(fffe,e000) na (Item with undefined length)
(2005,0011) LO [Philips MR Imaging DD 002 ] # 26,1 Private Creator
(2005,1143) SL 3103 # 4,1 ?
Wotsit ?
(2005,1132) SQ # u/l,1 ?
(fffe,e000) na (Item with undefined length)
(2005,0011) LO [Philips MR Imaging DD 002 ] # 26,1 Private Creator
(2005,1147) CS [Y ] # 2,1 ?
*/
bool ret = false;
// (2005,1137) PN (LO) [PDF_CONTROL_GEN_PARS] # 20,1 ?
const gdcm::PrivateTag pt0(0x2005,0x37,"Philips MR Imaging DD 002");
if( !ds.FindDataElement( pt0 ) ) return false;
const gdcm::DataElement &de0 = ds.GetDataElement( pt0 );
if( de0.IsEmpty() ) return false;
const gdcm::ByteValue * bv0 = de0.GetByteValue();
std::string s0( bv0->GetPointer() , bv0->GetLength() );
// (2005,1139) LO [IEEE_PDF] # 8,1 ?
const gdcm::PrivateTag pt1(0x2005,0x39,"Philips MR Imaging DD 002");
if( !ds.FindDataElement( pt1 ) ) return false;
const gdcm::DataElement &de1 = ds.GetDataElement( pt1 );
const gdcm::PrivateTag pt(0x2005,0x44,"Philips MR Imaging DD 002");
if( !ds.FindDataElement( pt ) ) return false;
const gdcm::DataElement &de = ds.GetDataElement( pt );
if( de.IsEmpty() ) return false;
const gdcm::ByteValue * bv = de.GetByteValue();
if( s0 == "ExamCardBlob" )
{
assert( de1.IsEmpty() );
std::string fn = gdcm::LOComp::Trim( s0.c_str() ); // remove trailing space
fn += ".xml";
std::ofstream out( fn.c_str() );
// remove trailing \0
size_t len = strlen( bv->GetPointer() );
out.write( bv->GetPointer() , len );
out.close();
// Extract binary64 thingy (this is a ugly hack, better use an XML parser)
std::string dup( bv->GetPointer(), len );
std::string::size_type pos1 = dup.find( "<ExamCardBlob>" );
std::string::size_type pos2 = dup.find( "</ExamCardBlob>" );
std::string b64( bv->GetPointer() + pos1 + 14, pos2 - (pos1 + 14) );
// ulgy hack to remove \r\n from input base64:
std::string::iterator r_pos = std::remove(b64.begin(), b64.end(), '\r');
b64.erase(r_pos, b64.end());
std::string::iterator n_pos = std::remove(b64.begin(), b64.end(), '\n');
b64.erase(n_pos, b64.end());
#if 0
std::ofstream out2( "debug" );
out2.write( b64.c_str(), b64.size() );
out2.close();
#endif
const size_t dlen = gdcm::Base64::GetDecodeLength(b64.c_str(), b64.size() );
std::string decoded;
decoded.resize( dlen );
gdcm::Base64::Decode( &decoded[0], decoded.size(), b64.c_str(), b64.size() );
std::ofstream f64( "soap.xml" );
f64.write( decoded.c_str(), decoded.size() );
f64.close();
ret = true;
}
else
{
if( de1.IsEmpty() ) return false;
const gdcm::ByteValue * bv1 = de1.GetByteValue();
std::string s1( bv1->GetPointer() , bv1->GetLength() );
if( s1 == "IEEE_PDF" )
{
// std::cout << "Len= " << bv->GetLength() << std::endl;
#if 0
std::string fn = gdcm::LOComp::Trim( s.c_str() ); // remove trailing space
std::ofstream out( fn.c_str() );
out.write( bv->GetPointer(), bv->GetLength() );
out.close();
#endif
std::istringstream is;
std::string dup( bv->GetPointer(), bv->GetLength() );
is.str( dup );
header h;
h.read( is );
#if 0
std::cout << s0.c_str() << std::endl;
h.print( std::cout );
#endif
assert( is.tellg() == std::streampos(0x20) );
is.seekg( 0x20 );
std::vector< param > params;
param p;
for( uint32_t i = 0; i < h.getnparams(); ++i )
{
p.read( is );
//p.print( std::cout );
params.push_back( p );
}
std::string fn = gdcm::LOComp::Trim( s0.c_str() ); // remove trailing space
assert( isvalidpdfstring( fn.c_str() ) );
fn += ".csv";
//fn += ".xml";
std::ofstream csv( fn.c_str() );
// let's do some bookeeping:
uint32_t nfloats = 0;
uint32_t nints = 0;
uint32_t nstrings = 0;
for( std::vector<param>::const_iterator it = params.begin();
it != params.end(); ++it )
{
param_type type = it->gettype();
switch( type )
{
case param_float:
nfloats += it->getdim();
break;
case param_integer:
nints += it->getdim();
break;
case param_string:
nstrings += it->getdim();
break;
default:
;
}
}
#if 0
std::cout << "Stats:" << std::endl;
std::cout << "nfloats:" << nfloats << std::endl;
std::cout << "nints:" << nints << std::endl;
std::cout << "nstrings:" << nstrings << std::endl;
#endif
assert( h.getnints() >= nints );
assert( h.getnfloats() >= nfloats );
assert( h.getnstrings() >= nstrings);
for( uint32_t i = 0; i < h.getnparams(); ++i )
{
params[i].printcsv( csv, is );
//params[i].printxml( csv, is );
}
csv.close();
ret = true;
}
else if( s1 == "ASCII " )
{
#if 0
std::cerr << "ASCII is not handled" << std::endl;
std::string fn = gdcm::LOComp::Trim( s0.c_str() ); // remove trailing space
fn += ".asc";
std::ofstream out( fn.c_str() );
out.write( bv->GetPointer() , bv->GetLength() );
out.close();
#endif
std::string fn = gdcm::LOComp::Trim( s0.c_str() ); // remove trailing space
fn += ".sin";
std::ofstream sin( fn.c_str() );
const char *beg = bv->GetPointer();
const char *end = beg + bv->GetLength();
assert( *beg == 0 );
const char *p = beg + 1; // skip first \0
size_t prev = 0;
for( ; p != end; ++p )
{
if( *p == 0 )
{
const char *s = beg + prev + 1;
if( *s )
{
sin << s << std::endl;
}
else
{
sin << std::endl;
}
prev = p - beg;
}
}
sin.close();
ret = true;
}
else if( s1 == "BINARY" )
{
std::cerr << "BINARY is not handled" << std::endl;
std::string fn = gdcm::LOComp::Trim( s0.c_str() ); // remove trailing space
fn += ".bin";
std::ofstream out( fn.c_str() );
//out.write( bv->GetPointer() + 512, bv->GetLength() - 512);
out.write( bv->GetPointer() , bv->GetLength() );
out.close();
#if 0
int array[ 128 ];
memcpy( array, bv->GetPointer(), 512 );
for( int i = 0; i < 14; ++i )
{
std::cout << array[i] << std::endl;
}
#endif
ret = true;
}
}
// else -> ret == false
assert( ret );
return ret;
}
int main(int argc, char *argv[])
{
if( argc < 2 ) return 1;
const char *filename = argv[1];
gdcm::Reader reader;
reader.SetFileName( filename );
if( !reader.Read() )
{
std::cerr << "Failed to read: " << filename << std::endl;
return 1;
}
const gdcm::DataSet& ds = reader.GetFile().GetDataSet();
/*
(2005,1132) SQ # u/l,1 ?
(fffe,e000) na (Item with undefined length)
(2005,0011) LO [Philips MR Imaging DD 002 ] # 26,1 Private Creator
(2005,1137) PN (LO) [PDF_CONTROL_GEN_PARS] # 20,1 ?
(2005,1138) PN (LO) (no value) # 0,1 ?
(2005,1139) PN (LO) [IEEE_PDF] # 8,1 ?
(2005,1140) PN (LO) (no value) # 0,1 ?
(2005,1141) PN (LO) (no value) # 0,1 ?
(2005,1143) SL 3103 # 4,1 ?
(2005,1144) OW 66\05\00\00\3b\01\00\00\4a\0a\00\00\0e\00\00\00\7a\0a\00\00\95\01\00\00\08\00\00\00\1b\00\00\00\43\47\45\4e\5f\75\73\65\72\5f\64\65\66\5f\6b\65\79\5f\6e\61\6d\65\73\00\00\00\00\00\00\00\00\00 # 3104,1 ?
(2005,1147) CS [Y ] # 2,1 ?
(fffe,e00d)
*/
const gdcm::PrivateTag pt(0x2005,0x32,"Philips MR Imaging DD 002");
if( !ds.FindDataElement( pt ) ) return 1;
const gdcm::DataElement &de = ds.GetDataElement( pt );
if( de.IsEmpty() ) return 1;
gdcm::SequenceOfItems *sqi = de.GetValueAsSQ();
if ( !sqi ) return 1;
gdcm::SequenceOfItems::SizeType s = sqi->GetNumberOfItems();
for( gdcm::SequenceOfItems::SizeType i = 1; i <= s; ++i )
{
gdcm::Item &item = sqi->GetItem(i);
gdcm::DataSet &nestedds = item.GetNestedDataSet();
if( !ProcessNested( nestedds ) ) return 1;
}
return 0;
}
|