-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTime.h
More file actions
130 lines (119 loc) · 4.51 KB
/
Copy pathTime.h
File metadata and controls
130 lines (119 loc) · 4.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
///----------------------------------------------------------------------------------------------------
/// Copyright (c) Raidcore.GG - All rights reserved.
///
/// Name : Time.h
/// Description : Contains a variety of utility for time based functions.
/// Authors : K. Bieniek
///----------------------------------------------------------------------------------------------------
#pragma once
#include <chrono>
#include <iomanip>
#include <sstream>
#include <string>
///----------------------------------------------------------------------------------------------------
/// Time Namespace
///----------------------------------------------------------------------------------------------------
namespace Time
{
///----------------------------------------------------------------------------------------------------
/// GetTimestamp:
/// Returns the current timestamp.
///----------------------------------------------------------------------------------------------------
inline long long GetTimestamp()
{
return std::chrono::duration_cast<std::chrono::seconds>(std::chrono::system_clock::now().time_since_epoch()).count();
}
///----------------------------------------------------------------------------------------------------
/// GetTimestamp:
/// Returns the current timestamp in milliseconds.
///----------------------------------------------------------------------------------------------------
inline long long GetTimestampMs()
{
return std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::system_clock::now().time_since_epoch()).count();
}
///----------------------------------------------------------------------------------------------------
/// GetMilliseconds:
/// Returns the current milliseconds.
///----------------------------------------------------------------------------------------------------
inline int GetMilliseconds()
{
return std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::system_clock::now().time_since_epoch()).count() % 1000;
}
///----------------------------------------------------------------------------------------------------
/// LastModifiedToTimestamp:
/// Converts a "Last-Modified" HTTP header to a timestamp.
///----------------------------------------------------------------------------------------------------
inline long long LastModifiedToTimestamp(const std::string& aLastModified)
{
std::tm tm = {};
std::istringstream ss(aLastModified);
ss >> std::get_time(&tm, "%a, %d %b %Y %H:%M:%S GMT");
if (ss.fail())
{
return -1;
}
tm.tm_isdst = 0;
std::time_t t = std::mktime(&tm);
if (t == -1)
{
return -1;
}
return t;
}
///----------------------------------------------------------------------------------------------------
/// GetYear:
/// Returns the year.
///----------------------------------------------------------------------------------------------------
inline int GetYear()
{
std::time_t t = std::chrono::system_clock::to_time_t(std::chrono::system_clock::now());
tm local_tm{};
if (localtime_s(&local_tm, &t))
{
return 0;
}
return local_tm.tm_year;
}
///----------------------------------------------------------------------------------------------------
/// GetMonth:
/// Returns the month 1-12.
///----------------------------------------------------------------------------------------------------
inline int GetMonth()
{
std::time_t t = std::chrono::system_clock::to_time_t(std::chrono::system_clock::now());
tm local_tm{};
if (localtime_s(&local_tm, &t))
{
return 0;
}
return local_tm.tm_mon + 1;
}
///----------------------------------------------------------------------------------------------------
/// GetDay:
/// Returns the day of the month 1-31.
///----------------------------------------------------------------------------------------------------
inline int GetDay()
{
std::time_t t = std::chrono::system_clock::to_time_t(std::chrono::system_clock::now());
tm local_tm{};
if (localtime_s(&local_tm, &t))
{
return 0;
}
return local_tm.tm_mday;
}
///----------------------------------------------------------------------------------------------------
/// GetWeekday:
/// Returns the current weekday starting Sunday = 0.
///----------------------------------------------------------------------------------------------------
inline int GetWeekday()
{
std::time_t t = std::chrono::system_clock::to_time_t(std::chrono::system_clock::now());
tm local_tm{};
if (localtime_s(&local_tm, &t))
{
return 0;
}
return local_tm.tm_wday;
}
}