0.9.8.10
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Dump.h
Go to the documentation of this file.
1 /* -*- c++ -*-
2  * Copyright (C) 2007-2015 Hypertable, Inc.
3  *
4  * This file is part of Hypertable.
5  *
6  * Hypertable is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 3
9  * of the License, or any later version.
10  *
11  * Hypertable is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19  * 02110-1301, USA.
20  */
21 
26 
27 #ifndef Hypertable_Lib_RangeServer_Request_Parameters_Dump_h
28 #define Hypertable_Lib_RangeServer_Request_Parameters_Dump_h
29 
31 
32 #include <Common/Serializable.h>
33 
34 #include <string>
35 
36 using namespace std;
37 
38 namespace Hypertable {
39 namespace Lib {
40 namespace RangeServer {
41 namespace Request {
42 namespace Parameters {
43 
46 
48  class Dump : public Serializable {
49  public:
50 
53  Dump() {}
54 
60  Dump(const std::string &fname, bool no_keys)
61  : m_fname(fname), m_no_keys(no_keys) { }
62 
65  const char *fname() { return m_fname.c_str(); }
66 
69  bool no_keys() { return m_no_keys; }
70 
71  private:
72 
75  uint8_t encoding_version() const override;
76 
80  size_t encoded_length_internal() const override;
81 
84  void encode_internal(uint8_t **bufp) const override;
85 
92  void decode_internal(uint8_t version, const uint8_t **bufp,
93  size_t *remainp) override;
94 
96  std::string m_fname;
97 
99  bool m_no_keys {};
100  };
101 
103 
104 }}}}}
105 
106 #endif // Hypertable_Lib_RangeServer_Request_Parameters_Dump_h
std::string m_fname
Output file name.
Definition: Dump.h:96
const char * fname()
Gets output file name.
Definition: Dump.h:65
Declarations for TableIdentifier and TableIdentifierManaged.
STL namespace.
Request parameters for dump function.
Definition: Dump.h:48
Declarations for Serializable.
Hypertable definitions
Mixin class that provides a standard serialization interface.
Definition: Serializable.h:65
Dump(const std::string &fname, bool no_keys)
Constructor.
Definition: Dump.h:60