mirror of
https://github.com/openharmony/distributedhardware_distributed_input.git
synced 2026-07-18 16:04:40 -04:00
61bd55e224
Signed-off-by: l30054665 <lishang21@huawei.com>
56 lines
2.5 KiB
C++
56 lines
2.5 KiB
C++
/*
|
|
* Copyright (c) 2021-2023 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_IDISTRIBUTED_HARDWARE_H
|
|
#define OHOS_IDISTRIBUTED_HARDWARE_H
|
|
|
|
#include <cstdint>
|
|
#include <string>
|
|
#include <unordered_map>
|
|
|
|
#include "iremote_broker.h"
|
|
#include "device_type.h"
|
|
|
|
#include "distributed_hardware_fwk_kit_paras.h"
|
|
#include "iav_trans_control_center_callback.h"
|
|
#include "ipublisher_listener.h"
|
|
|
|
namespace OHOS {
|
|
namespace DistributedHardware {
|
|
class IDistributedHardware : public OHOS::IRemoteBroker {
|
|
public:
|
|
DECLARE_INTERFACE_DESCRIPTOR(u"ohos.distributedhardware.accessToken");
|
|
IDistributedHardware() = default;
|
|
virtual ~IDistributedHardware() = default;
|
|
virtual int32_t RegisterPublisherListener(const DHTopic topic, const sptr<IPublisherListener> &listener) = 0;
|
|
virtual int32_t UnregisterPublisherListener(const DHTopic topic, const sptr<IPublisherListener> &listener) = 0;
|
|
virtual int32_t PublishMessage(const DHTopic topic, const std::string &msg) = 0;
|
|
virtual std::string QueryLocalSysSpec(QueryLocalSysSpecType spec) = 0;
|
|
|
|
virtual int32_t InitializeAVCenter(const TransRole &transRole, int32_t &engineId) = 0;
|
|
virtual int32_t ReleaseAVCenter(int32_t engineId) = 0;
|
|
virtual int32_t CreateControlChannel(int32_t engineId, const std::string &peerDevId) = 0;
|
|
virtual int32_t NotifyAVCenter(int32_t engineId, const AVTransEvent &event) = 0;
|
|
virtual int32_t RegisterCtlCenterCallback(int32_t engineId,
|
|
const sptr<IAVTransControlCenterCallback> &callback) = 0;
|
|
virtual int32_t NotifySourceRemoteSinkStarted(std::string &deviceId) = 0;
|
|
virtual int32_t PauseDistributedHardware(DHType dhType, const std::string &networkId) = 0;
|
|
virtual int32_t ResumeDistributedHardware(DHType dhType, const std::string &networkId) = 0;
|
|
virtual int32_t StopDistributedHardware(DHType dhType, const std::string &networkId) = 0;
|
|
};
|
|
} // namespace DistributedHardware
|
|
} // namespace OHOS
|
|
#endif // OHOS_IDISTRIBUTED_HARDWARE_H
|