-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgregorian_to_jalali.cpp
84 lines (65 loc) · 1.92 KB
/
gregorian_to_jalali.cpp
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
/*
* Language: C++
* Date: 2022/01/7
* Name: gregorian_to_jalali.cpp
* Repository: https://github.com/BaseMax/gregorian_to_jalali
*/
#include <iostream>
#include <array>
#include <string>
#include <sstream>
namespace Date {
struct DateStruct
{
int year;
int month;
int day;
};
class Convertor
{
public:
[[maybe_unused]] DateStruct gregorianToJalali(int year, int month, int day) const noexcept
{
DateStruct result{};
constexpr std::array<int, 12> array{0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334};
if (year <= 1600) {
year -= 621;
result.year = 0;
} else {
year -= 1600;
result.year = 979;
}
int temp = (year > 2) ? (year + 1) : year;
int days = ((int) ((temp + 3) / 4)) + (365 * year) - ((int) ((temp + 99) / 100)) - 80
+ array[month - 1] + ((int) ((temp + 399) / 400)) + day;
result.year += 33 * ((int) (days / 12053));
days %= 12053;
result.year += 4 * ((int) (days / 1461));
days %= 1461;
if (days > 365) {
result.year += (int) ((days - 1) / 365);
days = (days - 1) % 365;
}
result.month = (days < 186) ? 1 + (int) (days / 31) : 7 + (int) ((days - 186) / 30);
result.day = 1 + ((days < 186) ? (days % 31) : ((days - 186) % 30));
return result;
}
[[maybe_unused]] std::string gregorianToJalaliStr(int year, int month, int day) const noexcept
{
DateStruct result = gregorianToJalali(year, month, day);
std::stringstream ss;
ss << result.year << "/";
if (result.month < 10) {
ss << 0 << result.month << "/";
} else {
ss << result.month << "/";
}
if (result.day < 10) {
ss << 0 << result.day;
} else {
ss << result.day;
}
return ss.str();
}
};
}