Android学習能力の統計ログアップロード設計


1つのソフトウェアは1人の子供のようで、绝えず勉强して、探求して、子供が间违いを犯した时、私达は包容することができて、子供が改めない时、彼を获得してもう人に好きではありませんて、甚だしきに至っては彼を舍てます.人の常情の問題は、ソフトウェアを作る私たちが考えなければならない問題でもあります.同じように子供の成長速度や物心がついている程度にも注目しています.
この章では、Androidログのアップロード機能について説明し、子供のエラーをより迅速かつ正確に通知し、子供のエラーを修正するのに役立ちます.
1.ログ統計とログ記憶
    public static void record(Context context, String ex) {
        if (context == null) {
            return;
        }
        PrintStream printStream = null;
        ByteArrayOutputStream bos = null;

        try {
            bos = new ByteArrayOutputStream(256);
            printStream = new PrintStream(bos);
            printStream.print(ex);
            JSONObject createJson = createJson(context, new String(bos.toByteArray()));//(1) json
            DBManager.getInstance(context).addCrashLog(createJson.toString());//(2)      
            Prefs.setPrefBoolean(PrefsContants.IS_NEEDED_UPLOAD, true));
        } catch (Exception e) {
            Log.e("CrashUploadUtils", "writeLog", e);
        } finally {
            closeQuietly(printStream);//(3)
            closeQuietly(bos);
        }
    }

上記のコードから、データ文字列を統計記録に転送した後、まずjsonデータを作成し、ステップ(1)のようにします.次に、ステップ(2)のようにデータベースにデータを格納する.最後に、手順3のようにデータ・ストリームを閉じます.
(1)jsonデータ作成
    private static JSONObject createJson(Context context, String log) {
        JSONObject object = null;
        try {
            object = new JSONObject();
            object.put("type", "crash");
            JSONObject data = new JSONObject();
            data.put("log", log);
            data.put("uk", AccountManager.getUK(context));
            data.put("version", IMManager.getVersion());
            data.put("trigger_id", Utility.getTriggerId(context));
            if (!TextUtils.isEmpty(android.os.Build.VERSION.RELEASE)) {
                data.put("os", android.os.Build.VERSION.RELEASE);
            }
            if (!TextUtils.isEmpty(android.os.Build.MODEL)) {
                data.put("device_model","mode" + android.os.Build.MODEL);
            }
            if (!TextUtils.isEmpty(android.os.Build.MANUFACTURER)) {
                data.put("manufacture",android.os.Build.MANUFACTURER);
            }
            object.put("data", data);
            object.put("ts", System.currentTimeMillis());

        } catch (JSONException e) {
            Log.e("CrashUploadUtils", "createJson", e);
        }

        return object;
    }

内容はここでは無視できますが、自分で入れればいいです.
(2)データベースの追加
    public void addCrashLog(String log) {
        synchronized (mSyncLock) {
            ContentValues values = new ContentValues();
            values.put(CrashLogColumns.COLUMN_COTENT, log);
            insert(TableDefine.DB_TABLE_CRASH_LOG, values);
        }
    }

その中でinsert関数は、読者が自分で書きます.(3)データストリームを閉じる
    private static void closeQuietly(OutputStream os) {
        if (os != null) {
            try {
                os.close();
            } catch (IOException e) {
                Log.e("CrashUploadUtils", "closeQuietly", e);
            }
        }
    }

ログの統計と情報のストレージを完了しました.ログのストレージは、データベースを追加するプロセスを参照してください.
2.ログアップロード
ログのアップロードはこの機能の肝心なステップで、関連する問題は:どのようにアップロードして、いつアップロードして、どんなネット環境の下でアップロードしますか?ログアップロード機能
    private static void upLoad(Context context) {
        Pair<Long, JSONArray> log = getCrashLog(context);//1          
        if (log == null || log.first < 0) {
            return;
        }
        StringBuilder builder = new StringBuilder();
        builder.append("device_id=" + Utility.getDeviceType(context));
        builder.append("&appid=" + AccountManager.getAppid(context));
        builder.append("&statistic=" + log.second.toString());
        String jsonResult = null;
        try {//2      
            jsonResult = HttpUtility.doUploadPost(url, builder.toString().getBytes("utf-8"));
        } catch (UnsupportedEncodingException e) {
            Log.e("CrashUploadUtils", "upLoadCrash UnsupportedEncodingException", e);
        }
        if (jsonResult == null) {
            Log.e("CrashUploadUtils", "upload crash log failed!!");
            return;
        }

        try {
            JSONObject jsonObject = new JSONObject(jsonResult);
            int errorCode = jsonObject.optInt("err_code");
            String msg = jsonObject.optString("msg");//                ,         
            if (errorCode == OK) {//3        
                int result = DBManager.getInstance(context).deleteLogBeforeId(log.first);
                if (result > 0) {//4      
                    updateUploadTime(context, System.currentTimeMillis());
                }
            }
        } catch (JSONException e) {
            Log.e("CrashUploadUtils", "upLoadCrash JSONException", e);
        }
    }

(1)データベース内の異常情報の取得
    public static Pair<Long, JSONArray> getCrashLog(Context context) {
        return DBManager.getInstance(context).getLog();
    }

    public Pair<Long, JSONArray> getLog() {
        synchronized (mSyncLock) {
            CrashLogParse parse = new CrashLogParse();
            query(TableDefine.DB_TABLE_CRASH_LOG, null, null, null, null, null, CrashLogColumns._ID + " asc ", " 10 ",
                    parse);
            return parse.getResult();
        }
    }

    class CrashLogParse implements CursorParse {
        Pair<Long, JSONArray> result = null;

        @Override
        public void parseCursor(Cursor cursor) {
            if (cursor != null) {
                long maxid = -1;
                long id = -1;
                String log = null;
                JSONArray array = null;
                try {
                    array = new JSONArray();
                    while (cursor.moveToNext()) {
                        id = cursor.getLong(cursor.getColumnIndex(CrashLogColumns._ID));
                        log = cursor.getString(cursor.getColumnIndex(CrashLogColumns.COLUMN_COTENT));
                        if (id > maxid) {
                            maxid = id;
                        }
                        array.put(new JSONObject(log));
                    }
                } catch (JSONException e) {
                    array = null;
                    e.printStackTrace();
                }
                if (array != null) {
                    result = new Pair<Long, JSONArray>(maxid, array);
                }
            }
        }

        @Override
        public Pair<Long, JSONArray> getResult() {
            return result;
        }

    }

対応するデータベース情報が取得され、すべてのレコードと最大id値が取得されます.(2)異常情報のアップロード
    public static String doUploadPost(String httpUrl, byte[] byteToUpload) {
        if (byteToUpload == null || byteToUpload.length < 0) {
            return null;
        }
        URL url;
        HttpURLConnection httpUrlConnection = null;
        try {
            url = new URL(httpUrl);
            httpUrlConnection = (HttpURLConnection) url.openConnection();
            httpUrlConnection.setRequestMethod("POST");
            httpUrlConnection.setDoInput(true);
            // Post mode
            httpUrlConnection.setDoOutput(true);
            httpUrlConnection.setConnectTimeout(30 * 1000);
            httpUrlConnection.setReadTimeout(30 * 1000);
            httpUrlConnection.setUseCaches(false);
            OutputStream outputStream = httpUrlConnection.getOutputStream();
            outputStream.write(byteToUpload);
            outputStream.flush();
            outputStream.close();
            // while (offset < byteLength) {
            // bufferOutStream.write(byteToUpload);
            // offset += length;
            // }
            int response = httpUrlConnection.getResponseCode();
            if (Constants.isDebugMode()) {
                Log.e("HttpUtility", "upload response:" + response);
            }
            if (response != HttpURLConnection.HTTP_OK) {
                return null;
            }
            return dealResponseResult(httpUrlConnection.getInputStream());
        } catch (MalformedURLException e) {
            Log.e("HttpUtility", "MalformedURLException doUploadPost", e);
        } catch (IOException e) {
            Log.e("HttpUtility", "IOException doUploadPost", e);
        } catch (Exception e) {
            Log.e("HttpUtility", "Exception doUploadPost", e);
        } finally {
            if (httpUrlConnection != null) {
                httpUrlConnection.disconnect();
            }
        }

        return null;
    }

    /** * @param inputStream * @return */
    public static String dealResponseResult(InputStream inputStream) {
        String resultData = null; //       
        ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
        byte[] data = new byte[1024];
        int len = 0;
        int offset = 0;
        try {
            while ((len = inputStream.read(data)) != -1) {
                byteArrayOutputStream.write(data, offset, len);
                offset += len;
            }
            resultData = new String(byteArrayOutputStream.toByteArray());
            if (Constants.isDebugMode()) {
                Log.d("HttpUtility", "resultData:" + resultData);
            }
        } catch (IOException e) {
            Log.e("HttpUtility", "IOException dealResponseResult", e);
        }
        return resultData;
    }

(3)アップロードした情報を削除する
    public int deleteLogBeforeId(long id) {
        synchronized (mSyncLock) {
            return delete(TableDefine.DB_TABLE_CRASH_LOG, CrashLogColumns._ID + " <=?",
                    new String[] { String.valueOf(id) });
        }
    }

(4)アップロード時間の更新アップロード時間はアップロード間隔が定義されており、アップロードがあまり頻繁ではなく、サービスにストレスを与えるため、基本的には数分程度で、ここで時間は自分で設定できる
    private static boolean updateUploadTime(Context context, long time) {
        if (time > lastUpdateTime) {
            lastUpdateTime = time;
            return Utility.writeLongData(context, key, lastUpdateTime);
        }
        return false;

    }

    private static long getUpdateTime(Context context) {
        if (lastUpdateTime == -1) {
            lastUpdateTime = Utility.readLongData(context, key, -1);
        }
        return lastUpdateTime;
    }

    public static boolean isNeedToUpload(Context context, long time) {
        return System.currentTimeMillis() - getUpdateTime(context) > time;
    }

(5)アップロード開始
    public static void statUpload(final Context context) {
        if(!Prefs.getPrefBoolean(PrefsContants.IS_NEEDED_UPLOAD, false))){
            return;
        }
        if(!isNeedToUpload){
            return;
        }
        new Thread(new Runnable() {
            @Override
            public void run() {
                upLoadCrash(context);
            }
        }).start();
    }

後で、appが犯したエラーをサービス側でログを表示することで迅速に変更できます.