-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDateConverter.java
363 lines (288 loc) · 10.8 KB
/
DateConverter.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
import android.support.annotation.NonNull;
import static com.vedamic.chhimekbank.library.calender.DateData.englishLeapYear;
import static com.vedamic.chhimekbank.library.calender.DateData.englishYear;
/**
*
* Class to convert the Date between AD and BS.
* <br>
* Check the Date ranges before implementation.
* <br>
* <ul>
* <li>Currently the supported dates are from 2000 to 2089 BS</li>
* <li>Currently the supported dates are from 1944 to 2033 AD</li>
* </ul>
*
* Created by yogesh on 5/26/16.
*/
public class DateConverter {
private String debugInfo = "";
/**
* Calculates wheather english year is leap year or not
*
* @param year
* @return
*/
public static boolean isLeapYear(int year){
if (year % 100 == 0)
{
return (year % 400 == 0);
} else {
return (year % 4 == 0);
}
}
private boolean isInRangeEnglish(int year, int month, int day){
if(year < 1944 || year >2033){
return false;
}
if(month < 1 || month >12){
return false;
}
if(day < 1 || day >31){
return false;
}
return true;
}
private boolean isInRangeNepali(int year, int month, int day){
if(year < 2000 || year > 2089){
return false;
}
if(month<1 || month >12) {
return false;
}
if(day<1 || day >32){
return false;
}
return true;
}
/**
* Converts the A.D. date into B.S. date.
* <br>
* The A.D. date must be in format YYYY-MM-DD
* @param adDate
* @return The converted date, null if any exceptions or invalid data.
*/
public Date adToBs(@NonNull String adDate) throws UnsupportedDateException {
String[] parts = adDate.split("-");
if(parts.length < 2){
return null;
}
int year = Integer.parseInt(parts[0]);
int month = Integer.parseInt(parts[1]);
int day = Integer.parseInt(parts[2]);
return adToBs(year,month,day);
}
/**
* Convert the date from AD to BS.
* <br><br>
* Currently the supported dates are from 1944 to 2033
*
* @param currentYear
* @param currentMonth
* @param currentDay
* @return
*/
public Date adToBs(int currentYear,int currentMonth,int currentDay) throws UnsupportedDateException{
//the start of english date
final int defaultEnglishYear = 1944;
final int defaultEnglishMonth = 0;
final int defaultEnglishDay = 0;
//equivalent english date
final int defaultNepaliYear = 2000;
final int defaultNepaliMonth = 9;
final int defaultNepaliDay = 16;
final int defaultDayOfWeek = 6;
if (!this.isInRangeEnglish(currentYear, currentMonth, currentDay)){
throw new UnsupportedDateException("Date range not supported : Currently the supported dates are from 1944 to 2033");
} else {
int totalEnglishDays = 0;
// count total days from the default date year to the (current year - 1)
for(int i=0; i < (currentYear - defaultEnglishYear); i++){
//total days for month calculation...(english)
if(isLeapYear(defaultEnglishYear + i)){
//year is leap year
for(int j = 0; j < 12; j++){
totalEnglishDays += englishLeapYear[j];
}
}
else{
for(int j=0; j<12; j++){
totalEnglishDays += englishYear[j];
}
}
}
//System.out.println(totalEnglishDays);
// count total no. of days for the current years before the ongoing month
for(int i = 0; i < (currentMonth - 1); i++){
if(isLeapYear(currentYear)){
totalEnglishDays += englishLeapYear[i];
}
else{
totalEnglishDays += englishYear[i];
}
}
//System.out.println(totalEnglishDays);
// finally get the total past days for the current month
totalEnglishDays += currentDay;
int daysInMonth = 0;
int calculatedNepaliDay = defaultNepaliDay;
int calculatedNepaliMonth = defaultNepaliMonth;
int calculatedNepaliYear = defaultNepaliYear;
int dayOfWeek = defaultDayOfWeek;
// count nepali date from array
for(int yearIndex = 0; totalEnglishDays > 0; totalEnglishDays--){
//calculate the days present the monthIndex for the yearIndex
daysInMonth = DateData.BS_YEARS_ARRAY[yearIndex][calculatedNepaliMonth];
//for each english day increment the nepali day as well
calculatedNepaliDay++;
dayOfWeek++;
//check if days exceeded the days to be in the month
if(calculatedNepaliDay > daysInMonth){
//exceeded, thus increment a month
calculatedNepaliMonth++;
//reset the day to 1
calculatedNepaliDay = 1;
}
//check if the day of the week exceeds 7
if(dayOfWeek > 7) {
//exceeded, reset the value
dayOfWeek = 1;
}
//check if the month exceeds by 12
if(calculatedNepaliMonth > 12){
//exceeded, increment the year and the reset the calculated month
calculatedNepaliYear++;
calculatedNepaliMonth = 1;
yearIndex++;
}
}
return new Date(calculatedNepaliYear,calculatedNepaliMonth,calculatedNepaliDay,dayOfWeek, Date.DATE_BS);
}
}
/**
* Converts the B.S. date into A.D. date.
* <br>
* The B.S. date must be in format YYYY-MM-DD
* @param bsDate
* @return The converted date, null if any exceptions or invalid data.
*/
public Date bsToAd(@NonNull String bsDate) throws UnsupportedDateException {
String[] parts = bsDate.split("-");
if(parts.length < 2){
return null;
}
int year = Integer.parseInt(parts[0]);
int month = Integer.parseInt(parts[1]);
int day = Integer.parseInt(parts[2]);
return bsToAd(year,month,day);
}
/**
* Method to convert BS date into AD date
* <br><br>
* Currently the supported dates are from 2000 to 2089
* @param currentYear
* @param currentMonth
* @param currentDay
* @return
*/
public Date bsToAd(int currentYear,int currentMonth,int currentDay) throws UnsupportedDateException {
//get the nepali date for the start of the year
final int defaultNepaliYear = 2000;
final int defaultNepaliMonth = 1;
final int defaultNepaliDay = 1;
//equivalent english date
final int defaultEnglishYear = 1943;
final int defaultEnglishMonth = 4;
final int defaultEnglishDay = 13;
final int defaultDayOfWeek = 3;
int totalNepaliDays =0;
if(!this.isInRangeNepali(currentYear, currentMonth, currentDay)){
throw new UnsupportedDateException("Date range not supported : Currently the supported dates are from 2000 to 2089");
} else {
//get total nepali days
int i = 0;
for(i=0; i<(currentYear- defaultNepaliYear); i++){
for(int j=1; j<=12; j++){
totalNepaliDays += DateData.BS_YEARS_ARRAY[i][j];
}
}
for(int j=1; j < currentMonth; j++){
totalNepaliDays += DateData.BS_YEARS_ARRAY[i][j];
}
totalNepaliDays += currentDay;
//start the calculation for the equivalent english (AD) date
int calculatedEnglishDays = defaultEnglishDay;
int calculatedEnglishMonth = defaultEnglishMonth;
int calculatedEnglishYear = defaultEnglishYear;
int daysInMonth = 0;
int dayOfWeek = defaultDayOfWeek;
while(totalNepaliDays != 0){
if(isLeapYear(calculatedEnglishYear))
{
daysInMonth = englishLeapYear[calculatedEnglishMonth - 1];
}
else
{
daysInMonth = englishYear[calculatedEnglishMonth - 1];
}
calculatedEnglishDays++;
dayOfWeek++;
if( calculatedEnglishDays > daysInMonth){
calculatedEnglishMonth++;
calculatedEnglishDays = 1;
}
if(calculatedEnglishMonth > 12){
calculatedEnglishYear++;
calculatedEnglishMonth = 1;
}
if(dayOfWeek > 7){
dayOfWeek = 1;
}
totalNepaliDays--;
}
return new Date(calculatedEnglishYear,calculatedEnglishMonth,calculatedEnglishDays,dayOfWeek, Date.DATE_AD);
}
}
public static class Date{
public int YEAR = 0;
public int MONTH = 0;
public int DAY = 0;
public int DAY_OF_WEEK = 0;
public String DAY_OF_WEEK_STR = "";
public String MONTH_STR = "";
public int FORMAT = 1;
public static final int DATE_AD = 1;
public static final int DATE_BS = 2;
public Date(int year,int month, int day, int dayOfWeek,int format){
this.YEAR = year;
this.DAY = day;
this.MONTH = month;
this.DAY_OF_WEEK = dayOfWeek;
this.FORMAT = format;
if(this.FORMAT == DATE_AD){
this.MONTH_STR = DateData.getEnglishMonth(month);
}
if(this.FORMAT == DATE_AD){
this.MONTH_STR = DateData.getEnglishMonth(month);
}
this.DAY_OF_WEEK_STR = DateData.getEnglishDayOfTheWeek(dayOfWeek);
}
public String getNepaliMonth(){return DateData.getNepaliMonth(this.MONTH);}
public String getEnglishMonth(){
return DateData.getEnglishMonth(this.MONTH);
}
public String getDayOfTheWeek(){
return DateData.getEnglishDayOfTheWeek(this.DAY_OF_WEEK);
}
public String toString(){
String monthStr = this.MONTH+"";
if(this.MONTH < 10){
monthStr = "0"+monthStr;
}
String dayStr = this.DAY+"";
if(this.DAY < 10){
dayStr = "0"+dayStr;
}
return this.YEAR+"-"+monthStr+"-"+dayStr;
}
}
}