1 /*
2    Copyright (c) 2004, 2021, Oracle and/or its affiliates.
3     All rights reserved. Use is subject to license terms.
4 
5    This program is free software; you can redistribute it and/or modify
6    it under the terms of the GNU General Public License, version 2.0,
7    as published by the Free Software Foundation.
8 
9    This program is also distributed with certain software (including
10    but not limited to OpenSSL) that is licensed under separate terms,
11    as designated in a particular file or component or in included license
12    documentation.  The authors of MySQL hereby grant you an additional
13    permission to link the program and your derivative works with the
14    separately licensed software that they have included with MySQL.
15 
16    This program is distributed in the hope that it will be useful,
17    but WITHOUT ANY WARRANTY; without even the implied warranty of
18    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19    GNU General Public License, version 2.0, for more details.
20 
21    You should have received a copy of the GNU General Public License
22    along with this program; if not, write to the Free Software
23    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA
24 */
25 
26 #ifndef CONSUMER_PRINTER_HPP
27 #define CONSUMER_PRINTER_HPP
28 
29 #include "consumer.hpp"
30 
31 class BackupPrinter : public BackupConsumer
32 {
33   NdbOut & m_ndbout;
34 public:
BackupPrinter(NODE_GROUP_MAP * ng_map,uint ng_map_len,NdbOut & out=ndbout)35   BackupPrinter(NODE_GROUP_MAP *ng_map,
36                 uint ng_map_len,
37                 NdbOut & out = ndbout) : m_ndbout(out)
38   {
39     m_nodegroup_map = ng_map;
40     m_nodegroup_map_len= ng_map_len;
41     m_print = false;
42     m_print_log = false;
43     m_print_data = false;
44     m_print_meta = false;
45     m_logCount = 0;
46     m_dataCount = 0;
47   }
48 
49   virtual bool table(const TableS &);
50 #ifdef USE_MYSQL
51   virtual bool table(const TableS &, MYSQL* mysqlp);
52 #endif
53   virtual void tuple(const TupleS &, Uint32 fragId);
54   virtual void logEntry(const LogEntry &);
endOfTuples()55   virtual void endOfTuples() {};
56   virtual void endOfLogEntrys();
57   virtual bool update_apply_status(const RestoreMetaData &metaData);
58   bool m_print;
59   bool m_print_log;
60   bool m_print_data;
61   bool m_print_meta;
62   Uint32 m_logCount;
63   Uint32 m_dataCount;
64 };
65 
66 #endif
67