天天看點

app運作中的crash崩潰異常日志收集

在Android開發中,一個app在推廣後。我們怎麼才能知道這個app運作的如何,有沒有出現崩潰等問題。這也就是app資料監控的一部分。下面的這個就是介紹關于crash日志的收集。這個就是核心代碼:

import java.io.File;
import java.io.FileOutputStream;
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 com.example.lianshou_test.MainActivity;
import com.example.lianshou_test.base.BaseActivity;

import android.app.AlarmManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
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;


public class CrashHandler implements UncaughtExceptionHandler {
	public static final String TAG = "CrashHandler";

	// 系統預設的UncaughtException處理類
	private Thread.UncaughtExceptionHandler mDefaultHandler;
	// CrashHandler執行個體
	private static CrashHandler INSTANCE = new CrashHandler();
	// 程式的Context對象
	private Context mContext;
	// 用來儲存設備資訊和異常資訊
	private Map<String, String> infos = new HashMap<String, String>();

	// 用于格式化日期,作為日志檔案名的一部分
	private DateFormat formatter = new SimpleDateFormat("yyyy-MM-dd-HH-mm-ss");

	/** 保證隻有一個CrashHandler執行個體 */
	private CrashHandler() {
	}

	/** 擷取CrashHandler執行個體 ,單例模式 */
	public static CrashHandler getInstance() {
		return INSTANCE;
	}

	/**
	 * 初始化
	 * 
	 * @param context
	 */
	public void init(Context context) {
		mContext = context;
		// 擷取系統預設的UncaughtException處理器
		mDefaultHandler = Thread.getDefaultUncaughtExceptionHandler();
		// 設定該CrashHandler為程式的預設處理器
		Thread.setDefaultUncaughtExceptionHandler(this);
	}

	/**
	 * 當UncaughtException發生時會轉入該函數來處理
	 */
	@Override
	public void uncaughtException(Thread thread, Throwable ex) {
		if (ex != null && ex.getCause() != null
				&& ex.getCause().getMessage() != null
				&& ex.getCause().getMessage().contains("PDF file is corrupted")) {
			Log.e(TAG, "error : " + ex.getCause().getMessage());
			Looper.prepare();
			Toast.makeText(mContext, "該檔案已經損壞,請檢查!",
					Toast.LENGTH_SHORT).show();
			Looper.loop();
			// 收集裝置參數資訊
			collectDeviceInfo(mContext);
			// 儲存日志檔案
			saveCrashInfo2File(ex);
		} else {
			if (!handleException(ex) && mDefaultHandler != null) {
				// 如果使用者沒有處理則讓系統預設的異常處理器來處理
				mDefaultHandler.uncaughtException(thread, ex);
			} else {
				try {
					Thread.sleep(3000);
				} catch (InterruptedException e) {
					Log.e(TAG, "error : ", e);
				}
				Intent intent = new Intent(mContext.getApplicationContext(),
						MainActivity.class);
				PendingIntent restartIntent = PendingIntent.getActivity(
						mContext.getApplicationContext(), 0, intent,
						Intent.FLAG_ACTIVITY_NEW_TASK);
				// 退出程式
				AlarmManager mgr = (AlarmManager) mContext
						.getSystemService(Context.ALARM_SERVICE);
				mgr.set(AlarmManager.RTC, System.currentTimeMillis() + 1000,
						restartIntent); // 1秒鐘後重新開機應用
				BaseActivity.getInstance().closeAll();
				// 退出程式
				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;
		}
		// 使用Toast來顯示異常資訊
		new Thread() {
			@Override
			public void run() {
				Looper.prepare();
				Toast.makeText(mContext, "很抱歉,程式出現異常,即将退出.",
						Toast.LENGTH_SHORT).show();
				Looper.loop();
			}
		}.start();
		// 收集裝置參數資訊
		collectDeviceInfo(mContext);
		// 儲存日志檔案
		saveCrashInfo2File(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 saveCrashInfo2File(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 + "\n");
		}

		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";
			if (Environment.getExternalStorageState().equals(
					Environment.MEDIA_MOUNTED)) {
				String path = Environment
						.getExternalStorageDirectory().getPath() + "/henry/crash" + "/";
				File dir = new File(path);
				if (!dir.exists()) {
					dir.mkdirs();
				}
				FileOutputStream fos = new FileOutputStream(path + fileName);
				fos.write(sb.toString().getBytes());
				fos.close();
			}
			return fileName;
		} catch (Exception e) {
			Log.e(TAG, "an error occured while writing file...", e);
		}
		return null;
	}
}
           

由于這個是在很多activity中會用到的。是以建議在appliction中進行初始化操作

CrashHandler crashHandler = CrashHandler.getInstance();
crashHandler.init(getApplicationContext());
           

最後。我們在測試時對app制造一點運作崩潰的錯誤。如圖:

app運作中的crash崩潰異常日志收集

這樣就可以了。最後部分就是将這個log檔案上傳到伺服器就ok了(這個上傳的過程大家就自己寫寫。很簡單)。

注意一點就是記得在代碼中寫個定時器定時清理這些log日志檔案。比如一周自動清理一次都可以。