Files
device_manager/services/devicemanagerservice/include/devicestate/dm_device_state_manager.h
T
wangyb0625 75b2d9044d Timer重构和UT
Signed-off-by: wangyb0625 <wangyibo38@huawei.com>
2022-04-22 15:51:35 +08:00

173 lines
5.8 KiB
C++
Executable File

/*
* 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 OHOS_DM_DEVICE_STATE_MANAGER_H
#define OHOS_DM_DEVICE_STATE_MANAGER_H
#include <string>
#include <memory>
#if defined(__LITEOS_M__)
#include "dm_mutex.h"
#else
#include <mutex>
#endif
#include "device_manager_service_listener.h"
#include "dm_adapter_manager.h"
#include "softbus_connector.h"
#include "dm_timer.h"
#include "hichain_connector.h"
namespace OHOS {
namespace DistributedHardware {
#define OFFLINE_TIMEOUT 300
struct StateTimerInfo {
std::string timerName;
std::string netWorkId;
std::string deviceId;
};
class DmDeviceStateManager final : public ISoftbusStateCallback,
public std::enable_shared_from_this<DmDeviceStateManager> {
public:
DmDeviceStateManager(std::shared_ptr<SoftbusConnector> softbusConnector,
std::shared_ptr<DeviceManagerServiceListener> listener,
std::shared_ptr<HiChainConnector> hiChainConnector);
~DmDeviceStateManager();
/**
* @tc.name: DmDeviceStateManager::RegisterProfileListener
* @tc.desc: Register Profile Listener of the Dm Device State Manager
* @tc.type: FUNC
*/
int32_t RegisterProfileListener(const std::string &pkgName, const DmDeviceInfo &info);
/**
* @tc.name: DmDeviceStateManager::UnRegisterProfileListener
* @tc.desc: UnRegister Profile Listener of the Dm Device State Manager
* @tc.type: FUNC
*/
int32_t UnRegisterProfileListener(const std::string &pkgName, const DmDeviceInfo &info);
/**
* @tc.name: DmDeviceStateManager::PostDeviceOnline
* @tc.desc: Post Device Online of the Dm Device State Manager
* @tc.type: FUNC
*/
void PostDeviceOnline(const std::string &pkgName, const DmDeviceInfo &info);
/**
* @tc.name: DmDeviceStateManager::PostDeviceOffline
* @tc.desc: Post Device Offline of the Dm Device State Manager
* @tc.type: FUNC
*/
void PostDeviceOffline(const std::string &pkgName, const DmDeviceInfo &info);
/**
* @tc.name: DmDeviceStateManager::OnDeviceOnline
* @tc.desc: OnDevice Online of the Dm Device State Manager
* @tc.type: FUNC
*/
void OnDeviceOnline(const std::string &pkgName, const DmDeviceInfo &info);
/**
* @tc.name: DmDeviceStateManager::OnDeviceOffline
* @tc.desc: OnDevice Offline of the Dm Device State Manager
* @tc.type: FUNC
*/
void OnDeviceOffline(const std::string &pkgName, const DmDeviceInfo &info);
/**
* @tc.name: DmDeviceStateManager::OnDeviceChanged
* @tc.desc: OnDevice Changed of the Dm Device State Manager
* @tc.type: FUNC
*/
void OnDeviceChanged(const std::string &pkgName, const DmDeviceInfo &info);
/**
* @tc.name: DmDeviceStateManager::OnDeviceReady
* @tc.desc: OnDevice Ready of the Dm Device State Manager
* @tc.type: FUNC
*/
void OnDeviceReady(const std::string &pkgName, const DmDeviceInfo &info);
/**
* @tc.name: DmDeviceStateManager::OnProfileReady
* @tc.desc: OnProfile Ready of the Dm Device State Manager
* @tc.type: FUNC
*/
void OnProfileReady(const std::string &pkgName, const std::string &deviceId);
/**
* @tc.name: DmDeviceStateManager::RegisterSoftbusStateCallback
* @tc.desc: Register Softbus State Callback of the Dm Device State Manager
* @tc.type: FUNC
*/
int32_t RegisterSoftbusStateCallback();
/**
* @tc.name: DmDeviceStateManager::RegisterOffLineTimer
* @tc.desc: Register OffLine Timerof the Dm Device State Manager
* @tc.type: FUNC
*/
void RegisterOffLineTimer(const DmDeviceInfo &deviceInfo);
/**
* @tc.name: DmDeviceStateManager::StartOffLineTimer
* @tc.desc: Start OffLine Timer of the Dm Device State Manager
* @tc.type: FUNC
*/
void StartOffLineTimer(const DmDeviceInfo &deviceInfo);
/**
* @tc.name: DmDeviceStateManager::DeleteTimeOutGroup
* @tc.desc: Delete TimeOut Group of the Dm Device State Manager
* @tc.type: FUNC
*/
void DeleteTimeOutGroup(std::string stateTimer);
/**
* @tc.name: DmDeviceStateManager::RegisterDevStateCallback
* @tc.desc: Register DevState Callback of the Dm Device State Manager
* @tc.type: FUNC
*/
void RegisterDevStateCallback(const std::string &pkgName, const std::string &extra);
/**
* @tc.name: DmDeviceStateManager::UnRegisterDevStateCallback
* @tc.desc: UnRegister DevState Callback of the Dm Device State Manager
* @tc.type: FUNC
*/
void UnRegisterDevStateCallback(const std::string &pkgName, const std::string &extra);
private:
int32_t cumulativeQuantity_ = 0;
std::string profileSoName_;
#if !defined(__LITEOS_M__)
std::mutex timerMapMutex_;
std::mutex remoteDeviceInfosMutex_;
#endif
std::shared_ptr<SoftbusConnector> softbusConnector_;
std::shared_ptr<DeviceManagerServiceListener> listener_;
std::map<std::string, DmDeviceInfo> remoteDeviceInfos_;
std::map<std::string, std::string> decisionInfos_;
std::map<std::string, StateTimerInfo> stateTimerInfoMap_;
std::shared_ptr<TimeHeap> timerHeap_;
std::shared_ptr<HiChainConnector> hiChainConnector_;
std::string decisionSoName_;
};
} // namespace DistributedHardware
} // namespace OHOS
#endif // OHOS_DM_DEVICE_STATE_MANAGER_H