]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/utils/Globals.java
handle date parsing errors, handle real=fake dates
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / utils / Globals.java
1 /*
2  * Copyright © 2019 Damyan Ivanov.
3  * This file is part of Mobile-Ledger.
4  * Mobile-Ledger 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  * Mobile-Ledger 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 Mobile-Ledger. If not, see <https://www.gnu.org/licenses/>.
16  */
17
18 package net.ktnx.mobileledger.utils;
19
20 import android.app.Activity;
21 import android.content.Context;
22 import android.support.annotation.ColorInt;
23 import android.util.Log;
24 import android.view.View;
25 import android.view.inputmethod.InputMethodManager;
26
27 import java.text.ParseException;
28 import java.text.SimpleDateFormat;
29 import java.util.Calendar;
30 import java.util.Date;
31 import java.util.Locale;
32 import java.util.regex.Matcher;
33 import java.util.regex.Pattern;
34
35 public final class Globals {
36     @ColorInt
37     public static int tableRowLightBG;
38     @ColorInt
39     public static int tableRowDarkBG;
40     @ColorInt
41     public static int primaryDark, defaultTextColor;
42     public static String[] monthNames;
43     private static SimpleDateFormat ledgerDateFormatter =
44             new SimpleDateFormat("yyyy/MM/dd", Locale.US);
45     private static Pattern reLedgerDate =
46             Pattern.compile("^(?:(\\d+)/)??(?:(\\d\\d?)/)?(\\d\\d?)$");
47     public static void hideSoftKeyboard(Activity act) {
48         // hide the keyboard
49         View v = act.getCurrentFocus();
50         if (v != null) {
51             InputMethodManager imm =
52                     (InputMethodManager) act.getSystemService(Context.INPUT_METHOD_SERVICE);
53             imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
54         }
55     }
56     public static Date parseLedgerDate(String dateString) throws ParseException {
57         Matcher m = reLedgerDate.matcher(dateString);
58         if (!m.matches()) throw new ParseException(dateString, 0);
59
60         String year = m.group(1);
61         String month = m.group(2);
62         String day = m.group(3);
63
64         String toParse;
65         if (year == null) {
66             Calendar now = Calendar.getInstance();
67             int thisYear = now.get(Calendar.YEAR);
68             if (month == null) {
69                 int thisMonth = now.get(Calendar.MONTH) + 1;
70                 toParse = String.format(Locale.US, "%04d/%02d/%s", thisYear, thisMonth, dateString);
71             }
72             else toParse = String.format(Locale.US, "%04d/%s", thisYear, dateString);
73         }
74         else toParse = dateString;
75
76         Log.d("globals", String.format("Parsing date '%s'", toParse));
77         return ledgerDateFormatter.parse(toParse);
78     }
79     public static String formatLedgerDate(Date date) {
80         return ledgerDateFormatter.format(date);
81     }
82 }