/usr/include/dcmtk/dcmdata/dcbytstr.h is in libdcmtk2-dev 3.6.0-15.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*
*
* 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: Interface of class DcmByteString
*
* Last Update: $Author: joergr $
* Update Date: $Date: 2010-11-05 09:34:11 $
* CVS/RCS Revision: $Revision: 1.46 $
* Status: $State: Exp $
*
* CVS/RCS Log at end of file
*
*/
#ifndef DCBYTSTR_H
#define DCBYTSTR_H
#include "dcmtk/config/osconfig.h" /* make sure OS specific configuration is included first */
#include "dcmtk/dcmdata/dctypes.h"
#include "dcmtk/dcmdata/dcelem.h"
#include "dcmtk/ofstd/ofstring.h"
/** base class for all DICOM value representations storing a character string
*/
class DcmByteString: public DcmElement
{
/// internal type used to specify the current string representation
enum E_StringMode
{
/// string has internal representation (no padding)
DCM_MachineString,
/// string has DICOM representation (even length)
DCM_DicomString,
/// string has unknown representation (maybe multiple padding chars?)
DCM_UnknownString
};
public:
/** constructor.
* Create new element from given tag and length.
* @param tag DICOM tag for the new element
* @param len value length for the new element
*/
DcmByteString(const DcmTag &tag,
const Uint32 len = 0);
/** copy constructor
* @param old element to be copied
*/
DcmByteString(const DcmByteString &old);
/** destructor
*/
virtual ~DcmByteString();
/** assignment operator
* @param obj element to be assigned/copied
* @return reference to this object
*/
DcmByteString& operator=(const DcmByteString& obj);
/** clone method
* @return deep copy of this object
*/
virtual DcmObject *clone() const
{
return new DcmByteString(*this);
}
/** Virtual object copying. This method can be used for DcmObject
* and derived classes to get a deep copy of an object. Internally
* the assignment operator is called if the given DcmObject parameter
* is of the same type as "this" object instance. If not, an error
* is returned. This function permits copying an object by value
* in a virtual way which therefore is different to just calling the
* assignment operator of DcmElement which could result in slicing
* the object.
* @param rhs - [in] The instance to copy from. Has to be of the same
* class type as "this" object
* @return EC_Normal if copying was successful, error otherwise
*/
virtual OFCondition copyFrom(const DcmObject& rhs);
/** get element type identifier
* @return type identifier of this class (EVR_UNKNOWN)
*/
virtual DcmEVR ident() const;
/** clear the currently stored value
* @return status, EC_Normal if successful, an error code otherwise
*/
virtual OFCondition clear();
/** get value multiplicity
* @return number of string components (separated by a backslash)
*/
virtual unsigned long getVM();
/** get length of the stored value.
* Trailing spaces (padding characters) are ignored for the "real" length.
* @return number of characters stored for the string value
*/
Uint32 getRealLength();
/** get DICOM length of the stored value.
* The string value is padded if required. Therefore, the returned length
* always has an even value.
* @param xfer not used
* @param enctype not used
* @return number of characters stored in DICOM representation
*/
virtual Uint32 getLength(const E_TransferSyntax xfer = EXS_LittleEndianImplicit,
const E_EncodingType enctype = EET_UndefinedLength);
/** print element to a stream.
* The output format of the value is a backslash separated sequence of string
* components (if any).
* @param out output stream
* @param flags optional flag used to customize the output (see DCMTypes::PF_xxx)
* @param level current level of nested items. Used for indentation.
* @param pixelFileName not used
* @param pixelCounter not used
*/
virtual void print(STD_NAMESPACE ostream&out,
const size_t flags = 0,
const int level = 0,
const char *pixelFileName = NULL,
size_t *pixelCounter = NULL);
/** write data element to a stream
* @param outStream output stream
* @param oxfer transfer syntax used to write the data
* @param enctype flag, specifying the encoding with undefined or explicit length
* @param wcache pointer to write cache object, may be NULL
*/
virtual OFCondition write(DcmOutputStream &outStream,
const E_TransferSyntax oxfer,
const E_EncodingType enctype,
DcmWriteCache *wcache);
/** write data element to a stream as required for the creation of digital signatures
* @param outStream output stream
* @param oxfer transfer syntax used to write the data
* @param enctype flag, specifying the encoding with undefined or explicit length
* @param wcache pointer to write cache object, may be NULL
*/
virtual OFCondition writeSignatureFormat(
DcmOutputStream &outStream,
const E_TransferSyntax oxfer,
const E_EncodingType enctype,
DcmWriteCache *wcache);
/** get a copy of a particular string component
* @param stringVal variable in which the result value is stored
* @param pos index of the value in case of multi-valued elements (0..vm-1)
* @param normalize not used since string normalization depends on value representation
* @return status, EC_Normal if successful, an error code otherwise
*/
virtual OFCondition getOFString(OFString &stringVal,
const unsigned long pos,
OFBool normalize = OFTrue);
/** get a pointer to the current string value.
* This includes all string components and separators. NB: this method does
* not copy the stored value.
* @param stringVal reference to the pointer variable
* @return status, EC_Normal if successful, an error code otherwise
*/
virtual OFCondition getString(char *&stringVal);
/** set element value from the given character string
* @param stringVal input character string (possibly multi-valued)
* @return status, EC_Normal if successful, an error code otherwise
*/
virtual OFCondition putString(const char *stringVal);
/** set element value from the given character string.
* @param stringVal input character string (possibly multi-valued)
* @return status, EC_Normal if successful, an error code otherwise
*/
virtual OFCondition putOFStringArray(const OFString &stringVal);
/** check the currently stored string value.
* Checks every string component for the maximum length specified for the particular
* value representation.
* @param autocorrect correct value and value component length if OFTrue
* @return status, EC_Normal if value length is correct, an error code otherwise
*/
virtual OFCondition verify(const OFBool autocorrect = OFFalse);
/** check if this element contains non-ASCII characters
* @param checkAllStrings if true, also check elements with string values not affected
* by SpecificCharacterSet (0008,0005), default: only check PN, LO, LT, SH, ST, UT
* @return true if element contains non-ASCII characters, false otherwise
*/
virtual OFBool containsExtendedCharacters(const OFBool checkAllStrings = OFFalse);
/** check if this element is affected by SpecificCharacterSet
* @return always returns false
*/
virtual OFBool isAffectedBySpecificCharacterSet() const;
/** check if this object is empty
* @param normalize normalize value before checking (ignore non-significant characters)
* @return true if object is empty, i.e. has no value, false otherwise
*/
virtual OFBool isEmpty(const OFBool normalize = OFTrue);
protected:
/** create a new value field (string buffer) of the previously defined size
* (member variable 'Length'). Also handles odd value length by allocating
* extra space for the padding character.
* This method is used by derived classes only.
* @return pointer to the newly created value field
*/
virtual Uint8 *newValueField();
/** method is called after the element value has been loaded.
* Can be used to correct the value before it is used for the first time.
*/
virtual void postLoadValue();
/** convert currently stored string value to internal representation.
* It removes any trailing space character and recomputes the string length.
* @return status, EC_Normal if successful, an error code otherwise
*/
virtual OFCondition makeMachineByteString();
/** convert currently stored string value to DICOM representation.
* It removes trailing spaces apart from a possibly required single padding
* character (in case of odd string length).
* @return status, EC_Normal if successful, an error code otherwise
*/
OFCondition makeDicomByteString();
/** get a copy of the current string value.
* This includes all string components and separators.
* @param stringVal variable in which the result is stored
* @return status, EC_Normal if successful, an error code otherwise
*/
OFCondition getStringValue(OFString &stringVal);
/** set the end-of-string padding character
* @param c end-of-string padding character
*/
void setPaddingChar(char c) { paddingChar = c; }
/** set the maximum number of characters for each string component
* @param val maximum number of characters for each string component
*/
void setMaxLength(Uint32 val) { maxLength = val; }
/** set non-significant characters used to determine whether the value is empty
* @param characters non-significant characters used to determine whether the value is empty
*/
void setNonSignificantChars(const OFString &characters) { nonSignificantChars = characters; }
/* --- static helper functions --- */
/** check whether given string value conforms to a certain VR and VM.
* @param value string value to be checked (possibly multi-valued)
* @param vm value multiplicity (according to the data dictionary) to be checked for.
* (valid values: "1", "1-2", "1-3", "1-8", "1-99", "1-n", "2", "2-n", "2-2n",
* "3", "3-n", "3-3n", "4", "6", "9", "16", "32" or "" for no check)
* @param vr two-character identifier of the VR to be checked (lower case)
* @param vrID expected numeric identifier of the VR
* @param maxLen maximum number of characters allowed for a single value (0 = no check)
* @return status of the check, EC_Normal if value is correct, an error code otherwise
*/
static OFCondition checkStringValue(const OFString &value,
const OFString &vm,
const OFString &vr,
const int vrID,
const size_t maxLen = 0);
private:
/// padding character used to adjust odd value length (space)
char paddingChar;
/// maximum number of characters for each string component
Uint32 maxLength;
/// number of characters of the internal string representation
Uint32 realLength;
/// current representation of the string value
E_StringMode fStringMode;
/// non significant characters used to determine whether the value is empty
OFString nonSignificantChars;
};
/** @name string normalization flags.
* These flags can be used with normalizeString() to specify the extent of normalization.
*/
//@{
/// delete trailing spaces
const OFBool DELETE_TRAILING = OFTrue;
/// delete leading spaces
const OFBool DELETE_LEADING = OFTrue;
/// handle string as multi-valued (components separated by a backslash)
const OFBool MULTIPART = OFTrue;
//@}
/* Function to get part out of a String for VM > 1 */
/** extract particular component from a string value.
* String components are expected to be separated by a backslash character ('\').
* @param result reference to the result variable
* @param orgStr input string value
* @param pos index of the string component to be extracted (0..vm-1)
* @return status, EC_Normal if successful, an error code otherwise
*/
OFCondition getStringPart(OFString &result,
const char *orgStr,
const unsigned long pos);
/** normalize the given string value, i.e. remove leading and/or trailing spaces
* @param string input and output string value to be normalized
* @param multiPart handle string as multi-valued if OFTrue
* @param leading delete leading spaces if OFTrue
* @param trailing delete trailing spaces if OFTrue
*/
void normalizeString(OFString &string,
const OFBool multiPart,
const OFBool leading,
const OFBool trailing);
#endif // DCBYTSTR_H
/*
** CVS/RCS Log:
** $Log: dcbytstr.h,v $
** Revision 1.46 2010-11-05 09:34:11 joergr
** Added support for checking the value multiplicity "9" (see Supplement 131).
**
** Revision 1.45 2010-10-14 13:15:40 joergr
** Updated copyright header. Added reference to COPYRIGHT file.
**
** Revision 1.44 2010-04-23 14:29:28 joergr
** Renamed static helper function checkValue() to checkStringValue().
**
** Revision 1.43 2010-04-22 09:01:18 joergr
** Added support for further VM values ("1-8", "1-99", "16", "32") to be checked.
**
** Revision 1.42 2010-02-22 11:39:53 uli
** Remove some unneeded includes.
**
** Revision 1.41 2009-08-07 14:40:38 joergr
** Enhanced isEmpty() method by checking whether the data element value consists
** of non-significant characters only.
**
** Revision 1.40 2009-08-03 09:05:29 joergr
** Added methods that check whether a given string value conforms to the VR and
** VM definitions of the DICOM standards.
**
** Revision 1.39 2008-07-17 11:19:48 onken
** Updated copyFrom() documentation.
**
** Revision 1.38 2008-07-17 10:30:22 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.37 2008-06-23 12:09:13 joergr
** Fixed inconsistencies in Doxygen API documentation.
**
** Revision 1.36 2007/11/29 14:30:19 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.35 2007/06/29 14:17:49 meichel
** Code clean-up: Most member variables in module dcmdata are now private,
** not protected anymore.
**
** Revision 1.34 2006/12/15 14:18:07 joergr
** Added new method that checks whether a DICOM object or element is affected
** by SpecificCharacterSet (0008,0005).
**
** Revision 1.33 2006/12/13 13:58:15 joergr
** Added new optional parameter "checkAllStrings" to method containsExtended
** Characters().
**
** Revision 1.32 2006/11/08 17:00:06 meichel
** Added DcmByteString::containsExtendedCharacters
**
** Revision 1.31 2006/08/15 15:49:56 meichel
** Updated all code in module dcmdata to correctly compile when
** all standard C++ classes remain in namespace std.
**
** Revision 1.30 2005/12/08 16:27:59 meichel
** Changed include path schema for all DCMTK header files
**
** Revision 1.29 2004/07/01 12:28:25 meichel
** Introduced virtual clone method for DcmObject and derived classes.
**
** Revision 1.28 2003/07/04 13:25:35 meichel
** Replaced forward declarations for OFString with explicit includes,
** needed when compiling with HAVE_STD_STRING
**
** Revision 1.27 2003/06/12 13:35:54 joergr
** Fixed inconsistent API documentation reported by Doxygen.
**
** Revision 1.26 2002/12/10 17:41:22 meichel
** Removed typedef to avoid warnings on various compilers
**
** Revision 1.25 2002/12/06 12:49:07 joergr
** Enhanced "print()" function by re-working the implementation and replacing
** the boolean "showFullData" parameter by a more general integer flag.
** Added doc++ documentation.
** Made source code formatting more consistent with other modules/files.
**
** Revision 1.24 2002/08/27 16:55:30 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.23 2002/04/25 10:05:14 joergr
** Removed getOFStringArray() implementation.
** Made makeMachineByteString() virtual to avoid ambiguities.
**
** Revision 1.22 2001/09/25 17:19:24 meichel
** Adapted dcmdata to class OFCondition
**
** Revision 1.21 2001/06/01 15:48:33 meichel
** Updated copyright header
**
** Revision 1.20 2000/11/07 16:56:05 meichel
** Initial release of dcmsign module for DICOM Digital Signatures
**
** Revision 1.19 2000/04/14 15:31:31 meichel
** Removed default value from output stream passed to print() method.
** Required for use in multi-thread environments.
**
** Revision 1.18 2000/03/08 16:26:11 meichel
** Updated copyright header.
**
** Revision 1.17 2000/03/03 14:05:22 meichel
** Implemented library support for redirecting error messages into memory
** instead of printing them to stdout/stderr for GUI applications.
**
** Revision 1.16 2000/02/10 10:50:49 joergr
** Added new feature to dcmdump (enhanced print method of dcmdata): write
** pixel data/item value fields to raw files.
**
** Revision 1.15 1999/03/31 09:24:30 meichel
** Updated copyright header in module dcmdata
**
** Revision 1.14 1998/11/12 16:47:36 meichel
** Implemented operator= for all classes derived from DcmObject.
**
** Revision 1.13 1997/09/11 15:13:09 hewett
** Modified getOFString method arguments by removing a default value
** for the pos argument. By requiring the pos argument to be provided
** ensures that callers realise getOFString only gets one component of
** a multi-valued string.
**
** Revision 1.12 1997/08/29 13:11:38 andreas
** Corrected Bug in getOFStringArray Implementation
**
** Revision 1.11 1997/08/29 08:32:37 andreas
** - Added methods getOFString and getOFStringArray for all
** string VRs. These methods are able to normalise the value, i. e.
** to remove leading and trailing spaces. This will be done only if
** it is described in the standard that these spaces are not relevant.
** These methods do not test the strings for conformance, this means
** especially that they do not delete spaces where they are not allowed!
** getOFStringArray returns the string with all its parts separated by \
** and getOFString returns only one value of the string.
** CAUTION: Currently getString returns a string with trailing
** spaces removed (if dcmEnableAutomaticInputDataCorrection == OFTrue) and
** truncates the original string (since it is not copied!). If you rely on this
** behaviour please change your application now.
** Future changes will ensure that getString returns the original
** string from the DICOM object (NULL terminated) inclusive padding.
** Currently, if you call getOF... before calling getString without
** normalisation, you can get the original string read from the DICOM object.
**
** Revision 1.10 1997/07/21 08:25:05 andreas
** - Replace all boolean types (BOOLEAN, CTNBOOLEAN, DICOM_BOOL, BOOL)
** with one unique boolean type OFBool.
**
** Revision 1.9 1997/05/16 08:31:19 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.8 1997/04/18 08:13:28 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.7 1996/08/05 08:45:15 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.6 1996/03/12 15:26:52 hewett
** Removed get method for unsigned char*
**
** Revision 1.5 1996/01/29 13:38:11 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:13 andreas
** New Support for Visual C++
** Correct problems with inconsistent const declarations
**
** Revision 1.3 1996/01/05 13:22:52 andreas
** - changed to support new streaming facilities
** - more cleanups
** - merged read / write methods for block and file transfer
**
*/
|