mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-08 03:08:53 +00:00
d815c218c8
This patch includes both a pure Ruby and C-extension port of the Compact Protocol described in THRIFT-110. It also fixes a bug in struct.c that was interfering with native protocol method calls, and adds some utility classes to the Java library for serializing/deserializing to a file for the purpose of testing protocols cross-language. git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@756133 13f79535-47bb-0310-9956-ffa450edef68
7 lines
488 B
C
7 lines
488 B
C
|
|
#define GET_TRANSPORT(obj) rb_ivar_get(obj, transport_ivar_id)
|
|
#define GET_STRICT_READ(obj) rb_ivar_get(obj, strict_read_ivar_id)
|
|
#define GET_STRICT_WRITE(obj) rb_ivar_get(obj, strict_write_ivar_id)
|
|
#define WRITE(obj, data, length) rb_funcall(obj, write_method_id, 1, rb_str_new(data, length))
|
|
#define CHECK_NIL(obj) if (NIL_P(obj)) { rb_raise(rb_eStandardError, "nil argument not allowed!");}
|
|
#define READ(obj, length) rb_funcall(GET_TRANSPORT(obj), read_method_id, 1, INT2FIX(length)) |