blob: b5d8309787be65faa830b1fb003b42f1a0c56f7d [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>
Jorge Canizales35f003b2015-07-17 21:14:36 -070038#import <RxLibrary/GRXConcurrentWriteable.h>
Jorge Canizales5e0efd92015-02-17 18:23:58 -080039
Jorge Canizalesf1d084a2015-10-30 11:14:09 -070040#import "private/GRPCConnectivityMonitor.h"
41#import "private/GRPCHost.h"
Jorge Canizales2f101272015-09-02 21:55:37 -070042#import "private/GRPCRequestHeaders.h"
murgatroid9969927d62015-04-24 13:32:48 -070043#import "private/GRPCWrappedCall.h"
Jorge Canizales5e0efd92015-02-17 18:23:58 -080044#import "private/NSData+GRPC.h"
45#import "private/NSDictionary+GRPC.h"
46#import "private/NSError+GRPC.h"
47
Jorge Canizales1ab2a712015-08-12 20:32:11 -070048NSString * const kGRPCHeadersKey = @"io.grpc.HeadersKey";
49NSString * const kGRPCTrailersKey = @"io.grpc.TrailersKey";
Jorge Canizalesf3a4f2c2015-06-12 22:12:50 -070050
Jorge Canizales5e0efd92015-02-17 18:23:58 -080051@interface GRPCCall () <GRXWriteable>
Jorge Canizales0b34c892015-08-12 20:19:20 -070052// Make them read-write.
53@property(atomic, strong) NSDictionary *responseHeaders;
54@property(atomic, strong) NSDictionary *responseTrailers;
Jorge Canizales5e0efd92015-02-17 18:23:58 -080055@end
56
57// The following methods of a C gRPC call object aren't reentrant, and thus
58// calls to them must be serialized:
murgatroid99b5c076f2015-04-27 17:25:36 -070059// - start_batch
Jorge Canizales5e0efd92015-02-17 18:23:58 -080060// - destroy
Jorge Canizales5e0efd92015-02-17 18:23:58 -080061//
murgatroid99b5c076f2015-04-27 17:25:36 -070062// start_batch with a SEND_MESSAGE argument can only be called after the
63// OP_COMPLETE event for any previous write is received. This is achieved by
Jorge Canizales5e0efd92015-02-17 18:23:58 -080064// pausing the requests writer immediately every time it writes a value, and
murgatroid99b5c076f2015-04-27 17:25:36 -070065// resuming it again when OP_COMPLETE is received.
Jorge Canizales5e0efd92015-02-17 18:23:58 -080066//
murgatroid99b5c076f2015-04-27 17:25:36 -070067// Similarly, start_batch with a RECV_MESSAGE argument can only be called after
68// the OP_COMPLETE event for any previous read is received.This is easier to
69// enforce, as we're writing the received messages into the writeable:
70// start_batch is enqueued once upon receiving the OP_COMPLETE event for the
71// RECV_METADATA batch, and then once after receiving each OP_COMPLETE event for
72// each RECV_MESSAGE batch.
Jorge Canizales5e0efd92015-02-17 18:23:58 -080073@implementation GRPCCall {
74 dispatch_queue_t _callQueue;
75
Jorge Canizalesf1d084a2015-10-30 11:14:09 -070076 NSString *_host;
77 NSString *_path;
murgatroid9930b7d4e2015-04-24 10:36:43 -070078 GRPCWrappedCall *_wrappedCall;
Jorge Canizalesf1d084a2015-10-30 11:14:09 -070079 GRPCConnectivityMonitor *_connectivityMonitor;
Jorge Canizales5e0efd92015-02-17 18:23:58 -080080
Jorge Canizales5e0efd92015-02-17 18:23:58 -080081 // The C gRPC library has less guarantees on the ordering of events than we
82 // do. Particularly, in the face of errors, there's no ordering guarantee at
83 // all. This wrapper over our actual writeable ensures thread-safety and
84 // correct ordering.
Jorge Canizales35f003b2015-07-17 21:14:36 -070085 GRXConcurrentWriteable *_responseWriteable;
Jorge Canizales238ad782015-08-07 23:11:29 -070086
87 // The network thread wants the requestWriter to resume (when the server is ready for more input),
88 // or to stop (on errors), concurrently with user threads that want to start it, pause it or stop
89 // it. Because a writer isn't thread-safe, we'll synchronize those operations on it.
90 // We don't use a dispatch queue for that purpose, because the writer can call writeValue: or
91 // writesFinishedWithError: on this GRPCCall as part of those operations. We want to be able to
92 // pause the writer immediately on writeValue:, so we need our locking to be recursive.
Jorge Canizales56047122015-07-17 12:18:08 -070093 GRXWriter *_requestWriter;
Jorge Canizales544963e2015-06-12 19:46:27 -070094
Jorge Canizales6531b2b2015-07-18 00:19:14 -070095 // To create a retain cycle when a call is started, up until it finishes. See
Jorge Canizaleseb87b462015-08-08 16:16:43 -070096 // |startWithWriteable:| and |finishWithError:|. This saves users from having to retain a
97 // reference to the call object if all they're interested in is the handler being executed when
98 // the response arrives.
99 GRPCCall *_retainSelf;
Jorge Canizales6531b2b2015-07-18 00:19:14 -0700100
murgatroid9984fa5312015-08-28 10:55:55 -0700101 GRPCRequestHeaders *_requestHeaders;
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800102}
103
104@synthesize state = _state;
105
Jorge Canizales7603d642016-08-24 18:23:24 -0700106// TODO(jcanizales): If grpc_init is idempotent, this should be changed from load to initialize.
107+ (void)load {
108 grpc_init();
109}
110
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800111- (instancetype)init {
Jorge Canizalesbe808e32015-07-04 14:37:58 -0700112 return [self initWithHost:nil path:nil requestsWriter:nil];
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800113}
114
115// Designated initializer
116- (instancetype)initWithHost:(NSString *)host
Jorge Canizalesbe808e32015-07-04 14:37:58 -0700117 path:(NSString *)path
Jorge Canizales56047122015-07-17 12:18:08 -0700118 requestsWriter:(GRXWriter *)requestWriter {
Jorge Canizalesbe808e32015-07-04 14:37:58 -0700119 if (!host || !path) {
Jorge Canizales597ef982015-07-31 23:31:56 -0700120 [NSException raise:NSInvalidArgumentException format:@"Neither host nor path can be nil."];
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800121 }
Jorge Canizales6bbfcc32015-06-17 14:10:52 -0700122 if (requestWriter.state != GRXWriterStateNotStarted) {
Jorge Canizales597ef982015-07-31 23:31:56 -0700123 [NSException raise:NSInvalidArgumentException
124 format:@"The requests writer can't be already started."];
Jorge Canizales6bbfcc32015-06-17 14:10:52 -0700125 }
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800126 if ((self = [super init])) {
Jorge Canizalesf1d084a2015-10-30 11:14:09 -0700127 _host = [host copy];
128 _path = [path copy];
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800129
130 // Serial queue to invoke the non-reentrant methods of the grpc_call object.
Jorge Canizalesf1d084a2015-10-30 11:14:09 -0700131 _callQueue = dispatch_queue_create("io.grpc.call", NULL);
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800132
133 _requestWriter = requestWriter;
Jorge Canizales544963e2015-06-12 19:46:27 -0700134
murgatroid9984fa5312015-08-28 10:55:55 -0700135 _requestHeaders = [[GRPCRequestHeaders alloc] initWithCall:self];
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800136 }
137 return self;
138}
139
140#pragma mark Finish
141
142- (void)finishWithError:(NSError *)errorOrNil {
Jorge Canizales0803bb02016-04-30 10:40:18 -0700143 @synchronized(self) {
144 _state = GRXWriterStateFinished;
145 }
146
Jorge Canizales6531b2b2015-07-18 00:19:14 -0700147 // If the call isn't retained anywhere else, it can be deallocated now.
Jorge Canizaleseb87b462015-08-08 16:16:43 -0700148 _retainSelf = nil;
Jorge Canizales6531b2b2015-07-18 00:19:14 -0700149
150 // If there were still request messages coming, stop them.
Jorge Canizales238ad782015-08-07 23:11:29 -0700151 @synchronized(_requestWriter) {
152 _requestWriter.state = GRXWriterStateFinished;
Jorge Canizales238ad782015-08-07 23:11:29 -0700153 }
Jorge Canizales6531b2b2015-07-18 00:19:14 -0700154
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800155 if (errorOrNil) {
156 [_responseWriteable cancelWithError:errorOrNil];
157 } else {
158 [_responseWriteable enqueueSuccessfulCompletion];
159 }
160}
161
162- (void)cancelCall {
163 // Can be called from any thread, any number of times.
murgatroid99b56609c2015-04-28 16:41:11 -0700164 [_wrappedCall cancel];
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800165}
166
167- (void)cancel {
168 [self finishWithError:[NSError errorWithDomain:kGRPCErrorDomain
169 code:GRPCErrorCodeCancelled
Jorge Canizalesf1d084a2015-10-30 11:14:09 -0700170 userInfo:@{NSLocalizedDescriptionKey: @"Canceled by app"}]];
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800171 [self cancelCall];
172}
173
174- (void)dealloc {
murgatroid996cc46802015-04-28 09:35:48 -0700175 __block GRPCWrappedCall *wrappedCall = _wrappedCall;
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800176 dispatch_async(_callQueue, ^{
murgatroid996cc46802015-04-28 09:35:48 -0700177 wrappedCall = nil;
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800178 });
179}
180
181#pragma mark Read messages
182
183// Only called from the call queue.
184// The handler will be called from the network queue.
murgatroid996cc46802015-04-28 09:35:48 -0700185- (void)startReadWithHandler:(void(^)(grpc_byte_buffer *))handler {
murgatroid99ca38ddb2015-04-29 13:16:42 -0700186 // TODO(jcanizales): Add error handlers for async failures
murgatroid9954e93d42015-04-27 09:29:49 -0700187 [_wrappedCall startBatchWithOperations:@[[[GRPCOpRecvMessage alloc] initWithHandler:handler]]];
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800188}
189
190// Called initially from the network queue once response headers are received,
191// then "recursively" from the responseWriteable queue after each response from the
192// server has been written.
193// If the call is currently paused, this is a noop. Restarting the call will invoke this
194// method.
195// TODO(jcanizales): Rename to readResponseIfNotPaused.
196- (void)startNextRead {
197 if (self.state == GRXWriterStatePaused) {
198 return;
199 }
200 __weak GRPCCall *weakSelf = self;
Jorge Canizales35f003b2015-07-17 21:14:36 -0700201 __weak GRXConcurrentWriteable *weakWriteable = _responseWriteable;
murgatroid9969927d62015-04-24 13:32:48 -0700202
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800203 dispatch_async(_callQueue, ^{
murgatroid996cc46802015-04-28 09:35:48 -0700204 [weakSelf startReadWithHandler:^(grpc_byte_buffer *message) {
205 if (message == NULL) {
murgatroid99b56609c2015-04-28 16:41:11 -0700206 // No more messages from the server
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800207 return;
208 }
murgatroid996cc46802015-04-28 09:35:48 -0700209 NSData *data = [NSData grpc_dataWithByteBuffer:message];
210 grpc_byte_buffer_destroy(message);
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800211 if (!data) {
212 // The app doesn't have enough memory to hold the server response. We
213 // don't want to throw, because the app shouldn't crash for a behavior
214 // that's on the hands of any server to have. Instead we finish and ask
215 // the server to cancel.
216 //
217 // TODO(jcanizales): No canonical code is appropriate for this situation
218 // (because it's just a client problem). Use another domain and an
219 // appropriately-documented code.
220 [weakSelf finishWithError:[NSError errorWithDomain:kGRPCErrorDomain
221 code:GRPCErrorCodeInternal
222 userInfo:nil]];
223 [weakSelf cancelCall];
224 return;
225 }
Jorge Canizales4c6f7782015-07-17 23:13:36 -0700226 [weakWriteable enqueueValue:data completionHandler:^{
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800227 [weakSelf startNextRead];
228 }];
229 }];
230 });
231}
232
233#pragma mark Send headers
234
Jorge Canizalesf4f150f2015-11-01 22:31:12 -0800235- (void)sendHeaders:(NSDictionary *)headers {
murgatroid99ca38ddb2015-04-29 13:16:42 -0700236 // TODO(jcanizales): Add error handlers for async failures
Jorge Canizales5c339d12015-09-02 17:41:43 -0700237 [_wrappedCall startBatchWithOperations:@[[[GRPCOpSendMetadata alloc] initWithMetadata:headers
238 handler:nil]]];
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800239}
240
241#pragma mark GRXWriteable implementation
242
243// Only called from the call queue. The error handler will be called from the
244// network queue if the write didn't succeed.
245- (void)writeMessage:(NSData *)message withErrorHandler:(void (^)())errorHandler {
246
247 __weak GRPCCall *weakSelf = self;
murgatroid9954e93d42015-04-27 09:29:49 -0700248 void(^resumingHandler)(void) = ^{
murgatroid99ca38ddb2015-04-29 13:16:42 -0700249 // Resume the request writer.
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800250 GRPCCall *strongSelf = weakSelf;
251 if (strongSelf) {
Jorge Canizales578ab162015-08-08 17:11:43 -0700252 @synchronized(strongSelf->_requestWriter) {
Jorge Canizales238ad782015-08-07 23:11:29 -0700253 strongSelf->_requestWriter.state = GRXWriterStateStarted;
254 }
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800255 }
256 };
Jorge Canizales238ad782015-08-07 23:11:29 -0700257 [_wrappedCall startBatchWithOperations:@[[[GRPCOpSendMessage alloc] initWithMessage:message
258 handler:resumingHandler]]
259 errorHandler:errorHandler];
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800260}
261
Jorge Canizalesa90a9c32015-05-18 17:12:41 -0700262- (void)writeValue:(id)value {
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800263 // TODO(jcanizales): Throw/assert if value isn't NSData.
264
265 // Pause the input and only resume it when the C layer notifies us that writes
266 // can proceed.
Jorge Canizales238ad782015-08-07 23:11:29 -0700267 @synchronized(_requestWriter) {
268 _requestWriter.state = GRXWriterStatePaused;
269 }
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800270
271 __weak GRPCCall *weakSelf = self;
272 dispatch_async(_callQueue, ^{
273 [weakSelf writeMessage:value withErrorHandler:^{
274 [weakSelf finishWithError:[NSError errorWithDomain:kGRPCErrorDomain
275 code:GRPCErrorCodeInternal
276 userInfo:nil]];
277 }];
278 });
279}
280
281// Only called from the call queue. The error handler will be called from the
282// network queue if the requests stream couldn't be closed successfully.
283- (void)finishRequestWithErrorHandler:(void (^)())errorHandler {
murgatroid996cc46802015-04-28 09:35:48 -0700284 [_wrappedCall startBatchWithOperations:@[[[GRPCOpSendClose alloc] init]]
285 errorHandler:errorHandler];
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800286}
287
Jorge Canizalesb2c300c2015-05-18 17:19:16 -0700288- (void)writesFinishedWithError:(NSError *)errorOrNil {
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800289 if (errorOrNil) {
290 [self cancel];
291 } else {
292 __weak GRPCCall *weakSelf = self;
293 dispatch_async(_callQueue, ^{
294 [weakSelf finishRequestWithErrorHandler:^{
295 [weakSelf finishWithError:[NSError errorWithDomain:kGRPCErrorDomain
296 code:GRPCErrorCodeInternal
297 userInfo:nil]];
298 }];
299 });
300 }
301}
302
303#pragma mark Invoke
304
305// Both handlers will eventually be called, from the network queue. Writes can start immediately
306// after this.
Jorge Canizales0b34c892015-08-12 20:19:20 -0700307// The first one (headersHandler), when the response headers are received.
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800308// The second one (completionHandler), whenever the RPC finishes for any reason.
Jorge Canizales0b34c892015-08-12 20:19:20 -0700309- (void)invokeCallWithHeadersHandler:(void(^)(NSDictionary *))headersHandler
Jorge Canizalesf3a4f2c2015-06-12 22:12:50 -0700310 completionHandler:(void(^)(NSError *, NSDictionary *))completionHandler {
murgatroid99ca38ddb2015-04-29 13:16:42 -0700311 // TODO(jcanizales): Add error handlers for async failures
murgatroid996cc46802015-04-28 09:35:48 -0700312 [_wrappedCall startBatchWithOperations:@[[[GRPCOpRecvMetadata alloc]
Jorge Canizales0b34c892015-08-12 20:19:20 -0700313 initWithHandler:headersHandler]]];
murgatroid996cc46802015-04-28 09:35:48 -0700314 [_wrappedCall startBatchWithOperations:@[[[GRPCOpRecvStatus alloc]
315 initWithHandler:completionHandler]]];
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800316}
317
318- (void)invokeCall {
Jorge Canizales0b34c892015-08-12 20:19:20 -0700319 [self invokeCallWithHeadersHandler:^(NSDictionary *headers) {
Jorge Canizalesf3a4f2c2015-06-12 22:12:50 -0700320 // Response headers received.
Nicolas "Pixel" Noble70224362016-03-21 22:19:43 +0100321 self.responseHeaders = headers;
322 [self startNextRead];
Jorge Canizalesf3a4f2c2015-06-12 22:12:50 -0700323 } completionHandler:^(NSError *error, NSDictionary *trailers) {
Nicolas "Pixel" Noble70224362016-03-21 22:19:43 +0100324 self.responseTrailers = trailers;
Jorge Canizalesf3a4f2c2015-06-12 22:12:50 -0700325
Nicolas "Pixel" Noble70224362016-03-21 22:19:43 +0100326 if (error) {
327 NSMutableDictionary *userInfo = [NSMutableDictionary dictionary];
328 if (error.userInfo) {
329 [userInfo addEntriesFromDictionary:error.userInfo];
Jorge Canizalesc58a1102015-06-15 19:03:41 -0700330 }
Nicolas "Pixel" Noble70224362016-03-21 22:19:43 +0100331 userInfo[kGRPCTrailersKey] = self.responseTrailers;
332 // TODO(jcanizales): The C gRPC library doesn't guarantee that the headers block will be
333 // called before this one, so an error might end up with trailers but no headers. We
334 // shouldn't call finishWithError until ater both blocks are called. It is also when this is
335 // done that we can provide a merged view of response headers and trailers in a thread-safe
336 // way.
337 if (self.responseHeaders) {
338 userInfo[kGRPCHeadersKey] = self.responseHeaders;
339 }
340 error = [NSError errorWithDomain:error.domain code:error.code userInfo:userInfo];
Jorge Canizalesf3a4f2c2015-06-12 22:12:50 -0700341 }
Nicolas "Pixel" Noble70224362016-03-21 22:19:43 +0100342 [self finishWithError:error];
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800343 }];
344 // Now that the RPC has been initiated, request writes can start.
Jorge Canizales238ad782015-08-07 23:11:29 -0700345 @synchronized(_requestWriter) {
346 [_requestWriter startWithWriteable:self];
347 }
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800348}
349
350#pragma mark GRXWriter implementation
351
352- (void)startWithWriteable:(id<GRXWriteable>)writeable {
Jorge Canizales0803bb02016-04-30 10:40:18 -0700353 @synchronized(self) {
354 _state = GRXWriterStateStarted;
355 }
356
Jorge Canizales6531b2b2015-07-18 00:19:14 -0700357 // Create a retain cycle so that this instance lives until the RPC finishes (or is cancelled).
358 // This makes RPCs in which the call isn't externally retained possible (as long as it is started
359 // before being autoreleased).
360 // Care is taken not to retain self strongly in any of the blocks used in this implementation, so
361 // that the life of the instance is determined by this retain cycle.
Jorge Canizaleseb87b462015-08-08 16:16:43 -0700362 _retainSelf = self;
Jorge Canizales6531b2b2015-07-18 00:19:14 -0700363
364 _responseWriteable = [[GRXConcurrentWriteable alloc] initWithWriteable:writeable];
Jorge Canizalesf1d084a2015-10-30 11:14:09 -0700365
366 _wrappedCall = [[GRPCWrappedCall alloc] initWithHost:_host path:_path];
367 NSAssert(_wrappedCall, @"Error allocating RPC objects. Low memory?");
368
Jorge Canizales6512d262015-08-12 17:33:23 -0700369 [self sendHeaders:_requestHeaders];
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800370 [self invokeCall];
Jorge Canizalesf1d084a2015-10-30 11:14:09 -0700371 // TODO(jcanizales): Extract this logic somewhere common.
372 NSString *host = [NSURL URLWithString:[@"https://" stringByAppendingString:_host]].host;
373 if (!host) {
374 // TODO(jcanizales): Check this on init.
375 [NSException raise:NSInvalidArgumentException format:@"host of %@ is nil", _host];
376 }
377 __weak typeof(self) weakSelf = self;
378 _connectivityMonitor = [GRPCConnectivityMonitor monitorWithHost:host];
379 [_connectivityMonitor handleLossWithHandler:^{
380 typeof(self) strongSelf = weakSelf;
381 if (strongSelf) {
382 [strongSelf finishWithError:[NSError errorWithDomain:kGRPCErrorDomain
383 code:GRPCErrorCodeUnavailable
384 userInfo:@{NSLocalizedDescriptionKey: @"Connectivity lost."}]];
Jorge Canizales3785d532016-06-28 10:48:20 -0700385 [[GRPCHost hostWithAddress:strongSelf->_host] disconnect];
Jorge Canizalesf1d084a2015-10-30 11:14:09 -0700386 }
387 }];
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800388}
389
390- (void)setState:(GRXWriterState)newState {
Jorge Canizales0803bb02016-04-30 10:40:18 -0700391 @synchronized(self) {
392 // Manual transitions are only allowed from the started or paused states.
393 if (_state == GRXWriterStateNotStarted || _state == GRXWriterStateFinished) {
394 return;
395 }
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800396
Jorge Canizales0803bb02016-04-30 10:40:18 -0700397 switch (newState) {
398 case GRXWriterStateFinished:
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800399 _state = newState;
Jorge Canizales0803bb02016-04-30 10:40:18 -0700400 // Per GRXWriter's contract, setting the state to Finished manually
401 // means one doesn't wish the writeable to be messaged anymore.
402 [_responseWriteable cancelSilently];
403 _responseWriteable = nil;
404 return;
405 case GRXWriterStatePaused:
406 _state = newState;
407 return;
408 case GRXWriterStateStarted:
409 if (_state == GRXWriterStatePaused) {
410 _state = newState;
411 [self startNextRead];
412 }
413 return;
414 case GRXWriterStateNotStarted:
415 return;
416 }
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800417 }
418}
Jorge Canizalesf1d084a2015-10-30 11:14:09 -0700419
Jorge Canizales5e0efd92015-02-17 18:23:58 -0800420@end