time

ITime provides function to get the current system time and work with this time.

File information

Filecommon/interface/time.h

Classes ITime

Examples Code Example

Classes

ITime

Public functions

static ulong64 TimeStampMilliseconds()

Return value

Returns an utc timestamp in milliseconds.
static size_t GetTimeStamp(char * buf, unsigned sz)

Return value

Returns localtime with this representation '''%Y-%m-%d %H:%M:%S''' inside the buffer pointed by buf. sz is the size of the provided buffer.
static void FormatTimeStampISO(char * buf, unsigned length, ulong64 timeMs);
Formats the timestamp in milliseconds to ISO Format "%Y-%m-%dT%H:%M:%SZ" inside the buffer pointed by buf. length is the size of the provided buffer.
static void FormatTimeStampRFC1123(char * buf, unsigned length, ulong64 timeMs);
Formats the timestamp in milliseconds to RFC1123 Format "Thu, 02 Mar 2017 07:36:51 GMT" inside the buffer pointed by buf. length is the size of the provided buffer.
static bool ParseTimeZoneString(const char * tz, timezone_info_t & ti_out, int * errPos = NULL)
Parses the in tz given POSIX time zone string and stores the result in ti_out. If everything was fine, true will be returned. If an error occures, the function will return false while errPos (if a pointer had been given) will hold the position inside the tz string, where the parsing error occures. In that case tha value of the ti_out structure is undefined. The ti_out structure holds all informations that are necessary to localize a time value in that time zone. So the structure must passed to the other functions until it hat been filled correctly with ParseTimeZoneString().
static ulong64 TimeStampMilliseconds(timezone_info_t & ti)

Return value

Returns the current time in milliseconds, already calculated to the time zone with the infos given in ti.
static ulong64 UTCTimeToLocalTime(ulong64 timeMsUtc, timezone_info_t & ti)

Return value

Returns the given utc time (in milliseconds) in the local time by using the time zone informations given by ti.
static long64 GetMonotonicTime()
Monotonic time represents the absolute elapsed wall-clock time since some arbitrary, fixed point in the past. It isn't affected by changes in the system time-of-day clock.
static void GetTimeStruct(ulong64 timeMs, struct time_tm * t)
Fills the time_tm structure pointed to by t with the values of the in milliseconds given time. Internally, gmtime() is used, so there will be no time zone calculation will be done.
static void GetTimeStruct(ulong64 timeMs, struct time_tm * t, timezone_info_t & ti)
The same as GetTimeStruct() above, with the difference, that the in milliseconds given time will at first calculated to the time zone with the informations given in ti. So actually it is the same as calling GetTimeStruct(UTCTimeToLocalTim(timeMs, ti), tm);
static void FormatTimeStamp(char * buf, unsigned length, const char * formatStr, ulong64 timeMs)
Formats the in milliseconds given time by using the given formatStr. The result will be placed in the given buffer buf. The parameter length is the length of the buffer. For a list of place holders to use in formatStr, read the strftime() documentation.
static void FormatTimeStamp(char * buf, unsigned length, const char * formatStr, ulong64 timeMs, timezone_info_t & ti)
The same as GetFormatedTimeStr() above, with the difference that the given time at first will be calculated to the time zone with the informations given in ti. So actually it is the same as calling GetFormatedTimeStr(buf, sizeof(buf), myFormatStr, UTCTimeToLocalTime(time, ti));
static long64 TimeStructToMilliseconds(time_tm_t * ts)
Converts a time_tm_t struct to total milliseconds.
static bool NormalizeTimeStruct(time_tm_t * ts)
static long64 RemoveTime(long64 timeStamp)

Return value

Removes the time portion of the millisecond timeStamp.
static bool IsLeapYear(int year)

Return value

Returns true for years which are a leap year.
static int GetDaysOfMonth(int month, int forYear)

Return value

Returns the count of days of month in year forYear.

struct _timezone_info_t

struct _time_tm_t

Code Example


ulong64 tTime = ITime::TimeStampMilliseconds();

int pos;
ITime::timezone_info_t ti;
if (!ITime::ParseTimeZoneString("BRT+3", ti, &pos)) {
    printf("Parsing the POSIX TimeZone string failed at pos %u\n", pos);
    return;
}

char buf_utc[20];
char buf_loc[20];
ITime::FormatTimeStamp(buf_utc, sizeof(buf_utc), "%d/%m/%Y %I:%M %p", tTime);
ITime::FormatTimeStamp(buf_loc, sizeof(buf_loc), "%d/%m/%Y %I:%M %p", tTime, ti);

printf("Time in UTC: %s\n", buf_utc);
printf("Time in Nordeast Brazilien Time: %s\n", buf_loc);