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

Side by Side Diff: third_party/grpc/src/php/lib/Grpc/UnaryCall.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 single message and then gets a single
39 * response.
33 */ 40 */
34 WebInspector.TextDictionary = function() 41 class UnaryCall 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 $data The data to send
47 * @param array $metadata Metadata to send with the call, if applicable
48 * @param array $options an array of options, possible keys:
49 * 'flags' => a number
42 */ 50 */
43 addWord: function(word) 51 public function start($data, $metadata = [], $options = [])
44 { 52 {
45 if (!this._words[word]) 53 $message_array = ['message' => $data->serialize()];
46 this._words[word] = 1; 54 if (isset($options['flags'])) {
47 else 55 $message_array['flags'] = $options['flags'];
48 ++this._words[word]; 56 }
49 }, 57 $event = $this->call->startBatch([
58 OP_SEND_INITIAL_METADATA => $metadata,
59 OP_RECV_INITIAL_METADATA => true,
60 OP_SEND_MESSAGE => $message_array,
61 OP_SEND_CLOSE_FROM_CLIENT => true,
62 ]);
63 $this->metadata = $event->metadata;
64 }
50 65
51 /** 66 /**
52 * @param {string} word 67 * Wait for the server to respond with data and a status.
68 *
69 * @return [response data, status]
53 */ 70 */
54 removeWord: function(word) 71 public function wait()
55 { 72 {
56 if (!this._words[word]) 73 $event = $this->call->startBatch([
57 return; 74 OP_RECV_MESSAGE => true,
58 if (this._words[word] === 1) 75 OP_RECV_STATUS_ON_CLIENT => true,
59 delete this._words[word]; 76 ]);
60 else
61 --this._words[word];
62 },
63 77
64 /** 78 return [$this->deserializeResponse($event->message), $event->status];
65 * @param {string} prefix
66 * @return {!Array.<string>}
67 */
68 wordsWithPrefix: function(prefix)
69 {
70 var words = [];
71 for (var i in this._words) {
72 if (i.startsWith(prefix))
73 words.push(i);
74 }
75 return words;
76 },
77
78 /**
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 } 79 }
100 } 80 }
OLDNEW
« no previous file with comments | « third_party/grpc/src/php/lib/Grpc/ServerStreamingCall.php ('k') | third_party/grpc/src/php/phpunit.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698