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 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009
|
/*
*
* Copyright (C) 1994-2010, OFFIS e.V.
* All rights reserved. See COPYRIGHT file for details.
*
* This software and supporting documentation were developed by
*
* OFFIS e.V.
* R&D Division Health
* Escherweg 2
* D-26121 Oldenburg, Germany
*
*
* Module: dcmdata
*
* Author: Gerd Ehlers, Andreas Barth
*
* Purpose: Implementation of class DcmOtherByteOtherWord
*
* Last Update: $Author: joergr $
* Update Date: $Date: 2010-10-29 10:57:21 $
* CVS/RCS Revision: $Revision: 1.64 $
* Status: $State: Exp $
*
* CVS/RCS Log at end of file
*
*/
#include "dcmtk/config/osconfig.h" /* make sure OS specific configuration is included first */
#include "dcmtk/ofstd/ofstd.h"
#include "dcmtk/ofstd/ofstream.h"
#include "dcmtk/dcmdata/dcvrobow.h"
#include "dcmtk/dcmdata/dcdeftag.h"
#include "dcmtk/dcmdata/dcswap.h"
#include "dcmtk/dcmdata/dcvm.h"
#define INCLUDE_CSTDIO
#define INCLUDE_CSTDLIB
#define INCLUDE_CSTRING
#include "dcmtk/ofstd/ofstdinc.h"
// ********************************
DcmOtherByteOtherWord::DcmOtherByteOtherWord(const DcmTag &tag,
const Uint32 len)
: DcmElement(tag, len)
, compactAfterTransfer(OFFalse)
{
}
DcmOtherByteOtherWord::DcmOtherByteOtherWord(const DcmOtherByteOtherWord &old)
: DcmElement(old)
, compactAfterTransfer(old.compactAfterTransfer)
{
}
DcmOtherByteOtherWord::~DcmOtherByteOtherWord()
{
}
DcmOtherByteOtherWord &DcmOtherByteOtherWord::operator=(const DcmOtherByteOtherWord &obj)
{
DcmElement::operator=(obj);
compactAfterTransfer = obj.compactAfterTransfer;
return *this;
}
OFCondition DcmOtherByteOtherWord::copyFrom(const DcmObject& rhs)
{
if (this != &rhs)
{
if (rhs.ident() != ident()) return EC_IllegalCall;
*this = OFstatic_cast(const DcmOtherByteOtherWord &, rhs);
}
return EC_Normal;
}
// ********************************
DcmEVR DcmOtherByteOtherWord::ident() const
{
return getTag().getEVR();
}
OFCondition DcmOtherByteOtherWord::checkValue(const OFString & /*vm*/,
const OFBool /*oldFormat*/)
{
/* currently no checks are performed */
return EC_Normal;
}
unsigned long DcmOtherByteOtherWord::getVM()
{
/* value multiplicity for OB/OW is defined as 1 */
return 1;
}
OFCondition DcmOtherByteOtherWord::setVR(DcmEVR vr)
{
setTagVR(vr);
return EC_Normal;
}
// ********************************
void DcmOtherByteOtherWord::print(STD_NAMESPACE ostream&out,
const size_t flags,
const int level,
const char * /*pixelFileName*/,
size_t * /*pixelCounter*/)
{
if (valueLoaded())
{
const DcmEVR evr = getTag().getEVR();
Uint16 *wordValues = NULL;
Uint8 *byteValues = NULL;
/* get 8 or 16 bit data respectively */
if (evr == EVR_OW || evr == EVR_lt)
errorFlag = getUint16Array(wordValues);
else
errorFlag = getUint8Array(byteValues);
/* check data */
if ((wordValues != NULL) || (byteValues != NULL))
{
/* determine number of values to be printed */
const unsigned int vrSize = (evr == EVR_OW || evr == EVR_lt) ? 4 : 2;
const unsigned long count = (evr == EVR_OW || evr == EVR_lt) ? (getLengthField() / 2) : getLengthField();
unsigned long expectedLength = count * (vrSize + 1) - 1;
const unsigned long printCount =
((expectedLength > DCM_OptPrintLineLength) && (flags & DCMTypes::PF_shortenLongTagValues)) ?
(DCM_OptPrintLineLength - 3 /* for "..." */ + 1 /* for last "\" */) / (vrSize + 1) : count;
unsigned long printedLength = printCount * (vrSize + 1) - 1;
/* print line start with tag and VR */
printInfoLineStart(out, flags, level);
/* print multiple values */
if (printCount > 0)
{
out << STD_NAMESPACE hex << STD_NAMESPACE setfill('0');
if (evr == EVR_OW || evr == EVR_lt)
{
/* print word values in hex mode */
out << STD_NAMESPACE setw(vrSize) << (*(wordValues++));
for (unsigned long i = 1; i < printCount; i++)
out << "\\" << STD_NAMESPACE setw(vrSize) << (*(wordValues++));
} else {
/* print byte values in hex mode */
out << STD_NAMESPACE setw(vrSize) << OFstatic_cast(int, *(byteValues++));
for (unsigned long i = 1; i < printCount; i++)
out << "\\" << STD_NAMESPACE setw(vrSize) << OFstatic_cast(int, *(byteValues++));
}
/* reset i/o manipulators */
out << STD_NAMESPACE dec << STD_NAMESPACE setfill(' ');
}
/* print trailing "..." if data has been truncated */
if (printCount < count)
{
out << "...";
printedLength += 3;
}
/* print line end with length, VM and tag name */
printInfoLineEnd(out, flags, printedLength);
} else
printInfoLine(out, flags, level, "(no value available)");
} else
printInfoLine(out, flags, level, "(not loaded)");
}
void DcmOtherByteOtherWord::printPixel(STD_NAMESPACE ostream&out,
const size_t flags,
const int level,
const char *pixelFileName,
size_t *pixelCounter)
{
if (pixelFileName != NULL)
{
/* create filename for pixel data file */
OFString fname = pixelFileName;
fname += ".";
if (pixelCounter != NULL)
{
char num[20];
sprintf(num, "%ld", OFstatic_cast(long, (*pixelCounter)++));
fname += num;
}
fname += ".raw";
/* create reference to pixel data file in dump output */
OFString str = "=";
str += fname;
printInfoLine(out, flags, level, str.c_str(), NULL /*tag*/, OFFalse /*isInfo*/);
/* check whether pixel data file already exists */
if (!OFStandard::fileExists(fname))
{
/* create binary file for pixel data */
FILE *file = fopen(fname.c_str(), "wb");
if (file != NULL)
{
if (getTag().getEVR() == EVR_OW || getTag().getEVR() == EVR_lt)
{
/* write 16 bit data in little endian byte-order */
Uint16 *data = NULL;
getUint16Array(data);
if (data != NULL)
{
swapIfNecessary(EBO_LittleEndian, gLocalByteOrder, data, getLengthField(), sizeof(Uint16));
setByteOrder(EBO_LittleEndian);
fwrite(data, sizeof(Uint16), OFstatic_cast(size_t, getLengthField() / sizeof(Uint16)), file);
}
} else {
Uint8 *data = NULL;
getUint8Array(data);
if (data != NULL)
fwrite(data, sizeof(Uint8), OFstatic_cast(size_t, getLengthField()), file);
}
fclose(file);
} else {
DCMDATA_WARN("DcmOtherByteOtherWord: Can't open output file for pixel data: " << fname);
}
} else {
DCMDATA_WARN("DcmOtherByteOtherWord: Output file for pixel data already exists, skipping: " << fname);
}
} else
DcmOtherByteOtherWord::print(out, flags, level, pixelFileName, pixelCounter);
}
// ********************************
OFCondition DcmOtherByteOtherWord::alignValue()
{
errorFlag = EC_Normal;
if ((getTag().getEVR() != EVR_OW && getTag().getEVR() != EVR_lt) && (getLengthField() > 0) && ((getLengthField() & 1) != 0))
{
// We have an odd number of bytes. This should never happen and is certainly not allowed in DICOM.
// To fix this problem, we will add a zero pad byte at the end of the value field.
// This requires us to load the value field into memory, which may very well be a problem
// if this is part of a very large multi-frame object.
Uint8 *bytes = OFstatic_cast(Uint8 *, getValue(getByteOrder()));
if (bytes)
{
// set zero pad byte
bytes[getLengthField()] = 0;
// increase length field
setLengthField(getLengthField() + 1);
}
}
return errorFlag;
}
void DcmOtherByteOtherWord::postLoadValue()
{
if (dcmEnableAutomaticInputDataCorrection.get())
alignValue();
}
// ********************************
OFCondition DcmOtherByteOtherWord::putUint8Array(const Uint8 *byteValue,
const unsigned long numBytes)
{
errorFlag = EC_Normal;
if (numBytes > 0)
{
/* check for valid 8 bit data */
if ((byteValue != NULL) && (getTag().getEVR() != EVR_OW && getTag().getEVR() != EVR_lt))
{
errorFlag = putValue(byteValue, sizeof(Uint8) * OFstatic_cast(Uint32, numBytes));
alignValue();
} else
errorFlag = EC_CorruptedData;
} else
putValue(NULL, 0);
return errorFlag;
}
OFCondition DcmOtherByteOtherWord::putUint16Array(const Uint16 *wordValue,
const unsigned long numWords)
{
errorFlag = EC_Normal;
if (numWords > 0)
{
/* check for valid 16 bit data */
if ((wordValue != NULL) && (getTag().getEVR() == EVR_OW || getTag().getEVR() == EVR_lt))
errorFlag = putValue(wordValue, sizeof(Uint16) * OFstatic_cast(Uint32, numWords));
else
errorFlag = EC_CorruptedData;
} else
errorFlag = putValue(NULL, 0);
return errorFlag;
}
// ********************************
OFCondition DcmOtherByteOtherWord::createUint8Array(const Uint32 numBytes,
Uint8 *&bytes)
{
/* check value representation */
if ((getTag().getEVR() != EVR_OW) && (getTag().getEVR() != EVR_lt))
errorFlag = createEmptyValue(sizeof(Uint8) * OFstatic_cast(Uint32, numBytes));
else
errorFlag = EC_CorruptedData;
if (errorFlag.good())
bytes = OFstatic_cast(Uint8 *, this->getValue());
else
bytes = NULL;
return errorFlag;
}
OFCondition DcmOtherByteOtherWord::createUint16Array(const Uint32 numWords,
Uint16 *&words)
{
/* check value representation */
if ((getTag().getEVR() == EVR_OW) || (getTag().getEVR() == EVR_lt))
errorFlag = createEmptyValue(sizeof(Uint16) * OFstatic_cast(Uint32, numWords));
else
errorFlag = EC_CorruptedData;
if (errorFlag.good())
words = OFstatic_cast(Uint16 *, this->getValue());
else
words = NULL;
return errorFlag;
}
// ********************************
OFCondition DcmOtherByteOtherWord::putString(const char *stringVal)
{
errorFlag = EC_Normal;
/* check input string */
if ((stringVal != NULL) && (strlen(stringVal) > 0))
{
unsigned long vm = getVMFromString(stringVal);
if (vm > 0)
{
const DcmEVR evr = getTag().getEVR();
Uint8 *byteField = NULL;
Uint16 *wordField = NULL;
/* create new value field */
if (evr == EVR_OW || evr == EVR_lt)
wordField = new Uint16[vm];
else
byteField = new Uint8[vm];
const char *s = stringVal;
Uint16 intVal = 0;
char *value;
/* retrieve binary data from hexa-decimal string */
for (unsigned long i = 0; (i < vm) && errorFlag.good(); i++)
{
/* get first value stored in 's', set 's' to beginning of the next value */
value = getFirstValueFromString(s);
if (value != NULL)
{
/* integer overflow is currently not checked! */
if (sscanf(value, "%hx", &intVal) != 1)
errorFlag = EC_CorruptedData;
else if (evr == EVR_OW || evr == EVR_lt)
wordField[i] = OFstatic_cast(Uint16, intVal);
else
byteField[i] = OFstatic_cast(Uint8, intVal);
delete[] value;
} else
errorFlag = EC_CorruptedData;
}
/* set binary data as the element value */
if (errorFlag.good())
{
if (evr == EVR_OW || evr == EVR_lt)
errorFlag = putUint16Array(wordField, vm);
else
errorFlag = putUint8Array(byteField, vm);
}
/* delete temporary buffers */
delete[] byteField;
delete[] wordField;
} else
putValue(NULL, 0);
} else
putValue(NULL, 0);
return errorFlag;
}
// ********************************
OFCondition DcmOtherByteOtherWord::getUint8(Uint8 &byteVal,
const unsigned long pos)
{
/* get 8 bit data */
Uint8 *uintValues = NULL;
errorFlag = getUint8Array(uintValues);
/* check data before returning */
if (errorFlag.good())
{
if (uintValues == NULL)
errorFlag = EC_IllegalCall;
else if (pos >= getLength() /*bytes*/)
errorFlag = EC_IllegalParameter;
else
byteVal = uintValues[pos];
}
/* clear value in case of error */
if (errorFlag.bad())
byteVal = 0;
return errorFlag;
}
OFCondition DcmOtherByteOtherWord::getUint8Array(Uint8 *&byteVals)
{
errorFlag = EC_Normal;
if (getTag().getEVR() != EVR_OW && getTag().getEVR() != EVR_lt)
byteVals = OFstatic_cast(Uint8 *, getValue());
else
errorFlag = EC_IllegalCall;
return errorFlag;
}
// ********************************
OFCondition DcmOtherByteOtherWord::getUint16(Uint16 &wordVal,
const unsigned long pos)
{
Uint16 *uintValues = NULL;
errorFlag = getUint16Array(uintValues);
/* check data before returning */
if (errorFlag.good())
{
if (uintValues == NULL)
errorFlag = EC_IllegalCall;
else if (pos >= getLength() / sizeof(Uint16) /*words*/)
errorFlag = EC_IllegalParameter;
else
wordVal = uintValues[pos];
}
/* clear value in case of error */
if (errorFlag.bad())
wordVal = 0;
return errorFlag;
}
OFCondition DcmOtherByteOtherWord::getUint16Array(Uint16 *&wordVals)
{
errorFlag = EC_Normal;
if (getTag().getEVR() == EVR_OW || getTag().getEVR() == EVR_lt)
wordVals = OFstatic_cast(Uint16 *, getValue());
else
errorFlag = EC_IllegalCall;
return errorFlag;
}
// ********************************
OFCondition DcmOtherByteOtherWord::getOFString(OFString &stringVal,
const unsigned long pos,
OFBool /*normalize*/)
{
if (getTag().getEVR() == EVR_OW || getTag().getEVR() == EVR_lt)
{
Uint16 uint16Val;
/* get the specified numeric value (16 bit) */
errorFlag = getUint16(uint16Val, pos);
if (errorFlag.good())
{
/* ... and convert it to a character string (hex mode) */
char buffer[32];
sprintf(buffer, "%4.4hx", uint16Val);
/* assign result */
stringVal = buffer;
}
} else {
Uint8 uint8Val;
/* get the specified numeric value (8 bit) */
errorFlag = getUint8(uint8Val, pos);
if (errorFlag.good())
{
/* ... and convert it to a character string (hex mode) */
char buffer[32];
sprintf(buffer, "%2.2hx", uint8Val);
/* assign result */
stringVal = buffer;
}
}
return errorFlag;
}
OFCondition DcmOtherByteOtherWord::getOFStringArray(OFString &stringVal,
OFBool /*normalize*/)
{
if (getTag().getEVR() == EVR_OW || getTag().getEVR() == EVR_lt)
{
/* get array of 16 bit values */
Uint16 *uint16Vals = OFstatic_cast(Uint16 *, getValue());
const size_t count = OFstatic_cast(size_t, getLength() / sizeof(Uint16));
if ((uint16Vals != NULL) && (count > 0))
{
OFOStringStream stream;
/* output first value in hexadecimal format */
stream << STD_NAMESPACE hex << STD_NAMESPACE setfill('0')
<< STD_NAMESPACE setw(4) << *(uint16Vals++);
/* for all other array elements ... */
for (size_t i = 1; i < count; i++)
stream << "\\" << STD_NAMESPACE setw(4) << *(uint16Vals++);
stream << OFStringStream_ends;
/* convert string stream into a character string */
OFSTRINGSTREAM_GETSTR(stream, buffer_str)
stringVal.assign(buffer_str);
OFSTRINGSTREAM_FREESTR(buffer_str)
errorFlag = EC_Normal;
} else
errorFlag = EC_IllegalCall;
} else {
/* get array of 8 bit values */
Uint8 *uint8Vals = OFstatic_cast(Uint8 *, getValue());
const size_t count = OFstatic_cast(size_t, getLength());
if ((uint8Vals != NULL) && (count > 0))
{
OFOStringStream stream;
/* output first value in hexadecimal format */
stream << STD_NAMESPACE hex << STD_NAMESPACE setfill('0')
<< STD_NAMESPACE setw(2) << OFstatic_cast(int, *(uint8Vals++));
/* for all other array elements ... */
for (size_t i = 1; i < count; i++)
stream << "\\" << STD_NAMESPACE setw(2) << OFstatic_cast(int, *(uint8Vals++));
stream << OFStringStream_ends;
/* convert string stream into a character string */
OFSTRINGSTREAM_GETSTR(stream, buffer_str)
stringVal.assign(buffer_str);
OFSTRINGSTREAM_FREESTR(buffer_str)
errorFlag = EC_Normal;
} else
errorFlag = EC_IllegalCall;
}
return errorFlag;
}
// ********************************
OFCondition DcmOtherByteOtherWord::verify(const OFBool autocorrect)
{
errorFlag = EC_Normal;
if (autocorrect)
errorFlag = alignValue();
return errorFlag;
}
// ********************************
OFBool DcmOtherByteOtherWord::canWriteXfer(const E_TransferSyntax newXfer,
const E_TransferSyntax /*oldXfer*/)
{
DcmXfer newXferSyn(newXfer);
return (getTag() != DCM_PixelData) || !newXferSyn.isEncapsulated();
}
// ********************************
OFCondition DcmOtherByteOtherWord::write(
DcmOutputStream &outStream,
const E_TransferSyntax oxfer,
const E_EncodingType enctype,
DcmWriteCache *wcache)
{
if (getTransferState() == ERW_notInitialized)
errorFlag = EC_IllegalCall;
else
{
if (getTransferState() == ERW_init)
{
// if the attribute value is in file, we should call compact() if the write
// operation causes the value to be loaded into main memory, which can happen
// for odd length attributes.
compactAfterTransfer = ! valueLoaded();
// this call may cause the attribute to be loaded into memory
alignValue();
}
// call inherited method
errorFlag = DcmElement::write(outStream, oxfer, enctype, wcache);
}
// if the write operation has completed successfully, call compact if the
// attribute value resided in file prior to the write operation.
if (errorFlag.good() && compactAfterTransfer) compact();
// return error status
return errorFlag;
}
OFCondition DcmOtherByteOtherWord::writeSignatureFormat(
DcmOutputStream &outStream,
const E_TransferSyntax oxfer,
const E_EncodingType enctype,
DcmWriteCache *wcache)
{
if (getTransferState() == ERW_notInitialized)
errorFlag = EC_IllegalCall;
else
{
if (getTransferState() == ERW_init)
{
// if the attribute value is in file, we should call compact() if the write
// operation causes the value to be loaded into main memory, which can happen
// for odd length attributes.
compactAfterTransfer = ! valueLoaded();
// this call may cause the attribute to be loaded into memory
alignValue();
}
// call inherited method
errorFlag = DcmElement::writeSignatureFormat(outStream, oxfer, enctype, wcache);
}
// if the write operation has completed successfully, call compact if the
// attribute value resided in file prior to the write operation.
if (errorFlag.good() && compactAfterTransfer) compact();
// return error status
return errorFlag;
}
// ********************************
OFCondition DcmOtherByteOtherWord::writeXML(STD_NAMESPACE ostream &out,
const size_t flags)
{
/* XML start tag: <element tag="gggg,eeee" vr="XX" ...> */
if (!(flags & DCMTypes::XF_writeBinaryData))
writeXMLStartTag(out, flags, "binary=\"hidden\"");
else if (flags & DCMTypes::XF_encodeBase64)
writeXMLStartTag(out, flags, "binary=\"base64\"");
else
writeXMLStartTag(out, flags, "binary=\"yes\"");
/* write element value (if loaded) */
if (valueLoaded() && (flags & DCMTypes::XF_writeBinaryData))
{
const DcmEVR evr = getTag().getEVR();
/* encode binary data as Base64 */
if (flags & DCMTypes::XF_encodeBase64)
{
Uint8 *byteValues = OFstatic_cast(Uint8 *, getValue());
if ((evr == EVR_OW) || (evr == EVR_lt))
{
/* Base64 encoder requires big endian input data */
swapIfNecessary(EBO_BigEndian, gLocalByteOrder, byteValues, getLengthField(), sizeof(Uint16));
/* update the byte order indicator variable correspondingly */
setByteOrder(EBO_BigEndian);
}
OFStandard::encodeBase64(out, byteValues, OFstatic_cast(size_t, getLengthField()));
} else {
if ((evr == EVR_OW) || (evr == EVR_lt))
{
/* get and check 16 bit data */
Uint16 *wordValues = NULL;
if (getUint16Array(wordValues).good() && (wordValues != NULL))
{
const unsigned long count = getLengthField() / 2;
out << STD_NAMESPACE hex << STD_NAMESPACE setfill('0');
/* print word values in hex mode */
out << STD_NAMESPACE setw(4) << (*(wordValues++));
for (unsigned long i = 1; i < count; i++)
out << "\\" << STD_NAMESPACE setw(4) << (*(wordValues++));
/* reset i/o manipulators */
out << STD_NAMESPACE dec << STD_NAMESPACE setfill(' ');
}
} else {
/* get and check 8 bit data */
Uint8 *byteValues = NULL;
if (getUint8Array(byteValues).good() && (byteValues != NULL))
{
const unsigned long count = getLengthField();
out << STD_NAMESPACE hex << STD_NAMESPACE setfill('0');
/* print byte values in hex mode */
out << STD_NAMESPACE setw(2) << OFstatic_cast(int, *(byteValues++));
for (unsigned long i = 1; i < count; i++)
out << "\\" << STD_NAMESPACE setw(2) << OFstatic_cast(int, *(byteValues++));
/* reset i/o manipulators */
out << STD_NAMESPACE dec << STD_NAMESPACE setfill(' ');
}
}
}
}
/* XML end tag: </element> */
writeXMLEndTag(out, flags);
/* always report success */
return EC_Normal;
}
/*
** CVS/RCS Log:
** $Log: dcvrobow.cc,v $
** Revision 1.64 2010-10-29 10:57:21 joergr
** Added support for colored output to the print() method.
**
** Revision 1.63 2010-10-20 16:44:17 joergr
** Use type cast macros (e.g. OFstatic_cast) where appropriate.
**
** Revision 1.62 2010-10-14 13:14:10 joergr
** Updated copyright header. Added reference to COPYRIGHT file.
**
** Revision 1.61 2010-08-18 14:50:06 joergr
** Revised warning message to indicate that existing pixel data raw files are
** never overwritten.
**
** Revision 1.60 2010-04-23 14:30:34 joergr
** Added new method to all VR classes which checks whether the stored value
** conforms to the VR definition and to the specified VM.
**
** Revision 1.59 2009-12-04 17:07:51 joergr
** Sightly modified some log messages.
**
** Revision 1.58 2009-11-04 09:58:10 uli
** Switched to logging mechanism provided by the "new" oflog module
**
** Revision 1.57 2009-09-15 15:02:31 joergr
** Enhanced implementation of writeXML() by writing hex numbers directly to the
** output stream instead of creating a temporary string first.
**
** Revision 1.56 2009-09-15 10:30:31 joergr
** Removed alternative implementation of getOFStringArray(). Now, always the
** OFStringStream approach is used.
**
** Revision 1.55 2009-09-03 17:22:26 joergr
** Fixed issue with getOFStringArray() when using standard C++ string class.
**
** Revision 1.54 2009-04-30 15:09:34 joergr
** Fixed bug in writeXML(): Used wrong byte order for 16-bit data on systems
** with big endian byte-ordering (wrong parameter order for swapBytes() call).
** Fixed memory leak in putElementContent() for base64 encoded data.
** Avoid swapping the byte-ording back to the original state in printPixel().
** Update the byte order variable in writeXML() and printPixel() if necessary.
**
** Revision 1.53 2008-08-15 09:26:33 meichel
** Under certain conditions (odd length compressed pixel data fragments)
** class DcmOtherByteOtherWord needs to load the attribute value into main
** memory during a write() operation, in order to add a pad byte. A new flag
** compactAfterTransfer now makes sure that the memory is released once the
** write operation has finished, so that only a single fragment at a time
** needs to fully reside in memory.
**
** Revision 1.52 2008-07-17 10:31:32 onken
** Implemented copyFrom() method for complete DcmObject class hierarchy, which
** permits setting an instance's value from an existing object. Implemented
** assignment operator where necessary.
**
** Revision 1.51 2007-11-29 14:30:21 meichel
** Write methods now handle large raw data elements (such as pixel data)
** without loading everything into memory. This allows very large images to
** be sent over a network connection, or to be copied without ever being
** fully in memory.
**
** Revision 1.50 2007/06/29 14:17:49 meichel
** Code clean-up: Most member variables in module dcmdata are now private,
** not protected anymore.
**
** Revision 1.49 2007/06/26 16:24:23 joergr
** Added new variant of encodeBase64() method that outputs directly to a stream
** (avoids using a memory buffer for large binary data).
**
** Revision 1.48 2007/06/07 09:03:18 joergr
** Added createUint8Array() and createUint16Array() methods.
**
** Revision 1.47 2006/10/13 10:11:30 joergr
** Fixed wrong formatting.
**
** Revision 1.46 2006/08/15 15:49:54 meichel
** Updated all code in module dcmdata to correctly compile when
** all standard C++ classes remain in namespace std.
**
** Revision 1.45 2005/12/08 15:41:57 meichel
** Changed include path schema for all DCMTK header files
**
** Revision 1.44 2005/11/15 16:59:25 meichel
** Added new pseudo VR type EVR_lt that is used for LUT Data when read in
** implicit VR, which may be US, SS or OW. DCMTK always treats EVR_lt like OW.
**
** Revision 1.43 2004/02/04 16:49:49 joergr
** Adapted type casts to new-style typecast operators defined in ofcast.h.
** Removed acknowledgements with e-mail addresses from CVS log.
**
** Revision 1.42 2003/04/17 15:59:45 joergr
** Use method OFString::c_str() instead of OFString::operator[] to avoid range
** checking (which implies an "expensive" strlen() call).
**
** Revision 1.41 2002/12/06 13:12:36 joergr
** Enhanced "print()" function by re-working the implementation and replacing
** the boolean "showFullData" parameter by a more general integer flag.
** Made source code formatting more consistent with other modules/files.
**
** Revision 1.40 2002/11/27 12:06:57 meichel
** Adapted module dcmdata to use of new header file ofstdinc.h
**
** Revision 1.39 2002/08/27 16:55:59 meichel
** Initial release of new DICOM I/O stream classes that add support for stream
** compression (deflated little endian explicit VR transfer syntax)
**
** Revision 1.38 2002/07/08 14:44:42 meichel
** Improved dcmdata behaviour when reading odd tag length. Depending on the
** global boolean flag dcmAcceptOddAttributeLength, the parser now either accepts
** odd length attributes or implements the old behaviour, i.e. assumes a real
** length larger by one.
**
** Revision 1.37 2002/05/14 08:22:56 joergr
** Added support for Base64 (MIME) encoded binary data.
**
** Revision 1.36 2002/04/25 10:32:16 joergr
** Added getOFString() implementation.
** Added/modified getOFStringArray() implementation.
** Added support for XML output of DICOM objects.
**
** Revision 1.35 2002/04/16 13:43:25 joergr
** Added configurable support for C++ ANSI standard includes (e.g. streams).
**
** Revision 1.34 2001/10/02 11:48:33 joergr
** Added getUint8/16 routines to class DcmOtherByteOtherWord.
**
** Revision 1.33 2001/09/25 17:19:58 meichel
** Adapted dcmdata to class OFCondition
**
** Revision 1.32 2001/06/01 15:49:18 meichel
** Updated copyright header
**
** Revision 1.31 2000/11/07 16:56:24 meichel
** Initial release of dcmsign module for DICOM Digital Signatures
**
** Revision 1.30 2000/04/14 15:55:09 meichel
** Dcmdata library code now consistently uses ofConsole for error output.
**
** Revision 1.29 2000/03/08 16:26:49 meichel
** Updated copyright header.
**
** Revision 1.28 2000/03/07 15:41:02 joergr
** Added explicit type casts to make Sun CC 2.0.1 happy.
**
** Revision 1.27 2000/03/06 16:08:05 meichel
** Changed a couple of definitions that implied that Uint32 or size_t are long
**
** Revision 1.26 2000/03/03 14:05:39 meichel
** Implemented library support for redirecting error messages into memory
** instead of printing them to stdout/stderr for GUI applications.
**
** Revision 1.25 2000/02/23 15:12:07 meichel
** Corrected macro for Borland C++ Builder 4 workaround.
**
** Revision 1.24 2000/02/10 16:04:59 joergr
** Enhanced handling of PixelData/Item element. Externally stored raw data is
** now always imported as little endian and swapped if necessary. This change
** reflects the new 'export' feature of dcmdump.
**
** Revision 1.23 2000/02/10 10:52:24 joergr
** Added new feature to dcmdump (enhanced print method of dcmdata): write
** pixel data/item value fields to raw files.
**
** Revision 1.22 2000/02/03 16:55:20 joergr
** Avoid EVR_pixelItem in comparisons (compare with != EVR_OW instead).
**
** Revision 1.21 2000/02/03 16:35:58 joergr
** Corrected bug that caused wrong calculation of group length for sequence
** of items (e.g. encapsulated pixel data).
**
** Revision 1.20 2000/02/01 10:12:11 meichel
** Avoiding to include <stdlib.h> as extern "C" on Borland C++ Builder 4,
** workaround for bug in compiler header files.
**
** Revision 1.19 1999/03/31 09:25:55 meichel
** Updated copyright header in module dcmdata
**
** Revision 1.18 1997/07/21 08:11:43 andreas
** - Support for CP 14. PixelData and OverlayData can have VR OW or OB
** (depending on the transfer syntax). New internal value
** representation (only for ident()) for OverlayData.
** - New environment for encapsulated pixel representations. DcmPixelData
** can contain different representations and uses codecs to convert
** between them. Codecs are derived from the DcmCodec class. New error
** codes are introduced for handling of representations. New internal
** value representation (only for ident()) for PixelData
** - Replace all boolean types (BOOLEAN, CTNBOOLEAN, DICOM_BOOL, BOOL)
** with one unique boolean type OFBool.
**
** Revision 1.17 1997/07/07 07:51:35 andreas
** - Changed type for Tag attribute in DcmObject from prointer to value
** - Enhanced (faster) byte swapping routine. swapIfNecessary moved from
** a method in DcmObject to a general function.
**
** Revision 1.16 1997/07/03 15:10:15 andreas
** - removed debugging functions Bdebug() and Edebug() since
** they write a static array and are not very useful at all.
** Cdebug and Vdebug are merged since they have the same semantics.
** The debugging functions in dcmdata changed their interfaces
** (see dcmdata/include/dcdebug.h)
**
** Revision 1.15 1997/06/13 13:07:31 andreas
** - Corrected printing of OW values. The length of the output array was
** computed incorrectly.
**
** Revision 1.14 1997/05/27 13:49:03 andreas
** - Add method canWriteXfer to class DcmObject and all derived classes.
** This method checks whether it is possible to convert the original
** transfer syntax to an new transfer syntax. The check is used in the
** dcmconv utility to prohibit the change of a compressed transfer
** syntax to a uncompressed.
**
** Revision 1.13 1997/05/22 16:54:20 andreas
** - Corrected wrong output length in print routine
**
** Revision 1.12 1997/05/16 08:31:28 andreas
** - Revised handling of GroupLength elements and support of
** DataSetTrailingPadding elements. The enumeratio E_GrpLenEncoding
** got additional enumeration values (for a description see dctypes.h).
** addGroupLength and removeGroupLength methods are replaced by
** computeGroupLengthAndPadding. To support Padding, the parameters of
** element and sequence write functions changed.
**
** Revision 1.11 1997/04/18 08:17:20 andreas
** - The put/get-methods for all VRs did not conform to the C++-Standard
** draft. Some Compilers (e.g. SUN-C++ Compiler, Metroworks
** CodeWarrier, etc.) create many warnings concerning the hiding of
** overloaded get methods in all derived classes of DcmElement.
** So the interface of all value representation classes in the
** library are changed rapidly, e.g.
** OFCondition get(Uint16 & value, const unsigned long pos);
** becomes
** OFCondition getUint16(Uint16 & value, const unsigned long pos);
** All (retired) "returntype get(...)" methods are deleted.
** For more information see dcmdata/include/dcelem.h
**
** Revision 1.10 1997/03/26 17:15:59 hewett
** Added very preliminary support for Unknown VR (UN) described in
** Supplement 14. WARNING: handling of unknown attributes with undefined
** length is not yet supported.
**
** Revision 1.9 1996/08/05 08:46:20 andreas
** new print routine with additional parameters:
** - print into files
** - fix output length for elements
** corrected error in search routine with parameter ESM_fromStackTop
**
** Revision 1.8 1996/05/06 10:22:47 meichel
** Copy constructor now handles case when VR=unknown.
**
** Revision 1.7 1996/04/16 16:05:24 andreas
** - better support und bug fixes for NULL element value
**
** Revision 1.6 1996/03/26 09:59:36 meichel
** corrected bug (deletion of const char *) which prevented compilation on NeXT
**
** Revision 1.5 1996/01/29 13:38:33 andreas
** - new put method for every VR to put value as a string
** - better and unique print methods
**
** Revision 1.4 1996/01/09 11:06:50 andreas
** New Support for Visual C++
** Correct problems with inconsistent const declarations
** Correct error in reading Item Delimitation Elements
**
** Revision 1.3 1996/01/05 13:27:51 andreas
** - changed to support new streaming facilities
** - unique read/write methods for file and block transfer
** - more cleanups
**
** Revision 1.2 1995/11/23 17:03:07 hewett
** Updated for loadable data dictionary. Some cleanup (more to do).
**
*/
|