]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/ui/transaction_list/TransactionListViewModel.java
transaction load: replace the list atomically
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / ui / transaction_list / TransactionListViewModel.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.ui.transaction_list;
19
20 import android.arch.lifecycle.ViewModel;
21 import android.content.Context;
22 import android.database.Cursor;
23 import android.database.sqlite.SQLiteDatabase;
24
25 import net.ktnx.mobileledger.model.LedgerTransaction;
26 import net.ktnx.mobileledger.utils.MLDB;
27
28 import java.util.ArrayList;
29 import java.util.List;
30
31 public class TransactionListViewModel extends ViewModel {
32
33     private List<LedgerTransaction> transactions;
34
35     public List<LedgerTransaction> getTransactions(Context context) {
36         if (transactions == null) {
37             transactions = new ArrayList<>();
38             reloadTransactions(context);
39         }
40
41         return transactions;
42     }
43     public void reloadTransactions(Context context) {
44         ArrayList<LedgerTransaction> newList = new ArrayList<>();
45
46         String sql = "SELECT id FROM transactions ORDER BY date desc, id desc";
47
48         try (SQLiteDatabase db = MLDB.getReadableDatabase(context)) {
49             try (Cursor cursor = db.rawQuery(sql, null)) {
50                 while (cursor.moveToNext()) {
51                     newList.add(new LedgerTransaction(cursor.getInt(0)));
52                 }
53                 transactions = newList;
54             }
55         }
56
57     }
58 }