mirror of
https://github.com/openharmony/device_manager.git
synced 2026-07-19 18:13:32 -04:00
80 lines
1.9 KiB
C++
80 lines
1.9 KiB
C++
/*
|
|
* Copyright (c) 2022 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 TIMER_H
|
|
#define TIMER_H
|
|
#include <errno.h>
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#if !defined(__LITEOS_M__)
|
|
#include <sys/epoll.h>
|
|
#include <thread>
|
|
#include <unistd.h>
|
|
#endif
|
|
#include <cstdio>
|
|
#include <mutex>
|
|
#include <string>
|
|
|
|
#include "dm_log.h"
|
|
|
|
namespace OHOS {
|
|
namespace DistributedHardware {
|
|
class DmTimer;
|
|
typedef void (*TimeoutHandle)(void *data, DmTimer& timer);
|
|
|
|
#define MAX_EVENTS 255
|
|
|
|
enum DmTimerStatus : int32_t {
|
|
DM_STATUS_INIT = 0,
|
|
DM_STATUS_RUNNING = 1,
|
|
DM_STATUS_BUSY = 2,
|
|
DM_STATUS_CREATE_ERROR = 3,
|
|
DM_STATUS_FINISH = 6,
|
|
};
|
|
|
|
class DmTimer {
|
|
public:
|
|
DmTimer(const std::string &name);
|
|
~DmTimer();
|
|
DmTimerStatus Start(uint32_t timeOut, TimeoutHandle handle, void *data);
|
|
void Stop(int32_t code);
|
|
void WaitForTimeout();
|
|
std::string GetTimerName();
|
|
private:
|
|
int32_t CreateTimeFd();
|
|
void Release();
|
|
|
|
private:
|
|
std::mutex mTimerLock_;
|
|
DmTimerStatus mStatus_;
|
|
uint32_t mTimeOutSec_;
|
|
TimeoutHandle mHandle_;
|
|
void *mHandleData_;
|
|
int32_t mTimeFd_[2];
|
|
#if defined(__LITEOS_M__)
|
|
void *timerId = NULL;
|
|
#else
|
|
struct epoll_event mEv_;
|
|
struct epoll_event mEvents_[MAX_EVENTS];
|
|
int32_t mEpFd_;
|
|
std::thread mThread_;
|
|
#endif
|
|
|
|
std::string mTimerName_;
|
|
};
|
|
} // namespace DistributedHardware
|
|
} // namespace OHOS
|
|
#endif
|