blob: b431636c75e93992083d939114b0012c9f1e8066 [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>
37#include <ruby.h>
38#include <sys/time.h>
39
40#include <grpc/grpc.h>
41#include <grpc/support/time.h>
nnoble097ef9b2014-12-01 17:06:10 -080042#include "rb_call.h"
43#include "rb_channel.h"
44#include "rb_completion_queue.h"
nnoble097ef9b2014-12-01 17:06:10 -080045#include "rb_server.h"
nnoble0c475f02014-12-05 15:37:39 -080046#include "rb_credentials.h"
47#include "rb_server_credentials.h"
nnoble097ef9b2014-12-01 17:06:10 -080048
Yuki Yugui Sonodaa7d369e2015-04-11 11:48:36 +090049VALUE grpc_rb_cTimeVal = Qnil;
nnoble097ef9b2014-12-01 17:06:10 -080050
Yuki Yugui Sonodad441c2e2015-04-11 15:33:58 +090051static rb_data_type_t grpc_rb_timespec_data_type = {
52 "gpr_timespec",
53 {GRPC_RB_GC_NOT_MARKED, GRPC_RB_GC_DONT_FREE, GRPC_RB_MEMSIZE_UNAVAILABLE},
54 NULL,
55 NULL,
56 RUBY_TYPED_FREE_IMMEDIATELY};
57
nnoble097ef9b2014-12-01 17:06:10 -080058/* Alloc func that blocks allocation of a given object by raising an
59 * exception. */
60VALUE grpc_rb_cannot_alloc(VALUE cls) {
61 rb_raise(rb_eTypeError,
62 "allocation of %s only allowed from the gRPC native layer",
63 rb_class2name(cls));
64 return Qnil;
65}
66
67/* Init func that fails by raising an exception. */
68VALUE grpc_rb_cannot_init(VALUE self) {
69 rb_raise(rb_eTypeError,
70 "initialization of %s only allowed from the gRPC native layer",
71 rb_obj_classname(self));
72 return Qnil;
73}
74
75/* Init/Clone func that fails by raising an exception. */
76VALUE grpc_rb_cannot_init_copy(VALUE copy, VALUE self) {
77 rb_raise(rb_eTypeError,
78 "initialization of %s only allowed from the gRPC native layer",
79 rb_obj_classname(copy));
80 return Qnil;
81}
82
83/* id_tv_{,u}sec are accessor methods on Ruby Time instances. */
84static ID id_tv_sec;
85static ID id_tv_nsec;
86
87/**
88 * grpc_rb_time_timeval creates a time_eval from a ruby time object.
89 *
90 * This func is copied from ruby source, MRI/source/time.c, which is published
91 * under the same license as the ruby.h, on which the entire extensions is
92 * based.
93 */
94gpr_timespec grpc_rb_time_timeval(VALUE time, int interval) {
95 gpr_timespec t;
96 gpr_timespec *time_const;
97 const char *tstr = interval ? "time interval" : "time";
98 const char *want = " want <secs from epoch>|<Time>|<GRPC::TimeConst.*>";
99
100 switch (TYPE(time)) {
nnoble097ef9b2014-12-01 17:06:10 -0800101 case T_DATA:
Yuki Yugui Sonodaa7d369e2015-04-11 11:48:36 +0900102 if (CLASS_OF(time) == grpc_rb_cTimeVal) {
Yuki Yugui Sonodad441c2e2015-04-11 15:33:58 +0900103 TypedData_Get_Struct(time, gpr_timespec, &grpc_rb_timespec_data_type,
104 time_const);
nnoble097ef9b2014-12-01 17:06:10 -0800105 t = *time_const;
106 } else if (CLASS_OF(time) == rb_cTime) {
Craig Tillerb5dcec52015-01-13 11:13:42 -0800107 t.tv_sec = NUM2INT(rb_funcall(time, id_tv_sec, 0));
nnoble097ef9b2014-12-01 17:06:10 -0800108 t.tv_nsec = NUM2INT(rb_funcall(time, id_tv_nsec, 0));
109 } else {
Craig Tillerb5dcec52015-01-13 11:13:42 -0800110 rb_raise(rb_eTypeError, "bad input: (%s)->c_timeval, got <%s>,%s", tstr,
111 rb_obj_classname(time), want);
nnoble097ef9b2014-12-01 17:06:10 -0800112 }
113 break;
114
115 case T_FIXNUM:
116 t.tv_sec = FIX2LONG(time);
117 if (interval && t.tv_sec < 0)
118 rb_raise(rb_eArgError, "%s must be positive", tstr);
119 t.tv_nsec = 0;
120 break;
121
122 case T_FLOAT:
mattnb9e15632015-02-28 23:45:58 +0900123 if (interval && RFLOAT_VALUE(time) < 0.0)
nnoble097ef9b2014-12-01 17:06:10 -0800124 rb_raise(rb_eArgError, "%s must be positive", tstr);
125 else {
126 double f, d;
127
mattnb9e15632015-02-28 23:45:58 +0900128 d = modf(RFLOAT_VALUE(time), &f);
nnoble097ef9b2014-12-01 17:06:10 -0800129 if (d < 0) {
130 d += 1;
131 f -= 1;
132 }
133 t.tv_sec = (time_t)f;
134 if (f != t.tv_sec) {
135 rb_raise(rb_eRangeError, "%f out of Time range",
mattnb9e15632015-02-28 23:45:58 +0900136 RFLOAT_VALUE(time));
nnoble097ef9b2014-12-01 17:06:10 -0800137 }
Craig Tillerb5dcec52015-01-13 11:13:42 -0800138 t.tv_nsec = (time_t)(d * 1e9 + 0.5);
nnoble097ef9b2014-12-01 17:06:10 -0800139 }
140 break;
141
142 case T_BIGNUM:
143 t.tv_sec = NUM2LONG(time);
144 if (interval && t.tv_sec < 0)
145 rb_raise(rb_eArgError, "%s must be positive", tstr);
146 t.tv_nsec = 0;
147 break;
148
149 default:
Craig Tillerb5dcec52015-01-13 11:13:42 -0800150 rb_raise(rb_eTypeError, "bad input: (%s)->c_timeval, got <%s>,%s", tstr,
151 rb_obj_classname(time), want);
nnoble097ef9b2014-12-01 17:06:10 -0800152 break;
153 }
154 return t;
155}
156
Tim Emiola409e6c82015-02-17 17:46:35 -0800157void Init_grpc_status_codes() {
temiola58327912014-12-15 17:51:16 -0800158 /* Constants representing the status codes or grpc_status_code in status.h */
Yuki Yugui Sonodaa7d369e2015-04-11 11:48:36 +0900159 VALUE grpc_rb_mStatusCodes =
160 rb_define_module_under(grpc_rb_mGrpcCore, "StatusCodes");
161 rb_define_const(grpc_rb_mStatusCodes, "OK", INT2NUM(GRPC_STATUS_OK));
162 rb_define_const(grpc_rb_mStatusCodes, "CANCELLED",
163 INT2NUM(GRPC_STATUS_CANCELLED));
164 rb_define_const(grpc_rb_mStatusCodes, "UNKNOWN",
165 INT2NUM(GRPC_STATUS_UNKNOWN));
166 rb_define_const(grpc_rb_mStatusCodes, "INVALID_ARGUMENT",
temiola58327912014-12-15 17:51:16 -0800167 INT2NUM(GRPC_STATUS_INVALID_ARGUMENT));
Yuki Yugui Sonodaa7d369e2015-04-11 11:48:36 +0900168 rb_define_const(grpc_rb_mStatusCodes, "DEADLINE_EXCEEDED",
temiola58327912014-12-15 17:51:16 -0800169 INT2NUM(GRPC_STATUS_DEADLINE_EXCEEDED));
Yuki Yugui Sonodaa7d369e2015-04-11 11:48:36 +0900170 rb_define_const(grpc_rb_mStatusCodes, "NOT_FOUND",
171 INT2NUM(GRPC_STATUS_NOT_FOUND));
172 rb_define_const(grpc_rb_mStatusCodes, "ALREADY_EXISTS",
temiola58327912014-12-15 17:51:16 -0800173 INT2NUM(GRPC_STATUS_ALREADY_EXISTS));
Yuki Yugui Sonodaa7d369e2015-04-11 11:48:36 +0900174 rb_define_const(grpc_rb_mStatusCodes, "PERMISSION_DENIED",
temiola58327912014-12-15 17:51:16 -0800175 INT2NUM(GRPC_STATUS_PERMISSION_DENIED));
Yuki Yugui Sonodaa7d369e2015-04-11 11:48:36 +0900176 rb_define_const(grpc_rb_mStatusCodes, "UNAUTHENTICATED",
temiola58327912014-12-15 17:51:16 -0800177 INT2NUM(GRPC_STATUS_UNAUTHENTICATED));
Yuki Yugui Sonodaa7d369e2015-04-11 11:48:36 +0900178 rb_define_const(grpc_rb_mStatusCodes, "RESOURCE_EXHAUSTED",
temiola58327912014-12-15 17:51:16 -0800179 INT2NUM(GRPC_STATUS_RESOURCE_EXHAUSTED));
Yuki Yugui Sonodaa7d369e2015-04-11 11:48:36 +0900180 rb_define_const(grpc_rb_mStatusCodes, "FAILED_PRECONDITION",
temiola58327912014-12-15 17:51:16 -0800181 INT2NUM(GRPC_STATUS_FAILED_PRECONDITION));
Yuki Yugui Sonodaa7d369e2015-04-11 11:48:36 +0900182 rb_define_const(grpc_rb_mStatusCodes, "ABORTED",
183 INT2NUM(GRPC_STATUS_ABORTED));
184 rb_define_const(grpc_rb_mStatusCodes, "OUT_OF_RANGE",
temiola58327912014-12-15 17:51:16 -0800185 INT2NUM(GRPC_STATUS_OUT_OF_RANGE));
Yuki Yugui Sonodaa7d369e2015-04-11 11:48:36 +0900186 rb_define_const(grpc_rb_mStatusCodes, "UNIMPLEMENTED",
temiola58327912014-12-15 17:51:16 -0800187 INT2NUM(GRPC_STATUS_UNIMPLEMENTED));
Yuki Yugui Sonodaa7d369e2015-04-11 11:48:36 +0900188 rb_define_const(grpc_rb_mStatusCodes, "INTERNAL",
189 INT2NUM(GRPC_STATUS_INTERNAL));
190 rb_define_const(grpc_rb_mStatusCodes, "UNAVAILABLE",
temiola58327912014-12-15 17:51:16 -0800191 INT2NUM(GRPC_STATUS_UNAVAILABLE));
Yuki Yugui Sonodaa7d369e2015-04-11 11:48:36 +0900192 rb_define_const(grpc_rb_mStatusCodes, "DATA_LOSS",
193 INT2NUM(GRPC_STATUS_DATA_LOSS));
temiola58327912014-12-15 17:51:16 -0800194}
195
nnoble097ef9b2014-12-01 17:06:10 -0800196/* id_at is the constructor method of the ruby standard Time class. */
197static ID id_at;
198
199/* id_inspect is the inspect method found on various ruby objects. */
200static ID id_inspect;
201
202/* id_to_s is the to_s method found on various ruby objects. */
203static ID id_to_s;
204
Tim Emiola98a32d32015-03-28 01:48:44 -0700205/* Converts a wrapped time constant to a standard time. */
nnoble097ef9b2014-12-01 17:06:10 -0800206VALUE grpc_rb_time_val_to_time(VALUE self) {
207 gpr_timespec *time_const = NULL;
Yuki Yugui Sonodad441c2e2015-04-11 15:33:58 +0900208 TypedData_Get_Struct(self, gpr_timespec, &grpc_rb_timespec_data_type,
209 time_const);
nnoble097ef9b2014-12-01 17:06:10 -0800210 return rb_funcall(rb_cTime, id_at, 2, INT2NUM(time_const->tv_sec),
211 INT2NUM(time_const->tv_nsec));
212}
213
214/* Invokes inspect on the ctime version of the time val. */
215VALUE grpc_rb_time_val_inspect(VALUE self) {
216 return rb_funcall(grpc_rb_time_val_to_time(self), id_inspect, 0);
217}
218
219/* Invokes to_s on the ctime version of the time val. */
220VALUE grpc_rb_time_val_to_s(VALUE self) {
221 return rb_funcall(grpc_rb_time_val_to_time(self), id_to_s, 0);
222}
223
224/* Adds a module with constants that map to gpr's static timeval structs. */
Tim Emiola409e6c82015-02-17 17:46:35 -0800225void Init_grpc_time_consts() {
Yuki Yugui Sonodaa7d369e2015-04-11 11:48:36 +0900226 VALUE grpc_rb_mTimeConsts =
227 rb_define_module_under(grpc_rb_mGrpcCore, "TimeConsts");
228 grpc_rb_cTimeVal =
229 rb_define_class_under(grpc_rb_mGrpcCore, "TimeSpec", rb_cObject);
Yuki Yugui Sonodad441c2e2015-04-11 15:33:58 +0900230 rb_define_const(
231 grpc_rb_mTimeConsts, "ZERO",
232 TypedData_Wrap_Struct(grpc_rb_cTimeVal, &grpc_rb_timespec_data_type,
233 (void *)&gpr_time_0));
234 rb_define_const(
235 grpc_rb_mTimeConsts, "INFINITE_FUTURE",
236 TypedData_Wrap_Struct(grpc_rb_cTimeVal, &grpc_rb_timespec_data_type,
237 (void *)&gpr_inf_future));
238 rb_define_const(
239 grpc_rb_mTimeConsts, "INFINITE_PAST",
240 TypedData_Wrap_Struct(grpc_rb_cTimeVal, &grpc_rb_timespec_data_type,
241 (void *)&gpr_inf_past));
Yuki Yugui Sonodaa7d369e2015-04-11 11:48:36 +0900242 rb_define_method(grpc_rb_cTimeVal, "to_time", grpc_rb_time_val_to_time, 0);
243 rb_define_method(grpc_rb_cTimeVal, "inspect", grpc_rb_time_val_inspect, 0);
244 rb_define_method(grpc_rb_cTimeVal, "to_s", grpc_rb_time_val_to_s, 0);
nnoble097ef9b2014-12-01 17:06:10 -0800245 id_at = rb_intern("at");
246 id_inspect = rb_intern("inspect");
247 id_to_s = rb_intern("to_s");
248 id_tv_sec = rb_intern("tv_sec");
249 id_tv_nsec = rb_intern("tv_nsec");
250}
251
Craig Tillerb5dcec52015-01-13 11:13:42 -0800252void grpc_rb_shutdown(void *vm) { grpc_shutdown(); }
nnoble097ef9b2014-12-01 17:06:10 -0800253
Tim Emiola409e6c82015-02-17 17:46:35 -0800254/* Initialize the GRPC module structs */
temiola21bb60c2014-12-18 10:58:22 -0800255
Yuki Yugui Sonodaa7d369e2015-04-11 11:48:36 +0900256/* grpc_rb_sNewServerRpc is the struct that holds new server rpc details. */
257VALUE grpc_rb_sNewServerRpc = Qnil;
258/* grpc_rb_sStatus is the struct that holds status details. */
259VALUE grpc_rb_sStatus = Qnil;
temiola21bb60c2014-12-18 10:58:22 -0800260
Tim Emiola409e6c82015-02-17 17:46:35 -0800261/* Initialize the GRPC module. */
Yuki Yugui Sonodaa7d369e2015-04-11 11:48:36 +0900262VALUE grpc_rb_mGRPC = Qnil;
263VALUE grpc_rb_mGrpcCore = Qnil;
temiola21bb60c2014-12-18 10:58:22 -0800264
nnoble097ef9b2014-12-01 17:06:10 -0800265void Init_grpc() {
266 grpc_init();
267 ruby_vm_at_exit(grpc_rb_shutdown);
Yuki Yugui Sonodaa7d369e2015-04-11 11:48:36 +0900268 grpc_rb_mGRPC = rb_define_module("GRPC");
269 grpc_rb_mGrpcCore = rb_define_module_under(grpc_rb_mGRPC, "Core");
270 grpc_rb_sNewServerRpc =
271 rb_struct_define("NewServerRpc", "method", "host",
272 "deadline", "metadata", "call", NULL);
273 grpc_rb_sStatus =
274 rb_struct_define("Status", "code", "details", "metadata", NULL);
Tim Emiola98a32d32015-03-28 01:48:44 -0700275 sym_code = ID2SYM(rb_intern("code"));
276 sym_details = ID2SYM(rb_intern("details"));
277 sym_metadata = ID2SYM(rb_intern("metadata"));
nnoble097ef9b2014-12-01 17:06:10 -0800278
Tim Emiola409e6c82015-02-17 17:46:35 -0800279 Init_grpc_channel();
280 Init_grpc_completion_queue();
281 Init_grpc_call();
282 Init_grpc_credentials();
Tim Emiola409e6c82015-02-17 17:46:35 -0800283 Init_grpc_server();
284 Init_grpc_server_credentials();
285 Init_grpc_status_codes();
286 Init_grpc_time_consts();
nnoble097ef9b2014-12-01 17:06:10 -0800287}