/usr/include/dcmtk/dcmdata/dcwcache.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 | /*
*
* Copyright (C) 2007-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: Marco Eichelberg
*
* Purpose: file cache facility for DcmElement::getPartialValue
*
* Last Update: $Author: joergr $
* Update Date: $Date: 2010-10-14 13:15:43 $
* CVS/RCS Revision: $Revision: 1.4 $
* Status: $State: Exp $
*
* CVS/RCS Log at end of file
*
*/
#ifndef DCWCACHE_H
#define DCWCACHE_H
#include "dcmtk/config/osconfig.h" /* make sure OS specific configuration is included first */
#include "dcmtk/ofstd/oftypes.h" /* for Uint8 */
#include "dcmtk/dcmdata/dcfcache.h" /* for class DcmFileCache */
class DcmElement;
class DcmOutputStream;
#define DcmWriteCacheBufsize 65536 /* buffer size, in bytes */
/** This class implements a buffering mechanism that is used when writing large
* elements that reside in file into an output stream. DcmElement::getPartialValue
* is used to fill the buffer maintained by this class, and the buffer content
* is then copied to the output stream. The intermediate buffer is necessary
* because both DcmElement::getPartialValue and DcmOutputStream::write expect
* a buffer to write to and read from, respectively.
*/
class DcmWriteCache
{
public:
/// default constructor. Construction is cheap (no allocation of memory block).
DcmWriteCache()
: fcache_()
, buf_(NULL)
, owner_(NULL)
, offset_(0)
, numBytes_(0)
, capacity_(0)
, fieldLength_(0)
, fieldOffset_(0)
, byteOrder_(EBO_unknown)
{
}
/// destructor
~DcmWriteCache()
{
delete[] buf_;
}
/** initialize the buffer maintained by this class. Can safely be called multiple times.
* @param owner current "owner" (DcmElement instance using this buffer)
* @param fieldLength number of bytes of user data in DICOM element
* @param bytesTransferred number of bytes of user data in DICOM element that have already been transferred
* @param byteOrder byteOrder desired byte order in buffer
*/
void init(void *owner, Uint32 fieldLength, Uint32 bytesTransferred, E_ByteOrder byteOrder);
/** check whether the buffer is currently empty
* @return true if buffer is empty, false otherwise
*/
OFBool bufferIsEmpty() const { return (numBytes_ == 0); }
/** return the number of bytes of user data currently in buffer
* @return number of bytes of user data currently in buffer
*/
Uint32 contentLength() const { return numBytes_; }
/** fill buffer from given DICOM element if buffer is currently empty.
* This method uses DcmElement::getPartialValue to fill the buffer from the given
* DICOM element at the given offset (which is updated to reflect the number of bytes
* read into the buffer).
* @param elem DICOM element to read from
* @return EC_Normal if successful, an error code otherwise
*/
OFCondition fillBuffer(DcmElement& elem);
/** write buffer content to output stream
* @param outStream output stream to write to
* @return number of bytes written
*/
Uint32 writeBuffer(DcmOutputStream &outStream);
private:
/// private undefined copy constructor
DcmWriteCache(const DcmWriteCache& arg);
/// private undefined copy assignment operator
DcmWriteCache& operator=(const DcmWriteCache& arg);
/// file cache object
DcmFileCache fcache_;
/// write buffer
Uint8 *buf_;
/// current "owner" (DcmElement instance using this buffer)
void *owner_;
/// offset within buffer to first byte
Uint32 offset_;
/// number of user data bytes currently in buffer
Uint32 numBytes_;
/// buffer size in bytes
Uint32 capacity_;
/// length of the current DICOM element, in bytes
Uint32 fieldLength_;
/// offset within the current DICOM element, in bytes
Uint32 fieldOffset_;
/// current output byte order
E_ByteOrder byteOrder_;
};
#endif
/*
* CVS/RCS Log:
* $Log: dcwcache.h,v $
* Revision 1.4 2010-10-14 13:15:43 joergr
* Updated copyright header. Added reference to COPYRIGHT file.
*
* Revision 1.3 2009-02-25 12:58:55 joergr
* Removed wrong comment (apparently copied from other class).
*
* Revision 1.2 2009-02-04 17:54:31 joergr
* Fixed various layout and formatting issues.
*
* Revision 1.1 2007-11-29 14:30:18 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.
*
*
*/
|