]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/dao/TransactionDAO.java
store transaction list in a db transaction
[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 androidx.annotation.NonNull;
21 import androidx.lifecycle.LiveData;
22 import androidx.room.ColumnInfo;
23 import androidx.room.Dao;
24 import androidx.room.Delete;
25 import androidx.room.Insert;
26 import androidx.room.OnConflictStrategy;
27 import androidx.room.Query;
28 import androidx.room.Update;
29
30 import net.ktnx.mobileledger.db.DB;
31 import net.ktnx.mobileledger.db.Transaction;
32 import net.ktnx.mobileledger.db.TransactionAccount;
33 import net.ktnx.mobileledger.db.TransactionWithAccounts;
34 import net.ktnx.mobileledger.utils.Logger;
35 import net.ktnx.mobileledger.utils.Misc;
36
37 import java.util.ArrayList;
38 import java.util.List;
39 import java.util.Locale;
40
41 @Dao
42 public abstract class TransactionDAO extends BaseDAO<Transaction> {
43     static public List<String> unbox(List<DescriptionContainer> list) {
44         ArrayList<String> result = new ArrayList<>(list.size());
45         for (DescriptionContainer item : list) {
46             result.add(item.description);
47         }
48
49         return result;
50     }
51     @Insert(onConflict = OnConflictStrategy.REPLACE)
52     public abstract long insertSync(Transaction item);
53
54     @Update
55     public abstract void updateSync(Transaction item);
56
57     @Delete
58     public abstract void deleteSync(Transaction item);
59
60     @Delete
61     public abstract void deleteSync(Transaction... items);
62
63     @Delete
64     public abstract void deleteSync(List<Transaction> items);
65
66     @Query("SELECT * FROM transactions WHERE id = :id")
67     public abstract LiveData<Transaction> getById(long id);
68
69     @androidx.room.Transaction
70     @Query("SELECT * FROM transactions WHERE id = :transactionId")
71     public abstract LiveData<TransactionWithAccounts> getByIdWithAccounts(long transactionId);
72
73     @androidx.room.Transaction
74     @Query("SELECT * FROM transactions WHERE id = :transactionId")
75     public abstract TransactionWithAccounts getByIdWithAccountsSync(long transactionId);
76
77     @Query("SELECT DISTINCT description, CASE WHEN description_upper LIKE :term||'%%' THEN 1 " +
78            "               WHEN description_upper LIKE '%%:'||:term||'%%' THEN 2 " +
79            "               WHEN description_upper LIKE '%% '||:term||'%%' THEN 3 " +
80            "               ELSE 9 END AS ordering " + "FROM description_history " +
81            "WHERE description_upper LIKE '%%'||:term||'%%' " +
82            "ORDER BY ordering, description_upper, rowid ")
83     public abstract List<DescriptionContainer> lookupDescriptionSync(@NonNull String term);
84
85     @androidx.room.Transaction
86     @Query("SELECT * from transactions WHERE description = :description ORDER BY year desc, month" +
87            " desc, day desc LIMIT 1")
88     public abstract TransactionWithAccounts getFirstByDescriptionSync(@NonNull String description);
89
90     @androidx.room.Transaction
91     @Query("SELECT tr.id, tr.profile_id, tr.ledger_id, tr.description, tr.data_hash, tr.comment, " +
92            "tr.year, tr.month, tr.day, tr.generation from transactions tr JOIN " +
93            "transaction_accounts t_a ON t_a.transaction_id = tr.id WHERE tr.description = " +
94            ":description AND t_a.account_name LIKE '%'||:accountTerm||'%' ORDER BY year desc, " +
95            "month desc, day desc, tr.ledger_id desc LIMIT 1")
96     public abstract TransactionWithAccounts getFirstByDescriptionHavingAccountSync(
97             @NonNull String description, @NonNull String accountTerm);
98
99     @Query("SELECT * from transactions WHERE profile_id = :profileId")
100     public abstract List<Transaction> getAllForProfileUnorderedSync(long profileId);
101
102     @Query("SELECT generation FROM transactions WHERE profile_id = :profileId LIMIT 1")
103     protected abstract TransactionGenerationContainer getGenerationPOJOSync(long profileId);
104
105     @androidx.room.Transaction
106     @Query("SELECT * FROM transactions WHERE profile_id = :profileId")
107     public abstract List<TransactionWithAccounts> getAllWithAccountsSync(long profileId);
108
109     @androidx.room.Transaction
110     @Query("SELECT * FROM transactions WHERE profile_id = :profileId")
111     public abstract LiveData<List<TransactionWithAccounts>> getAllWithAccounts(long profileId);
112
113     @androidx.room.Transaction
114     @Query("SELECT distinct(tr.id), tr.ledger_id, tr.profile_id, tr.data_hash, tr.year, tr.month," +
115            " tr.day, tr.description, tr.comment, tr.generation FROM transactions tr JOIN " +
116            "transaction_accounts ta ON ta.transaction_id=tr.id WHERE ta.account_name LIKE " +
117            ":accountName||'%' AND ta.amount <> 0 AND tr.profile_id = :profileId ORDER BY tr.year " +
118            "desc, tr.month desc, tr.day desc, tr.ledger_id desc")
119     public abstract List<TransactionWithAccounts> getAllWithAccountsFilteredSync(long profileId,
120                                                                                  String accountName);
121
122     @androidx.room.Transaction
123     @Query("SELECT distinct(tr.id), tr.ledger_id, tr.profile_id, tr.data_hash, tr.year, tr.month," +
124            " tr.day, tr.description, tr.comment, tr.generation FROM transactions tr JOIN " +
125            "transaction_accounts ta ON ta.transaction_id=tr.id WHERE ta.account_name LIKE " +
126            ":accountName||'%' AND ta.amount <> 0 AND tr.profile_id = :profileId ORDER BY tr.year " +
127            "desc, tr.month desc, tr.day desc, tr.ledger_id desc")
128     public abstract LiveData<List<TransactionWithAccounts>> getAllWithAccountsFiltered(
129             long profileId, String accountName);
130
131     @Query("DELETE FROM transactions WHERE profile_id = :profileId AND generation <> " +
132            ":currentGeneration")
133     public abstract int purgeOldTransactionsSync(long profileId, long currentGeneration);
134
135     @Query("DELETE FROM transaction_accounts WHERE EXISTS (SELECT 1 FROM transactions tr WHERE tr" +
136            ".id=transaction_accounts.transaction_id AND tr.profile_id=:profileId) AND generation " +
137            "<> :currentGeneration")
138     public abstract int purgeOldTransactionAccountsSync(long profileId, long currentGeneration);
139
140     @Query("DELETE FROM transactions WHERE profile_id = :profileId")
141     public abstract int deleteAllSync(long profileId);
142
143     @Query("SELECT * FROM transactions where profile_id = :profileId AND ledger_id = :ledgerId")
144     public abstract Transaction getByLedgerId(long profileId, long ledgerId);
145
146     @Query("UPDATE transactions SET generation = :newGeneration WHERE id = :transactionId")
147     public abstract int updateGeneration(long transactionId, long newGeneration);
148
149     @Query("UPDATE transaction_accounts SET generation = :newGeneration WHERE transaction_id = " +
150            ":transactionId")
151     public abstract int updateAccountsGeneration(long transactionId, long newGeneration);
152     @androidx.room.Transaction
153     public void updateGenerationWithAccounts(long transactionId, long newGeneration) {
154         updateGeneration(transactionId, newGeneration);
155         updateAccountsGeneration(transactionId, newGeneration);
156     }
157     public long getGenerationSync(long profileId) {
158         TransactionGenerationContainer result = getGenerationPOJOSync(profileId);
159
160         if (result == null)
161             return 0;
162         return result.generation;
163     }
164     @androidx.room.Transaction
165     public void storeTransactionsSync(List<TransactionWithAccounts> list, long profileId) {
166         long generation = getGenerationSync(profileId) + 1;
167
168         for (TransactionWithAccounts tr : list) {
169             tr.transaction.setGeneration(generation);
170             tr.transaction.setProfileId(profileId);
171
172             storeSync(tr);
173         }
174
175         Logger.debug("Transaction", "Purging old transactions");
176         int removed = purgeOldTransactionsSync(profileId, generation);
177         Logger.debug("Transaction", String.format(Locale.ROOT, "Purged %d transactions", removed));
178
179         removed = purgeOldTransactionAccountsSync(profileId, generation);
180         Logger.debug("Transaction",
181                 String.format(Locale.ROOT, "Purged %d transaction accounts", removed));
182     }
183     @androidx.room.Transaction
184     void storeSync(TransactionWithAccounts rec) {
185         TransactionAccountDAO trAccDao = DB.get()
186                                            .getTransactionAccountDAO();
187
188         Transaction transaction = rec.transaction;
189         Transaction existing = getByLedgerId(transaction.getProfileId(), transaction.getLedgerId());
190         if (existing != null) {
191             if (Misc.equalStrings(transaction.getDataHash(), existing.getDataHash())) {
192                 updateGenerationWithAccounts(existing.getId(), rec.transaction.getGeneration());
193                 return;
194             }
195
196             existing.copyDataFrom(transaction);
197             updateSync(existing);
198
199             transaction = existing;
200         }
201         else
202             transaction.setId(insertSync(transaction));
203
204         for (TransactionAccount trAcc : rec.accounts) {
205             trAcc.setTransactionId(transaction.getId());
206             trAcc.setGeneration(transaction.getGeneration());
207             TransactionAccount existingAcc =
208                     trAccDao.getByOrderNoSync(trAcc.getTransactionId(), trAcc.getOrderNo());
209             if (existingAcc != null) {
210                 existingAcc.copyDataFrom(trAcc);
211                 trAccDao.updateSync(existingAcc);
212             }
213             else
214                 trAcc.setId(trAccDao.insertSync(trAcc));
215         }
216     }
217     static class TransactionGenerationContainer {
218         @ColumnInfo
219         long generation;
220         public TransactionGenerationContainer(long generation) {
221             this.generation = generation;
222         }
223     }
224
225     static public class DescriptionContainer {
226         @ColumnInfo
227         public String description;
228         @ColumnInfo
229         public int ordering;
230     }
231 }