0.9.8.10
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Status.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 FsBroker_Lib_Response_Parameters_Status_h
29 #define FsBroker_Lib_Response_Parameters_Status_h
30 
31 #include <Common/Serializable.h>
32 
33 #include <string>
34 
35 #include <Common/Status.h>
36 
37 using namespace std;
38 
39 namespace Hypertable {
40 namespace FsBroker {
41 namespace Lib {
42 namespace Response {
43 namespace Parameters {
44 
47 
49  class Status : public Serializable {
50  public:
51 
54  Status() {}
55 
60  Status(const Hypertable::Status &status) : m_status(status) {}
61 
64  const Hypertable::Status &status() const { return m_status; }
65 
66  private:
67 
68  uint8_t encoding_version() const override;
69 
70  size_t encoded_length_internal() const override;
71 
72  void encode_internal(uint8_t **bufp) const override;
73 
74  void decode_internal(uint8_t version, const uint8_t **bufp,
75  size_t *remainp) override;
76 
79 
80  };
81 
83 
84 }}}}}
85 
86 #endif // FsBroker_Lib_Response_Parameters_Status_h
Response parameters for open requests.
Definition: Status.h:49
Holds Nagios-style program status information.
Definition: Status.h:42
Declarations for Status.
STL namespace.
Status(const Hypertable::Status &status)
Constructor.
Definition: Status.h:60
Hypertable::Status m_status
Status information.
Definition: Status.h:78
bool status(ContextPtr &context, Timer &timer, Status &status)
Runs a status check on the master.
Definition: Utility.cc:408
Declarations for Serializable.
Hypertable definitions
Mixin class that provides a standard serialization interface.
Definition: Serializable.h:65
const Hypertable::Status & status() const
Gets status information.
Definition: Status.h:64