/usr/include/dcmtk/dcmdata/dcistrmf.h is in libdcmtk2-dev 3.6.0-9.
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 | /*
*
* 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: Marco Eichelberg
*
* Purpose: DcmInputFileStream and related classes,
* implements streamed input from files.
*
* Last Update: $Author: joergr $
* Update Date: $Date: 2010-10-14 13:15:41 $
* CVS/RCS Revision: $Revision: 1.9 $
* Status: $State: Exp $
*
* CVS/RCS Log at end of file
*
*/
#ifndef DCISTRMF_H
#define DCISTRMF_H
#include "dcmtk/config/osconfig.h"
#include "dcmtk/dcmdata/dcistrma.h"
/** producer class that reads data from a plain file.
*/
class DcmFileProducer: public DcmProducer
{
public:
/** constructor
* @param filename name of file to be opened, must not be NULL or empty
* @param offset byte offset to skip from the start of file
*/
DcmFileProducer(const char *filename, offile_off_t offset = 0);
/// destructor
virtual ~DcmFileProducer();
/** returns the status of the producer. Unless the status is good,
* the producer will not permit any operation.
* @return status, true if good
*/
virtual OFBool good() const;
/** returns the status of the producer as an OFCondition object.
* Unless the status is good, the producer will not permit any operation.
* @return status, EC_Normal if good
*/
virtual OFCondition status() const;
/** returns true if the producer is at the end of stream.
* @return true if end of stream, false otherwise
*/
virtual OFBool eos();
/** returns the minimum number of bytes that can be read with the
* next call to read(). The DcmObject read methods rely on avail
* to return a value > 0 if there is no I/O suspension since certain
* data such as tag and length are only read "en bloc", i.e. all
* or nothing.
* @return minimum of data available in producer
*/
virtual offile_off_t avail();
/** reads as many bytes as possible into the given block.
* @param buf pointer to memory block, must not be NULL
* @param buflen length of memory block
* @return number of bytes actually read.
*/
virtual offile_off_t read(void *buf, offile_off_t buflen);
/** skips over the given number of bytes (or less)
* @param skiplen number of bytes to skip
* @return number of bytes actually skipped.
*/
virtual offile_off_t skip(offile_off_t skiplen);
/** resets the stream to the position by the given number of bytes.
* @param num number of bytes to putback. If the putback operation
* fails, the producer status becomes bad.
*/
virtual void putback(offile_off_t num);
private:
/// private unimplemented copy constructor
DcmFileProducer(const DcmFileProducer&);
/// private unimplemented copy assignment operator
DcmFileProducer& operator=(const DcmFileProducer&);
/// the file we're actually reading from
OFFile file_;
/// status
OFCondition status_;
/// number of bytes in file
offile_off_t size_;
};
/** input stream factory for plain files
*/
class DcmInputFileStreamFactory: public DcmInputStreamFactory
{
public:
/** constructor
* @param filename name of file to be opened, must not be NULL or empty
* @param offset byte offset to skip from the start of file
*/
DcmInputFileStreamFactory(const char *filename, offile_off_t offset);
/// copy constructor
DcmInputFileStreamFactory(const DcmInputFileStreamFactory &arg);
/// destructor
virtual ~DcmInputFileStreamFactory();
/** create a new input stream object
* @return pointer to new input stream object
*/
virtual DcmInputStream *create() const;
/** returns a pointer to a copy of this object
*/
virtual DcmInputStreamFactory *clone() const
{
return new DcmInputFileStreamFactory(*this);
}
private:
/// private unimplemented copy assignment operator
DcmInputFileStreamFactory& operator=(const DcmInputFileStreamFactory&);
/// filename
OFString filename_;
/// offset in file
offile_off_t offset_;
};
/** input stream that reads from a plain file
*/
class DcmInputFileStream: public DcmInputStream
{
public:
/** constructor
* @param filename name of file to be opened, must not be NULL or empty
* @param offset byte offset to skip from the start of file
*/
DcmInputFileStream(const char *filename, offile_off_t offset = 0);
/// destructor
virtual ~DcmInputFileStream();
/** creates a new factory object for the current stream
* and stream position. When activated, the factory will be
* able to create new DcmInputStream delivering the same
* data as the current stream. Used to defer loading of
* value fields until accessed.
* If no factory object can be created (e.g. because the
* stream is not seekable), returns NULL.
* @return pointer to new factory object if successful, NULL otherwise.
*/
virtual DcmInputStreamFactory *newFactory() const;
private:
/// private unimplemented copy constructor
DcmInputFileStream(const DcmInputFileStream&);
/// private unimplemented copy assignment operator
DcmInputFileStream& operator=(const DcmInputFileStream&);
/// the final producer of the filter chain
DcmFileProducer producer_;
/// filename
OFString filename_;
};
/** class that manages the life cycle of a temporary file.
* It maintains a thread-safe reference counter, and when this counter
* is decreased to zero, unlinks (deletes) the file and then the handler
* object itself.
*/
class DcmTempFileHandler
{
public:
/** static method that permits creation of instances of
* this class (only) on the heap, never on the stack.
* A newly created instance always has a reference counter of 1.
* @param fname path to temporary file
*/
static DcmTempFileHandler *newInstance(const char *fname);
/** create an input stream that permits reading from the temporary file
* @return pointer to input stream. Note that there is no guarantee
* that the input stream actually permits reading, i.e. the presence of the
* temporary file is not checked.
*/
DcmInputStream *create() const;
/// increase reference counter for this object
void increaseRefCount();
/** decreases reference counter for this object and deletes
* the temporary file and this object if the reference counter becomes zero.
*/
void decreaseRefCount();
private:
/** private constructor.
* Instances of this class are always created through newInstance().
* @param fname path to temporary file
*/
DcmTempFileHandler(const char *fname);
/** private destructor. Instances of this class
* are always deleted through the reference counting methods
*/
virtual ~DcmTempFileHandler();
/// private undefined copy constructor
DcmTempFileHandler(const DcmTempFileHandler& arg);
/// private undefined copy assignment operator
DcmTempFileHandler& operator=(const DcmTempFileHandler& arg);
/** number of references to temporary file.
* Default initialized to 1 upon construction of this object
*/
size_t refCount_;
#ifdef WITH_THREADS
/// mutex for MT-safe reference counting
OFMutex mutex_;
#endif
/// path to temporary file
OFString filename_;
};
/** input stream factory for temporary file handlers
*/
class DcmInputTempFileStreamFactory: public DcmInputStreamFactory
{
public:
/** constructor
* @param handler pointer to temporary file handler.
* Reference counter of temporary file handler is increased by this operation.
*/
DcmInputTempFileStreamFactory(DcmTempFileHandler *handler);
/// copy constructor
DcmInputTempFileStreamFactory(const DcmInputTempFileStreamFactory &arg);
/// destructor, decreases reference counter of temporary file handler
virtual ~DcmInputTempFileStreamFactory();
/** create a new input stream object
* @return pointer to new input stream object
*/
virtual DcmInputStream *create() const;
/** returns a pointer to a copy of this object
*/
virtual DcmInputStreamFactory *clone() const;
private:
/// private unimplemented copy assignment operator
DcmInputTempFileStreamFactory& operator=(const DcmInputTempFileStreamFactory&);
/// handler for temporary file
DcmTempFileHandler *fileHandler_;
};
#endif
/*
* CVS/RCS Log:
* $Log: dcistrmf.h,v $
* Revision 1.9 2010-10-14 13:15:41 joergr
* Updated copyright header. Added reference to COPYRIGHT file.
*
* Revision 1.8 2010-10-04 14:44:39 joergr
* Replaced "#ifdef _REENTRANT" by "#ifdef WITH_THREADS" where appropriate (i.e.
* in all cases where OFMutex, OFReadWriteLock, etc. are used).
*
* Revision 1.7 2010-03-01 09:08:44 uli
* Removed some unnecessary include directives in the headers.
*
* Revision 1.6 2009-11-04 09:58:07 uli
* Switched to logging mechanism provided by the "new" oflog module
*
* Revision 1.5 2008-05-29 10:39:43 meichel
* Implemented new classes DcmTempFileHandler and DcmInputTempFileStreamFactory
* that perform thread-safe reference counted life cycle management of a
* temporary file and are needed for DcmElement temporary file extensions to come.
*
* Revision 1.4 2007/02/19 15:45:41 meichel
* Class DcmInputStream and related classes are now safe for use with
* large files (2 GBytes or more) if supported by compiler and operating system.
*
* Revision 1.3 2005/12/08 16:28:17 meichel
* Changed include path schema for all DCMTK header files
*
* Revision 1.2 2002/11/27 12:07:21 meichel
* Adapted module dcmdata to use of new header file ofstdinc.h
*
* Revision 1.1 2002/08/27 16:55:33 meichel
* Initial release of new DICOM I/O stream classes that add support for stream
* compression (deflated little endian explicit VR transfer syntax)
*
*
*/
|