blob: 0b815657d334cc9b4cc2d692a920447ba43a9e64 [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#ifndef NET_GRPC_PHP_GRPC_CHANNEL_H_
35#define NET_GRPC_PHP_GRPC_CHANNEL_H_
36
37#ifdef HAVE_CONFIG_H
38#include "config.h"
39#endif
40
murgatroid998242ba72015-04-01 15:29:44 -070041#include <php.h>
42#include <php_ini.h>
43#include <ext/standard/info.h>
mlumishb892a272014-12-09 16:28:23 -080044#include "php_grpc.h"
45
murgatroid998242ba72015-04-01 15:29:44 -070046#include <grpc/grpc.h>
mlumishb892a272014-12-09 16:28:23 -080047
48/* Class entry for the PHP Channel class */
Xiaoguang Sun8a929a92015-03-13 14:22:31 +080049extern zend_class_entry *grpc_ce_channel;
mlumishb892a272014-12-09 16:28:23 -080050
51/* Wrapper struct for grpc_channel that can be associated with a PHP object */
thinkerou6f9d30b2016-07-27 03:19:03 +080052PHP_GRPC_WRAP_OBJECT_START(wrapped_grpc_channel)
mlumishb892a272014-12-09 16:28:23 -080053 grpc_channel *wrapped;
thinkerou6f9d30b2016-07-27 03:19:03 +080054PHP_GRPC_WRAP_OBJECT_END(wrapped_grpc_channel)
55
56#if PHP_MAJOR_VERSION < 7
mlumishb892a272014-12-09 16:28:23 -080057
thinkerou19304682016-07-22 02:43:19 +080058#define Z_WRAPPED_GRPC_CHANNEL_P(zv) \
59 (wrapped_grpc_channel *)zend_object_store_get_object(zv TSRMLS_CC)
60
thinkeroua3730b72016-07-20 16:59:54 +080061#else
62
thinkeroua3730b72016-07-20 16:59:54 +080063static inline wrapped_grpc_channel
64*wrapped_grpc_channel_from_obj(zend_object *obj) {
65 return (wrapped_grpc_channel*)((char*)(obj) -
66 XtOffsetOf(wrapped_grpc_channel, std));
67}
68
thinkerou6f9d30b2016-07-27 03:19:03 +080069#define Z_WRAPPED_GRPC_CHANNEL_P(zv) \
thinkeroua3730b72016-07-20 16:59:54 +080070 wrapped_grpc_channel_from_obj(Z_OBJ_P((zv)))
71
72#endif /* PHP_MAJOR_VERSION */
73
mlumishb892a272014-12-09 16:28:23 -080074/* Initializes the Channel class */
75void grpc_init_channel(TSRMLS_D);
76
77/* Iterates through a PHP array and populates args with the contents */
thinkeroua3730b72016-07-20 16:59:54 +080078void php_grpc_read_args_array(zval *args_array, grpc_channel_args *args
79 TSRMLS_DC);
mlumishb892a272014-12-09 16:28:23 -080080
81#endif /* NET_GRPC_PHP_GRPC_CHANNEL_H_ */