代码拉取完成,页面将自动刷新
/*
* .============.
* // 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()); }
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。