Cocos2dx Android崩溃捕获并且通过c++发送给服务器

Cocos2dx Android崩溃捕获并且通过c++发送给服务器

1.可以通过第三方的sdk 进行bug分析,友盟 腾讯的bugly 等等

2.google breakpad   等等  http://blog.csdn.net/wangbin_jxust/article/details/41253499

这里是通过 Android自带的UncaughtExceptionHandler 自己处理的

参考文档:

http://www.cnblogs.com/lee0oo0/archive/2012/11/28/2793052.html

http://blog.csdn.net/johnwcheung/article/details/53180370 ---这个为主

https://segmentfault.com/a/1190000000718954

http://blog.csdn.net/i_lovefish/article/details/17719081

下面这个不错,可以尝试一发
http://www.cnblogs.com/lancidie/archive/2013/04/13/3019349.html#

 java调用c++参考文档:

1.https://my.oschina.net/minglic/blog/186869

2、cocos2dx 源码中很多例子,你可以搜索“ static native ” 进行查找,看看源码

新建捕获类

位置:/frameworks/runtime-src/proj.android/src/org/cocos2dx/lua/XbCrashHandler.java

package org.cocos2dx.lua; //注意这个地方是你项目的!不加报错,谢谢

import java.io.BufferedReader;  
import java.io.File;  
import java.io.FileInputStream;  
import java.io.FileNotFoundException;  
import java.io.FileOutputStream;  
import java.io.IOException;  
import java.io.InputStreamReader;  
import java.io.PrintWriter;  
import java.io.StringWriter;  
import java.io.Writer;  
import java.lang.Thread.UncaughtExceptionHandler;  
import java.lang.reflect.Field;  
import java.text.DateFormat;  
import java.text.SimpleDateFormat;  
import java.util.Date;  
import java.util.HashMap;  
import java.util.Map;  
  
import android.content.Context;  
import android.content.pm.PackageInfo;  
import android.content.pm.PackageManager;  
import android.content.pm.PackageManager.NameNotFoundException;  
import android.os.Build;  
import android.os.Environment;  
import android.os.Looper;  
import android.util.Log;  
import android.widget.Toast;  

import android.content.pm.ApplicationInfo;
      
/**   
 * UncaughtException处理类,当程序发生Uncaught异常的时候,有该类来接管程序,并记录发送错误报告.  
 *  
 *  需要在Application中注册,为了要在程序启动器就监控整个程序。 
 */      
public class XbCrashHandler  implements UncaughtExceptionHandler {      
          
    public static final String TAG = "XbCrashHandler";      
          
    //系统默认的UncaughtException处理类       
    private Thread.UncaughtExceptionHandler mDefaultHandler;      
    //XbCrashHandler实例      
    private static XbCrashHandler instance;  
   //程序的Context对象      
    private Context mContext;      
    //用来存储设备信息和异常信息      
    private Map<String, String> infos = new HashMap<String, String>();      
      
    //用于格式化日期,作为日志文件名的一部分      
    private DateFormat formatter = new SimpleDateFormat("yyyy-MM-dd-HH-mm-ss");      

    //java 调用c++代码,发送错误日志 
    public static native void nativeSaveCrash(String carshText);

    /** 保证只有一个XbCrashHandler实例 */      
    private XbCrashHandler() {}      
      
    /** 获取XbCrashHandler实例 ,单例模式 */      
    public static XbCrashHandler getInstance() {      
        if(instance == null)  
            instance = new XbCrashHandler();     
        return instance;      
    }      
      
    /**   
     * 初始化   
     */      
    public void init(Context context) {      
        mContext = context;      
        //获取系统默认的UncaughtException处理器      
        mDefaultHandler = Thread.getDefaultUncaughtExceptionHandler();      
        //设置该XbCrashHandler为程序的默认处理器      
        Thread.setDefaultUncaughtExceptionHandler(this);      
    }      
      
    /**   
     * 当UncaughtException发生时会转入该函数来处理   
     */      
    @Override      
    public void uncaughtException(Thread thread, Throwable ex) {      
        if (!handleException(ex) && mDefaultHandler != null) {      
            //如果用户没有处理则让系统默认的异常处理器来处理      
            mDefaultHandler.uncaughtException(thread, ex);      
        } else {      
            try {      
                Thread.sleep(3000);      
            } catch (InterruptedException e) {      
                Log.e(TAG, "error : ", e);       
            }      
            //退出程序      
            android.os.Process.killProcess(android.os.Process.myPid());      
            System.exit(1);      
        }      
    }      
      
    /**   
     * 自定义错误处理,收集错误信息 发送错误报告等操作均在此完成.   
     *    
     * @param ex   
     * @return true:如果处理了该异常信息;否则返回false.   
     */      
    private boolean handleException(Throwable ex) {      
        if (ex == null) {      
            return false;      
        }      
        //收集设备参数信息       
        // collectDeviceInfo(mContext);      
          
        //使用Toast来显示异常信息      
        new Thread() {      
            @Override      
            public void run() {      
                Looper.prepare();      
                Toast.makeText(mContext, "很抱歉,程序出现异常,即将退出.", Toast.LENGTH_SHORT).show();      
                Looper.loop();      
            }      
        }.start(); 

        //保存日志文件  或者发送给服务器     
        saveCatchInfoToFile(ex);    

        return true;      
    }      
          
    /**   
     * 收集设备参数信息   
     * @param ctx   
     */      
    public void collectDeviceInfo(Context ctx) {      
        try {      
            PackageManager pm = ctx.getPackageManager();      
            PackageInfo pi = pm.getPackageInfo(ctx.getPackageName(), PackageManager.GET_ACTIVITIES);      
            if (pi != null) {      
                String versionName = pi.versionName == null ? "null" : pi.versionName;      
                String versionCode = pi.versionCode + "";      
                infos.put("versionName", versionName);      
                infos.put("versionCode", versionCode);      
            }      
        } catch (NameNotFoundException e) {      
            Log.e(TAG, "an error occured when collect package info", e);      
        }      
        Field[] fields = Build.class.getDeclaredFields();      
        for (Field field : fields) {      
            try {      
                field.setAccessible(true);      
                infos.put(field.getName(), field.get(null).toString());      
                Log.d(TAG, field.getName() + " : " + field.get(null));      
            } catch (Exception e) {      
                Log.e(TAG, "an error occured when collect crash info", e);      
            }      
        }      
    }      
      
    /**   
     * 保存错误信息到文件中   
     *    
     * @param ex   
     * @return  返回文件名称,便于将文件传送到服务器   
     */    

    private String saveCatchInfoToFile(Throwable ex) {      
              
        StringBuffer sb = new StringBuffer();      
        for (Map.Entry<String, String> entry : infos.entrySet()) {      
            String key = entry.getKey();      
            String value = entry.getValue();      
            sb.append(key + "=" + value + "
");      
        }      
              
        Writer writer = new StringWriter();      
        PrintWriter printWriter = new PrintWriter(writer);      
        ex.printStackTrace(printWriter);      
        Throwable cause = ex.getCause();      
        while (cause != null) {      
            cause.printStackTrace(printWriter);      
            cause = cause.getCause();      
        }      
        printWriter.close();      
        String result = writer.toString();      
        sb.append(result);      
        try {      
            long timestamp = System.currentTimeMillis();      
            String time = formatter.format(new Date());      
          //  String fileName = "crash-" + time + "-" + timestamp + ".log";   
            String fileName = "crash-" + time + ".log";    
            if (Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)) {   
                //放到内存卡指定路径
                final ApplicationInfo applicationInfo = mContext.getApplicationInfo();     
                String path  = Environment.getExternalStorageDirectory() + "/" + applicationInfo.packageName + "/crashlog/";   

                File dir = new File(path);      
                if (!dir.exists()) {      
                    dir.mkdirs();      
                }  

               

                FileOutputStream fos = new FileOutputStream(path + fileName);      
                fos.write(sb.toString().getBytes());    
                //这里把错误日志发送上去  
                //sendCrashLog2PM(path+fileName); //这里可以在Android层直接发送给服务器,但是现在是c++统一处理
                //发送到c++层
                XbCrashHandler.nativeSaveCrash(sb.toString());   
                fos.close();    
            }      
            return fileName;      
        } catch (Exception e) {      
            Log.e(TAG, "an error occured while writing file...", e);      
        }      
        return null;      
    }      
      
    /** 
     * 将捕获的导致崩溃的错误信息发送给开发人员 
     *  
     * 目前只将log日志保存在sdcard 和输出到LogCat中,并未发送给后台。 
     */  
    private void sendCrashLog2PM(String fileName){  
        if(!new File(fileName).exists()){  
            Toast.makeText(mContext, "日志文件不存在!", Toast.LENGTH_SHORT).show();  
            return;  
        }  
        FileInputStream fis = null;  
        BufferedReader reader = null;  
        String s = null;  
        try {  
            fis = new FileInputStream(fileName);  
            reader = new BufferedReader(new InputStreamReader(fis, "GBK"));  
            while(true){  
                s = reader.readLine();  
                if(s == null) break;  
                //由于目前尚未确定以何种方式发送,所以先打出log日志。  
                Log.i("info", s.toString());  
            }  
        } catch (FileNotFoundException e) {  
            e.printStackTrace();  
        } catch (IOException e) {  
            e.printStackTrace();  
        }finally{   // 关闭流  
            try {  
                reader.close();  
                fis.close();  
            } catch (IOException e) {  
                e.printStackTrace();  
            }  
        }  
    }  

}

注意;AndroidManifest.xml需要的读写内存卡权限等,这里不赘述了。

使用:

AppActivity.java 的oncreate里面

        //注册、初始化 异常处理监控,请放到所有的sdk初始化之后
        XbCrashHandler catchHandler = XbCrashHandler.getInstance();  
        catchHandler.init(getApplicationContext());

说明:这里你如果接了第三方的sdk,有可能会影响捕获。

按照上面的,已经可以正常捕获到异常了。以后再完善其他的吧

java调用c++代码

1.XbCrashHandler.java 中添加方法:

 //java 调用c++代码,发送错误日志 
    public static native void nativeSaveCrash(String carshText);

调用nativeSaveCrash 的方法:

 XbCrashHandler.nativeSaveCrash("测试string"); 

 2、c++  JavaActivityUtil.cpp

可以参考Java_org_cocos2dx_lua_AppActivity_XXXXXXX

/**
    Android.mk 里面记得添加
*/
#if CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID

#include "platform/android/jni/JniHelper.h"
#include <jni.h>
#include "cocos2d.h"
#include "CrashHTTP/ExceptionHTTP.h"
using namespace cocos2d;

extern "C" {
  //// Java_包名(java的)_类名_方法名
    JNIEXPORT void Java_org_cocos2dx_lua_XbCrashHandler_nativeSaveCrash(JNIEnv* env, jobject thiz, jstring carshText) {
        std::string  strValue = cocos2d::StringUtils::getStringUTFCharsJNI(env, carshText);
        const char* crashStr = strValue.c_str();
        //todo 调用 http发送的
        CCLog("chedan   carsh log : %s", crashStr);
    }
}

#endif // CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID

注意:

新加的 JavaActivityUtil.cpp 添加到 Android.mk中,我这里直接遍历的文件夹,所以不用手动添加。

把日志写到本地之后需要上传到服务器,然后我们需要遍历本地写的log。

遍历传送门:

http://www.cnblogs.com/zhangfeitao/p/6951598.html

bug:

上传日志的时候发现jsonBox的bug(Android上中文转化字符串的时候,闪退,方式是写到本地然后再从文件中取出(额鹅鹅鹅))。改rapidJson 库

原文地址:https://www.cnblogs.com/zhangfeitao/p/6945336.html