-
Notifications
You must be signed in to change notification settings - Fork 244
/
CountlyCrashReporter.m
556 lines (453 loc) · 21.3 KB
/
CountlyCrashReporter.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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
// CountlyCrashReporter.m
//
// This code is provided under the MIT License.
//
// Please visit www.count.ly for more information.
#import "CountlyCommon.h"
#import <mach-o/dyld.h>
#include <execinfo.h>
#if __has_include(<CrashReporter/CrashReporter.h>)
#define COUNTLY_PLCRASHREPORTER_EXISTS true
#import <CrashReporter/CrashReporter.h>
#else
#endif
NSString* const kCountlyExceptionUserInfoBacktraceKey = @"kCountlyExceptionUserInfoBacktraceKey";
NSString* const kCountlyExceptionUserInfoSignalCodeKey = @"kCountlyExceptionUserInfoSignalCodeKey";
NSString* const kCountlyExceptionUserInfoSegmentationOverrideKey = @"kCountlyExceptionUserInfoSegmentationOverrideKey";
NSString* const kCountlyCRKeyBinaryImages = @"_binary_images";
NSString* const kCountlyCRKeyOS = @"_os";
NSString* const kCountlyCRKeyOSVersion = @"_os_version";
NSString* const kCountlyCRKeyDevice = @"_device";
NSString* const kCountlyCRKeyArchitecture = @"_architecture";
NSString* const kCountlyCRKeyResolution = @"_resolution";
NSString* const kCountlyCRKeyAppVersion = @"_app_version";
NSString* const kCountlyCRKeyAppBuild = @"_app_build";
NSString* const kCountlyCRKeyBuildUUID = @"_build_uuid";
NSString* const kCountlyCRKeyExecutableName = @"_executable_name";
NSString* const kCountlyCRKeyName = @"_name";
NSString* const kCountlyCRKeyType = @"_type";
NSString* const kCountlyCRKeyError = @"_error";
NSString* const kCountlyCRKeyNonfatal = @"_nonfatal";
NSString* const kCountlyCRKeyRAMCurrent = @"_ram_current";
NSString* const kCountlyCRKeyRAMTotal = @"_ram_total";
NSString* const kCountlyCRKeyDiskCurrent = @"_disk_current";
NSString* const kCountlyCRKeyDiskTotal = @"_disk_total";
NSString* const kCountlyCRKeyBattery = @"_bat";
NSString* const kCountlyCRKeyOrientation = @"_orientation";
NSString* const kCountlyCRKeyOnline = @"_online";
NSString* const kCountlyCRKeyRoot = @"_root";
NSString* const kCountlyCRKeyBackground = @"_background";
NSString* const kCountlyCRKeyRun = @"_run";
NSString* const kCountlyCRKeyCustom = @"_custom";
NSString* const kCountlyCRKeyLogs = @"_logs";
NSString* const kCountlyCRKeyPLCrash = @"_plcrash";
NSString* const kCountlyCRKeyImageLoadAddress = @"la";
NSString* const kCountlyCRKeyImageBuildUUID = @"id";
NSString* const kCountlyCRKeyOB = @"_ob";
@interface CountlyCrashReporter ()
@property (nonatomic) NSMutableArray* customCrashLogs;
@property (nonatomic) NSDateFormatter* dateFormatter;
@property (nonatomic) NSString* buildUUID;
@property (nonatomic) NSString* executableName;
#ifdef COUNTLY_PLCRASHREPORTER_EXISTS
@property (nonatomic) PLCrashReporter* crashReporter;
#endif
@end
@implementation CountlyCrashReporter
+ (instancetype)sharedInstance
{
if (!CountlyCommon.sharedInstance.hasStarted)
return nil;
static CountlyCrashReporter *s_sharedInstance = nil;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{s_sharedInstance = self.new;});
return s_sharedInstance;
}
- (instancetype)init
{
if (self = [super init])
{
self.crashSegmentation = nil;
self.customCrashLogs = NSMutableArray.new;
self.dateFormatter = NSDateFormatter.new;
self.dateFormatter.dateFormat = @"yyyy-MM-dd HH:mm:ss.SSS";
}
return self;
}
- (void)startCrashReporting
{
if (!self.isEnabledOnInitialConfig)
return;
if (!CountlyConsentManager.sharedInstance.consentForCrashReporting)
return;
if (self.shouldUsePLCrashReporter)
{
#ifdef COUNTLY_PLCRASHREPORTER_EXISTS
[self startPLCrashReporter];
#else
[NSException raise:@"CountlyPLCrashReporterDependencyNotFoundException" format:@"PLCrashReporter dependency can not be found in Project"];
#endif
return;
}
NSSetUncaughtExceptionHandler(&CountlyUncaughtExceptionHandler);
#if (TARGET_OS_IOS || TARGET_OS_VISION || TARGET_OS_TV || TARGET_OS_OSX)
signal(SIGABRT, CountlySignalHandler);
signal(SIGILL, CountlySignalHandler);
signal(SIGSEGV, CountlySignalHandler);
signal(SIGFPE, CountlySignalHandler);
signal(SIGBUS, CountlySignalHandler);
signal(SIGPIPE, CountlySignalHandler);
signal(SIGTRAP, CountlySignalHandler);
#endif
}
- (void)stopCrashReporting
{
if (!self.isEnabledOnInitialConfig)
return;
NSSetUncaughtExceptionHandler(NULL);
#if (TARGET_OS_IOS || TARGET_OS_VISION || TARGET_OS_TV || TARGET_OS_OSX)
signal(SIGABRT, SIG_DFL);
signal(SIGILL, SIG_DFL);
signal(SIGSEGV, SIG_DFL);
signal(SIGFPE, SIG_DFL);
signal(SIGBUS, SIG_DFL);
signal(SIGPIPE, SIG_DFL);
signal(SIGTRAP, SIG_DFL);
#endif
[self clearCrashLogs];
}
#ifdef COUNTLY_PLCRASHREPORTER_EXISTS
- (void)startPLCrashReporter
{
PLCrashReporterSignalHandlerType type = self.shouldUseMachSignalHandler ? PLCrashReporterSignalHandlerTypeMach : PLCrashReporterSignalHandlerTypeBSD;
PLCrashReporterConfig* config = [PLCrashReporterConfig.alloc initWithSignalHandlerType:type symbolicationStrategy:PLCrashReporterSymbolicationStrategyNone];
self.crashReporter = [PLCrashReporter.alloc initWithConfiguration:config];
if (self.crashReporter.hasPendingCrashReport)
[self handlePendingCrashReport];
else
[CountlyPersistency.sharedInstance deleteCustomCrashLogFile];
[self.crashReporter enableCrashReporter];
}
- (void)handlePendingCrashReport
{
NSError *error;
NSData* crashData = [self.crashReporter loadPendingCrashReportDataAndReturnError:&error];
if (!crashData)
{
CLY_LOG_W(@"Could not load crash report data: %@", error);
return;
}
PLCrashReport *report = [PLCrashReport.alloc initWithData:crashData error:&error];
if (!report)
{
CLY_LOG_W(@"Could not initialize crash report using data %@", error);
return;
}
NSString* reportText = [PLCrashReportTextFormatter stringValueForCrashReport:report withTextFormat:PLCrashReportTextFormatiOS];
NSMutableDictionary* crashReport = NSMutableDictionary.dictionary;
crashReport[kCountlyCRKeyError] = reportText;
crashReport[kCountlyCRKeyOS] = CountlyDeviceInfo.osName;
crashReport[kCountlyCRKeyAppVersion] = report.applicationInfo.applicationVersion;
crashReport[kCountlyCRKeyPLCrash] = @YES;
crashReport[kCountlyCRKeyCustom] = [CountlyPersistency.sharedInstance customCrashLogsFromFile];
if (self.crashOccuredOnPreviousSessionCallback)
self.crashOccuredOnPreviousSessionCallback(crashReport);
BOOL shouldSend = YES;
if (self.shouldSendCrashReportCallback)
{
CLY_LOG_D(@"shouldSendCrashReportCallback is set, asking it if the report should be sent or not.");
shouldSend = self.shouldSendCrashReportCallback(crashReport);
if (shouldSend)
CLY_LOG_D(@"shouldSendCrashReportCallback returned YES, sending the report.");
else
CLY_LOG_D(@"shouldSendCrashReportCallback returned NO, not sending the report.");
}
if (shouldSend)
{
[CountlyConnectionManager.sharedInstance sendCrashReport:[crashReport cly_JSONify] immediately:NO];
}
[CountlyPersistency.sharedInstance deleteCustomCrashLogFile];
[self.crashReporter purgePendingCrashReport];
}
#endif
- (void)recordException:(NSException *)exception isFatal:(BOOL)isFatal stackTrace:(NSArray *)stackTrace segmentation:(NSDictionary *)segmentation
{
if (!CountlyConsentManager.sharedInstance.consentForCrashReporting)
return;
if (stackTrace || segmentation)
{
NSMutableDictionary* userInfo = [NSMutableDictionary dictionaryWithDictionary:exception.userInfo];
userInfo[kCountlyExceptionUserInfoBacktraceKey] = stackTrace;
if(segmentation) {
NSDictionary* truncatedSegmentation = [segmentation cly_truncated:@"Exception segmentation"];
NSDictionary* limitedSegmentation = [truncatedSegmentation cly_limited:@"Exception segmentation"];
userInfo[kCountlyExceptionUserInfoSegmentationOverrideKey] = limitedSegmentation.cly_filterSupportedDataTypes;
}
exception = [NSException exceptionWithName:exception.name reason:exception.reason userInfo:userInfo];
}
CountlyExceptionHandler(exception, isFatal, false);
}
- (void)recordError:(NSString *)errorName isFatal:(BOOL)isFatal stackTrace:(NSArray *)stackTrace segmentation:(NSDictionary *)segmentation
{
NSException* exception = [NSException exceptionWithName:@"Swift Error" reason:errorName userInfo:nil];
[self recordException:exception isFatal:isFatal stackTrace:stackTrace segmentation:segmentation];
}
void CountlyUncaughtExceptionHandler(NSException *exception)
{
CountlyExceptionHandler(exception, true, true);
}
void CountlyExceptionHandler(NSException *exception, bool isFatal, bool isAutoDetect)
{
NSArray* stackTrace = exception.userInfo[kCountlyExceptionUserInfoBacktraceKey];
if (!stackTrace)
stackTrace = exception.callStackSymbols;
NSString* stackTraceJoined = [stackTrace componentsJoinedByString:@"\n"];
BOOL matchesFilter = NO;
if (CountlyCrashReporter.sharedInstance.crashFilter)
{
matchesFilter = [CountlyCrashReporter.sharedInstance isMatchingFilter:stackTraceJoined] ||
[CountlyCrashReporter.sharedInstance isMatchingFilter:exception.description] ||
[CountlyCrashReporter.sharedInstance isMatchingFilter:exception.name];
}
NSMutableDictionary* custom = NSMutableDictionary.new;
if (CountlyCrashReporter.sharedInstance.crashSegmentation)
[custom addEntriesFromDictionary:CountlyCrashReporter.sharedInstance.crashSegmentation];
NSDictionary* segmentationOverride = exception.userInfo[kCountlyExceptionUserInfoSegmentationOverrideKey];
if (segmentationOverride)
[custom addEntriesFromDictionary:segmentationOverride];
NSMutableDictionary* userInfo = exception.userInfo.mutableCopy;
[userInfo removeObjectForKey:kCountlyExceptionUserInfoBacktraceKey];
[userInfo removeObjectForKey:kCountlyExceptionUserInfoSignalCodeKey];
[userInfo removeObjectForKey:kCountlyExceptionUserInfoSegmentationOverrideKey];
[custom addEntriesFromDictionary:userInfo];
CountlyCrashData* crashData = [CountlyCrashReporter.sharedInstance prepareCrashDataWithError:stackTraceJoined name:exception.name description:exception.description isFatal:isFatal customSegmentation:custom];
BOOL filterCrash = NO;
if(CountlyCrashReporter.sharedInstance.crashFilterCallback) {
// Directly passing the callback as we are doing prviouslt with download variant
filterCrash = CountlyCrashReporter.sharedInstance.crashFilterCallback(crashData);
}
//NOTE: Do not send crash report if it is matching optional regex filter.
if (matchesFilter || filterCrash)
{
CLY_LOG_D(@"Crash matches filter and it will not be processed.");
}
else
{
NSMutableDictionary* crashReport = [crashData.crashMetrics mutableCopy];
crashReport[kCountlyCRKeyError] = crashData.stackTrace;
crashReport[kCountlyCRKeyBinaryImages] = [CountlyCrashReporter.sharedInstance binaryImagesForStackTrace:stackTrace];
crashReport[kCountlyCRKeyName] = crashData.crashDescription;
crashReport[kCountlyCRKeyType] = crashData.name;
crashReport[kCountlyCRKeyNonfatal] = @(!crashData.fatal);
[crashData calculateChangedFields];
NSNumber *obValue = [crashData getChangedFieldsAsInt];
if(obValue && [obValue intValue] > 0) {
crashReport[kCountlyCRKeyOB] = obValue;
}
if (crashData.crashSegmentation) {
NSDictionary* truncatedCrashSegmentation = [crashData.crashSegmentation cly_truncated:@"Crash segmentation"];
NSDictionary* limitedCrashSegmentation = [truncatedCrashSegmentation cly_limited:@"Crash segmentation"];
crashReport[kCountlyCRKeyCustom] = limitedCrashSegmentation;
}
if (crashData.breadcrumbs) {
crashReport[kCountlyCRKeyLogs] = [crashData.breadcrumbs componentsJoinedByString:@"\n"];
}
[CountlyConnectionManager.sharedInstance sendCrashReport:[crashReport cly_JSONify] immediately:isAutoDetect];
}
if (isAutoDetect)
[CountlyCrashReporter.sharedInstance stopCrashReporting];
}
void CountlySignalHandler(int signalCode)
{
const unsigned int kCountlyStackFramesMax = 128;
void *stack[kCountlyStackFramesMax];
NSInteger frameCount = backtrace(stack, kCountlyStackFramesMax);
char **lines = backtrace_symbols(stack, (int)frameCount);
NSMutableArray *backtrace = [NSMutableArray arrayWithCapacity:frameCount];
for (NSInteger i = 1; i < frameCount; i++)
{
if (lines[i] != NULL)
{
NSString *line = [NSString stringWithUTF8String:lines[i]];
if (line)
[backtrace addObject:line];
}
}
free(lines);
NSDictionary *userInfo = @{kCountlyExceptionUserInfoSignalCodeKey: @(signalCode), kCountlyExceptionUserInfoBacktraceKey: backtrace};
NSString *reason = [NSString stringWithFormat:@"App terminated by SIG%@", [NSString stringWithUTF8String:sys_signame[signalCode]].uppercaseString];
NSException *e = [NSException exceptionWithName:@"Fatal Signal" reason:reason userInfo:userInfo];
CountlyUncaughtExceptionHandler(e);
}
- (void)log:(NSString *)log
{
if (!CountlyConsentManager.sharedInstance.consentForCrashReporting)
return;
log = [log cly_truncatedValue:@"Custom Crash log"];
if (self.shouldUsePLCrashReporter)
{
[CountlyPersistency.sharedInstance writeCustomCrashLogToFile:log];
}
else
{
[self.customCrashLogs addObject:log];
if (self.customCrashLogs.count > self.crashLogLimit)
[self.customCrashLogs removeObjectAtIndex:0];
}
}
- (void)clearCrashLogs
{
if (self.shouldUsePLCrashReporter)
{
[CountlyPersistency.sharedInstance deleteCustomCrashLogFile];
}
else
{
[self.customCrashLogs removeAllObjects];
}
}
- (NSDictionary *)binaryImagesForStackTrace:(NSArray *)stackTrace
{
NSMutableSet* binaryImagesInStack = NSMutableSet.new;
for (NSString* line in stackTrace)
{
//NOTE: See _BACKTRACE_FORMAT in https://opensource.apple.com/source/Libc/Libc-498/gen/backtrace.c.auto.html
NSRange rangeOfBinaryImageName = (NSRange){4, 35};
if (line.length >= rangeOfBinaryImageName.location + rangeOfBinaryImageName.length)
{
NSString* binaryImageName = [line substringWithRange:rangeOfBinaryImageName];
binaryImageName = [binaryImageName stringByTrimmingCharactersInSet:NSCharacterSet.whitespaceCharacterSet];
[binaryImagesInStack addObject:binaryImageName];
}
}
NSMutableDictionary* binaryImages = NSMutableDictionary.new;
uint32_t imageCount = _dyld_image_count();
for (uint32_t i = 0; i < imageCount; i++)
{
const char* imageNameChar = _dyld_get_image_name(i);
if (imageNameChar == NULL)
{
CLY_LOG_W(@"Image Name can not be retrieved!");
continue;
}
NSString *imageName = [NSString stringWithUTF8String:imageNameChar].lastPathComponent;
if (![binaryImagesInStack containsObject:imageName])
{
CLY_LOG_V(@"%s, imageName:[%@] is not in the stack trace, so it will be ignored!", __FUNCTION__, imageName);
continue;
}
CLY_LOG_D(@"%s, imageName:[%@] is in the stack trace, so it will be used!", __FUNCTION__, imageName);
const struct mach_header* imageHeader = _dyld_get_image_header(i);
if (imageHeader == NULL)
{
CLY_LOG_W(@"Image Header can not be retrieved!");
continue;
}
BOOL is64bit = imageHeader->magic == MH_MAGIC_64 || imageHeader->magic == MH_CIGAM_64;
uintptr_t ptr = (uintptr_t)imageHeader + (is64bit ? sizeof(struct mach_header_64) : sizeof(struct mach_header));
NSString* imageUUID = nil;
for (uint32_t j = 0; j < imageHeader->ncmds; j++)
{
const struct segment_command_64* segCmd = (struct segment_command_64*)ptr;
if (segCmd->cmd == LC_UUID)
{
const uint8_t* uuid = ((const struct uuid_command*)segCmd)->uuid;
imageUUID = [NSUUID.alloc initWithUUIDBytes:uuid].UUIDString;
break;
}
ptr += segCmd->cmdsize;
}
if (!imageUUID)
{
CLY_LOG_W(@"Image UUID can not be retrieved!");
continue;
}
//NOTE: Include app's own build UUID directly in crash report object, as Countly Server needs it for fast lookup
if (imageHeader->filetype == MH_EXECUTE)
{
CountlyCrashReporter.sharedInstance.buildUUID = imageUUID;
CountlyCrashReporter.sharedInstance.executableName = imageName;
}
NSString *imageLoadAddress = [NSString stringWithFormat:@"0x%llX", (uint64_t)imageHeader];
binaryImages[imageName] = @{kCountlyCRKeyImageLoadAddress: imageLoadAddress, kCountlyCRKeyImageBuildUUID: imageUUID};
}
return [NSDictionary dictionaryWithDictionary:binaryImages];
}
- (BOOL)isMatchingFilter:(NSString *)string
{
if (!self.crashFilter)
return NO;
NSUInteger numberOfMatches = [self.crashFilter numberOfMatchesInString:string options:0 range:(NSRange){0, string.length}];
if (numberOfMatches == 0)
return NO;
return YES;
}
-(void) setCrashSegmentation:(NSDictionary<NSString *, NSString *>*) crashSegmentation
{
NSDictionary* truncatedSegmentation = [crashSegmentation cly_truncated:@"Crash segmentation"];
_crashSegmentation = [truncatedSegmentation cly_limited:@"Crash segmentation"];
}
- (CountlyCrashData *)prepareCrashDataWithError:(NSString *)error name:(NSString *)name description:(NSString *)description isFatal:(BOOL)isFatal customSegmentation:(NSMutableDictionary *)customSegmentation {
if(error == nil) {
CLY_LOG_W(@"Error must not be nil");
}
NSDictionary* truncatedSegmentation = [customSegmentation cly_truncated:@"Exception segmentation"];
NSDictionary* limitedSegmentation = [truncatedSegmentation cly_limited:@"[CountlyCrashReporter] prepareCrashData"];
return [[CountlyCrashData alloc] initWithStackTrace:error name:name description:description crashSegmentation:limitedSegmentation breadcrumbs:self.customCrashLogs crashMetrics:[self getCrashMetrics] fatal:isFatal];
}
- (NSMutableDictionary*)getCrashMetrics
{
const NSInteger kCLYMebibit = 1048576;
NSMutableDictionary* crashReport = NSMutableDictionary.dictionary;
crashReport[kCountlyCRKeyOS] = CountlyDeviceInfo.osName;
crashReport[kCountlyCRKeyOSVersion] = CountlyDeviceInfo.osVersion;
crashReport[kCountlyCRKeyDevice] = CountlyDeviceInfo.device;
crashReport[kCountlyCRKeyArchitecture] = CountlyDeviceInfo.architecture;
crashReport[kCountlyCRKeyResolution] = CountlyDeviceInfo.resolution;
crashReport[kCountlyCRKeyAppVersion] = CountlyDeviceInfo.appVersion;
crashReport[kCountlyCRKeyAppBuild] = CountlyDeviceInfo.appBuild;
crashReport[kCountlyCRKeyBuildUUID] = CountlyCrashReporter.sharedInstance.buildUUID ?: @"";
crashReport[kCountlyCRKeyExecutableName] = CountlyCrashReporter.sharedInstance.executableName ?: @"";
crashReport[kCountlyCRKeyRAMCurrent] = @((CountlyDeviceInfo.totalRAM - CountlyDeviceInfo.freeRAM) / kCLYMebibit);
crashReport[kCountlyCRKeyRAMTotal] = @(CountlyDeviceInfo.totalRAM / kCLYMebibit);
crashReport[kCountlyCRKeyDiskCurrent] = @((CountlyDeviceInfo.totalDisk - CountlyDeviceInfo.freeDisk) / kCLYMebibit);
crashReport[kCountlyCRKeyDiskTotal] = @(CountlyDeviceInfo.totalDisk / kCLYMebibit);
NSInteger batteryLevel = CountlyDeviceInfo.batteryLevel;
// We will add battery level only if there is a valid value.
if (batteryLevel >= 0)
{
crashReport[kCountlyCRKeyBattery] = @(batteryLevel);
}
crashReport[kCountlyCRKeyOrientation] = CountlyDeviceInfo.orientation;
crashReport[kCountlyCRKeyOnline] = @((CountlyDeviceInfo.connectionType) ? 1 : 0 );
crashReport[kCountlyCRKeyRoot] = @(CountlyDeviceInfo.isJailbroken);
crashReport[kCountlyCRKeyBackground] = @(CountlyDeviceInfo.isInBackground);
crashReport[kCountlyCRKeyRun] = @(CountlyCommon.sharedInstance.timeSinceLaunch);
return crashReport;
}
@end
#if (TARGET_OS_OSX)
@implementation CLYExceptionHandlingApplication
- (void)reportException:(NSException *)exception
{
[super reportException:exception];
//NOTE: Custom UncaughtExceptionHandler is called with an irrelevant stack trace, not the original crash call stack trace.
//NOTE: And system's own UncaughtExceptionHandler handles the exception by just printing it to the Console.
//NOTE: So, we intercept the exception here and record manually.
[CountlyCrashReporter.sharedInstance recordException:exception isFatal:NO stackTrace:nil segmentation:nil];
}
- (void)sendEvent:(NSEvent *)theEvent
{
//NOTE: Exceptions caused by UI related events (which run on main thread by default) seem to not trigger reportException: method.
//NOTE: So, we execute sendEvent: in a try-catch block to catch them.
@try
{
[super sendEvent:theEvent];
}
@catch (NSException *exception)
{
[self reportException:exception];
}
}
@end
#endif