]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/utils/Globals.java
global method for format dates in ISO format (y-m-d)
[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 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.utils;
19
20 import android.app.Activity;
21 import android.content.Context;
22 import android.view.View;
23 import android.view.inputmethod.InputMethodManager;
24
25 import java.text.ParseException;
26 import java.text.SimpleDateFormat;
27 import java.util.Calendar;
28 import java.util.Date;
29 import java.util.Locale;
30 import java.util.regex.Matcher;
31 import java.util.regex.Pattern;
32
33 public final class Globals {
34     private static final ThreadLocal<SimpleDateFormat> dateFormatter =
35             new ThreadLocal<SimpleDateFormat>() {
36                 @Override
37                 protected SimpleDateFormat initialValue() {
38                     return new SimpleDateFormat("yyyy/MM/dd", Locale.US);
39                 }
40             };
41     private static final ThreadLocal<SimpleDateFormat> isoDateFormatter =
42             new ThreadLocal<SimpleDateFormat>() {
43                 @Override
44                 protected SimpleDateFormat initialValue() {
45                     return new SimpleDateFormat("yyyy-MM-dd", Locale.US);
46                 }
47             };
48     public static String[] monthNames;
49     public static String developerEmail = "dam+mole-crash@ktnx.net";
50     private static Pattern reLedgerDate =
51             Pattern.compile("^(?:(\\d+)/)??(?:(\\d\\d?)/)?(\\d\\d?)$");
52     public static void hideSoftKeyboard(Activity act) {
53         // hide the keyboard
54         View v = act.getCurrentFocus();
55         if (v != null) {
56             InputMethodManager imm =
57                     (InputMethodManager) act.getSystemService(Context.INPUT_METHOD_SERVICE);
58             imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
59         }
60     }
61     public static Date parseLedgerDate(String dateString) throws ParseException {
62         Matcher m = reLedgerDate.matcher(dateString);
63         if (!m.matches()) throw new ParseException(
64                 String.format("'%s' does not match expected pattern '%s'", dateString,
65                         reLedgerDate.toString()), 0);
66
67         String year = m.group(1);
68         String month = m.group(2);
69         String day = m.group(3);
70
71         String toParse;
72         if (year == null) {
73             Calendar now = Calendar.getInstance();
74             int thisYear = now.get(Calendar.YEAR);
75             if (month == null) {
76                 int thisMonth = now.get(Calendar.MONTH) + 1;
77                 toParse = String.format(Locale.US, "%04d/%02d/%s", thisYear, thisMonth, dateString);
78             }
79             else toParse = String.format(Locale.US, "%04d/%s", thisYear, dateString);
80         }
81         else toParse = dateString;
82
83         return dateFormatter.get().parse(toParse);
84     }
85     public static Date parseIsoDate(String dateString) throws ParseException {
86         return isoDateFormatter.get().parse(dateString);
87     }
88     public static String formatLedgerDate(Date date) {
89         return dateFormatter.get().format(date);
90     }
91     public static String formatIsoDate(Date date) {
92         return isoDateFormatter.get().format(date);
93     }
94 }