blob: bbbeede9d0003c84f2b61d74572e1bae7e2f6e4f [file] [log] [blame]
nnoble097ef9b2014-12-01 17:06:10 -08001/*
2 *
Craig Tiller06059952015-02-18 08:34:56 -08003 * Copyright 2015, Google Inc.
nnoble097ef9b2014-12-01 17:06:10 -08004 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met:
9 *
10 * * Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * * Redistributions in binary form must reproduce the above
13 * copyright notice, this list of conditions and the following disclaimer
14 * in the documentation and/or other materials provided with the
15 * distribution.
16 * * Neither the name of Google Inc. nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 *
32 */
33
34#include "rb_grpc.h"
35
36#include <math.h>
Yuki Yugui Sonoda22887912015-04-16 20:57:17 +090037#include <ruby/ruby.h>
38#include <ruby/vm.h>
nnoble097ef9b2014-12-01 17:06:10 -080039#include <sys/time.h>
40
41#include <grpc/grpc.h>
42#include <grpc/support/time.h>
nnoble097ef9b2014-12-01 17:06:10 -080043#include "rb_call.h"
44#include "rb_channel.h"
Tim Emiola9332ea62015-10-27 23:48:29 -070045#include "rb_channel_credentials.h"
nnoble097ef9b2014-12-01 17:06:10 -080046#include "rb_completion_queue.h"
nnoble097ef9b2014-12-01 17:06:10 -080047#include "rb_server.h"
nnoble0c475f02014-12-05 15:37:39 -080048#include "rb_server_credentials.h"
nnoble097ef9b2014-12-01 17:06:10 -080049
Yuki Yugui Sonoda3c88e5d2015-04-16 20:09:00 +090050static VALUE grpc_rb_cTimeVal = Qnil;
nnoble097ef9b2014-12-01 17:06:10 -080051
Yuki Yugui Sonodad441c2e2015-04-11 15:33:58 +090052static rb_data_type_t grpc_rb_timespec_data_type = {
53 "gpr_timespec",
murgatroid9987afb5d2015-07-16 16:01:02 -070054 {GRPC_RB_GC_NOT_MARKED, GRPC_RB_GC_DONT_FREE, GRPC_RB_MEMSIZE_UNAVAILABLE,
55 {NULL, NULL}},
Yuki Yugui Sonodad441c2e2015-04-11 15:33:58 +090056 NULL,
57 NULL,
58 RUBY_TYPED_FREE_IMMEDIATELY};
59
nnoble097ef9b2014-12-01 17:06:10 -080060/* Alloc func that blocks allocation of a given object by raising an
61 * exception. */
62VALUE grpc_rb_cannot_alloc(VALUE cls) {
63 rb_raise(rb_eTypeError,
64 "allocation of %s only allowed from the gRPC native layer",
65 rb_class2name(cls));
66 return Qnil;
67}
68
69/* Init func that fails by raising an exception. */
70VALUE grpc_rb_cannot_init(VALUE self) {
71 rb_raise(rb_eTypeError,
72 "initialization of %s only allowed from the gRPC native layer",
73 rb_obj_classname(self));
74 return Qnil;
75}
76
77/* Init/Clone func that fails by raising an exception. */
78VALUE grpc_rb_cannot_init_copy(VALUE copy, VALUE self) {
murgatroid9987afb5d2015-07-16 16:01:02 -070079 (void)self;
nnoble097ef9b2014-12-01 17:06:10 -080080 rb_raise(rb_eTypeError,
81 "initialization of %s only allowed from the gRPC native layer",
82 rb_obj_classname(copy));
83 return Qnil;
84}
85
86/* id_tv_{,u}sec are accessor methods on Ruby Time instances. */
87static ID id_tv_sec;
88static ID id_tv_nsec;
89
90/**
91 * grpc_rb_time_timeval creates a time_eval from a ruby time object.
92 *
93 * This func is copied from ruby source, MRI/source/time.c, which is published
94 * under the same license as the ruby.h, on which the entire extensions is
95 * based.
96 */
97gpr_timespec grpc_rb_time_timeval(VALUE time, int interval) {
98 gpr_timespec t;
99 gpr_timespec *time_const;
100 const char *tstr = interval ? "time interval" : "time";
101 const char *want = " want <secs from epoch>|<Time>|<GRPC::TimeConst.*>";
102
Craig Tiller5a1e7fd2015-07-14 07:14:47 -0700103 t.clock_type = GPR_CLOCK_REALTIME;
nnoble097ef9b2014-12-01 17:06:10 -0800104 switch (TYPE(time)) {
nnoble097ef9b2014-12-01 17:06:10 -0800105 case T_DATA:
Yuki Yugui Sonodaa7d369e2015-04-11 11:48:36 +0900106 if (CLASS_OF(time) == grpc_rb_cTimeVal) {
Yuki Yugui Sonodad441c2e2015-04-11 15:33:58 +0900107 TypedData_Get_Struct(time, gpr_timespec, &grpc_rb_timespec_data_type,
108 time_const);
nnoble097ef9b2014-12-01 17:06:10 -0800109 t = *time_const;
110 } else if (CLASS_OF(time) == rb_cTime) {
Craig Tillerb5dcec52015-01-13 11:13:42 -0800111 t.tv_sec = NUM2INT(rb_funcall(time, id_tv_sec, 0));
nnoble097ef9b2014-12-01 17:06:10 -0800112 t.tv_nsec = NUM2INT(rb_funcall(time, id_tv_nsec, 0));
113 } else {
Craig Tillerb5dcec52015-01-13 11:13:42 -0800114 rb_raise(rb_eTypeError, "bad input: (%s)->c_timeval, got <%s>,%s", tstr,
115 rb_obj_classname(time), want);
nnoble097ef9b2014-12-01 17:06:10 -0800116 }
117 break;
118
119 case T_FIXNUM:
120 t.tv_sec = FIX2LONG(time);
121 if (interval && t.tv_sec < 0)
122 rb_raise(rb_eArgError, "%s must be positive", tstr);
123 t.tv_nsec = 0;
124 break;
125
126 case T_FLOAT:
mattnb9e15632015-02-28 23:45:58 +0900127 if (interval && RFLOAT_VALUE(time) < 0.0)
nnoble097ef9b2014-12-01 17:06:10 -0800128 rb_raise(rb_eArgError, "%s must be positive", tstr);
129 else {
130 double f, d;
131
mattnb9e15632015-02-28 23:45:58 +0900132 d = modf(RFLOAT_VALUE(time), &f);
nnoble097ef9b2014-12-01 17:06:10 -0800133 if (d < 0) {
134 d += 1;
135 f -= 1;
136 }
137 t.tv_sec = (time_t)f;
138 if (f != t.tv_sec) {
139 rb_raise(rb_eRangeError, "%f out of Time range",
mattnb9e15632015-02-28 23:45:58 +0900140 RFLOAT_VALUE(time));
nnoble097ef9b2014-12-01 17:06:10 -0800141 }
Marcin Wyszynski1a2ac332015-07-23 20:12:33 +0200142 t.tv_nsec = (int)(d * 1e9 + 0.5);
nnoble097ef9b2014-12-01 17:06:10 -0800143 }
144 break;
145
146 case T_BIGNUM:
147 t.tv_sec = NUM2LONG(time);
148 if (interval && t.tv_sec < 0)
149 rb_raise(rb_eArgError, "%s must be positive", tstr);
150 t.tv_nsec = 0;
151 break;
152
153 default:
Craig Tillerb5dcec52015-01-13 11:13:42 -0800154 rb_raise(rb_eTypeError, "bad input: (%s)->c_timeval, got <%s>,%s", tstr,
155 rb_obj_classname(time), want);
nnoble097ef9b2014-12-01 17:06:10 -0800156 break;
157 }
158 return t;
159}
160
Yuki Yugui Sonodaf0eee5f2015-04-16 20:25:28 +0900161static void Init_grpc_status_codes() {
temiola58327912014-12-15 17:51:16 -0800162 /* Constants representing the status codes or grpc_status_code in status.h */
Yuki Yugui Sonodaa7d369e2015-04-11 11:48:36 +0900163 VALUE grpc_rb_mStatusCodes =
164 rb_define_module_under(grpc_rb_mGrpcCore, "StatusCodes");
165 rb_define_const(grpc_rb_mStatusCodes, "OK", INT2NUM(GRPC_STATUS_OK));
166 rb_define_const(grpc_rb_mStatusCodes, "CANCELLED",
167 INT2NUM(GRPC_STATUS_CANCELLED));
168 rb_define_const(grpc_rb_mStatusCodes, "UNKNOWN",
169 INT2NUM(GRPC_STATUS_UNKNOWN));
170 rb_define_const(grpc_rb_mStatusCodes, "INVALID_ARGUMENT",
temiola58327912014-12-15 17:51:16 -0800171 INT2NUM(GRPC_STATUS_INVALID_ARGUMENT));
Yuki Yugui Sonodaa7d369e2015-04-11 11:48:36 +0900172 rb_define_const(grpc_rb_mStatusCodes, "DEADLINE_EXCEEDED",
temiola58327912014-12-15 17:51:16 -0800173 INT2NUM(GRPC_STATUS_DEADLINE_EXCEEDED));
Yuki Yugui Sonodaa7d369e2015-04-11 11:48:36 +0900174 rb_define_const(grpc_rb_mStatusCodes, "NOT_FOUND",
175 INT2NUM(GRPC_STATUS_NOT_FOUND));
176 rb_define_const(grpc_rb_mStatusCodes, "ALREADY_EXISTS",
temiola58327912014-12-15 17:51:16 -0800177 INT2NUM(GRPC_STATUS_ALREADY_EXISTS));
Yuki Yugui Sonodaa7d369e2015-04-11 11:48:36 +0900178 rb_define_const(grpc_rb_mStatusCodes, "PERMISSION_DENIED",
temiola58327912014-12-15 17:51:16 -0800179 INT2NUM(GRPC_STATUS_PERMISSION_DENIED));
Yuki Yugui Sonodaa7d369e2015-04-11 11:48:36 +0900180 rb_define_const(grpc_rb_mStatusCodes, "UNAUTHENTICATED",
temiola58327912014-12-15 17:51:16 -0800181 INT2NUM(GRPC_STATUS_UNAUTHENTICATED));
Yuki Yugui Sonodaa7d369e2015-04-11 11:48:36 +0900182 rb_define_const(grpc_rb_mStatusCodes, "RESOURCE_EXHAUSTED",
temiola58327912014-12-15 17:51:16 -0800183 INT2NUM(GRPC_STATUS_RESOURCE_EXHAUSTED));
Yuki Yugui Sonodaa7d369e2015-04-11 11:48:36 +0900184 rb_define_const(grpc_rb_mStatusCodes, "FAILED_PRECONDITION",
temiola58327912014-12-15 17:51:16 -0800185 INT2NUM(GRPC_STATUS_FAILED_PRECONDITION));
Yuki Yugui Sonodaa7d369e2015-04-11 11:48:36 +0900186 rb_define_const(grpc_rb_mStatusCodes, "ABORTED",
187 INT2NUM(GRPC_STATUS_ABORTED));
188 rb_define_const(grpc_rb_mStatusCodes, "OUT_OF_RANGE",
temiola58327912014-12-15 17:51:16 -0800189 INT2NUM(GRPC_STATUS_OUT_OF_RANGE));
Yuki Yugui Sonodaa7d369e2015-04-11 11:48:36 +0900190 rb_define_const(grpc_rb_mStatusCodes, "UNIMPLEMENTED",
temiola58327912014-12-15 17:51:16 -0800191 INT2NUM(GRPC_STATUS_UNIMPLEMENTED));
Yuki Yugui Sonodaa7d369e2015-04-11 11:48:36 +0900192 rb_define_const(grpc_rb_mStatusCodes, "INTERNAL",
193 INT2NUM(GRPC_STATUS_INTERNAL));
194 rb_define_const(grpc_rb_mStatusCodes, "UNAVAILABLE",
temiola58327912014-12-15 17:51:16 -0800195 INT2NUM(GRPC_STATUS_UNAVAILABLE));
Yuki Yugui Sonodaa7d369e2015-04-11 11:48:36 +0900196 rb_define_const(grpc_rb_mStatusCodes, "DATA_LOSS",
197 INT2NUM(GRPC_STATUS_DATA_LOSS));
temiola58327912014-12-15 17:51:16 -0800198}
199
nnoble097ef9b2014-12-01 17:06:10 -0800200/* id_at is the constructor method of the ruby standard Time class. */
201static ID id_at;
202
203/* id_inspect is the inspect method found on various ruby objects. */
204static ID id_inspect;
205
206/* id_to_s is the to_s method found on various ruby objects. */
207static ID id_to_s;
208
Tim Emiola98a32d32015-03-28 01:48:44 -0700209/* Converts a wrapped time constant to a standard time. */
Yuki Yugui Sonodaf0eee5f2015-04-16 20:25:28 +0900210static VALUE grpc_rb_time_val_to_time(VALUE self) {
nnoble097ef9b2014-12-01 17:06:10 -0800211 gpr_timespec *time_const = NULL;
Craig Tiller94329d02015-07-23 09:52:11 -0700212 gpr_timespec real_time;
Yuki Yugui Sonodad441c2e2015-04-11 15:33:58 +0900213 TypedData_Get_Struct(self, gpr_timespec, &grpc_rb_timespec_data_type,
214 time_const);
Craig Tiller94329d02015-07-23 09:52:11 -0700215 real_time = gpr_convert_clock_type(*time_const, GPR_CLOCK_REALTIME);
216 return rb_funcall(rb_cTime, id_at, 2, INT2NUM(real_time.tv_sec),
217 INT2NUM(real_time.tv_nsec));
nnoble097ef9b2014-12-01 17:06:10 -0800218}
219
220/* Invokes inspect on the ctime version of the time val. */
Yuki Yugui Sonodaf0eee5f2015-04-16 20:25:28 +0900221static VALUE grpc_rb_time_val_inspect(VALUE self) {
nnoble097ef9b2014-12-01 17:06:10 -0800222 return rb_funcall(grpc_rb_time_val_to_time(self), id_inspect, 0);
223}
224
225/* Invokes to_s on the ctime version of the time val. */
Yuki Yugui Sonodaf0eee5f2015-04-16 20:25:28 +0900226static VALUE grpc_rb_time_val_to_s(VALUE self) {
nnoble097ef9b2014-12-01 17:06:10 -0800227 return rb_funcall(grpc_rb_time_val_to_time(self), id_to_s, 0);
228}
229
Craig Tiller354398f2015-07-13 09:16:03 -0700230static gpr_timespec zero_realtime;
231static gpr_timespec inf_future_realtime;
232static gpr_timespec inf_past_realtime;
233
nnoble097ef9b2014-12-01 17:06:10 -0800234/* Adds a module with constants that map to gpr's static timeval structs. */
Yuki Yugui Sonodaf0eee5f2015-04-16 20:25:28 +0900235static void Init_grpc_time_consts() {
Yuki Yugui Sonodaa7d369e2015-04-11 11:48:36 +0900236 VALUE grpc_rb_mTimeConsts =
237 rb_define_module_under(grpc_rb_mGrpcCore, "TimeConsts");
238 grpc_rb_cTimeVal =
239 rb_define_class_under(grpc_rb_mGrpcCore, "TimeSpec", rb_cObject);
Craig Tiller354398f2015-07-13 09:16:03 -0700240 zero_realtime = gpr_time_0(GPR_CLOCK_REALTIME);
241 inf_future_realtime = gpr_inf_future(GPR_CLOCK_REALTIME);
242 inf_past_realtime = gpr_inf_past(GPR_CLOCK_REALTIME);
Yuki Yugui Sonodad441c2e2015-04-11 15:33:58 +0900243 rb_define_const(
244 grpc_rb_mTimeConsts, "ZERO",
245 TypedData_Wrap_Struct(grpc_rb_cTimeVal, &grpc_rb_timespec_data_type,
Craig Tiller354398f2015-07-13 09:16:03 -0700246 (void *)&zero_realtime));
Yuki Yugui Sonodad441c2e2015-04-11 15:33:58 +0900247 rb_define_const(
248 grpc_rb_mTimeConsts, "INFINITE_FUTURE",
249 TypedData_Wrap_Struct(grpc_rb_cTimeVal, &grpc_rb_timespec_data_type,
Craig Tiller354398f2015-07-13 09:16:03 -0700250 (void *)&inf_future_realtime));
Yuki Yugui Sonodad441c2e2015-04-11 15:33:58 +0900251 rb_define_const(
252 grpc_rb_mTimeConsts, "INFINITE_PAST",
253 TypedData_Wrap_Struct(grpc_rb_cTimeVal, &grpc_rb_timespec_data_type,
Craig Tiller354398f2015-07-13 09:16:03 -0700254 (void *)&inf_past_realtime));
Yuki Yugui Sonodaa7d369e2015-04-11 11:48:36 +0900255 rb_define_method(grpc_rb_cTimeVal, "to_time", grpc_rb_time_val_to_time, 0);
256 rb_define_method(grpc_rb_cTimeVal, "inspect", grpc_rb_time_val_inspect, 0);
257 rb_define_method(grpc_rb_cTimeVal, "to_s", grpc_rb_time_val_to_s, 0);
nnoble097ef9b2014-12-01 17:06:10 -0800258 id_at = rb_intern("at");
259 id_inspect = rb_intern("inspect");
260 id_to_s = rb_intern("to_s");
261 id_tv_sec = rb_intern("tv_sec");
262 id_tv_nsec = rb_intern("tv_nsec");
263}
264
murgatroid9987afb5d2015-07-16 16:01:02 -0700265static void grpc_rb_shutdown(ruby_vm_t *vm) {
266 (void)vm;
267 grpc_shutdown();
268}
nnoble097ef9b2014-12-01 17:06:10 -0800269
Tim Emiola409e6c82015-02-17 17:46:35 -0800270/* Initialize the GRPC module structs */
temiola21bb60c2014-12-18 10:58:22 -0800271
Yuki Yugui Sonodaa7d369e2015-04-11 11:48:36 +0900272/* grpc_rb_sNewServerRpc is the struct that holds new server rpc details. */
273VALUE grpc_rb_sNewServerRpc = Qnil;
274/* grpc_rb_sStatus is the struct that holds status details. */
275VALUE grpc_rb_sStatus = Qnil;
temiola21bb60c2014-12-18 10:58:22 -0800276
Tim Emiola409e6c82015-02-17 17:46:35 -0800277/* Initialize the GRPC module. */
Yuki Yugui Sonodaa7d369e2015-04-11 11:48:36 +0900278VALUE grpc_rb_mGRPC = Qnil;
279VALUE grpc_rb_mGrpcCore = Qnil;
temiola21bb60c2014-12-18 10:58:22 -0800280
Yuki Yugui Sonoda99eb9f92015-04-16 20:09:55 +0900281/* cached Symbols for members in Status struct */
282VALUE sym_code = Qundef;
283VALUE sym_details = Qundef;
284VALUE sym_metadata = Qundef;
285
nnoble097ef9b2014-12-01 17:06:10 -0800286void Init_grpc() {
287 grpc_init();
288 ruby_vm_at_exit(grpc_rb_shutdown);
Yuki Yugui Sonodaa7d369e2015-04-11 11:48:36 +0900289 grpc_rb_mGRPC = rb_define_module("GRPC");
290 grpc_rb_mGrpcCore = rb_define_module_under(grpc_rb_mGRPC, "Core");
291 grpc_rb_sNewServerRpc =
292 rb_struct_define("NewServerRpc", "method", "host",
293 "deadline", "metadata", "call", NULL);
294 grpc_rb_sStatus =
295 rb_struct_define("Status", "code", "details", "metadata", NULL);
Tim Emiola98a32d32015-03-28 01:48:44 -0700296 sym_code = ID2SYM(rb_intern("code"));
297 sym_details = ID2SYM(rb_intern("details"));
298 sym_metadata = ID2SYM(rb_intern("metadata"));
nnoble097ef9b2014-12-01 17:06:10 -0800299
Tim Emiola409e6c82015-02-17 17:46:35 -0800300 Init_grpc_channel();
301 Init_grpc_completion_queue();
302 Init_grpc_call();
Tim Emiola9332ea62015-10-27 23:48:29 -0700303 Init_grpc_channel_credentials();
Tim Emiola409e6c82015-02-17 17:46:35 -0800304 Init_grpc_server();
305 Init_grpc_server_credentials();
306 Init_grpc_status_codes();
307 Init_grpc_time_consts();
nnoble097ef9b2014-12-01 17:06:10 -0800308}