0.9.8.10
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Read.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 FsBroker_Lib_Response_Parameters_Read_h
28 #define FsBroker_Lib_Response_Parameters_Read_h
29 
30 #include <Common/Serializable.h>
31 
32 #include <string>
33 
34 using namespace std;
35 
36 namespace Hypertable {
37 namespace FsBroker {
38 namespace Lib {
39 namespace Response {
40 namespace Parameters {
41 
44 
46  class Read : public Serializable {
47  public:
48 
51  Read() {}
52 
58  Read(uint64_t offset, uint32_t amount) : m_offset(offset), m_amount(amount) {}
59 
62  uint64_t get_offset() { return m_offset; }
63 
66  uint32_t get_amount() { return m_amount; }
67 
68  private:
69 
70  uint8_t encoding_version() const override;
71 
72  size_t encoded_length_internal() const override;
73 
74  void encode_internal(uint8_t **bufp) const override;
75 
76  void decode_internal(uint8_t version, const uint8_t **bufp,
77  size_t *remainp) override;
78 
80  uint64_t m_offset {};
81 
83  uint32_t m_amount;
84 
85  };
86 
88 
89 }}}}}
90 
91 #endif // FsBroker_Lib_Response_Parameters_Read_h
Response parameters for read requests.
Definition: Read.h:46
uint64_t get_offset()
Gets read data offset.
Definition: Read.h:62
STL namespace.
Read(uint64_t offset, uint32_t amount)
Constructor.
Definition: Read.h:58
uint32_t m_amount
Amount of data read.
Definition: Read.h:83
uint32_t get_amount()
Gets amount of data read.
Definition: Read.h:66
Declarations for Serializable.
Hypertable definitions
Mixin class that provides a standard serialization interface.
Definition: Serializable.h:65