]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/dao/AccountDAO.java
fix duplicate accounts in template account autocompletion
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / dao / AccountDAO.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.Query;
27 import androidx.room.Update;
28
29 import net.ktnx.mobileledger.db.Account;
30
31 import java.util.ArrayList;
32 import java.util.List;
33
34 @Dao
35 public abstract class AccountDAO extends BaseDAO<Account> {
36     @Insert
37     public abstract void insertSync(Account item);
38
39     @Update
40     public abstract void updateSync(Account item);
41
42     @Delete
43     public abstract void deleteSync(Account item);
44
45     @Query("SELECT * FROM accounts")
46     public abstract LiveData<List<Account>> getAll();
47
48     @Query("SELECT * FROM accounts WHERE profile = :profileUUID AND name = :accountName")
49     public abstract LiveData<Account> getByName(@NonNull String profileUUID,
50                                                 @NonNull String accountName);
51
52 //    not useful for now
53 //    @Transaction
54 //    @Query("SELECT * FROM patterns")
55 //    List<PatternWithAccounts> getPatternsWithAccounts();
56
57     static public List<String> unbox(List<AccountNameContainer> list) {
58         ArrayList<String> result = new ArrayList<>(list.size());
59         for (AccountNameContainer item : list) {
60             result.add(item.name);
61         }
62
63         return result;
64     }
65     @Query("SELECT name, CASE WHEN name_upper LIKE :term||'%%' THEN 1 " +
66            "               WHEN name_upper LIKE '%%:'||:term||'%%' THEN 2 " +
67            "               WHEN name_upper LIKE '%% '||:term||'%%' THEN 3 " +
68            "               ELSE 9 END AS ordering " + "FROM accounts " +
69            "WHERE profile=:profileUUID AND name_upper LIKE '%%'||:term||'%%' " +
70            "ORDER BY ordering, name_upper, rowid ")
71     public abstract LiveData<List<AccountNameContainer>> lookupInProfileByName(
72             @NonNull String profileUUID, @NonNull String term);
73
74     @Query("SELECT name, CASE WHEN name_upper LIKE :term||'%%' THEN 1 " +
75            "               WHEN name_upper LIKE '%%:'||:term||'%%' THEN 2 " +
76            "               WHEN name_upper LIKE '%% '||:term||'%%' THEN 3 " +
77            "               ELSE 9 END AS ordering " + "FROM accounts " +
78            "WHERE profile=:profileUUID AND name_upper LIKE '%%'||:term||'%%' " +
79            "ORDER BY ordering, name_upper, rowid ")
80     public abstract List<AccountNameContainer> lookupInProfileByNameSync(
81             @NonNull String profileUUID, @NonNull String term);
82
83     @Query("SELECT DISTINCT name, CASE WHEN name_upper LIKE :term||'%%' THEN 1 " +
84            "               WHEN name_upper LIKE '%%:'||:term||'%%' THEN 2 " +
85            "               WHEN name_upper LIKE '%% '||:term||'%%' THEN 3 " +
86            "               ELSE 9 END AS ordering " + "FROM accounts " +
87            "WHERE name_upper LIKE '%%'||:term||'%%' " + "ORDER BY ordering, name_upper, rowid ")
88     public abstract LiveData<List<AccountNameContainer>> lookupByName(@NonNull String term);
89
90     @Query("SELECT DISTINCT name, CASE WHEN name_upper LIKE :term||'%%' THEN 1 " +
91            "               WHEN name_upper LIKE '%%:'||:term||'%%' THEN 2 " +
92            "               WHEN name_upper LIKE '%% '||:term||'%%' THEN 3 " +
93            "               ELSE 9 END AS ordering " + "FROM accounts " +
94            "WHERE name_upper LIKE '%%'||:term||'%%' " + "ORDER BY ordering, name_upper, rowid ")
95     public abstract List<AccountNameContainer> lookupByNameSync(@NonNull String term);
96
97     static public class AccountNameContainer {
98         @ColumnInfo
99         public String name;
100         @ColumnInfo
101         public int ordering;
102     }
103 }