103 Star 575 Fork 242

cpp-master/cpp-tbox

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
timestamp.cpp 2.34 KB
一键复制 编辑 原始数据 按行查看 历史
海卫哥 提交于 2025-03-19 23:19 +08:00 . fix(util):1.12.4
/*
* .============.
* // 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()); }
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/cpp-master/cpp-tbox.git
git@gitee.com:cpp-master/cpp-tbox.git
cpp-master
cpp-tbox
cpp-tbox
develop

搜索帮助