0.9.8.10
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
CreateScanner.cc
Go to the documentation of this file.
1 /*
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; version 3 of the
9  * 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 
22 #include <Common/Compat.h>
23 
24 #include "CreateScanner.h"
25 
27 
28 #include <AsyncComm/CommBuf.h>
29 #include <AsyncComm/CommHeader.h>
30 
31 #include <Common/Error.h>
32 
33 using namespace Hypertable;
35 
36 int CreateScanner::response(int32_t id, int32_t skipped_rows,
37  int32_t skipped_cells, bool more,
38  ProfileDataScanner &profile_data,
39  StaticBuffer &ext) {
40  CommHeader header;
43  skipped_cells, more,
44  profile_data);
45  CommBufPtr cbuf(new CommBuf(header, 4+params.encoded_length(), ext));
46  cbuf->append_i32(Error::OK);
47  params.encode(cbuf->get_data_ptr_address());
48  return m_comm->send_response(m_event->addr, cbuf);
49 }
50 
51 
52 int CreateScanner::response(int32_t id, int32_t skipped_rows,
53  int32_t skipped_cells, bool more,
54  ProfileDataScanner &profile_data,
55  boost::shared_array<uint8_t> &ext_buffer,
56  uint32_t ext_len) {
57  CommHeader header;
60  skipped_cells, more,
61  profile_data);
62  CommBufPtr cbuf(new CommBuf(header, 4+params.encoded_length(),
63  ext_buffer, ext_len));
64  cbuf->append_i32(Error::OK);
65  params.encode(cbuf->get_data_ptr_address());
66  return m_comm->send_response(m_event->addr, cbuf);
67 }
68 
A memory buffer of static size.
Definition: StaticBuffer.h:45
int response(int32_t id, int32_t skipped_rows, int32_t skipped_cells, bool more, ProfileDataScanner &profile_data, StaticBuffer &ext)
void initialize_from_request_header(CommHeader &req_header)
Initializes header from req_header.
Definition: CommHeader.h:128
virtual size_t encoded_length() const
Returns serialized object length.
Definition: Serializable.cc:37
Comm * m_comm
Comm pointer.
Response parameters for acknowledge load function.
Definition: CreateScanner.h:50
virtual void encode(uint8_t **bufp) const
Writes serialized representation of object to a buffer.
Definition: Serializable.cc:64
std::shared_ptr< CommBuf > CommBufPtr
Smart pointer to CommBuf.
Definition: CommBuf.h:305
Compatibility Macros for C/C++.
int send_response(const CommAddress &addr, CommBufPtr &cbuf)
Sends a response message back over a connection.
Definition: Comm.cc:343
Hypertable definitions
Header for messages transmitted via AsyncComm.
Definition: CommHeader.h:40
Declarations for CommBuf.
Message buffer for holding data to be transmitted over a network.
Definition: CommBuf.h:79
Declarations for CreateScanner response parameters.
EventPtr m_event
Smart pointer to event object.
Declarations for CommHeader.
Error codes, Exception handling, error logging.