OSDN Git Service

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