KDE 1.x has problems with using XShapeCombineMask when there was no
[wine/hacks.git] / dlls / ntdll / time.c
blobc9f717edc73f0484c7854f9cedf107415378f271
1 /*
2 * Conversion between Time and TimeFields
4 * RtlTimeToTimeFields, RtlTimeFieldsToTime and defines are taken from ReactOS and
5 * adapted to wine with special permissions of the author
6 * Rex Jolliff (rex@lvcablemodem.com)
7 *
8 *
9 */
11 #include <string.h>
12 #include "ntddk.h"
13 #include "debugtools.h"
14 #include "file.h"
16 DEFAULT_DEBUG_CHANNEL(ntdll)
18 #define TICKSPERSEC 10000000
19 #define TICKSPERMSEC 10000
20 #define SECSPERDAY 86400
21 #define SECSPERHOUR 3600
22 #define SECSPERMIN 60
23 #define MINSPERHOUR 60
24 #define HOURSPERDAY 24
25 #define EPOCHWEEKDAY 0
26 #define DAYSPERWEEK 7
27 #define EPOCHYEAR 1601
28 #define DAYSPERNORMALYEAR 365
29 #define DAYSPERLEAPYEAR 366
30 #define MONSPERYEAR 12
32 static const int YearLengths[2] = {DAYSPERNORMALYEAR, DAYSPERLEAPYEAR};
33 static const int MonthLengths[2][MONSPERYEAR] =
35 { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 },
36 { 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }
39 static inline int IsLeapYear(int Year)
41 return Year % 4 == 0 && (Year % 100 != 0 || Year % 400 == 0) ? 1 : 0;
44 static inline void NormalizeTimeFields(CSHORT *FieldToNormalize, CSHORT *CarryField,int Modulus)
46 *FieldToNormalize = (CSHORT) (*FieldToNormalize - Modulus);
47 *CarryField = (CSHORT) (*CarryField + 1);
50 /******************************************************************************
51 * RtlTimeToTimeFields [NTDLL.265]
55 VOID WINAPI RtlTimeToTimeFields(
56 PLARGE_INTEGER liTime,
57 PTIME_FIELDS TimeFields)
59 const int *Months;
60 int LeapSecondCorrections, SecondsInDay, CurYear;
61 int LeapYear, CurMonth, GMTOffset;
62 long int Days;
63 long long int Time = *(long long int *)&liTime;
65 /* Extract millisecond from time and convert time into seconds */
66 TimeFields->Milliseconds = (CSHORT) ((Time % TICKSPERSEC) / TICKSPERMSEC);
67 Time = Time / TICKSPERSEC;
69 /* FIXME: Compute the number of leap second corrections here */
70 LeapSecondCorrections = 0;
72 /* FIXME: get the GMT offset here */
73 GMTOffset = 0;
75 /* Split the time into days and seconds within the day */
76 Days = Time / SECSPERDAY;
77 SecondsInDay = Time % SECSPERDAY;
79 /* Adjust the values for GMT and leap seconds */
80 SecondsInDay += (GMTOffset - LeapSecondCorrections);
81 while (SecondsInDay < 0)
82 { SecondsInDay += SECSPERDAY;
83 Days--;
85 while (SecondsInDay >= SECSPERDAY)
86 { SecondsInDay -= SECSPERDAY;
87 Days++;
90 /* compute time of day */
91 TimeFields->Hour = (CSHORT) (SecondsInDay / SECSPERHOUR);
92 SecondsInDay = SecondsInDay % SECSPERHOUR;
93 TimeFields->Minute = (CSHORT) (SecondsInDay / SECSPERMIN);
94 TimeFields->Second = (CSHORT) (SecondsInDay % SECSPERMIN);
96 /* FIXME: handle the possibility that we are on a leap second (i.e. Second = 60) */
98 /* compute day of week */
99 TimeFields->Weekday = (CSHORT) ((EPOCHWEEKDAY + Days) % DAYSPERWEEK);
101 /* compute year */
102 CurYear = EPOCHYEAR;
103 /* FIXME: handle calendar modifications */
104 while (1)
105 { LeapYear = IsLeapYear(CurYear);
106 if (Days < (long) YearLengths[LeapYear])
107 { break;
109 CurYear++;
110 Days = Days - (long) YearLengths[LeapYear];
112 TimeFields->Year = (CSHORT) CurYear;
114 /* Compute month of year */
115 Months = MonthLengths[LeapYear];
116 for (CurMonth = 0; Days >= (long) Months[CurMonth]; CurMonth++)
117 Days = Days - (long) Months[CurMonth];
118 TimeFields->Month = (CSHORT) (CurMonth + 1);
119 TimeFields->Day = (CSHORT) (Days + 1);
121 /******************************************************************************
122 * RtlTimeFieldsToTime [NTDLL.265]
125 BOOLEAN WINAPI RtlTimeFieldsToTime(
126 PTIME_FIELDS tfTimeFields,
127 PLARGE_INTEGER Time)
129 int CurYear, CurMonth;
130 long long int rcTime;
131 TIME_FIELDS TimeFields = *tfTimeFields;
133 rcTime = 0;
135 /* FIXME: normalize the TIME_FIELDS structure here */
136 while (TimeFields.Second >= SECSPERMIN)
137 { NormalizeTimeFields(&TimeFields.Second, &TimeFields.Minute, SECSPERMIN);
139 while (TimeFields.Minute >= MINSPERHOUR)
140 { NormalizeTimeFields(&TimeFields.Minute, &TimeFields.Hour, MINSPERHOUR);
142 while (TimeFields.Hour >= HOURSPERDAY)
143 { NormalizeTimeFields(&TimeFields.Hour, &TimeFields.Day, HOURSPERDAY);
145 while (TimeFields.Day > MonthLengths[IsLeapYear(TimeFields.Year)][TimeFields.Month - 1])
146 { NormalizeTimeFields(&TimeFields.Day, &TimeFields.Month, SECSPERMIN);
148 while (TimeFields.Month > MONSPERYEAR)
149 { NormalizeTimeFields(&TimeFields.Month, &TimeFields.Year, MONSPERYEAR);
152 /* FIXME: handle calendar corrections here */
153 for (CurYear = EPOCHYEAR; CurYear < TimeFields.Year; CurYear++)
154 { rcTime += YearLengths[IsLeapYear(CurYear)];
156 for (CurMonth = 1; CurMonth < TimeFields.Month; CurMonth++)
157 { rcTime += MonthLengths[IsLeapYear(CurYear)][CurMonth - 1];
159 rcTime += TimeFields.Day - 1;
160 rcTime *= SECSPERDAY;
161 rcTime += TimeFields.Hour * SECSPERHOUR + TimeFields.Minute * SECSPERMIN + TimeFields.Second;
162 rcTime *= TICKSPERSEC;
163 rcTime += TimeFields.Milliseconds * TICKSPERMSEC;
164 *Time = *(LARGE_INTEGER *)&rcTime;
166 return TRUE;
168 /************* end of code by Rex Jolliff (rex@lvcablemodem.com) *******************/
170 /******************************************************************************
171 * RtlSystemTimeToLocalTime [NTDLL]
173 VOID WINAPI RtlSystemTimeToLocalTime(
174 IN PLARGE_INTEGER SystemTime,
175 OUT PLARGE_INTEGER LocalTime)
177 FIXME("(%p, %p),stub!\n",SystemTime,LocalTime);
179 memcpy (LocalTime, SystemTime, sizeof (PLARGE_INTEGER));
182 /******************************************************************************
183 * RtlTimeToSecondsSince1970 [NTDLL]
185 BOOLEAN WINAPI RtlTimeToSecondsSince1970(
186 LPFILETIME ft,
187 LPDWORD timeret)
189 *timeret = DOSFS_FileTimeToUnixTime(ft,NULL);
190 return TRUE;
193 /******************************************************************************
194 * RtlTimeToSecondsSince1980 [NTDLL]
196 BOOLEAN WINAPI RtlTimeToSecondsSince1980(
197 LPFILETIME ft,
198 LPDWORD timeret)
200 /* 1980 = 1970+10*365 days + 29. februar 1972 + 29.februar 1976 */
201 if (!RtlTimeToSecondsSince1970( ft, timeret )) return FALSE;
202 *timeret -= (10*365+2)*24*60*60;
203 return TRUE;
206 /******************************************************************************
207 * RtlSecondsSince1970ToTime [NTDLL]
209 void WINAPI RtlSecondsSince1970ToTime( DWORD time, LPFILETIME ft )
211 DOSFS_UnixTimeToFileTime( time, ft, 0 );
214 /******************************************************************************
215 * RtlSecondsSince1980ToTime [NTDLL]
217 void WINAPI RtlSecondsSince1980ToTime( DWORD time, LPFILETIME ft )
219 RtlSecondsSince1970ToTime( time + (10*365+2)*24*60*60, ft );
222 /******************************************************************************
223 * RtlTimeToElapsedTimeFields [NTDLL.502]
224 * FIXME: prototype guessed
226 VOID WINAPI RtlTimeToElapsedTimeFields(
227 PLARGE_INTEGER liTime,
228 PTIME_FIELDS TimeFields)
230 FIXME("(%p,%p): stub\n",liTime,TimeFields);