forked from aws-amplify/aws-sdk-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAWSFirehoseRecorder.m
194 lines (154 loc) · 7.95 KB
/
AWSFirehoseRecorder.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
//
// Copyright 2010-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License").
// You may not use this file except in compliance with the License.
// A copy of the License is located at
//
// http://aws.amazon.com/apache2.0
//
// or in the "license" file accompanying this file. This file is distributed
// on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
// express or implied. See the License for the specific language governing
// permissions and limitations under the License.
//
#import "AWSKinesisRecorder.h"
#import "AWSKinesis.h"
#import "AWSSynchronizedMutableDictionary.h"
// Constants
NSString *const AWSFirehoseRecorderErrorDomain = @"com.amazonaws.AWSFirehoseRecorderErrorDomain";
NSString *const AWSFirehoseRecorderByteThresholdReachedNotification = @"com.amazonaws.AWSFirehoseRecorderByteThresholdReachedNotification";
NSString *const AWSFirehoseRecorderByteThresholdReachedNotificationDiskBytesUsedKey = @"diskBytesUsed";
// Legacy constants
NSString *const AWSFirehoseRecorderCacheName = @"com.amazonaws.AWSFirehoseRecorderCacheName.Cache";
@protocol AWSFirehoseRecorderHelper <NSObject>
- (instancetype)initWithConfiguration:(AWSServiceConfiguration *)configuration;
@end
@interface AWSFirehoseRecorderHelper : NSObject <AWSFirehoseRecorderHelper>
@property (nonatomic, strong) AWSFirehose *firehose;
@end
@interface AWSAbstractKinesisRecorder()
@property (nonatomic, strong) id<AWSFirehoseRecorderHelper> recorderHelper;
- (instancetype)initWithConfiguration:(AWSServiceConfiguration *)configuration
identifier:(NSString *)identifier
cacheName:(NSString *)cacheName;
@end
@implementation AWSFirehoseRecorder
static AWSSynchronizedMutableDictionary *_serviceClients = nil;
+ (instancetype)defaultFirehoseRecorder {
if (![AWSServiceManager defaultServiceManager].defaultServiceConfiguration) {
@throw [NSException exceptionWithName:NSInternalInconsistencyException
reason:@"`defaultServiceConfiguration` is `nil`. You need to set it before using this method."
userInfo:nil];
}
static AWSFirehoseRecorder *_defaultFirehoseRecorder = nil;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
_defaultFirehoseRecorder = [[AWSFirehoseRecorder alloc] initWithConfiguration:[AWSServiceManager defaultServiceManager].defaultServiceConfiguration
identifier:@"Default"
cacheName:AWSFirehoseRecorderCacheName];
});
return _defaultFirehoseRecorder;
}
+ (void)registerFirehoseRecorderWithConfiguration:(AWSServiceConfiguration *)configuration forKey:(NSString *)key {
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
_serviceClients = [AWSSynchronizedMutableDictionary new];
});
AWSFirehoseRecorder *FirehoseRecorder = [[AWSFirehoseRecorder alloc] initWithConfiguration:configuration
identifier:[key aws_md5StringLittleEndian]
cacheName:[NSString stringWithFormat:@"%@.%@", AWSFirehoseRecorderCacheName, key]];
[_serviceClients setObject:FirehoseRecorder
forKey:key];
}
+ (instancetype)FirehoseRecorderForKey:(NSString *)key {
return [_serviceClients objectForKey:key];
}
+ (void)removeFirehoseRecorderForKey:(NSString *)key {
[_serviceClients removeObjectForKey:key];
}
- (instancetype)init {
@throw [NSException exceptionWithName:NSInternalInconsistencyException
reason:@"`- init` is not a valid initializer. Use `+ defaultFirehoseRecorder` or `+ FirehoseRecorderForKey:` instead."
userInfo:nil];
}
- (instancetype)initWithConfiguration:(AWSServiceConfiguration *)configuration
identifier:(NSString *)identifier
cacheName:(NSString *)cacheName {
if (self = [super initWithConfiguration:configuration
identifier:identifier
cacheName:cacheName]) {
self.recorderHelper = [[AWSFirehoseRecorderHelper alloc] initWithConfiguration:configuration];
}
return self;
}
@end
@interface AWSFirehose()
- (instancetype)initWithConfiguration:(AWSServiceConfiguration *)configuration;
@end
@implementation AWSFirehoseRecorderHelper
- (instancetype)initWithConfiguration:(AWSServiceConfiguration *)configuration {
if (self = [super init]) {
_firehose = [[AWSFirehose alloc] initWithConfiguration:configuration];
}
return self;
}
- (AWSTask *)submitRecordsForStream:(NSString *)streamName
records:(NSArray *)temporaryRecords
partitionKeys:(NSArray *)partitionKeys
putPartitionKeys:(NSMutableArray *)putPartitionKeys
retryPartitionKeys:(NSMutableArray *)retryPartitionKeys {
NSMutableArray *records = [NSMutableArray new];
for (NSDictionary *recordDictionary in temporaryRecords) {
AWSFirehoseRecord *record = [AWSFirehoseRecord new];
record.data = recordDictionary[@"data"];
[records addObject:record];
}
AWSFirehosePutRecordBatchInput *putRecordBatchInput = [AWSFirehosePutRecordBatchInput new];
putRecordBatchInput.deliveryStreamName = streamName;
putRecordBatchInput.records = records;
AWSLogVerbose(@"putRecordBatchInput: [%@]", putRecordBatchInput);
return [[self.firehose putRecordBatch:putRecordBatchInput] continueWithBlock:^id(AWSTask *task) {
if (task.error) {
AWSLogError(@"Error: [%@]", task.error);
}
if (task.exception) {
AWSLogError(@"Exception: [%@]", task.exception);
}
if (task.result) {
AWSFirehosePutRecordBatchOutput *putRecordBatchOutput = task.result;
for (int i = 0; i < [putRecordBatchOutput.requestResponses count]; i++) {
AWSFirehosePutRecordBatchResponseEntry *resultEntry = putRecordBatchOutput.requestResponses[i];
if (resultEntry.errorCode) {
AWSLogInfo(@"Error Code: [%@] Error Message: [%@]", resultEntry.errorCode, resultEntry.errorMessage);
}
// When the error code is ProvisionedThroughputExceededException or InternalFailure,
// we should retry. So, don't delete the row from the database.
if (![resultEntry.errorCode isEqualToString:@"Throttling"]
&& ![resultEntry.errorCode isEqualToString:@"ServiceUnavailable"]) {
[putPartitionKeys addObject:partitionKeys[i]];
} else {
[retryPartitionKeys addObject:partitionKeys[i]];
}
}
}
return nil;
}];
}
- (NSError *)dataTooLargeError {
return [NSError errorWithDomain:AWSFirehoseRecorderErrorDomain
code:AWSFirehoseRecorderErrorDataTooLarge
userInfo:nil];
}
- (void)checkByteThresholdForNotification:(NSUInteger)notificationByteThreshold
notificationSender:(id)notificationSender
fileSize:(NSUInteger)fileSize {
if (notificationByteThreshold > 0
&& fileSize > notificationByteThreshold) {
// Sends out a notification if it exceeds the disk size threshold.
[[NSNotificationCenter defaultCenter] postNotificationName:AWSFirehoseRecorderByteThresholdReachedNotification
object:notificationSender
userInfo:@{AWSFirehoseRecorderByteThresholdReachedNotificationDiskBytesUsedKey : @(fileSize)}];
}
}
@end