blob: f8fddfea01c58697c1817020998270de938e2a15 [file] [log] [blame]
mlumish156e67d2015-01-02 14:59:16 -08001<?php
Craig Tiller2e498aa2015-02-16 12:09:31 -08002/*
3 *
Jan Tattermusch7897ae92017-06-07 22:57:36 +02004 * Copyright 2015 gRPC authors.
Craig Tiller2e498aa2015-02-16 12:09:31 -08005 *
Jan Tattermusch7897ae92017-06-07 22:57:36 +02006 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
Craig Tiller2e498aa2015-02-16 12:09:31 -08009 *
Jan Tattermusch7897ae92017-06-07 22:57:36 +020010 * http://www.apache.org/licenses/LICENSE-2.0
Craig Tiller2e498aa2015-02-16 12:09:31 -080011 *
Jan Tattermusch7897ae92017-06-07 22:57:36 +020012 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
Craig Tiller2e498aa2015-02-16 12:09:31 -080017 *
18 */
Stanley Cheungd5b20562015-10-27 13:27:05 -070019
mlumish156e67d2015-01-02 14:59:16 -080020namespace Grpc;
21
mlumish156e67d2015-01-02 14:59:16 -080022/**
thinkerou0c3e8db2016-12-15 00:27:03 +080023 * Represents an active call that sends a single message and then gets a
24 * stream of responses.
mlumish156e67d2015-01-02 14:59:16 -080025 */
Stanley Cheungd5b20562015-10-27 13:27:05 -070026class ServerStreamingCall extends AbstractCall
27{
28 /**
29 * Start the call.
30 *
Stanislav Pavlovichevd58199b2016-08-23 23:20:34 +070031 * @param mixed $data The data to send
Stanley Cheungd5b20562015-10-27 13:27:05 -070032 * @param array $metadata Metadata to send with the call, if applicable
thinkerou0c3e8db2016-12-15 00:27:03 +080033 * (optional)
34 * @param array $options An array of options, possible keys:
35 * 'flags' => a number (optional)
Stanley Cheungd5b20562015-10-27 13:27:05 -070036 */
thinkerou0c3e8db2016-12-15 00:27:03 +080037 public function start($data, array $metadata = [], array $options = [])
Stanley Cheungd5b20562015-10-27 13:27:05 -070038 {
thinkerou8772a362017-01-20 18:20:47 +080039 $message_array = ['message' => $this->_serializeMessage($data)];
Stanislav Pavlovichevd58199b2016-08-23 23:20:34 +070040 if (array_key_exists('flags', $options)) {
Stanley Cheungd5b20562015-10-27 13:27:05 -070041 $message_array['flags'] = $options['flags'];
42 }
Michael Bausor81fd6292017-08-15 10:13:06 -070043 $this->call->startBatch([
Stanley Cheungd5b20562015-10-27 13:27:05 -070044 OP_SEND_INITIAL_METADATA => $metadata,
Stanley Cheungd5b20562015-10-27 13:27:05 -070045 OP_SEND_MESSAGE => $message_array,
46 OP_SEND_CLOSE_FROM_CLIENT => true,
47 ]);
Stanley Cheung3ab8e792015-08-24 16:58:42 -070048 }
mlumish156e67d2015-01-02 14:59:16 -080049
Stanley Cheungd5b20562015-10-27 13:27:05 -070050 /**
Stanislav Pavlovichevd58199b2016-08-23 23:20:34 +070051 * @return mixed An iterator of response values
Stanley Cheungd5b20562015-10-27 13:27:05 -070052 */
53 public function responses()
54 {
Michael Bausor81fd6292017-08-15 10:13:06 -070055 $batch = [OP_RECV_MESSAGE => true];
56 if ($this->metadata === null) {
57 $batch[OP_RECV_INITIAL_METADATA] = true;
58 }
59 $read_event = $this->call->startBatch($batch);
60 if ($this->metadata === null) {
61 $this->metadata = $read_event->metadata;
62 }
63 $response = $read_event->message;
Stanley Cheungd5b20562015-10-27 13:27:05 -070064 while ($response !== null) {
thinkerou8772a362017-01-20 18:20:47 +080065 yield $this->_deserializeResponse($response);
Stanley Cheungd5b20562015-10-27 13:27:05 -070066 $response = $this->call->startBatch([
67 OP_RECV_MESSAGE => true,
68 ])->message;
69 }
mlumish156e67d2015-01-02 14:59:16 -080070 }
mlumish156e67d2015-01-02 14:59:16 -080071
Stanley Cheungd5b20562015-10-27 13:27:05 -070072 /**
73 * Wait for the server to send the status, and return it.
74 *
thinkerou0c3e8db2016-12-15 00:27:03 +080075 * @return \stdClass The status object, with integer $code, string
76 * $details, and array $metadata members
Stanley Cheungd5b20562015-10-27 13:27:05 -070077 */
78 public function getStatus()
79 {
80 $status_event = $this->call->startBatch([
81 OP_RECV_STATUS_ON_CLIENT => true,
82 ]);
83
Stanley Cheung6668d512016-05-18 14:05:09 -070084 $this->trailing_metadata = $status_event->status->metadata;
thinkeroua3730b72016-07-20 16:59:54 +080085
Stanley Cheungd5b20562015-10-27 13:27:05 -070086 return $status_event->status;
87 }
Michael Bausor81fd6292017-08-15 10:13:06 -070088
89 /**
90 * @return mixed The metadata sent by the server
91 */
92 public function getMetadata()
93 {
94 if ($this->metadata === null) {
95 $event = $this->call->startBatch([OP_RECV_INITIAL_METADATA => true]);
96 $this->metadata = $event->metadata;
97 }
98 return $this->metadata;
99 }
Stanley Cheung3ab8e792015-08-24 16:58:42 -0700100}