TDME2 1.9.121
Time.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
5
6#include <chrono>
7#include <ctime>
8#include <string>
9
10using std::chrono::duration_cast;
11using std::chrono::high_resolution_clock;
12using std::chrono::milliseconds;
13using std::string;
14
15/**
16 * Time utility class
17 * @author mahula
18 * @version $Id$
19 */
21{
22public:
23
24 /**
25 * Retrieve current time in milliseconds
26 * @return int64_t
27 */
28 inline static int64_t getCurrentMillis() {
29 // TODO: check clock_gettime from time.h
30 // struct timespec now;
31 // clock_gettime(CLOCK_REALTIME, &now);
32 // return (now.tv_sec * 1000L) + (now.tv_nsec / 1000000L);
33 return high_resolution_clock::now().time_since_epoch() / milliseconds(1);
34 }
35
36 /**
37 * Get date/time as string
38 * @param format format, see strftime
39 * @return date/time as string
40 */
41 inline static string getAsString(const string& format = "%Y-%m-%d %H:%M:%S") {
42 // see: https://stackoverflow.com/questions/34963738/c11-get-current-date-and-time-as-string
43 std::time_t now = std::chrono::system_clock::to_time_t(std::chrono::system_clock::now());
44 char timeString[256] = {0};
45 std::strftime(timeString, sizeof(timeString), format.c_str(), std::localtime(&now));
46 return string(timeString);
47 }
48};
Time utility class.
Definition: Time.h:21
static string getAsString(const string &format="%Y-%m-%d %H:%M:%S")
Get date/time as string.
Definition: Time.h:41
static int64_t getCurrentMillis()
Retrieve current time in milliseconds.
Definition: Time.h:28