1020a203aSopenharmony_ci/* 2020a203aSopenharmony_ci * Copyright (c) 2024 Huawei Device Co., Ltd. 3020a203aSopenharmony_ci * Licensed under the Apache License, Version 2.0 (the "License"); 4020a203aSopenharmony_ci * you may not use this file except in compliance with the License. 5020a203aSopenharmony_ci * You may obtain a copy of the License at 6020a203aSopenharmony_ci * 7020a203aSopenharmony_ci * http://www.apache.org/licenses/LICENSE-2.0 8020a203aSopenharmony_ci * 9020a203aSopenharmony_ci * Unless required by applicable law or agreed to in writing, software 10020a203aSopenharmony_ci * distributed under the License is distributed on an "AS IS" BASIS, 11020a203aSopenharmony_ci * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12020a203aSopenharmony_ci * See the License for the specific language governing permissions and 13020a203aSopenharmony_ci * limitations under the License. 14020a203aSopenharmony_ci */ 15020a203aSopenharmony_ci#ifndef SCENE_TIMER_OH_IMPL_H 16020a203aSopenharmony_ci#define SCENE_TIMER_OH_IMPL_H 17020a203aSopenharmony_ci 18020a203aSopenharmony_ci#include "ISceneTimerInfrastructure.h" 19020a203aSopenharmony_ci#include <map> 20020a203aSopenharmony_ci#include <mutex> 21020a203aSopenharmony_ci#include <condition_variable> 22020a203aSopenharmony_ci 23020a203aSopenharmony_cinamespace OHOS { 24020a203aSopenharmony_cinamespace HiviewDFX { 25020a203aSopenharmony_ci/* this design is difficult to UT, that's a problem */ 26020a203aSopenharmony_ciclass SceneTimerOhImpl : public ISceneTimerInfrastructure { 27020a203aSopenharmony_cipublic: 28020a203aSopenharmony_ci const static unsigned int checkInterval = 500; // this means accuracy 29020a203aSopenharmony_ci 30020a203aSopenharmony_ci SceneTimerOhImpl(); 31020a203aSopenharmony_ci void RegUser(int userId, ICb* cb) override; 32020a203aSopenharmony_ci void UnRegUser(int userId) override; 33020a203aSopenharmony_ci void Start(int user, int id, long interval) override; 34020a203aSopenharmony_ci void Stop(int user, int id) override; 35020a203aSopenharmony_ci 36020a203aSopenharmony_ciprivate: 37020a203aSopenharmony_ci const static int maxUserId = 16; 38020a203aSopenharmony_ci const static int maxRecordPerUser = 128; 39020a203aSopenharmony_ci 40020a203aSopenharmony_ci std::map<int, long long> records; 41020a203aSopenharmony_ci std::mutex mut; 42020a203aSopenharmony_ci std::condition_variable cv; 43020a203aSopenharmony_ci std::map<int, ICb*> callbacks; // userId as key, potentially multi-thread problem, but for now, lock is not needed 44020a203aSopenharmony_ci 45020a203aSopenharmony_ci void Loop(); 46020a203aSopenharmony_ci void FillRecordAndNotify(int key, long long expireTs); 47020a203aSopenharmony_ci void ValidateDuplication(int key); 48020a203aSopenharmony_ci void ValidateExistence(int key); 49020a203aSopenharmony_ci long long GetCurTimeStamp(); 50020a203aSopenharmony_ci void CheckRecordsAndTrigger(); 51020a203aSopenharmony_ci static int BuildRecordKey(int user, int id); 52020a203aSopenharmony_ci long long CalcExpireTimeStamp(long delay); 53020a203aSopenharmony_ci void TriggerCallbak(int recordKey); 54020a203aSopenharmony_ci static int ExtractUserFromRecordKey(int key); 55020a203aSopenharmony_ci static int ExtractIdFromRecordKey(int key); 56020a203aSopenharmony_ci void RemoveRecordAndNotify(int key); 57020a203aSopenharmony_ci}; 58020a203aSopenharmony_ci} // HiviewDFX 59020a203aSopenharmony_ci} // OHOS 60020a203aSopenharmony_ci#endif 61