blob: 6c0123dcbda26d8a8470a5dcb96505905969f0f5 [file] [log] [blame]
Kevin Clark916f3532009-03-20 04:21:39 +00001/**
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
19
Bryan Duxburyd815c212009-03-19 18:57:43 +000020#include <ruby.h>
21#include <stdbool.h>
22#include <stdint.h>
Bryan Duxbury09d13c22010-08-11 18:37:25 +000023#include "constants.h"
24#include "struct.h"
Bryan Duxburyd815c212009-03-19 18:57:43 +000025#include "macros.h"
26
27#define LAST_ID(obj) FIX2INT(rb_ary_pop(rb_ivar_get(obj, last_field_id)))
28#define SET_LAST_ID(obj, val) rb_ary_push(rb_ivar_get(obj, last_field_id), val)
29
30VALUE rb_thrift_compact_proto_native_qmark(VALUE self) {
31 return Qtrue;
32}
33
34static ID last_field_id;
35static ID boolean_field_id;
36static ID bool_value_id;
37
38static int VERSION;
39static int VERSION_MASK;
40static int TYPE_MASK;
41static int TYPE_SHIFT_AMOUNT;
42static int PROTOCOL_ID;
43
44static VALUE thrift_compact_protocol_class;
45
46static int CTYPE_BOOLEAN_TRUE = 0x01;
47static int CTYPE_BOOLEAN_FALSE = 0x02;
48static int CTYPE_BYTE = 0x03;
49static int CTYPE_I16 = 0x04;
50static int CTYPE_I32 = 0x05;
51static int CTYPE_I64 = 0x06;
52static int CTYPE_DOUBLE = 0x07;
53static int CTYPE_BINARY = 0x08;
54static int CTYPE_LIST = 0x09;
55static int CTYPE_SET = 0x0A;
56static int CTYPE_MAP = 0x0B;
57static int CTYPE_STRUCT = 0x0C;
58
59VALUE rb_thrift_compact_proto_write_i16(VALUE self, VALUE i16);
60
61// TODO: implement this
62static int get_compact_type(VALUE type_value) {
63 int type = FIX2INT(type_value);
64 if (type == TTYPE_BOOL) {
65 return CTYPE_BOOLEAN_TRUE;
66 } else if (type == TTYPE_BYTE) {
67 return CTYPE_BYTE;
68 } else if (type == TTYPE_I16) {
69 return CTYPE_I16;
70 } else if (type == TTYPE_I32) {
71 return CTYPE_I32;
72 } else if (type == TTYPE_I64) {
73 return CTYPE_I64;
74 } else if (type == TTYPE_DOUBLE) {
75 return CTYPE_DOUBLE;
76 } else if (type == TTYPE_STRING) {
77 return CTYPE_BINARY;
78 } else if (type == TTYPE_LIST) {
79 return CTYPE_LIST;
80 } else if (type == TTYPE_SET) {
81 return CTYPE_SET;
82 } else if (type == TTYPE_MAP) {
83 return CTYPE_MAP;
84 } else if (type == TTYPE_STRUCT) {
85 return CTYPE_STRUCT;
86 } else {
87 char str[50];
88 sprintf(str, "don't know what type: %d", type);
Bryan Duxburyfd58c552009-09-01 22:32:50 +000089 rb_raise(rb_eStandardError, "%s", str);
Bryan Duxburyd815c212009-03-19 18:57:43 +000090 return 0;
91 }
92}
93
94static void write_byte_direct(VALUE transport, int8_t b) {
95 WRITE(transport, (char*)&b, 1);
96}
97
98static void write_field_begin_internal(VALUE self, VALUE type, VALUE id_value, VALUE type_override) {
99 int id = FIX2INT(id_value);
100 int last_id = LAST_ID(self);
101 VALUE transport = GET_TRANSPORT(self);
102
103 // if there's a type override, use that.
104 int8_t type_to_write = RTEST(type_override) ? FIX2INT(type_override) : get_compact_type(type);
105 // check if we can use delta encoding for the field id
106 int diff = id - last_id;
107 if (diff > 0 && diff <= 15) {
108 // write them together
109 write_byte_direct(transport, diff << 4 | (type_to_write & 0x0f));
110 } else {
111 // write them separate
112 write_byte_direct(transport, type_to_write & 0x0f);
113 rb_thrift_compact_proto_write_i16(self, id_value);
114 }
115
116 SET_LAST_ID(self, id_value);
117}
118
119static int32_t int_to_zig_zag(int32_t n) {
120 return (n << 1) ^ (n >> 31);
121}
122
123static uint64_t ll_to_zig_zag(int64_t n) {
124 return (n << 1) ^ (n >> 63);
125}
126
127static void write_varint32(VALUE transport, uint32_t n) {
128 while (true) {
129 if ((n & ~0x7F) == 0) {
130 write_byte_direct(transport, n & 0x7f);
131 break;
132 } else {
133 write_byte_direct(transport, (n & 0x7F) | 0x80);
134 n = n >> 7;
135 }
136 }
137}
138
139static void write_varint64(VALUE transport, uint64_t n) {
140 while (true) {
141 if ((n & ~0x7F) == 0) {
142 write_byte_direct(transport, n & 0x7f);
143 break;
144 } else {
145 write_byte_direct(transport, (n & 0x7F) | 0x80);
146 n = n >> 7;
147 }
148 }
149}
150
151static void write_collection_begin(VALUE transport, VALUE elem_type, VALUE size_value) {
152 int size = FIX2INT(size_value);
153 if (size <= 14) {
154 write_byte_direct(transport, size << 4 | get_compact_type(elem_type));
155 } else {
156 write_byte_direct(transport, 0xf0 | get_compact_type(elem_type));
157 write_varint32(transport, size);
158 }
159}
160
161
162//--------------------------------
163// interface writing methods
164//--------------------------------
165
166VALUE rb_thrift_compact_proto_write_i32(VALUE self, VALUE i32);
167VALUE rb_thrift_compact_proto_write_string(VALUE self, VALUE str);
168
169VALUE rb_thrift_compact_proto_write_message_end(VALUE self) {
170 return Qnil;
171}
172
173VALUE rb_thrift_compact_proto_write_struct_begin(VALUE self, VALUE name) {
174 rb_ary_push(rb_ivar_get(self, last_field_id), INT2FIX(0));
175 return Qnil;
176}
177
178VALUE rb_thrift_compact_proto_write_struct_end(VALUE self) {
179 rb_ary_pop(rb_ivar_get(self, last_field_id));
180 return Qnil;
181}
182
183VALUE rb_thrift_compact_proto_write_field_end(VALUE self) {
184 return Qnil;
185}
186
187VALUE rb_thrift_compact_proto_write_map_end(VALUE self) {
188 return Qnil;
189}
190
191VALUE rb_thrift_compact_proto_write_list_end(VALUE self) {
192 return Qnil;
193}
194
195VALUE rb_thrift_compact_proto_write_set_end(VALUE self) {
196 return Qnil;
197}
198
199VALUE rb_thrift_compact_proto_write_message_begin(VALUE self, VALUE name, VALUE type, VALUE seqid) {
200 VALUE transport = GET_TRANSPORT(self);
201 write_byte_direct(transport, PROTOCOL_ID);
202 write_byte_direct(transport, (VERSION & VERSION_MASK) | ((FIX2INT(type) << TYPE_SHIFT_AMOUNT) & TYPE_MASK));
203 write_varint32(transport, FIX2INT(seqid));
204 rb_thrift_compact_proto_write_string(self, name);
205
206 return Qnil;
207}
208
209VALUE rb_thrift_compact_proto_write_field_begin(VALUE self, VALUE name, VALUE type, VALUE id) {
210 if (FIX2INT(type) == TTYPE_BOOL) {
211 // we want to possibly include the value, so we'll wait.
212 rb_ivar_set(self, boolean_field_id, rb_ary_new3(2, type, id));
213 } else {
214 write_field_begin_internal(self, type, id, Qnil);
215 }
216
217 return Qnil;
218}
219
220VALUE rb_thrift_compact_proto_write_field_stop(VALUE self) {
221 write_byte_direct(GET_TRANSPORT(self), TTYPE_STOP);
222 return Qnil;
223}
224
225VALUE rb_thrift_compact_proto_write_map_begin(VALUE self, VALUE ktype, VALUE vtype, VALUE size_value) {
226 int size = FIX2INT(size_value);
227 VALUE transport = GET_TRANSPORT(self);
228 if (size == 0) {
229 write_byte_direct(transport, 0);
230 } else {
231 write_varint32(transport, size);
232 write_byte_direct(transport, get_compact_type(ktype) << 4 | get_compact_type(vtype));
233 }
234 return Qnil;
235}
236
237VALUE rb_thrift_compact_proto_write_list_begin(VALUE self, VALUE etype, VALUE size) {
238 write_collection_begin(GET_TRANSPORT(self), etype, size);
239 return Qnil;
240}
241
242VALUE rb_thrift_compact_proto_write_set_begin(VALUE self, VALUE etype, VALUE size) {
243 write_collection_begin(GET_TRANSPORT(self), etype, size);
244 return Qnil;
245}
246
247VALUE rb_thrift_compact_proto_write_bool(VALUE self, VALUE b) {
248 int8_t type = b == Qtrue ? CTYPE_BOOLEAN_TRUE : CTYPE_BOOLEAN_FALSE;
249 VALUE boolean_field = rb_ivar_get(self, boolean_field_id);
250 if (NIL_P(boolean_field)) {
251 // we're not part of a field, so just write the value.
252 write_byte_direct(GET_TRANSPORT(self), type);
253 } else {
254 // we haven't written the field header yet
255 write_field_begin_internal(self, rb_ary_entry(boolean_field, 0), rb_ary_entry(boolean_field, 1), INT2FIX(type));
256 rb_ivar_set(self, boolean_field_id, Qnil);
257 }
258 return Qnil;
259}
260
261VALUE rb_thrift_compact_proto_write_byte(VALUE self, VALUE byte) {
262 CHECK_NIL(byte);
263 write_byte_direct(GET_TRANSPORT(self), FIX2INT(byte));
264 return Qnil;
265}
266
267VALUE rb_thrift_compact_proto_write_i16(VALUE self, VALUE i16) {
268 rb_thrift_compact_proto_write_i32(self, i16);
269 return Qnil;
270}
271
272VALUE rb_thrift_compact_proto_write_i32(VALUE self, VALUE i32) {
273 CHECK_NIL(i32);
274 write_varint32(GET_TRANSPORT(self), int_to_zig_zag(NUM2INT(i32)));
275 return Qnil;
276}
277
278VALUE rb_thrift_compact_proto_write_i64(VALUE self, VALUE i64) {
279 CHECK_NIL(i64);
280 write_varint64(GET_TRANSPORT(self), ll_to_zig_zag(NUM2LL(i64)));
281 return Qnil;
282}
283
284VALUE rb_thrift_compact_proto_write_double(VALUE self, VALUE dub) {
285 CHECK_NIL(dub);
286 // Unfortunately, bitwise_cast doesn't work in C. Bad C!
287 union {
288 double f;
289 int64_t l;
290 } transfer;
Bryan Duxburye3ab50d2009-03-25 21:06:53 +0000291 transfer.f = RFLOAT_VALUE(rb_Float(dub));
Bryan Duxburyd815c212009-03-19 18:57:43 +0000292 char buf[8];
293 buf[0] = transfer.l & 0xff;
294 buf[1] = (transfer.l >> 8) & 0xff;
295 buf[2] = (transfer.l >> 16) & 0xff;
296 buf[3] = (transfer.l >> 24) & 0xff;
297 buf[4] = (transfer.l >> 32) & 0xff;
298 buf[5] = (transfer.l >> 40) & 0xff;
299 buf[6] = (transfer.l >> 48) & 0xff;
300 buf[7] = (transfer.l >> 56) & 0xff;
301 WRITE(GET_TRANSPORT(self), buf, 8);
302 return Qnil;
303}
304
305VALUE rb_thrift_compact_proto_write_string(VALUE self, VALUE str) {
306 VALUE transport = GET_TRANSPORT(self);
Bryan Duxburye3ab50d2009-03-25 21:06:53 +0000307 write_varint32(transport, RSTRING_LEN(str));
308 WRITE(transport, RSTRING_PTR(str), RSTRING_LEN(str));
Bryan Duxburyd815c212009-03-19 18:57:43 +0000309 return Qnil;
310}
311
312//---------------------------------------
313// interface reading methods
314//---------------------------------------
315
316#define is_bool_type(ctype) (((ctype) & 0x0F) == CTYPE_BOOLEAN_TRUE || ((ctype) & 0x0F) == CTYPE_BOOLEAN_FALSE)
317
318VALUE rb_thrift_compact_proto_read_string(VALUE self);
319VALUE rb_thrift_compact_proto_read_byte(VALUE self);
320VALUE rb_thrift_compact_proto_read_i32(VALUE self);
321VALUE rb_thrift_compact_proto_read_i16(VALUE self);
322
323static int8_t get_ttype(int8_t ctype) {
324 if (ctype == TTYPE_STOP) {
325 return TTYPE_STOP;
326 } else if (ctype == CTYPE_BOOLEAN_TRUE || ctype == CTYPE_BOOLEAN_FALSE) {
327 return TTYPE_BOOL;
328 } else if (ctype == CTYPE_BYTE) {
329 return TTYPE_BYTE;
330 } else if (ctype == CTYPE_I16) {
331 return TTYPE_I16;
332 } else if (ctype == CTYPE_I32) {
333 return TTYPE_I32;
334 } else if (ctype == CTYPE_I64) {
335 return TTYPE_I64;
336 } else if (ctype == CTYPE_DOUBLE) {
337 return TTYPE_DOUBLE;
338 } else if (ctype == CTYPE_BINARY) {
339 return TTYPE_STRING;
340 } else if (ctype == CTYPE_LIST) {
341 return TTYPE_LIST;
342 } else if (ctype == CTYPE_SET) {
343 return TTYPE_SET;
344 } else if (ctype == CTYPE_MAP) {
345 return TTYPE_MAP;
346 } else if (ctype == CTYPE_STRUCT) {
347 return TTYPE_STRUCT;
348 } else {
349 char str[50];
350 sprintf(str, "don't know what type: %d", ctype);
Bryan Duxburyfd58c552009-09-01 22:32:50 +0000351 rb_raise(rb_eStandardError, "%s", str);
Bryan Duxburyd815c212009-03-19 18:57:43 +0000352 return 0;
353 }
354}
355
356static char read_byte_direct(VALUE self) {
Bryan Duxburye3ab50d2009-03-25 21:06:53 +0000357 VALUE buf = READ(self, 1);
358 return RSTRING_PTR(buf)[0];
Bryan Duxburyd815c212009-03-19 18:57:43 +0000359}
360
361static int64_t zig_zag_to_ll(int64_t n) {
362 return (((uint64_t)n) >> 1) ^ -(n & 1);
363}
364
365static int32_t zig_zag_to_int(int32_t n) {
366 return (((uint32_t)n) >> 1) ^ -(n & 1);
367}
368
369static int64_t read_varint64(VALUE self) {
370 int shift = 0;
371 int64_t result = 0;
372 while (true) {
373 int8_t b = read_byte_direct(self);
374 result = result | ((uint64_t)(b & 0x7f) << shift);
375 if ((b & 0x80) != 0x80) {
376 break;
377 }
378 shift += 7;
379 }
380 return result;
381}
382
383static int16_t read_i16(VALUE self) {
384 return zig_zag_to_int((int32_t)read_varint64(self));
385}
386
387static VALUE get_protocol_exception(VALUE code, VALUE message) {
388 VALUE args[2];
389 args[0] = code;
390 args[1] = message;
391 return rb_class_new_instance(2, (VALUE*)&args, protocol_exception_class);
392}
393
394VALUE rb_thrift_compact_proto_read_message_end(VALUE self) {
395 return Qnil;
396}
397
398VALUE rb_thrift_compact_proto_read_struct_begin(VALUE self) {
399 rb_ary_push(rb_ivar_get(self, last_field_id), INT2FIX(0));
400 return Qnil;
401}
402
403VALUE rb_thrift_compact_proto_read_struct_end(VALUE self) {
404 rb_ary_pop(rb_ivar_get(self, last_field_id));
405 return Qnil;
406}
407
408VALUE rb_thrift_compact_proto_read_field_end(VALUE self) {
409 return Qnil;
410}
411
412VALUE rb_thrift_compact_proto_read_map_end(VALUE self) {
413 return Qnil;
414}
415
416VALUE rb_thrift_compact_proto_read_list_end(VALUE self) {
417 return Qnil;
418}
419
420VALUE rb_thrift_compact_proto_read_set_end(VALUE self) {
421 return Qnil;
422}
423
424VALUE rb_thrift_compact_proto_read_message_begin(VALUE self) {
425 int8_t protocol_id = read_byte_direct(self);
426 if (protocol_id != PROTOCOL_ID) {
427 char buf[100];
428 int len = sprintf(buf, "Expected protocol id %d but got %d", PROTOCOL_ID, protocol_id);
429 buf[len] = 0;
430 rb_exc_raise(get_protocol_exception(INT2FIX(-1), rb_str_new2(buf)));
431 }
432
433 int8_t version_and_type = read_byte_direct(self);
434 int8_t version = version_and_type & VERSION_MASK;
435 if (version != VERSION) {
436 char buf[100];
437 int len = sprintf(buf, "Expected version id %d but got %d", version, VERSION);
438 buf[len] = 0;
439 rb_exc_raise(get_protocol_exception(INT2FIX(-1), rb_str_new2(buf)));
440 }
441
442 int8_t type = (version_and_type >> TYPE_SHIFT_AMOUNT) & 0x03;
443 int32_t seqid = read_varint64(self);
444 VALUE messageName = rb_thrift_compact_proto_read_string(self);
445 return rb_ary_new3(3, messageName, INT2FIX(type), INT2NUM(seqid));
446}
447
448VALUE rb_thrift_compact_proto_read_field_begin(VALUE self) {
449 int8_t type = read_byte_direct(self);
450 // if it's a stop, then we can return immediately, as the struct is over.
451 if ((type & 0x0f) == TTYPE_STOP) {
452 return rb_ary_new3(3, Qnil, INT2FIX(0), INT2FIX(0));
453 } else {
454 int field_id = 0;
455
456 // mask off the 4 MSB of the type header. it could contain a field id delta.
457 uint8_t modifier = ((type & 0xf0) >> 4);
458
459 if (modifier == 0) {
460 // not a delta. look ahead for the zigzag varint field id.
Bryan Duxbury09d13c22010-08-11 18:37:25 +0000461 (void) LAST_ID(self);
Bryan Duxburyd815c212009-03-19 18:57:43 +0000462 field_id = read_i16(self);
463 } else {
464 // has a delta. add the delta to the last read field id.
465 field_id = LAST_ID(self) + modifier;
466 }
467
468 // if this happens to be a boolean field, the value is encoded in the type
469 if (is_bool_type(type)) {
470 // save the boolean value in a special instance variable.
471 rb_ivar_set(self, bool_value_id, (type & 0x0f) == CTYPE_BOOLEAN_TRUE ? Qtrue : Qfalse);
472 }
473
474 // push the new field onto the field stack so we can keep the deltas going.
475 SET_LAST_ID(self, INT2FIX(field_id));
476 return rb_ary_new3(3, Qnil, INT2FIX(get_ttype(type & 0x0f)), INT2FIX(field_id));
477 }
478}
479
480VALUE rb_thrift_compact_proto_read_map_begin(VALUE self) {
481 int32_t size = read_varint64(self);
482 uint8_t key_and_value_type = size == 0 ? 0 : read_byte_direct(self);
483 return rb_ary_new3(3, INT2FIX(get_ttype(key_and_value_type >> 4)), INT2FIX(get_ttype(key_and_value_type & 0xf)), INT2FIX(size));
484}
485
486VALUE rb_thrift_compact_proto_read_list_begin(VALUE self) {
487 uint8_t size_and_type = read_byte_direct(self);
488 int32_t size = (size_and_type >> 4) & 0x0f;
489 if (size == 15) {
490 size = read_varint64(self);
491 }
492 uint8_t type = get_ttype(size_and_type & 0x0f);
493 return rb_ary_new3(2, INT2FIX(type), INT2FIX(size));
494}
495
496VALUE rb_thrift_compact_proto_read_set_begin(VALUE self) {
497 return rb_thrift_compact_proto_read_list_begin(self);
498}
499
500VALUE rb_thrift_compact_proto_read_bool(VALUE self) {
501 VALUE bool_value = rb_ivar_get(self, bool_value_id);
502 if (NIL_P(bool_value)) {
503 return read_byte_direct(self) == CTYPE_BOOLEAN_TRUE ? Qtrue : Qfalse;
504 } else {
505 rb_ivar_set(self, bool_value_id, Qnil);
506 return bool_value;
507 }
508}
509
510VALUE rb_thrift_compact_proto_read_byte(VALUE self) {
511 return INT2FIX(read_byte_direct(self));
512}
513
514VALUE rb_thrift_compact_proto_read_i16(VALUE self) {
515 return INT2FIX(read_i16(self));
516}
517
518VALUE rb_thrift_compact_proto_read_i32(VALUE self) {
519 return INT2NUM(zig_zag_to_int(read_varint64(self)));
520}
521
522VALUE rb_thrift_compact_proto_read_i64(VALUE self) {
523 return LL2NUM(zig_zag_to_ll(read_varint64(self)));
524}
525
526VALUE rb_thrift_compact_proto_read_double(VALUE self) {
527 union {
528 double f;
529 int64_t l;
530 } transfer;
531 VALUE bytes = READ(self, 8);
Bryan Duxburye3ab50d2009-03-25 21:06:53 +0000532 uint32_t lo = ((uint8_t)(RSTRING_PTR(bytes)[0]))
533 | (((uint8_t)(RSTRING_PTR(bytes)[1])) << 8)
534 | (((uint8_t)(RSTRING_PTR(bytes)[2])) << 16)
535 | (((uint8_t)(RSTRING_PTR(bytes)[3])) << 24);
536 uint64_t hi = (((uint8_t)(RSTRING_PTR(bytes)[4])))
537 | (((uint8_t)(RSTRING_PTR(bytes)[5])) << 8)
538 | (((uint8_t)(RSTRING_PTR(bytes)[6])) << 16)
539 | (((uint8_t)(RSTRING_PTR(bytes)[7])) << 24);
Bryan Duxburyd815c212009-03-19 18:57:43 +0000540 transfer.l = (hi << 32) | lo;
541
542 return rb_float_new(transfer.f);
543}
544
545VALUE rb_thrift_compact_proto_read_string(VALUE self) {
546 int64_t size = read_varint64(self);
547 return READ(self, size);
548}
549
550static void Init_constants() {
551 thrift_compact_protocol_class = rb_const_get(thrift_module, rb_intern("CompactProtocol"));
552
553 VERSION = rb_num2ll(rb_const_get(thrift_compact_protocol_class, rb_intern("VERSION")));
554 VERSION_MASK = rb_num2ll(rb_const_get(thrift_compact_protocol_class, rb_intern("VERSION_MASK")));
555 TYPE_MASK = rb_num2ll(rb_const_get(thrift_compact_protocol_class, rb_intern("TYPE_MASK")));
556 TYPE_SHIFT_AMOUNT = FIX2INT(rb_const_get(thrift_compact_protocol_class, rb_intern("TYPE_SHIFT_AMOUNT")));
557 PROTOCOL_ID = FIX2INT(rb_const_get(thrift_compact_protocol_class, rb_intern("PROTOCOL_ID")));
558
559 last_field_id = rb_intern("@last_field");
560 boolean_field_id = rb_intern("@boolean_field");
561 bool_value_id = rb_intern("@bool_value");
562}
563
564static void Init_rb_methods() {
565 rb_define_method(thrift_compact_protocol_class, "native?", rb_thrift_compact_proto_native_qmark, 0);
566
567 rb_define_method(thrift_compact_protocol_class, "write_message_begin", rb_thrift_compact_proto_write_message_begin, 3);
568 rb_define_method(thrift_compact_protocol_class, "write_field_begin", rb_thrift_compact_proto_write_field_begin, 3);
569 rb_define_method(thrift_compact_protocol_class, "write_field_stop", rb_thrift_compact_proto_write_field_stop, 0);
570 rb_define_method(thrift_compact_protocol_class, "write_map_begin", rb_thrift_compact_proto_write_map_begin, 3);
571 rb_define_method(thrift_compact_protocol_class, "write_list_begin", rb_thrift_compact_proto_write_list_begin, 2);
572 rb_define_method(thrift_compact_protocol_class, "write_set_begin", rb_thrift_compact_proto_write_set_begin, 2);
573 rb_define_method(thrift_compact_protocol_class, "write_byte", rb_thrift_compact_proto_write_byte, 1);
574 rb_define_method(thrift_compact_protocol_class, "write_bool", rb_thrift_compact_proto_write_bool, 1);
575 rb_define_method(thrift_compact_protocol_class, "write_i16", rb_thrift_compact_proto_write_i16, 1);
576 rb_define_method(thrift_compact_protocol_class, "write_i32", rb_thrift_compact_proto_write_i32, 1);
577 rb_define_method(thrift_compact_protocol_class, "write_i64", rb_thrift_compact_proto_write_i64, 1);
578 rb_define_method(thrift_compact_protocol_class, "write_double", rb_thrift_compact_proto_write_double, 1);
579 rb_define_method(thrift_compact_protocol_class, "write_string", rb_thrift_compact_proto_write_string, 1);
580
581 rb_define_method(thrift_compact_protocol_class, "write_message_end", rb_thrift_compact_proto_write_message_end, 0);
582 rb_define_method(thrift_compact_protocol_class, "write_struct_begin", rb_thrift_compact_proto_write_struct_begin, 1);
583 rb_define_method(thrift_compact_protocol_class, "write_struct_end", rb_thrift_compact_proto_write_struct_end, 0);
584 rb_define_method(thrift_compact_protocol_class, "write_field_end", rb_thrift_compact_proto_write_field_end, 0);
585 rb_define_method(thrift_compact_protocol_class, "write_map_end", rb_thrift_compact_proto_write_map_end, 0);
586 rb_define_method(thrift_compact_protocol_class, "write_list_end", rb_thrift_compact_proto_write_list_end, 0);
587 rb_define_method(thrift_compact_protocol_class, "write_set_end", rb_thrift_compact_proto_write_set_end, 0);
588
589
590 rb_define_method(thrift_compact_protocol_class, "read_message_begin", rb_thrift_compact_proto_read_message_begin, 0);
591 rb_define_method(thrift_compact_protocol_class, "read_field_begin", rb_thrift_compact_proto_read_field_begin, 0);
592 rb_define_method(thrift_compact_protocol_class, "read_map_begin", rb_thrift_compact_proto_read_map_begin, 0);
593 rb_define_method(thrift_compact_protocol_class, "read_list_begin", rb_thrift_compact_proto_read_list_begin, 0);
594 rb_define_method(thrift_compact_protocol_class, "read_set_begin", rb_thrift_compact_proto_read_set_begin, 0);
595 rb_define_method(thrift_compact_protocol_class, "read_byte", rb_thrift_compact_proto_read_byte, 0);
596 rb_define_method(thrift_compact_protocol_class, "read_bool", rb_thrift_compact_proto_read_bool, 0);
597 rb_define_method(thrift_compact_protocol_class, "read_i16", rb_thrift_compact_proto_read_i16, 0);
598 rb_define_method(thrift_compact_protocol_class, "read_i32", rb_thrift_compact_proto_read_i32, 0);
599 rb_define_method(thrift_compact_protocol_class, "read_i64", rb_thrift_compact_proto_read_i64, 0);
600 rb_define_method(thrift_compact_protocol_class, "read_double", rb_thrift_compact_proto_read_double, 0);
601 rb_define_method(thrift_compact_protocol_class, "read_string", rb_thrift_compact_proto_read_string, 0);
602
603 rb_define_method(thrift_compact_protocol_class, "read_message_end", rb_thrift_compact_proto_read_message_end, 0);
604 rb_define_method(thrift_compact_protocol_class, "read_struct_begin", rb_thrift_compact_proto_read_struct_begin, 0);
605 rb_define_method(thrift_compact_protocol_class, "read_struct_end", rb_thrift_compact_proto_read_struct_end, 0);
606 rb_define_method(thrift_compact_protocol_class, "read_field_end", rb_thrift_compact_proto_read_field_end, 0);
607 rb_define_method(thrift_compact_protocol_class, "read_map_end", rb_thrift_compact_proto_read_map_end, 0);
608 rb_define_method(thrift_compact_protocol_class, "read_list_end", rb_thrift_compact_proto_read_list_end, 0);
609 rb_define_method(thrift_compact_protocol_class, "read_set_end", rb_thrift_compact_proto_read_set_end, 0);
610}
611
Bryan Duxburyd815c212009-03-19 18:57:43 +0000612void Init_compact_protocol() {
613 Init_constants();
614 Init_rb_methods();
Bryan Duxburyd815c212009-03-19 18:57:43 +0000615}