0.9.8.10
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
ServerReceiverPlan.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 2 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 
27 
28 #include <Common/Compat.h>
29 
30 #include "ServerReceiverPlan.h"
31 
32 using namespace Hypertable;
34 using namespace std;
35 
37  return 1;
38 }
39 
41  return Serialization::encoded_length_vstr(location) + spec.encoded_length() +
42  state.encoded_length();
43 }
44 
65 void ServerReceiverPlan::encode_internal(uint8_t **bufp) const {
66  Serialization::encode_vstr(bufp, location);
67  spec.encode(bufp);
68  state.encode(bufp);
69 }
70 
71 void ServerReceiverPlan::decode_internal(uint8_t version, const uint8_t **bufp,
72  size_t *remainp) {
73  location = Serialization::decode_vstr(bufp, remainp);
74  spec.decode(bufp, remainp);
75  state.decode(bufp, remainp);
76 }
uint8_t encoding_version() const override
Returns encoding version.
char * decode_vstr(const uint8_t **bufp, size_t *remainp)
Decode a vstr (vint64, data, null).
Declarations for ServerReceiverPlan.
STL namespace.
size_t encoded_length_vstr(size_t len)
Computes the encoded length of vstr (vint64, data, null)
void encode_internal(uint8_t **bufp) const override
Writes serialized representation of object to a buffer.
size_t encoded_length_internal() const override
Returns internal serialized length.
Compatibility Macros for C/C++.
void encode_vstr(uint8_t **bufp, const void *buf, size_t len)
Encode a buffer as variable length string (vint64, data, null)
Hypertable definitions
void decode_internal(uint8_t version, const uint8_t **bufp, size_t *remainp) override
Reads serialized representation of object from a buffer.