blob: 22456bcf3f661f47599a7d93aaed5b6a7b44b8b8 [file] [log] [blame]
/*
* Copyright 2020 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.server.audio;
import android.annotation.NonNull;
import android.annotation.Nullable;
import android.app.ActivityManager;
import android.app.ActivityManagerInternal;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.content.pm.UserInfo;
import android.media.AudioManager;
import android.os.Binder;
import android.os.UserHandle;
import android.os.UserManager;
import com.android.internal.annotations.VisibleForTesting;
import com.android.server.LocalServices;
import java.util.Objects;
/**
* Provides an adapter to access functionality reserved to components running in system_server
* Functionality such as sending privileged broadcasts is to be accessed through the default
* adapter, whereas tests can inject a no-op adapter.
*/
public class SystemServerAdapter {
protected final Context mContext;
protected SystemServerAdapter(@Nullable Context context) {
mContext = context;
}
/**
* Create a wrapper around privileged functionality.
* @return the adapter
*/
static final @NonNull SystemServerAdapter getDefaultAdapter(Context context) {
Objects.requireNonNull(context);
return new SystemServerAdapter(context);
}
/**
* @return true if this is supposed to be run in system_server, false otherwise (e.g. for a
* unit test)
*/
public boolean isPrivileged() {
return true;
}
/**
* Broadcast ACTION_MICROPHONE_MUTE_CHANGED
*/
public void sendMicrophoneMuteChangedIntent() {
mContext.sendBroadcastAsUser(
new Intent(AudioManager.ACTION_MICROPHONE_MUTE_CHANGED)
.setFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY),
UserHandle.ALL);
}
/**
* Broadcast ACTION_AUDIO_BECOMING_NOISY
*/
public void sendDeviceBecomingNoisyIntent() {
if (mContext == null) {
return;
}
final Intent intent = new Intent(AudioManager.ACTION_AUDIO_BECOMING_NOISY);
intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
intent.addFlags(Intent.FLAG_RECEIVER_FOREGROUND);
final long ident = Binder.clearCallingIdentity();
try {
mContext.sendBroadcastAsUser(intent, UserHandle.ALL);
} finally {
Binder.restoreCallingIdentity(ident);
}
}
/**
* Send sticky broadcast to current user's profile group (including current user)
*/
@VisibleForTesting
public void broadcastStickyIntentToCurrentProfileGroup(Intent intent) {
int[] profileIds = LocalServices.getService(
ActivityManagerInternal.class).getCurrentProfileIds();
for (int userId : profileIds) {
ActivityManager.broadcastStickyIntent(intent, userId);
}
}
/**
* Broadcast sticky intents when a profile is started. This is needed because newly created
* profiles would not receive the intents until the next state change.
*/
/*package*/ void registerUserStartedReceiver(Context context) {
IntentFilter filter = new IntentFilter();
filter.addAction(Intent.ACTION_USER_STARTED);
context.registerReceiverAsUser(new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
if (Intent.ACTION_USER_STARTED.equals(intent.getAction())) {
final int userId = intent.getIntExtra(Intent.EXTRA_USER_HANDLE,
UserHandle.USER_NULL);
if (userId == UserHandle.USER_NULL) {
return;
}
UserManager userManager = context.getSystemService(UserManager.class);
final UserInfo profileParent = userManager.getProfileParent(userId);
if (profileParent == null) {
return;
}
// get sticky intents from parent and broadcast them to the started profile
broadcastProfileParentStickyIntent(context, AudioManager.ACTION_HDMI_AUDIO_PLUG,
userId, profileParent.id);
broadcastProfileParentStickyIntent(context, AudioManager.ACTION_HEADSET_PLUG,
userId, profileParent.id);
}
}
}, UserHandle.ALL, filter, null, null);
}
private void broadcastProfileParentStickyIntent(Context context, String intentAction,
int profileId, int parentId) {
Intent intent = context.registerReceiverAsUser(/*receiver*/ null, UserHandle.of(parentId),
new IntentFilter(intentAction), /*broadcastPermission*/ null, /*scheduler*/ null);
if (intent != null) {
ActivityManager.broadcastStickyIntent(intent, profileId);
}
}
}