Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Relays upload request errors via nsnotifications #1023

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Segment/Classes/SEGHTTPClient.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ NS_SWIFT_NAME(HTTPClient)
* NOTE: You need to re-dispatch within the completionHandler onto a desired queue to avoid threading issues.
* Completion handlers are called on a dispatch queue internal to SEGHTTPClient.
*/
- (nullable NSURLSessionUploadTask *)upload:(JSON_DICT)batch forWriteKey:(NSString *)writeKey completionHandler:(void (^)(BOOL retry))completionHandler;
- (nullable NSURLSessionUploadTask *)upload:(JSON_DICT)batch forWriteKey:(NSString *)writeKey completionHandler:(void (^)(BOOL retry, NSError * _Nullable error))completionHandler;

- (NSURLSessionDataTask *)settingsForWriteKey:(NSString *)writeKey completionHandler:(void (^)(BOOL success, JSON_DICT _Nullable settings))completionHandler;

Expand Down
32 changes: 23 additions & 9 deletions Segment/Classes/SEGHTTPClient.m
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@

#define SEGMENT_CDN_BASE [NSURL URLWithString:@"https://cdn-settings.segment.com/v1"]

NSString * const kSegmentHttpClientErrorDomain = @"com.segment.httpclient";

typedef NS_ENUM(NSInteger, SegHttpClientError) {
SegHttpClientErrorBatchSizeLimit = 1000,
SegHttpClientErrorRequest
};

static const NSUInteger kMaxBatchSize = 475000; // 475KB

NSString * const kSegmentAPIBaseHost = @"https://api.segment.io/v1";
Expand Down Expand Up @@ -72,7 +79,7 @@ - (void)dealloc
}


- (nullable NSURLSessionUploadTask *)upload:(NSDictionary *)batch forWriteKey:(NSString *)writeKey completionHandler:(void (^)(BOOL retry))completionHandler
- (nullable NSURLSessionUploadTask *)upload:(NSDictionary *)batch forWriteKey:(NSString *)writeKey completionHandler:(void (^)(BOOL retry, NSError * _Nullable error))completionHandler
{
// batch = SEGCoerceDictionary(batch);
NSURLSession *session = [self sessionForWriteKey:writeKey];
Expand All @@ -96,12 +103,12 @@ - (nullable NSURLSessionUploadTask *)upload:(NSDictionary *)batch forWriteKey:(N
}
if (error || exception) {
SEGLog(@"Error serializing JSON for batch upload %@", error);
completionHandler(NO); // Don't retry this batch.
completionHandler(NO, error); // Don't retry this batch.
return nil;
}
if (payload.length >= kMaxBatchSize) {
SEGLog(@"Payload exceeded the limit of %luKB per batch", kMaxBatchSize / 1000);
completionHandler(NO);
completionHandler(NO, [NSError errorWithDomain: kSegmentHttpClientErrorDomain code: SegHttpClientErrorBatchSizeLimit userInfo: nil]);
return nil;
}
NSData *gzippedPayload = [payload seg_gzippedData];
Expand All @@ -110,38 +117,45 @@ - (nullable NSURLSessionUploadTask *)upload:(NSDictionary *)batch forWriteKey:(N
if (error) {
// Network error. Retry.
SEGLog(@"Error uploading request %@.", error);
completionHandler(YES);
completionHandler(YES, error);
return;
}

NSInteger code = ((NSHTTPURLResponse *)response).statusCode;

NSDictionary *userInfo = @{
NSLocalizedDescriptionKey:[NSString stringWithFormat:@"Server responded with unexpected HTTP code %ld.", (long)code]
};

NSError *responseError = [NSError errorWithDomain:kSegmentHttpClientErrorDomain code:SegHttpClientErrorRequest userInfo:userInfo];

if (code < 300) {
// 2xx response codes. Don't retry.
completionHandler(NO);
completionHandler(NO, nil);
return;
}
if (code < 400) {
// 3xx response codes. Retry.
SEGLog(@"Server responded with unexpected HTTP code %d.", code);
completionHandler(YES);
completionHandler(YES, responseError);
return;
}
if (code == 429) {
// 429 response codes. Retry.
SEGLog(@"Server limited client with response code %d.", code);
completionHandler(YES);
completionHandler(YES, responseError);
return;
}
if (code < 500) {
// non-429 4xx response codes. Don't retry.
SEGLog(@"Server rejected payload with HTTP code %d.", code);
completionHandler(NO);
completionHandler(NO, responseError);
return;
}

// 5xx response codes. Retry.
SEGLog(@"Server error with HTTP code %d.", code);
completionHandler(YES);
completionHandler(YES, responseError);
}];
[task resume];
return task;
Expand Down
17 changes: 11 additions & 6 deletions Segment/Classes/SEGSegmentIntegration.m
Original file line number Diff line number Diff line change
Expand Up @@ -377,10 +377,10 @@ - (void)reset
}];
}

- (void)notifyForName:(NSString *)name userInfo:(id)userInfo
- (void)notifyForName:(NSString *)name object:(id)object userInfo:(id)userInfo
{
dispatch_async(dispatch_get_main_queue(), ^{
[[NSNotificationCenter defaultCenter] postNotificationName:name object:userInfo];
[[NSNotificationCenter defaultCenter] postNotificationName:name object:object userInfo:userInfo];
SEGLog(@"sent notification %@", name);
});
}
Expand All @@ -394,26 +394,31 @@ - (void)sendData:(NSArray *)batch
SEGLog(@"%@ Flushing %lu of %lu queued API calls.", self, (unsigned long)batch.count, (unsigned long)self.queue.count);
SEGLog(@"Flushing batch %@.", payload);

self.batchRequest = [self.httpClient upload:payload forWriteKey:self.configuration.writeKey completionHandler:^(BOOL retry) {
self.batchRequest = [self.httpClient upload:payload forWriteKey:self.configuration.writeKey completionHandler:^(BOOL retry, NSError *error) {
void (^completion)(void) = ^{
NSDictionary *errorDict;
if (error != nil) {
errorDict = @{ @"Error":error };
}

if (retry) {
[self notifyForName:SEGSegmentRequestDidFailNotification userInfo:batch];
[self notifyForName:SEGSegmentRequestDidFailNotification object:batch userInfo:errorDict];
self.batchRequest = nil;
[self endBackgroundTask];
return;
}

[self.queue removeObjectsInArray:batch];
[self persistQueue];
[self notifyForName:SEGSegmentRequestDidSucceedNotification userInfo:batch];
[self notifyForName:SEGSegmentRequestDidSucceedNotification object:batch userInfo:errorDict];
self.batchRequest = nil;
[self endBackgroundTask];
};

[self dispatchBackground:completion];
}];

[self notifyForName:SEGSegmentDidSendRequestNotification userInfo:batch];
[self notifyForName:SEGSegmentDidSendRequestNotification object:batch userInfo:nil];
}

- (void)applicationDidEnterBackground
Expand Down