]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/async/UpdateAccountsTask.java
remove the distinction between "readable" and "writable" database connections
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / async / UpdateAccountsTask.java
1 /*
2  * Copyright © 2019 Damyan Ivanov.
3  * This file is part of MoLe.
4  * MoLe 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  * MoLe 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 MoLe. If not, see <https://www.gnu.org/licenses/>.
16  */
17
18 package net.ktnx.mobileledger.async;
19
20 import android.database.Cursor;
21 import android.database.sqlite.SQLiteDatabase;
22 import android.os.AsyncTask;
23 import android.util.Log;
24
25 import net.ktnx.mobileledger.model.Data;
26 import net.ktnx.mobileledger.model.LedgerAccount;
27 import net.ktnx.mobileledger.model.MobileLedgerProfile;
28 import net.ktnx.mobileledger.utils.MLDB;
29
30 import java.util.ArrayList;
31
32 public class UpdateAccountsTask extends AsyncTask<Void, Void, ArrayList<LedgerAccount>> {
33     protected ArrayList<LedgerAccount> doInBackground(Void... params) {
34         Data.backgroundTaskCount.incrementAndGet();
35         try {
36             MobileLedgerProfile profile = Data.profile.get();
37             String profileUUID = profile.getUuid();
38             boolean onlyStarred = Data.optShowOnlyStarred.get();
39             ArrayList<LedgerAccount> newList = new ArrayList<>();
40
41             String sql = "SELECT a.name from accounts a WHERE a.profile = ?";
42             if (onlyStarred) sql += " AND a.hidden = 0";
43             sql += " ORDER BY a.name";
44
45             SQLiteDatabase db = MLDB.getDatabase();
46             try (Cursor cursor = db.rawQuery(sql, new String[]{profileUUID})) {
47                 while (cursor.moveToNext()) {
48                     final String accName = cursor.getString(0);
49 //                    Log.d("accounts",
50 //                            String.format("Read account '%s' from DB [%s]", accName, profileUUID));
51                     LedgerAccount acc = profile.loadAccount(db, accName);
52                     if (acc.isVisible(newList)) newList.add(acc);
53                 }
54             }
55
56             return newList;
57         }
58         finally {
59             Log.d("UAT", "decrementing background task count");
60             Data.backgroundTaskCount.decrementAndGet();
61         }
62     }
63 }