blob: ea5efeaf8640191f34616d55b647929c2b801b7e [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
thinkeroua3730b72016-07-20 16:59:54 +080051#if PHP_MAJOR_VERSION < 7
52
mlumishb892a272014-12-09 16:28:23 -080053/* Wrapper struct for grpc_channel that can be associated with a PHP object */
54typedef struct wrapped_grpc_channel {
55 zend_object std;
mlumishb892a272014-12-09 16:28:23 -080056 grpc_channel *wrapped;
mlumishb892a272014-12-09 16:28:23 -080057} wrapped_grpc_channel;
58
thinkeroua3730b72016-07-20 16:59:54 +080059#else
60
61/* Wrapper struct for grpc_channel that can be associated with a PHP object */
62typedef struct wrapped_grpc_channel {
63 grpc_channel *wrapped;
64 zend_object std;
65} wrapped_grpc_channel;
66
67static inline wrapped_grpc_channel
68*wrapped_grpc_channel_from_obj(zend_object *obj) {
69 return (wrapped_grpc_channel*)((char*)(obj) -
70 XtOffsetOf(wrapped_grpc_channel, std));
71}
72
73#define Z_WRAPPED_GRPC_CHANNEL_P(zv) \
74 wrapped_grpc_channel_from_obj(Z_OBJ_P((zv)))
75
76#endif /* PHP_MAJOR_VERSION */
77
mlumishb892a272014-12-09 16:28:23 -080078/* Initializes the Channel class */
79void grpc_init_channel(TSRMLS_D);
80
81/* Iterates through a PHP array and populates args with the contents */
thinkeroua3730b72016-07-20 16:59:54 +080082void php_grpc_read_args_array(zval *args_array, grpc_channel_args *args
83 TSRMLS_DC);
mlumishb892a272014-12-09 16:28:23 -080084
85#endif /* NET_GRPC_PHP_GRPC_CHANNEL_H_ */