forked from Countly/countly-sdk-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCountlyAPM.m
296 lines (219 loc) · 10.1 KB
/
CountlyAPM.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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
// CountlyAPM.m
//
// This code is provided under the MIT License.
//
// Please visit www.count.ly for more information.
#import "CountlyCommon.h"
@implementation CountlyAPM
+ (instancetype)sharedInstance
{
static CountlyAPM* s_sharedInstance = nil;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{s_sharedInstance = self.new;});
return s_sharedInstance;
}
- (instancetype)init
{
self = [super init];
if (self)
{
NSURL * url = [NSURL URLWithString:CountlyConnectionManager.sharedInstance.appHost];
NSString* hostAndPath = [url.host stringByAppendingString:url.path];
self.exceptionURLs = [NSMutableArray arrayWithObject:hostAndPath];
}
return self;
}
- (void)startAPM
{
Method O_method;
Method C_method;
O_method = class_getClassMethod(NSURLConnection.class, @selector(sendSynchronousRequest:returningResponse:error:));
C_method = class_getClassMethod(NSURLConnection.class, @selector(Countly_sendSynchronousRequest:returningResponse:error:));
method_exchangeImplementations(O_method, C_method);
O_method = class_getClassMethod(NSURLConnection.class, @selector(sendAsynchronousRequest:queue:completionHandler:));
C_method = class_getClassMethod(NSURLConnection.class, @selector(Countly_sendAsynchronousRequest:queue:completionHandler:));
method_exchangeImplementations(O_method, C_method);
O_method = class_getInstanceMethod(NSURLConnection.class, @selector(initWithRequest:delegate:));
C_method = class_getInstanceMethod(NSURLConnection.class, @selector(Countly_initWithRequest:delegate:));
method_exchangeImplementations(O_method, C_method);
O_method = class_getInstanceMethod(NSURLConnection.class, @selector(initWithRequest:delegate:startImmediately:));
C_method = class_getInstanceMethod(NSURLConnection.class, @selector(Countly_initWithRequest:delegate:startImmediately:));
method_exchangeImplementations(O_method, C_method);
O_method = class_getInstanceMethod(NSURLConnection.class, @selector(start));
C_method = class_getInstanceMethod(NSURLConnection.class, @selector(Countly_start));
method_exchangeImplementations(O_method, C_method);
O_method = class_getInstanceMethod(NSURLSession.class, @selector(dataTaskWithRequest:completionHandler:));
C_method = class_getInstanceMethod(NSURLSession.class, @selector(Countly_dataTaskWithRequest:completionHandler:));
method_exchangeImplementations(O_method, C_method);
O_method = class_getInstanceMethod(NSURLSession.class, @selector(downloadTaskWithRequest:completionHandler:));
C_method = class_getInstanceMethod(NSURLSession.class, @selector(Countly_downloadTaskWithRequest:completionHandler:));
method_exchangeImplementations(O_method, C_method);
O_method = class_getInstanceMethod(NSClassFromString(@"__NSCFLocalDataTask"), @selector(resume));
C_method = class_getInstanceMethod(NSClassFromString(@"__NSCFLocalDataTask"), @selector(Countly_resume));
#if TARGET_OS_IOS
if(NSFoundationVersionNumber <= NSFoundationVersionNumber_iOS_8_0)
{
O_method = class_getInstanceMethod(NSURLSessionTask.class, @selector(resume));
C_method = class_getInstanceMethod(NSURLSessionTask.class, @selector(Countly_resume));
}
#endif
method_exchangeImplementations(O_method, C_method);
}
- (void)addExceptionForAPM:(NSString *)string
{
NSURL* url = [NSURL URLWithString:string];
NSString* hostAndPath = [url.host stringByAppendingString:url.path];
if (![CountlyAPM.sharedInstance.exceptionURLs containsObject:hostAndPath])
{
[CountlyAPM.sharedInstance.exceptionURLs addObject:hostAndPath];
}
}
- (void)removeExceptionForAPM:(NSString *)string
{
NSURL * url = [NSURL URLWithString:string];
NSString* hostAndPath = [url.host stringByAppendingString:url.path];
[CountlyAPM.sharedInstance.exceptionURLs removeObject:hostAndPath];
}
#pragma mark -
- (void)connection:(NSURLConnection *)connection didFailWithError:(nonnull NSError *)error
{
[connection.APMNetworkLog finishWithStatusCode:-1 andDataSize:0];
if (connection.originalDelegate &&
[connection.originalDelegate respondsToSelector:@selector(connection:didFailWithError:)])
{
[connection.originalDelegate connection:connection didFailWithError:error];
}
}
- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
{
[connection.APMNetworkLog updateWithResponse:response];
if (connection.originalDelegate &&
[connection.originalDelegate respondsToSelector:@selector(connection:didReceiveResponse:)])
{
[connection.originalDelegate connection:connection didReceiveResponse:response];
}
}
- (void)connectionDidFinishLoading:(NSURLConnection *)connection
{
[connection.APMNetworkLog finish];
if (connection.originalDelegate &&
[connection.originalDelegate respondsToSelector:@selector(connectionDidFinishLoading:)])
{
[connection.originalDelegate connectionDidFinishLoading:connection];
}
}
@end
#pragma mark -
@implementation NSURLConnection (CountlyAPM)
@dynamic originalDelegate, APMNetworkLog;
+ (nullable NSData *)Countly_sendSynchronousRequest:(NSURLRequest *)request returningResponse:(NSURLResponse **)response error:(NSError **)error
{
CountlyAPMNetworkLog* nl = [CountlyAPMNetworkLog createWithRequest:request startImmediately:YES];
NSData *data = [self Countly_sendSynchronousRequest:request returningResponse:response error:error];
[nl finishWithStatusCode:((NSHTTPURLResponse*)*response).statusCode andDataSize:data.length];
return data;
}
+ (void)Countly_sendAsynchronousRequest:(NSURLRequest *) request
queue:(NSOperationQueue *) queue
completionHandler:(void (^)(NSURLResponse* response, NSData* data, NSError* connectionError)) handler
{
CountlyAPMNetworkLog* nl = [CountlyAPMNetworkLog createWithRequest:request startImmediately:YES];
[self Countly_sendAsynchronousRequest:request queue:queue completionHandler:^(NSURLResponse * _Nullable response, NSData * _Nullable data, NSError * _Nullable connectionError)
{
[nl finishWithStatusCode:((NSHTTPURLResponse*)response).statusCode andDataSize:data.length];
if (handler)
{
handler(response, data, connectionError);
}
}];
};
- (nullable instancetype)Countly_initWithRequest:(NSURLRequest * _Nonnull)request delegate:(nullable id)delegate
{
CountlyAPMNetworkLog* nl = [CountlyAPMNetworkLog createWithRequest:request startImmediately:NO];
NSURLConnection* c = [self Countly_initWithRequest:request delegate:CountlyAPM.sharedInstance startImmediately:NO];
c.originalDelegate = delegate;
c.APMNetworkLog = nl;
[c start];
return c;
}
- (nullable instancetype)Countly_initWithRequest:(NSURLRequest * _Nonnull)request delegate:(nullable id)delegate startImmediately:(BOOL)startImmediately
{
CountlyAPMNetworkLog* nl = [CountlyAPMNetworkLog createWithRequest:request startImmediately:startImmediately];
NSURLConnection* c = [self Countly_initWithRequest:request delegate:CountlyAPM.sharedInstance startImmediately:NO];
c.originalDelegate = delegate;
c.APMNetworkLog = nl;
if(startImmediately)
[c start];
return c;
}
- (void)Countly_start
{
[self.APMNetworkLog start];
[self Countly_start];
}
- (id)originalDelegate
{
return objc_getAssociatedObject(self, @selector(originalDelegate));
}
- (void)setOriginalDelegate:(id)originalDelegate
{
objc_setAssociatedObject(self, @selector(originalDelegate), originalDelegate, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
}
- (CountlyAPMNetworkLog *)APMNetworkLog
{
return objc_getAssociatedObject(self, @selector(APMNetworkLog));
}
- (void)setAPMNetworkLog:(CountlyAPMNetworkLog *)APMNetworkLog
{
objc_setAssociatedObject(self, @selector(APMNetworkLog), APMNetworkLog, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
}
@end
#pragma mark -
@implementation NSURLSession (CountlyAPM)
- (NSURLSessionDataTask *)Countly_dataTaskWithRequest:(NSURLRequest *)request completionHandler:(void (^)(NSData * __nullable data, NSURLResponse * __nullable response, NSError * __nullable error))completionHandler
{
CountlyAPMNetworkLog* nl = [CountlyAPMNetworkLog createWithRequest:request startImmediately:YES];
NSURLSessionDataTask* dataTask = [self Countly_dataTaskWithRequest:request completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error)
{
[nl finishWithStatusCode:((NSHTTPURLResponse*)response).statusCode andDataSize:data.length];
if (completionHandler)
{
completionHandler(data, response, error);
}
}];
dataTask.APMNetworkLog = nl;
return dataTask;
}
- (NSURLSessionDownloadTask * __nullable)Countly_downloadTaskWithRequest:(NSURLRequest * _Nonnull)request completionHandler:(void (^ _Nullable)(NSURL * __nullable location, NSURLResponse * __nullable response, NSError * __nullable error))completionHandler
{
CountlyAPMNetworkLog* nl = [CountlyAPMNetworkLog createWithRequest:request startImmediately:YES];
NSURLSessionDownloadTask* downloadTask = [self Countly_downloadTaskWithRequest:request completionHandler:^(NSURL * _Nullable location, NSURLResponse * _Nullable response, NSError * _Nullable error)
{
NSHTTPURLResponse* HTTPresponse = (NSHTTPURLResponse*)response;
long long dataSize = [[HTTPresponse allHeaderFields][@"Content-Length"] longLongValue];
[nl finishWithStatusCode:((NSHTTPURLResponse*)response).statusCode andDataSize:dataSize];
if (completionHandler)
{
completionHandler(location, response, error);
}
}];
downloadTask.APMNetworkLog = nl;
return downloadTask;
}
@end
@implementation NSURLSessionTask (CountlyAPM)
@dynamic APMNetworkLog;
- (void)Countly_resume
{
[self.APMNetworkLog start];
[self Countly_resume];
}
- (CountlyAPMNetworkLog *)APMNetworkLog
{
return objc_getAssociatedObject(self, @selector(APMNetworkLog));
}
- (void)setAPMNetworkLog:(id)APMNetworkLog
{
objc_setAssociatedObject(self, @selector(APMNetworkLog), APMNetworkLog, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
}
@end