ReactOS 0.4.16-dev-937-g7afcd2a
ftime.cpp File Reference
#include <corecrt_internal_time.h>
#include <sys/timeb.h>
#include <sys/types.h>
Include dependency graph for ftime.cpp:

Go to the source code of this file.

Macros

#define DAYLIGHT_TIME   1
 
#define STANDARD_TIME   0
 
#define UNKNOWN_TIME   -1
 

Functions

template<typename TimeType , typename TimeBType >
static errno_t __cdecl common_ftime_s (TimeBType *const tp) throw ()
 
errno_t __cdecl _ftime32_s (__timeb32 *const tp)
 
void __cdecl _ftime32 (__timeb32 *const tp)
 
errno_t __cdecl _ftime64_s (__timeb64 *const tp)
 
void __cdecl _ftime64 (__timeb64 *const tp)
 

Variables

static __time64_t elapsed_minutes_cache = 0
 
static int dstflag_cache = UNKNOWN_TIME
 

Macro Definition Documentation

◆ DAYLIGHT_TIME

#define DAYLIGHT_TIME   1

Definition at line 22 of file ftime.cpp.

◆ STANDARD_TIME

#define STANDARD_TIME   0

Definition at line 23 of file ftime.cpp.

◆ UNKNOWN_TIME

#define UNKNOWN_TIME   -1

Definition at line 24 of file ftime.cpp.

Function Documentation

◆ _ftime32()

void __cdecl _ftime32 ( __timeb32 *const  tp)

Definition at line 92 of file ftime.cpp.

93{
95}
_In_ uint64_t _In_ uint64_t _In_ uint64_t _In_opt_ traverse_ptr * tp
Definition: btrfs.c:2996
errno_t __cdecl _ftime32_s(__timeb32 *const tp)
Definition: ftime.cpp:87

◆ _ftime32_s()

errno_t __cdecl _ftime32_s ( __timeb32 *const  tp)

Definition at line 87 of file ftime.cpp.

88{
89 return common_ftime_s<__time32_t>(tp);
90}

Referenced by _ftime32().

◆ _ftime64()

void __cdecl _ftime64 ( __timeb64 *const  tp)

Definition at line 102 of file ftime.cpp.

103{
104 _ftime64_s(tp);
105}
errno_t __cdecl _ftime64_s(__timeb64 *const tp)
Definition: ftime.cpp:97

◆ _ftime64_s()

errno_t __cdecl _ftime64_s ( __timeb64 *const  tp)

Definition at line 97 of file ftime.cpp.

98{
99 return common_ftime_s<__time64_t>(tp);
100}

Referenced by _ftime64().

◆ common_ftime_s()

template<typename TimeType , typename TimeBType >
static errno_t __cdecl common_ftime_s ( TimeBType *const  tp)
throw (
)
static

Definition at line 36 of file ftime.cpp.

37{
39
40 __tzset();
41
42 long timezone = 0;
44 tp->timezone = static_cast<short>(timezone / 60);
45
46 __crt_filetime_union system_time;
48
49 // Obtain the current Daylight Savings Time status. Note that the status is
50 // cached and only updated once per minute, if necessary.
51 TimeType const current_minutes_value = static_cast<TimeType>(system_time._scalar / 600000000ll);
52 if (static_cast<__time64_t>(current_minutes_value) != elapsed_minutes_cache)
53 {
55 DWORD const tz_state = GetTimeZoneInformation(&tz_info);
56 if (tz_state == 0xFFFFFFFF)
57 {
59 }
60 else
61 {
62 // Must be very careful when determining whether or not Daylight
63 // Savings Time is in effect:
64 if (tz_state == TIME_ZONE_ID_DAYLIGHT &&
67 {
69 }
70 else
71 {
72 // Assume Standard Time:
74 }
75 }
76
77 elapsed_minutes_cache = current_minutes_value;
78 }
79
80 tp->dstflag = static_cast<short>(dstflag_cache);
81 tp->millitm = static_cast<unsigned short>((system_time._scalar / 10000ll) % 1000ll);
82 tp->time = static_cast<TimeType>((system_time._scalar - _EPOCH_BIAS) / 10000000ll);
83
84 return 0;
85}
#define EINVAL
Definition: acclib.h:90
VOID WINAPI __acrt_GetSystemTimePreciseAsFileTime(_Out_ LPFILETIME system_time)
#define _ERRCHECK(e)
#define _EPOCH_BIAS
void __cdecl __tzset()
Definition: tzset.cpp:392
DWORD WINAPI GetTimeZoneInformation(LPTIME_ZONE_INFORMATION lpTimeZoneInformation)
Definition: timezone.c:262
unsigned long DWORD
Definition: ntddk_ex.h:95
static __time64_t elapsed_minutes_cache
Definition: ftime.cpp:17
#define UNKNOWN_TIME
Definition: ftime.cpp:24
#define STANDARD_TIME
Definition: ftime.cpp:23
static int dstflag_cache
Definition: ftime.cpp:29
#define DAYLIGHT_TIME
Definition: ftime.cpp:22
#define _VALIDATE_RETURN_ERRCODE(expr, errorcode)
#define TIME_ZONE_ID_DAYLIGHT
Definition: rtltypes.h:254
_CRTIMP errno_t __cdecl _get_timezone(_Out_ long *_Timezone)
WORD wMonth
Definition: winbase.h:937
SYSTEMTIME DaylightDate
Definition: winbase.h:1242
Definition: fake.h:14
static TIME_ZONE_INFORMATION tz_info
Definition: tzset.cpp:28
__int64 __time64_t
Definition: corecrt.h:619

Variable Documentation

◆ dstflag_cache

int dstflag_cache = UNKNOWN_TIME
static

Definition at line 29 of file ftime.cpp.

Referenced by common_ftime_s().

◆ elapsed_minutes_cache

__time64_t elapsed_minutes_cache = 0
static

Definition at line 17 of file ftime.cpp.

Referenced by common_ftime_s().