-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support RRO for ringtones, notifications and alarms
Copy ringtone, alarm and notification from resources if an RRO has been applied to the com.android.providers.media package. Files are copied to the standard directories for each category and if their metadata points to string resources, the overlayed string resources will be used by MediaProvider including when language is changed on the device. Note that the default resources are empty binaries and a default sound overlay will only be copied if its size is not zero. Bug: 69299998 Test: Verify that a newly installed and enabled test RRO with one or more sound resources changes the corresponding default sounds. Change-Id: I3bba5ad9e59c1f9aeb4af7a9266f073c49c2df74
- Loading branch information
Niklas Brunlid
authored and
Todd Kennedy
committed
Jan 10, 2019
1 parent
e20b007
commit f776cde
Showing
6 changed files
with
150 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
139 changes: 139 additions & 0 deletions
139
src/com/android/providers/media/RingtoneOverlayService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,139 @@ | ||
/* | ||
* Copyright (C) 2018 The Android Open Source Project | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.android.providers.media; | ||
|
||
import android.annotation.IdRes; | ||
import android.annotation.NonNull; | ||
import android.annotation.Nullable; | ||
import android.app.Service; | ||
import android.content.Intent; | ||
import android.media.MediaScannerConnection; | ||
import android.media.MediaScannerConnection.OnScanCompletedListener; | ||
import android.media.RingtoneManager; | ||
import android.net.Uri; | ||
import android.os.AsyncTask; | ||
import android.os.Environment; | ||
import android.os.FileUtils; | ||
import android.os.IBinder; | ||
import android.provider.Settings.System; | ||
import android.util.Slog; | ||
|
||
import java.io.File; | ||
import java.io.FileOutputStream; | ||
import java.io.IOException; | ||
import java.io.InputStream; | ||
import java.util.concurrent.SynchronousQueue; | ||
|
||
/** | ||
* Service to copy and set customization of default sounds | ||
*/ | ||
public class RingtoneOverlayService extends Service { | ||
private static final String TAG = "RingtoneOverlayService"; | ||
private static final boolean DEBUG = false; | ||
|
||
@Override | ||
public int onStartCommand(@Nullable final Intent intent, final int flags, final int startId) { | ||
AsyncTask.execute(() -> { | ||
updateRingtones(); | ||
stopSelf(); | ||
}); | ||
|
||
// Try again later if we are killed before we finish. | ||
return Service.START_REDELIVER_INTENT; | ||
} | ||
|
||
@Override | ||
public IBinder onBind(@Nullable final Intent intent) { | ||
return null; | ||
} | ||
|
||
private void updateRingtones() { | ||
copyResourceAndSetAsSound(R.raw.default_ringtone, | ||
System.RINGTONE, Environment.DIRECTORY_RINGTONES); | ||
copyResourceAndSetAsSound(R.raw.default_notification_sound, | ||
System.NOTIFICATION_SOUND, Environment.DIRECTORY_NOTIFICATIONS); | ||
copyResourceAndSetAsSound(R.raw.default_alarm_alert, | ||
System.ALARM_ALERT, Environment.DIRECTORY_ALARMS); | ||
} | ||
|
||
/* If the resource contains any data, copy a resource to the file system, scan it, and set the | ||
* file URI as the default for a sound. */ | ||
private void copyResourceAndSetAsSound(@IdRes final int id, @NonNull final String name, | ||
@NonNull final String subPath) { | ||
final File destDir = Environment.getExternalStoragePublicDirectory(subPath); | ||
if (!destDir.exists() && !destDir.mkdirs()) { | ||
Slog.e(TAG, "can't create " + destDir.getAbsolutePath()); | ||
return; | ||
} | ||
|
||
final File dest = new File(destDir, "default_" + name + ".ogg"); | ||
try ( | ||
InputStream is = getResources().openRawResource(id); | ||
FileOutputStream os = new FileOutputStream(dest); | ||
) { | ||
if (is.available() > 0) { | ||
FileUtils.copy(is, os); | ||
final Uri uri = scanFile(dest); | ||
if (uri != null) { | ||
set(name, uri); | ||
} | ||
} else { | ||
// TODO Shall we remove any former copied resource in this case and unset | ||
// the defaults if we use this event a second time to clear the data? | ||
if (DEBUG) Slog.d(TAG, "Resource for " + name + " has no overlay"); | ||
} | ||
} catch (IOException e) { | ||
Slog.e(TAG, "Unable to open resource for " + name + ": " + e); | ||
} | ||
} | ||
|
||
private Uri scanFile(@NonNull final File file) { | ||
SynchronousQueue<Uri> queue = new SynchronousQueue<>(); | ||
|
||
if (DEBUG) Slog.d(TAG, "Scanning " + file.getAbsolutePath()); | ||
MediaScannerConnection.scanFile(this, new String[] { file.getAbsolutePath() }, null, | ||
new OnScanCompletedListener() { | ||
@Override | ||
public void onScanCompleted(String path, Uri uri) { | ||
if (uri == null) { | ||
file.delete(); | ||
return; | ||
} | ||
try { | ||
queue.put(uri); | ||
} catch (InterruptedException e) { | ||
Slog.w(TAG, "Unable to put new Uri in queue", e); | ||
} | ||
} | ||
}); | ||
|
||
try { | ||
return queue.take(); | ||
} catch (InterruptedException e) { | ||
Slog.w(TAG, "Unable to take new Uri from queue", e); | ||
} | ||
|
||
return null; | ||
} | ||
|
||
private void set(@NonNull final String name, @NonNull final Uri uri) { | ||
final Uri settingUri = System.getUriFor(name); | ||
RingtoneManager.setActualDefaultRingtoneUri(this, | ||
RingtoneManager.getDefaultType(settingUri), uri); | ||
System.putInt(getContentResolver(), name + "_set", 1); | ||
} | ||
} |