76 lines
2.7 KiB
C
76 lines
2.7 KiB
C
|
|
/*
|
||
|
|
* 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 <aidl/android/hardware/tv/input/BnTvInput.h>
|
||
|
|
#include <utils/KeyedVector.h>
|
||
|
|
|
||
|
|
#include <aidl/android/hardware/tv/input/TvMessageEventType.h>
|
||
|
|
#include <fmq/AidlMessageQueue.h>
|
||
|
|
#include <map>
|
||
|
|
#include <unordered_map>
|
||
|
|
#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<int32_t, std::unordered_map<TvMessageEventType, bool>>>;
|
||
|
|
|
||
|
|
class TvInput : public BnTvInput {
|
||
|
|
public:
|
||
|
|
TvInput();
|
||
|
|
|
||
|
|
::ndk::ScopedAStatus setCallback(const shared_ptr<ITvInputCallback>& in_callback) override;
|
||
|
|
::ndk::ScopedAStatus setTvMessageEnabled(int32_t deviceId, int32_t streamId,
|
||
|
|
TvMessageEventType in_type, bool enabled) override;
|
||
|
|
::ndk::ScopedAStatus getTvMessageQueueDesc(
|
||
|
|
MQDescriptor<int8_t, SynchronizedReadWrite>* out_queue, int32_t in_deviceId,
|
||
|
|
int32_t in_streamId) override;
|
||
|
|
::ndk::ScopedAStatus getStreamConfigurations(int32_t in_deviceId,
|
||
|
|
vector<TvStreamConfig>* _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<ITvInputCallback> mCallback;
|
||
|
|
map<int32_t, shared_ptr<TvInputDeviceInfoWrapper>> mDeviceInfos;
|
||
|
|
map<int32_t, map<int32_t, shared_ptr<TvStreamConfigWrapper>>> mStreamConfigs;
|
||
|
|
TvMessageEnabledMap mTvMessageEventEnabled;
|
||
|
|
};
|
||
|
|
|
||
|
|
} // namespace input
|
||
|
|
} // namespace tv
|
||
|
|
} // namespace hardware
|
||
|
|
} // namespace android
|
||
|
|
} // namespace aidl
|