0.9.8.10
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
ResponseCallbackAttrList.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 #include "Common/Serialization.h"
25 
26 #include "AsyncComm/CommBuf.h"
27 
29 
30 using namespace std;
31 using namespace Hyperspace;
32 using namespace Hypertable;
33 
34 /*
35  *
36  */
37 int ResponseCallbackAttrList::response(const vector<string> &anames) {
38  CommHeader header;
39  header.initialize_from_request_header(m_event->header);
40  size_t payloadsize = 8;
41  vector<string>::const_iterator it;
42 
43  for (it=anames.begin(); it != anames.end(); ++it) {
44  payloadsize += Serialization::encoded_length_vstr(*it);
45  }
46 
47  CommBufPtr cbp(new CommBuf(header, payloadsize));
48  cbp->append_i32(Error::OK);
49  cbp->append_i32(anames.size());
50 
51  for (it=anames.begin(); it != anames.end(); ++it) {
52  cbp->append_vstr(*it);
53  }
54 
55  return m_comm->send_response(m_event->addr, cbp);
56 }
57 
void initialize_from_request_header(CommHeader &req_header)
Initializes header from req_header.
Definition: CommHeader.h:128
STL namespace.
size_t encoded_length_vstr(size_t len)
Computes the encoded length of vstr (vint64, data, null)
Hyperspace definitions
std::shared_ptr< CommBuf > CommBufPtr
Smart pointer to CommBuf.
Definition: CommBuf.h:305
Compatibility Macros for C/C++.
Functions to serialize/deserialize primitives to/from a memory buffer.
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
Error codes, Exception handling, error logging.