blob: d717ff50cf22901d8ab3624ad0b0b6159dd70a2c [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>
23#include <constants.h>
24#include <struct.h>
25#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);
89 rb_raise(rb_eStandardError, str);
90 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;
291 transfer.f = RFLOAT(rb_Float(dub))->value;
292 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);
307 write_varint32(transport, RSTRING(str)->len);
308 WRITE(transport, RSTRING(str)->ptr, RSTRING(str)->len);
309 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);
351 rb_raise(rb_eStandardError, str);
352 return 0;
353 }
354}
355
356static char read_byte_direct(VALUE self) {
357 return (RSTRING(READ(self, 1))->ptr)[0];
358}
359
360static int64_t zig_zag_to_ll(int64_t n) {
361 return (((uint64_t)n) >> 1) ^ -(n & 1);
362}
363
364static int32_t zig_zag_to_int(int32_t n) {
365 return (((uint32_t)n) >> 1) ^ -(n & 1);
366}
367
368static int64_t read_varint64(VALUE self) {
369 int shift = 0;
370 int64_t result = 0;
371 while (true) {
372 int8_t b = read_byte_direct(self);
373 result = result | ((uint64_t)(b & 0x7f) << shift);
374 if ((b & 0x80) != 0x80) {
375 break;
376 }
377 shift += 7;
378 }
379 return result;
380}
381
382static int16_t read_i16(VALUE self) {
383 return zig_zag_to_int((int32_t)read_varint64(self));
384}
385
386static VALUE get_protocol_exception(VALUE code, VALUE message) {
387 VALUE args[2];
388 args[0] = code;
389 args[1] = message;
390 return rb_class_new_instance(2, (VALUE*)&args, protocol_exception_class);
391}
392
393VALUE rb_thrift_compact_proto_read_message_end(VALUE self) {
394 return Qnil;
395}
396
397VALUE rb_thrift_compact_proto_read_struct_begin(VALUE self) {
398 rb_ary_push(rb_ivar_get(self, last_field_id), INT2FIX(0));
399 return Qnil;
400}
401
402VALUE rb_thrift_compact_proto_read_struct_end(VALUE self) {
403 rb_ary_pop(rb_ivar_get(self, last_field_id));
404 return Qnil;
405}
406
407VALUE rb_thrift_compact_proto_read_field_end(VALUE self) {
408 return Qnil;
409}
410
411VALUE rb_thrift_compact_proto_read_map_end(VALUE self) {
412 return Qnil;
413}
414
415VALUE rb_thrift_compact_proto_read_list_end(VALUE self) {
416 return Qnil;
417}
418
419VALUE rb_thrift_compact_proto_read_set_end(VALUE self) {
420 return Qnil;
421}
422
423VALUE rb_thrift_compact_proto_read_message_begin(VALUE self) {
424 int8_t protocol_id = read_byte_direct(self);
425 if (protocol_id != PROTOCOL_ID) {
426 char buf[100];
427 int len = sprintf(buf, "Expected protocol id %d but got %d", PROTOCOL_ID, protocol_id);
428 buf[len] = 0;
429 rb_exc_raise(get_protocol_exception(INT2FIX(-1), rb_str_new2(buf)));
430 }
431
432 int8_t version_and_type = read_byte_direct(self);
433 int8_t version = version_and_type & VERSION_MASK;
434 if (version != VERSION) {
435 char buf[100];
436 int len = sprintf(buf, "Expected version id %d but got %d", version, VERSION);
437 buf[len] = 0;
438 rb_exc_raise(get_protocol_exception(INT2FIX(-1), rb_str_new2(buf)));
439 }
440
441 int8_t type = (version_and_type >> TYPE_SHIFT_AMOUNT) & 0x03;
442 int32_t seqid = read_varint64(self);
443 VALUE messageName = rb_thrift_compact_proto_read_string(self);
444 return rb_ary_new3(3, messageName, INT2FIX(type), INT2NUM(seqid));
445}
446
447VALUE rb_thrift_compact_proto_read_field_begin(VALUE self) {
448 int8_t type = read_byte_direct(self);
449 // if it's a stop, then we can return immediately, as the struct is over.
450 if ((type & 0x0f) == TTYPE_STOP) {
451 return rb_ary_new3(3, Qnil, INT2FIX(0), INT2FIX(0));
452 } else {
453 int field_id = 0;
454
455 // mask off the 4 MSB of the type header. it could contain a field id delta.
456 uint8_t modifier = ((type & 0xf0) >> 4);
457
458 if (modifier == 0) {
459 // not a delta. look ahead for the zigzag varint field id.
460 field_id = read_i16(self);
461 } else {
462 // has a delta. add the delta to the last read field id.
463 field_id = LAST_ID(self) + modifier;
464 }
465
466 // if this happens to be a boolean field, the value is encoded in the type
467 if (is_bool_type(type)) {
468 // save the boolean value in a special instance variable.
469 rb_ivar_set(self, bool_value_id, (type & 0x0f) == CTYPE_BOOLEAN_TRUE ? Qtrue : Qfalse);
470 }
471
472 // push the new field onto the field stack so we can keep the deltas going.
473 SET_LAST_ID(self, INT2FIX(field_id));
474 return rb_ary_new3(3, Qnil, INT2FIX(get_ttype(type & 0x0f)), INT2FIX(field_id));
475 }
476}
477
478VALUE rb_thrift_compact_proto_read_map_begin(VALUE self) {
479 int32_t size = read_varint64(self);
480 uint8_t key_and_value_type = size == 0 ? 0 : read_byte_direct(self);
481 return rb_ary_new3(3, INT2FIX(get_ttype(key_and_value_type >> 4)), INT2FIX(get_ttype(key_and_value_type & 0xf)), INT2FIX(size));
482}
483
484VALUE rb_thrift_compact_proto_read_list_begin(VALUE self) {
485 uint8_t size_and_type = read_byte_direct(self);
486 int32_t size = (size_and_type >> 4) & 0x0f;
487 if (size == 15) {
488 size = read_varint64(self);
489 }
490 uint8_t type = get_ttype(size_and_type & 0x0f);
491 return rb_ary_new3(2, INT2FIX(type), INT2FIX(size));
492}
493
494VALUE rb_thrift_compact_proto_read_set_begin(VALUE self) {
495 return rb_thrift_compact_proto_read_list_begin(self);
496}
497
498VALUE rb_thrift_compact_proto_read_bool(VALUE self) {
499 VALUE bool_value = rb_ivar_get(self, bool_value_id);
500 if (NIL_P(bool_value)) {
501 return read_byte_direct(self) == CTYPE_BOOLEAN_TRUE ? Qtrue : Qfalse;
502 } else {
503 rb_ivar_set(self, bool_value_id, Qnil);
504 return bool_value;
505 }
506}
507
508VALUE rb_thrift_compact_proto_read_byte(VALUE self) {
509 return INT2FIX(read_byte_direct(self));
510}
511
512VALUE rb_thrift_compact_proto_read_i16(VALUE self) {
513 return INT2FIX(read_i16(self));
514}
515
516VALUE rb_thrift_compact_proto_read_i32(VALUE self) {
517 return INT2NUM(zig_zag_to_int(read_varint64(self)));
518}
519
520VALUE rb_thrift_compact_proto_read_i64(VALUE self) {
521 return LL2NUM(zig_zag_to_ll(read_varint64(self)));
522}
523
524VALUE rb_thrift_compact_proto_read_double(VALUE self) {
525 union {
526 double f;
527 int64_t l;
528 } transfer;
529 VALUE bytes = READ(self, 8);
530 uint32_t lo = ((uint8_t)(RSTRING(bytes)->ptr[0]))
531 | (((uint8_t)(RSTRING(bytes)->ptr[1])) << 8)
532 | (((uint8_t)(RSTRING(bytes)->ptr[2])) << 16)
533 | (((uint8_t)(RSTRING(bytes)->ptr[3])) << 24);
534 uint64_t hi = (((uint8_t)(RSTRING(bytes)->ptr[4])))
535 | (((uint8_t)(RSTRING(bytes)->ptr[5])) << 8)
536 | (((uint8_t)(RSTRING(bytes)->ptr[6])) << 16)
537 | (((uint8_t)(RSTRING(bytes)->ptr[7])) << 24);
538 transfer.l = (hi << 32) | lo;
539
540 return rb_float_new(transfer.f);
541}
542
543VALUE rb_thrift_compact_proto_read_string(VALUE self) {
544 int64_t size = read_varint64(self);
545 return READ(self, size);
546}
547
548static void Init_constants() {
549 thrift_compact_protocol_class = rb_const_get(thrift_module, rb_intern("CompactProtocol"));
550
551 VERSION = rb_num2ll(rb_const_get(thrift_compact_protocol_class, rb_intern("VERSION")));
552 VERSION_MASK = rb_num2ll(rb_const_get(thrift_compact_protocol_class, rb_intern("VERSION_MASK")));
553 TYPE_MASK = rb_num2ll(rb_const_get(thrift_compact_protocol_class, rb_intern("TYPE_MASK")));
554 TYPE_SHIFT_AMOUNT = FIX2INT(rb_const_get(thrift_compact_protocol_class, rb_intern("TYPE_SHIFT_AMOUNT")));
555 PROTOCOL_ID = FIX2INT(rb_const_get(thrift_compact_protocol_class, rb_intern("PROTOCOL_ID")));
556
557 last_field_id = rb_intern("@last_field");
558 boolean_field_id = rb_intern("@boolean_field");
559 bool_value_id = rb_intern("@bool_value");
560}
561
562static void Init_rb_methods() {
563 rb_define_method(thrift_compact_protocol_class, "native?", rb_thrift_compact_proto_native_qmark, 0);
564
565 rb_define_method(thrift_compact_protocol_class, "write_message_begin", rb_thrift_compact_proto_write_message_begin, 3);
566 rb_define_method(thrift_compact_protocol_class, "write_field_begin", rb_thrift_compact_proto_write_field_begin, 3);
567 rb_define_method(thrift_compact_protocol_class, "write_field_stop", rb_thrift_compact_proto_write_field_stop, 0);
568 rb_define_method(thrift_compact_protocol_class, "write_map_begin", rb_thrift_compact_proto_write_map_begin, 3);
569 rb_define_method(thrift_compact_protocol_class, "write_list_begin", rb_thrift_compact_proto_write_list_begin, 2);
570 rb_define_method(thrift_compact_protocol_class, "write_set_begin", rb_thrift_compact_proto_write_set_begin, 2);
571 rb_define_method(thrift_compact_protocol_class, "write_byte", rb_thrift_compact_proto_write_byte, 1);
572 rb_define_method(thrift_compact_protocol_class, "write_bool", rb_thrift_compact_proto_write_bool, 1);
573 rb_define_method(thrift_compact_protocol_class, "write_i16", rb_thrift_compact_proto_write_i16, 1);
574 rb_define_method(thrift_compact_protocol_class, "write_i32", rb_thrift_compact_proto_write_i32, 1);
575 rb_define_method(thrift_compact_protocol_class, "write_i64", rb_thrift_compact_proto_write_i64, 1);
576 rb_define_method(thrift_compact_protocol_class, "write_double", rb_thrift_compact_proto_write_double, 1);
577 rb_define_method(thrift_compact_protocol_class, "write_string", rb_thrift_compact_proto_write_string, 1);
578
579 rb_define_method(thrift_compact_protocol_class, "write_message_end", rb_thrift_compact_proto_write_message_end, 0);
580 rb_define_method(thrift_compact_protocol_class, "write_struct_begin", rb_thrift_compact_proto_write_struct_begin, 1);
581 rb_define_method(thrift_compact_protocol_class, "write_struct_end", rb_thrift_compact_proto_write_struct_end, 0);
582 rb_define_method(thrift_compact_protocol_class, "write_field_end", rb_thrift_compact_proto_write_field_end, 0);
583 rb_define_method(thrift_compact_protocol_class, "write_map_end", rb_thrift_compact_proto_write_map_end, 0);
584 rb_define_method(thrift_compact_protocol_class, "write_list_end", rb_thrift_compact_proto_write_list_end, 0);
585 rb_define_method(thrift_compact_protocol_class, "write_set_end", rb_thrift_compact_proto_write_set_end, 0);
586
587
588 rb_define_method(thrift_compact_protocol_class, "read_message_begin", rb_thrift_compact_proto_read_message_begin, 0);
589 rb_define_method(thrift_compact_protocol_class, "read_field_begin", rb_thrift_compact_proto_read_field_begin, 0);
590 rb_define_method(thrift_compact_protocol_class, "read_map_begin", rb_thrift_compact_proto_read_map_begin, 0);
591 rb_define_method(thrift_compact_protocol_class, "read_list_begin", rb_thrift_compact_proto_read_list_begin, 0);
592 rb_define_method(thrift_compact_protocol_class, "read_set_begin", rb_thrift_compact_proto_read_set_begin, 0);
593 rb_define_method(thrift_compact_protocol_class, "read_byte", rb_thrift_compact_proto_read_byte, 0);
594 rb_define_method(thrift_compact_protocol_class, "read_bool", rb_thrift_compact_proto_read_bool, 0);
595 rb_define_method(thrift_compact_protocol_class, "read_i16", rb_thrift_compact_proto_read_i16, 0);
596 rb_define_method(thrift_compact_protocol_class, "read_i32", rb_thrift_compact_proto_read_i32, 0);
597 rb_define_method(thrift_compact_protocol_class, "read_i64", rb_thrift_compact_proto_read_i64, 0);
598 rb_define_method(thrift_compact_protocol_class, "read_double", rb_thrift_compact_proto_read_double, 0);
599 rb_define_method(thrift_compact_protocol_class, "read_string", rb_thrift_compact_proto_read_string, 0);
600
601 rb_define_method(thrift_compact_protocol_class, "read_message_end", rb_thrift_compact_proto_read_message_end, 0);
602 rb_define_method(thrift_compact_protocol_class, "read_struct_begin", rb_thrift_compact_proto_read_struct_begin, 0);
603 rb_define_method(thrift_compact_protocol_class, "read_struct_end", rb_thrift_compact_proto_read_struct_end, 0);
604 rb_define_method(thrift_compact_protocol_class, "read_field_end", rb_thrift_compact_proto_read_field_end, 0);
605 rb_define_method(thrift_compact_protocol_class, "read_map_end", rb_thrift_compact_proto_read_map_end, 0);
606 rb_define_method(thrift_compact_protocol_class, "read_list_end", rb_thrift_compact_proto_read_list_end, 0);
607 rb_define_method(thrift_compact_protocol_class, "read_set_end", rb_thrift_compact_proto_read_set_end, 0);
608}
609
610static void Init_npmt() {
611 native_proto_method_table *npmt;
612 npmt = ALLOC(native_proto_method_table);
613
614 npmt->write_field_begin = rb_thrift_compact_proto_write_field_begin;
615 npmt->write_field_stop = rb_thrift_compact_proto_write_field_stop;
616 npmt->write_map_begin = rb_thrift_compact_proto_write_map_begin;
617 npmt->write_list_begin = rb_thrift_compact_proto_write_list_begin;
618 npmt->write_set_begin = rb_thrift_compact_proto_write_set_begin;
619 npmt->write_byte = rb_thrift_compact_proto_write_byte;
620 npmt->write_bool = rb_thrift_compact_proto_write_bool;
621 npmt->write_i16 = rb_thrift_compact_proto_write_i16;
622 npmt->write_i32 = rb_thrift_compact_proto_write_i32;
623 npmt->write_i64 = rb_thrift_compact_proto_write_i64;
624 npmt->write_double = rb_thrift_compact_proto_write_double;
625 npmt->write_string = rb_thrift_compact_proto_write_string;
626 npmt->write_message_end = rb_thrift_compact_proto_write_message_end;
627 npmt->write_struct_begin = rb_thrift_compact_proto_write_struct_begin;
628 npmt->write_struct_end = rb_thrift_compact_proto_write_struct_end;
629 npmt->write_field_end = rb_thrift_compact_proto_write_field_end;
630 npmt->write_map_end = rb_thrift_compact_proto_write_map_end;
631 npmt->write_list_end = rb_thrift_compact_proto_write_list_end;
632 npmt->write_set_end = rb_thrift_compact_proto_write_set_end;
633
634 npmt->read_message_begin = rb_thrift_compact_proto_read_message_begin;
635 npmt->read_field_begin = rb_thrift_compact_proto_read_field_begin;
636 npmt->read_map_begin = rb_thrift_compact_proto_read_map_begin;
637 npmt->read_list_begin = rb_thrift_compact_proto_read_list_begin;
638 npmt->read_set_begin = rb_thrift_compact_proto_read_set_begin;
639 npmt->read_byte = rb_thrift_compact_proto_read_byte;
640 npmt->read_bool = rb_thrift_compact_proto_read_bool;
641 npmt->read_i16 = rb_thrift_compact_proto_read_i16;
642 npmt->read_i32 = rb_thrift_compact_proto_read_i32;
643 npmt->read_i64 = rb_thrift_compact_proto_read_i64;
644 npmt->read_double = rb_thrift_compact_proto_read_double;
645 npmt->read_string = rb_thrift_compact_proto_read_string;
646 npmt->read_message_end = rb_thrift_compact_proto_read_message_end;
647 npmt->read_struct_begin = rb_thrift_compact_proto_read_struct_begin;
648 npmt->read_struct_end = rb_thrift_compact_proto_read_struct_end;
649 npmt->read_field_end = rb_thrift_compact_proto_read_field_end;
650 npmt->read_map_end = rb_thrift_compact_proto_read_map_end;
651 npmt->read_list_end = rb_thrift_compact_proto_read_list_end;
652 npmt->read_set_end = rb_thrift_compact_proto_read_set_end;
653
654 VALUE method_table_object = Data_Wrap_Struct(rb_cObject, 0, free, npmt);
655 rb_const_set(thrift_compact_protocol_class, rb_intern("@native_method_table"), method_table_object);
656}
657
658
659
660void Init_compact_protocol() {
661 Init_constants();
662 Init_rb_methods();
663 Init_npmt();
664}