0.9.8.10
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
ResponseCallbackReaddirAttr.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; 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 
22 #include "Common/Compat.h"
23 #include "Common/Error.h"
24 
25 #include "AsyncComm/CommBuf.h"
26 
28 
29 using namespace Hyperspace;
30 using namespace Hypertable;
31 
32 /*
33  *
34  */
35 int ResponseCallbackReaddirAttr::response(std::vector<DirEntryAttr> &listing) {
36  CommHeader header;
37  uint32_t len = 8;
38 
40 
41  for (size_t ii=0; ii<listing.size(); ii++)
42  len += encoded_length_dir_entry_attr(listing[ii]);
43 
44  CommBufPtr cbp(new CommBuf(header, len));
45 
46  cbp->append_i32(Error::OK);
47  cbp->append_i32(listing.size());
48 
49  for (size_t ii=0; ii<listing.size(); ii++)
50  encode_dir_entry_attr(cbp->get_data_ptr_address(), listing[ii]);
51 
52  return m_comm->send_response(m_event->addr, cbp);
53 }
54 
void initialize_from_request_header(CommHeader &req_header)
Initializes header from req_header.
Definition: CommHeader.h:128
Comm * m_comm
Comm pointer.
Hyperspace definitions
void encode_dir_entry_attr(uint8_t **bufp, const DirEntryAttr &entry)
Encodes (serializes) the given directory entry to a buffer.
Definition: DirEntryAttr.cc:42
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
int response(std::vector< DirEntryAttr > &listing)
EventPtr m_event
Smart pointer to event object.
Error codes, Exception handling, error logging.
size_t encoded_length_dir_entry_attr(const DirEntryAttr &entry)
Returns the number of bytes required to encode (serialize) the given directory entry.
Definition: DirEntryAttr.cc:35