blob: 7590c1b95187ab992d20b10f7b622eaad859bf46 [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>
Andreas Huber59451f82012-09-18 10:36:32 -070023#include <media/IHDCP.h>
Lajos Molnar1381d4b2014-08-07 15:18:35 -070024#include <media/IMediaCodecList.h>
Andreas Huber1b86fe02014-01-29 11:13:26 -080025#include <media/IMediaHTTPService.h>
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080026#include <media/IMediaPlayerService.h>
27#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,
Marco Nelissen260e56c2016-01-28 21:41:25 +000042 GET_OMX,
Andreas Huber59451f82012-09-18 10:36:32 -070043 MAKE_HDCP,
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:
53 BpMediaPlayerService(const sp<IBinder>& impl)
54 : 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(
Glenn Kastend848eb42016-03-08 13:42:11 -080067 const sp<IMediaPlayerClient>& client, audio_session_t audioSessionId) {
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080068 Parcel data, reply;
69 data.writeInterfaceToken(IMediaPlayerService::getInterfaceDescriptor());
Marco Nelissenf8880202014-11-14 07:58:25 -080070 data.writeStrongBinder(IInterface::asBinder(client));
Eric Laurenta514bdb2010-06-21 09:27:30 -070071 data.writeInt32(audioSessionId);
Andreas Huber2db84552010-01-28 11:19:57 -080072
Dave Burked681bbb2011-08-30 14:39:17 +010073 remote()->transact(CREATE, data, &reply);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080074 return interface_cast<IMediaPlayer>(reply.readStrongBinder());
75 }
76
Svet Ganovbe71aa22015-04-28 12:06:02 -070077 virtual sp<IMediaRecorder> createMediaRecorder(const String16 &opPackageName)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080078 {
79 Parcel data, reply;
80 data.writeInterfaceToken(IMediaPlayerService::getInterfaceDescriptor());
Svet Ganovbe71aa22015-04-28 12:06:02 -070081 data.writeString16(opPackageName);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080082 remote()->transact(CREATE_MEDIA_RECORDER, data, &reply);
83 return interface_cast<IMediaRecorder>(reply.readStrongBinder());
84 }
85
Marco Nelissen260e56c2016-01-28 21:41:25 +000086 virtual sp<IOMX> getOMX() {
87 Parcel data, reply;
88 data.writeInterfaceToken(IMediaPlayerService::getInterfaceDescriptor());
89 remote()->transact(GET_OMX, data, &reply);
90 return interface_cast<IOMX>(reply.readStrongBinder());
91 }
Gloria Wang7cf180c2011-02-19 18:37:57 -080092
Andreas Huber279dcd82013-01-30 10:41:25 -080093 virtual sp<IHDCP> makeHDCP(bool createEncryptionModule) {
Andreas Huber59451f82012-09-18 10:36:32 -070094 Parcel data, reply;
95 data.writeInterfaceToken(IMediaPlayerService::getInterfaceDescriptor());
Andreas Huber279dcd82013-01-30 10:41:25 -080096 data.writeInt32(createEncryptionModule);
Andreas Huber59451f82012-09-18 10:36:32 -070097 remote()->transact(MAKE_HDCP, data, &reply);
98 return interface_cast<IHDCP>(reply.readStrongBinder());
99 }
100
Gloria Wang7cf180c2011-02-19 18:37:57 -0800101 virtual void addBatteryData(uint32_t params) {
102 Parcel data, reply;
103 data.writeInterfaceToken(IMediaPlayerService::getInterfaceDescriptor());
104 data.writeInt32(params);
105 remote()->transact(ADD_BATTERY_DATA, data, &reply);
106 }
107
108 virtual status_t pullBatteryData(Parcel* reply) {
109 Parcel data;
110 data.writeInterfaceToken(IMediaPlayerService::getInterfaceDescriptor());
111 return remote()->transact(PULL_BATTERY_DATA, data, reply);
112 }
Jeff Brown2013a542012-09-04 21:38:42 -0700113
Svet Ganovbe71aa22015-04-28 12:06:02 -0700114 virtual sp<IRemoteDisplay> listenForRemoteDisplay(const String16 &opPackageName,
115 const sp<IRemoteDisplayClient>& client, const String8& iface)
Jeff Brown2013a542012-09-04 21:38:42 -0700116 {
117 Parcel data, reply;
118 data.writeInterfaceToken(IMediaPlayerService::getInterfaceDescriptor());
Svet Ganovbe71aa22015-04-28 12:06:02 -0700119 data.writeString16(opPackageName);
Marco Nelissenf8880202014-11-14 07:58:25 -0800120 data.writeStrongBinder(IInterface::asBinder(client));
Jeff Brown2013a542012-09-04 21:38:42 -0700121 data.writeString8(iface);
122 remote()->transact(LISTEN_FOR_REMOTE_DISPLAY, data, &reply);
123 return interface_cast<IRemoteDisplay>(reply.readStrongBinder());
124 }
Lajos Molnar1381d4b2014-08-07 15:18:35 -0700125
126 virtual sp<IMediaCodecList> getCodecList() const {
127 Parcel data, reply;
128 data.writeInterfaceToken(IMediaPlayerService::getInterfaceDescriptor());
129 remote()->transact(GET_CODEC_LIST, data, &reply);
130 return interface_cast<IMediaCodecList>(reply.readStrongBinder());
131 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800132};
133
niko56f0cc52009-06-22 08:49:52 -0700134IMPLEMENT_META_INTERFACE(MediaPlayerService, "android.media.IMediaPlayerService");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800135
136// ----------------------------------------------------------------------
137
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800138status_t BnMediaPlayerService::onTransact(
139 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
140{
Glenn Kastene53b9ea2012-03-12 16:29:55 -0700141 switch (code) {
Dave Burked681bbb2011-08-30 14:39:17 +0100142 case CREATE: {
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800143 CHECK_INTERFACE(IMediaPlayerService, data, reply);
Andreas Huber2db84552010-01-28 11:19:57 -0800144 sp<IMediaPlayerClient> client =
145 interface_cast<IMediaPlayerClient>(data.readStrongBinder());
Glenn Kastend848eb42016-03-08 13:42:11 -0800146 audio_session_t audioSessionId = (audio_session_t) data.readInt32();
Glenn Kastenf37971f2012-02-03 11:06:53 -0800147 sp<IMediaPlayer> player = create(client, audioSessionId);
Marco Nelissenf8880202014-11-14 07:58:25 -0800148 reply->writeStrongBinder(IInterface::asBinder(player));
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800149 return NO_ERROR;
150 } break;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800151 case CREATE_MEDIA_RECORDER: {
152 CHECK_INTERFACE(IMediaPlayerService, data, reply);
Svet Ganovbe71aa22015-04-28 12:06:02 -0700153 const String16 opPackageName = data.readString16();
154 sp<IMediaRecorder> recorder = createMediaRecorder(opPackageName);
Marco Nelissenf8880202014-11-14 07:58:25 -0800155 reply->writeStrongBinder(IInterface::asBinder(recorder));
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800156 return NO_ERROR;
157 } break;
158 case CREATE_METADATA_RETRIEVER: {
159 CHECK_INTERFACE(IMediaPlayerService, data, reply);
Glenn Kastenf37971f2012-02-03 11:06:53 -0800160 sp<IMediaMetadataRetriever> retriever = createMetadataRetriever();
Marco Nelissenf8880202014-11-14 07:58:25 -0800161 reply->writeStrongBinder(IInterface::asBinder(retriever));
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800162 return NO_ERROR;
163 } break;
Marco Nelissen260e56c2016-01-28 21:41:25 +0000164 case GET_OMX: {
165 CHECK_INTERFACE(IMediaPlayerService, data, reply);
166 sp<IOMX> omx = getOMX();
167 reply->writeStrongBinder(IInterface::asBinder(omx));
168 return NO_ERROR;
169 } break;
Andreas Huber59451f82012-09-18 10:36:32 -0700170 case MAKE_HDCP: {
171 CHECK_INTERFACE(IMediaPlayerService, data, reply);
Andreas Huber279dcd82013-01-30 10:41:25 -0800172 bool createEncryptionModule = data.readInt32();
173 sp<IHDCP> hdcp = makeHDCP(createEncryptionModule);
Marco Nelissenf8880202014-11-14 07:58:25 -0800174 reply->writeStrongBinder(IInterface::asBinder(hdcp));
Andreas Huber59451f82012-09-18 10:36:32 -0700175 return NO_ERROR;
176 } break;
Gloria Wang7cf180c2011-02-19 18:37:57 -0800177 case ADD_BATTERY_DATA: {
178 CHECK_INTERFACE(IMediaPlayerService, data, reply);
179 uint32_t params = data.readInt32();
180 addBatteryData(params);
181 return NO_ERROR;
182 } break;
183 case PULL_BATTERY_DATA: {
184 CHECK_INTERFACE(IMediaPlayerService, data, reply);
185 pullBatteryData(reply);
186 return NO_ERROR;
187 } break;
Jeff Brown2013a542012-09-04 21:38:42 -0700188 case LISTEN_FOR_REMOTE_DISPLAY: {
189 CHECK_INTERFACE(IMediaPlayerService, data, reply);
Svet Ganovbe71aa22015-04-28 12:06:02 -0700190 const String16 opPackageName = data.readString16();
Jeff Brown2013a542012-09-04 21:38:42 -0700191 sp<IRemoteDisplayClient> client(
192 interface_cast<IRemoteDisplayClient>(data.readStrongBinder()));
Wei Jia2afac0c2016-01-07 12:13:07 -0800193 if (client == NULL) {
194 reply->writeStrongBinder(NULL);
195 return NO_ERROR;
196 }
Jeff Brown2013a542012-09-04 21:38:42 -0700197 String8 iface(data.readString8());
Svet Ganovbe71aa22015-04-28 12:06:02 -0700198 sp<IRemoteDisplay> display(listenForRemoteDisplay(opPackageName, client, iface));
Marco Nelissenf8880202014-11-14 07:58:25 -0800199 reply->writeStrongBinder(IInterface::asBinder(display));
Jeff Brown2013a542012-09-04 21:38:42 -0700200 return NO_ERROR;
201 } break;
Lajos Molnar1381d4b2014-08-07 15:18:35 -0700202 case GET_CODEC_LIST: {
203 CHECK_INTERFACE(IMediaPlayerService, data, reply);
204 sp<IMediaCodecList> mcl = getCodecList();
Marco Nelissenf8880202014-11-14 07:58:25 -0800205 reply->writeStrongBinder(IInterface::asBinder(mcl));
Lajos Molnar1381d4b2014-08-07 15:18:35 -0700206 return NO_ERROR;
207 } break;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800208 default:
209 return BBinder::onTransact(code, data, reply, flags);
210 }
211}
212
213// ----------------------------------------------------------------------------
214
Glenn Kasten40bc9062015-03-20 09:09:33 -0700215} // namespace android