OSDN Git Service

e91ec484cab06161d7c6dced7d5bb18b94611fea
[android-x86/external-exfat.git] / libexfat / time.c
1 /*
2         time.c (03.02.12)
3         exFAT file system implementation library.
4
5         Copyright (C) 2009, 2010  Andrew Nayenko
6
7         This program is free software: you can redistribute it and/or modify
8         it under the terms of the GNU General Public License as published by
9         the Free Software Foundation, either version 3 of the License, or
10         (at your option) any later version.
11
12         This program is distributed in the hope that it will be useful,
13         but WITHOUT ANY WARRANTY; without even the implied warranty of
14         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15         GNU General Public License for more details.
16
17         You should have received a copy of the GNU General Public License
18         along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 #include "exfat.h"
22
23 #define SEC_IN_MIN 60ll
24 #define SEC_IN_HOUR (60 * SEC_IN_MIN)
25 #define SEC_IN_DAY (24 * SEC_IN_HOUR)
26 #define SEC_IN_YEAR (365 * SEC_IN_DAY) /* not leap year */
27 /* Unix epoch started at 0:00:00 UTC 1 January 1970 */
28 #define UNIX_EPOCH_YEAR 1970
29 /* exFAT epoch started at 0:00:00 UTC 1 January 1980 */
30 #define EXFAT_EPOCH_YEAR 1980
31 /* number of years from Unix epoch to exFAT epoch */
32 #define EPOCH_DIFF_YEAR (EXFAT_EPOCH_YEAR - UNIX_EPOCH_YEAR)
33 /* number of days from Unix epoch to exFAT epoch (considering leap days) */
34 #define EPOCH_DIFF_DAYS (EPOCH_DIFF_YEAR * 365 + EPOCH_DIFF_YEAR / 4)
35 /* number of seconds from Unix epoch to exFAT epoch (considering leap days) */
36 #define EPOCH_DIFF_SEC (EPOCH_DIFF_DAYS * SEC_IN_DAY)
37 /* number of leap years passed from exFAT epoch to the specified year
38    (excluding the specified year itself) */
39 #define LEAP_YEARS(year) ((EXFAT_EPOCH_YEAR + (year) - 1) / 4 \
40                 - (EXFAT_EPOCH_YEAR - 1) / 4)
41 /* checks whether the specified year is leap */
42 #define IS_LEAP_YEAR(year) ((EXFAT_EPOCH_YEAR + (year)) % 4 == 0)
43
44 static const time_t days_in_year[] =
45 {
46         /* Jan  Feb  Mar  Apr  May  Jun  Jul  Aug  Sep  Oct  Nov  Dec */
47         0,   0,  31,  59,  90, 120, 151, 181, 212, 243, 273, 304, 334
48 };
49
50 time_t exfat_exfat2unix(le16_t date, le16_t time, uint8_t centisec)
51 {
52         time_t unix_time = EPOCH_DIFF_SEC;
53         uint16_t ndate = le16_to_cpu(date);
54         uint16_t ntime = le16_to_cpu(time);
55
56         uint16_t day    = ndate & 0x1f;      /* 5 bits, 1-31 */
57         uint16_t month  = ndate >> 5 & 0xf;  /* 4 bits, 1-12 */
58         uint16_t year   = ndate >> 9;        /* 7 bits, 1-127 (+1980) */
59
60         uint16_t twosec = ntime & 0x1f;      /* 5 bits, 0-29 (2 sec granularity) */
61         uint16_t min    = ntime >> 5 & 0x3f; /* 6 bits, 0-59 */
62         uint16_t hour   = ntime >> 11;       /* 5 bits, 0-23 */
63
64         if (day == 0 || month == 0 || month > 12)
65         {
66                 exfat_error("bad date %hu-%02hu-%02hu",
67                                 year + EXFAT_EPOCH_YEAR, month, day);
68                 return 0;
69         }
70         if (hour > 23 || min > 59 || twosec > 29)
71         {
72                 exfat_error("bad time %hu:%02hu:%02hu",
73                                 hour, min, twosec * 2);
74                 return 0;
75         }
76         if (centisec > 199)
77         {
78                 exfat_error("bad centiseconds count %hhu", centisec);
79                 return 0;
80         }
81
82         /* every 4th year between 1904 and 2096 is leap */
83         unix_time += year * SEC_IN_YEAR + LEAP_YEARS(year) * SEC_IN_DAY;
84         unix_time += days_in_year[month] * SEC_IN_DAY;
85         /* if it's leap year and February has passed we should add 1 day */
86         if ((EXFAT_EPOCH_YEAR + year) % 4 == 0 && month > 2)
87                 unix_time += SEC_IN_DAY;
88         unix_time += (day - 1) * SEC_IN_DAY;
89
90         unix_time += hour * SEC_IN_HOUR;
91         unix_time += min * SEC_IN_MIN;
92         /* exFAT represents time with 2 sec granularity */
93         unix_time += twosec * 2;
94         unix_time += centisec / 100;
95
96         /* exFAT stores timestamps in local time, so we correct it to UTC */
97         unix_time += timezone;
98
99         return unix_time;
100 }
101
102 void exfat_unix2exfat(time_t unix_time, le16_t* date, le16_t* time,
103                 uint8_t* centisec)
104 {
105         time_t shift = EPOCH_DIFF_SEC + timezone;
106         uint16_t day, month, year;
107         uint16_t twosec, min, hour;
108         int days;
109         int i;
110
111         /* time before exFAT epoch cannot be represented */
112         if (unix_time < shift)
113                 unix_time = shift;
114
115         unix_time -= shift;
116
117         days = unix_time / SEC_IN_DAY;
118         year = (4 * days) / (4 * 365 + 1);
119         days -= year * 365 + LEAP_YEARS(year);
120         month = 0;
121         for (i = 1; i <= 12; i++)
122         {
123                 int leap_day = (IS_LEAP_YEAR(year) && i == 2);
124                 int leap_sub = (IS_LEAP_YEAR(year) && i >= 3);
125
126                 if (i == 12 || days - leap_sub < days_in_year[i + 1] + leap_day)
127                 {
128                         month = i;
129                         days -= days_in_year[i] + leap_sub;
130                         break;
131                 }
132         }
133         day = days + 1;
134
135         hour = (unix_time % SEC_IN_DAY) / SEC_IN_HOUR;
136         min = (unix_time % SEC_IN_HOUR) / SEC_IN_MIN;
137         twosec = (unix_time % SEC_IN_MIN) / 2;
138
139         *date = cpu_to_le16(day | (month << 5) | (year << 9));
140         *time = cpu_to_le16(twosec | (min << 5) | (hour << 11));
141         if (centisec)
142                 *centisec = (unix_time % 2) * 100;
143 }