blob: 24c60ee460b9ff18d9ebdc24049f975a2ccabfc9 [file] [log] [blame]
Tomasz Wasilczyka02b6ef2017-07-05 11:23:30 -07001/*
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_UTILS_H
17#define ANDROID_HARDWARE_BROADCASTRADIO_V1_1_UTILS_H
18
19#include <android/hardware/broadcastradio/1.1/types.h>
20#include <chrono>
21#include <queue>
22#include <thread>
23
24namespace android {
25namespace hardware {
26namespace broadcastradio {
27namespace V1_1 {
Tomasz Wasilczyka02b6ef2017-07-05 11:23:30 -070028namespace utils {
29
Tomasz Wasilczyk5be4c2b2017-07-27 13:17:07 -070030// TODO(b/64115813): move it out from frameworks/base/services/core/jni/BroadcastRadio/types.h
31enum class HalRevision : uint32_t {
32 V1_0 = 1,
33 V1_1,
34};
35
Tomasz Wasilczyka02b6ef2017-07-05 11:23:30 -070036/**
37 * Checks, if {@code pointer} tunes to {@channel}.
38 *
39 * For example, having a channel {AMFM_FREQUENCY = 103.3}:
40 * - selector {AMFM_FREQUENCY = 103.3, HD_SUBCHANNEL = 0} can tune to this channel;
41 * - selector {AMFM_FREQUENCY = 103.3, HD_SUBCHANNEL = 1} can't.
42 *
43 * @param pointer selector we're trying to match against channel.
44 * @param channel existing channel.
45 */
46bool tunesTo(const ProgramSelector& pointer, const ProgramSelector& channel);
47
48ProgramType getType(const ProgramSelector& sel);
49bool isAmFm(const ProgramType type);
50
Tomasz Wasilczyk701a5bd2017-08-10 12:32:45 -070051bool isAm(const V1_0::Band band);
52bool isFm(const V1_0::Band band);
53
Tomasz Wasilczyka02b6ef2017-07-05 11:23:30 -070054bool hasId(const ProgramSelector& sel, const IdentifierType type);
55
56/**
57 * Returns ID (either primary or secondary) for a given program selector.
58 *
59 * If the selector does not contain given type, returns 0 and emits a warning.
60 */
61uint64_t getId(const ProgramSelector& sel, const IdentifierType type);
62
63/**
64 * Returns ID (either primary or secondary) for a given program selector.
65 *
66 * If the selector does not contain given type, returns default value.
67 */
68uint64_t getId(const ProgramSelector& sel, const IdentifierType type, uint64_t defval);
69
70ProgramSelector make_selector(V1_0::Band band, uint32_t channel, uint32_t subChannel = 0);
71
Tomasz Wasilczyk2834b952017-07-12 14:17:09 -070072bool getLegacyChannel(const ProgramSelector& sel, uint32_t* channelOut, uint32_t* subChannelOut);
Tomasz Wasilczyka02b6ef2017-07-05 11:23:30 -070073
74bool isDigital(const ProgramSelector& sel);
75
76} // namespace utils
Tomasz Wasilczyka02b6ef2017-07-05 11:23:30 -070077} // namespace V1_1
Tomasz Wasilczykc1763a62017-07-25 10:01:17 -070078
79namespace V1_0 {
80
81bool operator==(const BandConfig& l, const BandConfig& r);
82
83} // namespace V1_0
84
Tomasz Wasilczyka02b6ef2017-07-05 11:23:30 -070085} // namespace broadcastradio
86} // namespace hardware
87} // namespace android
88
89#endif // ANDROID_HARDWARE_BROADCASTRADIO_V1_1_UTILS_H