/* * Copyright 2022 The Android Open Source Project * * 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. */ #pragma once #include #include #include #include #include #include #include "TvInputDeviceInfoWrapper.h" #include "TvStreamConfigWrapper.h" using namespace android; using namespace std; using ::aidl::android::hardware::common::NativeHandle; using ::aidl::android::hardware::common::fmq::MQDescriptor; using ::aidl::android::hardware::common::fmq::SynchronizedReadWrite; using ::android::AidlMessageQueue; namespace aidl { namespace android { namespace hardware { namespace tv { namespace input { using TvMessageEnabledMap = std::unordered_map< int32_t, std::unordered_map>>; class TvInput : public BnTvInput { public: TvInput(); ::ndk::ScopedAStatus setCallback(const shared_ptr& in_callback) override; ::ndk::ScopedAStatus setTvMessageEnabled(int32_t deviceId, int32_t streamId, TvMessageEventType in_type, bool enabled) override; ::ndk::ScopedAStatus getTvMessageQueueDesc( MQDescriptor* out_queue, int32_t in_deviceId, int32_t in_streamId) override; ::ndk::ScopedAStatus getStreamConfigurations(int32_t in_deviceId, vector* _aidl_return) override; ::ndk::ScopedAStatus openStream(int32_t in_deviceId, int32_t in_streamId, NativeHandle* _aidl_return) override; ::ndk::ScopedAStatus closeStream(int32_t in_deviceId, int32_t in_streamId) override; void init(); private: native_handle_t* createNativeHandle(int fd); shared_ptr mCallback; map> mDeviceInfos; map>> mStreamConfigs; TvMessageEnabledMap mTvMessageEventEnabled; shared_ptr> mQueue; }; } // namespace input } // namespace tv } // namespace hardware } // namespace android } // namespace aidl