2 * Copyright © 2019 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.
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.
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/>.
18 package net.ktnx.mobileledger.model;
20 import android.database.Cursor;
21 import android.database.sqlite.SQLiteDatabase;
22 import android.os.AsyncTask;
24 import androidx.lifecycle.MutableLiveData;
26 import net.ktnx.mobileledger.App;
27 import net.ktnx.mobileledger.async.RetrieveTransactionsTask;
28 import net.ktnx.mobileledger.ui.activity.MainActivity;
29 import net.ktnx.mobileledger.utils.LockHolder;
30 import net.ktnx.mobileledger.utils.Locker;
31 import net.ktnx.mobileledger.utils.Logger;
32 import net.ktnx.mobileledger.utils.MLDB;
33 import net.ktnx.mobileledger.utils.ObservableList;
35 import java.lang.ref.WeakReference;
36 import java.text.NumberFormat;
37 import java.util.ArrayList;
38 import java.util.Date;
39 import java.util.List;
40 import java.util.Locale;
41 import java.util.concurrent.atomic.AtomicInteger;
43 import static net.ktnx.mobileledger.utils.Logger.debug;
45 public final class Data {
46 public static ObservableList<TransactionListItem> transactions =
47 new ObservableList<>(new ArrayList<>());
48 public static ObservableList<LedgerAccount> accounts = new ObservableList<>(new ArrayList<>());
49 public static MutableLiveData<Boolean> backgroundTasksRunning = new MutableLiveData<>(false);
50 public static MutableLiveData<Date> lastUpdateDate = new MutableLiveData<>();
51 public static MutableLiveData<MobileLedgerProfile> profile = new MutableLiveData<>();
52 public static MutableLiveData<ArrayList<MobileLedgerProfile>> profiles =
53 new MutableLiveData<>(null);
54 public static MutableLiveData<String> accountFilter = new MutableLiveData<>();
55 public static MutableLiveData<Currency.Position> currencySymbolPosition =
56 new MutableLiveData<>();
57 public static MutableLiveData<Boolean> currencyGap = new MutableLiveData<>(true);
58 public static MutableLiveData<Locale> locale = new MutableLiveData<>(Locale.getDefault());
59 private static AtomicInteger backgroundTaskCount = new AtomicInteger(0);
60 private static Locker profilesLocker = new Locker();
61 private static RetrieveTransactionsTask retrieveTransactionsTask;
62 public static void backgroundTaskStarted() {
63 int cnt = backgroundTaskCount.incrementAndGet();
65 String.format(Locale.ENGLISH, "background task count is %d after incrementing",
67 backgroundTasksRunning.postValue(cnt > 0);
69 public static void backgroundTaskFinished() {
70 int cnt = backgroundTaskCount.decrementAndGet();
72 String.format(Locale.ENGLISH, "background task count is %d after decrementing",
74 backgroundTasksRunning.postValue(cnt > 0);
76 public static void setCurrentProfile(MobileLedgerProfile newProfile) {
77 MLDB.setOption(MLDB.OPT_PROFILE_UUID, (newProfile == null) ? null : newProfile.getUuid());
78 stopTransactionsRetrieval();
79 profile.postValue(newProfile);
81 public static int getProfileIndex(MobileLedgerProfile profile) {
82 try (LockHolder ignored = profilesLocker.lockForReading()) {
83 List<MobileLedgerProfile> prList = profiles.getValue();
85 throw new AssertionError();
86 for (int i = 0; i < prList.size(); i++) {
87 MobileLedgerProfile p = prList.get(i);
88 if (p.equals(profile))
95 @SuppressWarnings("WeakerAccess")
96 public static int getProfileIndex(String profileUUID) {
97 try (LockHolder ignored = profilesLocker.lockForReading()) {
98 List<MobileLedgerProfile> prList = profiles.getValue();
100 throw new AssertionError();
101 for (int i = 0; i < prList.size(); i++) {
102 MobileLedgerProfile p = prList.get(i);
104 .equals(profileUUID))
111 public static int retrieveCurrentThemeIdFromDb() {
112 String profileUUID = MLDB.getOption(MLDB.OPT_PROFILE_UUID, null);
113 if (profileUUID == null)
116 SQLiteDatabase db = App.getDatabase();
117 try (Cursor c = db.rawQuery("SELECT theme from profiles where uuid=?",
118 new String[]{profileUUID}))
126 public static MobileLedgerProfile getProfile(String profileUUID) {
127 MobileLedgerProfile profile;
128 try (LockHolder readLock = profilesLocker.lockForReading()) {
129 List<MobileLedgerProfile> prList = profiles.getValue();
130 if ((prList == null) || prList.isEmpty()) {
132 try (LockHolder ignored = profilesLocker.lockForWriting()) {
133 profile = MobileLedgerProfile.loadAllFromDB(profileUUID);
137 int i = getProfileIndex(profileUUID);
140 profile = prList.get(i);
145 public synchronized static void scheduleTransactionListRetrieval(MainActivity activity) {
146 if (retrieveTransactionsTask != null) {
147 Logger.debug("db", "Ignoring request for transaction retrieval - already active");
150 MobileLedgerProfile pr = profile.getValue();
152 Logger.debug("ui", "Ignoring refresh -- no current profile");
156 retrieveTransactionsTask =
157 new RetrieveTransactionsTask(new WeakReference<>(activity), profile.getValue());
158 Logger.debug("db", "Created a background transaction retrieval task");
160 retrieveTransactionsTask.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
162 public static synchronized void stopTransactionsRetrieval() {
163 if (retrieveTransactionsTask != null)
164 retrieveTransactionsTask.cancel(false);
166 public static void transactionRetrievalDone() {
167 retrieveTransactionsTask = null;
169 public static void refreshCurrencyData(Locale locale) {
170 NumberFormat formatter = NumberFormat.getCurrencyInstance(locale);
171 java.util.Currency currency = formatter.getCurrency();
172 String symbol = currency.getSymbol();
173 Logger.debug("locale", String.format(
174 "Discovering currency symbol position for locale %s (currency is %s; symbol is %s)",
175 locale.toString(), currency.toString(), symbol));
176 String formatted = formatter.format(1234.56f);
177 Logger.debug("locale", String.format("1234.56 formats as '%s'", formatted));
179 if (formatted.startsWith(symbol)) {
180 currencySymbolPosition.setValue(Currency.Position.before);
182 // is the currency symbol directly followed by the first formatted digit?
183 final char canary = formatted.charAt(symbol.length());
184 currencyGap.setValue(canary != '1');
186 else if (formatted.endsWith(symbol)) {
187 currencySymbolPosition.setValue(Currency.Position.after);
189 // is the currency symbol directly preceded bu the last formatted digit?
190 final char canary = formatted.charAt(formatted.length() - symbol.length() - 1);
191 currencyGap.setValue(canary != '6');
194 currencySymbolPosition.setValue(Currency.Position.none);