/* * Copyright (c) 2024 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. */ #include "b_resources/b_constants.h" #include "b_utils/b_time.h" #include #include #include #include namespace OHOS::FileManagement::Backup { int64_t TimeUtils::GetTimeS() { std::chrono::seconds nowS = std::chrono::duration_cast( std::chrono::system_clock::now().time_since_epoch()); return nowS.count(); } int64_t TimeUtils::GetTimeMS() { std::chrono::milliseconds nowMs = std::chrono::duration_cast( std::chrono::system_clock::now().time_since_epoch()); return nowMs.count(); } int64_t TimeUtils::GetTimeUS() { std::chrono::microseconds nowUs = std::chrono::duration_cast( std::chrono::system_clock::now().time_since_epoch()); return nowUs.count(); } std::string TimeUtils::GetCurrentTime() { auto now = std::chrono::system_clock::now(); auto time = std::chrono::system_clock::to_time_t(now); auto ms = std::chrono::duration_cast(now.time_since_epoch()); std::stringstream strTime; strTime << (std::put_time(std::localtime(&time), "%Y-%m-%d %H:%M:%S:")) << (std::setfill('0')) << (std::setw(BConstants::INDEX)) << (ms.count() % BConstants::MS_1000); return strTime.str(); } } // namespace OHOS::FileManagement::Backup