mlumish | 156e67d | 2015-01-02 14:59:16 -0800 | [diff] [blame] | 1 | <?php |
Craig Tiller | 2e498aa | 2015-02-16 12:09:31 -0800 | [diff] [blame] | 2 | /* |
| 3 | * |
| 4 | * Copyright 2015, Google Inc. |
| 5 | * All rights reserved. |
| 6 | * |
| 7 | * Redistribution and use in source and binary forms, with or without |
| 8 | * modification, are permitted provided that the following conditions are |
| 9 | * met: |
| 10 | * |
| 11 | * * Redistributions of source code must retain the above copyright |
| 12 | * notice, this list of conditions and the following disclaimer. |
| 13 | * * Redistributions in binary form must reproduce the above |
| 14 | * copyright notice, this list of conditions and the following disclaimer |
| 15 | * in the documentation and/or other materials provided with the |
| 16 | * distribution. |
| 17 | * * Neither the name of Google Inc. nor the names of its |
| 18 | * contributors may be used to endorse or promote products derived from |
| 19 | * this software without specific prior written permission. |
| 20 | * |
| 21 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 22 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 23 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 24 | * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 25 | * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 26 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 27 | * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 28 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 29 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 30 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 31 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 32 | * |
| 33 | */ |
Stanley Cheung | d5b2056 | 2015-10-27 13:27:05 -0700 | [diff] [blame] | 34 | |
mlumish | 156e67d | 2015-01-02 14:59:16 -0800 | [diff] [blame] | 35 | namespace Grpc; |
murgatroid99 | 9140a06 | 2015-03-26 11:27:58 -0700 | [diff] [blame] | 36 | |
Stanislav Pavlovichev | d58199b | 2016-08-23 23:20:34 +0700 | [diff] [blame] | 37 | /** |
thinkerou | 9a669b6 | 2016-11-01 21:31:43 +0800 | [diff] [blame] | 38 | * Class AbstractCall. |
Stanislav Pavlovichev | d58199b | 2016-08-23 23:20:34 +0700 | [diff] [blame] | 39 | * @package Grpc |
| 40 | */ |
Stanley Cheung | d5b2056 | 2015-10-27 13:27:05 -0700 | [diff] [blame] | 41 | abstract class AbstractCall |
| 42 | { |
Stanislav Pavlovichev | d58199b | 2016-08-23 23:20:34 +0700 | [diff] [blame] | 43 | /** |
| 44 | * @var Call |
| 45 | */ |
Stanley Cheung | d5b2056 | 2015-10-27 13:27:05 -0700 | [diff] [blame] | 46 | protected $call; |
| 47 | protected $deserialize; |
| 48 | protected $metadata; |
Stanley Cheung | 6668d51 | 2016-05-18 14:05:09 -0700 | [diff] [blame] | 49 | protected $trailing_metadata; |
murgatroid99 | 9140a06 | 2015-03-26 11:27:58 -0700 | [diff] [blame] | 50 | |
Stanley Cheung | d5b2056 | 2015-10-27 13:27:05 -0700 | [diff] [blame] | 51 | /** |
| 52 | * Create a new Call wrapper object. |
| 53 | * |
Stanley Cheung | 3580580 | 2015-12-10 11:42:55 -0800 | [diff] [blame] | 54 | * @param Channel $channel The channel to communicate on |
| 55 | * @param string $method The method to call on the |
| 56 | * remote server |
| 57 | * @param callback $deserialize A callback function to deserialize |
| 58 | * the response |
| 59 | * @param array $options Call options (optional) |
Stanley Cheung | d5b2056 | 2015-10-27 13:27:05 -0700 | [diff] [blame] | 60 | */ |
Stanislav Pavlovichev | d58199b | 2016-08-23 23:20:34 +0700 | [diff] [blame] | 61 | public function __construct( |
| 62 | Channel $channel, |
| 63 | $method, |
| 64 | $deserialize, |
| 65 | $options = [] |
| 66 | ) { |
| 67 | if (array_key_exists('timeout', $options) && |
| 68 | is_numeric($timeout = $options['timeout']) |
| 69 | ) { |
Stanley Cheung | d5b2056 | 2015-10-27 13:27:05 -0700 | [diff] [blame] | 70 | $now = Timeval::now(); |
| 71 | $delta = new Timeval($timeout); |
| 72 | $deadline = $now->add($delta); |
| 73 | } else { |
| 74 | $deadline = Timeval::infFuture(); |
| 75 | } |
| 76 | $this->call = new Call($channel, $method, $deadline); |
| 77 | $this->deserialize = $deserialize; |
| 78 | $this->metadata = null; |
Stanley Cheung | 6668d51 | 2016-05-18 14:05:09 -0700 | [diff] [blame] | 79 | $this->trailing_metadata = null; |
Stanislav Pavlovichev | d58199b | 2016-08-23 23:20:34 +0700 | [diff] [blame] | 80 | if (array_key_exists('call_credentials_callback', $options) && |
Stanley Cheung | 3580580 | 2015-12-10 11:42:55 -0800 | [diff] [blame] | 81 | is_callable($call_credentials_callback = |
Stanislav Pavlovichev | d58199b | 2016-08-23 23:20:34 +0700 | [diff] [blame] | 82 | $options['call_credentials_callback']) |
| 83 | ) { |
Stanley Cheung | 3580580 | 2015-12-10 11:42:55 -0800 | [diff] [blame] | 84 | $call_credentials = CallCredentials::createFromPlugin( |
Stanislav Pavlovichev | d58199b | 2016-08-23 23:20:34 +0700 | [diff] [blame] | 85 | $call_credentials_callback |
| 86 | ); |
Stanley Cheung | 3580580 | 2015-12-10 11:42:55 -0800 | [diff] [blame] | 87 | $this->call->setCredentials($call_credentials); |
| 88 | } |
Stanley Cheung | cc019af | 2015-06-15 11:45:00 -0700 | [diff] [blame] | 89 | } |
mlumish | 156e67d | 2015-01-02 14:59:16 -0800 | [diff] [blame] | 90 | |
Stanley Cheung | d5b2056 | 2015-10-27 13:27:05 -0700 | [diff] [blame] | 91 | /** |
Stanislav Pavlovichev | d58199b | 2016-08-23 23:20:34 +0700 | [diff] [blame] | 92 | * @return mixed The metadata sent by the server. |
Stanley Cheung | d5b2056 | 2015-10-27 13:27:05 -0700 | [diff] [blame] | 93 | */ |
| 94 | public function getMetadata() |
| 95 | { |
| 96 | return $this->metadata; |
murgatroid99 | 9140a06 | 2015-03-26 11:27:58 -0700 | [diff] [blame] | 97 | } |
Stanley Cheung | d5b2056 | 2015-10-27 13:27:05 -0700 | [diff] [blame] | 98 | |
| 99 | /** |
Stanislav Pavlovichev | d58199b | 2016-08-23 23:20:34 +0700 | [diff] [blame] | 100 | * @return mixed The trailing metadata sent by the server. |
Stanley Cheung | 6668d51 | 2016-05-18 14:05:09 -0700 | [diff] [blame] | 101 | */ |
| 102 | public function getTrailingMetadata() |
| 103 | { |
| 104 | return $this->trailing_metadata; |
| 105 | } |
| 106 | |
| 107 | /** |
Stanley Cheung | d5b2056 | 2015-10-27 13:27:05 -0700 | [diff] [blame] | 108 | * @return string The URI of the endpoint. |
| 109 | */ |
| 110 | public function getPeer() |
| 111 | { |
| 112 | return $this->call->getPeer(); |
| 113 | } |
| 114 | |
| 115 | /** |
| 116 | * Cancels the call. |
| 117 | */ |
| 118 | public function cancel() |
| 119 | { |
| 120 | $this->call->cancel(); |
| 121 | } |
| 122 | |
| 123 | /** |
thinkerou | 9a669b6 | 2016-11-01 21:31:43 +0800 | [diff] [blame] | 124 | * Serialize a message to the protobuf binary format. |
Stanley Cheung | 881f4ff | 2016-09-22 16:15:58 -0700 | [diff] [blame] | 125 | * |
| 126 | * @param mixed $data The Protobuf message |
| 127 | * |
| 128 | * @return string The protobuf binary format |
| 129 | */ |
thinkerou | 9a669b6 | 2016-11-01 21:31:43 +0800 | [diff] [blame] | 130 | protected function serializeMessage($data) |
| 131 | { |
Stanley Cheung | 881f4ff | 2016-09-22 16:15:58 -0700 | [diff] [blame] | 132 | // Proto3 implementation |
| 133 | if (method_exists($data, 'encode')) { |
| 134 | return $data->encode(); |
| 135 | } |
| 136 | |
| 137 | // Protobuf-PHP implementation |
| 138 | return $data->serialize(); |
| 139 | } |
| 140 | |
| 141 | /** |
Stanley Cheung | d5b2056 | 2015-10-27 13:27:05 -0700 | [diff] [blame] | 142 | * Deserialize a response value to an object. |
| 143 | * |
| 144 | * @param string $value The binary value to deserialize |
| 145 | * |
Stanislav Pavlovichev | d58199b | 2016-08-23 23:20:34 +0700 | [diff] [blame] | 146 | * @return mixed The deserialized value |
Stanley Cheung | d5b2056 | 2015-10-27 13:27:05 -0700 | [diff] [blame] | 147 | */ |
| 148 | protected function deserializeResponse($value) |
| 149 | { |
| 150 | if ($value === null) { |
| 151 | return; |
| 152 | } |
| 153 | |
Stanley Cheung | 881f4ff | 2016-09-22 16:15:58 -0700 | [diff] [blame] | 154 | // Proto3 implementation |
| 155 | if (is_array($this->deserialize)) { |
| 156 | list($className, $deserializeFunc) = $this->deserialize; |
| 157 | $obj = new $className(); |
| 158 | $obj->$deserializeFunc($value); |
thinkerou | 9a669b6 | 2016-11-01 21:31:43 +0800 | [diff] [blame] | 159 | |
Stanley Cheung | 881f4ff | 2016-09-22 16:15:58 -0700 | [diff] [blame] | 160 | return $obj; |
| 161 | } |
| 162 | |
| 163 | // Protobuf-PHP implementation |
Stanley Cheung | d5b2056 | 2015-10-27 13:27:05 -0700 | [diff] [blame] | 164 | return call_user_func($this->deserialize, $value); |
| 165 | } |
Stanley Cheung | 6bd3180 | 2015-12-16 12:58:19 -0800 | [diff] [blame] | 166 | |
| 167 | /** |
| 168 | * Set the CallCredentials for the underlying Call. |
| 169 | * |
| 170 | * @param CallCredentials $call_credentials The CallCredentials |
| 171 | * object |
| 172 | */ |
| 173 | public function setCallCredentials($call_credentials) |
| 174 | { |
| 175 | $this->call->setCredentials($call_credentials); |
| 176 | } |
Stanley Cheung | 3ab8e79 | 2015-08-24 16:58:42 -0700 | [diff] [blame] | 177 | } |