]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/ui/transaction_list/TransactionListViewModel.java
working transaction list retrieval
[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.database.Cursor;
22 import android.database.sqlite.SQLiteDatabase;
23
24 import net.ktnx.mobileledger.model.LedgerTransaction;
25 import net.ktnx.mobileledger.utils.MobileLedgerDatabase;
26
27 import java.util.ArrayList;
28 import java.util.List;
29
30 public class TransactionListViewModel extends ViewModel {
31
32     private List<LedgerTransaction> transactions;
33
34     public List<LedgerTransaction> getTransactions(MobileLedgerDatabase dbh) {
35         if (transactions == null) {
36             transactions = new ArrayList<>();
37             reloadTransactions(dbh);
38         }
39
40         return transactions;
41     }
42     private void reloadTransactions(MobileLedgerDatabase dbh) {
43         transactions.clear();
44         String sql = "SELECT id, date, description FROM transactions";
45         sql += " ORDER BY date desc, id desc";
46
47         try (SQLiteDatabase db = dbh.getReadableDatabase()) {
48             try (Cursor cursor = db.rawQuery(sql, null)) {
49                 while (cursor.moveToNext()) {
50                     LedgerTransaction tr =
51                             new LedgerTransaction(cursor.getString(0), cursor.getString(1),
52                                     cursor.getString(2));
53                     // TODO: fill accounts and amounts
54                     transactions.add(tr);
55                 }
56             }
57         }
58
59     }
60 }