blob: c2e749d3382afe3361d3ab976740219274d145bc [file] [log] [blame]
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001/*
2 * Copyright (C) 2010 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
17package com.android.server;
18
19import com.android.internal.content.PackageMonitor;
20
Amith Yamasanif80a9b22012-09-24 19:38:28 -070021import android.app.AppGlobals;
22import android.content.BroadcastReceiver;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -080023import android.content.ComponentName;
24import android.content.Context;
25import android.content.Intent;
Amith Yamasanif80a9b22012-09-24 19:38:28 -070026import android.content.IntentFilter;
27import android.content.pm.IPackageManager;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -080028import android.content.pm.ResolveInfo;
29import android.content.pm.ServiceInfo;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -080030import android.os.Binder;
Amith Yamasanif80a9b22012-09-24 19:38:28 -070031import android.os.RemoteException;
32import android.os.UserHandle;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -080033import android.provider.Settings;
34import android.speech.RecognitionService;
35import android.text.TextUtils;
Joe Onorato8a9b2202010-02-26 18:56:32 -080036import android.util.Slog;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -080037
38import java.util.List;
39
40public class RecognitionManagerService extends Binder {
41 final static String TAG = "RecognitionManagerService";
Amith Yamasanif80a9b22012-09-24 19:38:28 -070042
43 private final Context mContext;
44 private final MyPackageMonitor mMonitor;
45 private final IPackageManager mIPm;
46
47 private static final boolean DEBUG = false;
48
Dianne Hackborn21f1bd12010-02-19 17:02:21 -080049 class MyPackageMonitor extends PackageMonitor {
50 public void onSomePackagesChanged() {
Amith Yamasanif80a9b22012-09-24 19:38:28 -070051 int userHandle = getChangingUserId();
52 if (DEBUG) Slog.i(TAG, "onSomePackagesChanged user=" + userHandle);
53 ComponentName comp = getCurRecognizer(userHandle);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -080054 if (comp == null) {
55 if (anyPackagesAppearing()) {
Amith Yamasanif80a9b22012-09-24 19:38:28 -070056 comp = findAvailRecognizer(null, userHandle);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -080057 if (comp != null) {
Amith Yamasanif80a9b22012-09-24 19:38:28 -070058 setCurRecognizer(comp, userHandle);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -080059 }
60 }
61 return;
62 }
Amith Yamasanif80a9b22012-09-24 19:38:28 -070063
Dianne Hackborn21f1bd12010-02-19 17:02:21 -080064 int change = isPackageDisappearing(comp.getPackageName());
65 if (change == PACKAGE_PERMANENT_CHANGE
66 || change == PACKAGE_TEMPORARY_CHANGE) {
Amith Yamasanif80a9b22012-09-24 19:38:28 -070067 setCurRecognizer(findAvailRecognizer(null, userHandle), userHandle);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -080068
69 } else if (isPackageModified(comp.getPackageName())) {
Amith Yamasanif80a9b22012-09-24 19:38:28 -070070 setCurRecognizer(findAvailRecognizer(comp.getPackageName(), userHandle),
71 userHandle);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -080072 }
73 }
74 }
Amith Yamasanif80a9b22012-09-24 19:38:28 -070075
Dianne Hackborn21f1bd12010-02-19 17:02:21 -080076 RecognitionManagerService(Context context) {
77 mContext = context;
78 mMonitor = new MyPackageMonitor();
Amith Yamasanif80a9b22012-09-24 19:38:28 -070079 mMonitor.register(context, null, UserHandle.ALL, true);
80 mIPm = AppGlobals.getPackageManager();
81 mContext.registerReceiverAsUser(mBroadcastReceiver, UserHandle.ALL,
82 new IntentFilter(Intent.ACTION_BOOT_COMPLETED), null, null);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -080083 }
Amith Yamasanif80a9b22012-09-24 19:38:28 -070084
Dianne Hackborn21f1bd12010-02-19 17:02:21 -080085 public void systemReady() {
Amith Yamasanif80a9b22012-09-24 19:38:28 -070086 initForUser(UserHandle.USER_OWNER);
87 }
88
89 private void initForUser(int userHandle) {
90 if (DEBUG) Slog.i(TAG, "initForUser user=" + userHandle);
91 ComponentName comp = getCurRecognizer(userHandle);
Amith Yamasani596532d2013-01-18 11:04:09 -080092 ServiceInfo info = null;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -080093 if (comp != null) {
Amith Yamasani596532d2013-01-18 11:04:09 -080094 // See if the current recognizer is still available.
Dianne Hackborn21f1bd12010-02-19 17:02:21 -080095 try {
Amith Yamasani596532d2013-01-18 11:04:09 -080096 info = mIPm.getServiceInfo(comp, 0, userHandle);
Amith Yamasanif80a9b22012-09-24 19:38:28 -070097 } catch (RemoteException e) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -080098 }
Amith Yamasani596532d2013-01-18 11:04:09 -080099 }
100 if (info == null) {
Amith Yamasanif80a9b22012-09-24 19:38:28 -0700101 comp = findAvailRecognizer(null, userHandle);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800102 if (comp != null) {
Amith Yamasanif80a9b22012-09-24 19:38:28 -0700103 setCurRecognizer(comp, userHandle);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800104 }
105 }
106 }
Amith Yamasanif80a9b22012-09-24 19:38:28 -0700107
108 ComponentName findAvailRecognizer(String prefPackage, int userHandle) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800109 List<ResolveInfo> available =
Amith Yamasanif80a9b22012-09-24 19:38:28 -0700110 mContext.getPackageManager().queryIntentServicesAsUser(
111 new Intent(RecognitionService.SERVICE_INTERFACE), 0, userHandle);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800112 int numAvailable = available.size();
Amith Yamasanif80a9b22012-09-24 19:38:28 -0700113
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800114 if (numAvailable == 0) {
Amith Yamasanif80a9b22012-09-24 19:38:28 -0700115 Slog.w(TAG, "no available voice recognition services found for user " + userHandle);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800116 return null;
117 } else {
118 if (prefPackage != null) {
119 for (int i=0; i<numAvailable; i++) {
120 ServiceInfo serviceInfo = available.get(i).serviceInfo;
121 if (prefPackage.equals(serviceInfo.packageName)) {
122 return new ComponentName(serviceInfo.packageName, serviceInfo.name);
123 }
124 }
125 }
126 if (numAvailable > 1) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800127 Slog.w(TAG, "more than one voice recognition service found, picking first");
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800128 }
Amith Yamasanif80a9b22012-09-24 19:38:28 -0700129
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800130 ServiceInfo serviceInfo = available.get(0).serviceInfo;
131 return new ComponentName(serviceInfo.packageName, serviceInfo.name);
132 }
133 }
Amith Yamasanif80a9b22012-09-24 19:38:28 -0700134
135 ComponentName getCurRecognizer(int userHandle) {
136 String curRecognizer = Settings.Secure.getStringForUser(
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800137 mContext.getContentResolver(),
Amith Yamasanif80a9b22012-09-24 19:38:28 -0700138 Settings.Secure.VOICE_RECOGNITION_SERVICE, userHandle);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800139 if (TextUtils.isEmpty(curRecognizer)) {
140 return null;
141 }
Amith Yamasanif80a9b22012-09-24 19:38:28 -0700142 if (DEBUG) Slog.i(TAG, "getCurRecognizer curRecognizer=" + curRecognizer
143 + " user=" + userHandle);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800144 return ComponentName.unflattenFromString(curRecognizer);
145 }
Amith Yamasanif80a9b22012-09-24 19:38:28 -0700146
147 void setCurRecognizer(ComponentName comp, int userHandle) {
148 Settings.Secure.putStringForUser(mContext.getContentResolver(),
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800149 Settings.Secure.VOICE_RECOGNITION_SERVICE,
Amith Yamasanif80a9b22012-09-24 19:38:28 -0700150 comp != null ? comp.flattenToShortString() : "", userHandle);
151 if (DEBUG) Slog.i(TAG, "setCurRecognizer comp=" + comp
152 + " user=" + userHandle);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800153 }
Amith Yamasanif80a9b22012-09-24 19:38:28 -0700154
155 BroadcastReceiver mBroadcastReceiver = new BroadcastReceiver() {
156 public void onReceive(Context context, Intent intent) {
157 String action = intent.getAction();
158 if (DEBUG) Slog.i(TAG, "received " + action);
159 if (Intent.ACTION_BOOT_COMPLETED.equals(action)) {
160 int userHandle = intent.getIntExtra(Intent.EXTRA_USER_HANDLE, -1);
161 if (userHandle > 0) {
162 initForUser(userHandle);
163 }
164 }
165 }
166 };
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800167}