0.9.8.10
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
SetState.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_Request_Parameters_SetState_h
28 #define Hypertable_Lib_Master_Request_Parameters_SetState_h
29 
31 
32 #include <Common/Serializable.h>
33 
34 #include <string>
35 #include <vector>
36 
37 using namespace std;
38 
39 namespace Hypertable {
40 namespace Lib {
41 namespace Master {
42 namespace Request {
43 namespace Parameters {
44 
47 
49  class SetState : public Serializable {
50  public:
51 
54  SetState() {}
55 
60  SetState(const std::vector<SystemVariable::Spec> &specs) : m_specs(specs) { }
61 
64  const std::vector<SystemVariable::Spec> &specs() { return m_specs; }
65 
66  private:
67 
70  uint8_t encoding_version() const override;
71 
75  size_t encoded_length_internal() const override;
76 
79  void encode_internal(uint8_t **bufp) const override;
80 
87  void decode_internal(uint8_t version, const uint8_t **bufp,
88  size_t *remainp) override;
89 
91  std::vector<SystemVariable::Spec> m_specs;
92 
93  };
94 
96 
97 }}}}}
98 
99 #endif // Hypertable_Lib_Master_Request_Parameters_SetState_h
Request parameters for set state operation.
Definition: SetState.h:49
Declarations for SystemVariable.
STL namespace.
const std::vector< SystemVariable::Spec > & specs()
Gets system variable specifications.
Definition: SetState.h:64
std::vector< SystemVariable::Spec > m_specs
System variable specifications
Definition: SetState.h:91
SetState(const std::vector< SystemVariable::Spec > &specs)
Constructor.
Definition: SetState.h:60
Declarations for Serializable.
Hypertable definitions
Mixin class that provides a standard serialization interface.
Definition: Serializable.h:65