OutputStream.hpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2003 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. #ifndef OUTPUT_STREAM_HPP
  14. #define OUTPUT_STREAM_HPP
  15. #include <ndb_global.h>
  16. #include <NdbTCP.h>
  17. /**
  18.  * Output stream
  19.  */
  20. class OutputStream {
  21. public:
  22.   virtual int print(const char * fmt, ...) = 0;
  23.   virtual int println(const char * fmt, ...) = 0;
  24.   virtual void flush() {};
  25. };
  26. class FileOutputStream : public OutputStream {
  27.   FILE * f;
  28. public:
  29.   FileOutputStream(FILE * file = stdout);
  30.   
  31.   int print(const char * fmt, ...);
  32.   int println(const char * fmt, ...);
  33.   void flush() { fflush(f); }
  34. };
  35. class SocketOutputStream : public OutputStream {
  36.   NDB_SOCKET_TYPE m_socket;
  37.   unsigned m_timeout;
  38. public:
  39.   SocketOutputStream(NDB_SOCKET_TYPE socket, unsigned writeTimeout = 1000);
  40.   
  41.   int print(const char * fmt, ...);
  42.   int println(const char * fmt, ...);
  43. };
  44. class SoftOseOutputStream : public OutputStream {
  45. public:
  46.   SoftOseOutputStream();
  47.   
  48.   int print(const char * fmt, ...);
  49.   int println(const char * fmt, ...);
  50. };
  51. class NullOutputStream : public OutputStream {
  52. public:
  53.   int print(const char * /* unused */, ...) { return 1;}
  54.   int println(const char * /* unused */, ...) { return 1;}
  55. };
  56. #endif