blob: 5f7d74bca81ce5e7b2f507b5c96af4d998ea3118 [file] [log] [blame]
Jorge Canizales9409ad82015-02-18 16:19:56 -08001/*
2 *
Yang Gao5fc90292015-02-20 09:46:22 -08003 * Copyright 2015, Google Inc.
Jorge Canizales9409ad82015-02-18 16:19:56 -08004 * 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
Jorge Canizales5e0efd92015-02-17 18:23:58 -080034#import "GRPCCall.h"
35
Jorge Canizalesc2d7ecb2015-02-27 01:22:41 -080036#include <grpc/grpc.h>
Jorge Canizales59bb9d72015-06-22 19:04:15 -070037#include <grpc/support/time.h>
Jorge Canizales35f003b2015-07-17 21:14:36 -070038#import <RxLibrary/GRXConcurrentWriteable.h>
Jorge Canizales5e0efd92015-02-17 18:23:58 -080039
murgatroid9969927d62015-04-24 13:32:48 -070040#import "private/GRPCWrappedCall.h"
Jorge Canizales5e0efd92015-02-17 18:23:58 -080041#import "private/NSData+GRPC.h"
42#import "private/NSDictionary+GRPC.h"
43#import "private/NSError+GRPC.h"
44
Jorge Canizalesf3a4f2c2015-06-12 22:12:50 -070045NSString * const kGRPCStatusMetadataKey = @"io.grpc.StatusMetadataKey";
46
Jorge Canizales5e0efd92015-02-17 18:23:58 -080047@interface GRPCCall () <GRXWriteable>
Jorge Canizales5e0efd92015-02-17 18:23:58 -080048@end
49
50// The following methods of a C gRPC call object aren't reentrant, and thus
51// calls to them must be serialized:
murgatroid99b5c076f2015-04-27 17:25:36 -070052// - start_batch
Jorge Canizales5e0efd92015-02-17 18:23:58 -080053// - destroy
Jorge Canizales5e0efd92015-02-17 18:23:58 -080054//
murgatroid99b5c076f2015-04-27 17:25:36 -070055// start_batch with a SEND_MESSAGE argument can only be called after the
56// OP_COMPLETE event for any previous write is received. This is achieved by
Jorge Canizales5e0efd92015-02-17 18:23:58 -080057// pausing the requests writer immediately every time it writes a value, and
murgatroid99b5c076f2015-04-27 17:25:36 -070058// resuming it again when OP_COMPLETE is received.
Jorge Canizales5e0efd92015-02-17 18:23:58 -080059//
murgatroid99b5c076f2015-04-27 17:25:36 -070060// Similarly, start_batch with a RECV_MESSAGE argument can only be called after
61// the OP_COMPLETE event for any previous read is received.This is easier to
62// enforce, as we're writing the received messages into the writeable:
63// start_batch is enqueued once upon receiving the OP_COMPLETE event for the
64// RECV_METADATA batch, and then once after receiving each OP_COMPLETE event for
65// each RECV_MESSAGE batch.
Jorge Canizales5e0efd92015-02-17 18:23:58 -080066@implementation GRPCCall {
67 dispatch_queue_t _callQueue;
68
murgatroid9930b7d4e2015-04-24 10:36:43 -070069 GRPCWrappedCall *_wrappedCall;
Jorge Canizales5e0efd92015-02-17 18:23:58 -080070 dispatch_once_t _callAlreadyInvoked;
71
Jorge Canizales5e0efd92015-02-17 18:23:58 -080072 // The C gRPC library has less guarantees on the ordering of events than we
73 // do. Particularly, in the face of errors, there's no ordering guarantee at
74 // all. This wrapper over our actual writeable ensures thread-safety and
75 // correct ordering.
Jorge Canizales35f003b2015-07-17 21:14:36 -070076 GRXConcurrentWriteable *_responseWriteable;
Jorge Canizales56047122015-07-17 12:18:08 -070077 GRXWriter *_requestWriter;
Jorge Canizales544963e2015-06-12 19:46:27 -070078
Jorge Canizales6531b2b2015-07-18 00:19:14 -070079 // To create a retain cycle when a call is started, up until it finishes. See
80 // |startWithWriteable:| and |finishWithError:|.
81 GRPCCall *_self;
82
Jorge Canizales544963e2015-06-12 19:46:27 -070083 NSMutableDictionary *_requestMetadata;
Jorge Canizalesf3a4f2c2015-06-12 22:12:50 -070084 NSMutableDictionary *_responseMetadata;
Jorge Canizales5e0efd92015-02-17 18:23:58 -080085}
86
87@synthesize state = _state;
88
89- (instancetype)init {
Jorge Canizalesbe808e32015-07-04 14:37:58 -070090 return [self initWithHost:nil path:nil requestsWriter:nil];
Jorge Canizales5e0efd92015-02-17 18:23:58 -080091}
92
93// Designated initializer
94- (instancetype)initWithHost:(NSString *)host
Jorge Canizalesbe808e32015-07-04 14:37:58 -070095 path:(NSString *)path
Jorge Canizales56047122015-07-17 12:18:08 -070096 requestsWriter:(GRXWriter *)requestWriter {
Jorge Canizalesbe808e32015-07-04 14:37:58 -070097 if (!host || !path) {
Jorge Canizales597ef982015-07-31 23:31:56 -070098 [NSException raise:NSInvalidArgumentException format:@"Neither host nor path can be nil."];
Jorge Canizales5e0efd92015-02-17 18:23:58 -080099 }
Jorge Canizales6bbfcc32015-06-17 14:10:52 -0700100 if (requestWriter.state != GRXWriterStateNotStarted) {
Jorge Canizales597ef982015-07-31 23:31:56 -0700101 [NSException raise:NSInvalidArgumentException
102 format:@"The requests writer can't be already started."];
Jorge Canizales6bbfcc32015-06-17 14:10:52 -0700103 }
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800104 if ((self = [super init])) {
Jorge Canizales3a5253e2015-07-31 23:48:56 -0700105 _wrappedCall = [[GRPCWrappedCall alloc] initWithHost:host path:path];
Jorge Canizales8c5318a2015-08-05 18:50:08 -0700106 if (!_wrappedCall) {
107 return nil;
108 }
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800109
110 // Serial queue to invoke the non-reentrant methods of the grpc_call object.
111 _callQueue = dispatch_queue_create("org.grpc.call", NULL);
112
113 _requestWriter = requestWriter;
Jorge Canizales544963e2015-06-12 19:46:27 -0700114
115 _requestMetadata = [NSMutableDictionary dictionary];
Jorge Canizalesf3a4f2c2015-06-12 22:12:50 -0700116 _responseMetadata = [NSMutableDictionary dictionary];
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800117 }
118 return self;
119}
120
Jorge Canizales544963e2015-06-12 19:46:27 -0700121#pragma mark Metadata
122
123- (NSMutableDictionary *)requestMetadata {
124 return _requestMetadata;
125}
126
127- (void)setRequestMetadata:(NSDictionary *)requestMetadata {
128 _requestMetadata = [NSMutableDictionary dictionaryWithDictionary:requestMetadata];
129}
130
Jorge Canizalesf3a4f2c2015-06-12 22:12:50 -0700131- (NSDictionary *)responseMetadata {
132 return _responseMetadata;
133}
134
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800135#pragma mark Finish
136
137- (void)finishWithError:(NSError *)errorOrNil {
Jorge Canizales6531b2b2015-07-18 00:19:14 -0700138 // If the call isn't retained anywhere else, it can be deallocated now.
139 _self = nil;
140
141 // If there were still request messages coming, stop them.
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800142 _requestWriter.state = GRXWriterStateFinished;
143 _requestWriter = nil;
Jorge Canizales6531b2b2015-07-18 00:19:14 -0700144
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800145 if (errorOrNil) {
146 [_responseWriteable cancelWithError:errorOrNil];
147 } else {
148 [_responseWriteable enqueueSuccessfulCompletion];
149 }
150}
151
152- (void)cancelCall {
153 // Can be called from any thread, any number of times.
murgatroid99b56609c2015-04-28 16:41:11 -0700154 [_wrappedCall cancel];
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800155}
156
157- (void)cancel {
158 [self finishWithError:[NSError errorWithDomain:kGRPCErrorDomain
159 code:GRPCErrorCodeCancelled
160 userInfo:nil]];
161 [self cancelCall];
162}
163
164- (void)dealloc {
murgatroid996cc46802015-04-28 09:35:48 -0700165 __block GRPCWrappedCall *wrappedCall = _wrappedCall;
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800166 dispatch_async(_callQueue, ^{
murgatroid996cc46802015-04-28 09:35:48 -0700167 wrappedCall = nil;
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800168 });
169}
170
171#pragma mark Read messages
172
173// Only called from the call queue.
174// The handler will be called from the network queue.
murgatroid996cc46802015-04-28 09:35:48 -0700175- (void)startReadWithHandler:(void(^)(grpc_byte_buffer *))handler {
murgatroid99ca38ddb2015-04-29 13:16:42 -0700176 // TODO(jcanizales): Add error handlers for async failures
murgatroid9954e93d42015-04-27 09:29:49 -0700177 [_wrappedCall startBatchWithOperations:@[[[GRPCOpRecvMessage alloc] initWithHandler:handler]]];
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800178}
179
180// Called initially from the network queue once response headers are received,
181// then "recursively" from the responseWriteable queue after each response from the
182// server has been written.
183// If the call is currently paused, this is a noop. Restarting the call will invoke this
184// method.
185// TODO(jcanizales): Rename to readResponseIfNotPaused.
186- (void)startNextRead {
187 if (self.state == GRXWriterStatePaused) {
188 return;
189 }
190 __weak GRPCCall *weakSelf = self;
Jorge Canizales35f003b2015-07-17 21:14:36 -0700191 __weak GRXConcurrentWriteable *weakWriteable = _responseWriteable;
murgatroid9969927d62015-04-24 13:32:48 -0700192
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800193 dispatch_async(_callQueue, ^{
murgatroid996cc46802015-04-28 09:35:48 -0700194 [weakSelf startReadWithHandler:^(grpc_byte_buffer *message) {
195 if (message == NULL) {
murgatroid99b56609c2015-04-28 16:41:11 -0700196 // No more messages from the server
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800197 return;
198 }
murgatroid996cc46802015-04-28 09:35:48 -0700199 NSData *data = [NSData grpc_dataWithByteBuffer:message];
200 grpc_byte_buffer_destroy(message);
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800201 if (!data) {
202 // The app doesn't have enough memory to hold the server response. We
203 // don't want to throw, because the app shouldn't crash for a behavior
204 // that's on the hands of any server to have. Instead we finish and ask
205 // the server to cancel.
206 //
207 // TODO(jcanizales): No canonical code is appropriate for this situation
208 // (because it's just a client problem). Use another domain and an
209 // appropriately-documented code.
210 [weakSelf finishWithError:[NSError errorWithDomain:kGRPCErrorDomain
211 code:GRPCErrorCodeInternal
212 userInfo:nil]];
213 [weakSelf cancelCall];
214 return;
215 }
Jorge Canizales4c6f7782015-07-17 23:13:36 -0700216 [weakWriteable enqueueValue:data completionHandler:^{
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800217 [weakSelf startNextRead];
218 }];
219 }];
220 });
221}
222
223#pragma mark Send headers
224
murgatroid9969927d62015-04-24 13:32:48 -0700225// TODO(jcanizales): Rename to commitHeaders.
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800226- (void)sendHeaders:(NSDictionary *)metadata {
murgatroid99ca38ddb2015-04-29 13:16:42 -0700227 // TODO(jcanizales): Add error handlers for async failures
murgatroid996cc46802015-04-28 09:35:48 -0700228 [_wrappedCall startBatchWithOperations:@[[[GRPCOpSendMetadata alloc]
229 initWithMetadata:metadata ?: @{} handler:nil]]];
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800230}
231
232#pragma mark GRXWriteable implementation
233
234// Only called from the call queue. The error handler will be called from the
235// network queue if the write didn't succeed.
236- (void)writeMessage:(NSData *)message withErrorHandler:(void (^)())errorHandler {
237
238 __weak GRPCCall *weakSelf = self;
murgatroid9954e93d42015-04-27 09:29:49 -0700239 void(^resumingHandler)(void) = ^{
murgatroid99ca38ddb2015-04-29 13:16:42 -0700240 // Resume the request writer.
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800241 GRPCCall *strongSelf = weakSelf;
242 if (strongSelf) {
243 strongSelf->_requestWriter.state = GRXWriterStateStarted;
244 }
245 };
murgatroid996cc46802015-04-28 09:35:48 -0700246 [_wrappedCall startBatchWithOperations:@[[[GRPCOpSendMessage alloc]
247 initWithMessage:message
248 handler:resumingHandler]] errorHandler:errorHandler];
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800249}
250
Jorge Canizalesa90a9c32015-05-18 17:12:41 -0700251- (void)writeValue:(id)value {
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800252 // TODO(jcanizales): Throw/assert if value isn't NSData.
253
254 // Pause the input and only resume it when the C layer notifies us that writes
255 // can proceed.
256 _requestWriter.state = GRXWriterStatePaused;
257
258 __weak GRPCCall *weakSelf = self;
259 dispatch_async(_callQueue, ^{
260 [weakSelf writeMessage:value withErrorHandler:^{
261 [weakSelf finishWithError:[NSError errorWithDomain:kGRPCErrorDomain
262 code:GRPCErrorCodeInternal
263 userInfo:nil]];
264 }];
265 });
266}
267
268// Only called from the call queue. The error handler will be called from the
269// network queue if the requests stream couldn't be closed successfully.
270- (void)finishRequestWithErrorHandler:(void (^)())errorHandler {
murgatroid996cc46802015-04-28 09:35:48 -0700271 [_wrappedCall startBatchWithOperations:@[[[GRPCOpSendClose alloc] init]]
272 errorHandler:errorHandler];
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800273}
274
Jorge Canizalesb2c300c2015-05-18 17:19:16 -0700275- (void)writesFinishedWithError:(NSError *)errorOrNil {
Jorge Canizales6531b2b2015-07-18 00:19:14 -0700276 _requestWriter = nil;
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800277 if (errorOrNil) {
278 [self cancel];
279 } else {
280 __weak GRPCCall *weakSelf = self;
281 dispatch_async(_callQueue, ^{
282 [weakSelf finishRequestWithErrorHandler:^{
283 [weakSelf finishWithError:[NSError errorWithDomain:kGRPCErrorDomain
284 code:GRPCErrorCodeInternal
285 userInfo:nil]];
286 }];
287 });
288 }
289}
290
291#pragma mark Invoke
292
293// Both handlers will eventually be called, from the network queue. Writes can start immediately
294// after this.
295// The first one (metadataHandler), when the response headers are received.
296// The second one (completionHandler), whenever the RPC finishes for any reason.
murgatroid9954e93d42015-04-27 09:29:49 -0700297- (void)invokeCallWithMetadataHandler:(void(^)(NSDictionary *))metadataHandler
Jorge Canizalesf3a4f2c2015-06-12 22:12:50 -0700298 completionHandler:(void(^)(NSError *, NSDictionary *))completionHandler {
murgatroid99ca38ddb2015-04-29 13:16:42 -0700299 // TODO(jcanizales): Add error handlers for async failures
murgatroid996cc46802015-04-28 09:35:48 -0700300 [_wrappedCall startBatchWithOperations:@[[[GRPCOpRecvMetadata alloc]
301 initWithHandler:metadataHandler]]];
302 [_wrappedCall startBatchWithOperations:@[[[GRPCOpRecvStatus alloc]
303 initWithHandler:completionHandler]]];
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800304}
305
306- (void)invokeCall {
307 __weak GRPCCall *weakSelf = self;
Jorge Canizalesf3a4f2c2015-06-12 22:12:50 -0700308 [self invokeCallWithMetadataHandler:^(NSDictionary *headers) {
309 // Response headers received.
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800310 GRPCCall *strongSelf = weakSelf;
311 if (strongSelf) {
Jorge Canizalesf3a4f2c2015-06-12 22:12:50 -0700312 [strongSelf->_responseMetadata addEntriesFromDictionary:headers];
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800313 [strongSelf startNextRead];
314 }
Jorge Canizalesf3a4f2c2015-06-12 22:12:50 -0700315 } completionHandler:^(NSError *error, NSDictionary *trailers) {
316 GRPCCall *strongSelf = weakSelf;
317 if (strongSelf) {
318 [strongSelf->_responseMetadata addEntriesFromDictionary:trailers];
319
Jorge Canizalesc58a1102015-06-15 19:03:41 -0700320 if (error) {
321 NSMutableDictionary *userInfo =
322 [NSMutableDictionary dictionaryWithDictionary:error.userInfo];
323 userInfo[kGRPCStatusMetadataKey] = strongSelf->_responseMetadata;
324 error = [NSError errorWithDomain:error.domain code:error.code userInfo:userInfo];
325 }
Jorge Canizalesf3a4f2c2015-06-12 22:12:50 -0700326 [strongSelf finishWithError:error];
327 }
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800328 }];
329 // Now that the RPC has been initiated, request writes can start.
330 [_requestWriter startWithWriteable:self];
331}
332
333#pragma mark GRXWriter implementation
334
335- (void)startWithWriteable:(id<GRXWriteable>)writeable {
Jorge Canizales6531b2b2015-07-18 00:19:14 -0700336 // Create a retain cycle so that this instance lives until the RPC finishes (or is cancelled).
337 // This makes RPCs in which the call isn't externally retained possible (as long as it is started
338 // before being autoreleased).
339 // Care is taken not to retain self strongly in any of the blocks used in this implementation, so
340 // that the life of the instance is determined by this retain cycle.
341 _self = self;
342
343 _responseWriteable = [[GRXConcurrentWriteable alloc] initWithWriteable:writeable];
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800344 [self sendHeaders:_requestMetadata];
345 [self invokeCall];
346}
347
348- (void)setState:(GRXWriterState)newState {
349 // Manual transitions are only allowed from the started or paused states.
350 if (_state == GRXWriterStateNotStarted || _state == GRXWriterStateFinished) {
351 return;
352 }
353
354 switch (newState) {
355 case GRXWriterStateFinished:
356 _state = newState;
357 // Per GRXWriter's contract, setting the state to Finished manually
358 // means one doesn't wish the writeable to be messaged anymore.
359 [_responseWriteable cancelSilently];
360 _responseWriteable = nil;
361 return;
362 case GRXWriterStatePaused:
363 _state = newState;
364 return;
365 case GRXWriterStateStarted:
366 if (_state == GRXWriterStatePaused) {
367 _state = newState;
368 [self startNextRead];
369 }
370 return;
371 case GRXWriterStateNotStarted:
372 return;
373 }
374}
375@end