0.9.8.10
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
PhantomPrepareRanges.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 
27 
28 #ifndef Hypertable_Lib_RangeServer_Request_Parameters_PhantomPrepareRanges_h
29 #define Hypertable_Lib_RangeServer_Request_Parameters_PhantomPrepareRanges_h
30 
33 
34 #include <Common/Serializable.h>
35 
36 #include <string>
37 #include <vector>
38 
39 using namespace std;
40 
41 namespace Hypertable {
42 namespace Lib {
43 namespace RangeServer {
44 namespace Request {
45 namespace Parameters {
46 
49 
52  public:
53 
57 
64  PhantomPrepareRanges(int64_t op_id, const String &location,
65  int32_t plan_generation,
66  const vector<QualifiedRangeSpec> &range_specs)
67  : m_op_id(op_id), m_location(location.c_str()),
68  m_plan_generation(plan_generation), m_range_specs(range_specs) { }
69 
72  int64_t op_id() const { return m_op_id; }
73 
76  const char *location() const { return m_location; }
77 
80  int32_t plan_generation() const { return m_plan_generation; }
81 
84  const vector<QualifiedRangeSpec> &range_specs() const { return m_range_specs; }
85 
86  private:
87 
90  uint8_t encoding_version() const override;
91 
95  size_t encoded_length_internal() const override;
96 
99  void encode_internal(uint8_t **bufp) const override;
100 
107  void decode_internal(uint8_t version, const uint8_t **bufp,
108  size_t *remainp) override;
109 
111  int64_t m_op_id;
112 
114  const char *m_location;
115 
118 
120  vector<QualifiedRangeSpec> m_range_specs;
121 
122  };
123 
125 
126 }}}}}
127 
128 #endif // Hypertable_Lib_RangeServer_Request_Parameters_PhantomPrepareRanges_h
std::string String
A String is simply a typedef to std::string.
Definition: String.h:44
const vector< QualifiedRangeSpec > & range_specs() const
Gets range specifications.
STL namespace.
vector< QualifiedRangeSpec > m_range_specs
Vector of range specifications.
Declarations for QualifiedRangeSpec and QualifiedRangeSpecManaged.
Declarations for RangeState.
Request parameters for phantom prepare ranges function.
Declarations for Serializable.
Hypertable definitions
Mixin class that provides a standard serialization interface.
Definition: Serializable.h:65
PhantomPrepareRanges(int64_t op_id, const String &location, int32_t plan_generation, const vector< QualifiedRangeSpec > &range_specs)
Constructor.