1 /* 2 * Copyright (c) 2021-2024 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 #ifndef DISRIBUTED_INPUT_SINK_STUB_H 17 #define DISRIBUTED_INPUT_SINK_STUB_H 18 19 #include "i_distributed_sink_input.h" 20 21 #include <iostream> 22 23 #include "iremote_stub.h" 24 25 namespace OHOS { 26 namespace DistributedHardware { 27 namespace DistributedInput { 28 class DistributedInputSinkStub : public IRemoteStub<IDistributedSinkInput> { 29 public: 30 DistributedInputSinkStub(); 31 ~DistributedInputSinkStub() override; 32 33 int32_t OnRemoteRequest(uint32_t code, MessageParcel &data, MessageParcel &reply, MessageOption &option) override; 34 35 int32_t InitInner(MessageParcel &data, MessageParcel &reply, MessageOption &option); 36 37 int32_t ReleaseInner(MessageParcel &data, MessageParcel &reply, MessageOption &option); 38 39 int32_t RegisterGetSinkScreenInfosInner(MessageParcel &data, MessageParcel &reply, MessageOption &option); 40 41 int32_t NotifyStartDScreenInner(MessageParcel &data, MessageParcel &reply, MessageOption &option); 42 43 int32_t NotifyStopDScreenInner(MessageParcel &data, MessageParcel &reply, MessageOption &option); 44 45 int32_t RegisterSharingDhIdListenerInner(MessageParcel &data, MessageParcel &reply, MessageOption &option); 46 47 bool HasEnableDHPermission(); 48 49 private: 50 DISALLOW_COPY_AND_MOVE(DistributedInputSinkStub); 51 }; 52 } // namespace DistributedInput 53 } // namespace DistributedHardware 54 } // namespace OHOS 55 56 #endif // DISRIBUTED_INPUT_STUB_H