]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/async/TransactionDateFinder.java
608b477198af04f99c6a7bf49cc05b6f310892d7
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / async / TransactionDateFinder.java
1 /*
2  * Copyright © 2020 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.os.AsyncTask;
21
22 import net.ktnx.mobileledger.model.TransactionListItem;
23 import net.ktnx.mobileledger.ui.MainModel;
24 import net.ktnx.mobileledger.utils.Logger;
25 import net.ktnx.mobileledger.utils.SimpleDate;
26
27 import org.jetbrains.annotations.NotNull;
28
29 import java.util.Collections;
30 import java.util.Comparator;
31 import java.util.List;
32 import java.util.Locale;
33 import java.util.Objects;
34
35 public class TransactionDateFinder extends AsyncTask<TransactionDateFinder.Params, Void, Integer> {
36     private MainModel model;
37     @Override
38     protected void onPostExecute(Integer pos) {
39         model.foundTransactionItemIndex.setValue(pos);
40     }
41     @Override
42     protected Integer doInBackground(Params... param) {
43         this.model = param[0].model;
44         SimpleDate date = param[0].date;
45         Logger.debug("go-to-date",
46                 String.format(Locale.US, "Looking for date %04d-%02d-%02d", date.year, date.month,
47                         date.day));
48         List<TransactionListItem> transactions = Objects.requireNonNull(
49                 param[0].model.getDisplayedTransactions()
50                               .getValue());
51         Logger.debug("go-to-date",
52                 String.format(Locale.US, "List contains %d transactions", transactions.size()));
53
54         TransactionListItem target = new TransactionListItem(date, true);
55         int found =
56                 Collections.binarySearch(transactions, target, new TransactionListItemComparator());
57         if (found >= 0)
58             return found;
59         else
60             return 1 - found;
61     }
62
63     public static class Params {
64         public final MainModel model;
65         public final SimpleDate date;
66         public Params(@NotNull MainModel model, @NotNull SimpleDate date) {
67             this.model = model;
68             this.date = date;
69         }
70     }
71
72     static class TransactionListItemComparator implements Comparator<TransactionListItem> {
73         @Override
74         public int compare(@NotNull TransactionListItem a, @NotNull TransactionListItem b) {
75             if (a.getType() == TransactionListItem.Type.HEADER)
76                 return +1;
77             if (b.getType() == TransactionListItem.Type.HEADER)
78                 return -1;
79             final SimpleDate aDate = a.getDate();
80             final SimpleDate bDate = b.getDate();
81             int res = aDate.compareTo(bDate);
82             if (res != 0)
83                 return -res;    // transactions are reverse sorted by date
84
85             if (a.getType() == TransactionListItem.Type.DELIMITER) {
86                 if (b.getType() == TransactionListItem.Type.DELIMITER)
87                     return 0;
88                 else
89                     return -1;
90             }
91             else {
92                 if (b.getType() == TransactionListItem.Type.DELIMITER)
93                     return +1;
94                 else
95                     return 0;
96             }
97         }
98     }
99 }