-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRingtoneOverlayService.java
139 lines (124 loc) · 5.09 KB
/
RingtoneOverlayService.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
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);
}
}