| #ifndef T_BINARY_PROTOCOL_H |
| #define T_BINARY_PROTOCOL_H |
| |
| #include "TProtocol.h" |
| |
| #include <boost/shared_ptr.hpp> |
| |
| namespace facebook { namespace thrift { namespace protocol { |
| |
| using namespace boost; |
| |
| /** |
| * The default binary protocol for thrift. Writes all data in a very basic |
| * binary format, essentially just spitting out the raw bytes. |
| * |
| * @author Mark Slee <mcslee@facebook.com> |
| */ |
| class TBinaryProtocol : public TProtocol { |
| public: |
| TBinaryProtocol() {} |
| ~TBinaryProtocol() {} |
| |
| /** |
| * Writing functions. |
| */ |
| |
| virtual uint32_t writeMessageBegin(shared_ptr<TTransport> out, |
| const TMessageType messageType, |
| const uint32_t seqid) const; |
| |
| virtual uint32_t writeMessageEnd (shared_ptr<TTransport> out) const; |
| |
| |
| uint32_t writeStructBegin (shared_ptr<TTransport> out, |
| const std::string& name) const; |
| |
| uint32_t writeStructEnd (shared_ptr<TTransport> out) const; |
| |
| uint32_t writeFieldBegin (shared_ptr<TTransport> out, |
| const std::string& name, |
| const TType fieldType, |
| const uint16_t fieldId) const; |
| |
| uint32_t writeFieldEnd (shared_ptr<TTransport> out) const; |
| |
| uint32_t writeFieldStop (shared_ptr<TTransport> out) const; |
| |
| uint32_t writeMapBegin (shared_ptr<TTransport> out, |
| const TType keyType, |
| const TType valType, |
| const int32_t size) const; |
| |
| uint32_t writeMapEnd (shared_ptr<TTransport> out) const; |
| |
| uint32_t writeListBegin (shared_ptr<TTransport> out, |
| const TType elemType, |
| const int32_t size) const; |
| |
| uint32_t writeListEnd (shared_ptr<TTransport> out) const; |
| |
| uint32_t writeSetBegin (shared_ptr<TTransport> out, |
| const TType elemType, |
| const int32_t size) const; |
| |
| uint32_t writeSetEnd (shared_ptr<TTransport> out) const; |
| |
| uint32_t writeByte (shared_ptr<TTransport> out, |
| const uint8_t byte) const; |
| |
| uint32_t writeU32 (shared_ptr<TTransport> out, |
| const uint32_t u32) const; |
| |
| uint32_t writeI32 (shared_ptr<TTransport> out, |
| const int32_t i32) const; |
| |
| uint32_t writeU64 (shared_ptr<TTransport> out, |
| const uint64_t u64) const; |
| |
| uint32_t writeI64 (shared_ptr<TTransport> out, |
| const int64_t i64) const; |
| |
| uint32_t writeString (shared_ptr<TTransport> out, |
| const std::string& str) const; |
| |
| /** |
| * Reading functions |
| */ |
| |
| |
| uint32_t readMessasgeBegin (shared_ptr<TTransport> in, |
| TMessageType& messageType, |
| uint32_t& seqid) const; |
| |
| uint32_t readMessageEnd (shared_ptr<TTransport> in) const; |
| |
| uint32_t readStructBegin (shared_ptr<TTransport> in, |
| std::string& name) const; |
| |
| uint32_t readStructEnd (shared_ptr<TTransport> in) const; |
| |
| uint32_t readFieldBegin (shared_ptr<TTransport> in, |
| std::string& name, |
| TType& fieldType, |
| uint16_t& fieldId) const; |
| |
| uint32_t readFieldEnd (shared_ptr<TTransport> in) const; |
| |
| uint32_t readMapBegin (shared_ptr<TTransport> in, |
| TType& keyType, |
| TType& valType, |
| int32_t& size) const; |
| |
| uint32_t readMapEnd (shared_ptr<TTransport> in) const; |
| |
| uint32_t readListBegin (shared_ptr<TTransport> in, |
| TType& elemType, |
| int32_t& size) const; |
| |
| uint32_t readListEnd (shared_ptr<TTransport> in) const; |
| |
| uint32_t readSetBegin (shared_ptr<TTransport> in, |
| TType& elemType, |
| int32_t& size) const; |
| |
| uint32_t readSetEnd (shared_ptr<TTransport> in) const; |
| |
| uint32_t readByte (shared_ptr<TTransport> in, |
| uint8_t& byte) const; |
| |
| uint32_t readU32 (shared_ptr<TTransport> in, |
| uint32_t& u32) const; |
| |
| uint32_t readI32 (shared_ptr<TTransport> in, |
| int32_t& i32) const; |
| |
| uint32_t readU64 (shared_ptr<TTransport> in, |
| uint64_t& u64) const; |
| |
| uint32_t readI64 (shared_ptr<TTransport> in, |
| int64_t& i64) const; |
| |
| uint32_t readString (shared_ptr<TTransport> in, |
| std::string& str) const; |
| |
| }; |
| |
| }}} // facebook::thrift::protocol |
| |
| #endif |
| |