grpc 1.42.0.pre1-x86_64-darwin

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of grpc might be problematic. Click here for more details.

Files changed (128) hide show
  1. checksums.yaml +7 -0
  2. data/etc/roots.pem +4337 -0
  3. data/grpc_c.32.ruby +0 -0
  4. data/grpc_c.64.ruby +0 -0
  5. data/src/ruby/bin/math_client.rb +140 -0
  6. data/src/ruby/bin/math_pb.rb +34 -0
  7. data/src/ruby/bin/math_server.rb +191 -0
  8. data/src/ruby/bin/math_services_pb.rb +51 -0
  9. data/src/ruby/bin/noproto_client.rb +93 -0
  10. data/src/ruby/bin/noproto_server.rb +97 -0
  11. data/src/ruby/ext/grpc/ext-export.clang +1 -0
  12. data/src/ruby/ext/grpc/ext-export.gcc +6 -0
  13. data/src/ruby/ext/grpc/extconf.rb +123 -0
  14. data/src/ruby/ext/grpc/rb_byte_buffer.c +65 -0
  15. data/src/ruby/ext/grpc/rb_byte_buffer.h +35 -0
  16. data/src/ruby/ext/grpc/rb_call.c +1051 -0
  17. data/src/ruby/ext/grpc/rb_call.h +57 -0
  18. data/src/ruby/ext/grpc/rb_call_credentials.c +341 -0
  19. data/src/ruby/ext/grpc/rb_call_credentials.h +31 -0
  20. data/src/ruby/ext/grpc/rb_channel.c +846 -0
  21. data/src/ruby/ext/grpc/rb_channel.h +34 -0
  22. data/src/ruby/ext/grpc/rb_channel_args.c +155 -0
  23. data/src/ruby/ext/grpc/rb_channel_args.h +38 -0
  24. data/src/ruby/ext/grpc/rb_channel_credentials.c +286 -0
  25. data/src/ruby/ext/grpc/rb_channel_credentials.h +37 -0
  26. data/src/ruby/ext/grpc/rb_completion_queue.c +101 -0
  27. data/src/ruby/ext/grpc/rb_completion_queue.h +36 -0
  28. data/src/ruby/ext/grpc/rb_compression_options.c +471 -0
  29. data/src/ruby/ext/grpc/rb_compression_options.h +29 -0
  30. data/src/ruby/ext/grpc/rb_enable_cpp.cc +22 -0
  31. data/src/ruby/ext/grpc/rb_event_thread.c +145 -0
  32. data/src/ruby/ext/grpc/rb_event_thread.h +21 -0
  33. data/src/ruby/ext/grpc/rb_grpc.c +333 -0
  34. data/src/ruby/ext/grpc/rb_grpc.h +77 -0
  35. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +605 -0
  36. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +913 -0
  37. data/src/ruby/ext/grpc/rb_loader.c +57 -0
  38. data/src/ruby/ext/grpc/rb_loader.h +25 -0
  39. data/src/ruby/ext/grpc/rb_server.c +385 -0
  40. data/src/ruby/ext/grpc/rb_server.h +32 -0
  41. data/src/ruby/ext/grpc/rb_server_credentials.c +259 -0
  42. data/src/ruby/ext/grpc/rb_server_credentials.h +37 -0
  43. data/src/ruby/ext/grpc/rb_xds_channel_credentials.c +218 -0
  44. data/src/ruby/ext/grpc/rb_xds_channel_credentials.h +37 -0
  45. data/src/ruby/ext/grpc/rb_xds_server_credentials.c +170 -0
  46. data/src/ruby/ext/grpc/rb_xds_server_credentials.h +37 -0
  47. data/src/ruby/lib/grpc/2.4/grpc_c.bundle +0 -0
  48. data/src/ruby/lib/grpc/2.5/grpc_c.bundle +0 -0
  49. data/src/ruby/lib/grpc/2.6/grpc_c.bundle +0 -0
  50. data/src/ruby/lib/grpc/2.7/grpc_c.bundle +0 -0
  51. data/src/ruby/lib/grpc/3.0/grpc_c.bundle +0 -0
  52. data/src/ruby/lib/grpc/core/status_codes.rb +135 -0
  53. data/src/ruby/lib/grpc/core/time_consts.rb +56 -0
  54. data/src/ruby/lib/grpc/errors.rb +277 -0
  55. data/src/ruby/lib/grpc/generic/active_call.rb +669 -0
  56. data/src/ruby/lib/grpc/generic/bidi_call.rb +233 -0
  57. data/src/ruby/lib/grpc/generic/client_stub.rb +503 -0
  58. data/src/ruby/lib/grpc/generic/interceptor_registry.rb +53 -0
  59. data/src/ruby/lib/grpc/generic/interceptors.rb +186 -0
  60. data/src/ruby/lib/grpc/generic/rpc_desc.rb +204 -0
  61. data/src/ruby/lib/grpc/generic/rpc_server.rb +551 -0
  62. data/src/ruby/lib/grpc/generic/service.rb +211 -0
  63. data/src/ruby/lib/grpc/google_rpc_status_utils.rb +40 -0
  64. data/src/ruby/lib/grpc/grpc.rb +24 -0
  65. data/src/ruby/lib/grpc/logconfig.rb +44 -0
  66. data/src/ruby/lib/grpc/notifier.rb +45 -0
  67. data/src/ruby/lib/grpc/structs.rb +15 -0
  68. data/src/ruby/lib/grpc/version.rb +18 -0
  69. data/src/ruby/lib/grpc.rb +37 -0
  70. data/src/ruby/pb/README.md +42 -0
  71. data/src/ruby/pb/generate_proto_ruby.sh +51 -0
  72. data/src/ruby/pb/grpc/health/checker.rb +75 -0
  73. data/src/ruby/pb/grpc/health/v1/health_pb.rb +31 -0
  74. data/src/ruby/pb/grpc/health/v1/health_services_pb.rb +62 -0
  75. data/src/ruby/pb/grpc/testing/duplicate/echo_duplicate_services_pb.rb +44 -0
  76. data/src/ruby/pb/grpc/testing/metrics_pb.rb +28 -0
  77. data/src/ruby/pb/grpc/testing/metrics_services_pb.rb +49 -0
  78. data/src/ruby/pb/src/proto/grpc/testing/empty_pb.rb +17 -0
  79. data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +145 -0
  80. data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +16 -0
  81. data/src/ruby/pb/src/proto/grpc/testing/test_services_pb.rb +152 -0
  82. data/src/ruby/pb/test/client.rb +769 -0
  83. data/src/ruby/pb/test/server.rb +252 -0
  84. data/src/ruby/pb/test/xds_client.rb +415 -0
  85. data/src/ruby/spec/call_credentials_spec.rb +42 -0
  86. data/src/ruby/spec/call_spec.rb +180 -0
  87. data/src/ruby/spec/channel_connection_spec.rb +126 -0
  88. data/src/ruby/spec/channel_credentials_spec.rb +124 -0
  89. data/src/ruby/spec/channel_spec.rb +245 -0
  90. data/src/ruby/spec/client_auth_spec.rb +152 -0
  91. data/src/ruby/spec/client_server_spec.rb +664 -0
  92. data/src/ruby/spec/compression_options_spec.rb +149 -0
  93. data/src/ruby/spec/debug_message_spec.rb +134 -0
  94. data/src/ruby/spec/error_sanity_spec.rb +49 -0
  95. data/src/ruby/spec/errors_spec.rb +142 -0
  96. data/src/ruby/spec/generic/active_call_spec.rb +683 -0
  97. data/src/ruby/spec/generic/client_interceptors_spec.rb +153 -0
  98. data/src/ruby/spec/generic/client_stub_spec.rb +1083 -0
  99. data/src/ruby/spec/generic/interceptor_registry_spec.rb +65 -0
  100. data/src/ruby/spec/generic/rpc_desc_spec.rb +374 -0
  101. data/src/ruby/spec/generic/rpc_server_pool_spec.rb +127 -0
  102. data/src/ruby/spec/generic/rpc_server_spec.rb +748 -0
  103. data/src/ruby/spec/generic/server_interceptors_spec.rb +218 -0
  104. data/src/ruby/spec/generic/service_spec.rb +263 -0
  105. data/src/ruby/spec/google_rpc_status_utils_spec.rb +282 -0
  106. data/src/ruby/spec/pb/codegen/grpc/testing/package_options.proto +28 -0
  107. data/src/ruby/spec/pb/codegen/grpc/testing/package_options_import.proto +22 -0
  108. data/src/ruby/spec/pb/codegen/grpc/testing/package_options_import2.proto +23 -0
  109. data/src/ruby/spec/pb/codegen/grpc/testing/package_options_ruby_style.proto +41 -0
  110. data/src/ruby/spec/pb/codegen/grpc/testing/same_package_service_name.proto +27 -0
  111. data/src/ruby/spec/pb/codegen/grpc/testing/same_ruby_package_service_name.proto +29 -0
  112. data/src/ruby/spec/pb/codegen/package_option_spec.rb +98 -0
  113. data/src/ruby/spec/pb/duplicate/codegen_spec.rb +57 -0
  114. data/src/ruby/spec/pb/health/checker_spec.rb +236 -0
  115. data/src/ruby/spec/server_credentials_spec.rb +104 -0
  116. data/src/ruby/spec/server_spec.rb +231 -0
  117. data/src/ruby/spec/spec_helper.rb +61 -0
  118. data/src/ruby/spec/support/helpers.rb +107 -0
  119. data/src/ruby/spec/support/services.rb +160 -0
  120. data/src/ruby/spec/testdata/README +1 -0
  121. data/src/ruby/spec/testdata/ca.pem +20 -0
  122. data/src/ruby/spec/testdata/client.key +28 -0
  123. data/src/ruby/spec/testdata/client.pem +20 -0
  124. data/src/ruby/spec/testdata/server1.key +28 -0
  125. data/src/ruby/spec/testdata/server1.pem +22 -0
  126. data/src/ruby/spec/time_consts_spec.rb +74 -0
  127. data/src/ruby/spec/user_agent_spec.rb +74 -0
  128. metadata +404 -0
@@ -0,0 +1,57 @@
1
+ /*
2
+ *
3
+ * Copyright 2015 gRPC authors.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ *
17
+ */
18
+
19
+ #ifndef GRPC_RB_CALL_H_
20
+ #define GRPC_RB_CALL_H_
21
+
22
+ #include <ruby/ruby.h>
23
+
24
+ #include <grpc/grpc.h>
25
+
26
+ extern const rb_data_type_t grpc_rb_md_ary_data_type;
27
+
28
+ extern VALUE grpc_rb_cMdAry;
29
+
30
+ /* Gets the wrapped call from a VALUE. */
31
+ grpc_call* grpc_rb_get_wrapped_call(VALUE v);
32
+
33
+ /* Gets the VALUE corresponding to given grpc_call. */
34
+ VALUE grpc_rb_wrap_call(grpc_call* c, grpc_completion_queue* q);
35
+
36
+ /* Provides the details of an call error */
37
+ const char* grpc_call_error_detail_of(grpc_call_error err);
38
+
39
+ /* Converts a metadata array to a hash. */
40
+ VALUE grpc_rb_md_ary_to_h(grpc_metadata_array* md_ary);
41
+
42
+ /* grpc_rb_md_ary_convert converts a ruby metadata hash into
43
+ a grpc_metadata_array.
44
+ */
45
+ void grpc_rb_md_ary_convert(VALUE md_ary_hash, grpc_metadata_array* md_ary);
46
+
47
+ void grpc_rb_metadata_array_destroy_including_entries(
48
+ grpc_metadata_array* md_ary);
49
+
50
+ /* grpc_rb_eCallError is the ruby class of the exception thrown during call
51
+ operations. */
52
+ extern VALUE grpc_rb_eCallError;
53
+
54
+ /* Initializes the Call class. */
55
+ void Init_grpc_call();
56
+
57
+ #endif /* GRPC_RB_CALL_H_ */
@@ -0,0 +1,341 @@
1
+ /*
2
+ *
3
+ * Copyright 2015 gRPC authors.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ *
17
+ */
18
+
19
+ #include <ruby/ruby.h>
20
+
21
+ #include "rb_call_credentials.h"
22
+
23
+ #include <ruby/thread.h>
24
+
25
+ #include "rb_call.h"
26
+ #include "rb_event_thread.h"
27
+ #include "rb_grpc.h"
28
+ #include "rb_grpc_imports.generated.h"
29
+
30
+ #include <grpc/grpc.h>
31
+ #include <grpc/grpc_security.h>
32
+ #include <grpc/support/alloc.h>
33
+ #include <grpc/support/log.h>
34
+
35
+ /* grpc_rb_cCallCredentials is the ruby class that proxies
36
+ * grpc_call_credentials */
37
+ static VALUE grpc_rb_cCallCredentials = Qnil;
38
+
39
+ /* grpc_rb_call_credentials wraps a grpc_call_credentials. It provides a mark
40
+ * object that is used to hold references to any objects used to create the
41
+ * credentials. */
42
+ typedef struct grpc_rb_call_credentials {
43
+ /* Holder of ruby objects involved in contructing the credentials */
44
+ VALUE mark;
45
+
46
+ /* The actual credentials */
47
+ grpc_call_credentials* wrapped;
48
+ } grpc_rb_call_credentials;
49
+
50
+ typedef struct callback_params {
51
+ VALUE get_metadata;
52
+ grpc_auth_metadata_context context;
53
+ void* user_data;
54
+ grpc_credentials_plugin_metadata_cb callback;
55
+ } callback_params;
56
+
57
+ static VALUE grpc_rb_call_credentials_callback(VALUE args) {
58
+ VALUE result = rb_hash_new();
59
+ VALUE callback_func = rb_ary_entry(args, 0);
60
+ VALUE callback_args = rb_ary_entry(args, 1);
61
+ VALUE md_ary_obj = rb_ary_entry(args, 2);
62
+ if (gpr_should_log(GPR_LOG_SEVERITY_DEBUG)) {
63
+ VALUE callback_func_str = rb_funcall(callback_func, rb_intern("to_s"), 0);
64
+ VALUE callback_args_str = rb_funcall(callback_args, rb_intern("to_s"), 0);
65
+ VALUE callback_source_info =
66
+ rb_funcall(callback_func, rb_intern("source_location"), 0);
67
+ if (callback_source_info != Qnil) {
68
+ VALUE source_filename = rb_ary_entry(callback_source_info, 0);
69
+ VALUE source_line_number = rb_funcall(
70
+ rb_ary_entry(callback_source_info, 1), rb_intern("to_s"), 0);
71
+ gpr_log(GPR_DEBUG,
72
+ "GRPC_RUBY: grpc_rb_call_credentials invoking user callback:|%s| "
73
+ "source_filename:%s line_number:%s with arguments:|%s|",
74
+ StringValueCStr(callback_func_str),
75
+ StringValueCStr(source_filename),
76
+ StringValueCStr(source_line_number),
77
+ StringValueCStr(callback_args_str));
78
+ } else {
79
+ gpr_log(GPR_DEBUG,
80
+ "GRPC_RUBY: grpc_rb_call_credentials invoking user callback:|%s| "
81
+ "(failed to get source filename and line) with arguments:|%s|",
82
+ StringValueCStr(callback_func_str),
83
+ StringValueCStr(callback_args_str));
84
+ }
85
+ }
86
+ VALUE metadata =
87
+ rb_funcall(callback_func, rb_intern("call"), 1, callback_args);
88
+ grpc_metadata_array* md_ary = NULL;
89
+ TypedData_Get_Struct(md_ary_obj, grpc_metadata_array,
90
+ &grpc_rb_md_ary_data_type, md_ary);
91
+ grpc_rb_md_ary_convert(metadata, md_ary);
92
+ rb_hash_aset(result, rb_str_new2("metadata"), metadata);
93
+ rb_hash_aset(result, rb_str_new2("status"), INT2NUM(GRPC_STATUS_OK));
94
+ rb_hash_aset(result, rb_str_new2("details"), rb_str_new2(""));
95
+ return result;
96
+ }
97
+
98
+ static VALUE grpc_rb_call_credentials_callback_rescue(VALUE args,
99
+ VALUE exception_object) {
100
+ VALUE result = rb_hash_new();
101
+ VALUE backtrace = rb_funcall(exception_object, rb_intern("backtrace"), 0);
102
+ VALUE backtrace_str;
103
+ if (backtrace != Qnil) {
104
+ backtrace_str =
105
+ rb_funcall(backtrace, rb_intern("join"), 1, rb_str_new2("\n\tfrom "));
106
+ } else {
107
+ backtrace_str = rb_str_new2(
108
+ "failed to get backtrace, this exception was likely thrown from native "
109
+ "code");
110
+ }
111
+ VALUE rb_exception_info =
112
+ rb_funcall(exception_object, rb_intern("inspect"), 0);
113
+ (void)args;
114
+ gpr_log(GPR_INFO,
115
+ "GRPC_RUBY call credentials callback failed, exception inspect:|%s| "
116
+ "backtrace:|%s|",
117
+ StringValueCStr(rb_exception_info), StringValueCStr(backtrace_str));
118
+ rb_hash_aset(result, rb_str_new2("metadata"), Qnil);
119
+ rb_hash_aset(result, rb_str_new2("status"),
120
+ INT2NUM(GRPC_STATUS_UNAUTHENTICATED));
121
+ rb_hash_aset(result, rb_str_new2("details"), rb_exception_info);
122
+ return result;
123
+ }
124
+
125
+ static void grpc_rb_call_credentials_callback_with_gil(void* param) {
126
+ callback_params* const params = (callback_params*)param;
127
+ VALUE auth_uri = rb_str_new_cstr(params->context.service_url);
128
+ /* Pass the arguments to the proc in a hash, which currently only has they key
129
+ 'auth_uri' */
130
+ VALUE callback_args = rb_ary_new();
131
+ VALUE args = rb_hash_new();
132
+ VALUE result;
133
+ grpc_metadata_array md_ary;
134
+ grpc_status_code status;
135
+ VALUE details;
136
+ char* error_details;
137
+ grpc_metadata_array_init(&md_ary);
138
+ rb_hash_aset(args, ID2SYM(rb_intern("jwt_aud_uri")), auth_uri);
139
+ rb_ary_push(callback_args, params->get_metadata);
140
+ rb_ary_push(callback_args, args);
141
+ // Wrap up the grpc_metadata_array into a ruby object and do the conversion
142
+ // from hash to grpc_metadata_array within the rescue block, because the
143
+ // conversion can throw exceptions.
144
+ rb_ary_push(callback_args,
145
+ TypedData_Wrap_Struct(grpc_rb_cMdAry, &grpc_rb_md_ary_data_type,
146
+ &md_ary));
147
+ result = rb_rescue(grpc_rb_call_credentials_callback, callback_args,
148
+ grpc_rb_call_credentials_callback_rescue, Qnil);
149
+ // Both callbacks return a hash, so result should be a hash
150
+ status = NUM2INT(rb_hash_aref(result, rb_str_new2("status")));
151
+ details = rb_hash_aref(result, rb_str_new2("details"));
152
+ error_details = StringValueCStr(details);
153
+ params->callback(params->user_data, md_ary.metadata, md_ary.count, status,
154
+ error_details);
155
+ grpc_rb_metadata_array_destroy_including_entries(&md_ary);
156
+ grpc_auth_metadata_context_reset(&params->context);
157
+ gpr_free(params);
158
+ }
159
+
160
+ static int grpc_rb_call_credentials_plugin_get_metadata(
161
+ void* state, grpc_auth_metadata_context context,
162
+ grpc_credentials_plugin_metadata_cb cb, void* user_data,
163
+ grpc_metadata creds_md[GRPC_METADATA_CREDENTIALS_PLUGIN_SYNC_MAX],
164
+ size_t* num_creds_md, grpc_status_code* status,
165
+ const char** error_details) {
166
+ callback_params* params = gpr_zalloc(sizeof(callback_params));
167
+ params->get_metadata = (VALUE)state;
168
+ grpc_auth_metadata_context_copy(&context, &params->context);
169
+ params->user_data = user_data;
170
+ params->callback = cb;
171
+
172
+ grpc_rb_event_queue_enqueue(grpc_rb_call_credentials_callback_with_gil,
173
+ (void*)(params));
174
+ return 0; // Async return.
175
+ }
176
+
177
+ static void grpc_rb_call_credentials_plugin_destroy(void* state) {
178
+ (void)state;
179
+ // Not sure what needs to be done here
180
+ }
181
+
182
+ static void grpc_rb_call_credentials_free_internal(void* p) {
183
+ grpc_rb_call_credentials* wrapper;
184
+ if (p == NULL) {
185
+ return;
186
+ }
187
+ wrapper = (grpc_rb_call_credentials*)p;
188
+ grpc_call_credentials_release(wrapper->wrapped);
189
+ wrapper->wrapped = NULL;
190
+ xfree(p);
191
+ }
192
+
193
+ /* Destroys the credentials instances. */
194
+ static void grpc_rb_call_credentials_free(void* p) {
195
+ grpc_rb_call_credentials_free_internal(p);
196
+ grpc_ruby_shutdown();
197
+ }
198
+
199
+ /* Protects the mark object from GC */
200
+ static void grpc_rb_call_credentials_mark(void* p) {
201
+ grpc_rb_call_credentials* wrapper = NULL;
202
+ if (p == NULL) {
203
+ return;
204
+ }
205
+ wrapper = (grpc_rb_call_credentials*)p;
206
+ if (wrapper->mark != Qnil) {
207
+ rb_gc_mark(wrapper->mark);
208
+ }
209
+ }
210
+
211
+ static rb_data_type_t grpc_rb_call_credentials_data_type = {
212
+ "grpc_call_credentials",
213
+ {grpc_rb_call_credentials_mark,
214
+ grpc_rb_call_credentials_free,
215
+ GRPC_RB_MEMSIZE_UNAVAILABLE,
216
+ {NULL, NULL}},
217
+ NULL,
218
+ NULL,
219
+ #ifdef RUBY_TYPED_FREE_IMMEDIATELY
220
+ RUBY_TYPED_FREE_IMMEDIATELY
221
+ #endif
222
+ };
223
+
224
+ /* Allocates CallCredentials instances.
225
+ Provides safe initial defaults for the instance fields. */
226
+ static VALUE grpc_rb_call_credentials_alloc(VALUE cls) {
227
+ grpc_ruby_init();
228
+ grpc_rb_call_credentials* wrapper = ALLOC(grpc_rb_call_credentials);
229
+ wrapper->wrapped = NULL;
230
+ wrapper->mark = Qnil;
231
+ return TypedData_Wrap_Struct(cls, &grpc_rb_call_credentials_data_type,
232
+ wrapper);
233
+ }
234
+
235
+ /* Creates a wrapping object for a given call credentials. This should only be
236
+ * called with grpc_call_credentials objects that are not already associated
237
+ * with any Ruby object */
238
+ VALUE grpc_rb_wrap_call_credentials(grpc_call_credentials* c, VALUE mark) {
239
+ VALUE rb_wrapper;
240
+ grpc_rb_call_credentials* wrapper;
241
+ if (c == NULL) {
242
+ return Qnil;
243
+ }
244
+ rb_wrapper = grpc_rb_call_credentials_alloc(grpc_rb_cCallCredentials);
245
+ TypedData_Get_Struct(rb_wrapper, grpc_rb_call_credentials,
246
+ &grpc_rb_call_credentials_data_type, wrapper);
247
+ wrapper->wrapped = c;
248
+ wrapper->mark = mark;
249
+ return rb_wrapper;
250
+ }
251
+
252
+ /* The attribute used on the mark object to hold the callback */
253
+ static ID id_callback;
254
+
255
+ /*
256
+ call-seq:
257
+ creds = Credentials.new auth_proc
258
+ proc: (required) Proc that generates auth metadata
259
+ Initializes CallCredential instances. */
260
+ static VALUE grpc_rb_call_credentials_init(VALUE self, VALUE proc) {
261
+ grpc_rb_call_credentials* wrapper = NULL;
262
+ grpc_call_credentials* creds = NULL;
263
+ grpc_metadata_credentials_plugin plugin;
264
+
265
+ TypedData_Get_Struct(self, grpc_rb_call_credentials,
266
+ &grpc_rb_call_credentials_data_type, wrapper);
267
+
268
+ plugin.get_metadata = grpc_rb_call_credentials_plugin_get_metadata;
269
+ plugin.destroy = grpc_rb_call_credentials_plugin_destroy;
270
+ if (!rb_obj_is_proc(proc)) {
271
+ rb_raise(rb_eTypeError, "Argument to CallCredentials#new must be a proc");
272
+ return Qnil;
273
+ }
274
+ plugin.state = (void*)proc;
275
+ plugin.type = "";
276
+
277
+ // TODO(yihuazhang): Expose min_security_level via the Ruby API so that
278
+ // applications can decide what minimum security level their plugins require.
279
+ creds = grpc_metadata_credentials_create_from_plugin(
280
+ plugin, GRPC_PRIVACY_AND_INTEGRITY, NULL);
281
+ if (creds == NULL) {
282
+ rb_raise(rb_eRuntimeError, "could not create a credentials, not sure why");
283
+ return Qnil;
284
+ }
285
+
286
+ wrapper->mark = proc;
287
+ wrapper->wrapped = creds;
288
+ rb_ivar_set(self, id_callback, proc);
289
+
290
+ return self;
291
+ }
292
+
293
+ static VALUE grpc_rb_call_credentials_compose(int argc, VALUE* argv,
294
+ VALUE self) {
295
+ grpc_call_credentials* creds;
296
+ grpc_call_credentials* other;
297
+ grpc_call_credentials* prev = NULL;
298
+ VALUE mark;
299
+ if (argc == 0) {
300
+ return self;
301
+ }
302
+ mark = rb_ary_new();
303
+ creds = grpc_rb_get_wrapped_call_credentials(self);
304
+ for (int i = 0; i < argc; i++) {
305
+ rb_ary_push(mark, argv[i]);
306
+ other = grpc_rb_get_wrapped_call_credentials(argv[i]);
307
+ creds = grpc_composite_call_credentials_create(creds, other, NULL);
308
+ if (prev != NULL) {
309
+ grpc_call_credentials_release(prev);
310
+ }
311
+ prev = creds;
312
+ }
313
+ return grpc_rb_wrap_call_credentials(creds, mark);
314
+ }
315
+
316
+ void Init_grpc_call_credentials() {
317
+ grpc_rb_cCallCredentials =
318
+ rb_define_class_under(grpc_rb_mGrpcCore, "CallCredentials", rb_cObject);
319
+
320
+ /* Allocates an object managed by the ruby runtime */
321
+ rb_define_alloc_func(grpc_rb_cCallCredentials,
322
+ grpc_rb_call_credentials_alloc);
323
+
324
+ /* Provides a ruby constructor and support for dup/clone. */
325
+ rb_define_method(grpc_rb_cCallCredentials, "initialize",
326
+ grpc_rb_call_credentials_init, 1);
327
+ rb_define_method(grpc_rb_cCallCredentials, "initialize_copy",
328
+ grpc_rb_cannot_init_copy, 1);
329
+ rb_define_method(grpc_rb_cCallCredentials, "compose",
330
+ grpc_rb_call_credentials_compose, -1);
331
+
332
+ id_callback = rb_intern("__callback");
333
+ }
334
+
335
+ /* Gets the wrapped grpc_call_credentials from the ruby wrapper */
336
+ grpc_call_credentials* grpc_rb_get_wrapped_call_credentials(VALUE v) {
337
+ grpc_rb_call_credentials* wrapper = NULL;
338
+ TypedData_Get_Struct(v, grpc_rb_call_credentials,
339
+ &grpc_rb_call_credentials_data_type, wrapper);
340
+ return wrapper->wrapped;
341
+ }
@@ -0,0 +1,31 @@
1
+ /*
2
+ *
3
+ * Copyright 2015 gRPC authors.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ *
17
+ */
18
+
19
+ #ifndef GRPC_RB_CALL_CREDENTIALS_H_
20
+ #define GRPC_RB_CALL_CREDENTIALS_H_
21
+
22
+ #include <ruby/ruby.h>
23
+
24
+ #include <grpc/grpc_security.h>
25
+
26
+ /* Initializes the ruby CallCredentials class. */
27
+ void Init_grpc_call_credentials();
28
+
29
+ grpc_call_credentials* grpc_rb_get_wrapped_call_credentials(VALUE v);
30
+
31
+ #endif /* GRPC_RB_CALL_CREDENTIALS_H_ */