0.9.8.10
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
LoadRange.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_LoadRange_h
28 #define Hypertable_Lib_RangeServer_Request_Parameters_LoadRange_h
29 
33 
34 #include <Common/Serializable.h>
35 
36 #include <string>
37 
38 using namespace std;
39 
40 namespace Hypertable {
41 namespace Lib {
42 namespace RangeServer {
43 namespace Request {
44 namespace Parameters {
45 
48 
50  class LoadRange : public Serializable {
51  public:
52 
55  LoadRange() {}
56 
63  LoadRange(const TableIdentifier &table, const RangeSpec &range_spec,
64  const RangeState &range_state, bool needs_compaction)
65  : m_table(table), m_range_spec(range_spec), m_range_state(range_state),
66  m_needs_compaction(needs_compaction) { }
67 
70  const TableIdentifier &table() { return m_table; }
71 
74  const RangeSpec &range_spec() { return m_range_spec; }
75 
78  const RangeState &range_state() { return m_range_state; }
79 
82  bool needs_compaction() { return m_needs_compaction; }
83 
84  private:
85 
88  uint8_t encoding_version() const override;
89 
93  size_t encoded_length_internal() const override;
94 
97  void encode_internal(uint8_t **bufp) const override;
98 
105  void decode_internal(uint8_t version, const uint8_t **bufp,
106  size_t *remainp) override;
107 
110 
113 
116 
118  bool m_needs_compaction {};
119  };
120 
122 
123 }}}}}
124 
125 #endif // Hypertable_Lib_RangeServer_Request_Parameters_LoadRange_h
const TableIdentifier & table()
Gets table identifier.
Definition: LoadRange.h:70
Range specification.
Definition: RangeSpec.h:40
Declarations for TableIdentifier and TableIdentifierManaged.
STL namespace.
const RangeSpec & range_spec()
Gets range specification.
Definition: LoadRange.h:74
Declarations for RangeState.
Declarations for RangeSpec and RangeSpecManaged.
Declarations for Serializable.
bool needs_compaction()
Gets needs compaction flag.
Definition: LoadRange.h:82
Hypertable definitions
Mixin class that provides a standard serialization interface.
Definition: Serializable.h:65
Request parameters for load range function.
Definition: LoadRange.h:50
Range state.
Definition: RangeState.h:48
const RangeState & range_state()
Gets range state.
Definition: LoadRange.h:78
LoadRange(const TableIdentifier &table, const RangeSpec &range_spec, const RangeState &range_state, bool needs_compaction)
Constructor.
Definition: LoadRange.h:63