blob: f8c4f0423f2660012ac155ca2f76f5685a5e7a31 [file] [log] [blame]
Craig Tiller1a61b172015-02-16 11:53:47 -08001/*
2 *
3 * Copyright 2015, Google Inc.
4 * 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
mlumishb892a272014-12-09 16:28:23 -080034#include "channel.h"
35
36#ifdef HAVE_CONFIG_H
37#include "config.h"
38#endif
39
murgatroid998242ba72015-04-01 15:29:44 -070040#include <php.h>
41#include <php_ini.h>
42#include <ext/standard/info.h>
43#include <ext/spl/spl_exceptions.h>
mlumishb892a272014-12-09 16:28:23 -080044#include "php_grpc.h"
45
murgatroid998242ba72015-04-01 15:29:44 -070046#include <zend_exceptions.h>
mlumishb892a272014-12-09 16:28:23 -080047
48#include <stdbool.h>
49
murgatroid998242ba72015-04-01 15:29:44 -070050#include <grpc/grpc.h>
51#include <grpc/support/log.h>
52#include <grpc/grpc_security.h>
mlumishb892a272014-12-09 16:28:23 -080053
Stanley Cheunga63fdd02015-08-11 15:11:11 -070054#include "completion_queue.h"
Stanley Cheung9c0b35e2015-10-21 17:07:56 -070055#include "channel_credentials.h"
Stanley Cheunga63fdd02015-08-11 15:11:11 -070056#include "server.h"
57#include "timeval.h"
mlumishb892a272014-12-09 16:28:23 -080058
Xiaoguang Sun8a929a92015-03-13 14:22:31 +080059zend_class_entry *grpc_ce_channel;
60
mlumishb892a272014-12-09 16:28:23 -080061/* Frees and destroys an instance of wrapped_grpc_channel */
Craig Tillerb5dcec52015-01-13 11:13:42 -080062void free_wrapped_grpc_channel(void *object TSRMLS_DC) {
63 wrapped_grpc_channel *channel = (wrapped_grpc_channel *)object;
64 if (channel->wrapped != NULL) {
mlumishb892a272014-12-09 16:28:23 -080065 grpc_channel_destroy(channel->wrapped);
66 }
67 efree(channel);
68}
69
70/* Initializes an instance of wrapped_grpc_channel to be associated with an
71 * object of a class specified by class_type */
Craig Tillerb5dcec52015-01-13 11:13:42 -080072zend_object_value create_wrapped_grpc_channel(zend_class_entry *class_type
73 TSRMLS_DC) {
mlumishb892a272014-12-09 16:28:23 -080074 zend_object_value retval;
75 wrapped_grpc_channel *intern;
Craig Tillerb5dcec52015-01-13 11:13:42 -080076 intern = (wrapped_grpc_channel *)emalloc(sizeof(wrapped_grpc_channel));
mlumishb892a272014-12-09 16:28:23 -080077 memset(intern, 0, sizeof(wrapped_grpc_channel));
78 zend_object_std_init(&intern->std, class_type TSRMLS_CC);
79 object_properties_init(&intern->std, class_type);
80 retval.handle = zend_objects_store_put(
Craig Tillerb5dcec52015-01-13 11:13:42 -080081 intern, (zend_objects_store_dtor_t)zend_objects_destroy_object,
82 free_wrapped_grpc_channel, NULL TSRMLS_CC);
mlumishb892a272014-12-09 16:28:23 -080083 retval.handlers = zend_get_std_object_handlers();
84 return retval;
85}
86
Craig Tillerb5dcec52015-01-13 11:13:42 -080087void php_grpc_read_args_array(zval *args_array, grpc_channel_args *args) {
mlumishb892a272014-12-09 16:28:23 -080088 HashTable *array_hash;
89 HashPosition array_pointer;
90 int args_index;
91 zval **data;
92 char *key;
93 uint key_len;
94 ulong index;
95 array_hash = Z_ARRVAL_P(args_array);
96 args->num_args = zend_hash_num_elements(array_hash);
97 args->args = ecalloc(args->num_args, sizeof(grpc_arg));
98 args_index = 0;
Craig Tillerb5dcec52015-01-13 11:13:42 -080099 for (zend_hash_internal_pointer_reset_ex(array_hash, &array_pointer);
100 zend_hash_get_current_data_ex(array_hash, (void **)&data,
101 &array_pointer) == SUCCESS;
102 zend_hash_move_forward_ex(array_hash, &array_pointer)) {
103 if (zend_hash_get_current_key_ex(array_hash, &key, &key_len, &index, 0,
104 &array_pointer) != HASH_KEY_IS_STRING) {
mlumishb892a272014-12-09 16:28:23 -0800105 zend_throw_exception(spl_ce_InvalidArgumentException,
Craig Tillerb5dcec52015-01-13 11:13:42 -0800106 "args keys must be strings", 1 TSRMLS_CC);
mlumishb892a272014-12-09 16:28:23 -0800107 return;
108 }
109 args->args[args_index].key = key;
Craig Tillerb5dcec52015-01-13 11:13:42 -0800110 switch (Z_TYPE_P(*data)) {
mlumishb892a272014-12-09 16:28:23 -0800111 case IS_LONG:
112 args->args[args_index].value.integer = (int)Z_LVAL_P(*data);
113 break;
114 case IS_STRING:
115 args->args[args_index].value.string = Z_STRVAL_P(*data);
116 break;
117 default:
118 zend_throw_exception(spl_ce_InvalidArgumentException,
Craig Tillerb5dcec52015-01-13 11:13:42 -0800119 "args values must be int or string", 1 TSRMLS_CC);
mlumishb892a272014-12-09 16:28:23 -0800120 return;
121 }
122 args_index++;
123 }
124}
125
126/**
127 * Construct an instance of the Channel class. If the $args array contains a
Stanley Cheung9c0b35e2015-10-21 17:07:56 -0700128 * "credentials" key mapping to a ChannelCredentials object, a secure channel
129 * will be created with those credentials.
mlumishb892a272014-12-09 16:28:23 -0800130 * @param string $target The hostname to associate with this channel
131 * @param array $args The arguments to pass to the Channel (optional)
132 */
Craig Tillerb5dcec52015-01-13 11:13:42 -0800133PHP_METHOD(Channel, __construct) {
mlumishb892a272014-12-09 16:28:23 -0800134 wrapped_grpc_channel *channel =
Stanley Cheung9c0b35e2015-10-21 17:07:56 -0700135 (wrapped_grpc_channel *)zend_object_store_get_object(
136 getThis() TSRMLS_CC);
mlumishb892a272014-12-09 16:28:23 -0800137 char *target;
138 int target_length;
139 zval *args_array = NULL;
140 grpc_channel_args args;
141 HashTable *array_hash;
142 zval **creds_obj = NULL;
Stanley Cheungaeea1022015-10-21 17:00:49 -0700143 wrapped_grpc_channel_credentials *creds = NULL;
mlumishb892a272014-12-09 16:28:23 -0800144 /* "s|a" == 1 string, 1 optional array */
Craig Tillerb5dcec52015-01-13 11:13:42 -0800145 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|a", &target,
146 &target_length, &args_array) == FAILURE) {
mlumishb892a272014-12-09 16:28:23 -0800147 zend_throw_exception(spl_ce_InvalidArgumentException,
Craig Tillerb5dcec52015-01-13 11:13:42 -0800148 "Channel expects a string and an array", 1 TSRMLS_CC);
mlumishb892a272014-12-09 16:28:23 -0800149 return;
150 }
151 if (args_array == NULL) {
Julien Boeuf5cc1e2e2015-08-25 22:07:58 -0700152 channel->wrapped = grpc_insecure_channel_create(target, NULL, NULL);
mlumishb892a272014-12-09 16:28:23 -0800153 } else {
154 array_hash = Z_ARRVAL_P(args_array);
Craig Tillerb5dcec52015-01-13 11:13:42 -0800155 if (zend_hash_find(array_hash, "credentials", sizeof("credentials"),
156 (void **)&creds_obj) == SUCCESS) {
Stanley Cheung9c0b35e2015-10-21 17:07:56 -0700157 if (zend_get_class_entry(*creds_obj TSRMLS_CC) !=
158 grpc_ce_channel_credentials) {
mlumishb892a272014-12-09 16:28:23 -0800159 zend_throw_exception(spl_ce_InvalidArgumentException,
Stanley Cheungaeea1022015-10-21 17:00:49 -0700160 "credentials must be a ChannelCredentials object",
mlumishb892a272014-12-09 16:28:23 -0800161 1 TSRMLS_CC);
162 return;
163 }
Stanley Cheungaeea1022015-10-21 17:00:49 -0700164 creds = (wrapped_grpc_channel_credentials *)zend_object_store_get_object(
mlumishb892a272014-12-09 16:28:23 -0800165 *creds_obj TSRMLS_CC);
166 zend_hash_del(array_hash, "credentials", 12);
167 }
168 php_grpc_read_args_array(args_array, &args);
169 if (creds == NULL) {
Nicolas "Pixel" Noble9d72b142015-08-08 01:45:38 +0200170 channel->wrapped = grpc_insecure_channel_create(target, &args, NULL);
mlumishb892a272014-12-09 16:28:23 -0800171 } else {
172 gpr_log(GPR_DEBUG, "Initialized secure channel");
Craig Tillerb5dcec52015-01-13 11:13:42 -0800173 channel->wrapped =
Julien Boeufc17fecd2015-08-25 19:41:20 -0700174 grpc_secure_channel_create(creds->wrapped, target, &args, NULL);
mlumishb892a272014-12-09 16:28:23 -0800175 }
176 efree(args.args);
177 }
mlumishb892a272014-12-09 16:28:23 -0800178}
179
180/**
Stanley Cheungdb98e082015-07-27 10:19:45 -0700181 * Get the endpoint this call/stream is connected to
182 * @return string The URI of the endpoint
183 */
184PHP_METHOD(Channel, getTarget) {
185 wrapped_grpc_channel *channel =
186 (wrapped_grpc_channel *)zend_object_store_get_object(getThis() TSRMLS_CC);
187 RETURN_STRING(grpc_channel_get_target(channel->wrapped), 1);
188}
189
190/**
Stanley Cheunge63354a2015-08-10 15:46:42 -0700191 * Get the connectivity state of the channel
192 * @param bool (optional) try to connect on the channel
193 * @return long The grpc connectivity state
194 */
195PHP_METHOD(Channel, getConnectivityState) {
196 wrapped_grpc_channel *channel =
197 (wrapped_grpc_channel *)zend_object_store_get_object(getThis() TSRMLS_CC);
198 bool try_to_connect;
199 /* "|b" == 1 optional bool */
200 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|b", &try_to_connect) ==
201 FAILURE) {
202 zend_throw_exception(spl_ce_InvalidArgumentException,
203 "getConnectivityState expects a bool", 1 TSRMLS_CC);
204 return;
205 }
206 RETURN_LONG(grpc_channel_check_connectivity_state(channel->wrapped,
207 (int)try_to_connect));
208}
209
210/**
Stanley Cheunga63fdd02015-08-11 15:11:11 -0700211 * Watch the connectivity state of the channel until it changed
212 * @param long The previous connectivity state of the channel
213 * @param Timeval The deadline this function should wait until
Stanley Cheung4c5c7b82015-08-12 16:28:58 -0700214 * @return bool If the connectivity state changes from last_state
215 * before deadline
Stanley Cheunga63fdd02015-08-11 15:11:11 -0700216 */
217PHP_METHOD(Channel, watchConnectivityState) {
218 wrapped_grpc_channel *channel =
219 (wrapped_grpc_channel *)zend_object_store_get_object(getThis() TSRMLS_CC);
220 long last_state;
221 zval *deadline_obj;
222 /* "lO" == 1 long 1 object */
223 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "lO",
224 &last_state, &deadline_obj, grpc_ce_timeval) == FAILURE) {
225 zend_throw_exception(spl_ce_InvalidArgumentException,
226 "watchConnectivityState expects 1 long 1 timeval",
227 1 TSRMLS_CC);
228 return;
229 }
230
231 wrapped_grpc_timeval *deadline =
232 (wrapped_grpc_timeval *)zend_object_store_get_object(
233 deadline_obj TSRMLS_CC);
234 grpc_channel_watch_connectivity_state(
235 channel->wrapped, (grpc_connectivity_state)last_state,
236 deadline->wrapped, completion_queue, NULL);
237 grpc_event event = grpc_completion_queue_pluck(
238 completion_queue, NULL,
Nicolas "Pixel" Noblef1234432015-08-13 23:39:43 +0200239 gpr_inf_future(GPR_CLOCK_REALTIME), NULL);
Stanley Cheung1567c0c2015-08-13 11:12:54 -0700240 RETURN_BOOL(event.success);
Stanley Cheunga63fdd02015-08-11 15:11:11 -0700241}
242
243/**
mlumishb892a272014-12-09 16:28:23 -0800244 * Close the channel
245 */
Craig Tillerb5dcec52015-01-13 11:13:42 -0800246PHP_METHOD(Channel, close) {
mlumishb892a272014-12-09 16:28:23 -0800247 wrapped_grpc_channel *channel =
Craig Tillerb5dcec52015-01-13 11:13:42 -0800248 (wrapped_grpc_channel *)zend_object_store_get_object(getThis() TSRMLS_CC);
249 if (channel->wrapped != NULL) {
mlumishb892a272014-12-09 16:28:23 -0800250 grpc_channel_destroy(channel->wrapped);
251 channel->wrapped = NULL;
252 }
253}
254
255static zend_function_entry channel_methods[] = {
Craig Tillerb5dcec52015-01-13 11:13:42 -0800256 PHP_ME(Channel, __construct, NULL, ZEND_ACC_PUBLIC | ZEND_ACC_CTOR)
Stanley Cheungdb98e082015-07-27 10:19:45 -0700257 PHP_ME(Channel, getTarget, NULL, ZEND_ACC_PUBLIC)
Stanley Cheunge63354a2015-08-10 15:46:42 -0700258 PHP_ME(Channel, getConnectivityState, NULL, ZEND_ACC_PUBLIC)
Stanley Cheunga63fdd02015-08-11 15:11:11 -0700259 PHP_ME(Channel, watchConnectivityState, NULL, ZEND_ACC_PUBLIC)
Stanley Cheungdb98e082015-07-27 10:19:45 -0700260 PHP_ME(Channel, close, NULL, ZEND_ACC_PUBLIC)
261 PHP_FE_END};
mlumishb892a272014-12-09 16:28:23 -0800262
Craig Tillerb5dcec52015-01-13 11:13:42 -0800263void grpc_init_channel(TSRMLS_D) {
mlumishb892a272014-12-09 16:28:23 -0800264 zend_class_entry ce;
265 INIT_CLASS_ENTRY(ce, "Grpc\\Channel", channel_methods);
266 ce.create_object = create_wrapped_grpc_channel;
267 grpc_ce_channel = zend_register_internal_class(&ce TSRMLS_CC);
268}