blob: 051138ea4da3ec7235e1996aea99cad81460923f [file] [log] [blame]
Jorge Canizales9409ad82015-02-18 16:19:56 -08001/*
2 *
Craig Tiller6169d5f2016-03-31 07:46:18 -07003 * 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>
Muxi Yan61274ca2016-10-28 12:09:59 -070038#import <RxLibrary/GRXConcurrentWriteable.h>
Muxi Yana40ccd82016-11-05 21:39:44 -070039#import <RxLibrary/GRXImmediateSingleWriter.h>
Jorge Canizales5e0efd92015-02-17 18:23:58 -080040
Jorge Canizalesf1d084a2015-10-30 11:14:09 -070041#import "private/GRPCConnectivityMonitor.h"
42#import "private/GRPCHost.h"
Jorge Canizales2f101272015-09-02 21:55:37 -070043#import "private/GRPCRequestHeaders.h"
murgatroid9969927d62015-04-24 13:32:48 -070044#import "private/GRPCWrappedCall.h"
Jorge Canizales5e0efd92015-02-17 18:23:58 -080045#import "private/NSData+GRPC.h"
46#import "private/NSDictionary+GRPC.h"
47#import "private/NSError+GRPC.h"
48
Muxi Yan016d1082017-03-07 18:26:42 -080049// At most 6 ops can be in an op batch for a client: SEND_INITIAL_METADATA,
50// SEND_MESSAGE, SEND_CLOSE_FROM_CLIENT, RECV_INITIAL_METADATA, RECV_MESSAGE,
51// and RECV_STATUS_ON_CLIENT.
52NSInteger kMaxClientBatch = 6;
53
Muxi Yan61274ca2016-10-28 12:09:59 -070054NSString * const kGRPCHeadersKey = @"io.grpc.HeadersKey";
55NSString * const kGRPCTrailersKey = @"io.grpc.TrailersKey";
Muxi Yan22f79732016-09-30 14:24:56 -070056static NSMutableDictionary *callFlags;
Jorge Canizalesf3a4f2c2015-06-12 22:12:50 -070057
Muxi Yan61274ca2016-10-28 12:09:59 -070058@interface GRPCCall () <GRXWriteable>
Jorge Canizales0b34c892015-08-12 20:19:20 -070059// Make them read-write.
60@property(atomic, strong) NSDictionary *responseHeaders;
61@property(atomic, strong) NSDictionary *responseTrailers;
Jorge Canizales5e0efd92015-02-17 18:23:58 -080062@end
63
64// The following methods of a C gRPC call object aren't reentrant, and thus
65// calls to them must be serialized:
murgatroid99b5c076f2015-04-27 17:25:36 -070066// - start_batch
Jorge Canizales5e0efd92015-02-17 18:23:58 -080067// - destroy
Jorge Canizales5e0efd92015-02-17 18:23:58 -080068//
murgatroid99b5c076f2015-04-27 17:25:36 -070069// start_batch with a SEND_MESSAGE argument can only be called after the
70// OP_COMPLETE event for any previous write is received. This is achieved by
Jorge Canizales5e0efd92015-02-17 18:23:58 -080071// pausing the requests writer immediately every time it writes a value, and
murgatroid99b5c076f2015-04-27 17:25:36 -070072// resuming it again when OP_COMPLETE is received.
Jorge Canizales5e0efd92015-02-17 18:23:58 -080073//
murgatroid99b5c076f2015-04-27 17:25:36 -070074// Similarly, start_batch with a RECV_MESSAGE argument can only be called after
75// the OP_COMPLETE event for any previous read is received.This is easier to
76// enforce, as we're writing the received messages into the writeable:
77// start_batch is enqueued once upon receiving the OP_COMPLETE event for the
78// RECV_METADATA batch, and then once after receiving each OP_COMPLETE event for
79// each RECV_MESSAGE batch.
Jorge Canizales5e0efd92015-02-17 18:23:58 -080080@implementation GRPCCall {
81 dispatch_queue_t _callQueue;
82
Jorge Canizalesf1d084a2015-10-30 11:14:09 -070083 NSString *_host;
84 NSString *_path;
murgatroid9930b7d4e2015-04-24 10:36:43 -070085 GRPCWrappedCall *_wrappedCall;
Jorge Canizalesf1d084a2015-10-30 11:14:09 -070086 GRPCConnectivityMonitor *_connectivityMonitor;
Jorge Canizales5e0efd92015-02-17 18:23:58 -080087
Jorge Canizales5e0efd92015-02-17 18:23:58 -080088 // The C gRPC library has less guarantees on the ordering of events than we
89 // do. Particularly, in the face of errors, there's no ordering guarantee at
90 // all. This wrapper over our actual writeable ensures thread-safety and
91 // correct ordering.
Jorge Canizales35f003b2015-07-17 21:14:36 -070092 GRXConcurrentWriteable *_responseWriteable;
Jorge Canizales238ad782015-08-07 23:11:29 -070093
Muxi Yan61274ca2016-10-28 12:09:59 -070094 // The network thread wants the requestWriter to resume (when the server is ready for more input),
95 // or to stop (on errors), concurrently with user threads that want to start it, pause it or stop
96 // it. Because a writer isn't thread-safe, we'll synchronize those operations on it.
97 // We don't use a dispatch queue for that purpose, because the writer can call writeValue: or
98 // writesFinishedWithError: on this GRPCCall as part of those operations. We want to be able to
99 // pause the writer immediately on writeValue:, so we need our locking to be recursive.
Jorge Canizales56047122015-07-17 12:18:08 -0700100 GRXWriter *_requestWriter;
Jorge Canizales544963e2015-06-12 19:46:27 -0700101
Jorge Canizales6531b2b2015-07-18 00:19:14 -0700102 // To create a retain cycle when a call is started, up until it finishes. See
Muxi Yan61274ca2016-10-28 12:09:59 -0700103 // |startWithWriteable:| and |finishWithError:|. This saves users from having to retain a
104 // reference to the call object if all they're interested in is the handler being executed when
Jorge Canizaleseb87b462015-08-08 16:16:43 -0700105 // the response arrives.
106 GRPCCall *_retainSelf;
Jorge Canizales6531b2b2015-07-18 00:19:14 -0700107
murgatroid9984fa5312015-08-28 10:55:55 -0700108 GRPCRequestHeaders *_requestHeaders;
Muxi Yana40ccd82016-11-05 21:39:44 -0700109
Muxi Yanc2e53b52017-03-22 14:30:16 -0700110 // In the case that the call is a unary call (i.e. the writer to GRPCCall is of type
111 // GRXImmediateSingleWriter), GRPCCall will delay sending ops (not send them to C core
112 // immediately) and buffer them into a batch _unaryOpBatch. The batch is sent to C core when
113 // the SendClose op is added.
Muxi Yana40ccd82016-11-05 21:39:44 -0700114 BOOL _unaryCall;
Muxi Yana40ccd82016-11-05 21:39:44 -0700115 NSMutableArray *_unaryOpBatch;
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800116}
117
118@synthesize state = _state;
119
Muxi Yan61274ca2016-10-28 12:09:59 -0700120// TODO(jcanizales): If grpc_init is idempotent, this should be changed from load to initialize.
Jorge Canizales7603d642016-08-24 18:23:24 -0700121+ (void)load {
122 grpc_init();
Muxi Yan22f79732016-09-30 14:24:56 -0700123 callFlags = [NSMutableDictionary dictionary];
124}
125
Muxi Yan61274ca2016-10-28 12:09:59 -0700126+ (void)setCallSafety:(GRPCCallSafety)callSafety host:(NSString *)host path:(NSString *)path {
Muxi Yan6c0b9602016-10-02 14:32:06 -0700127 NSString *hostAndPath = [NSString stringWithFormat:@"%@/%@", host, path];
128 switch (callSafety) {
129 case GRPCCallSafetyDefault:
Muxi Yan22f79732016-09-30 14:24:56 -0700130 callFlags[hostAndPath] = @0;
131 break;
Muxi Yan6c0b9602016-10-02 14:32:06 -0700132 case GRPCCallSafetyIdempotentRequest:
Muxi Yan22f79732016-09-30 14:24:56 -0700133 callFlags[hostAndPath] = @GRPC_INITIAL_METADATA_IDEMPOTENT_REQUEST;
134 break;
Muxi Yan6c0b9602016-10-02 14:32:06 -0700135 case GRPCCallSafetyCacheableRequest:
Muxi Yan22f79732016-09-30 14:24:56 -0700136 callFlags[hostAndPath] = @GRPC_INITIAL_METADATA_CACHEABLE_REQUEST;
137 break;
138 default:
139 break;
140 }
141}
142
Muxi Yan6c0b9602016-10-02 14:32:06 -0700143+ (uint32_t)callFlagsForHost:(NSString *)host path:(NSString *)path {
144 NSString *hostAndPath = [NSString stringWithFormat:@"%@/%@", host, path];
145 return [callFlags[hostAndPath] intValue];
Jorge Canizales7603d642016-08-24 18:23:24 -0700146}
147
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800148- (instancetype)init {
Muxi Yan22f79732016-09-30 14:24:56 -0700149 return [self initWithHost:nil path:nil requestsWriter:nil];
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800150}
151
152// Designated initializer
153- (instancetype)initWithHost:(NSString *)host
Jorge Canizalesbe808e32015-07-04 14:37:58 -0700154 path:(NSString *)path
Muxi Yan22f79732016-09-30 14:24:56 -0700155 requestsWriter:(GRXWriter *)requestWriter {
Jorge Canizalesbe808e32015-07-04 14:37:58 -0700156 if (!host || !path) {
Muxi Yan61274ca2016-10-28 12:09:59 -0700157 [NSException raise:NSInvalidArgumentException format:@"Neither host nor path can be nil."];
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800158 }
Jorge Canizales6bbfcc32015-06-17 14:10:52 -0700159 if (requestWriter.state != GRXWriterStateNotStarted) {
Jorge Canizales597ef982015-07-31 23:31:56 -0700160 [NSException raise:NSInvalidArgumentException
161 format:@"The requests writer can't be already started."];
Jorge Canizales6bbfcc32015-06-17 14:10:52 -0700162 }
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800163 if ((self = [super init])) {
Jorge Canizalesf1d084a2015-10-30 11:14:09 -0700164 _host = [host copy];
165 _path = [path copy];
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800166
167 // Serial queue to invoke the non-reentrant methods of the grpc_call object.
Jorge Canizalesf1d084a2015-10-30 11:14:09 -0700168 _callQueue = dispatch_queue_create("io.grpc.call", NULL);
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800169
170 _requestWriter = requestWriter;
Jorge Canizales544963e2015-06-12 19:46:27 -0700171
murgatroid9984fa5312015-08-28 10:55:55 -0700172 _requestHeaders = [[GRPCRequestHeaders alloc] initWithCall:self];
Muxi Yana40ccd82016-11-05 21:39:44 -0700173
174 if ([requestWriter isKindOfClass:[GRXImmediateSingleWriter class]]) {
Muxi Yanbf803b92017-02-08 11:31:26 -0800175 _unaryCall = YES;
Muxi Yan016d1082017-03-07 18:26:42 -0800176 _unaryOpBatch = [NSMutableArray arrayWithCapacity:kMaxClientBatch];
Muxi Yana40ccd82016-11-05 21:39:44 -0700177 }
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800178 }
179 return self;
180}
181
182#pragma mark Finish
183
184- (void)finishWithError:(NSError *)errorOrNil {
Jorge Canizales0803bb02016-04-30 10:40:18 -0700185 @synchronized(self) {
Muxi Yana40ccd82016-11-05 21:39:44 -0700186 if (_state == GRXWriterStateFinished) {
187 return;
188 }
Jorge Canizales0803bb02016-04-30 10:40:18 -0700189 _state = GRXWriterStateFinished;
190 }
191
Jorge Canizales6531b2b2015-07-18 00:19:14 -0700192 // If the call isn't retained anywhere else, it can be deallocated now.
Jorge Canizaleseb87b462015-08-08 16:16:43 -0700193 _retainSelf = nil;
Jorge Canizales6531b2b2015-07-18 00:19:14 -0700194
195 // If there were still request messages coming, stop them.
Jorge Canizales238ad782015-08-07 23:11:29 -0700196 @synchronized(_requestWriter) {
197 _requestWriter.state = GRXWriterStateFinished;
Jorge Canizales238ad782015-08-07 23:11:29 -0700198 }
Jorge Canizales6531b2b2015-07-18 00:19:14 -0700199
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800200 if (errorOrNil) {
201 [_responseWriteable cancelWithError:errorOrNil];
202 } else {
203 [_responseWriteable enqueueSuccessfulCompletion];
204 }
205}
206
207- (void)cancelCall {
208 // Can be called from any thread, any number of times.
murgatroid99b56609c2015-04-28 16:41:11 -0700209 [_wrappedCall cancel];
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800210}
211
212- (void)cancel {
213 [self finishWithError:[NSError errorWithDomain:kGRPCErrorDomain
214 code:GRPCErrorCodeCancelled
Muxi Yan61274ca2016-10-28 12:09:59 -0700215 userInfo:@{NSLocalizedDescriptionKey: @"Canceled by app"}]];
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800216 [self cancelCall];
217}
218
219- (void)dealloc {
murgatroid996cc46802015-04-28 09:35:48 -0700220 __block GRPCWrappedCall *wrappedCall = _wrappedCall;
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800221 dispatch_async(_callQueue, ^{
murgatroid996cc46802015-04-28 09:35:48 -0700222 wrappedCall = nil;
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800223 });
224}
225
226#pragma mark Read messages
227
228// Only called from the call queue.
229// The handler will be called from the network queue.
Muxi Yan61274ca2016-10-28 12:09:59 -0700230- (void)startReadWithHandler:(void(^)(grpc_byte_buffer *))handler {
murgatroid99ca38ddb2015-04-29 13:16:42 -0700231 // TODO(jcanizales): Add error handlers for async failures
Muxi Yan61274ca2016-10-28 12:09:59 -0700232 [_wrappedCall startBatchWithOperations:@[[[GRPCOpRecvMessage alloc] initWithHandler:handler]]];
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800233}
234
235// Called initially from the network queue once response headers are received,
Muxi Yan61274ca2016-10-28 12:09:59 -0700236// then "recursively" from the responseWriteable queue after each response from the
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800237// server has been written.
Muxi Yan61274ca2016-10-28 12:09:59 -0700238// If the call is currently paused, this is a noop. Restarting the call will invoke this
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800239// method.
240// TODO(jcanizales): Rename to readResponseIfNotPaused.
241- (void)startNextRead {
242 if (self.state == GRXWriterStatePaused) {
243 return;
244 }
245 __weak GRPCCall *weakSelf = self;
Jorge Canizales35f003b2015-07-17 21:14:36 -0700246 __weak GRXConcurrentWriteable *weakWriteable = _responseWriteable;
murgatroid9969927d62015-04-24 13:32:48 -0700247
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800248 dispatch_async(_callQueue, ^{
murgatroid996cc46802015-04-28 09:35:48 -0700249 [weakSelf startReadWithHandler:^(grpc_byte_buffer *message) {
250 if (message == NULL) {
murgatroid99b56609c2015-04-28 16:41:11 -0700251 // No more messages from the server
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800252 return;
253 }
murgatroid996cc46802015-04-28 09:35:48 -0700254 NSData *data = [NSData grpc_dataWithByteBuffer:message];
255 grpc_byte_buffer_destroy(message);
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800256 if (!data) {
257 // The app doesn't have enough memory to hold the server response. We
258 // don't want to throw, because the app shouldn't crash for a behavior
259 // that's on the hands of any server to have. Instead we finish and ask
260 // the server to cancel.
Muxi Yan61274ca2016-10-28 12:09:59 -0700261 [weakSelf finishWithError:[NSError errorWithDomain:kGRPCErrorDomain
262 code:GRPCErrorCodeResourceExhausted
263 userInfo:@{NSLocalizedDescriptionKey: @"Client does not have enough memory to hold the server response."}]];
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800264 [weakSelf cancelCall];
265 return;
266 }
Muxi Yan61274ca2016-10-28 12:09:59 -0700267 [weakWriteable enqueueValue:data completionHandler:^{
268 [weakSelf startNextRead];
269 }];
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800270 }];
271 });
272}
273
274#pragma mark Send headers
275
Jorge Canizalesf4f150f2015-11-01 22:31:12 -0800276- (void)sendHeaders:(NSDictionary *)headers {
murgatroid99ca38ddb2015-04-29 13:16:42 -0700277 // TODO(jcanizales): Add error handlers for async failures
Muxi Yanbf803b92017-02-08 11:31:26 -0800278 GRPCOpSendMetadata *op = [[GRPCOpSendMetadata alloc] initWithMetadata:headers
279 flags:[GRPCCall callFlagsForHost:_host path:_path]
Muxi Yand5bac0d2017-03-07 18:44:19 -0800280 handler:nil]; // No clean-up needed after SEND_INITIAL_METADATA
Muxi Yana40ccd82016-11-05 21:39:44 -0700281 if (!_unaryCall) {
Muxi Yanbf803b92017-02-08 11:31:26 -0800282 [_wrappedCall startBatchWithOperations:@[op]];
Muxi Yana40ccd82016-11-05 21:39:44 -0700283 } else {
Muxi Yanbf803b92017-02-08 11:31:26 -0800284 [_unaryOpBatch addObject:op];
Muxi Yana40ccd82016-11-05 21:39:44 -0700285 }
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800286}
287
288#pragma mark GRXWriteable implementation
289
290// Only called from the call queue. The error handler will be called from the
291// network queue if the write didn't succeed.
Muxi Yan35653012017-03-07 18:54:24 -0800292// If the call is a unary call, parameter \a errorHandler will be ignored and
293// the error handler of GRPCOpSendClose will be executed in case of error.
Muxi Yan61274ca2016-10-28 12:09:59 -0700294- (void)writeMessage:(NSData *)message withErrorHandler:(void (^)())errorHandler {
295
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800296 __weak GRPCCall *weakSelf = self;
Muxi Yan61274ca2016-10-28 12:09:59 -0700297 void(^resumingHandler)(void) = ^{
murgatroid99ca38ddb2015-04-29 13:16:42 -0700298 // Resume the request writer.
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800299 GRPCCall *strongSelf = weakSelf;
300 if (strongSelf) {
Jorge Canizales578ab162015-08-08 17:11:43 -0700301 @synchronized(strongSelf->_requestWriter) {
Jorge Canizales238ad782015-08-07 23:11:29 -0700302 strongSelf->_requestWriter.state = GRXWriterStateStarted;
303 }
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800304 }
305 };
Muxi Yanbf803b92017-02-08 11:31:26 -0800306
307 GRPCOpSendMessage *op = [[GRPCOpSendMessage alloc] initWithMessage:message
308 handler:resumingHandler];
Muxi Yana40ccd82016-11-05 21:39:44 -0700309 if (!_unaryCall) {
Muxi Yanbf803b92017-02-08 11:31:26 -0800310 [_wrappedCall startBatchWithOperations:@[op]
Muxi Yana40ccd82016-11-05 21:39:44 -0700311 errorHandler:errorHandler];
312 } else {
Muxi Yan44e18372017-03-10 14:52:51 -0800313 // Ignored errorHandler since it is the same as the one for GRPCOpSendClose.
314 // TODO (mxyan): unify the error handlers of all Ops into a single closure.
Muxi Yanbf803b92017-02-08 11:31:26 -0800315 [_unaryOpBatch addObject:op];
Muxi Yana40ccd82016-11-05 21:39:44 -0700316 }
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800317}
318
Jorge Canizalesa90a9c32015-05-18 17:12:41 -0700319- (void)writeValue:(id)value {
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800320 // TODO(jcanizales): Throw/assert if value isn't NSData.
321
322 // Pause the input and only resume it when the C layer notifies us that writes
323 // can proceed.
Jorge Canizales238ad782015-08-07 23:11:29 -0700324 @synchronized(_requestWriter) {
325 _requestWriter.state = GRXWriterStatePaused;
326 }
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800327
328 __weak GRPCCall *weakSelf = self;
329 dispatch_async(_callQueue, ^{
Muxi Yan61274ca2016-10-28 12:09:59 -0700330 [weakSelf writeMessage:value withErrorHandler:^{
331 [weakSelf finishWithError:[NSError errorWithDomain:kGRPCErrorDomain
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800332 code:GRPCErrorCodeInternal
333 userInfo:nil]];
Muxi Yan61274ca2016-10-28 12:09:59 -0700334 }];
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800335 });
336}
337
338// Only called from the call queue. The error handler will be called from the
339// network queue if the requests stream couldn't be closed successfully.
340- (void)finishRequestWithErrorHandler:(void (^)())errorHandler {
Muxi Yand5bac0d2017-03-07 18:44:19 -0800341 if (!_unaryCall) {
Muxi Yana40ccd82016-11-05 21:39:44 -0700342 [_wrappedCall startBatchWithOperations:@[[[GRPCOpSendClose alloc] init]]
343 errorHandler:errorHandler];
344 } else {
345 [_unaryOpBatch addObject:[[GRPCOpSendClose alloc] init]];
346 [_wrappedCall startBatchWithOperations:_unaryOpBatch
347 errorHandler:errorHandler];
348 }
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800349}
350
Jorge Canizalesb2c300c2015-05-18 17:19:16 -0700351- (void)writesFinishedWithError:(NSError *)errorOrNil {
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800352 if (errorOrNil) {
353 [self cancel];
354 } else {
355 __weak GRPCCall *weakSelf = self;
356 dispatch_async(_callQueue, ^{
357 [weakSelf finishRequestWithErrorHandler:^{
358 [weakSelf finishWithError:[NSError errorWithDomain:kGRPCErrorDomain
359 code:GRPCErrorCodeInternal
360 userInfo:nil]];
361 }];
362 });
363 }
364}
365
366#pragma mark Invoke
367
Muxi Yan61274ca2016-10-28 12:09:59 -0700368// Both handlers will eventually be called, from the network queue. Writes can start immediately
369// after this.
Jorge Canizales0b34c892015-08-12 20:19:20 -0700370// The first one (headersHandler), when the response headers are received.
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800371// The second one (completionHandler), whenever the RPC finishes for any reason.
Muxi Yan61274ca2016-10-28 12:09:59 -0700372- (void)invokeCallWithHeadersHandler:(void(^)(NSDictionary *))headersHandler
373 completionHandler:(void(^)(NSError *, NSDictionary *))completionHandler {
murgatroid99ca38ddb2015-04-29 13:16:42 -0700374 // TODO(jcanizales): Add error handlers for async failures
Muxi Yan61274ca2016-10-28 12:09:59 -0700375 [_wrappedCall startBatchWithOperations:@[[[GRPCOpRecvMetadata alloc]
376 initWithHandler:headersHandler]]];
377 [_wrappedCall startBatchWithOperations:@[[[GRPCOpRecvStatus alloc]
378 initWithHandler:completionHandler]]];
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800379}
380
381- (void)invokeCall {
Jorge Canizales0b34c892015-08-12 20:19:20 -0700382 [self invokeCallWithHeadersHandler:^(NSDictionary *headers) {
Jorge Canizalesf3a4f2c2015-06-12 22:12:50 -0700383 // Response headers received.
Nicolas "Pixel" Noble70224362016-03-21 22:19:43 +0100384 self.responseHeaders = headers;
385 [self startNextRead];
Muxi Yan61274ca2016-10-28 12:09:59 -0700386 } completionHandler:^(NSError *error, NSDictionary *trailers) {
387 self.responseTrailers = trailers;
Jorge Canizalesf3a4f2c2015-06-12 22:12:50 -0700388
Muxi Yan61274ca2016-10-28 12:09:59 -0700389 if (error) {
390 NSMutableDictionary *userInfo = [NSMutableDictionary dictionary];
391 if (error.userInfo) {
392 [userInfo addEntriesFromDictionary:error.userInfo];
393 }
394 userInfo[kGRPCTrailersKey] = self.responseTrailers;
395 // TODO(jcanizales): The C gRPC library doesn't guarantee that the headers block will be
396 // called before this one, so an error might end up with trailers but no headers. We
397 // shouldn't call finishWithError until ater both blocks are called. It is also when this is
398 // done that we can provide a merged view of response headers and trailers in a thread-safe
399 // way.
400 if (self.responseHeaders) {
401 userInfo[kGRPCHeadersKey] = self.responseHeaders;
402 }
403 error = [NSError errorWithDomain:error.domain code:error.code userInfo:userInfo];
404 }
405 [self finishWithError:error];
406 }];
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800407 // Now that the RPC has been initiated, request writes can start.
Jorge Canizales238ad782015-08-07 23:11:29 -0700408 @synchronized(_requestWriter) {
409 [_requestWriter startWithWriteable:self];
410 }
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800411}
412
413#pragma mark GRXWriter implementation
414
415- (void)startWithWriteable:(id<GRXWriteable>)writeable {
Jorge Canizales0803bb02016-04-30 10:40:18 -0700416 @synchronized(self) {
417 _state = GRXWriterStateStarted;
418 }
419
Muxi Yan61274ca2016-10-28 12:09:59 -0700420 // Create a retain cycle so that this instance lives until the RPC finishes (or is cancelled).
421 // This makes RPCs in which the call isn't externally retained possible (as long as it is started
422 // before being autoreleased).
423 // Care is taken not to retain self strongly in any of the blocks used in this implementation, so
424 // that the life of the instance is determined by this retain cycle.
Muxi Yane1443b12016-10-20 11:53:13 -0700425 _retainSelf = self;
426
Muxi Yan61274ca2016-10-28 12:09:59 -0700427 _responseWriteable = [[GRXConcurrentWriteable alloc] initWithWriteable:writeable];
Muxi Yane1443b12016-10-20 11:53:13 -0700428
429 _wrappedCall = [[GRPCWrappedCall alloc] initWithHost:_host path:_path];
430 NSAssert(_wrappedCall, @"Error allocating RPC objects. Low memory?");
431
432 [self sendHeaders:_requestHeaders];
433 [self invokeCall];
Muxi Yan4f6a19b2016-10-25 14:40:06 -0700434
435 // TODO(jcanizales): Extract this logic somewhere common.
Muxi Yan61274ca2016-10-28 12:09:59 -0700436 NSString *host = [NSURL URLWithString:[@"https://" stringByAppendingString:_host]].host;
Muxi Yan4f6a19b2016-10-25 14:40:06 -0700437 if (!host) {
438 // TODO(jcanizales): Check this on init.
Muxi Yan61274ca2016-10-28 12:09:59 -0700439 [NSException raise:NSInvalidArgumentException format:@"host of %@ is nil", _host];
Muxi Yan4f6a19b2016-10-25 14:40:06 -0700440 }
441 __weak typeof(self) weakSelf = self;
442 _connectivityMonitor = [GRPCConnectivityMonitor monitorWithHost:host];
443 void (^handler)() = ^{
444 typeof(self) strongSelf = weakSelf;
445 if (strongSelf) {
Muxi Yan61274ca2016-10-28 12:09:59 -0700446 [strongSelf finishWithError:[NSError errorWithDomain:kGRPCErrorDomain
447 code:GRPCErrorCodeUnavailable
448 userInfo:@{ NSLocalizedDescriptionKey : @"Connectivity lost." }]];
Muxi Yan4f6a19b2016-10-25 14:40:06 -0700449 }
450 };
451 [_connectivityMonitor handleLossWithHandler:handler
Muxi Yan2a25f332016-10-28 13:27:04 -0700452 wifiStatusChangeHandler:nil];
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800453}
454
455- (void)setState:(GRXWriterState)newState {
Jorge Canizales0803bb02016-04-30 10:40:18 -0700456 @synchronized(self) {
457 // Manual transitions are only allowed from the started or paused states.
Muxi Yan61274ca2016-10-28 12:09:59 -0700458 if (_state == GRXWriterStateNotStarted || _state == GRXWriterStateFinished) {
Jorge Canizales0803bb02016-04-30 10:40:18 -0700459 return;
460 }
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800461
Jorge Canizales0803bb02016-04-30 10:40:18 -0700462 switch (newState) {
463 case GRXWriterStateFinished:
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800464 _state = newState;
Jorge Canizales0803bb02016-04-30 10:40:18 -0700465 // Per GRXWriter's contract, setting the state to Finished manually
466 // means one doesn't wish the writeable to be messaged anymore.
467 [_responseWriteable cancelSilently];
468 _responseWriteable = nil;
469 return;
470 case GRXWriterStatePaused:
471 _state = newState;
472 return;
473 case GRXWriterStateStarted:
474 if (_state == GRXWriterStatePaused) {
475 _state = newState;
476 [self startNextRead];
477 }
478 return;
479 case GRXWriterStateNotStarted:
480 return;
481 }
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800482 }
483}
Jorge Canizalesf1d084a2015-10-30 11:14:09 -0700484
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800485@end