BugreportReceiverpublic class BugreportReceiver extends android.content.BroadcastReceiver Receiver that handles finished bugreports, usually by attaching them to an
{@link Intent#ACTION_SEND}. |
Fields Summary |
---|
private static final String | TAG | private static final String | AUTHORITY | private static final String | EXTRA_BUGREPORT | private static final String | EXTRA_SCREENSHOT | private static final int | MIN_KEEP_COUNTAlways keep the newest 8 bugreport files; 4 reports and 4 screenshots are
roughly 17MB of disk space. | private static final long | MIN_KEEP_AGEAlways keep bugreports taken in the last week. |
Methods Summary |
---|
private static android.content.Intent | buildSendIntent(android.content.Context context, android.net.Uri bugreportUri, android.net.Uri screenshotUri)Build {@link Intent} that can be used to share the given bugreport.
final Intent intent = new Intent(Intent.ACTION_SEND_MULTIPLE);
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
intent.addCategory(Intent.CATEGORY_DEFAULT);
intent.setType("application/vnd.android.bugreport");
intent.putExtra(Intent.EXTRA_SUBJECT, bugreportUri.getLastPathSegment());
intent.putExtra(Intent.EXTRA_TEXT, SystemProperties.get("ro.build.description"));
final ArrayList<Uri> attachments = Lists.newArrayList(bugreportUri, screenshotUri);
intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, attachments);
final Account sendToAccount = findSendToAccount(context);
if (sendToAccount != null) {
intent.putExtra(Intent.EXTRA_EMAIL, new String[] { sendToAccount.name });
}
return intent;
| private static android.content.Intent | buildWarningIntent(android.content.Context context, android.content.Intent sendIntent)
final Intent intent = new Intent(context, BugreportWarningActivity.class);
intent.putExtra(Intent.EXTRA_INTENT, sendIntent);
return intent;
| private static android.accounts.Account | findSendToAccount(android.content.Context context)Find the best matching {@link Account} based on build properties.
final AccountManager am = (AccountManager) context.getSystemService(
Context.ACCOUNT_SERVICE);
String preferredDomain = SystemProperties.get("sendbug.preferred.domain");
if (!preferredDomain.startsWith("@")) {
preferredDomain = "@" + preferredDomain;
}
final Account[] accounts = am.getAccounts();
Account foundAccount = null;
for (Account account : accounts) {
if (Patterns.EMAIL_ADDRESS.matcher(account.name).matches()) {
if (!preferredDomain.isEmpty()) {
// if we have a preferred domain and it matches, return; otherwise keep
// looking
if (account.name.endsWith(preferredDomain)) {
return account;
} else {
foundAccount = account;
}
// if we don't have a preferred domain, just return since it looks like
// an email address
} else {
return account;
}
}
}
return foundAccount;
| private static java.io.File | getFileExtra(android.content.Intent intent, java.lang.String key)
final String path = intent.getStringExtra(key);
if (path != null) {
return new File(path);
} else {
return null;
}
| public void | onReceive(android.content.Context context, android.content.Intent intent)
final File bugreportFile = getFileExtra(intent, EXTRA_BUGREPORT);
final File screenshotFile = getFileExtra(intent, EXTRA_SCREENSHOT);
// Files are kept on private storage, so turn into Uris that we can
// grant temporary permissions for.
final Uri bugreportUri = FileProvider.getUriForFile(context, AUTHORITY, bugreportFile);
final Uri screenshotUri = FileProvider.getUriForFile(context, AUTHORITY, screenshotFile);
Intent sendIntent = buildSendIntent(context, bugreportUri, screenshotUri);
Intent notifIntent;
// Send through warning dialog by default
if (getWarningState(context, STATE_SHOW) == STATE_SHOW) {
notifIntent = buildWarningIntent(context, sendIntent);
} else {
notifIntent = sendIntent;
}
notifIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
final Notification.Builder builder = new Notification.Builder(context)
.setSmallIcon(com.android.internal.R.drawable.stat_sys_adb)
.setContentTitle(context.getString(R.string.bugreport_finished_title))
.setTicker(context.getString(R.string.bugreport_finished_title))
.setContentText(context.getString(R.string.bugreport_finished_text))
.setContentIntent(PendingIntent.getActivity(
context, 0, notifIntent, PendingIntent.FLAG_CANCEL_CURRENT))
.setAutoCancel(true)
.setLocalOnly(true)
.setColor(context.getResources().getColor(
com.android.internal.R.color.system_notification_accent_color));
NotificationManager.from(context).notify(TAG, 0, builder.build());
// Clean up older bugreports in background
final PendingResult result = goAsync();
new AsyncTask<Void, Void, Void>() {
@Override
protected Void doInBackground(Void... params) {
FileUtils.deleteOlderFiles(
bugreportFile.getParentFile(), MIN_KEEP_COUNT, MIN_KEEP_AGE);
result.finish();
return null;
}
}.execute();
|
|