StackBuffer.h
上传用户:weiyuanprp
上传日期:2020-05-20
资源大小:1169k
文件大小:3k
源码类别:

传真(Fax)编程

开发平台:

C/C++

  1. /* $Id: StackBuffer.h,v 1.1.1.1 2005/11/11 21:32:03 faxguy Exp $ */
  2. /*
  3.  * Copyright (c) 1990-1996 Sam Leffler
  4.  * Copyright (c) 1991-1996 Silicon Graphics, Inc.
  5.  * HylaFAX is a trademark of Silicon Graphics
  6.  *
  7.  * Permission to use, copy, modify, distribute, and sell this software and 
  8.  * its documentation for any purpose is hereby granted without fee, provided
  9.  * that (i) the above copyright notices and this permission notice appear in
  10.  * all copies of the software and related documentation, and (ii) the names of
  11.  * Sam Leffler and Silicon Graphics may not be used in any advertising or
  12.  * publicity relating to the software without the specific, prior written
  13.  * permission of Sam Leffler and Silicon Graphics.
  14.  * 
  15.  * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
  16.  * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
  17.  * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
  18.  * 
  19.  * IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
  20.  * ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
  21.  * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  22.  * WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 
  23.  * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 
  24.  * OF THIS SOFTWARE.
  25.  */
  26. #ifndef _StackBuffer_
  27. #define _StackBuffer_
  28. #include "Types.h"
  29. #include <stdarg.h>
  30. class fxStr;
  31. /*
  32.  * A growable buffer of characters, designed to be used
  33.  * on the cpu stack.  It contains an internal buffer, and
  34.  * avoids allocating memory from freestore, unless the
  35.  * buffer is insufficient to the task at hand.
  36.  */
  37. class fxStackBuffer {
  38. public:
  39.     fxStackBuffer(u_int amountToGrowBy = 0);
  40.     fxStackBuffer(const fxStackBuffer& sb);
  41.     ~fxStackBuffer();
  42.     void put(char c); // Put the character "c" into the buffer
  43.     void put(char const* c, u_int len); // Put bunch of bytes in the buffer
  44.     void put(char const* c);
  45.     void put(const fxStr&);
  46.     void fput(const char* fmt ...);
  47.     void vput(const char* fmt, va_list ap);
  48.     void set(char c); // Stick in char w/o extending length
  49.     void reset(); // Reset buffer to empty
  50.     u_int getLength() const; // Return number of bytes in buffer
  51.     // NB: the buffer is *NOT* null terminated, unless you put one there.
  52.     operator const char*() const; // Return base of buffer
  53.     operator const u_char*() const;// Return base of buffer
  54.     char& operator[](u_int i) const; // Return character in buffer
  55.     char& operator[](int i) const; // Return character in buffer
  56.     fxStackBuffer& operator=(const fxStackBuffer&);
  57. protected:
  58.     char buf[1000];
  59.     char* next;
  60.     char* end;
  61.     char* base;
  62.     u_int amountToGrowBy;
  63.     void addc(char c); // make room & add a char to the buffer
  64.     void grow(u_int amount); // make more room in the buffer
  65. };
  66. inline void fxStackBuffer::put(char c)
  67.     { if (next < end) *next++ = c; else addc(c); }
  68. inline void fxStackBuffer::put(char const* c) { put(c, strlen(c)); }
  69. inline void fxStackBuffer::set(char c) { put(c); next--; }
  70. inline void fxStackBuffer::reset() { next = base; }
  71. inline fxStackBuffer::operator const char*() const
  72.     { return base; }
  73. inline fxStackBuffer::operator const u_char*() const
  74.     { return (u_char*)base; }
  75. inline u_int fxStackBuffer::getLength() const { return next - base; }
  76. inline char& fxStackBuffer::operator[](u_int ix) const { return base[ix]; }
  77. inline char& fxStackBuffer::operator[](int ix) const   { return base[ix]; }
  78. #endif /* _StackBuffer_ */