blob: bd18a40d6351d110d97cbd5ce2fd7c08b226baf0 [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
38enum {
Dave Burked681bbb2011-08-30 14:39:17 +010039 CREATE = IBinder::FIRST_CALL_TRANSACTION,
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080040 CREATE_MEDIA_RECORDER,
41 CREATE_METADATA_RETRIEVER,
Gloria Wang7cf180c2011-02-19 18:37:57 -080042 ADD_BATTERY_DATA,
Jeff Brown2013a542012-09-04 21:38:42 -070043 PULL_BATTERY_DATA,
44 LISTEN_FOR_REMOTE_DISPLAY,
Lajos Molnar1381d4b2014-08-07 15:18:35 -070045 GET_CODEC_LIST,
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080046};
47
48class BpMediaPlayerService: public BpInterface<IMediaPlayerService>
49{
50public:
Chih-Hung Hsieh090ef602016-04-27 10:39:54 -070051 explicit BpMediaPlayerService(const sp<IBinder>& impl)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080052 : BpInterface<IMediaPlayerService>(impl)
53 {
54 }
55
Glenn Kastenf37971f2012-02-03 11:06:53 -080056 virtual sp<IMediaMetadataRetriever> createMetadataRetriever()
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080057 {
58 Parcel data, reply;
59 data.writeInterfaceToken(IMediaPlayerService::getInterfaceDescriptor());
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080060 remote()->transact(CREATE_METADATA_RETRIEVER, data, &reply);
61 return interface_cast<IMediaMetadataRetriever>(reply.readStrongBinder());
62 }
63
Andreas Huber2db84552010-01-28 11:19:57 -080064 virtual sp<IMediaPlayer> create(
Glenn Kastend848eb42016-03-08 13:42:11 -080065 const sp<IMediaPlayerClient>& client, audio_session_t audioSessionId) {
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080066 Parcel data, reply;
67 data.writeInterfaceToken(IMediaPlayerService::getInterfaceDescriptor());
Marco Nelissenf8880202014-11-14 07:58:25 -080068 data.writeStrongBinder(IInterface::asBinder(client));
Eric Laurenta514bdb2010-06-21 09:27:30 -070069 data.writeInt32(audioSessionId);
Andreas Huber2db84552010-01-28 11:19:57 -080070
Dave Burked681bbb2011-08-30 14:39:17 +010071 remote()->transact(CREATE, data, &reply);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080072 return interface_cast<IMediaPlayer>(reply.readStrongBinder());
73 }
74
Svet Ganovbe71aa22015-04-28 12:06:02 -070075 virtual sp<IMediaRecorder> createMediaRecorder(const String16 &opPackageName)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080076 {
77 Parcel data, reply;
78 data.writeInterfaceToken(IMediaPlayerService::getInterfaceDescriptor());
Svet Ganovbe71aa22015-04-28 12:06:02 -070079 data.writeString16(opPackageName);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080080 remote()->transact(CREATE_MEDIA_RECORDER, data, &reply);
81 return interface_cast<IMediaRecorder>(reply.readStrongBinder());
82 }
83
Gloria Wang7cf180c2011-02-19 18:37:57 -080084 virtual void addBatteryData(uint32_t params) {
85 Parcel data, reply;
86 data.writeInterfaceToken(IMediaPlayerService::getInterfaceDescriptor());
87 data.writeInt32(params);
88 remote()->transact(ADD_BATTERY_DATA, data, &reply);
89 }
90
91 virtual status_t pullBatteryData(Parcel* reply) {
92 Parcel data;
93 data.writeInterfaceToken(IMediaPlayerService::getInterfaceDescriptor());
94 return remote()->transact(PULL_BATTERY_DATA, data, reply);
95 }
Jeff Brown2013a542012-09-04 21:38:42 -070096
Svet Ganovbe71aa22015-04-28 12:06:02 -070097 virtual sp<IRemoteDisplay> listenForRemoteDisplay(const String16 &opPackageName,
98 const sp<IRemoteDisplayClient>& client, const String8& iface)
Jeff Brown2013a542012-09-04 21:38:42 -070099 {
100 Parcel data, reply;
101 data.writeInterfaceToken(IMediaPlayerService::getInterfaceDescriptor());
Svet Ganovbe71aa22015-04-28 12:06:02 -0700102 data.writeString16(opPackageName);
Marco Nelissenf8880202014-11-14 07:58:25 -0800103 data.writeStrongBinder(IInterface::asBinder(client));
Jeff Brown2013a542012-09-04 21:38:42 -0700104 data.writeString8(iface);
105 remote()->transact(LISTEN_FOR_REMOTE_DISPLAY, data, &reply);
106 return interface_cast<IRemoteDisplay>(reply.readStrongBinder());
107 }
Lajos Molnar1381d4b2014-08-07 15:18:35 -0700108
109 virtual sp<IMediaCodecList> getCodecList() const {
110 Parcel data, reply;
111 data.writeInterfaceToken(IMediaPlayerService::getInterfaceDescriptor());
112 remote()->transact(GET_CODEC_LIST, data, &reply);
113 return interface_cast<IMediaCodecList>(reply.readStrongBinder());
114 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800115};
116
niko56f0cc52009-06-22 08:49:52 -0700117IMPLEMENT_META_INTERFACE(MediaPlayerService, "android.media.IMediaPlayerService");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800118
119// ----------------------------------------------------------------------
120
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800121status_t BnMediaPlayerService::onTransact(
122 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
123{
Glenn Kastene53b9ea2012-03-12 16:29:55 -0700124 switch (code) {
Dave Burked681bbb2011-08-30 14:39:17 +0100125 case CREATE: {
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800126 CHECK_INTERFACE(IMediaPlayerService, data, reply);
Andreas Huber2db84552010-01-28 11:19:57 -0800127 sp<IMediaPlayerClient> client =
128 interface_cast<IMediaPlayerClient>(data.readStrongBinder());
Glenn Kastend848eb42016-03-08 13:42:11 -0800129 audio_session_t audioSessionId = (audio_session_t) data.readInt32();
Glenn Kastenf37971f2012-02-03 11:06:53 -0800130 sp<IMediaPlayer> player = create(client, audioSessionId);
Marco Nelissenf8880202014-11-14 07:58:25 -0800131 reply->writeStrongBinder(IInterface::asBinder(player));
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800132 return NO_ERROR;
133 } break;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800134 case CREATE_MEDIA_RECORDER: {
135 CHECK_INTERFACE(IMediaPlayerService, data, reply);
Svet Ganovbe71aa22015-04-28 12:06:02 -0700136 const String16 opPackageName = data.readString16();
137 sp<IMediaRecorder> recorder = createMediaRecorder(opPackageName);
Marco Nelissenf8880202014-11-14 07:58:25 -0800138 reply->writeStrongBinder(IInterface::asBinder(recorder));
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800139 return NO_ERROR;
140 } break;
141 case CREATE_METADATA_RETRIEVER: {
142 CHECK_INTERFACE(IMediaPlayerService, data, reply);
Glenn Kastenf37971f2012-02-03 11:06:53 -0800143 sp<IMediaMetadataRetriever> retriever = createMetadataRetriever();
Marco Nelissenf8880202014-11-14 07:58:25 -0800144 reply->writeStrongBinder(IInterface::asBinder(retriever));
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800145 return NO_ERROR;
146 } break;
Gloria Wang7cf180c2011-02-19 18:37:57 -0800147 case ADD_BATTERY_DATA: {
148 CHECK_INTERFACE(IMediaPlayerService, data, reply);
149 uint32_t params = data.readInt32();
150 addBatteryData(params);
151 return NO_ERROR;
152 } break;
153 case PULL_BATTERY_DATA: {
154 CHECK_INTERFACE(IMediaPlayerService, data, reply);
155 pullBatteryData(reply);
156 return NO_ERROR;
157 } break;
Jeff Brown2013a542012-09-04 21:38:42 -0700158 case LISTEN_FOR_REMOTE_DISPLAY: {
159 CHECK_INTERFACE(IMediaPlayerService, data, reply);
Svet Ganovbe71aa22015-04-28 12:06:02 -0700160 const String16 opPackageName = data.readString16();
Jeff Brown2013a542012-09-04 21:38:42 -0700161 sp<IRemoteDisplayClient> client(
162 interface_cast<IRemoteDisplayClient>(data.readStrongBinder()));
Wei Jia2afac0c2016-01-07 12:13:07 -0800163 if (client == NULL) {
164 reply->writeStrongBinder(NULL);
165 return NO_ERROR;
166 }
Jeff Brown2013a542012-09-04 21:38:42 -0700167 String8 iface(data.readString8());
Svet Ganovbe71aa22015-04-28 12:06:02 -0700168 sp<IRemoteDisplay> display(listenForRemoteDisplay(opPackageName, client, iface));
Marco Nelissenf8880202014-11-14 07:58:25 -0800169 reply->writeStrongBinder(IInterface::asBinder(display));
Jeff Brown2013a542012-09-04 21:38:42 -0700170 return NO_ERROR;
171 } break;
Lajos Molnar1381d4b2014-08-07 15:18:35 -0700172 case GET_CODEC_LIST: {
173 CHECK_INTERFACE(IMediaPlayerService, data, reply);
174 sp<IMediaCodecList> mcl = getCodecList();
Marco Nelissenf8880202014-11-14 07:58:25 -0800175 reply->writeStrongBinder(IInterface::asBinder(mcl));
Lajos Molnar1381d4b2014-08-07 15:18:35 -0700176 return NO_ERROR;
177 } break;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800178 default:
179 return BBinder::onTransact(code, data, reply, flags);
180 }
181}
182
183// ----------------------------------------------------------------------------
184
Glenn Kasten40bc9062015-03-20 09:09:33 -0700185} // namespace android