]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/utils/MLDB.java
d528a37a9ccb9e17dba0c20f21ec3c32abc910c3
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / utils / MLDB.java
1 /*
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.
8  *
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.
13  *
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/>.
16  */
17
18 package net.ktnx.mobileledger.utils;
19
20 import android.annotation.TargetApi;
21 import android.content.Context;
22 import android.content.res.Resources;
23 import android.database.Cursor;
24 import android.database.MatrixCursor;
25 import android.database.SQLException;
26 import android.database.sqlite.SQLiteDatabase;
27 import android.database.sqlite.SQLiteOpenHelper;
28 import android.os.Build;
29 import android.provider.FontsContract;
30 import android.util.Log;
31 import android.widget.AutoCompleteTextView;
32 import android.widget.FilterQueryProvider;
33 import android.widget.SimpleCursorAdapter;
34
35 import java.io.BufferedReader;
36 import java.io.IOException;
37 import java.io.InputStream;
38 import java.io.InputStreamReader;
39 import java.util.Locale;
40
41 import static net.ktnx.mobileledger.utils.MLDB.DatabaseMode.READ;
42 import static net.ktnx.mobileledger.utils.MLDB.DatabaseMode.WRITE;
43
44 public final class MLDB {
45     public enum DatabaseMode {READ, WRITE}
46
47     public static final String ACCOUNTS_TABLE = "accounts";
48     public static final String DESCRIPTION_HISTORY_TABLE = "description_history";
49     public static final String OPT_TRANSACTION_LIST_STAMP = "transaction_list_last_update";
50     private static MobileLedgerDatabase helperForReading, helperForWriting;
51
52     public static synchronized SQLiteDatabase getDatabase(Context context, DatabaseMode mode) {
53         if (mode == READ) {
54             if (helperForReading == null) helperForReading = new MobileLedgerDatabase(context);
55             return helperForReading.getReadableDatabase();
56         }
57         else {
58             if (helperForWriting == null) helperForWriting = new MobileLedgerDatabase(context);
59             return helperForWriting.getWritableDatabase();
60         }
61     }
62     public static SQLiteDatabase getReadableDatabase(Context context) {
63         return getDatabase(context.getApplicationContext(), READ);
64     }
65     public static SQLiteDatabase getWritableDatabase(Context context) {
66         return getDatabase(context.getApplicationContext(), WRITE);
67     }
68     static public int get_option_value(Context context, String name, int default_value) {
69         String s = get_option_value(context, name, String.valueOf(default_value));
70         try {
71             return Integer.parseInt(s);
72         }
73         catch (Exception e) {
74             Log.d("db", "returning default int value of " + name, e);
75             return default_value;
76         }
77     }
78
79     static public long get_option_value(Context context, String name, long default_value) {
80         String s = get_option_value(context, name, String.valueOf(default_value));
81         try {
82             return Long.parseLong(s);
83         }
84         catch (Exception e) {
85             Log.d("db", "returning default long value of " + name, e);
86             return default_value;
87         }
88     }
89
90     static public String get_option_value(Context context, String name, String default_value) {
91         Log.d("db", "about to fetch option " + name);
92         try (SQLiteDatabase db = getReadableDatabase(context)) {
93             try (Cursor cursor = db
94                     .rawQuery("select value from options where name=?", new String[]{name}))
95             {
96                 if (cursor.moveToFirst()) {
97                     String result = cursor.getString(0);
98
99                     if (result == null) result = default_value;
100
101                     Log.d("db", "option " + name + "=" + result);
102                     return result;
103                 }
104                 else return default_value;
105             }
106             catch (Exception e) {
107                 Log.d("db", "returning default value for " + name, e);
108                 return default_value;
109             }
110         }
111     }
112
113     static public void set_option_value(Context context, String name, String value) {
114         Log.d("db", "setting option " + name + "=" + value);
115         try (SQLiteDatabase db = getWritableDatabase(context)) {
116             db.execSQL("insert or replace into options(name, value) values(?, ?);",
117                     new String[]{name, value});
118         }
119     }
120
121     static public void set_option_value(Context context, String name, long value) {
122         set_option_value(context, name, String.valueOf(value));
123     }
124     @TargetApi(Build.VERSION_CODES.N)
125     public static void hook_autocompletion_adapter(final Context context,
126                                                    final AutoCompleteTextView view,
127                                                    final String table, final String field) {
128         String[] from = {field};
129         int[] to = {android.R.id.text1};
130         SimpleCursorAdapter adapter =
131                 new SimpleCursorAdapter(context, android.R.layout.simple_dropdown_item_1line, null,
132                         from, to, 0);
133         adapter.setStringConversionColumn(1);
134
135         FilterQueryProvider provider = new FilterQueryProvider() {
136             @Override
137             public Cursor runQuery(CharSequence constraint) {
138                 if (constraint == null) return null;
139
140                 String str = constraint.toString().toUpperCase();
141                 Log.d("autocompletion", "Looking for " + str);
142                 String[] col_names = {FontsContract.Columns._ID, field};
143                 MatrixCursor c = new MatrixCursor(col_names);
144
145                 try (SQLiteDatabase db = MLDB.getReadableDatabase(context)) {
146
147                     try (Cursor matches = db.rawQuery(String.format(
148                             "SELECT %s as a, case when %s_upper LIKE ?||'%%' then 1 " +
149                             "WHEN %s_upper LIKE '%%:'||?||'%%' then 2 " +
150                             "WHEN %s_upper LIKE '%% '||?||'%%' then 3 " + "else 9 end " +
151                             "FROM %s " + "WHERE %s_upper LIKE '%%'||?||'%%' " + "ORDER BY 2, 1;",
152                             field, field, field, field, table, field),
153                             new String[]{str, str, str, str}))
154                     {
155                         int i = 0;
156                         while (matches.moveToNext()) {
157                             String match = matches.getString(0);
158                             int order = matches.getInt(1);
159                             Log.d("autocompletion", String.format("match: %s |%d", match, order));
160                             c.newRow().add(i++).add(match);
161                         }
162                     }
163
164                     return c;
165                 }
166
167             }
168         };
169
170         adapter.setFilterQueryProvider(provider);
171
172         view.setAdapter(adapter);
173     }
174 }
175
176 class MobileLedgerDatabase extends SQLiteOpenHelper implements AutoCloseable {
177     public static final String DB_NAME = "mobile-ledger.db";
178     public static final int LATEST_REVISION = 10;
179
180     private final Context mContext;
181
182     public MobileLedgerDatabase(Context context) {
183         super(context, DB_NAME, null, LATEST_REVISION);
184         Log.d("db", "creating helper instance");
185         mContext = context;
186         super.setWriteAheadLoggingEnabled(true);
187     }
188
189     @Override
190     public void onCreate(SQLiteDatabase db) {
191         Log.d("db", "onCreate called");
192         onUpgrade(db, -1, LATEST_REVISION);
193     }
194
195     @Override
196     public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
197         Log.d("db", "onUpgrade called");
198         for (int i = oldVersion + 1; i <= newVersion; i++) applyRevision(db, i);
199     }
200
201     private void applyRevision(SQLiteDatabase db, int rev_no) {
202         final Resources rm = mContext.getResources();
203         String rev_file = String.format(Locale.US, "sql_%d", rev_no);
204
205         int res_id = rm.getIdentifier(rev_file, "raw", mContext.getPackageName());
206         if (res_id == 0) throw new SQLException(
207                 String.format(Locale.US, "No resource for revision %d", rev_no));
208         db.beginTransaction();
209         try (InputStream res = rm.openRawResource(res_id)) {
210             Log.d("db", "Applying revision " + String.valueOf(rev_no));
211             InputStreamReader isr = new InputStreamReader(res);
212             BufferedReader reader = new BufferedReader(isr);
213
214             String line;
215             while ((line = reader.readLine()) != null) {
216                 db.execSQL(line);
217             }
218
219             db.setTransactionSuccessful();
220         }
221         catch (IOException e) {
222             Log.e("db", String.format("Error opening raw resource for revision %d", rev_no));
223             e.printStackTrace();
224         }
225         finally {
226             db.endTransaction();
227         }
228     }
229 }