Files
tangfan 370d374c10 fix code style
Signed-off-by: tangfan <1824525929@qq.com>
2022-03-21 21:05:21 +08:00

43 lines
1.4 KiB
C++

/*
* Copyright (c) 2021 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_HARDWARE_COMPONENT_ENABLE_H
#define OHOS_DISTRIBUTED_HARDWARE_COMPONENT_ENABLE_H
#include <condition_variable>
#include <mutex>
#include "idistributed_hardware_source.h"
namespace OHOS {
namespace DistributedHardware {
class ComponentEnable : public std::enable_shared_from_this<ComponentEnable>, public RegisterCallback {
public:
ComponentEnable();
virtual ~ComponentEnable();
int32_t Enable(const std::string &uuid, const std::string &dhId, const EnableParam &param,
IDistributedHardwareSource *handler);
int32_t OnRegisterResult(const std::string &uuid, const std::string &dhId, int32_t status,
const std::string &data) override;
private:
int32_t status_;
std::mutex mutex_;
std::condition_variable conVar_;
};
} // namespace DistributedHardware
} // namespace OHOS
#endif