blob: 07c0ac59794f06a60a6aeb94bf52edb9ec4cd2a4 [file] [log] [blame]
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001/*
2**
3** Copyright 2008, The Android Open Source Project
4**
5** Licensed under the Apache License, Version 2.0 (the "License");
6** you may not use this file except in compliance with the License.
7** You may obtain a copy of the License at
8**
9** http://www.apache.org/licenses/LICENSE-2.0
10**
11** Unless required by applicable law or agreed to in writing, software
12** distributed under the License is distributed on an "AS IS" BASIS,
13** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14** See the License for the specific language governing permissions and
15** limitations under the License.
16*/
17
18#include <stdint.h>
19#include <sys/types.h>
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080020
Andreas Huber20111aa2009-07-14 16:56:47 -070021#include <binder/Parcel.h>
Mathias Agopian75624082009-05-19 19:08:10 -070022#include <binder/IMemory.h>
Lajos Molnar1381d4b2014-08-07 15:18:35 -070023#include <media/IMediaCodecList.h>
Andreas Huber1b86fe02014-01-29 11:13:26 -080024#include <media/IMediaHTTPService.h>
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080025#include <media/IMediaPlayerService.h>
Marco Nelissen5dcf85a2018-10-11 09:49:02 -070026#include <media/IMediaPlayer.h>
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080027#include <media/IMediaRecorder.h>
Andreas Huber20111aa2009-07-14 16:56:47 -070028#include <media/IOMX.h>
Jeff Brown2013a542012-09-04 21:38:42 -070029#include <media/IRemoteDisplay.h>
30#include <media/IRemoteDisplayClient.h>
Andreas Hubere2b10282010-11-23 11:41:34 -080031#include <media/IStreamSource.h>
Andreas Huber20111aa2009-07-14 16:56:47 -070032
33#include <utils/Errors.h> // for status_t
Jeff Brown2013a542012-09-04 21:38:42 -070034#include <utils/String8.h>
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080035
36namespace android {
37
Svet Ganov33761132021-05-13 22:51:08 +000038using android::content::AttributionSourceState;
Philip P. Moltmannbda45752020-07-17 16:41:18 -070039
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080040enum {
Dave Burked681bbb2011-08-30 14:39:17 +010041 CREATE = IBinder::FIRST_CALL_TRANSACTION,
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080042 CREATE_MEDIA_RECORDER,
43 CREATE_METADATA_RETRIEVER,
Gloria Wang7cf180c2011-02-19 18:37:57 -080044 ADD_BATTERY_DATA,
Jeff Brown2013a542012-09-04 21:38:42 -070045 PULL_BATTERY_DATA,
46 LISTEN_FOR_REMOTE_DISPLAY,
Lajos Molnar1381d4b2014-08-07 15:18:35 -070047 GET_CODEC_LIST,
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080048};
49
50class BpMediaPlayerService: public BpInterface<IMediaPlayerService>
51{
52public:
Chih-Hung Hsieh090ef602016-04-27 10:39:54 -070053 explicit BpMediaPlayerService(const sp<IBinder>& impl)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080054 : BpInterface<IMediaPlayerService>(impl)
55 {
56 }
57
Glenn Kastenf37971f2012-02-03 11:06:53 -080058 virtual sp<IMediaMetadataRetriever> createMetadataRetriever()
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080059 {
60 Parcel data, reply;
61 data.writeInterfaceToken(IMediaPlayerService::getInterfaceDescriptor());
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080062 remote()->transact(CREATE_METADATA_RETRIEVER, data, &reply);
63 return interface_cast<IMediaMetadataRetriever>(reply.readStrongBinder());
64 }
65
Andreas Huber2db84552010-01-28 11:19:57 -080066 virtual sp<IMediaPlayer> create(
Colin Crossb8a9dbb2020-08-27 04:12:26 +000067 const sp<IMediaPlayerClient>& client, audio_session_t audioSessionId,
Svet Ganov33761132021-05-13 22:51:08 +000068 const AttributionSourceState& attributionSource) {
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080069 Parcel data, reply;
70 data.writeInterfaceToken(IMediaPlayerService::getInterfaceDescriptor());
Marco Nelissenf8880202014-11-14 07:58:25 -080071 data.writeStrongBinder(IInterface::asBinder(client));
Eric Laurenta514bdb2010-06-21 09:27:30 -070072 data.writeInt32(audioSessionId);
Svet Ganov33761132021-05-13 22:51:08 +000073 data.writeParcelable(attributionSource);
Andreas Huber2db84552010-01-28 11:19:57 -080074
Dave Burked681bbb2011-08-30 14:39:17 +010075 remote()->transact(CREATE, data, &reply);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080076 return interface_cast<IMediaPlayer>(reply.readStrongBinder());
77 }
78
Svet Ganov33761132021-05-13 22:51:08 +000079 virtual sp<IMediaRecorder> createMediaRecorder(const AttributionSourceState& attributionSource)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080080 {
81 Parcel data, reply;
82 data.writeInterfaceToken(IMediaPlayerService::getInterfaceDescriptor());
Svet Ganov33761132021-05-13 22:51:08 +000083 data.writeParcelable(attributionSource);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080084 remote()->transact(CREATE_MEDIA_RECORDER, data, &reply);
85 return interface_cast<IMediaRecorder>(reply.readStrongBinder());
86 }
87
Gloria Wang7cf180c2011-02-19 18:37:57 -080088 virtual void addBatteryData(uint32_t params) {
89 Parcel data, reply;
90 data.writeInterfaceToken(IMediaPlayerService::getInterfaceDescriptor());
91 data.writeInt32(params);
92 remote()->transact(ADD_BATTERY_DATA, data, &reply);
93 }
94
95 virtual status_t pullBatteryData(Parcel* reply) {
96 Parcel data;
97 data.writeInterfaceToken(IMediaPlayerService::getInterfaceDescriptor());
98 return remote()->transact(PULL_BATTERY_DATA, data, reply);
99 }
Jeff Brown2013a542012-09-04 21:38:42 -0700100
Svet Ganovbe71aa22015-04-28 12:06:02 -0700101 virtual sp<IRemoteDisplay> listenForRemoteDisplay(const String16 &opPackageName,
102 const sp<IRemoteDisplayClient>& client, const String8& iface)
Jeff Brown2013a542012-09-04 21:38:42 -0700103 {
104 Parcel data, reply;
105 data.writeInterfaceToken(IMediaPlayerService::getInterfaceDescriptor());
Svet Ganovbe71aa22015-04-28 12:06:02 -0700106 data.writeString16(opPackageName);
Marco Nelissenf8880202014-11-14 07:58:25 -0800107 data.writeStrongBinder(IInterface::asBinder(client));
Jeff Brown2013a542012-09-04 21:38:42 -0700108 data.writeString8(iface);
109 remote()->transact(LISTEN_FOR_REMOTE_DISPLAY, data, &reply);
110 return interface_cast<IRemoteDisplay>(reply.readStrongBinder());
111 }
Lajos Molnar1381d4b2014-08-07 15:18:35 -0700112
113 virtual sp<IMediaCodecList> getCodecList() const {
114 Parcel data, reply;
115 data.writeInterfaceToken(IMediaPlayerService::getInterfaceDescriptor());
116 remote()->transact(GET_CODEC_LIST, data, &reply);
117 return interface_cast<IMediaCodecList>(reply.readStrongBinder());
118 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800119};
120
niko56f0cc52009-06-22 08:49:52 -0700121IMPLEMENT_META_INTERFACE(MediaPlayerService, "android.media.IMediaPlayerService");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800122
123// ----------------------------------------------------------------------
124
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800125status_t BnMediaPlayerService::onTransact(
126 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
127{
Glenn Kastene53b9ea2012-03-12 16:29:55 -0700128 switch (code) {
Dave Burked681bbb2011-08-30 14:39:17 +0100129 case CREATE: {
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800130 CHECK_INTERFACE(IMediaPlayerService, data, reply);
Andreas Huber2db84552010-01-28 11:19:57 -0800131 sp<IMediaPlayerClient> client =
132 interface_cast<IMediaPlayerClient>(data.readStrongBinder());
Glenn Kastend848eb42016-03-08 13:42:11 -0800133 audio_session_t audioSessionId = (audio_session_t) data.readInt32();
Svet Ganov33761132021-05-13 22:51:08 +0000134 AttributionSourceState attributionSource;
135 status_t status = data.readParcelable(&attributionSource);
Philip P. Moltmannbda45752020-07-17 16:41:18 -0700136 if (status != NO_ERROR) {
137 return status;
Colin Crossb8a9dbb2020-08-27 04:12:26 +0000138 }
Svet Ganov33761132021-05-13 22:51:08 +0000139 sp<IMediaPlayer> player = create(client, audioSessionId, attributionSource);
Marco Nelissenf8880202014-11-14 07:58:25 -0800140 reply->writeStrongBinder(IInterface::asBinder(player));
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800141 return NO_ERROR;
142 } break;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800143 case CREATE_MEDIA_RECORDER: {
144 CHECK_INTERFACE(IMediaPlayerService, data, reply);
Svet Ganov33761132021-05-13 22:51:08 +0000145 AttributionSourceState attributionSource;
146 status_t status = data.readParcelable(&attributionSource);
Philip P. Moltmannbda45752020-07-17 16:41:18 -0700147 if (status != NO_ERROR) {
148 return status;
149 }
Svet Ganov33761132021-05-13 22:51:08 +0000150 sp<IMediaRecorder> recorder = createMediaRecorder(attributionSource);
Marco Nelissenf8880202014-11-14 07:58:25 -0800151 reply->writeStrongBinder(IInterface::asBinder(recorder));
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800152 return NO_ERROR;
153 } break;
154 case CREATE_METADATA_RETRIEVER: {
155 CHECK_INTERFACE(IMediaPlayerService, data, reply);
Glenn Kastenf37971f2012-02-03 11:06:53 -0800156 sp<IMediaMetadataRetriever> retriever = createMetadataRetriever();
Marco Nelissenf8880202014-11-14 07:58:25 -0800157 reply->writeStrongBinder(IInterface::asBinder(retriever));
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800158 return NO_ERROR;
159 } break;
Gloria Wang7cf180c2011-02-19 18:37:57 -0800160 case ADD_BATTERY_DATA: {
161 CHECK_INTERFACE(IMediaPlayerService, data, reply);
162 uint32_t params = data.readInt32();
163 addBatteryData(params);
164 return NO_ERROR;
165 } break;
166 case PULL_BATTERY_DATA: {
167 CHECK_INTERFACE(IMediaPlayerService, data, reply);
168 pullBatteryData(reply);
169 return NO_ERROR;
170 } break;
Jeff Brown2013a542012-09-04 21:38:42 -0700171 case LISTEN_FOR_REMOTE_DISPLAY: {
172 CHECK_INTERFACE(IMediaPlayerService, data, reply);
Svet Ganovbe71aa22015-04-28 12:06:02 -0700173 const String16 opPackageName = data.readString16();
Jeff Brown2013a542012-09-04 21:38:42 -0700174 sp<IRemoteDisplayClient> client(
175 interface_cast<IRemoteDisplayClient>(data.readStrongBinder()));
Wei Jia2afac0c2016-01-07 12:13:07 -0800176 if (client == NULL) {
177 reply->writeStrongBinder(NULL);
178 return NO_ERROR;
179 }
Jeff Brown2013a542012-09-04 21:38:42 -0700180 String8 iface(data.readString8());
Svet Ganovbe71aa22015-04-28 12:06:02 -0700181 sp<IRemoteDisplay> display(listenForRemoteDisplay(opPackageName, client, iface));
Marco Nelissenf8880202014-11-14 07:58:25 -0800182 reply->writeStrongBinder(IInterface::asBinder(display));
Jeff Brown2013a542012-09-04 21:38:42 -0700183 return NO_ERROR;
184 } break;
Lajos Molnar1381d4b2014-08-07 15:18:35 -0700185 case GET_CODEC_LIST: {
186 CHECK_INTERFACE(IMediaPlayerService, data, reply);
187 sp<IMediaCodecList> mcl = getCodecList();
Marco Nelissenf8880202014-11-14 07:58:25 -0800188 reply->writeStrongBinder(IInterface::asBinder(mcl));
Lajos Molnar1381d4b2014-08-07 15:18:35 -0700189 return NO_ERROR;
190 } break;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800191 default:
192 return BBinder::onTransact(code, data, reply, flags);
193 }
194}
195
196// ----------------------------------------------------------------------------
197
Glenn Kasten40bc9062015-03-20 09:09:33 -0700198} // namespace android