blob: 2ab4f407aa8ac40b3186f75dfd63164297151c6b [file] [log] [blame]
Tomasz Wasilczyk213170b2017-02-07 17:38:21 -08001/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16#ifndef ANDROID_HARDWARE_BROADCASTRADIO_V1_1_TUNER_H
17#define ANDROID_HARDWARE_BROADCASTRADIO_V1_1_TUNER_H
18
Tomasz Wasilczyk48377552017-06-22 10:45:33 -070019#include "VirtualRadio.h"
20
21#include <WorkerThread.h>
Tomasz Wasilczyk213170b2017-02-07 17:38:21 -080022#include <android/hardware/broadcastradio/1.1/ITuner.h>
23#include <android/hardware/broadcastradio/1.1/ITunerCallback.h>
24
25namespace android {
26namespace hardware {
27namespace broadcastradio {
28namespace V1_1 {
29namespace implementation {
30
Tomasz Wasilczyk213170b2017-02-07 17:38:21 -080031struct Tuner : public ITuner {
Tomasz Wasilczyk48377552017-06-22 10:45:33 -070032 Tuner(const sp<V1_0::ITunerCallback>& callback);
Tomasz Wasilczyk213170b2017-02-07 17:38:21 -080033
Tomasz Wasilczyk48377552017-06-22 10:45:33 -070034 void forceClose();
Tomasz Wasilczyk213170b2017-02-07 17:38:21 -080035
Tomasz Wasilczyk48377552017-06-22 10:45:33 -070036 // V1_1::ITuner methods
Tomasz Wasilczyk24180092017-07-14 10:44:52 -070037 virtual Return<Result> setConfiguration(const V1_0::BandConfig& config) override;
38 virtual Return<void> getConfiguration(getConfiguration_cb _hidl_cb) override;
39 virtual Return<Result> scan(V1_0::Direction direction, bool skipSubChannel) override;
40 virtual Return<Result> step(V1_0::Direction direction, bool skipSubChannel) override;
41 virtual Return<Result> tune(uint32_t channel, uint32_t subChannel) override;
42 virtual Return<Result> tune_1_1(const ProgramSelector& program) override;
43 virtual Return<Result> cancel() override;
44 virtual Return<Result> cancelAnnouncement() override;
45 virtual Return<void> getProgramInformation(getProgramInformation_cb _hidl_cb) override;
46 virtual Return<void> getProgramInformation_1_1(getProgramInformation_1_1_cb _hidl_cb) override;
47 virtual Return<ProgramListResult> startBackgroundScan() override;
48 virtual Return<void> getProgramList(const hidl_string& filter,
49 getProgramList_cb _hidl_cb) override;
50 virtual Return<void> isAnalogForced(isAnalogForced_cb _hidl_cb) override;
51 virtual Return<Result> setAnalogForced(bool isForced) override;
Tomasz Wasilczyk213170b2017-02-07 17:38:21 -080052
Tomasz Wasilczyk48377552017-06-22 10:45:33 -070053 private:
54 std::mutex mMut;
55 WorkerThread mThread;
56 bool mIsClosed = false; // TODO(b/36864090): use it
Tomasz Wasilczyk213170b2017-02-07 17:38:21 -080057
Tomasz Wasilczyk213170b2017-02-07 17:38:21 -080058 const sp<V1_0::ITunerCallback> mCallback;
59 const sp<V1_1::ITunerCallback> mCallback1_1;
Tomasz Wasilczyk213170b2017-02-07 17:38:21 -080060
Tomasz Wasilczyk48377552017-06-22 10:45:33 -070061 VirtualRadio mVirtualFm;
62
63 bool mIsAmfmConfigSet = false;
64 V1_0::BandConfig mAmfmConfig;
65 bool mIsTuneCompleted = false;
Tomasz Wasilczyka02b6ef2017-07-05 11:23:30 -070066 ProgramSelector mCurrentProgram = {};
Tomasz Wasilczyk48377552017-06-22 10:45:33 -070067 ProgramInfo mCurrentProgramInfo = {};
68
Tomasz Wasilczyka02b6ef2017-07-05 11:23:30 -070069 void tuneInternalLocked(const ProgramSelector& sel);
Tomasz Wasilczykc9ba6462017-07-07 13:28:00 -070070 bool isFmLocked(); // TODO(b/36864090): make it generic, not FM only
Tomasz Wasilczyk48377552017-06-22 10:45:33 -070071};
Tomasz Wasilczyk213170b2017-02-07 17:38:21 -080072
73} // namespace implementation
74} // namespace V1_1
75} // namespace broadcastradio
76} // namespace hardware
77} // namespace android
78
79#endif // ANDROID_HARDWARE_BROADCASTRADIO_V1_1_TUNER_H