]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/dao/TransactionDAO.java
speculatively add new transactions to the database and UI list
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / dao / TransactionDAO.java
1 /*
2  * Copyright © 2021 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.dao;
19
20 import android.os.AsyncTask;
21
22 import androidx.annotation.NonNull;
23 import androidx.lifecycle.LiveData;
24 import androidx.room.ColumnInfo;
25 import androidx.room.Dao;
26 import androidx.room.Delete;
27 import androidx.room.Insert;
28 import androidx.room.OnConflictStrategy;
29 import androidx.room.Query;
30 import androidx.room.Update;
31
32 import net.ktnx.mobileledger.db.Account;
33 import net.ktnx.mobileledger.db.AccountValue;
34 import net.ktnx.mobileledger.db.DB;
35 import net.ktnx.mobileledger.db.Transaction;
36 import net.ktnx.mobileledger.db.TransactionAccount;
37 import net.ktnx.mobileledger.db.TransactionWithAccounts;
38 import net.ktnx.mobileledger.model.LedgerAccount;
39 import net.ktnx.mobileledger.utils.Logger;
40 import net.ktnx.mobileledger.utils.Misc;
41
42 import java.util.ArrayList;
43 import java.util.List;
44 import java.util.Locale;
45
46 @Dao
47 public abstract class TransactionDAO extends BaseDAO<Transaction> {
48     static public List<String> unbox(List<DescriptionContainer> list) {
49         ArrayList<String> result = new ArrayList<>(list.size());
50         for (DescriptionContainer item : list) {
51             result.add(item.description);
52         }
53
54         return result;
55     }
56     @Insert(onConflict = OnConflictStrategy.REPLACE)
57     public abstract long insertSync(Transaction item);
58
59     @Update
60     public abstract void updateSync(Transaction item);
61
62     @Delete
63     public abstract void deleteSync(Transaction item);
64
65     @Delete
66     public abstract void deleteSync(Transaction... items);
67
68     @Delete
69     public abstract void deleteSync(List<Transaction> items);
70
71     @Query("SELECT * FROM transactions WHERE id = :id")
72     public abstract LiveData<Transaction> getById(long id);
73
74     @androidx.room.Transaction
75     @Query("SELECT * FROM transactions WHERE id = :transactionId")
76     public abstract LiveData<TransactionWithAccounts> getByIdWithAccounts(long transactionId);
77
78     @androidx.room.Transaction
79     @Query("SELECT * FROM transactions WHERE id = :transactionId")
80     public abstract TransactionWithAccounts getByIdWithAccountsSync(long transactionId);
81
82     @Query("SELECT DISTINCT description, CASE WHEN description_upper LIKE :term||'%%' THEN 1 " +
83            "               WHEN description_upper LIKE '%%:'||:term||'%%' THEN 2 " +
84            "               WHEN description_upper LIKE '%% '||:term||'%%' THEN 3 " +
85            "               ELSE 9 END AS ordering " + "FROM description_history " +
86            "WHERE description_upper LIKE '%%'||:term||'%%' " +
87            "ORDER BY ordering, description_upper, rowid ")
88     public abstract List<DescriptionContainer> lookupDescriptionSync(@NonNull String term);
89
90     @androidx.room.Transaction
91     @Query("SELECT * from transactions WHERE description = :description ORDER BY year desc, month" +
92            " desc, day desc LIMIT 1")
93     public abstract TransactionWithAccounts getFirstByDescriptionSync(@NonNull String description);
94
95     @androidx.room.Transaction
96     @Query("SELECT tr.id, tr.profile_id, tr.ledger_id, tr.description, tr.data_hash, tr.comment, " +
97            "tr.year, tr.month, tr.day, tr.generation from transactions tr JOIN " +
98            "transaction_accounts t_a ON t_a.transaction_id = tr.id WHERE tr.description = " +
99            ":description AND t_a.account_name LIKE '%'||:accountTerm||'%' ORDER BY year desc, " +
100            "month desc, day desc, tr.ledger_id desc LIMIT 1")
101     public abstract TransactionWithAccounts getFirstByDescriptionHavingAccountSync(
102             @NonNull String description, @NonNull String accountTerm);
103
104     @Query("SELECT * from transactions WHERE profile_id = :profileId")
105     public abstract List<Transaction> getAllForProfileUnorderedSync(long profileId);
106
107     @Query("SELECT generation FROM transactions WHERE profile_id = :profileId LIMIT 1")
108     protected abstract TransactionGenerationContainer getGenerationPOJOSync(long profileId);
109
110     @androidx.room.Transaction
111     @Query("SELECT * FROM transactions WHERE profile_id = :profileId ORDER BY year " +
112            " desc, month desc, day desc, ledger_id desc")
113     public abstract List<TransactionWithAccounts> getAllWithAccountsSync(long profileId);
114
115     @androidx.room.Transaction
116     @Query("SELECT * FROM transactions WHERE profile_id = :profileId ORDER BY year " +
117            " desc, month desc, day desc, ledger_id desc")
118     public abstract LiveData<List<TransactionWithAccounts>> getAllWithAccounts(long profileId);
119
120     @androidx.room.Transaction
121     @Query("SELECT distinct(tr.id), tr.ledger_id, tr.profile_id, tr.data_hash, tr.year, tr.month," +
122            " tr.day, tr.description, tr.comment, tr.generation FROM transactions tr JOIN " +
123            "transaction_accounts ta ON ta.transaction_id=tr.id WHERE ta.account_name LIKE " +
124            ":accountName||'%' AND ta.amount <> 0 AND tr.profile_id = :profileId ORDER BY tr.year " +
125            "desc, tr.month desc, tr.day desc, tr.ledger_id desc")
126     public abstract List<TransactionWithAccounts> getAllWithAccountsFilteredSync(long profileId,
127                                                                                  String accountName);
128
129     @androidx.room.Transaction
130     @Query("SELECT distinct(tr.id), tr.ledger_id, tr.profile_id, tr.data_hash, tr.year, tr.month," +
131            " tr.day, tr.description, tr.comment, tr.generation FROM transactions tr JOIN " +
132            "transaction_accounts ta ON ta.transaction_id=tr.id WHERE ta.account_name LIKE " +
133            ":accountName||'%' AND ta.amount <> 0 AND tr.profile_id = :profileId ORDER BY tr.year " +
134            "desc, tr.month desc, tr.day desc, tr.ledger_id desc")
135     public abstract LiveData<List<TransactionWithAccounts>> getAllWithAccountsFiltered(
136             long profileId, String accountName);
137
138     @Query("DELETE FROM transactions WHERE profile_id = :profileId AND generation <> " +
139            ":currentGeneration")
140     public abstract int purgeOldTransactionsSync(long profileId, long currentGeneration);
141
142     @Query("DELETE FROM transaction_accounts WHERE EXISTS (SELECT 1 FROM transactions tr WHERE tr" +
143            ".id=transaction_accounts.transaction_id AND tr.profile_id=:profileId) AND generation " +
144            "<> :currentGeneration")
145     public abstract int purgeOldTransactionAccountsSync(long profileId, long currentGeneration);
146
147     @Query("DELETE FROM transactions WHERE profile_id = :profileId")
148     public abstract int deleteAllSync(long profileId);
149
150     @Query("SELECT * FROM transactions where profile_id = :profileId AND ledger_id = :ledgerId")
151     public abstract Transaction getByLedgerId(long profileId, long ledgerId);
152
153     @Query("UPDATE transactions SET generation = :newGeneration WHERE id = :transactionId")
154     public abstract int updateGeneration(long transactionId, long newGeneration);
155
156     @Query("UPDATE transaction_accounts SET generation = :newGeneration WHERE transaction_id = " +
157            ":transactionId")
158     public abstract int updateAccountsGeneration(long transactionId, long newGeneration);
159
160     @Query("SELECT max(ledger_id) as ledger_id FROM transactions WHERE profile_id = :profileId")
161     public abstract LedgerIdContainer getMaxLedgerIdPOJOSync(long profileId);
162     @androidx.room.Transaction
163     public void updateGenerationWithAccounts(long transactionId, long newGeneration) {
164         updateGeneration(transactionId, newGeneration);
165         updateAccountsGeneration(transactionId, newGeneration);
166     }
167     public long getGenerationSync(long profileId) {
168         TransactionGenerationContainer result = getGenerationPOJOSync(profileId);
169
170         if (result == null)
171             return 0;
172         return result.generation;
173     }
174     public long getMaxLedgerIdSync(long profileId) {
175         LedgerIdContainer result = getMaxLedgerIdPOJOSync(profileId);
176
177         if (result == null)
178             return 0;
179         return result.ledgerId;
180     }
181     @androidx.room.Transaction
182     public void storeTransactionsSync(List<TransactionWithAccounts> list, long profileId) {
183         long generation = getGenerationSync(profileId) + 1;
184
185         for (TransactionWithAccounts tr : list) {
186             tr.transaction.setGeneration(generation);
187             tr.transaction.setProfileId(profileId);
188
189             storeSync(tr);
190         }
191
192         Logger.debug("Transaction", "Purging old transactions");
193         int removed = purgeOldTransactionsSync(profileId, generation);
194         Logger.debug("Transaction", String.format(Locale.ROOT, "Purged %d transactions", removed));
195
196         removed = purgeOldTransactionAccountsSync(profileId, generation);
197         Logger.debug("Transaction",
198                 String.format(Locale.ROOT, "Purged %d transaction accounts", removed));
199     }
200     @androidx.room.Transaction
201     void storeSync(TransactionWithAccounts rec) {
202         TransactionAccountDAO trAccDao = DB.get()
203                                            .getTransactionAccountDAO();
204
205         Transaction transaction = rec.transaction;
206         Transaction existing = getByLedgerId(transaction.getProfileId(), transaction.getLedgerId());
207         if (existing != null) {
208             if (Misc.equalStrings(transaction.getDataHash(), existing.getDataHash())) {
209                 updateGenerationWithAccounts(existing.getId(), rec.transaction.getGeneration());
210                 return;
211             }
212
213             existing.copyDataFrom(transaction);
214             updateSync(existing);
215
216             transaction = existing;
217         }
218         else
219             transaction.setId(insertSync(transaction));
220
221         for (TransactionAccount trAcc : rec.accounts) {
222             trAcc.setTransactionId(transaction.getId());
223             trAcc.setGeneration(transaction.getGeneration());
224             TransactionAccount existingAcc =
225                     trAccDao.getByOrderNoSync(trAcc.getTransactionId(), trAcc.getOrderNo());
226             if (existingAcc != null) {
227                 existingAcc.copyDataFrom(trAcc);
228                 trAccDao.updateSync(existingAcc);
229             }
230             else
231                 trAcc.setId(trAccDao.insertSync(trAcc));
232         }
233     }
234     public void storeLast(TransactionWithAccounts rec) {
235         AsyncTask.execute(() -> appendSync(rec));
236     }
237     @androidx.room.Transaction
238     public void appendSync(TransactionWithAccounts rec) {
239         TransactionAccountDAO trAccDao = DB.get()
240                                            .getTransactionAccountDAO();
241         AccountDAO accDao = DB.get()
242                               .getAccountDAO();
243         AccountValueDAO accValDao = DB.get()
244                                       .getAccountValueDAO();
245
246         Transaction transaction = rec.transaction;
247         final long profileId = transaction.getProfileId();
248         transaction.setGeneration(getGenerationSync(profileId));
249         transaction.setLedgerId(getMaxLedgerIdSync(profileId) + 1);
250         transaction.setId(insertSync(transaction));
251
252         for (TransactionAccount trAcc : rec.accounts) {
253             trAcc.setTransactionId(transaction.getId());
254             trAcc.setGeneration(transaction.getGeneration());
255             trAcc.setId(trAccDao.insertSync(trAcc));
256
257             Account acc = accDao.getByNameSync(profileId, trAcc.getAccountName());
258             if (acc == null) {
259                 acc = new Account();
260                 acc.setProfileId(profileId);
261                 acc.setName(trAcc.getAccountName());
262                 acc.setNameUpper(acc.getName()
263                                     .toUpperCase());
264                 acc.setParentName(LedgerAccount.extractParentName(acc.getName()));
265                 acc.setLevel(LedgerAccount.determineLevel(acc.getName()));
266                 acc.setGeneration(trAcc.getGeneration());
267
268                 acc.setId(accDao.insertSync(acc));
269             }
270
271             AccountValue accVal = accValDao.getByCurrencySync(acc.getId(), trAcc.getCurrency());
272             if (accVal == null) {
273                 accVal = new AccountValue();
274                 accVal.setAccountId(acc.getId());
275                 accVal.setGeneration(trAcc.getGeneration());
276                 accVal.setCurrency(trAcc.getCurrency());
277                 accVal.setValue(trAcc.getAmount());
278                 accVal.setId(accValDao.insertSync(accVal));
279             }
280             else {
281                 accVal.setValue(accVal.getValue() + trAcc.getAmount());
282                 accValDao.updateSync(accVal);
283             }
284         }
285     }
286     static class TransactionGenerationContainer {
287         @ColumnInfo
288         long generation;
289         public TransactionGenerationContainer(long generation) {
290             this.generation = generation;
291         }
292     }
293
294     static class LedgerIdContainer {
295         @ColumnInfo(name = "ledger_id")
296         long ledgerId;
297         public LedgerIdContainer(long ledgerId) {
298             this.ledgerId = ledgerId;
299         }
300     }
301
302     static public class DescriptionContainer {
303         @ColumnInfo
304         public String description;
305         @ColumnInfo
306         public int ordering;
307     }
308 }