-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy pathtimestamp.cpp
108 lines (83 loc) · 2.34 KB
/
timestamp.cpp
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
/*
* .============.
* // M A K E / \
* // C++ DEV / \
* // E A S Y / \/ \
* ++ ----------. \/\ .
* \\ \ \ /\ /
* \\ \ \ /
* \\ \ \ /
* -============'
*
* Copyright (c) 2018 Hevake and contributors, all rights reserved.
*
* This file is part of cpp-tbox (https://github.com/cpp-main/cpp-tbox)
* Use of this source code is governed by MIT license that can be found
* in the LICENSE file in the root of the source tree. All contributing
* project authors may be found in the CONTRIBUTORS.md file in the root
* of the source tree.
*/
#include "timestamp.h"
#include <sys/time.h>
#include <time.h>
namespace tbox {
namespace util {
uint32_t GetUtcSeconds()
{
struct timeval tv;
struct timezone tz;
if (gettimeofday(&tv, &tz) != 0)
return 0;
return tv.tv_sec;
}
uint32_t GetCurrentSecondsFrom1970() { return GetUtcSeconds(); }
uint64_t GetUtcMilliseconds()
{
struct timeval tv;
struct timezone tz;
if (gettimeofday(&tv, &tz) != 0)
return 0;
return static_cast<uint64_t>(tv.tv_sec) * 1000 + tv.tv_usec / 1000;
}
uint64_t GetCurrentMillisecondsFrom1970() { return GetUtcMilliseconds(); }
uint64_t GetUtcMicroseconds()
{
struct timeval tv;
struct timezone tz;
if (gettimeofday(&tv, &tz) != 0)
return 0;
return static_cast<uint64_t>(tv.tv_sec) * 1000000 + tv.tv_usec;
}
uint64_t GetCurrentMicrosecondsFrom1970() { return GetUtcMicroseconds(); }
bool GetUtc(uint32_t &sec, uint32_t &usec)
{
struct timeval tv;
struct timezone tz;
if (gettimeofday(&tv, &tz) != 0)
return false;
sec = tv.tv_sec;
usec = tv.tv_usec;
return true;
}
std::string GetUtcTimeString(uint32_t utc_sec)
{
time_t ts_sec = utc_sec;
struct tm tm;
gmtime_r(&ts_sec, &tm);
char timestamp_str[20];
strftime(timestamp_str, sizeof(timestamp_str), "%F %H:%M:%S", &tm);
return timestamp_str;
}
std::string GetUtcTimeString() { return GetUtcTimeString(GetUtcSeconds()); }
std::string GetLocalTimeString(uint32_t utc_sec)
{
time_t ts_sec = utc_sec;
struct tm tm;
localtime_r(&ts_sec, &tm);
char timestamp_str[20];
strftime(timestamp_str, sizeof(timestamp_str), "%F %H:%M:%S", &tm);
return timestamp_str;
}
std::string GetLocalTimeString() { return GetLocalTimeString(GetUtcSeconds()); }
}
}