⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dcistrma.h

📁 转化为DIB位图再显示出来的dicom文件C++代码
💻 H
字号:
/* * *  Copyright (C) 1994-2005, OFFIS * *  This software and supporting documentation were developed by * *    Kuratorium OFFIS e.V. *    Healthcare Information and Communication Systems *    Escherweg 2 *    D-26121 Oldenburg, Germany * *  THIS SOFTWARE IS MADE AVAILABLE,  AS IS,  AND OFFIS MAKES NO  WARRANTY *  REGARDING  THE  SOFTWARE,  ITS  PERFORMANCE,  ITS  MERCHANTABILITY  OR *  FITNESS FOR ANY PARTICULAR USE, FREEDOM FROM ANY COMPUTER DISEASES  OR *  ITS CONFORMITY TO ANY SPECIFICATION. THE ENTIRE RISK AS TO QUALITY AND *  PERFORMANCE OF THE SOFTWARE IS WITH THE USER. * *  Module:  dcmdata * *  Author:  Marco Eichelberg * *  Purpose: base classes for input streams * *  Last Update:      $Author: meichel $ *  Update Date:      $Date: 2005/12/08 16:28:15 $ *  Source File:      $Source: /share/dicom/cvs-depot/dcmtk/dcmdata/include/dcmtk/dcmdata/dcistrma.h,v $ *  CVS/RCS Revision: $Revision: 1.2 $ *  Status:           $State: Exp $ * *  CVS/RCS Log at end of file * */#ifndef DCISTRMA_H#define DCISTRMA_H#include "dcmtk/config/osconfig.h"#include "dcmtk/ofstd/oftypes.h"  /* for OFBool */#include "dcmtk/ofstd/ofcond.h"   /* for OFCondition */#include "dcmtk/dcmdata/dcxfer.h"   /* for E_StreamCompression */class DcmInputStream;/** pure virtual abstract base class for producers, i.e. the initial node  *  of a filter chain in an input stream. */class DcmProducer{public:  /// destructor  virtual ~DcmProducer()  {  }  /** 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 = 0;  /** 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 = 0;  /** returns true if the producer is at the end of stream.   *  @return true if end of stream, false otherwise   */  virtual OFBool eos() const = 0;  /** 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 Uint32 avail() const = 0;  /** 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 Uint32 read(void *buf, Uint32 buflen) = 0;  /** skips over the given number of bytes (or less)   *  @param skiplen number of bytes to skip   *  @return number of bytes actually skipped.    */  virtual Uint32 skip(Uint32 skiplen) = 0;  /** 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(Uint32 num) = 0;};/** pure virtual abstract base class for input filters, i.e.  *  intermediate nodes of a filter chain in an input stream. */class DcmInputFilter: public DcmProducer{public:  /// destructor  virtual ~DcmInputFilter()  {  }  /** determines the producer from which the filter is supposed   *  to read it's input. Once a producer for the input filter has    *  been defined, it cannot be changed anymore during the lifetime   *  of the object.   *  @param producer reference to producer, must not be circular chain   */  virtual void append(DcmProducer& producer) = 0;};/** pure virtual abstract base class for input stream factories, *  i.e. objects that can create a new input stream */class DcmInputStreamFactory{public:  /// destructor  virtual ~DcmInputStreamFactory()  {  }  /** create a new input stream object   *  @return pointer to new input stream object   */  virtual DcmInputStream *create() const = 0;  /** returns a pointer to a copy of this object   */  virtual DcmInputStreamFactory *clone() const = 0;};/** abstract base class for input streams. */class DcmInputStream{public:  /// destructor  virtual ~DcmInputStream();  /** returns the status of the stream. Unless the status is good,   *  the stream will not permit any operation.   *  @return status, true if good   */  virtual OFBool good() const;  /** returns the status of the stream as an OFCondition object.   *  Unless the status is good, the stream 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() const;  /** 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 Uint32 avail() const;  /** 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 Uint32 read(void *buf, Uint32 buflen);  /** skips over the given number of bytes (or less)   *  @param skiplen number of bytes to skip   *  @return number of bytes actually skipped.    */  virtual Uint32 skip(Uint32 skiplen);  /** returns the total number of bytes read from the stream so far   *  @return total number of bytes read from the stream   */  virtual Uint32 tell() const;  /** installs a compression filter for the given stream compression type,   *  which should be neither ESC_none nor ESC_unsupported. Once a compression   *  filter is active, it cannot be deactivated or replaced during the   *  lifetime of the stream.   *  @param filterType type of compression filter   *  @return EC_Normal if successful, an error code otherwise   */  virtual OFCondition installCompressionFilter(E_StreamCompression filterType);  /** 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 = 0;  /** marks the current stream position for a later putback operation,   *  overwriting a possibly existing prior putback mark.   *  The DcmObject read methods rely on the possibility to putback   *  up to 132 bytes for transfer syntax detection, parse error recovery etc.   *  Implementations of this class should guarantee a putback capability   *  of at least 1 kbyte.   */  virtual void mark();  /** resets the stream to the position previously marked with   *  setPutbackMark(). If the putback operation fails (no putback mark    *  set or putback buffer exceeded), status of the producer switches to bad.   */  virtual void putback();protected:  /** protected constructor, to be called from derived class constructor   *  @param initial initial pointer to first node in filter chain   *     The pointer is not dereferenced in the constructor, so the   *     object pointed to may be initialized later in the subclass   *     constructor.   */  DcmInputStream(DcmProducer *initial);  /** returns pointer to current producer object   */  const DcmProducer *currentProducer() const;private:  /// private unimplemented copy constructor  DcmInputStream(const DcmInputStream&);  /// private unimplemented copy assignment operator  DcmInputStream& operator=(const DcmInputStream&);  /// pointer to first node in filter chain  DcmProducer *current_;  /// pointer to compression filter, NULL if no compression  DcmInputFilter *compressionFilter_;  /// counter for number of bytes read so far  Uint32 tell_;  /// putback marker  Uint32 mark_;};#endif/* * CVS/RCS Log: * $Log: dcistrma.h,v $ * Revision 1.2  2005/12/08 16:28:15  meichel * Changed include path schema for all DCMTK header files * * Revision 1.1  2002/08/27 16:55:32  meichel * Initial release of new DICOM I/O stream classes that add support for stream *   compression (deflated little endian explicit VR transfer syntax) * * */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -