Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(247)

Side by Side Diff: third_party/grpc/src/php/lib/Grpc/ClientStreamingCall.php

Issue 1932353002: Initial checkin of gRPC to third_party/ Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <?php
1 /* 2 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 3 *
4 * Copyright 2015, Google Inc.
5 * All rights reserved.
3 * 6 *
4 * Redistribution and use in source and binary forms, with or without 7 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 8 * modification, are permitted provided that the following conditions are
6 * met: 9 * met:
7 * 10 *
8 * * Redistributions of source code must retain the above copyright 11 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 12 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 13 * * Redistributions in binary form must reproduce the above
11 * copyright notice, this list of conditions and the following disclaimer 14 * copyright notice, this list of conditions and the following disclaimer
12 * in the documentation and/or other materials provided with the 15 * in the documentation and/or other materials provided with the
13 * distribution. 16 * distribution.
14 * * Neither the name of Google Inc. nor the names of its 17 * * Neither the name of Google Inc. nor the names of its
15 * contributors may be used to endorse or promote products derived from 18 * contributors may be used to endorse or promote products derived from
16 * this software without specific prior written permission. 19 * this software without specific prior written permission.
17 * 20 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 24 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 25 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 26 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 27 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 31 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 *
29 */ 33 */
30 34
35 namespace Grpc;
36
31 /** 37 /**
32 * @constructor 38 * Represents an active call that sends a stream of messages and then gets a
39 * single response.
33 */ 40 */
34 WebInspector.TextDictionary = function() 41 class ClientStreamingCall extends AbstractCall
35 { 42 {
36 this._words = {};
37 }
38
39 WebInspector.TextDictionary.prototype = {
40 /** 43 /**
41 * @param {string} word 44 * Start the call.
45 *
46 * @param array $metadata Metadata to send with the call, if applicable
42 */ 47 */
43 addWord: function(word) 48 public function start($metadata = [])
44 { 49 {
45 if (!this._words[word]) 50 $this->call->startBatch([
46 this._words[word] = 1; 51 OP_SEND_INITIAL_METADATA => $metadata,
47 else 52 ]);
48 ++this._words[word]; 53 }
49 },
50 54
51 /** 55 /**
52 * @param {string} word 56 * Write a single message to the server. This cannot be called after
57 * wait is called.
58 *
59 * @param ByteBuffer $data The data to write
60 * @param array $options an array of options, possible keys:
61 * 'flags' => a number
53 */ 62 */
54 removeWord: function(word) 63 public function write($data, $options = [])
55 { 64 {
56 if (!this._words[word]) 65 $message_array = ['message' => $data->serialize()];
57 return; 66 if (isset($options['flags'])) {
58 if (this._words[word] === 1) 67 $message_array['flags'] = $options['flags'];
59 delete this._words[word]; 68 }
60 else 69 $this->call->startBatch([
61 --this._words[word]; 70 OP_SEND_MESSAGE => $message_array,
62 }, 71 ]);
72 }
63 73
64 /** 74 /**
65 * @param {string} prefix 75 * Wait for the server to respond with data and a status.
66 * @return {!Array.<string>} 76 *
77 * @return [response data, status]
67 */ 78 */
68 wordsWithPrefix: function(prefix) 79 public function wait()
69 { 80 {
70 var words = []; 81 $event = $this->call->startBatch([
71 for (var i in this._words) { 82 OP_SEND_CLOSE_FROM_CLIENT => true,
72 if (i.startsWith(prefix)) 83 OP_RECV_INITIAL_METADATA => true,
73 words.push(i); 84 OP_RECV_MESSAGE => true,
74 } 85 OP_RECV_STATUS_ON_CLIENT => true,
75 return words; 86 ]);
76 }, 87 $this->metadata = $event->metadata;
77 88
78 /** 89 return [$this->deserializeResponse($event->message), $event->status];
79 * @param {string} word
80 * @return {boolean}
81 */
82 hasWord: function(word)
83 {
84 return !!this._words[word];
85 },
86
87 /**
88 * @param {string} word
89 * @return {number}
90 */
91 wordCount: function(word)
92 {
93 return this._words[word] ? this._words[word] : 0;
94 },
95
96 reset: function()
97 {
98 this._words = {};
99 } 90 }
100 } 91 }
OLDNEW
« no previous file with comments | « third_party/grpc/src/php/lib/Grpc/BidiStreamingCall.php ('k') | third_party/grpc/src/php/lib/Grpc/ServerStreamingCall.php » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698