| 1 |
// Copyright (c) 2009, Whispersoft s.r.l. |
|---|
| 2 |
// All rights reserved. |
|---|
| 3 |
// |
|---|
| 4 |
// Redistribution and use in source and binary forms, with or without |
|---|
| 5 |
// modification, are permitted provided that the following conditions are |
|---|
| 6 |
// met: |
|---|
| 7 |
// |
|---|
| 8 |
// * Redistributions of source code must retain the above copyright |
|---|
| 9 |
// notice, this list of conditions and the following disclaimer. |
|---|
| 10 |
// * Redistributions in binary form must reproduce the above |
|---|
| 11 |
// copyright notice, this list of conditions and the following disclaimer |
|---|
| 12 |
// in the documentation and/or other materials provided with the |
|---|
| 13 |
// distribution. |
|---|
| 14 |
// * Neither the name of Whispersoft s.r.l. nor the names of its |
|---|
| 15 |
// contributors may be used to endorse or promote products derived from |
|---|
| 16 |
// this software without specific prior written permission. |
|---|
| 17 |
// |
|---|
| 18 |
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
|---|
| 19 |
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
|---|
| 20 |
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
|---|
| 21 |
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
|---|
| 22 |
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|---|
| 23 |
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
|---|
| 24 |
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
|---|
| 25 |
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
|---|
| 26 |
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
|---|
| 27 |
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
|---|
| 28 |
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|---|
| 29 |
// |
|---|
| 30 |
// Author: Cosmin Tudorache |
|---|
| 31 |
|
|---|
| 32 |
#ifndef __NET_RPC_LIB_CODEC_RPC_CODEC_H__ |
|---|
| 33 |
#define __NET_RPC_LIB_CODEC_RPC_CODEC_H__ |
|---|
| 34 |
|
|---|
| 35 |
#include <string> |
|---|
| 36 |
#include <whisperlib/common/base/types.h> |
|---|
| 37 |
#include <whisperlib/net/rpc/lib/codec/rpc_encoder.h> |
|---|
| 38 |
#include <whisperlib/net/rpc/lib/codec/rpc_decoder.h> |
|---|
| 39 |
#include <whisperlib/net/rpc/lib/codec/rpc_codec_id.h> |
|---|
| 40 |
|
|---|
| 41 |
namespace rpc { |
|---|
| 42 |
|
|---|
| 43 |
class Codec : public rpc::Loggable { |
|---|
| 44 |
public: |
|---|
| 45 |
Codec() { |
|---|
| 46 |
} |
|---|
| 47 |
virtual ~Codec() { |
|---|
| 48 |
} |
|---|
| 49 |
|
|---|
| 50 |
// Allocate an encoder which will write serialized data to stream "out". |
|---|
| 51 |
// When no longer needed, delete the encoder. |
|---|
| 52 |
virtual rpc::Encoder* CreateEncoder(io::MemoryStream& out) = 0; |
|---|
| 53 |
|
|---|
| 54 |
// Allocate a decoder which reads serialized data from the stream "in". |
|---|
| 55 |
// When no longer needed, delete the decoder. |
|---|
| 56 |
virtual rpc::Decoder* CreateDecoder(io::MemoryStream& in) = 0; |
|---|
| 57 |
|
|---|
| 58 |
// Allocate a new identical codec. |
|---|
| 59 |
virtual rpc::Codec* Clone() const = 0; |
|---|
| 60 |
|
|---|
| 61 |
// Returns the codec id for this factory. |
|---|
| 62 |
// Used in RPC handshake to estabilish a common codec to use. |
|---|
| 63 |
virtual rpc::CODEC_ID GetCodecID() const = 0; |
|---|
| 64 |
|
|---|
| 65 |
// Returns codec name, based on codec id. |
|---|
| 66 |
const char* GetCodecName() const; |
|---|
| 67 |
|
|---|
| 68 |
// Easy encode rpc::Object "obj" to stream "out". |
|---|
| 69 |
template <typename T> |
|---|
| 70 |
void Encode(io::MemoryStream& out, const T& obj) { |
|---|
| 71 |
rpc::Encoder* const encoder = CreateEncoder(out); |
|---|
| 72 |
encoder->Encode(obj); |
|---|
| 73 |
delete encoder; |
|---|
| 74 |
} |
|---|
| 75 |
|
|---|
| 76 |
// Easy decode expected "obj" from stream "in". |
|---|
| 77 |
// Returns the return value of rpc::Decoder::Decode(obj) : |
|---|
| 78 |
// DECODE_RESULT_SUCCESS: if the object was successfully read. |
|---|
| 79 |
// DECODE_RESULT_NOT_ENOUGH_DATA: if there is not enough data in the input |
|---|
| 80 |
// buffer. The read data is not restored. |
|---|
| 81 |
// DECODE_RESULT_ERROR: if the data does not look like the expected object. |
|---|
| 82 |
// The read data is not restored. |
|---|
| 83 |
template <typename T> |
|---|
| 84 |
DECODE_RESULT Decode(io::MemoryStream& in, T& obj) { |
|---|
| 85 |
rpc::Decoder* const decoder = CreateDecoder(in); |
|---|
| 86 |
const DECODE_RESULT result = decoder->Decode(obj); |
|---|
| 87 |
delete decoder; |
|---|
| 88 |
return result; |
|---|
| 89 |
} |
|---|
| 90 |
|
|---|
| 91 |
// Easy encode a single RPC packet. |
|---|
| 92 |
void EncodePacket(io::MemoryStream& out, const rpc::Message& p); |
|---|
| 93 |
|
|---|
| 94 |
// Easy decode a single RPC packet. |
|---|
| 95 |
// Returns the same value as rpc::Decoder::DecodePacket(p) : |
|---|
| 96 |
// DECODE_RESULT_SUCCESS: if a rpc::Message was successfully read. |
|---|
| 97 |
// DECODE_RESULT_NOT_ENOUGH_DATA: if there is not enough data in the input |
|---|
| 98 |
// buffer. The read data is not restored. |
|---|
| 99 |
// DECODE_RESULT_ERROR: if the data does not look like a rpc::Message. |
|---|
| 100 |
// The read data is not restored. |
|---|
| 101 |
// NOTE: in case of error or not-enough-data, the read data is not restored. |
|---|
| 102 |
DECODE_RESULT DecodePacket(io::MemoryStream& in, rpc::Message& p); |
|---|
| 103 |
|
|---|
| 104 |
// rpc::Loggable interface |
|---|
| 105 |
virtual string ToString() const = 0; |
|---|
| 106 |
|
|---|
| 107 |
private: |
|---|
| 108 |
DISALLOW_EVIL_CONSTRUCTORS(Codec); |
|---|
| 109 |
}; |
|---|
| 110 |
} |
|---|
| 111 |
|
|---|
| 112 |
#endif // __NET_RPC_LIB_CODEC_RPC_CODEC_H__ |
|---|