blob: 09b9fe49c498737c69397229ef56db1eb3d24ebc [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 Duxburyc0166282009-02-02 00:48:17 +000020#include <ruby.h>
21#include <struct.h>
22#include <binary_protocol_accelerated.h>
Bryan Duxburyd815c212009-03-19 18:57:43 +000023#include <compact_protocol.h>
Bryan Duxburyc0166282009-02-02 00:48:17 +000024#include <protocol.h>
25#include <memory_buffer.h>
26
27// cached classes/modules
28VALUE rb_cSet;
29VALUE thrift_module;
30VALUE thrift_types_module;
31
32// TType constants
33int TTYPE_STOP;
34int TTYPE_BOOL;
35int TTYPE_BYTE;
36int TTYPE_I16;
37int TTYPE_I32;
38int TTYPE_I64;
39int TTYPE_DOUBLE;
40int TTYPE_STRING;
41int TTYPE_MAP;
42int TTYPE_SET;
43int TTYPE_LIST;
44int TTYPE_STRUCT;
45
46// method ids
47ID validate_method_id;
48ID write_struct_begin_method_id;
49ID write_struct_end_method_id;
50ID write_field_begin_method_id;
51ID write_field_end_method_id;
52ID write_boolean_method_id;
53ID write_byte_method_id;
54ID write_i16_method_id;
55ID write_i32_method_id;
56ID write_i64_method_id;
57ID write_double_method_id;
58ID write_string_method_id;
59ID write_map_begin_method_id;
60ID write_map_end_method_id;
61ID write_list_begin_method_id;
62ID write_list_end_method_id;
63ID write_set_begin_method_id;
64ID write_set_end_method_id;
65ID size_method_id;
66ID read_bool_method_id;
67ID read_byte_method_id;
68ID read_i16_method_id;
69ID read_i32_method_id;
70ID read_i64_method_id;
71ID read_string_method_id;
72ID read_double_method_id;
73ID read_map_begin_method_id;
74ID read_map_end_method_id;
75ID read_list_begin_method_id;
76ID read_list_end_method_id;
77ID read_set_begin_method_id;
78ID read_set_end_method_id;
79ID read_struct_begin_method_id;
80ID read_struct_end_method_id;
81ID read_field_begin_method_id;
82ID read_field_end_method_id;
83ID keys_method_id;
84ID entries_method_id;
85ID name_method_id;
86ID sort_method_id;
87ID write_field_stop_method_id;
88ID skip_method_id;
89ID write_method_id;
Bryan Duxbury5b8b4842009-04-01 20:10:15 +000090ID read_all_method_id;
Bryan Duxburyc0166282009-02-02 00:48:17 +000091ID native_qmark_method_id;
92
93// constant ids
94ID fields_const_id;
95ID transport_ivar_id;
Kevin Clarkead33822009-02-04 22:43:59 +000096ID strict_read_ivar_id;
97ID strict_write_ivar_id;
Bryan Duxburyc0166282009-02-02 00:48:17 +000098
99// cached symbols
100VALUE type_sym;
101VALUE name_sym;
102VALUE key_sym;
103VALUE value_sym;
104VALUE element_sym;
105VALUE class_sym;
106VALUE protocol_exception_class;
107
108void Init_thrift_native() {
109 // cached classes
110 thrift_module = rb_const_get(rb_cObject, rb_intern("Thrift"));
111 thrift_types_module = rb_const_get(thrift_module, rb_intern("Types"));
112 rb_cSet = rb_const_get(rb_cObject, rb_intern("Set"));
113 protocol_exception_class = rb_const_get(thrift_module, rb_intern("ProtocolException"));
Bryan Duxbury33e190c2010-02-16 21:19:01 +0000114
Bryan Duxburyc0166282009-02-02 00:48:17 +0000115 // Init ttype constants
116 TTYPE_BOOL = FIX2INT(rb_const_get(thrift_types_module, rb_intern("BOOL")));
117 TTYPE_BYTE = FIX2INT(rb_const_get(thrift_types_module, rb_intern("BYTE")));
118 TTYPE_I16 = FIX2INT(rb_const_get(thrift_types_module, rb_intern("I16")));
119 TTYPE_I32 = FIX2INT(rb_const_get(thrift_types_module, rb_intern("I32")));
120 TTYPE_I64 = FIX2INT(rb_const_get(thrift_types_module, rb_intern("I64")));
121 TTYPE_DOUBLE = FIX2INT(rb_const_get(thrift_types_module, rb_intern("DOUBLE")));
122 TTYPE_STRING = FIX2INT(rb_const_get(thrift_types_module, rb_intern("STRING")));
123 TTYPE_MAP = FIX2INT(rb_const_get(thrift_types_module, rb_intern("MAP")));
124 TTYPE_SET = FIX2INT(rb_const_get(thrift_types_module, rb_intern("SET")));
125 TTYPE_LIST = FIX2INT(rb_const_get(thrift_types_module, rb_intern("LIST")));
126 TTYPE_STRUCT = FIX2INT(rb_const_get(thrift_types_module, rb_intern("STRUCT")));
127
128 // method ids
129 validate_method_id = rb_intern("validate");
130 write_struct_begin_method_id = rb_intern("write_struct_begin");
131 write_struct_end_method_id = rb_intern("write_struct_end");
132 write_field_begin_method_id = rb_intern("write_field_begin");
133 write_field_end_method_id = rb_intern("write_field_end");
134 write_boolean_method_id = rb_intern("write_bool");
135 write_byte_method_id = rb_intern("write_byte");
136 write_i16_method_id = rb_intern("write_i16");
137 write_i32_method_id = rb_intern("write_i32");
138 write_i64_method_id = rb_intern("write_i64");
139 write_double_method_id = rb_intern("write_double");
140 write_string_method_id = rb_intern("write_string");
141 write_map_begin_method_id = rb_intern("write_map_begin");
142 write_map_end_method_id = rb_intern("write_map_end");
143 write_list_begin_method_id = rb_intern("write_list_begin");
144 write_list_end_method_id = rb_intern("write_list_end");
145 write_set_begin_method_id = rb_intern("write_set_begin");
146 write_set_end_method_id = rb_intern("write_set_end");
147 size_method_id = rb_intern("size");
148 read_bool_method_id = rb_intern("read_bool");
149 read_byte_method_id = rb_intern("read_byte");
150 read_i16_method_id = rb_intern("read_i16");
151 read_i32_method_id = rb_intern("read_i32");
152 read_i64_method_id = rb_intern("read_i64");
153 read_string_method_id = rb_intern("read_string");
154 read_double_method_id = rb_intern("read_double");
155 read_map_begin_method_id = rb_intern("read_map_begin");
156 read_map_end_method_id = rb_intern("read_map_end");
157 read_list_begin_method_id = rb_intern("read_list_begin");
158 read_list_end_method_id = rb_intern("read_list_end");
159 read_set_begin_method_id = rb_intern("read_set_begin");
160 read_set_end_method_id = rb_intern("read_set_end");
161 read_struct_begin_method_id = rb_intern("read_struct_begin");
162 read_struct_end_method_id = rb_intern("read_struct_end");
163 read_field_begin_method_id = rb_intern("read_field_begin");
164 read_field_end_method_id = rb_intern("read_field_end");
165 keys_method_id = rb_intern("keys");
166 entries_method_id = rb_intern("entries");
167 name_method_id = rb_intern("name");
168 sort_method_id = rb_intern("sort");
169 write_field_stop_method_id = rb_intern("write_field_stop");
170 skip_method_id = rb_intern("skip");
171 write_method_id = rb_intern("write");
Bryan Duxbury5b8b4842009-04-01 20:10:15 +0000172 read_all_method_id = rb_intern("read_all");
Bryan Duxburyc0166282009-02-02 00:48:17 +0000173 native_qmark_method_id = rb_intern("native?");
Bryan Duxbury33e190c2010-02-16 21:19:01 +0000174
Bryan Duxburyc0166282009-02-02 00:48:17 +0000175 // constant ids
176 fields_const_id = rb_intern("FIELDS");
177 transport_ivar_id = rb_intern("@trans");
Kevin Clarkead33822009-02-04 22:43:59 +0000178 strict_read_ivar_id = rb_intern("@strict_read");
179 strict_write_ivar_id = rb_intern("@strict_write");
Bryan Duxbury33e190c2010-02-16 21:19:01 +0000180
Bryan Duxburyc0166282009-02-02 00:48:17 +0000181 // cached symbols
182 type_sym = ID2SYM(rb_intern("type"));
183 name_sym = ID2SYM(rb_intern("name"));
184 key_sym = ID2SYM(rb_intern("key"));
185 value_sym = ID2SYM(rb_intern("value"));
186 element_sym = ID2SYM(rb_intern("element"));
187 class_sym = ID2SYM(rb_intern("class"));
188
189 Init_protocol();
190 Init_struct();
191 Init_binary_protocol_accelerated();
Bryan Duxburyd815c212009-03-19 18:57:43 +0000192 Init_compact_protocol();
Bryan Duxburyc0166282009-02-02 00:48:17 +0000193 Init_memory_buffer();
Bryan Duxbury1e80d442009-02-03 18:16:54 +0000194}