blob: 1110e79f6d0daf4982d831a2aa0b716014b41af5 [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 {
28namespace implementation {
29namespace utils {
30
31/**
32 * Checks, if {@code pointer} tunes to {@channel}.
33 *
34 * For example, having a channel {AMFM_FREQUENCY = 103.3}:
35 * - selector {AMFM_FREQUENCY = 103.3, HD_SUBCHANNEL = 0} can tune to this channel;
36 * - selector {AMFM_FREQUENCY = 103.3, HD_SUBCHANNEL = 1} can't.
37 *
38 * @param pointer selector we're trying to match against channel.
39 * @param channel existing channel.
40 */
41bool tunesTo(const ProgramSelector& pointer, const ProgramSelector& channel);
42
43ProgramType getType(const ProgramSelector& sel);
44bool isAmFm(const ProgramType type);
45
46bool hasId(const ProgramSelector& sel, const IdentifierType type);
47
48/**
49 * Returns ID (either primary or secondary) for a given program selector.
50 *
51 * If the selector does not contain given type, returns 0 and emits a warning.
52 */
53uint64_t getId(const ProgramSelector& sel, const IdentifierType type);
54
55/**
56 * Returns ID (either primary or secondary) for a given program selector.
57 *
58 * If the selector does not contain given type, returns default value.
59 */
60uint64_t getId(const ProgramSelector& sel, const IdentifierType type, uint64_t defval);
61
62ProgramSelector make_selector(V1_0::Band band, uint32_t channel, uint32_t subChannel = 0);
63
64bool getLegacyChannel(const ProgramSelector& sel, uint32_t& channelOut, uint32_t& subChannelOut);
65
66bool isDigital(const ProgramSelector& sel);
67
68} // namespace utils
69} // namespace implementation
70} // namespace V1_1
71} // namespace broadcastradio
72} // namespace hardware
73} // namespace android
74
75#endif // ANDROID_HARDWARE_BROADCASTRADIO_V1_1_UTILS_H