com.github.michalbednarski.intentslab.providerlab.proxy.ProxyProviderDatabase.java Source code

Java tutorial

Introduction

Here is the source code for com.github.michalbednarski.intentslab.providerlab.proxy.ProxyProviderDatabase.java

Source

/*
 * IntentsLab - Android app for playing with Intents and Binder IPC
 * Copyright (C) 2014 Micha Bednarski
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 *     You should have received a copy of the GNU General Public License
 *     along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

package com.github.michalbednarski.intentslab.providerlab.proxy;

import android.content.ContentValues;
import android.content.Context;
import android.database.ContentObservable;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import android.net.Uri;
import android.os.Binder;
import com.github.michalbednarski.intentslab.Utils;
import org.json.JSONException;
import org.json.JSONObject;

/**
 * Created by mb on 10.09.13.
 */
class ProxyProviderDatabase extends SQLiteOpenHelper {
    private static final int DB_VERSION = 1;

    private static ProxyProviderDatabase sInstance = null;

    public static ProxyProviderDatabase getInstance(Context context) {
        if (sInstance == null) {
            sInstance = new ProxyProviderDatabase(context);
        }
        return sInstance;
    }

    public final ContentObservable mContentObservable = new ContentObservable();

    private ProxyProviderDatabase(Context context) {
        super(context.getApplicationContext(), "ProxyProviderDatabase", null, DB_VERSION);
    }

    @Override
    public void onCreate(SQLiteDatabase db) {
        onUpgrade(db, 0, DB_VERSION);
    }

    @Override
    public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
        switch (oldVersion) {
        case 0:
            db.execSQL("CREATE TABLE operations (" + "_id INTEGER PRIMARY KEY AUTOINCREMENT,"
                    + "method INTEGER NOT NULL," + "uri TEXT NOT NULL," + "result," + /* no type */
                    "others TEXT," + /* JSON */
                    "exception TEXT," + "uid INTEGER NOT NULL" + ")");
            // case 1: // current version
        }
    }

    @Override
    public void onDowngrade(SQLiteDatabase db, int oldVersion, int newVersion) {
        /* Do nothing */ }

    class OperationLogEntryBuilder {
        private ContentValues mContentValues = new ContentValues();
        private JSONObject mOthers = new JSONObject();

        OperationLogEntryBuilder(int method, Uri unwrappedUri) {
            mContentValues.put("method", method);
            mContentValues.put("uri", unwrappedUri.toString());
        }

        private OperationLogEntryBuilder setOtherValue(String name, String value) {
            try {
                mOthers.put("name", value);
            } catch (JSONException e) {
                throw new RuntimeException(e);
            }
            return this;
        }

        private OperationLogEntryBuilder setOtherValue(String name, String[] value) {
            try {
                mOthers.put("name", Utils.toJsonArray(value));
            } catch (JSONException e) {
                throw new RuntimeException(e);
            }
            return this;
        }

        OperationLogEntryBuilder setProjection(String[] projection) {
            return setOtherValue("projection", projection);
        }

        OperationLogEntryBuilder setSelection(String selection) {
            return setOtherValue("selection", selection);
        }

        OperationLogEntryBuilder setSelectionArgs(String[] selectionArgs) {
            return setOtherValue("selectionArgs", selectionArgs);
        }

        OperationLogEntryBuilder setSortOrder(String sortOrder) {
            return setOtherValue("sortOrder", sortOrder);
        }

        OperationLogEntryBuilder setValues(ContentValues values) {
            try {
                mOthers.put("values", Utils.contentValuesToJsonObject(values));
            } catch (JSONException e) {
                throw new RuntimeException(e);
            }
            return this;
        }

        OperationLogEntryBuilder setMode(String mode) {
            return setOtherValue("mode", mode);
        }

        OperationLogEntryBuilder setResult(String result) {
            mContentValues.put("result", result);
            return this;
        }

        OperationLogEntryBuilder setResult(int result) {
            mContentValues.put("result", result);
            return this;
        }

        OperationLogEntryBuilder setException(Throwable e) {
            mContentValues.put("exception", Utils.describeException(e));
            return this;
        }

        void writeToLog() {
            mContentValues.put("uid", Binder.getCallingUid());
            mContentValues.put("others", mOthers.toString());
            getWritableDatabase().insertOrThrow("operations", "uri", mContentValues);
            mContentObservable.dispatchChange(false);
        }
    }

    void clearLog() {
        getWritableDatabase().delete("operations", null, null);
        mContentObservable.dispatchChange(false);
    }
}