• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2025 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package com.android.wm.shell.common
17 
18 import android.app.PendingIntent
19 import android.app.TaskInfo
20 import android.content.ComponentName
21 import android.content.Intent
22 import com.android.wm.shell.ShellTaskOrganizer
23 
24 /** Utils to obtain [ComponentName]s. */
25 object ComponentUtils {
26     /** Retrieves the package name from an [Intent].  */
27     @JvmStatic
getPackageNamenull28     fun getPackageName(intent: Intent?): String? =
29         intent?.component?.packageName ?: intent?.`package`
30 
31     /** Retrieves the package name from a [PendingIntent].  */
32     @JvmStatic
33     fun getPackageName(pendingIntent: PendingIntent?): String? =
34         getPackageName(pendingIntent?.intent)
35 
36     /** Retrieves the package name from a [taskId].  */
37     @JvmStatic
38     fun getPackageName(taskId: Int, taskOrganizer: ShellTaskOrganizer): String? {
39         val taskInfo = taskOrganizer.getRunningTaskInfo(taskId) ?: return null
40         return getPackageName(taskInfo)
41     }
42 
43     /** Retrieves the package name from a [TaskInfo]. */
44     @JvmStatic
getPackageNamenull45     fun getPackageName(taskInfo: TaskInfo): String? = getPackageName(taskInfo.baseIntent)
46 }
47