blob: aebadf936e0c9df5692b180a4a301490e209a764 [file] [log] [blame]
Jeff Sharkey098d5802012-04-26 17:30:34 -07001/*
2 * Copyright (C) 2012 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
17package com.android.systemui.media;
18
Yiwen Cheneac542e2019-02-10 14:23:25 -080019import android.annotation.Nullable;
Jeff Sharkey783ee0c2016-03-05 17:23:28 -070020import android.content.ContentResolver;
Jeff Sharkey098d5802012-04-26 17:30:34 -070021import android.content.Context;
Jeff Sharkey65c4a2b2012-09-25 17:22:27 -070022import android.content.pm.PackageManager.NameNotFoundException;
Jeff Sharkey783ee0c2016-03-05 17:23:28 -070023import android.database.Cursor;
Jean-Michel Trivi81f871e2014-08-06 16:32:38 -070024import android.media.AudioAttributes;
Jeff Sharkey098d5802012-04-26 17:30:34 -070025import android.media.IAudioService;
26import android.media.IRingtonePlayer;
27import android.media.Ringtone;
Yiwen Cheneac542e2019-02-10 14:23:25 -080028import android.media.VolumeShaper;
Jeff Sharkey098d5802012-04-26 17:30:34 -070029import android.net.Uri;
30import android.os.Binder;
31import android.os.IBinder;
Jeff Sharkey783ee0c2016-03-05 17:23:28 -070032import android.os.ParcelFileDescriptor;
Jeff Sharkey098d5802012-04-26 17:30:34 -070033import android.os.Process;
34import android.os.RemoteException;
35import android.os.ServiceManager;
Jeff Sharkey65c4a2b2012-09-25 17:22:27 -070036import android.os.UserHandle;
Jeff Sharkey783ee0c2016-03-05 17:23:28 -070037import android.provider.MediaStore;
John Spurlockcd686b52013-06-05 10:13:46 -040038import android.util.Log;
Jeff Sharkey098d5802012-04-26 17:30:34 -070039
40import com.android.systemui.SystemUI;
Jeff Sharkey098d5802012-04-26 17:30:34 -070041
42import java.io.FileDescriptor;
Jeff Sharkey783ee0c2016-03-05 17:23:28 -070043import java.io.IOException;
Jeff Sharkey098d5802012-04-26 17:30:34 -070044import java.io.PrintWriter;
45import java.util.HashMap;
46
47/**
48 * Service that offers to play ringtones by {@link Uri}, since our process has
49 * {@link android.Manifest.permission#READ_EXTERNAL_STORAGE}.
50 */
51public class RingtonePlayer extends SystemUI {
52 private static final String TAG = "RingtonePlayer";
Jeff Sharkeyb6e404a2012-05-15 11:36:11 -070053 private static final boolean LOGD = false;
Jeff Sharkey098d5802012-04-26 17:30:34 -070054
55 // TODO: support Uri switching under same IBinder
56
57 private IAudioService mAudioService;
58
59 private final NotificationPlayer mAsyncPlayer = new NotificationPlayer(TAG);
John Spurlockb8baccc2013-06-05 12:59:01 -040060 private final HashMap<IBinder, Client> mClients = new HashMap<IBinder, Client>();
Jeff Sharkey098d5802012-04-26 17:30:34 -070061
62 @Override
63 public void start() {
64 mAsyncPlayer.setUsesWakeLock(mContext);
65
66 mAudioService = IAudioService.Stub.asInterface(
67 ServiceManager.getService(Context.AUDIO_SERVICE));
68 try {
69 mAudioService.setRingtonePlayer(mCallback);
70 } catch (RemoteException e) {
John Spurlockcd686b52013-06-05 10:13:46 -040071 Log.e(TAG, "Problem registering RingtonePlayer: " + e);
Jeff Sharkey098d5802012-04-26 17:30:34 -070072 }
73 }
74
75 /**
76 * Represents an active remote {@link Ringtone} client.
77 */
78 private class Client implements IBinder.DeathRecipient {
79 private final IBinder mToken;
80 private final Ringtone mRingtone;
81
Jean-Michel Trivi81f871e2014-08-06 16:32:38 -070082 public Client(IBinder token, Uri uri, UserHandle user, AudioAttributes aa) {
Yiwen Cheneac542e2019-02-10 14:23:25 -080083 this(token, uri, user, aa, null);
84 }
85
86 Client(IBinder token, Uri uri, UserHandle user, AudioAttributes aa,
87 @Nullable VolumeShaper.Configuration volumeShaperConfig) {
Jeff Sharkey098d5802012-04-26 17:30:34 -070088 mToken = token;
Jeff Sharkey65c4a2b2012-09-25 17:22:27 -070089
90 mRingtone = new Ringtone(getContextForUser(user), false);
Jean-Michel Trivi81f871e2014-08-06 16:32:38 -070091 mRingtone.setAudioAttributes(aa);
Yiwen Cheneac542e2019-02-10 14:23:25 -080092 mRingtone.setUri(uri, volumeShaperConfig);
Jeff Sharkey098d5802012-04-26 17:30:34 -070093 }
94
95 @Override
96 public void binderDied() {
John Spurlockcd686b52013-06-05 10:13:46 -040097 if (LOGD) Log.d(TAG, "binderDied() token=" + mToken);
Jeff Sharkey098d5802012-04-26 17:30:34 -070098 synchronized (mClients) {
99 mClients.remove(mToken);
100 }
101 mRingtone.stop();
102 }
103 }
104
105 private IRingtonePlayer mCallback = new IRingtonePlayer.Stub() {
106 @Override
Jean-Michel Trivi462045e2015-06-30 12:34:48 -0700107 public void play(IBinder token, Uri uri, AudioAttributes aa, float volume, boolean looping)
108 throws RemoteException {
Yiwen Cheneac542e2019-02-10 14:23:25 -0800109 playWithVolumeShaping(token, uri, aa, volume, looping, null);
110 }
111 @Override
112 public void playWithVolumeShaping(IBinder token, Uri uri, AudioAttributes aa, float volume,
113 boolean looping, @Nullable VolumeShaper.Configuration volumeShaperConfig)
114 throws RemoteException {
Jeff Sharkey65c4a2b2012-09-25 17:22:27 -0700115 if (LOGD) {
John Spurlockcd686b52013-06-05 10:13:46 -0400116 Log.d(TAG, "play(token=" + token + ", uri=" + uri + ", uid="
Jeff Sharkey65c4a2b2012-09-25 17:22:27 -0700117 + Binder.getCallingUid() + ")");
118 }
Jeff Sharkey098d5802012-04-26 17:30:34 -0700119 Client client;
120 synchronized (mClients) {
121 client = mClients.get(token);
122 if (client == null) {
Jeff Sharkey65c4a2b2012-09-25 17:22:27 -0700123 final UserHandle user = Binder.getCallingUserHandle();
Yiwen Cheneac542e2019-02-10 14:23:25 -0800124 client = new Client(token, uri, user, aa, volumeShaperConfig);
Jeff Sharkey098d5802012-04-26 17:30:34 -0700125 token.linkToDeath(client, 0);
126 mClients.put(token, client);
127 }
128 }
Jean-Michel Trivi462045e2015-06-30 12:34:48 -0700129 client.mRingtone.setLooping(looping);
130 client.mRingtone.setVolume(volume);
Jeff Sharkey098d5802012-04-26 17:30:34 -0700131 client.mRingtone.play();
132 }
133
134 @Override
135 public void stop(IBinder token) {
John Spurlockcd686b52013-06-05 10:13:46 -0400136 if (LOGD) Log.d(TAG, "stop(token=" + token + ")");
Jeff Sharkey098d5802012-04-26 17:30:34 -0700137 Client client;
138 synchronized (mClients) {
139 client = mClients.remove(token);
140 }
141 if (client != null) {
142 client.mToken.unlinkToDeath(client, 0);
143 client.mRingtone.stop();
144 }
145 }
146
147 @Override
148 public boolean isPlaying(IBinder token) {
John Spurlockcd686b52013-06-05 10:13:46 -0400149 if (LOGD) Log.d(TAG, "isPlaying(token=" + token + ")");
Jeff Sharkey098d5802012-04-26 17:30:34 -0700150 Client client;
151 synchronized (mClients) {
152 client = mClients.get(token);
153 }
154 if (client != null) {
155 return client.mRingtone.isPlaying();
156 } else {
157 return false;
158 }
159 }
160
161 @Override
Jean-Michel Trivi462045e2015-06-30 12:34:48 -0700162 public void setPlaybackProperties(IBinder token, float volume, boolean looping) {
163 Client client;
164 synchronized (mClients) {
165 client = mClients.get(token);
166 }
167 if (client != null) {
168 client.mRingtone.setVolume(volume);
169 client.mRingtone.setLooping(looping);
170 }
171 // else no client for token when setting playback properties but will be set at play()
172 }
173
174 @Override
Jean-Michel Trivi81f871e2014-08-06 16:32:38 -0700175 public void playAsync(Uri uri, UserHandle user, boolean looping, AudioAttributes aa) {
John Spurlockcd686b52013-06-05 10:13:46 -0400176 if (LOGD) Log.d(TAG, "playAsync(uri=" + uri + ", user=" + user + ")");
Jeff Sharkey098d5802012-04-26 17:30:34 -0700177 if (Binder.getCallingUid() != Process.SYSTEM_UID) {
178 throw new SecurityException("Async playback only available from system UID.");
179 }
Sungmin Choi4a05bbcd2015-08-07 18:12:19 -0700180 if (UserHandle.ALL.equals(user)) {
Xiaohui Chene4de5a02015-09-22 15:33:31 -0700181 user = UserHandle.SYSTEM;
Sungmin Choi4a05bbcd2015-08-07 18:12:19 -0700182 }
Jean-Michel Trivi81f871e2014-08-06 16:32:38 -0700183 mAsyncPlayer.play(getContextForUser(user), uri, looping, aa);
Jeff Sharkey098d5802012-04-26 17:30:34 -0700184 }
185
186 @Override
187 public void stopAsync() {
John Spurlockcd686b52013-06-05 10:13:46 -0400188 if (LOGD) Log.d(TAG, "stopAsync()");
Jeff Sharkey098d5802012-04-26 17:30:34 -0700189 if (Binder.getCallingUid() != Process.SYSTEM_UID) {
190 throw new SecurityException("Async playback only available from system UID.");
191 }
192 mAsyncPlayer.stop();
193 }
Todd Kennedy68de1572015-07-20 13:32:40 -0700194
195 @Override
196 public String getTitle(Uri uri) {
197 final UserHandle user = Binder.getCallingUserHandle();
198 return Ringtone.getTitle(getContextForUser(user), uri,
199 false /*followSettingsUri*/, false /*allowRemote*/);
200 }
Jeff Sharkey783ee0c2016-03-05 17:23:28 -0700201
202 @Override
203 public ParcelFileDescriptor openRingtone(Uri uri) {
204 final UserHandle user = Binder.getCallingUserHandle();
205 final ContentResolver resolver = getContextForUser(user).getContentResolver();
206
207 // Only open the requested Uri if it's a well-known ringtone or
208 // other sound from the platform media store, otherwise this opens
209 // up arbitrary access to any file on external storage.
210 if (uri.toString().startsWith(MediaStore.Audio.Media.EXTERNAL_CONTENT_URI.toString())) {
211 try (Cursor c = resolver.query(uri, new String[] {
212 MediaStore.Audio.AudioColumns.IS_RINGTONE,
213 MediaStore.Audio.AudioColumns.IS_ALARM,
214 MediaStore.Audio.AudioColumns.IS_NOTIFICATION
215 }, null, null, null)) {
216 if (c.moveToFirst()) {
217 if (c.getInt(0) != 0 || c.getInt(1) != 0 || c.getInt(2) != 0) {
218 try {
219 return resolver.openFileDescriptor(uri, "r");
220 } catch (IOException e) {
221 throw new SecurityException(e);
222 }
223 }
224 }
225 }
226 }
227 throw new SecurityException("Uri is not ringtone, alarm, or notification: " + uri);
228 }
Jeff Sharkey098d5802012-04-26 17:30:34 -0700229 };
230
Jeff Sharkey65c4a2b2012-09-25 17:22:27 -0700231 private Context getContextForUser(UserHandle user) {
232 try {
233 return mContext.createPackageContextAsUser(mContext.getPackageName(), 0, user);
234 } catch (NameNotFoundException e) {
235 throw new RuntimeException(e);
236 }
237 }
238
Jeff Sharkey098d5802012-04-26 17:30:34 -0700239 @Override
240 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
241 pw.println("Clients:");
242 synchronized (mClients) {
243 for (Client client : mClients.values()) {
244 pw.print(" mToken=");
245 pw.print(client.mToken);
246 pw.print(" mUri=");
247 pw.println(client.mRingtone.getUri());
248 }
249 }
250 }
251}