home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / zip / gnu / gxxinc.lzh / GXXINC / STREAMBU.H < prev    next >
C/C++ Source or Header  |  1991-07-31  |  6KB  |  243 lines

  1. // This may look like C code, but it is really -*- C++ -*-
  2. /* 
  3. Copyright (C) 1988 Free Software Foundation
  4.     written by Doug Lea (dl@rocky.oswego.edu)
  5.  
  6. This file is part of GNU CC.
  7.  
  8. GNU CC is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY.  No author or distributor
  10. accepts responsibility to anyone for the consequences of using it
  11. or for whether it serves any particular purpose or works at all,
  12. unless he says so in writing.  Refer to the GNU CC General Public
  13. License for full details.
  14.  
  15. Everyone is granted permission to copy, modify and redistribute
  16. GNU CC, but only under the conditions described in the
  17. GNU CC General Public License.   A copy of this license is
  18. supposed to have been given to you along with GNU CC so you
  19. can know your rights and responsibilities.  It should be in a
  20. file named COPYING.  Among other things, the copyright notice
  21. and this notice must be preserved on all copies.  
  22. */
  23.  
  24. #ifndef _streambuf_h
  25. #ifdef __GNUG__
  26. #pragma once
  27. #pragma interface
  28. #endif
  29. #define _streambuf_h 1
  30.  
  31. /* streambufs. 
  32.    basic streambufs and filebufs are as in Stroustrup, ch 8,
  33.    but the base class contains virtual extensions that allow
  34.    most capabilities of libg++ Files to be used as streambufs
  35.    via `Filebufs'.
  36. */
  37.  
  38. #include <stdio.h>
  39. #include <builtin.h>
  40. #include <xfmodes.h>
  41. #ifdef atarist
  42. #include <bool.h>
  43. #endif
  44.  
  45.  
  46. // see below for NO_LINE_BUFFER_STREAMBUFS
  47.  
  48. #ifndef BUFSIZE
  49. #ifdef BUFSIZ
  50. #define BUFSIZE BUFSIZ
  51. #else
  52. #define BUFSIZE 1024
  53. #endif
  54. #endif
  55.  
  56. enum open_mode // filebuf open modes
  57.   input=0, 
  58.   output=1, 
  59.   append=2 
  60. #ifdef atarist
  61.   ,
  62.   input_bin =  _atari_bin+input,
  63.   output_bin = _atari_bin+output,
  64.   append_bin = _atari_bin+append,
  65.  
  66.   input_text  = _atari_text+input,
  67.   output_text = _atari_text+output,
  68.   append_text = _atari_text+append
  69. #endif
  70. }; 
  71.  
  72. class streambuf
  73. {
  74. public:
  75.   char*       base;          // start of buffer
  76.   char*       pptr;          // put-pointer (and gptr fence)
  77.   char*       gptr;          // get-pointer
  78.   char*       eptr;          // last valid addr in buffer
  79.  
  80.   char        alloc;         // true if we own freestore alloced buffer
  81.  
  82. #ifdef atarist
  83.   bool        _bin_mode;     // text or bin mode
  84. #endif
  85.  
  86.               streambuf();
  87. #ifdef atarist
  88.               streambuf(char* buf, size_t buflen);
  89. #else
  90.               streambuf(char* buf, int buflen);
  91. #endif
  92.  
  93.   virtual    ~streambuf();
  94.  
  95. #ifdef atarist
  96.   size_t         doallocate();
  97.   size_t         allocate();
  98. #else
  99.   int         doallocate();
  100.   int         allocate();
  101. #endif
  102.  
  103.   int         must_overflow(int ch); // true if should call overflow
  104.  
  105.   virtual int overflow(int c = EOF); // flush -- return EOF if fail
  106.   virtual int underflow();           // fill -- return EOF if fail
  107.  
  108.   int         sgetc();          // get one char (as int) or EOF
  109.   int         snextc();         // get and advance
  110.   void        stossc();         // advance only
  111.  
  112.   int         sputbackc(char);   // unget
  113.  
  114.   int         sputc(int c = EOF); // write one char
  115.  
  116. #ifdef atarist
  117.   virtual streambuf*  setbuf(char* buf, size_t buflen, size_t preloaded_count = 0);
  118. #else
  119.   virtual streambuf*  setbuf(char* buf, int buflen, int preloaded_count = 0);
  120.                                 // (not virtual in AT&T)
  121. #endif
  122.  
  123. // the following aren't in AT&T version:
  124.  
  125.   int         sputs(const char* s);           // write null-terminated str
  126. #ifdef atarist
  127.   int         sputsn(const char* s, size_t len);
  128.   int         _atari_putc(int ch);            // kludge for bin/text modes
  129. #else
  130.   int         sputsn(const char* s, int len); // write len bytes
  131. #endif
  132.  
  133.   virtual const char* name();
  134.  
  135.  
  136.   virtual streambuf*  open(const char* name, open_mode m);
  137.   virtual streambuf*  open(const char* filename, io_mode m, access_mode a);
  138.   virtual streambuf*  open(const char* filename, const char* m);
  139.   virtual streambuf*  open(int  filedesc, io_mode m);
  140.   virtual streambuf*  open(FILE* fileptr);
  141.  
  142.   virtual int         is_open();
  143.   virtual int         close();
  144.  
  145.   virtual void        error();
  146. };
  147.  
  148.  
  149. #if defined(__OPTIMIZE__) || defined(USE_LIBGXX_INLINES)
  150.  
  151.  
  152. inline int streambuf::must_overflow(int ch)
  153. {
  154. #ifndef NO_LINE_BUFFER_STREAMBUF
  155.   return pptr >= eptr || ch == '\n';
  156. #else
  157.   return pptr >= eptr;
  158. #endif
  159. }
  160.  
  161.  
  162. #ifdef atarist
  163. inline size_t streambuf::allocate()
  164. {
  165.   return (base == 0)? doallocate() : 0; 
  166. }
  167. #else
  168. inline int streambuf::allocate()
  169. {
  170.   return (base == 0)? doallocate() : 0; 
  171. }
  172. #endif
  173.  
  174. inline int streambuf::sgetc()
  175. {
  176. #ifndef atarist
  177.   return (gptr >= pptr)? underflow() : int((unsigned char)(*gptr));
  178. #else
  179.   int ch;
  180.   do {
  181.     ch = ((gptr >= pptr) ? underflow() : int((unsigned char)(*gptr)));
  182.     if ((!_bin_mode) && (ch == '\r'))
  183.       ch = ((++gptr >= pptr) ? underflow() : int((unsigned char)(*gptr)));
  184.   } while ((!_bin_mode) && (ch == '\r'));
  185.   return(ch);
  186. #endif
  187. }
  188.  
  189.  
  190. inline int streambuf::snextc()
  191. {
  192. #ifndef atarist
  193.   ++gptr;
  194.   return (gptr >= pptr)? underflow() : int((unsigned char)(*gptr));
  195. #else
  196.   int ch;
  197.   do {
  198.     ++gptr;
  199.     ch = ((gptr >= pptr) ? underflow() : int((unsigned char)(*gptr)));
  200.   } while ((!_bin_mode) && (ch == '\r'));
  201.   return ch;
  202. #endif
  203. }
  204.  
  205.  
  206. inline void streambuf::stossc()
  207. {
  208.   if (gptr >= pptr) underflow(); else gptr++;
  209. }
  210.  
  211.  
  212. inline int streambuf::sputbackc(char ch)
  213. {
  214.   return (gptr > base)? int((unsigned char)(*--gptr = ch)) : EOF;
  215. }
  216.  
  217. inline int streambuf::sputc(int ch)
  218. {
  219.   return must_overflow(ch)? overflow(ch) : 
  220. #ifdef atarist
  221.                             _atari_putc(ch);
  222. #else
  223.                             int((unsigned char)(*pptr++ = char(ch)));
  224. #endif
  225. }
  226.  
  227. #ifdef atarist
  228.  
  229. inline int streambuf::_atari_putc(int ch)
  230. {
  231.   if ((!_bin_mode) && (ch == '\n'))
  232.     *pptr++ = '\r';
  233.   *pptr++ = ch;
  234.   return(int(ch));
  235. }
  236.  
  237. #endif
  238.  
  239. #endif
  240.  
  241. #endif
  242.