iOS开发,保存crash日志到本地查看或上传服务器
2020-08-31 本文已影响0人
有O梦想的咸鱼
一般在开发中,我们查看线上的崩溃信息,都会集成友盟,腾讯bugly等第三方SDK,这些SDK 可能带来的问题就是并非每一个都会记录到,而且不及时。
苹果自身有一个函数,只要发生了崩溃,这个函数就会被调用,我们通过这个函数就可以吧 捕获到的crash信息存入本地,并上传到服务器,这样可以及时查看,并且可以针对性的加入我们需要上传的额外信息,比如具体用户等等。
代码实现:
创建ZYKCrashHandler类
//在ZYKCrashHandler.h中
#import <Foundation/Foundation.h>
#define UncaughtExceptionManager [ZYKCrashHandler shareInstance]
@interface ZYKCrashHandler : NSObject
+ (instancetype)shareInstance;
- (void)setDefaultHandler;
- (void)collectionExceptionMessage;
- (NSUncaughtExceptionHandler *)getHandler;
//在ZYKCrashHandler.m中实现方法
/ 沙盒的地址
NSString * applicationDocumentsDirectory() {
return [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject];
}
// 崩溃时的回调函数
void UncaughtExceptionHandler(NSException * exception) {
NSArray *stackSymbols = [exception callStackSymbols];
NSString *reason = [exception reason];//原因
NSString *name = [exception name];
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"yyyy:MM:dd:HH:mm:ss"];
NSString *time = [dateFormatter stringFromDate:[NSDate date]]; //时间
NSString *exceptionInfo = [NSString stringWithFormat:@"====异常报告====%@\nException name:%@\nException reason:%@\nException stackSymbols :\n%@",time,name,reason,[stackSymbols componentsJoinedByString:@"\n"]];
NSLog(@"%@",exceptionInfo);
NSString * path = [applicationDocumentsDirectory() stringByAppendingPathComponent:@"Exception.txt"];
// 将一个txt文件写入沙盒
[exceptionInfo writeToFile:path atomically:YES encoding:NSUTF8StringEncoding error:nil];
}
@implementation ZYKCrashHandler
+ (instancetype)shareInstance {
static ZYKCrashHandler *instance;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
instance = [[ZYKCrashHandler alloc]init];
});
return instance;
}
- (void)setDefaultHandler {
NSSetUncaughtExceptionHandler(&UncaughtExceptionHandler);
[self collectionExceptionMessage];
}
// 获取崩溃统计的函数指针
- (NSUncaughtExceptionHandler *)getHandler {
return NSGetUncaughtExceptionHandler();
}
- (void)collectionExceptionMessage {
// 发送崩溃日志
NSString *dataPath = [applicationDocumentsDirectory() stringByAppendingPathComponent:@"Exception.txt"];
NSData *data = [NSData dataWithContentsOfFile:dataPath];
if (data != nil) {
[self sendExceptionLogWithData:data path:dataPath];
}
}
#pragma mark -- 发送崩溃日志
- (void)sendExceptionLogWithData:(NSData *)data path:(NSString *)path {
// AFHTTPSessionManager *manager = [AFHTTPSessionManager manager];
// manager.requestSerializer.timeoutInterval = 10.0f;
// //告诉AFN,接受 text/xml 的数据
// [AFJSONResponseSerializer serializer].acceptableContentTypes = [NSSet setWithObject:@"text/plain"];
// NSString *urlString = @"后台地址";
// [manager POST:urlString parameters:nil constructingBodyWithBlock:^(id<AFMultipartFormData> _Nonnull formData) {
// [formData appendPartWithFileData:data name:@"file" fileName:@"Exception.txt" mimeType:@"txt"];
// } progress:^(NSProgress * _Nonnull uploadProgress) {
//
// } success:^(NSURLSessionDataTask * _Nonnull task, id _Nullable responseObject) {
// // 删除文件
// NSFileManager *fileManger = [NSFileManager defaultManager];
// [fileManger removeItemAtPath:path error:nil];
// } failure:^(NSURLSessionDataTask * _Nullable task, NSError * _Nonnull error) {
// // 发送Bug失败
// }];
}
//在AppDelegate中导入头文件调用即可
//崩溃收集
[UncaughtExceptionManager setDefaultHandler];
开发测试过程中,你可以把崩溃信息展示到textview上,方便查看,上线时,你可以把此文件上传至服务器。