blob: 7634f9f2144a58849ea4b087141216b4f35c1ef0 [file] [log] [blame]
/*
* Copyright 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.car.media.common.source;
import android.annotation.NonNull;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.content.pm.PackageManager;
import android.content.pm.ResolveInfo;
import android.service.media.MediaBrowserService;
import android.util.Log;
import androidx.lifecycle.LiveData;
import java.util.Comparator;
import java.util.HashSet;
import java.util.List;
import java.util.Objects;
import java.util.Set;
import java.util.stream.Collectors;
/**
* A LiveData that provides access to the list of all possible media sources that can be selected
* to be played.
*/
class MediaSourcesLiveData extends LiveData<List<SimpleMediaSource>> {
private static final String TAG = "MediaSourcesLiveData";
private final Context mContext;
private final BroadcastReceiver mAppInstallUninstallReceiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
updateMediaSources();
}
};
MediaSourcesLiveData(@NonNull Context context) {
mContext = context;
}
@Override
protected void onActive() {
super.onActive();
updateMediaSources();
registerBroadcastReceiver();
}
@Override
protected void onInactive() {
super.onInactive();
unregisterBroadcastReceiver();
}
private void registerBroadcastReceiver() {
IntentFilter filter = new IntentFilter();
filter.addAction(Intent.ACTION_PACKAGE_ADDED);
filter.addAction(Intent.ACTION_PACKAGE_REMOVED);
filter.addDataScheme("package");
mContext.getApplicationContext().registerReceiver(mAppInstallUninstallReceiver, filter);
}
private void unregisterBroadcastReceiver() {
mContext.getApplicationContext().unregisterReceiver(mAppInstallUninstallReceiver);
}
private void updateMediaSources() {
List<SimpleMediaSource> mediaSources = getPackageNames().stream()
.filter(Objects::nonNull)
.map(packageName -> new SimpleMediaSource(mContext, packageName))
.filter(mediaSource -> {
if (mediaSource.getName() == null) {
Log.w(TAG, "Found media source without name: "
+ mediaSource.getPackageName());
return false;
}
return true;
})
.sorted(Comparator.comparing(mediaSource -> mediaSource.getName().toString()))
.collect(Collectors.toList());
setValue(mediaSources);
}
/**
* Generates a set of all possible apps to choose from, including the ones that are just
* media services.
*/
private Set<String> getPackageNames() {
PackageManager packageManager = mContext.getPackageManager();
Intent intent = new Intent(Intent.ACTION_MAIN, null);
intent.addCategory(Intent.CATEGORY_APP_MUSIC);
Intent mediaIntent = new Intent();
mediaIntent.setAction(MediaBrowserService.SERVICE_INTERFACE);
List<ResolveInfo> availableActivities = packageManager.queryIntentActivities(intent, 0);
List<ResolveInfo> mediaServices = packageManager.queryIntentServices(mediaIntent,
PackageManager.GET_RESOLVED_FILTER);
Set<String> apps = new HashSet<>();
for (ResolveInfo info : mediaServices) {
apps.add(info.serviceInfo.packageName);
}
for (ResolveInfo info : availableActivities) {
apps.add(info.activityInfo.packageName);
}
return apps;
}
}