/* * Copyright (C) 2017 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. */ #ifndef ANDROID_HARDWARE_BROADCASTRADIO_V2_0_TUNER_H #define ANDROID_HARDWARE_BROADCASTRADIO_V2_0_TUNER_H #include "VirtualRadio.h" #include #include #include #include namespace android { namespace hardware { namespace broadcastradio { namespace V2_0 { namespace implementation { struct BroadcastRadio; struct TunerSession : public ITunerSession { TunerSession(BroadcastRadio& module, const sp& callback); // V2_0::ITunerSession methods virtual Return tune(const ProgramSelector& program) override; virtual Return scan(bool directionUp, bool skipSubChannel) override; virtual Return step(bool directionUp) override; virtual Return cancel() override; virtual Return startProgramListUpdates(const ProgramFilter& filter); virtual Return stopProgramListUpdates(); virtual Return isConfigFlagSet(ConfigFlag flag, isConfigFlagSet_cb _hidl_cb); virtual Return setConfigFlag(ConfigFlag flag, bool value); virtual Return setParameters(const hidl_vec& parameters, setParameters_cb _hidl_cb) override; virtual Return getParameters(const hidl_vec& keys, getParameters_cb _hidl_cb) override; virtual Return close() override; std::optional getAmFmRangeLocked() const; private: std::mutex mMut; WorkerThread mThread; bool mIsClosed = false; const sp mCallback; std::reference_wrapper mModule; bool mIsTuneCompleted = false; ProgramSelector mCurrentProgram = {}; void cancelLocked(); void tuneInternalLocked(const ProgramSelector& sel); const VirtualRadio& virtualRadio() const; const BroadcastRadio& module() const; }; } // namespace implementation } // namespace V2_0 } // namespace broadcastradio } // namespace hardware } // namespace android #endif // ANDROID_HARDWARE_BROADCASTRADIO_V2_0_TUNER_H