retrieveTransactionListLegacy(accounts, transactions);
}
- mainModel.updateDisplayedTransactionsFromWeb(transactions);
-
new AccountAndTransactionListSaver(accounts, transactions).start();
Data.lastUpdateDate.postValue(new Date());
+++ /dev/null
-/*
- * Copyright © 2021 Damyan Ivanov.
- * This file is part of MoLe.
- * MoLe is free software: you can distribute it and/or modify it
- * under the term of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your opinion), any later version.
- *
- * MoLe is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License terms for details.
- *
- * You should have received a copy of the GNU General Public License
- * along with MoLe. If not, see <https://www.gnu.org/licenses/>.
- */
-
-package net.ktnx.mobileledger.async;
-
-import android.os.AsyncTask;
-
-import net.ktnx.mobileledger.db.DB;
-import net.ktnx.mobileledger.db.Profile;
-import net.ktnx.mobileledger.db.TransactionWithAccounts;
-import net.ktnx.mobileledger.model.Data;
-import net.ktnx.mobileledger.model.LedgerTransaction;
-import net.ktnx.mobileledger.ui.MainModel;
-import net.ktnx.mobileledger.utils.Logger;
-
-import java.util.ArrayList;
-import java.util.List;
-
-import static net.ktnx.mobileledger.db.Profile.NO_PROFILE_ID;
-import static net.ktnx.mobileledger.utils.Logger.debug;
-
-public class UpdateTransactionsTask extends AsyncTask<MainModel, Void, String> {
- protected String doInBackground(MainModel[] parentModel) {
- final Profile profile = Data.getProfile();
-
- long profileId = (profile == null) ? NO_PROFILE_ID : profile.getId();
- Data.backgroundTaskStarted();
- try {
- Logger.debug("UTT", "Starting DB transaction list retrieval");
-
- final MainModel model = parentModel[0];
- final String accFilter = model.getAccountFilter()
- .getValue();
- final List<TransactionWithAccounts> transactions;
-
- if (profileId == NO_PROFILE_ID)
- transactions = new ArrayList<>();
- else if (accFilter == null) {
- transactions = DB.get()
- .getTransactionDAO()
- .getAllWithAccountsSync(profileId);
- }
- else {
- transactions = DB.get()
- .getTransactionDAO()
- .getAllWithAccountsFilteredSync(profileId, accFilter);
- }
-
- TransactionAccumulator accumulator = new TransactionAccumulator(accFilter);
-
- for (TransactionWithAccounts tr : transactions) {
- if (isCancelled())
- return null;
-
- accumulator.put(new LedgerTransaction(tr));
- }
-
- accumulator.publishResults(model);
-
- debug("UTT", "transaction list value updated");
-
- return null;
- }
- finally {
- Data.backgroundTaskFinished();
- }
- }
-}
@Query("SELECT * FROM transactions WHERE profile_id = :profileId")
public abstract List<TransactionWithAccounts> getAllWithAccountsSync(long profileId);
+ @androidx.room.Transaction
+ @Query("SELECT * FROM transactions WHERE profile_id = :profileId")
+ public abstract LiveData<List<TransactionWithAccounts>> getAllWithAccounts(long profileId);
+
@androidx.room.Transaction
@Query("SELECT distinct(tr.id), tr.ledger_id, tr.profile_id, tr.data_hash, tr.year, tr.month," +
" tr.day, tr.description, tr.comment, tr.generation FROM transactions tr JOIN " +
import net.ktnx.mobileledger.async.RetrieveTransactionsTask;
import net.ktnx.mobileledger.async.TransactionAccumulator;
-import net.ktnx.mobileledger.async.UpdateTransactionsTask;
import net.ktnx.mobileledger.db.Profile;
import net.ktnx.mobileledger.model.Data;
import net.ktnx.mobileledger.model.LedgerAccount;
transient private RetrieveTransactionsTask retrieveTransactionsTask;
transient private Thread displayedAccountsUpdater;
private TransactionsDisplayedFilter displayedTransactionsUpdater;
- public void scheduleTransactionListReload() {
- UpdateTransactionsTask task = new UpdateTransactionsTask();
- task.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, this);
- }
public LiveData<Boolean> getUpdatingFlag() {
return updatingFlag;
}
import androidx.drawerlayout.widget.DrawerLayout;
import androidx.fragment.app.Fragment;
import androidx.fragment.app.FragmentActivity;
+import androidx.lifecycle.LiveData;
+import androidx.lifecycle.MutableLiveData;
import androidx.lifecycle.ViewModelProvider;
import androidx.recyclerview.widget.LinearLayoutManager;
import androidx.recyclerview.widget.RecyclerView;
import net.ktnx.mobileledger.R;
import net.ktnx.mobileledger.async.RetrieveTransactionsTask;
+import net.ktnx.mobileledger.async.TransactionAccumulator;
import net.ktnx.mobileledger.databinding.ActivityMainBinding;
import net.ktnx.mobileledger.db.DB;
import net.ktnx.mobileledger.db.Option;
import net.ktnx.mobileledger.db.Profile;
+import net.ktnx.mobileledger.db.TransactionWithAccounts;
import net.ktnx.mobileledger.model.Data;
+import net.ktnx.mobileledger.model.LedgerTransaction;
import net.ktnx.mobileledger.ui.FabManager;
import net.ktnx.mobileledger.ui.MainModel;
import net.ktnx.mobileledger.ui.account_summary.AccountSummaryFragment;
}
mainModel.getAccountFilter()
- .observe(this, v -> {
+ .observe(this, accFilter -> {
Logger.debug(TAG, "account filter changed, reloading transactions");
- mainModel.scheduleTransactionListReload();
+// mainModel.scheduleTransactionListReload();
+ LiveData<List<TransactionWithAccounts>> transactions =
+ new MutableLiveData<>(new ArrayList<TransactionWithAccounts>());
+ if (profile != null) {
+ if (accFilter == null || accFilter.isEmpty()) {
+ transactions = DB.get()
+ .getTransactionDAO()
+ .getAllWithAccounts(profile.getId());
+ }
+ else {
+ transactions = DB.get()
+ .getTransactionDAO()
+ .getAllWithAccountsFiltered(profile.getId(),
+ accFilter);
+ }
+ }
+
+ transactions.observe(this, list -> {
+ TransactionAccumulator accumulator = new TransactionAccumulator(accFilter);
+
+ for (TransactionWithAccounts tr : list)
+ accumulator.put(new LedgerTransaction(tr));
+
+ accumulator.publishResults(mainModel);
+ });
});
mainModel.stopTransactionsRetrieval();