Mercurial > libpst
annotate src/timeconv.c @ 177:59bd93d02feb stable-0-6-35
add archive files
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Wed, 08 Apr 2009 15:10:05 -0700 |
parents | 6954d315aaa8 |
children | b65e8d0a088a |
rev | line source |
---|---|
16 | 1 /*********************************************************************** |
2 * | |
3 * Borrowed from WINE sources!! (http://www.winehq.com) | |
4 * Converts a Win32 FILETIME structure to a UNIX time_t value | |
5 */ | |
6 | |
7 /*** WARNING **** | |
59
7d5c637aaafb
General cleanup and code fixes.
Carl Byington <carl@five-ten-sg.com>
parents:
46
diff
changeset
|
8 * This file is not to be included in a Visual C++ Project |
16 | 9 * It will make the whole project fail to compile |
10 * There are functions in libpst.c to handle the dates | |
11 * Do not use this one | |
12 */ | |
13 | |
118
0f1492b7fe8b
patch from Fridrich Strba for building on mingw and general cleanup of autoconf files
Carl Byington <carl@five-ten-sg.com>
parents:
75
diff
changeset
|
14 #ifndef _WIN32 |
0f1492b7fe8b
patch from Fridrich Strba for building on mingw and general cleanup of autoconf files
Carl Byington <carl@five-ten-sg.com>
parents:
75
diff
changeset
|
15 |
122
bdb38b434c0a
more changes from Fridrich Strba to avoid installing our config.h
Carl Byington <carl@five-ten-sg.com>
parents:
118
diff
changeset
|
16 #include "define.h" |
bdb38b434c0a
more changes from Fridrich Strba to avoid installing our config.h
Carl Byington <carl@five-ten-sg.com>
parents:
118
diff
changeset
|
17 |
172
6954d315aaa8
move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents:
129
diff
changeset
|
18 char * pst_fileTimeToAscii (const FILETIME *filetime) { |
6954d315aaa8
move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents:
129
diff
changeset
|
19 time_t t1; |
16 | 20 |
172
6954d315aaa8
move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents:
129
diff
changeset
|
21 t1 = pst_fileTimeToUnixTime(filetime, NULL); |
6954d315aaa8
move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents:
129
diff
changeset
|
22 return ctime(&t1); |
16 | 23 } |
24 | |
172
6954d315aaa8
move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents:
129
diff
changeset
|
25 struct tm * pst_fileTimeToStructTM (const FILETIME *filetime) { |
6954d315aaa8
move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents:
129
diff
changeset
|
26 time_t t1; |
6954d315aaa8
move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents:
129
diff
changeset
|
27 t1 = pst_fileTimeToUnixTime(filetime, NULL); |
6954d315aaa8
move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents:
129
diff
changeset
|
28 return gmtime(&t1); |
16 | 29 } |
30 | |
31 /*********************************************************************** | |
32 * DOSFS_FileTimeToUnixTime | |
33 * | |
34 * Convert a FILETIME format to Unix time. | |
35 * If not NULL, 'remainder' contains the fractional part of the filetime, | |
36 * in the range of [0..9999999] (even if time_t is negative). | |
37 */ | |
172
6954d315aaa8
move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents:
129
diff
changeset
|
38 time_t pst_fileTimeToUnixTime( const FILETIME *filetime, DWORD *remainder ) |
16 | 39 { |
40 /* Read the comment in the function DOSFS_UnixTimeToFileTime. */ | |
41 #if USE_LONG_LONG | |
42 | |
43 long long int t = filetime->dwHighDateTime; | |
44 t <<= 32; | |
45 t += (UINT32)filetime->dwLowDateTime; | |
46 t -= 116444736000000000LL; | |
47 if (t < 0) | |
48 { | |
49 if (remainder) *remainder = 9999999 - (-t - 1) % 10000000; | |
50 return -1 - ((-t - 1) / 10000000); | |
51 } | |
52 else | |
53 { | |
54 if (remainder) *remainder = t % 10000000; | |
55 return t / 10000000; | |
56 } | |
57 | |
58 #else /* ISO version */ | |
59 | |
60 UINT32 a0; /* 16 bit, low bits */ | |
61 UINT32 a1; /* 16 bit, medium bits */ | |
62 UINT32 a2; /* 32 bit, high bits */ | |
63 UINT32 r; /* remainder of division */ | |
64 unsigned int carry; /* carry bit for subtraction */ | |
65 int negative; /* whether a represents a negative value */ | |
66 | |
67 /* Copy the time values to a2/a1/a0 */ | |
68 a2 = (UINT32)filetime->dwHighDateTime; | |
69 a1 = ((UINT32)filetime->dwLowDateTime ) >> 16; | |
70 a0 = ((UINT32)filetime->dwLowDateTime ) & 0xffff; | |
71 | |
72 /* Subtract the time difference */ | |
73 if (a0 >= 32768 ) a0 -= 32768 , carry = 0; | |
74 else a0 += (1 << 16) - 32768 , carry = 1; | |
75 | |
76 if (a1 >= 54590 + carry) a1 -= 54590 + carry, carry = 0; | |
77 else a1 += (1 << 16) - 54590 - carry, carry = 1; | |
78 | |
79 a2 -= 27111902 + carry; | |
46 | 80 |
16 | 81 /* If a is negative, replace a by (-1-a) */ |
82 negative = (a2 >= ((UINT32)1) << 31); | |
83 if (negative) | |
84 { | |
85 /* Set a to -a - 1 (a is a2/a1/a0) */ | |
86 a0 = 0xffff - a0; | |
87 a1 = 0xffff - a1; | |
88 a2 = ~a2; | |
89 } | |
90 | |
91 /* Divide a by 10000000 (a = a2/a1/a0), put the rest into r. | |
92 Split the divisor into 10000 * 1000 which are both less than 0xffff. */ | |
93 a1 += (a2 % 10000) << 16; | |
94 a2 /= 10000; | |
95 a0 += (a1 % 10000) << 16; | |
96 a1 /= 10000; | |
97 r = a0 % 10000; | |
98 a0 /= 10000; | |
99 | |
100 a1 += (a2 % 1000) << 16; | |
101 a2 /= 1000; | |
102 a0 += (a1 % 1000) << 16; | |
103 a1 /= 1000; | |
104 r += (a0 % 1000) * 10000; | |
105 a0 /= 1000; | |
106 | |
107 /* If a was negative, replace a by (-1-a) and r by (9999999 - r) */ | |
108 if (negative) | |
109 { | |
110 /* Set a to -a - 1 (a is a2/a1/a0) */ | |
111 a0 = 0xffff - a0; | |
112 a1 = 0xffff - a1; | |
113 a2 = ~a2; | |
114 | |
115 r = 9999999 - r; | |
116 } | |
117 | |
118 if (remainder) *remainder = r; | |
119 | |
120 /* Do not replace this by << 32, it gives a compiler warning and it does | |
121 not work. */ | |
122 return ((((time_t)a2) << 16) << 16) + (a1 << 16) + a0; | |
123 #endif | |
124 } | |
118
0f1492b7fe8b
patch from Fridrich Strba for building on mingw and general cleanup of autoconf files
Carl Byington <carl@five-ten-sg.com>
parents:
75
diff
changeset
|
125 |
0f1492b7fe8b
patch from Fridrich Strba for building on mingw and general cleanup of autoconf files
Carl Byington <carl@five-ten-sg.com>
parents:
75
diff
changeset
|
126 #endif /* !_WIN32 */ |