mirror of
https://github.com/openharmony/ability_ability_runtime.git
synced 2026-08-24 22:21:36 -04:00
9dc72aeb32
Signed-off-by: wangzhen <wangzhen416@huawei.com> Change-Id: Ia7f38d21b5fced4e5c0a7eab728e13924bb6a38b
82 lines
2.9 KiB
C++
82 lines
2.9 KiB
C++
/*
|
|
* Copyright (c) 2023 Huawei Device Co., Ltd.
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#ifndef OHOS_ABILITY_RUNTIME_TIME_UTIL_H
|
|
#define OHOS_ABILITY_RUNTIME_TIME_UTIL_H
|
|
|
|
#include <cinttypes>
|
|
#include <sys/stat.h>
|
|
#include <time.h>
|
|
|
|
namespace OHOS::AbilityRuntime {
|
|
namespace TimeUtil {
|
|
// NANOSECONDS mean 10^9 nano second
|
|
constexpr int64_t NANOSECONDS = 1000000000;
|
|
// MICROSECONDS mean 10^6 milli second
|
|
constexpr int64_t MICROSECONDS = 1000000;
|
|
constexpr int64_t SEC_TO_MILLISEC = 1000;
|
|
constexpr int64_t MAX_TIME_BUFF = 64; // 64 : for example 2021-05-27-01-01-01
|
|
constexpr int32_t DECIMAL_BASE = 10;
|
|
|
|
[[maybe_unused]] static int64_t SystemTimeMillisecond()
|
|
{
|
|
struct timespec t;
|
|
t.tv_sec = 0;
|
|
t.tv_nsec = 0;
|
|
clock_gettime(CLOCK_MONOTONIC, &t);
|
|
return (int64_t)((t.tv_sec) * NANOSECONDS + t.tv_nsec) / MICROSECONDS;
|
|
}
|
|
|
|
[[maybe_unused]] static std::string FormatTime(const std::string &format)
|
|
{
|
|
auto now = std::chrono::system_clock::now();
|
|
auto millisecs = std::chrono::duration_cast<std::chrono::milliseconds>(now.time_since_epoch());
|
|
auto timestamp = millisecs.count();
|
|
std::time_t tt = static_cast<std::time_t>(timestamp / SEC_TO_MILLISEC);
|
|
std::tm t = *std::localtime(&tt);
|
|
char buffer[MAX_TIME_BUFF] = {0};
|
|
std::strftime(buffer, sizeof(buffer), format.c_str(), &t);
|
|
return std::string(buffer);
|
|
}
|
|
|
|
[[maybe_unused]] static std::string DefaultCurrentTimeStr()
|
|
{
|
|
auto now = std::chrono::system_clock::now();
|
|
auto millis = std::chrono::duration_cast<std::chrono::milliseconds>(now.time_since_epoch());
|
|
auto timestamp = millis.count();
|
|
std::time_t tt = static_cast<std::time_t>(timestamp / SEC_TO_MILLISEC);
|
|
std::tm t{};
|
|
localtime_noenv_r(&tt, &t);
|
|
char buffer[MAX_TIME_BUFF] = {0};
|
|
std::strftime(buffer, sizeof(buffer), "%Y-%m-%d %H:%M:%S", &t);
|
|
auto remainder = timestamp % SEC_TO_MILLISEC;
|
|
std::string milliStr("000");
|
|
for (int i = 2; i >= 0 && remainder > 0; i--) {
|
|
milliStr[i] = '0' + remainder % DECIMAL_BASE;
|
|
remainder /= DECIMAL_BASE;
|
|
}
|
|
return std::string(buffer) + "." + milliStr;
|
|
}
|
|
|
|
[[maybe_unused]] static int64_t CurrentTimeMillis()
|
|
{
|
|
auto now = std::chrono::steady_clock::now();
|
|
auto milliSecs = std::chrono::duration_cast<std::chrono::milliseconds>(now.time_since_epoch());
|
|
return milliSecs.count();
|
|
}
|
|
} // namespace TimeUtil
|
|
} // namespace OHOS::AbilityRuntime
|
|
#endif // OHOS_ABILITY_RUNTIME_TIME_UTIL_H
|