2 * Copyright © 2018 Damyan Ivanov.
3 * This file is part of Mobile-Ledger.
4 * Mobile-Ledger is free software: you can distribute it and/or modify it
5 * under the term of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your opinion), any later version.
9 * Mobile-Ledger is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License terms for details.
14 * You should have received a copy of the GNU General Public License
15 * along with Mobile-Ledger. If not, see <https://www.gnu.org/licenses/>.
18 package net.ktnx.mobileledger.utils;
20 import android.content.Context;
21 import android.content.res.Resources;
22 import android.database.Cursor;
23 import android.database.SQLException;
24 import android.database.sqlite.SQLiteDatabase;
25 import android.database.sqlite.SQLiteOpenHelper;
26 import android.util.Log;
28 import java.io.BufferedReader;
29 import java.io.IOException;
30 import java.io.InputStream;
31 import java.io.InputStreamReader;
32 import java.util.Locale;
34 import static net.ktnx.mobileledger.utils.MLDB.DatabaseMode.READ;
35 import static net.ktnx.mobileledger.utils.MLDB.DatabaseMode.WRITE;
37 public final class MLDB {
38 public enum DatabaseMode {READ, WRITE}
40 public static final String ACCOUNTS_TABLE = "accounts";
41 public static final String DESCRIPTION_HISTORY_TABLE = "description_history";
42 private static MobileLedgerDatabase helperForReading, helperForWriting;
44 public static synchronized SQLiteDatabase getDatabase(Context context, DatabaseMode mode) {
46 if (helperForReading == null) helperForReading = new MobileLedgerDatabase(context);
47 return helperForReading.getReadableDatabase();
50 if (helperForWriting == null) helperForWriting = new MobileLedgerDatabase(context);
51 return helperForWriting.getWritableDatabase();
54 public static SQLiteDatabase getReadableDatabase(Context context) {
55 return getDatabase(context, READ);
57 public static SQLiteDatabase getWritableDatabase(Context context) {
58 return getDatabase(context, WRITE);
60 static public int get_option_value(Context context, String name, int default_value) {
61 String s = get_option_value(context, name, String.valueOf(default_value));
63 return Integer.parseInt(s);
66 Log.d("db", "returning default int value of " + name, e);
71 static public long get_option_value(Context context, String name, long default_value) {
72 String s = get_option_value(context, name, String.valueOf(default_value));
74 return Long.parseLong(s);
77 Log.d("db", "returning default long value of " + name, e);
82 static public String get_option_value(Context context, String name, String default_value) {
83 Log.d("db", "about to fetch option " + name);
84 try (SQLiteDatabase db = getReadableDatabase(context)) {
85 try (Cursor cursor = db
86 .rawQuery("select value from options where name=?", new String[]{name}))
88 if (cursor.moveToFirst()) {
89 String result = cursor.getString(0);
91 if (result == null) result = default_value;
93 Log.d("db", "option " + name + "=" + result);
96 else return default_value;
99 Log.d("db", "returning default value for " + name, e);
100 return default_value;
105 static public void set_option_value(Context context, String name, String value) {
106 Log.d("db", "setting option " + name + "=" + value);
107 try (SQLiteDatabase db = getWritableDatabase(context)) {
108 db.execSQL("insert or replace into options(name, value) values(?, ?);",
109 new String[]{name, value});
113 static public void set_option_value(Context context, String name, long value) {
114 set_option_value(context, name, String.valueOf(value));
118 class MobileLedgerDatabase extends SQLiteOpenHelper implements AutoCloseable {
119 public static final String DB_NAME = "mobile-ledger.db";
120 public static final int LATEST_REVISION = 8;
122 private final Context mContext;
124 public MobileLedgerDatabase(Context context) {
125 super(context, DB_NAME, null, LATEST_REVISION);
126 Log.d("db", "creating helper instance");
128 super.setWriteAheadLoggingEnabled(true);
132 public void onCreate(SQLiteDatabase db) {
133 Log.d("db", "onCreate called");
134 onUpgrade(db, -1, LATEST_REVISION);
138 public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
139 Log.d("db", "onUpgrade called");
140 for (int i = oldVersion + 1; i <= newVersion; i++) applyRevision(db, i);
143 private void applyRevision(SQLiteDatabase db, int rev_no) {
144 final Resources rm = mContext.getResources();
145 String rev_file = String.format(Locale.US, "sql_%d", rev_no);
147 int res_id = rm.getIdentifier(rev_file, "raw", mContext.getPackageName());
148 if (res_id == 0) throw new SQLException(
149 String.format(Locale.US, "No resource for revision %d", rev_no));
150 db.beginTransaction();
151 try (InputStream res = rm.openRawResource(res_id)) {
152 Log.d("db", "Applying revision " + String.valueOf(rev_no));
153 InputStreamReader isr = new InputStreamReader(res);
154 BufferedReader reader = new BufferedReader(isr);
157 while ((line = reader.readLine()) != null) {
161 db.setTransactionSuccessful();
163 catch (IOException e) {
164 Log.e("db", String.format("Error opening raw resource for revision %d", rev_no));