Jean-Michel Trivi | 0008a48 | 2016-12-26 15:58:24 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2016 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 | |
| 17 | #define LOG_TAG "IAudioManager" |
| 18 | //#define LOG_NDEBUG 0 |
| 19 | #include <utils/Log.h> |
| 20 | |
| 21 | #include <stdint.h> |
| 22 | #include <sys/types.h> |
| 23 | |
| 24 | #include <binder/Parcel.h> |
| 25 | #include <audiomanager/AudioManager.h> |
| 26 | #include <audiomanager/IAudioManager.h> |
| 27 | |
| 28 | namespace android { |
| 29 | |
| 30 | class BpAudioManager : public BpInterface<IAudioManager> |
| 31 | { |
| 32 | public: |
| 33 | explicit BpAudioManager(const sp<IBinder>& impl) |
| 34 | : BpInterface<IAudioManager>(impl) |
| 35 | { |
| 36 | } |
| 37 | |
Jean-Michel Trivi | 6318932 | 2017-01-05 18:05:28 -0800 | [diff] [blame] | 38 | virtual audio_unique_id_t trackPlayer(player_type_t playerType, audio_usage_t usage, |
| 39 | audio_content_type_t content, const sp<IBinder>& player) { |
Jean-Michel Trivi | 0008a48 | 2016-12-26 15:58:24 -0800 | [diff] [blame] | 40 | Parcel data, reply; |
| 41 | data.writeInterfaceToken(IAudioManager::getInterfaceDescriptor()); |
| 42 | data.writeInt32(1); // non-null PlayerIdCard parcelable |
| 43 | // marshall PlayerIdCard data |
| 44 | data.writeInt32((int32_t) playerType); |
| 45 | // write attributes of PlayerIdCard |
Jean-Michel Trivi | 6318932 | 2017-01-05 18:05:28 -0800 | [diff] [blame] | 46 | data.writeInt32((int32_t) usage); |
| 47 | data.writeInt32((int32_t) content); |
Jean-Michel Trivi | 0008a48 | 2016-12-26 15:58:24 -0800 | [diff] [blame] | 48 | data.writeInt32(0 /*source: none here, this is a player*/); |
| 49 | data.writeInt32(0 /*flags*/); |
| 50 | // write attributes' tags |
| 51 | data.writeInt32(1 /*FLATTEN_TAGS*/); |
| 52 | data.writeString16(String16("")); // no tags |
| 53 | // write attributes' bundle |
| 54 | data.writeInt32(-1977 /*ATTR_PARCEL_IS_NULL_BUNDLE*/); // no bundle |
Jean-Michel Trivi | 6318932 | 2017-01-05 18:05:28 -0800 | [diff] [blame] | 55 | // write IPlayer |
| 56 | data.writeStrongBinder(player); |
Jean-Michel Trivi | 0008a48 | 2016-12-26 15:58:24 -0800 | [diff] [blame] | 57 | // get new PIId in reply |
| 58 | const status_t res = remote()->transact(TRACK_PLAYER, data, &reply, 0); |
| 59 | if (res != OK || reply.readExceptionCode() != 0) { |
| 60 | ALOGE("trackPlayer() failed, piid is %d", PLAYER_PIID_INVALID); |
| 61 | return PLAYER_PIID_INVALID; |
| 62 | } else { |
| 63 | const audio_unique_id_t piid = (audio_unique_id_t) reply.readInt32(); |
| 64 | ALOGV("trackPlayer() returned piid %d", piid); |
| 65 | return piid; |
| 66 | } |
| 67 | } |
| 68 | |
Jean-Michel Trivi | 6318932 | 2017-01-05 18:05:28 -0800 | [diff] [blame] | 69 | virtual status_t playerAttributes(audio_unique_id_t piid, audio_usage_t usage, |
| 70 | audio_content_type_t content) { |
Jean-Michel Trivi | 0008a48 | 2016-12-26 15:58:24 -0800 | [diff] [blame] | 71 | Parcel data, reply; |
| 72 | data.writeInterfaceToken(IAudioManager::getInterfaceDescriptor()); |
Jean-Michel Trivi | 6318932 | 2017-01-05 18:05:28 -0800 | [diff] [blame] | 73 | data.writeInt32((int32_t) piid); |
Jean-Michel Trivi | 0008a48 | 2016-12-26 15:58:24 -0800 | [diff] [blame] | 74 | data.writeInt32(1); // non-null AudioAttributes parcelable |
Jean-Michel Trivi | 6318932 | 2017-01-05 18:05:28 -0800 | [diff] [blame] | 75 | data.writeInt32((int32_t) usage); |
| 76 | data.writeInt32((int32_t) content); |
Jean-Michel Trivi | 0008a48 | 2016-12-26 15:58:24 -0800 | [diff] [blame] | 77 | data.writeInt32(0 /*source: none here, this is a player*/); |
| 78 | data.writeInt32(0 /*flags*/); |
| 79 | // write attributes' tags |
| 80 | data.writeInt32(1 /*FLATTEN_TAGS*/); |
| 81 | data.writeString16(String16("")); // no tags |
| 82 | // write attributes' bundle |
| 83 | data.writeInt32(-1977 /*ATTR_PARCEL_IS_NULL_BUNDLE*/); // no bundle |
| 84 | return remote()->transact(PLAYER_ATTRIBUTES, data, &reply, IBinder::FLAG_ONEWAY); |
| 85 | } |
| 86 | |
Oscar Azucena | fae808f | 2020-12-22 20:40:07 +0000 | [diff] [blame^] | 87 | virtual status_t playerEvent(audio_unique_id_t piid, player_state_t event, |
| 88 | audio_port_handle_t deviceId) { |
Jean-Michel Trivi | 0008a48 | 2016-12-26 15:58:24 -0800 | [diff] [blame] | 89 | Parcel data, reply; |
| 90 | data.writeInterfaceToken(IAudioManager::getInterfaceDescriptor()); |
Jean-Michel Trivi | 6318932 | 2017-01-05 18:05:28 -0800 | [diff] [blame] | 91 | data.writeInt32((int32_t) piid); |
| 92 | data.writeInt32((int32_t) event); |
Oscar Azucena | fae808f | 2020-12-22 20:40:07 +0000 | [diff] [blame^] | 93 | data.writeInt32((int32_t) deviceId); |
Jean-Michel Trivi | 0008a48 | 2016-12-26 15:58:24 -0800 | [diff] [blame] | 94 | return remote()->transact(PLAYER_EVENT, data, &reply, IBinder::FLAG_ONEWAY); |
| 95 | } |
| 96 | |
Jean-Michel Trivi | 6318932 | 2017-01-05 18:05:28 -0800 | [diff] [blame] | 97 | virtual status_t releasePlayer(audio_unique_id_t piid) { |
Jean-Michel Trivi | 0008a48 | 2016-12-26 15:58:24 -0800 | [diff] [blame] | 98 | Parcel data, reply; |
| 99 | data.writeInterfaceToken(IAudioManager::getInterfaceDescriptor()); |
Jean-Michel Trivi | 6318932 | 2017-01-05 18:05:28 -0800 | [diff] [blame] | 100 | data.writeInt32((int32_t) piid); |
Jean-Michel Trivi | 0008a48 | 2016-12-26 15:58:24 -0800 | [diff] [blame] | 101 | return remote()->transact(RELEASE_PLAYER, data, &reply, IBinder::FLAG_ONEWAY); |
| 102 | } |
Mikhail Naganov | decb629 | 2019-04-10 16:49:02 -0700 | [diff] [blame] | 103 | |
| 104 | virtual audio_unique_id_t trackRecorder(const sp<IBinder>& recorder) { |
| 105 | Parcel data, reply; |
| 106 | data.writeInterfaceToken(IAudioManager::getInterfaceDescriptor()); |
| 107 | data.writeStrongBinder(recorder); |
| 108 | // get new RIId in reply |
| 109 | const status_t res = remote()->transact(TRACK_RECORDER, data, &reply, 0); |
| 110 | if (res != OK || reply.readExceptionCode() != 0) { |
| 111 | ALOGE("trackRecorder() failed, riid is %d", RECORD_RIID_INVALID); |
| 112 | return RECORD_RIID_INVALID; |
| 113 | } else { |
| 114 | const audio_unique_id_t riid = (audio_unique_id_t) reply.readInt32(); |
| 115 | ALOGV("trackRecorder() returned riid %d", riid); |
| 116 | return riid; |
| 117 | } |
| 118 | } |
| 119 | |
| 120 | virtual status_t recorderEvent(audio_unique_id_t riid, recorder_state_t event) { |
| 121 | Parcel data, reply; |
| 122 | data.writeInterfaceToken(IAudioManager::getInterfaceDescriptor()); |
| 123 | data.writeInt32((int32_t) riid); |
| 124 | data.writeInt32((int32_t) event); |
| 125 | return remote()->transact(RECORDER_EVENT, data, &reply, IBinder::FLAG_ONEWAY); |
| 126 | } |
Mikhail Naganov | b8bff0c | 2019-05-09 09:06:15 -0700 | [diff] [blame] | 127 | |
| 128 | virtual status_t releaseRecorder(audio_unique_id_t riid) { |
| 129 | Parcel data, reply; |
| 130 | data.writeInterfaceToken(IAudioManager::getInterfaceDescriptor()); |
| 131 | data.writeInt32((int32_t) riid); |
| 132 | return remote()->transact(RELEASE_RECORDER, data, &reply, IBinder::FLAG_ONEWAY); |
| 133 | } |
Jean-Michel Trivi | 0008a48 | 2016-12-26 15:58:24 -0800 | [diff] [blame] | 134 | }; |
| 135 | |
| 136 | IMPLEMENT_META_INTERFACE(AudioManager, "android.media.IAudioService"); |
| 137 | |
| 138 | // ---------------------------------------------------------------------------- |
| 139 | |
| 140 | }; // namespace android |