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

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 CONSUMER_PRINTER_HPP
  14. #define CONSUMER_PRINTER_HPP
  15. #include "consumer.hpp"
  16. class BackupPrinter : public BackupConsumer 
  17. {
  18.   NdbOut & m_ndbout;
  19. public:
  20.   BackupPrinter(NdbOut & out = ndbout) : m_ndbout(out) 
  21.   {
  22.     m_print = false;
  23.     m_print_log = false;
  24.     m_print_data = false;
  25.     m_print_meta = false;
  26.   }
  27.   
  28.   virtual bool table(const TableS &);
  29. #ifdef USE_MYSQL
  30.   virtual bool table(const TableS &, MYSQL* mysqlp);
  31. #endif
  32.   virtual void tuple(const TupleS &);
  33.   virtual void logEntry(const LogEntry &);
  34.   virtual void endOfTuples() {};
  35.   virtual void endOfLogEntrys();
  36.   bool m_print;
  37.   bool m_print_log;
  38.   bool m_print_data;
  39.   bool m_print_meta;
  40.   Uint32 m_logCount;
  41.   Uint32 m_dataCount;  
  42. };
  43. #endif