0.9.8.10
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
RegisterServer.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_Master_Response_Parameters_RegisterServer_h
28 #define Hypertable_Lib_Master_Response_Parameters_RegisterServer_h
29 
31 
32 #include <Common/Serializable.h>
33 #include <Common/StatsSystem.h>
34 
35 #include <string>
36 #include <vector>
37 
38 using namespace std;
39 
40 namespace Hypertable {
41 namespace Lib {
42 namespace Master {
43 namespace Response {
44 namespace Parameters {
45 
48 
50  class RegisterServer : public Serializable {
51  public:
52 
56 
62  RegisterServer(const string &location, int64_t generation,
63  vector<SystemVariable::Spec> &variables)
64  : m_location(location), m_generation(generation),
65  m_variables(variables) { }
66 
69  const string& location() const { return m_location; }
70 
73  int64_t generation() { return m_generation; }
74 
77  const vector<SystemVariable::Spec> &variables() { return m_variables; }
78 
79  private:
80 
83  uint8_t encoding_version() const override;
84 
88  size_t encoded_length_internal() const override;
89 
92  void encode_internal(uint8_t **bufp) const override;
93 
100  void decode_internal(uint8_t version, const uint8_t **bufp,
101  size_t *remainp) override;
102 
104  string m_location;
105 
107  int64_t m_generation {};
108 
110  vector<SystemVariable::Spec> m_variables;
111 
112  };
113 
115 
116 }}}}}
117 
118 #endif // Hypertable_Lib_Master_Response_Parameters_RegisterServer_h
Declarations for SystemVariable.
STL namespace.
Collecting and (de)serializing system-wide statistics.
int64_t generation()
Gets system state generation.
Declarations for Serializable.
Hypertable definitions
RegisterServer(const string &location, int64_t generation, vector< SystemVariable::Spec > &variables)
Constructor.
const string & location() const
Gets location (proxy name)
Mixin class that provides a standard serialization interface.
Definition: Serializable.h:65
vector< SystemVariable::Spec > m_variables
System state variable specifications
Response parameters for register server operation.
const vector< SystemVariable::Spec > & variables()
Gets state variables.