0.9.8.10
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
CreateScanner.h
Go to the documentation of this file.
1 /* -*- c++ -*-
2  * Copyright (C) 2007-2014 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_Response_Parameters_CreateScanner_h
29 #define Hypertable_Lib_RangeServer_Response_Parameters_CreateScanner_h
30 
32 
33 #include <Common/Serializable.h>
34 
35 #include <map>
36 #include <string>
37 
38 using namespace std;
39 
40 namespace Hypertable {
41 namespace Lib {
42 namespace RangeServer {
43 namespace Response {
44 namespace Parameters {
45 
48 
50  class CreateScanner : public Serializable {
51  public:
52 
56 
64  CreateScanner(int32_t id, int32_t skipped_rows, int32_t skipped_cells,
65  bool more, ProfileDataScanner &profile_data)
66  : m_id(id), m_skipped_rows(skipped_rows), m_skipped_cells(skipped_cells),
67  m_more(more), m_profile_data(profile_data) {}
68 
71  int32_t id() { return m_id; }
72 
75  int32_t skipped_rows() { return m_skipped_rows; }
76 
79  int32_t skipped_cells() { return m_skipped_cells; }
80 
83  const ProfileDataScanner &profile_data() { return m_profile_data; }
84 
87  bool more() { return m_more; }
88 
89  private:
90 
93  uint8_t encoding_version() const override;
94 
98  size_t encoded_length_internal() const override;
99 
102  void encode_internal(uint8_t **bufp) const override;
103 
110  void decode_internal(uint8_t version, const uint8_t **bufp,
111  size_t *remainp) override;
112 
114  int32_t m_id;
115 
117  int32_t m_skipped_rows;
118 
121 
123  bool m_more;
124 
127 
128  };
129 
131 
132 }}}}}
133 
134 #endif // Hypertable_Lib_RangeServer_Response_Parameters_CreateScanner_h
STL namespace.
const ProfileDataScanner & profile_data()
Gets profile data.
Definition: CreateScanner.h:83
Declarations for ProfileDataScanner.
Response parameters for acknowledge load function.
Definition: CreateScanner.h:50
bool m_more
Flag indicating if more data to be fetched.
CreateScanner(int32_t id, int32_t skipped_rows, int32_t skipped_cells, bool more, ProfileDataScanner &profile_data)
Constructor.
Definition: CreateScanner.h:64
Declarations for Serializable.
Hypertable definitions
Mixin class that provides a standard serialization interface.
Definition: Serializable.h:65