RunLoop总结:RunLoop的应用场景(五)
runloop总结:runloop的应用场景(五)
今天要介绍的runloop应用场景感觉很酷炫,我们可能不常用到,但是对于做crash 收集的 sdk可能会用得比较频繁吧。相比关于runloop 可以让应用起死回生,大家都听说过,可是怎么实现呢?今天我就来实际试验一下。
资料
漫谈ios crash收集框架(简单介绍了下ios 中crash 的一些知识。)ios程序异常crash捕获与拦截 (我下面的demo 就是在这部分代码上做了简化,以方便理解)原理
ios应用崩溃,常见的崩溃信息有exc_bad_access、
sigabrt xxxxxxx,而这里分为两种情况,一种是未被捕获的异常,我们只需要添加一个回调函数,并在应用启动时调用一个 api即可;另一种是直接发送的
sigabrt xxxxxxx,这里我们也需要监听各种信号,然后添加回调函数。
针对情况一,其实我们都见过。我们在收集app崩溃信息时,需要添加一个函数
nssetuncaughtexceptionhandler(&handleexception),参数 是一个回调函数,在回调函数里获取到异常的原因,当前的堆栈信息等保存到 dump文件,然后供下次打开app时上传到服务器。
其实,我们在handleexception回调函数中,可以获取到当前的runloop,然后获取该runloop中的所有mode,手动运行一遍。
针对情况二,首先针对多种要捕获的信号,设置好回调函数,然后也是在回调函数中获取runloop,然后拿到所有的mode,手动运行一遍。
代码实现
代码实现
第一步,我创建了一个处理类,并添加一个单例方法。(代码见末尾的demo)
第二步,在单例中对象实例化时,添加 异常捕获 和 signal 处理的 回调函数。
- (void)setcatchexceptionhandler { // 1.捕获一些异常导致的崩溃 nssetuncaughtexceptionhandler(&handleexception); // 2.捕获非异常情况,通过signal传递出来的崩溃 signal(sigabrt, signalhandler); signal(sigill, signalhandler); signal(sigsegv, signalhandler); signal(sigfpe, signalhandler); signal(sigbus, signalhandler); signal(sigpipe, signalhandler); }
第三步,分别实现 异常捕获的回调 和 signal 的回调。
void handleexception(nsexception *exception) { // 获取异常的堆栈信息 nsarray *callstack = [exception callstacksymbols]; nsmutabledictionary *userinfo = [nsmutabledictionary dictionary]; [userinfo setobject:callstack forkey:kcaughtexceptionstackinfokey]; crashhandler *crashobject = [crashhandler sharedinstance]; nsexception *customexception = [nsexception exceptionwithname:[exception name] reason:[exception reason] userinfo:userinfo]; [crashobject performselectoronmainthread:@selector(handleexception:) withobject:customexception waituntildone:yes]; } void signalhandler(int signal) { // 这种情况的崩溃信息,就另某他法来捕获吧 nsarray *callstack = [crashhandler backtrace]; nslog(@"信号捕获崩溃,堆栈信息:%@",callstack); crashhandler *crashobject = [crashhandler sharedinstance]; nsexception *customexception = [nsexception exceptionwithname:ksignalexceptionname reason:[nsstring stringwithformat:nslocalizedstring(@"signal %d was raised.", nil),signal] userinfo:@{ksignalkey:[nsnumber numberwithint:signal]}]; [crashobject performselectoronmainthread:@selector(handleexception:) withobject:customexception waituntildone:yes]; }
第四步,添加让应用起死回生的 runloop 代码
- (void)handleexception:(nsexception *)exception { nsstring *message = [nsstring stringwithformat:@"崩溃原因如下:\n%@\n%@", [exception reason], [[exception userinfo] objectforkey:kcaughtexceptionstackinfokey]]; nslog(@"%@",message); uialertview *alert = [[uialertview alloc] initwithtitle:@"程序崩溃了" message:@"如果你能让程序起死回生,那你的决定是?" delegate:self cancelbuttontitle:@"崩就蹦吧" otherbuttontitles:@"起死回生", nil]; [alert show]; cfrunloopref runloop = cfrunloopgetcurrent(); cfarrayref allmodes = cfrunloopcopyallmodes(runloop); while (!ignore) { for (nsstring *mode in (__bridge nsarray *)allmodes) { cfrunloopruninmode((cfstringref)mode, 0.001, false); } } cfrelease(allmodes); nssetuncaughtexceptionhandler(null); signal(sigabrt, sig_dfl); signal(sigill, sig_dfl); signal(sigsegv, sig_dfl); signal(sigfpe, sig_dfl); signal(sigbus, sig_dfl); signal(sigpipe, sig_dfl); if ([[exception name] isequal:ksignalexceptionname]) { kill(getpid(), [[[exception userinfo] objectforkey:ksignalkey] intvalue]); } else { [exception raise]; } }
因为我这里弄了一个alertview弹窗,所以必须要回到主线程来处理。
实际上,runloop 相关的代码:
cfrunloopref runloop = cfrunloopgetcurrent(); cfarrayref allmodes = cfrunloopcopyallmodes(runloop); while (!ignore) { for (nsstring *mode in (__bridge nsarray *)allmodes) { cfrunloopruninmode((cfstringref)mode, 0.001, false); } } cfrelease(allmodes);
完全可以写在 上面的 handleexception 回调 和 signalhandler回调中。
第五步,写一段会导致崩溃的代码
第五步,写一段会导致崩溃的代码
我是在viewcontroller 中添加了一个点击事件,弄了一个数组越界的bug:
- (void)touchesbegan:(nsset *)touches withevent:(uievent *)event { nsarray *array =[nsarray array]; nslog(@"%@",[array objectatindex:1]); }
动态效果图:
sunnyxx 称之为回光返照,为什么呢?
我再一次点击视图,应用依然还是崩溃了,只能防止第一次崩溃。
我测试了,确实是第二次应用崩溃,未能起死回生。