mirror of
https://github.com/openharmony/distributeddatamgr_datamgr.git
synced 2026-07-01 22:14:08 -04:00
0796446615
Signed-off-by: Hollokin <taoyuxin2@huawei.com>
52 lines
1.8 KiB
C++
52 lines
1.8 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 OHOS_DISTRIBUTED_DATA_FRAMEWORKS_KVDB_DEV_MANAGER_H
|
|
#define OHOS_DISTRIBUTED_DATA_FRAMEWORKS_KVDB_DEV_MANAGER_H
|
|
#include <string>
|
|
#include "types.h"
|
|
#include "lru_bucket.h"
|
|
#include "device_manager.h"
|
|
namespace OHOS::DistributedKv {
|
|
class DevManager {
|
|
public:
|
|
static constexpr size_t MAX_ID_LEN = 64;
|
|
struct DetailInfo {
|
|
std::string uuid;
|
|
std::string udid;
|
|
std::string networkId;
|
|
std::string deviceName;
|
|
std::string deviceType;
|
|
};
|
|
static DevManager &GetInstance();
|
|
std::string ToUUID(const std::string &networkId) const;
|
|
std::string ToNetworkId(const std::string &uuid) const;
|
|
const DetailInfo &GetLocalDevice();
|
|
std::vector<DetailInfo> GetRemoteDevices() const;
|
|
void Online(const std::string &networkId);
|
|
void Offline(const std::string &networkId);
|
|
void OnChanged(const std::string &networkId);
|
|
void RegisterDevCallback();
|
|
private:
|
|
DevManager();
|
|
~DevManager() = default;
|
|
int32_t Init();
|
|
const DetailInfo invalidDetail_ {};
|
|
mutable std::mutex mutex_ {};
|
|
DetailInfo localInfo_ {};
|
|
mutable LRUBucket<std::string, DetailInfo> deviceInfos_ {64};
|
|
};
|
|
} // namespace OHOS::DistributedKv
|
|
#endif // OHOS_DISTRIBUTED_DATA_FRAMEWORKS_KVDB_DEV_MANAGER_H
|