blob: 5859f4f8e4935b1b900139c2eab3b381bfc36759 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2006-2008 The Android Open Source Project
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
5 * use this file except in compliance with the License. You may obtain a copy of
6 * the License at
Doug Zongkerab5c49c2009-12-04 10:31:43 -08007 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008 * http://www.apache.org/licenses/LICENSE-2.0
Doug Zongkerab5c49c2009-12-04 10:31:43 -08009 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13 * License for the specific language governing permissions and limitations under
14 * the License.
15 */
16
17package com.android.server;
18
Dianne Hackborn21f1bd12010-02-19 17:02:21 -080019import com.android.internal.content.PackageMonitor;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080020import com.android.internal.os.HandlerCaller;
21import com.android.internal.view.IInputContext;
22import com.android.internal.view.IInputMethod;
23import com.android.internal.view.IInputMethodCallback;
24import com.android.internal.view.IInputMethodClient;
25import com.android.internal.view.IInputMethodManager;
26import com.android.internal.view.IInputMethodSession;
27import com.android.internal.view.InputBindResult;
28
Joe Onorato7a0f36b2010-06-07 10:24:36 -070029import com.android.server.StatusBarManagerService;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080030
31import org.xmlpull.v1.XmlPullParserException;
32
33import android.app.ActivityManagerNative;
34import android.app.AlertDialog;
Dianne Hackborndd9b82c2009-09-03 00:18:47 -070035import android.app.PendingIntent;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080036import android.content.ComponentName;
37import android.content.ContentResolver;
38import android.content.Context;
39import android.content.DialogInterface;
40import android.content.IntentFilter;
41import android.content.DialogInterface.OnCancelListener;
42import android.content.Intent;
43import android.content.ServiceConnection;
Brandon Ballinger6da35a02009-10-21 00:38:13 -070044import android.content.pm.ApplicationInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080045import android.content.pm.PackageManager;
46import android.content.pm.ResolveInfo;
47import android.content.pm.ServiceInfo;
Amith Yamasanie861ec12010-03-24 21:39:27 -070048import android.content.res.Configuration;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080049import android.content.res.Resources;
50import android.content.res.TypedArray;
51import android.database.ContentObserver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080052import android.os.Binder;
53import android.os.Handler;
54import android.os.IBinder;
55import android.os.IInterface;
56import android.os.Message;
57import android.os.Parcel;
satok4e4569d2010-11-19 18:45:53 +090058import android.os.Parcelable;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080059import android.os.RemoteException;
The Android Open Source Project4df24232009-03-05 14:34:35 -080060import android.os.ResultReceiver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080061import android.os.ServiceManager;
62import android.os.SystemClock;
63import android.provider.Settings;
Amith Yamasanie861ec12010-03-24 21:39:27 -070064import android.provider.Settings.Secure;
satokab751aa2010-09-14 19:17:36 +090065import android.provider.Settings.SettingNotFoundException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080066import android.text.TextUtils;
67import android.util.EventLog;
satokab751aa2010-09-14 19:17:36 +090068import android.util.Pair;
Joe Onorato8a9b2202010-02-26 18:56:32 -080069import android.util.Slog;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080070import android.util.PrintWriterPrinter;
71import android.util.Printer;
72import android.view.IWindowManager;
73import android.view.WindowManager;
satokab751aa2010-09-14 19:17:36 +090074import android.view.inputmethod.EditorInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080075import android.view.inputmethod.InputBinding;
76import android.view.inputmethod.InputMethod;
77import android.view.inputmethod.InputMethodInfo;
78import android.view.inputmethod.InputMethodManager;
satokab751aa2010-09-14 19:17:36 +090079import android.view.inputmethod.InputMethodSubtype;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080080
81import java.io.FileDescriptor;
82import java.io.IOException;
83import java.io.PrintWriter;
satok913a8922010-08-26 21:53:41 +090084import java.text.Collator;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080085import java.util.ArrayList;
86import java.util.HashMap;
satok7f35c8c2010-10-07 21:13:11 +090087import java.util.HashSet;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080088import java.util.List;
satok913a8922010-08-26 21:53:41 +090089import java.util.Map;
90import java.util.TreeMap;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080091
92/**
93 * This class provides a system service that manages input methods.
94 */
95public class InputMethodManagerService extends IInputMethodManager.Stub
96 implements ServiceConnection, Handler.Callback {
97 static final boolean DEBUG = false;
98 static final String TAG = "InputManagerService";
99
100 static final int MSG_SHOW_IM_PICKER = 1;
satokab751aa2010-09-14 19:17:36 +0900101 static final int MSG_SHOW_IM_SUBTYPE_PICKER = 2;
satok47a44912010-10-06 16:03:58 +0900102 static final int MSG_SHOW_IM_SUBTYPE_ENABLER = 3;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800103
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800104 static final int MSG_UNBIND_INPUT = 1000;
105 static final int MSG_BIND_INPUT = 1010;
106 static final int MSG_SHOW_SOFT_INPUT = 1020;
107 static final int MSG_HIDE_SOFT_INPUT = 1030;
108 static final int MSG_ATTACH_TOKEN = 1040;
109 static final int MSG_CREATE_SESSION = 1050;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800110
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800111 static final int MSG_START_INPUT = 2000;
112 static final int MSG_RESTART_INPUT = 2010;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800113
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800114 static final int MSG_UNBIND_METHOD = 3000;
115 static final int MSG_BIND_METHOD = 3010;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800116
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800117 static final long TIME_TO_RECONNECT = 10*1000;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800118
satokab751aa2010-09-14 19:17:36 +0900119 private static final int NOT_A_SUBTYPE_ID = -1;
satok723a27e2010-11-11 14:58:11 +0900120 private static final String NOT_A_SUBTYPE_ID_STR = String.valueOf(NOT_A_SUBTYPE_ID);
satok8fbb1e82010-11-02 23:15:58 +0900121 // If IME doesn't support the system locale, the default subtype will be the first defined one.
122 private static final int DEFAULT_SUBTYPE_ID = 0;
satokab751aa2010-09-14 19:17:36 +0900123
satok4e4569d2010-11-19 18:45:53 +0900124 private static final String SUBTYPE_MODE_KEYBOARD = "keyboard";
125 private static final String SUBTYPE_MODE_VOICE = "voice";
126
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800127 final Context mContext;
128 final Handler mHandler;
satokd87c2592010-09-29 11:52:06 +0900129 final InputMethodSettings mSettings;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800130 final SettingsObserver mSettingsObserver;
Joe Onorato089de882010-04-12 08:18:45 -0700131 final StatusBarManagerService mStatusBar;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800132 final IWindowManager mIWindowManager;
133 final HandlerCaller mCaller;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800134
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800135 final InputBindResult mNoBinding = new InputBindResult(null, null, -1);
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800136
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800137 // All known input methods. mMethodMap also serves as the global
138 // lock for this class.
satokd87c2592010-09-29 11:52:06 +0900139 final ArrayList<InputMethodInfo> mMethodList = new ArrayList<InputMethodInfo>();
140 final HashMap<String, InputMethodInfo> mMethodMap = new HashMap<String, InputMethodInfo>();
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800141
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800142 class SessionState {
143 final ClientState client;
144 final IInputMethod method;
145 final IInputMethodSession session;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800146
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800147 @Override
148 public String toString() {
149 return "SessionState{uid " + client.uid + " pid " + client.pid
150 + " method " + Integer.toHexString(
151 System.identityHashCode(method))
152 + " session " + Integer.toHexString(
153 System.identityHashCode(session))
154 + "}";
155 }
156
157 SessionState(ClientState _client, IInputMethod _method,
158 IInputMethodSession _session) {
159 client = _client;
160 method = _method;
161 session = _session;
162 }
163 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800164
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800165 class ClientState {
166 final IInputMethodClient client;
167 final IInputContext inputContext;
168 final int uid;
169 final int pid;
170 final InputBinding binding;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800171
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800172 boolean sessionRequested;
173 SessionState curSession;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800174
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800175 @Override
176 public String toString() {
177 return "ClientState{" + Integer.toHexString(
178 System.identityHashCode(this)) + " uid " + uid
179 + " pid " + pid + "}";
180 }
181
182 ClientState(IInputMethodClient _client, IInputContext _inputContext,
183 int _uid, int _pid) {
184 client = _client;
185 inputContext = _inputContext;
186 uid = _uid;
187 pid = _pid;
188 binding = new InputBinding(null, inputContext.asBinder(), uid, pid);
189 }
190 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800191
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800192 final HashMap<IBinder, ClientState> mClients
193 = new HashMap<IBinder, ClientState>();
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800194
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800195 /**
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700196 * Set once the system is ready to run third party code.
197 */
198 boolean mSystemReady;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800199
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700200 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800201 * Id of the currently selected input method.
202 */
203 String mCurMethodId;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800204
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800205 /**
206 * The current binding sequence number, incremented every time there is
207 * a new bind performed.
208 */
209 int mCurSeq;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800210
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800211 /**
212 * The client that is currently bound to an input method.
213 */
214 ClientState mCurClient;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800215
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800216 /**
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700217 * The last window token that gained focus.
218 */
219 IBinder mCurFocusedWindow;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800220
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700221 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800222 * The input context last provided by the current client.
223 */
224 IInputContext mCurInputContext;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800225
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800226 /**
227 * The attributes last provided by the current client.
228 */
229 EditorInfo mCurAttribute;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800230
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800231 /**
232 * The input method ID of the input method service that we are currently
233 * connected to or in the process of connecting to.
234 */
235 String mCurId;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800236
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800237 /**
satokab751aa2010-09-14 19:17:36 +0900238 * The current subtype of the current input method.
239 */
240 private InputMethodSubtype mCurrentSubtype;
241
satok4e4569d2010-11-19 18:45:53 +0900242 // This list contains the pairs of InputMethodInfo and InputMethodSubtype.
satokf3db1af2010-11-23 13:34:33 +0900243 private final HashMap<InputMethodInfo, ArrayList<InputMethodSubtype>>
244 mShortcutInputMethodsAndSubtypes =
245 new HashMap<InputMethodInfo, ArrayList<InputMethodSubtype>>();
satokab751aa2010-09-14 19:17:36 +0900246
247 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800248 * Set to true if our ServiceConnection is currently actively bound to
249 * a service (whether or not we have gotten its IBinder back yet).
250 */
251 boolean mHaveConnection;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800252
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800253 /**
254 * Set if the client has asked for the input method to be shown.
255 */
256 boolean mShowRequested;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800257
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800258 /**
259 * Set if we were explicitly told to show the input method.
260 */
261 boolean mShowExplicitlyRequested;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800262
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800263 /**
264 * Set if we were forced to be shown.
265 */
266 boolean mShowForced;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800267
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800268 /**
269 * Set if we last told the input method to show itself.
270 */
271 boolean mInputShown;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800272
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800273 /**
274 * The Intent used to connect to the current input method.
275 */
276 Intent mCurIntent;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800277
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800278 /**
279 * The token we have made for the currently active input method, to
280 * identify it in the future.
281 */
282 IBinder mCurToken;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800283
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800284 /**
285 * If non-null, this is the input method service we are currently connected
286 * to.
287 */
288 IInputMethod mCurMethod;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800289
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800290 /**
291 * Time that we last initiated a bind to the input method, to determine
292 * if we should try to disconnect and reconnect to it.
293 */
294 long mLastBindTime;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800295
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800296 /**
297 * Have we called mCurMethod.bindInput()?
298 */
299 boolean mBoundToMethod;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800300
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800301 /**
302 * Currently enabled session. Only touched by service thread, not
303 * protected by a lock.
304 */
305 SessionState mEnabledSession;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800306
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800307 /**
308 * True if the screen is on. The value is true initially.
309 */
310 boolean mScreenOn = true;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800311
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800312 AlertDialog.Builder mDialogBuilder;
313 AlertDialog mSwitchingDialog;
314 InputMethodInfo[] mIms;
315 CharSequence[] mItems;
satokab751aa2010-09-14 19:17:36 +0900316 int[] mSubtypeIds;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800317
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800318 class SettingsObserver extends ContentObserver {
319 SettingsObserver(Handler handler) {
320 super(handler);
321 ContentResolver resolver = mContext.getContentResolver();
322 resolver.registerContentObserver(Settings.Secure.getUriFor(
323 Settings.Secure.DEFAULT_INPUT_METHOD), false, this);
satokab751aa2010-09-14 19:17:36 +0900324 resolver.registerContentObserver(Settings.Secure.getUriFor(
325 Settings.Secure.SELECTED_INPUT_METHOD_SUBTYPE), false, this);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800326 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800327
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800328 @Override public void onChange(boolean selfChange) {
329 synchronized (mMethodMap) {
330 updateFromSettingsLocked();
331 }
332 }
333 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800334
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800335 class ScreenOnOffReceiver extends android.content.BroadcastReceiver {
336 @Override
337 public void onReceive(Context context, Intent intent) {
338 if (intent.getAction().equals(Intent.ACTION_SCREEN_ON)) {
339 mScreenOn = true;
340 } else if (intent.getAction().equals(Intent.ACTION_SCREEN_OFF)) {
341 mScreenOn = false;
The Android Open Source Project10592532009-03-18 17:39:46 -0700342 } else if (intent.getAction().equals(Intent.ACTION_CLOSE_SYSTEM_DIALOGS)) {
343 hideInputMethodMenu();
344 return;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800345 } else {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800346 Slog.w(TAG, "Unexpected intent " + intent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800347 }
348
349 // Inform the current client of the change in active status
350 try {
351 if (mCurClient != null && mCurClient.client != null) {
352 mCurClient.client.setActive(mScreenOn);
353 }
354 } catch (RemoteException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800355 Slog.w(TAG, "Got RemoteException sending 'screen on/off' notification to pid "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800356 + mCurClient.pid + " uid " + mCurClient.uid);
357 }
358 }
359 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800360
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800361 class MyPackageMonitor extends PackageMonitor {
362
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800363 @Override
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800364 public boolean onHandleForceStop(Intent intent, String[] packages, int uid, boolean doit) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800365 synchronized (mMethodMap) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800366 String curInputMethodId = Settings.Secure.getString(mContext
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800367 .getContentResolver(), Settings.Secure.DEFAULT_INPUT_METHOD);
368 final int N = mMethodList.size();
369 if (curInputMethodId != null) {
370 for (int i=0; i<N; i++) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800371 InputMethodInfo imi = mMethodList.get(i);
372 if (imi.getId().equals(curInputMethodId)) {
373 for (String pkg : packages) {
374 if (imi.getPackageName().equals(pkg)) {
375 if (!doit) {
376 return true;
377 }
satok723a27e2010-11-11 14:58:11 +0900378 resetSelectedInputMethodAndSubtypeLocked("");
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800379 chooseNewDefaultIMELocked();
380 return true;
381 }
382 }
383 }
384 }
385 }
386 }
387 return false;
388 }
389
390 @Override
391 public void onSomePackagesChanged() {
392 synchronized (mMethodMap) {
393 InputMethodInfo curIm = null;
394 String curInputMethodId = Settings.Secure.getString(mContext
395 .getContentResolver(), Settings.Secure.DEFAULT_INPUT_METHOD);
396 final int N = mMethodList.size();
397 if (curInputMethodId != null) {
398 for (int i=0; i<N; i++) {
399 InputMethodInfo imi = mMethodList.get(i);
400 if (imi.getId().equals(curInputMethodId)) {
401 curIm = imi;
402 }
403 int change = isPackageDisappearing(imi.getPackageName());
404 if (change == PACKAGE_TEMPORARY_CHANGE
405 || change == PACKAGE_PERMANENT_CHANGE) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800406 Slog.i(TAG, "Input method uninstalled, disabling: "
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800407 + imi.getComponent());
408 setInputMethodEnabledLocked(imi.getId(), false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800409 }
410 }
411 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800412
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800413 buildInputMethodListLocked(mMethodList, mMethodMap);
414
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800415 boolean changed = false;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800416
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800417 if (curIm != null) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800418 int change = isPackageDisappearing(curIm.getPackageName());
419 if (change == PACKAGE_TEMPORARY_CHANGE
420 || change == PACKAGE_PERMANENT_CHANGE) {
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800421 ServiceInfo si = null;
422 try {
423 si = mContext.getPackageManager().getServiceInfo(
424 curIm.getComponent(), 0);
425 } catch (PackageManager.NameNotFoundException ex) {
426 }
427 if (si == null) {
428 // Uh oh, current input method is no longer around!
429 // Pick another one...
Joe Onorato8a9b2202010-02-26 18:56:32 -0800430 Slog.i(TAG, "Current input method removed: " + curInputMethodId);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800431 if (!chooseNewDefaultIMELocked()) {
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800432 changed = true;
433 curIm = null;
Joe Onorato8a9b2202010-02-26 18:56:32 -0800434 Slog.i(TAG, "Unsetting current input method");
satok723a27e2010-11-11 14:58:11 +0900435 resetSelectedInputMethodAndSubtypeLocked("");
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800436 }
437 }
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800438 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800439 }
satokab751aa2010-09-14 19:17:36 +0900440
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800441 if (curIm == null) {
442 // We currently don't have a default input method... is
443 // one now available?
444 changed = chooseNewDefaultIMELocked();
445 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800446
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800447 if (changed) {
448 updateFromSettingsLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800449 }
450 }
451 }
452 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800453
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800454 class MethodCallback extends IInputMethodCallback.Stub {
455 final IInputMethod mMethod;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800456
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800457 MethodCallback(IInputMethod method) {
458 mMethod = method;
459 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800460
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800461 public void finishedEvent(int seq, boolean handled) throws RemoteException {
462 }
463
464 public void sessionCreated(IInputMethodSession session) throws RemoteException {
465 onSessionCreated(mMethod, session);
466 }
467 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800468
Joe Onorato089de882010-04-12 08:18:45 -0700469 public InputMethodManagerService(Context context, StatusBarManagerService statusBar) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800470 mContext = context;
471 mHandler = new Handler(this);
472 mIWindowManager = IWindowManager.Stub.asInterface(
473 ServiceManager.getService(Context.WINDOW_SERVICE));
474 mCaller = new HandlerCaller(context, new HandlerCaller.Callback() {
475 public void executeMessage(Message msg) {
476 handleMessage(msg);
477 }
478 });
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800479
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800480 (new MyPackageMonitor()).register(mContext, true);
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800481
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800482 IntentFilter screenOnOffFilt = new IntentFilter();
483 screenOnOffFilt.addAction(Intent.ACTION_SCREEN_ON);
484 screenOnOffFilt.addAction(Intent.ACTION_SCREEN_OFF);
The Android Open Source Project10592532009-03-18 17:39:46 -0700485 screenOnOffFilt.addAction(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800486 mContext.registerReceiver(new ScreenOnOffReceiver(), screenOnOffFilt);
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800487
satok913a8922010-08-26 21:53:41 +0900488 mStatusBar = statusBar;
489 statusBar.setIconVisibility("ime", false);
490
satokd87c2592010-09-29 11:52:06 +0900491 // mSettings should be created before buildInputMethodListLocked
492 mSettings = new InputMethodSettings(context.getContentResolver(), mMethodMap, mMethodList);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800493 buildInputMethodListLocked(mMethodList, mMethodMap);
satokd87c2592010-09-29 11:52:06 +0900494 mSettings.enableAllIMEsIfThereIsNoEnabledIME();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800495
satokd87c2592010-09-29 11:52:06 +0900496 if (TextUtils.isEmpty(Settings.Secure.getString(
497 mContext.getContentResolver(), Settings.Secure.DEFAULT_INPUT_METHOD))) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800498 InputMethodInfo defIm = null;
satokd87c2592010-09-29 11:52:06 +0900499 for (InputMethodInfo imi: mMethodList) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800500 if (defIm == null && imi.getIsDefaultResourceId() != 0) {
501 try {
satokd87c2592010-09-29 11:52:06 +0900502 Resources res = context.createPackageContext(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800503 imi.getPackageName(), 0).getResources();
504 if (res.getBoolean(imi.getIsDefaultResourceId())) {
505 defIm = imi;
Joe Onorato8a9b2202010-02-26 18:56:32 -0800506 Slog.i(TAG, "Selected default: " + imi.getId());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800507 }
508 } catch (PackageManager.NameNotFoundException ex) {
509 } catch (Resources.NotFoundException ex) {
510 }
511 }
512 }
satokd87c2592010-09-29 11:52:06 +0900513 if (defIm == null && mMethodList.size() > 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800514 defIm = mMethodList.get(0);
Joe Onorato8a9b2202010-02-26 18:56:32 -0800515 Slog.i(TAG, "No default found, using " + defIm.getId());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800516 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800517 if (defIm != null) {
satok723a27e2010-11-11 14:58:11 +0900518 setSelectedInputMethodAndSubtypeLocked(defIm, NOT_A_SUBTYPE_ID, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800519 }
520 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800521
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800522 mSettingsObserver = new SettingsObserver(mHandler);
523 updateFromSettingsLocked();
524 }
525
526 @Override
527 public boolean onTransact(int code, Parcel data, Parcel reply, int flags)
528 throws RemoteException {
529 try {
530 return super.onTransact(code, data, reply, flags);
531 } catch (RuntimeException e) {
532 // The input method manager only throws security exceptions, so let's
533 // log all others.
534 if (!(e instanceof SecurityException)) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800535 Slog.e(TAG, "Input Method Manager Crash", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800536 }
537 throw e;
538 }
539 }
540
541 public void systemReady() {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700542 synchronized (mMethodMap) {
543 if (!mSystemReady) {
544 mSystemReady = true;
Dianne Hackborncc278702009-09-02 23:07:23 -0700545 try {
546 startInputInnerLocked();
547 } catch (RuntimeException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800548 Slog.w(TAG, "Unexpected exception", e);
Dianne Hackborncc278702009-09-02 23:07:23 -0700549 }
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700550 }
551 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800552 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800553
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800554 public List<InputMethodInfo> getInputMethodList() {
555 synchronized (mMethodMap) {
556 return new ArrayList<InputMethodInfo>(mMethodList);
557 }
558 }
559
560 public List<InputMethodInfo> getEnabledInputMethodList() {
561 synchronized (mMethodMap) {
satokd87c2592010-09-29 11:52:06 +0900562 return mSettings.getEnabledInputMethodListLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800563 }
564 }
565
satok67ddf9c2010-11-17 09:45:54 +0900566 public List<InputMethodSubtype> getEnabledInputMethodSubtypeList(InputMethodInfo imi) {
567 synchronized (mMethodMap) {
satok884ef9a2010-11-18 10:39:46 +0900568 if (imi == null && mCurMethodId != null) {
569 imi = mMethodMap.get(mCurMethodId);
570 }
satok67ddf9c2010-11-17 09:45:54 +0900571 return mSettings.getEnabledInputMethodSubtypeListLocked(imi);
572 }
573 }
574
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800575 public void addClient(IInputMethodClient client,
576 IInputContext inputContext, int uid, int pid) {
577 synchronized (mMethodMap) {
578 mClients.put(client.asBinder(), new ClientState(client,
579 inputContext, uid, pid));
580 }
581 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800582
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800583 public void removeClient(IInputMethodClient client) {
584 synchronized (mMethodMap) {
585 mClients.remove(client.asBinder());
586 }
587 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800588
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800589 void executeOrSendMessage(IInterface target, Message msg) {
590 if (target.asBinder() instanceof Binder) {
591 mCaller.sendMessage(msg);
592 } else {
593 handleMessage(msg);
594 msg.recycle();
595 }
596 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800597
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700598 void unbindCurrentClientLocked() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800599 if (mCurClient != null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800600 if (DEBUG) Slog.v(TAG, "unbindCurrentInputLocked: client = "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800601 + mCurClient.client.asBinder());
602 if (mBoundToMethod) {
603 mBoundToMethod = false;
604 if (mCurMethod != null) {
605 executeOrSendMessage(mCurMethod, mCaller.obtainMessageO(
606 MSG_UNBIND_INPUT, mCurMethod));
607 }
608 }
609 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
610 MSG_UNBIND_METHOD, mCurSeq, mCurClient.client));
611 mCurClient.sessionRequested = false;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800612
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800613 // Call setActive(false) on the old client
614 try {
615 mCurClient.client.setActive(false);
616 } catch (RemoteException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800617 Slog.w(TAG, "Got RemoteException sending setActive(false) notification to pid "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800618 + mCurClient.pid + " uid " + mCurClient.uid);
619 }
620 mCurClient = null;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800621
The Android Open Source Project10592532009-03-18 17:39:46 -0700622 hideInputMethodMenuLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800623 }
624 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800625
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800626 private int getImeShowFlags() {
627 int flags = 0;
628 if (mShowForced) {
629 flags |= InputMethod.SHOW_FORCED
630 | InputMethod.SHOW_EXPLICIT;
631 } else if (mShowExplicitlyRequested) {
632 flags |= InputMethod.SHOW_EXPLICIT;
633 }
634 return flags;
635 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800636
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800637 private int getAppShowFlags() {
638 int flags = 0;
639 if (mShowForced) {
640 flags |= InputMethodManager.SHOW_FORCED;
641 } else if (!mShowExplicitlyRequested) {
642 flags |= InputMethodManager.SHOW_IMPLICIT;
643 }
644 return flags;
645 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800646
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800647 InputBindResult attachNewInputLocked(boolean initial, boolean needResult) {
648 if (!mBoundToMethod) {
649 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
650 MSG_BIND_INPUT, mCurMethod, mCurClient.binding));
651 mBoundToMethod = true;
652 }
653 final SessionState session = mCurClient.curSession;
654 if (initial) {
655 executeOrSendMessage(session.method, mCaller.obtainMessageOOO(
656 MSG_START_INPUT, session, mCurInputContext, mCurAttribute));
657 } else {
658 executeOrSendMessage(session.method, mCaller.obtainMessageOOO(
659 MSG_RESTART_INPUT, session, mCurInputContext, mCurAttribute));
660 }
661 if (mShowRequested) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800662 if (DEBUG) Slog.v(TAG, "Attach new input asks to show input");
The Android Open Source Project4df24232009-03-05 14:34:35 -0800663 showCurrentInputLocked(getAppShowFlags(), null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800664 }
665 return needResult
666 ? new InputBindResult(session.session, mCurId, mCurSeq)
667 : null;
668 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800669
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800670 InputBindResult startInputLocked(IInputMethodClient client,
671 IInputContext inputContext, EditorInfo attribute,
672 boolean initial, boolean needResult) {
673 // If no method is currently selected, do nothing.
674 if (mCurMethodId == null) {
675 return mNoBinding;
676 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800677
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800678 ClientState cs = mClients.get(client.asBinder());
679 if (cs == null) {
680 throw new IllegalArgumentException("unknown client "
681 + client.asBinder());
682 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800683
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800684 try {
685 if (!mIWindowManager.inputMethodClientHasFocus(cs.client)) {
686 // Check with the window manager to make sure this client actually
687 // has a window with focus. If not, reject. This is thread safe
688 // because if the focus changes some time before or after, the
689 // next client receiving focus that has any interest in input will
690 // be calling through here after that change happens.
Joe Onorato8a9b2202010-02-26 18:56:32 -0800691 Slog.w(TAG, "Starting input on non-focused client " + cs.client
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800692 + " (uid=" + cs.uid + " pid=" + cs.pid + ")");
693 return null;
694 }
695 } catch (RemoteException e) {
696 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800697
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800698 if (mCurClient != cs) {
699 // If the client is changing, we need to switch over to the new
700 // one.
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700701 unbindCurrentClientLocked();
Joe Onorato8a9b2202010-02-26 18:56:32 -0800702 if (DEBUG) Slog.v(TAG, "switching to client: client = "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800703 + cs.client.asBinder());
704
705 // If the screen is on, inform the new client it is active
706 if (mScreenOn) {
707 try {
708 cs.client.setActive(mScreenOn);
709 } catch (RemoteException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800710 Slog.w(TAG, "Got RemoteException sending setActive notification to pid "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800711 + cs.pid + " uid " + cs.uid);
712 }
713 }
714 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800715
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800716 // Bump up the sequence for this client and attach it.
717 mCurSeq++;
718 if (mCurSeq <= 0) mCurSeq = 1;
719 mCurClient = cs;
720 mCurInputContext = inputContext;
721 mCurAttribute = attribute;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800722
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800723 // Check if the input method is changing.
724 if (mCurId != null && mCurId.equals(mCurMethodId)) {
725 if (cs.curSession != null) {
726 // Fast case: if we are already connected to the input method,
727 // then just return it.
728 return attachNewInputLocked(initial, needResult);
729 }
730 if (mHaveConnection) {
731 if (mCurMethod != null) {
732 if (!cs.sessionRequested) {
733 cs.sessionRequested = true;
Joe Onorato8a9b2202010-02-26 18:56:32 -0800734 if (DEBUG) Slog.v(TAG, "Creating new session for client " + cs);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800735 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
736 MSG_CREATE_SESSION, mCurMethod,
737 new MethodCallback(mCurMethod)));
738 }
739 // Return to client, and we will get back with it when
740 // we have had a session made for it.
741 return new InputBindResult(null, mCurId, mCurSeq);
742 } else if (SystemClock.uptimeMillis()
743 < (mLastBindTime+TIME_TO_RECONNECT)) {
744 // In this case we have connected to the service, but
745 // don't yet have its interface. If it hasn't been too
746 // long since we did the connection, we'll return to
747 // the client and wait to get the service interface so
748 // we can report back. If it has been too long, we want
749 // to fall through so we can try a disconnect/reconnect
750 // to see if we can get back in touch with the service.
751 return new InputBindResult(null, mCurId, mCurSeq);
752 } else {
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800753 EventLog.writeEvent(EventLogTags.IMF_FORCE_RECONNECT_IME,
754 mCurMethodId, SystemClock.uptimeMillis()-mLastBindTime, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800755 }
756 }
757 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800758
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700759 return startInputInnerLocked();
760 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800761
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700762 InputBindResult startInputInnerLocked() {
763 if (mCurMethodId == null) {
764 return mNoBinding;
765 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800766
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700767 if (!mSystemReady) {
768 // If the system is not yet ready, we shouldn't be running third
769 // party code.
Dianne Hackborncc278702009-09-02 23:07:23 -0700770 return new InputBindResult(null, mCurMethodId, mCurSeq);
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700771 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800772
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800773 InputMethodInfo info = mMethodMap.get(mCurMethodId);
774 if (info == null) {
775 throw new IllegalArgumentException("Unknown id: " + mCurMethodId);
776 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800777
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700778 unbindCurrentMethodLocked(false);
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800779
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800780 mCurIntent = new Intent(InputMethod.SERVICE_INTERFACE);
781 mCurIntent.setComponent(info.getComponent());
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700782 mCurIntent.putExtra(Intent.EXTRA_CLIENT_LABEL,
783 com.android.internal.R.string.input_method_binding_label);
784 mCurIntent.putExtra(Intent.EXTRA_CLIENT_INTENT, PendingIntent.getActivity(
785 mContext, 0, new Intent(Settings.ACTION_INPUT_METHOD_SETTINGS), 0));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800786 if (mContext.bindService(mCurIntent, this, Context.BIND_AUTO_CREATE)) {
787 mLastBindTime = SystemClock.uptimeMillis();
788 mHaveConnection = true;
789 mCurId = info.getId();
790 mCurToken = new Binder();
791 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800792 if (DEBUG) Slog.v(TAG, "Adding window token: " + mCurToken);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800793 mIWindowManager.addWindowToken(mCurToken,
794 WindowManager.LayoutParams.TYPE_INPUT_METHOD);
795 } catch (RemoteException e) {
796 }
797 return new InputBindResult(null, mCurId, mCurSeq);
798 } else {
799 mCurIntent = null;
Joe Onorato8a9b2202010-02-26 18:56:32 -0800800 Slog.w(TAG, "Failure connecting to input method service: "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800801 + mCurIntent);
802 }
803 return null;
804 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800805
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800806 public InputBindResult startInput(IInputMethodClient client,
807 IInputContext inputContext, EditorInfo attribute,
808 boolean initial, boolean needResult) {
809 synchronized (mMethodMap) {
810 final long ident = Binder.clearCallingIdentity();
811 try {
812 return startInputLocked(client, inputContext, attribute,
813 initial, needResult);
814 } finally {
815 Binder.restoreCallingIdentity(ident);
816 }
817 }
818 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800819
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800820 public void finishInput(IInputMethodClient client) {
821 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800822
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800823 public void onServiceConnected(ComponentName name, IBinder service) {
824 synchronized (mMethodMap) {
825 if (mCurIntent != null && name.equals(mCurIntent.getComponent())) {
826 mCurMethod = IInputMethod.Stub.asInterface(service);
Dianne Hackborncc278702009-09-02 23:07:23 -0700827 if (mCurToken == null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800828 Slog.w(TAG, "Service connected without a token!");
Dianne Hackborncc278702009-09-02 23:07:23 -0700829 unbindCurrentMethodLocked(false);
830 return;
831 }
Joe Onorato8a9b2202010-02-26 18:56:32 -0800832 if (DEBUG) Slog.v(TAG, "Initiating attach with token: " + mCurToken);
Dianne Hackborncc278702009-09-02 23:07:23 -0700833 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
834 MSG_ATTACH_TOKEN, mCurMethod, mCurToken));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800835 if (mCurClient != null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800836 if (DEBUG) Slog.v(TAG, "Creating first session while with client "
Dianne Hackborncc278702009-09-02 23:07:23 -0700837 + mCurClient);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800838 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
Dianne Hackborncc278702009-09-02 23:07:23 -0700839 MSG_CREATE_SESSION, mCurMethod,
840 new MethodCallback(mCurMethod)));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800841 }
842 }
843 }
844 }
845
846 void onSessionCreated(IInputMethod method, IInputMethodSession session) {
847 synchronized (mMethodMap) {
848 if (mCurMethod != null && method != null
849 && mCurMethod.asBinder() == method.asBinder()) {
850 if (mCurClient != null) {
851 mCurClient.curSession = new SessionState(mCurClient,
852 method, session);
853 mCurClient.sessionRequested = false;
854 InputBindResult res = attachNewInputLocked(true, true);
855 if (res.method != null) {
856 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageOO(
857 MSG_BIND_METHOD, mCurClient.client, res));
858 }
859 }
860 }
861 }
862 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800863
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700864 void unbindCurrentMethodLocked(boolean reportToClient) {
865 if (mHaveConnection) {
866 mContext.unbindService(this);
867 mHaveConnection = false;
868 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800869
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700870 if (mCurToken != null) {
871 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800872 if (DEBUG) Slog.v(TAG, "Removing window token: " + mCurToken);
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700873 mIWindowManager.removeWindowToken(mCurToken);
874 } catch (RemoteException e) {
875 }
876 mCurToken = null;
877 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800878
The Android Open Source Project10592532009-03-18 17:39:46 -0700879 mCurId = null;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700880 clearCurMethodLocked();
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800881
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700882 if (reportToClient && mCurClient != null) {
883 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
884 MSG_UNBIND_METHOD, mCurSeq, mCurClient.client));
885 }
886 }
887
Devin Taylor0c33ed22010-02-23 13:26:46 -0600888 private void finishSession(SessionState sessionState) {
889 if (sessionState != null && sessionState.session != null) {
890 try {
891 sessionState.session.finishSession();
892 } catch (RemoteException e) {
Jean-Baptiste Queru9d0f6df2010-03-29 12:55:09 -0700893 Slog.w(TAG, "Session failed to close due to remote exception", e);
Devin Taylor0c33ed22010-02-23 13:26:46 -0600894 }
895 }
896 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800897
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700898 void clearCurMethodLocked() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800899 if (mCurMethod != null) {
900 for (ClientState cs : mClients.values()) {
901 cs.sessionRequested = false;
Devin Taylor0c33ed22010-02-23 13:26:46 -0600902 finishSession(cs.curSession);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800903 cs.curSession = null;
904 }
Devin Taylor0c33ed22010-02-23 13:26:46 -0600905
906 finishSession(mEnabledSession);
907 mEnabledSession = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800908 mCurMethod = null;
909 }
Joe Onorato0cbda992010-05-02 16:28:15 -0700910 mStatusBar.setIconVisibility("ime", false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800911 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800912
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800913 public void onServiceDisconnected(ComponentName name) {
914 synchronized (mMethodMap) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800915 if (DEBUG) Slog.v(TAG, "Service disconnected: " + name
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800916 + " mCurIntent=" + mCurIntent);
917 if (mCurMethod != null && mCurIntent != null
918 && name.equals(mCurIntent.getComponent())) {
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700919 clearCurMethodLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800920 // We consider this to be a new bind attempt, since the system
921 // should now try to restart the service for us.
922 mLastBindTime = SystemClock.uptimeMillis();
923 mShowRequested = mInputShown;
924 mInputShown = false;
925 if (mCurClient != null) {
926 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
927 MSG_UNBIND_METHOD, mCurSeq, mCurClient.client));
928 }
929 }
930 }
931 }
932
933 public void updateStatusIcon(IBinder token, String packageName, int iconId) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -0700934 int uid = Binder.getCallingUid();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800935 long ident = Binder.clearCallingIdentity();
936 try {
937 if (token == null || mCurToken != token) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -0700938 Slog.w(TAG, "Ignoring setInputMethod of uid " + uid + " token: " + token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800939 return;
940 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800941
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800942 synchronized (mMethodMap) {
943 if (iconId == 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800944 if (DEBUG) Slog.d(TAG, "hide the small icon for the input method");
Joe Onorato0cbda992010-05-02 16:28:15 -0700945 mStatusBar.setIconVisibility("ime", false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800946 } else if (packageName != null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800947 if (DEBUG) Slog.d(TAG, "show a small icon for the input method");
Joe Onorato0cbda992010-05-02 16:28:15 -0700948 mStatusBar.setIcon("ime", packageName, iconId, 0);
949 mStatusBar.setIconVisibility("ime", true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800950 }
951 }
952 } finally {
953 Binder.restoreCallingIdentity(ident);
954 }
955 }
956
satok06487a52010-10-29 11:37:18 +0900957 public void setIMEButtonVisible(IBinder token, boolean visible) {
958 int uid = Binder.getCallingUid();
959 long ident = Binder.clearCallingIdentity();
960 try {
961 if (token == null || mCurToken != token) {
962 Slog.w(TAG, "Ignoring setIMEButtonVisible of uid " + uid + " token: " + token);
963 return;
964 }
965
966 synchronized (mMethodMap) {
satokcd7cd292010-11-20 15:46:23 +0900967 mStatusBar.setIMEButtonVisible(token, visible);
satok06487a52010-10-29 11:37:18 +0900968 }
969 } finally {
970 Binder.restoreCallingIdentity(ident);
971 }
972 }
973
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800974 void updateFromSettingsLocked() {
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700975 // We are assuming that whoever is changing DEFAULT_INPUT_METHOD and
976 // ENABLED_INPUT_METHODS is taking care of keeping them correctly in
977 // sync, so we will never have a DEFAULT_INPUT_METHOD that is not
978 // enabled.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800979 String id = Settings.Secure.getString(mContext.getContentResolver(),
satokab751aa2010-09-14 19:17:36 +0900980 Settings.Secure.DEFAULT_INPUT_METHOD);
satok03eb319a2010-11-11 18:17:42 +0900981 // There is no input method selected, try to choose new applicable input method.
982 if (TextUtils.isEmpty(id) && chooseNewDefaultIMELocked()) {
983 id = Settings.Secure.getString(mContext.getContentResolver(),
984 Settings.Secure.DEFAULT_INPUT_METHOD);
985 }
986 if (!TextUtils.isEmpty(id)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800987 try {
satokab751aa2010-09-14 19:17:36 +0900988 setInputMethodLocked(id, getSelectedInputMethodSubtypeId(id));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800989 } catch (IllegalArgumentException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800990 Slog.w(TAG, "Unknown input method from prefs: " + id, e);
The Android Open Source Project10592532009-03-18 17:39:46 -0700991 mCurMethodId = null;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700992 unbindCurrentMethodLocked(true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800993 }
satokf3db1af2010-11-23 13:34:33 +0900994 mShortcutInputMethodsAndSubtypes.clear();
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700995 } else {
996 // There is no longer an input method set, so stop any current one.
The Android Open Source Project10592532009-03-18 17:39:46 -0700997 mCurMethodId = null;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700998 unbindCurrentMethodLocked(true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800999 }
1000 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001001
satokab751aa2010-09-14 19:17:36 +09001002 /* package */ void setInputMethodLocked(String id, int subtypeId) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001003 InputMethodInfo info = mMethodMap.get(id);
1004 if (info == null) {
satok913a8922010-08-26 21:53:41 +09001005 throw new IllegalArgumentException("Unknown id: " + id);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001006 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001007
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001008 if (id.equals(mCurMethodId)) {
satokb66d2872010-11-10 01:04:04 +09001009 ArrayList<InputMethodSubtype> subtypes = info.getSubtypes();
satokcd7cd292010-11-20 15:46:23 +09001010 InputMethodSubtype subtype = null;
satokb66d2872010-11-10 01:04:04 +09001011 if (subtypeId >= 0 && subtypeId < subtypes.size()) {
satokcd7cd292010-11-20 15:46:23 +09001012 subtype = subtypes.get(subtypeId);
1013 }
1014 if (subtype != mCurrentSubtype) {
1015 synchronized (mMethodMap) {
1016 if (mCurMethod != null) {
1017 try {
1018 setSelectedInputMethodAndSubtypeLocked(info, subtypeId, true);
1019 if (mInputShown) {
1020 // If mInputShown is false, there is no IME button on the
1021 // system bar.
1022 // Thus there is no need to make it invisible explicitly.
1023 mStatusBar.setIMEButtonVisible(mCurToken, true);
satokab751aa2010-09-14 19:17:36 +09001024 }
satokcd7cd292010-11-20 15:46:23 +09001025 // If subtype is null, try to find the most applicable one from
1026 // getCurrentInputMethodSubtype.
1027 if (subtype == null) {
1028 subtype = getCurrentInputMethodSubtype();
1029 }
1030 mCurMethod.changeInputMethodSubtype(subtype);
1031 } catch (RemoteException e) {
1032 return;
satokab751aa2010-09-14 19:17:36 +09001033 }
1034 }
1035 }
1036 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001037 return;
1038 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001039
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001040 final long ident = Binder.clearCallingIdentity();
1041 try {
satokab751aa2010-09-14 19:17:36 +09001042 // Set a subtype to this input method.
1043 // subtypeId the name of a subtype which will be set.
satok723a27e2010-11-11 14:58:11 +09001044 setSelectedInputMethodAndSubtypeLocked(info, subtypeId, false);
1045 // mCurMethodId should be updated after setSelectedInputMethodAndSubtypeLocked()
1046 // because mCurMethodId is stored as a history in
1047 // setSelectedInputMethodAndSubtypeLocked().
1048 mCurMethodId = id;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001049
1050 if (ActivityManagerNative.isSystemReady()) {
1051 Intent intent = new Intent(Intent.ACTION_INPUT_METHOD_CHANGED);
Dianne Hackborn1c633fc2009-12-08 19:45:14 -08001052 intent.addFlags(Intent.FLAG_RECEIVER_REPLACE_PENDING);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001053 intent.putExtra("input_method_id", id);
1054 mContext.sendBroadcast(intent);
1055 }
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001056 unbindCurrentClientLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001057 } finally {
1058 Binder.restoreCallingIdentity(ident);
1059 }
1060 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001061
The Android Open Source Project4df24232009-03-05 14:34:35 -08001062 public boolean showSoftInput(IInputMethodClient client, int flags,
1063 ResultReceiver resultReceiver) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001064 int uid = Binder.getCallingUid();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001065 long ident = Binder.clearCallingIdentity();
1066 try {
1067 synchronized (mMethodMap) {
1068 if (mCurClient == null || client == null
1069 || mCurClient.client.asBinder() != client.asBinder()) {
1070 try {
1071 // We need to check if this is the current client with
1072 // focus in the window manager, to allow this call to
1073 // be made before input is started in it.
1074 if (!mIWindowManager.inputMethodClientHasFocus(client)) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001075 Slog.w(TAG, "Ignoring showSoftInput of uid " + uid + ": " + client);
The Android Open Source Project4df24232009-03-05 14:34:35 -08001076 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001077 }
1078 } catch (RemoteException e) {
The Android Open Source Project4df24232009-03-05 14:34:35 -08001079 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001080 }
1081 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001082
Joe Onorato8a9b2202010-02-26 18:56:32 -08001083 if (DEBUG) Slog.v(TAG, "Client requesting input be shown");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001084 return showCurrentInputLocked(flags, resultReceiver);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001085 }
1086 } finally {
1087 Binder.restoreCallingIdentity(ident);
1088 }
1089 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001090
The Android Open Source Project4df24232009-03-05 14:34:35 -08001091 boolean showCurrentInputLocked(int flags, ResultReceiver resultReceiver) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001092 mShowRequested = true;
1093 if ((flags&InputMethodManager.SHOW_IMPLICIT) == 0) {
1094 mShowExplicitlyRequested = true;
1095 }
1096 if ((flags&InputMethodManager.SHOW_FORCED) != 0) {
1097 mShowExplicitlyRequested = true;
1098 mShowForced = true;
1099 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001100
Dianne Hackborncc278702009-09-02 23:07:23 -07001101 if (!mSystemReady) {
1102 return false;
1103 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001104
The Android Open Source Project4df24232009-03-05 14:34:35 -08001105 boolean res = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001106 if (mCurMethod != null) {
The Android Open Source Project4df24232009-03-05 14:34:35 -08001107 executeOrSendMessage(mCurMethod, mCaller.obtainMessageIOO(
1108 MSG_SHOW_SOFT_INPUT, getImeShowFlags(), mCurMethod,
1109 resultReceiver));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001110 mInputShown = true;
The Android Open Source Project4df24232009-03-05 14:34:35 -08001111 res = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001112 } else if (mHaveConnection && SystemClock.uptimeMillis()
1113 < (mLastBindTime+TIME_TO_RECONNECT)) {
1114 // The client has asked to have the input method shown, but
1115 // we have been sitting here too long with a connection to the
1116 // service and no interface received, so let's disconnect/connect
1117 // to try to prod things along.
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001118 EventLog.writeEvent(EventLogTags.IMF_FORCE_RECONNECT_IME, mCurMethodId,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001119 SystemClock.uptimeMillis()-mLastBindTime,1);
1120 mContext.unbindService(this);
1121 mContext.bindService(mCurIntent, this, Context.BIND_AUTO_CREATE);
1122 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001123
The Android Open Source Project4df24232009-03-05 14:34:35 -08001124 return res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001125 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001126
The Android Open Source Project4df24232009-03-05 14:34:35 -08001127 public boolean hideSoftInput(IInputMethodClient client, int flags,
1128 ResultReceiver resultReceiver) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001129 int uid = Binder.getCallingUid();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001130 long ident = Binder.clearCallingIdentity();
1131 try {
1132 synchronized (mMethodMap) {
1133 if (mCurClient == null || client == null
1134 || mCurClient.client.asBinder() != client.asBinder()) {
1135 try {
1136 // We need to check if this is the current client with
1137 // focus in the window manager, to allow this call to
1138 // be made before input is started in it.
1139 if (!mIWindowManager.inputMethodClientHasFocus(client)) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001140 if (DEBUG) Slog.w(TAG, "Ignoring hideSoftInput of uid "
1141 + uid + ": " + client);
The Android Open Source Project4df24232009-03-05 14:34:35 -08001142 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001143 }
1144 } catch (RemoteException e) {
The Android Open Source Project4df24232009-03-05 14:34:35 -08001145 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001146 }
1147 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001148
Joe Onorato8a9b2202010-02-26 18:56:32 -08001149 if (DEBUG) Slog.v(TAG, "Client requesting input be hidden");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001150 return hideCurrentInputLocked(flags, resultReceiver);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001151 }
1152 } finally {
1153 Binder.restoreCallingIdentity(ident);
1154 }
1155 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001156
The Android Open Source Project4df24232009-03-05 14:34:35 -08001157 boolean hideCurrentInputLocked(int flags, ResultReceiver resultReceiver) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001158 if ((flags&InputMethodManager.HIDE_IMPLICIT_ONLY) != 0
1159 && (mShowExplicitlyRequested || mShowForced)) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001160 if (DEBUG) Slog.v(TAG,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001161 "Not hiding: explicit show not cancelled by non-explicit hide");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001162 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001163 }
1164 if (mShowForced && (flags&InputMethodManager.HIDE_NOT_ALWAYS) != 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001165 if (DEBUG) Slog.v(TAG,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001166 "Not hiding: forced show not cancelled by not-always hide");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001167 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001168 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08001169 boolean res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001170 if (mInputShown && mCurMethod != null) {
The Android Open Source Project4df24232009-03-05 14:34:35 -08001171 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
1172 MSG_HIDE_SOFT_INPUT, mCurMethod, resultReceiver));
1173 res = true;
1174 } else {
1175 res = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001176 }
1177 mInputShown = false;
1178 mShowRequested = false;
1179 mShowExplicitlyRequested = false;
1180 mShowForced = false;
The Android Open Source Project4df24232009-03-05 14:34:35 -08001181 return res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001182 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001183
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001184 public void windowGainedFocus(IInputMethodClient client, IBinder windowToken,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001185 boolean viewHasFocus, boolean isTextEditor, int softInputMode,
1186 boolean first, int windowFlags) {
1187 long ident = Binder.clearCallingIdentity();
1188 try {
1189 synchronized (mMethodMap) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001190 if (DEBUG) Slog.v(TAG, "windowGainedFocus: " + client.asBinder()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001191 + " viewHasFocus=" + viewHasFocus
1192 + " isTextEditor=" + isTextEditor
1193 + " softInputMode=#" + Integer.toHexString(softInputMode)
1194 + " first=" + first + " flags=#"
1195 + Integer.toHexString(windowFlags));
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001196
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001197 if (mCurClient == null || client == null
1198 || mCurClient.client.asBinder() != client.asBinder()) {
1199 try {
1200 // We need to check if this is the current client with
1201 // focus in the window manager, to allow this call to
1202 // be made before input is started in it.
1203 if (!mIWindowManager.inputMethodClientHasFocus(client)) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001204 Slog.w(TAG, "Client not active, ignoring focus gain of: " + client);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001205 return;
1206 }
1207 } catch (RemoteException e) {
1208 }
1209 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001210
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001211 if (mCurFocusedWindow == windowToken) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001212 Slog.w(TAG, "Window already focused, ignoring focus gain of: " + client);
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001213 return;
1214 }
1215 mCurFocusedWindow = windowToken;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001216
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001217 switch (softInputMode&WindowManager.LayoutParams.SOFT_INPUT_MASK_STATE) {
1218 case WindowManager.LayoutParams.SOFT_INPUT_STATE_UNSPECIFIED:
1219 if (!isTextEditor || (softInputMode &
1220 WindowManager.LayoutParams.SOFT_INPUT_MASK_ADJUST)
1221 != WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE) {
1222 if (WindowManager.LayoutParams.mayUseInputMethod(windowFlags)) {
1223 // There is no focus view, and this window will
1224 // be behind any soft input window, so hide the
1225 // soft input window if it is shown.
Joe Onorato8a9b2202010-02-26 18:56:32 -08001226 if (DEBUG) Slog.v(TAG, "Unspecified window will hide input");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001227 hideCurrentInputLocked(InputMethodManager.HIDE_NOT_ALWAYS, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001228 }
1229 } else if (isTextEditor && (softInputMode &
1230 WindowManager.LayoutParams.SOFT_INPUT_MASK_ADJUST)
1231 == WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE
1232 && (softInputMode &
1233 WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0) {
1234 // There is a focus view, and we are navigating forward
1235 // into the window, so show the input window for the user.
Joe Onorato8a9b2202010-02-26 18:56:32 -08001236 if (DEBUG) Slog.v(TAG, "Unspecified window will show input");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001237 showCurrentInputLocked(InputMethodManager.SHOW_IMPLICIT, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001238 }
1239 break;
1240 case WindowManager.LayoutParams.SOFT_INPUT_STATE_UNCHANGED:
1241 // Do nothing.
1242 break;
1243 case WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN:
1244 if ((softInputMode &
1245 WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001246 if (DEBUG) Slog.v(TAG, "Window asks to hide input going forward");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001247 hideCurrentInputLocked(0, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001248 }
1249 break;
1250 case WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN:
Joe Onorato8a9b2202010-02-26 18:56:32 -08001251 if (DEBUG) Slog.v(TAG, "Window asks to hide input");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001252 hideCurrentInputLocked(0, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001253 break;
1254 case WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE:
1255 if ((softInputMode &
1256 WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001257 if (DEBUG) Slog.v(TAG, "Window asks to show input going forward");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001258 showCurrentInputLocked(InputMethodManager.SHOW_IMPLICIT, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001259 }
1260 break;
1261 case WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE:
Joe Onorato8a9b2202010-02-26 18:56:32 -08001262 if (DEBUG) Slog.v(TAG, "Window asks to always show input");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001263 showCurrentInputLocked(InputMethodManager.SHOW_IMPLICIT, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001264 break;
1265 }
1266 }
1267 } finally {
1268 Binder.restoreCallingIdentity(ident);
1269 }
1270 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001271
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001272 public void showInputMethodPickerFromClient(IInputMethodClient client) {
1273 synchronized (mMethodMap) {
1274 if (mCurClient == null || client == null
1275 || mCurClient.client.asBinder() != client.asBinder()) {
satok47a44912010-10-06 16:03:58 +09001276 Slog.w(TAG, "Ignoring showInputMethodPickerFromClient of uid "
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001277 + Binder.getCallingUid() + ": " + client);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001278 }
1279
satok440aab52010-11-25 09:43:11 +09001280 // Always call subtype picker, because subtype picker is a superset of input method
1281 // picker.
satokab751aa2010-09-14 19:17:36 +09001282 mHandler.sendEmptyMessage(MSG_SHOW_IM_SUBTYPE_PICKER);
1283 }
1284 }
1285
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001286 public void setInputMethod(IBinder token, String id) {
satok28203512010-11-24 11:06:49 +09001287 setInputMethodWithSubtypeId(token, id, NOT_A_SUBTYPE_ID);
1288 }
1289
1290 public void setInputMethodAndSubtype(IBinder token, String id, InputMethodSubtype subtype) {
1291 synchronized (mMethodMap) {
1292 if (subtype != null) {
1293 setInputMethodWithSubtypeId(token, id, getSubtypeIdFromHashCode(
1294 mMethodMap.get(id), subtype.hashCode()));
1295 } else {
1296 setInputMethod(token, id);
1297 }
1298 }
satokab751aa2010-09-14 19:17:36 +09001299 }
1300
satok735cf382010-11-11 20:40:09 +09001301 public boolean switchToLastInputMethod(IBinder token) {
1302 synchronized (mMethodMap) {
1303 Pair<String, String> lastIme = mSettings.getLastInputMethodAndSubtypeLocked();
1304 if (lastIme != null) {
1305 InputMethodInfo imi = mMethodMap.get(lastIme.first);
1306 if (imi != null) {
satok28203512010-11-24 11:06:49 +09001307 setInputMethodWithSubtypeId(token, lastIme.first, getSubtypeIdFromHashCode(
satok735cf382010-11-11 20:40:09 +09001308 imi, Integer.valueOf(lastIme.second)));
1309 return true;
1310 }
1311 }
1312 return false;
1313 }
1314 }
1315
satok28203512010-11-24 11:06:49 +09001316 private void setInputMethodWithSubtypeId(IBinder token, String id, int subtypeId) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001317 synchronized (mMethodMap) {
1318 if (token == null) {
1319 if (mContext.checkCallingOrSelfPermission(
1320 android.Manifest.permission.WRITE_SECURE_SETTINGS)
1321 != PackageManager.PERMISSION_GRANTED) {
1322 throw new SecurityException(
1323 "Using null token requires permission "
1324 + android.Manifest.permission.WRITE_SECURE_SETTINGS);
1325 }
1326 } else if (mCurToken != token) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001327 Slog.w(TAG, "Ignoring setInputMethod of uid " + Binder.getCallingUid()
1328 + " token: " + token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001329 return;
1330 }
1331
1332 long ident = Binder.clearCallingIdentity();
1333 try {
satokab751aa2010-09-14 19:17:36 +09001334 setInputMethodLocked(id, subtypeId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001335 } finally {
1336 Binder.restoreCallingIdentity(ident);
1337 }
1338 }
1339 }
1340
1341 public void hideMySoftInput(IBinder token, int flags) {
1342 synchronized (mMethodMap) {
1343 if (token == null || mCurToken != token) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001344 if (DEBUG) Slog.w(TAG, "Ignoring hideInputMethod of uid "
1345 + Binder.getCallingUid() + " token: " + token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001346 return;
1347 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001348 long ident = Binder.clearCallingIdentity();
1349 try {
The Android Open Source Project4df24232009-03-05 14:34:35 -08001350 hideCurrentInputLocked(flags, null);
1351 } finally {
1352 Binder.restoreCallingIdentity(ident);
1353 }
1354 }
1355 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001356
The Android Open Source Project4df24232009-03-05 14:34:35 -08001357 public void showMySoftInput(IBinder token, int flags) {
1358 synchronized (mMethodMap) {
1359 if (token == null || mCurToken != token) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001360 Slog.w(TAG, "Ignoring showMySoftInput of uid "
1361 + Binder.getCallingUid() + " token: " + token);
The Android Open Source Project4df24232009-03-05 14:34:35 -08001362 return;
1363 }
1364 long ident = Binder.clearCallingIdentity();
1365 try {
1366 showCurrentInputLocked(flags, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001367 } finally {
1368 Binder.restoreCallingIdentity(ident);
1369 }
1370 }
1371 }
1372
1373 void setEnabledSessionInMainThread(SessionState session) {
1374 if (mEnabledSession != session) {
1375 if (mEnabledSession != null) {
1376 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001377 if (DEBUG) Slog.v(TAG, "Disabling: " + mEnabledSession);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001378 mEnabledSession.method.setSessionEnabled(
1379 mEnabledSession.session, false);
1380 } catch (RemoteException e) {
1381 }
1382 }
1383 mEnabledSession = session;
1384 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001385 if (DEBUG) Slog.v(TAG, "Enabling: " + mEnabledSession);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001386 session.method.setSessionEnabled(
1387 session.session, true);
1388 } catch (RemoteException e) {
1389 }
1390 }
1391 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001392
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001393 public boolean handleMessage(Message msg) {
1394 HandlerCaller.SomeArgs args;
1395 switch (msg.what) {
1396 case MSG_SHOW_IM_PICKER:
1397 showInputMethodMenu();
1398 return true;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001399
satokab751aa2010-09-14 19:17:36 +09001400 case MSG_SHOW_IM_SUBTYPE_PICKER:
1401 showInputMethodSubtypeMenu();
1402 return true;
1403
satok47a44912010-10-06 16:03:58 +09001404 case MSG_SHOW_IM_SUBTYPE_ENABLER:
1405 showInputMethodAndSubtypeEnabler();
1406 return true;
1407
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001408 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001409
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001410 case MSG_UNBIND_INPUT:
1411 try {
1412 ((IInputMethod)msg.obj).unbindInput();
1413 } catch (RemoteException e) {
1414 // There is nothing interesting about the method dying.
1415 }
1416 return true;
1417 case MSG_BIND_INPUT:
1418 args = (HandlerCaller.SomeArgs)msg.obj;
1419 try {
1420 ((IInputMethod)args.arg1).bindInput((InputBinding)args.arg2);
1421 } catch (RemoteException e) {
1422 }
1423 return true;
1424 case MSG_SHOW_SOFT_INPUT:
The Android Open Source Project4df24232009-03-05 14:34:35 -08001425 args = (HandlerCaller.SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001426 try {
The Android Open Source Project4df24232009-03-05 14:34:35 -08001427 ((IInputMethod)args.arg1).showSoftInput(msg.arg1,
1428 (ResultReceiver)args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001429 } catch (RemoteException e) {
1430 }
1431 return true;
1432 case MSG_HIDE_SOFT_INPUT:
The Android Open Source Project4df24232009-03-05 14:34:35 -08001433 args = (HandlerCaller.SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001434 try {
The Android Open Source Project4df24232009-03-05 14:34:35 -08001435 ((IInputMethod)args.arg1).hideSoftInput(0,
1436 (ResultReceiver)args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001437 } catch (RemoteException e) {
1438 }
1439 return true;
1440 case MSG_ATTACH_TOKEN:
1441 args = (HandlerCaller.SomeArgs)msg.obj;
1442 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001443 if (DEBUG) Slog.v(TAG, "Sending attach of token: " + args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001444 ((IInputMethod)args.arg1).attachToken((IBinder)args.arg2);
1445 } catch (RemoteException e) {
1446 }
1447 return true;
1448 case MSG_CREATE_SESSION:
1449 args = (HandlerCaller.SomeArgs)msg.obj;
1450 try {
1451 ((IInputMethod)args.arg1).createSession(
1452 (IInputMethodCallback)args.arg2);
1453 } catch (RemoteException e) {
1454 }
1455 return true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001456 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001457
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001458 case MSG_START_INPUT:
1459 args = (HandlerCaller.SomeArgs)msg.obj;
1460 try {
1461 SessionState session = (SessionState)args.arg1;
1462 setEnabledSessionInMainThread(session);
1463 session.method.startInput((IInputContext)args.arg2,
1464 (EditorInfo)args.arg3);
1465 } catch (RemoteException e) {
1466 }
1467 return true;
1468 case MSG_RESTART_INPUT:
1469 args = (HandlerCaller.SomeArgs)msg.obj;
1470 try {
1471 SessionState session = (SessionState)args.arg1;
1472 setEnabledSessionInMainThread(session);
1473 session.method.restartInput((IInputContext)args.arg2,
1474 (EditorInfo)args.arg3);
1475 } catch (RemoteException e) {
1476 }
1477 return true;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001478
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001479 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001480
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001481 case MSG_UNBIND_METHOD:
1482 try {
1483 ((IInputMethodClient)msg.obj).onUnbindMethod(msg.arg1);
1484 } catch (RemoteException e) {
1485 // There is nothing interesting about the last client dying.
1486 }
1487 return true;
1488 case MSG_BIND_METHOD:
1489 args = (HandlerCaller.SomeArgs)msg.obj;
1490 try {
1491 ((IInputMethodClient)args.arg1).onBindMethod(
1492 (InputBindResult)args.arg2);
1493 } catch (RemoteException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001494 Slog.w(TAG, "Client died receiving input method " + args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001495 }
1496 return true;
1497 }
1498 return false;
1499 }
1500
Brandon Ballinger6da35a02009-10-21 00:38:13 -07001501 private boolean isSystemIme(InputMethodInfo inputMethod) {
1502 return (inputMethod.getServiceInfo().applicationInfo.flags
1503 & ApplicationInfo.FLAG_SYSTEM) != 0;
1504 }
1505
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001506 private boolean chooseNewDefaultIMELocked() {
satokd87c2592010-09-29 11:52:06 +09001507 List<InputMethodInfo> enabled = mSettings.getEnabledInputMethodListLocked();
Brandon Ballinger6da35a02009-10-21 00:38:13 -07001508 if (enabled != null && enabled.size() > 0) {
Dianne Hackborn83e48f52010-03-23 23:03:25 -07001509 // We'd prefer to fall back on a system IME, since that is safer.
1510 int i=enabled.size();
1511 while (i > 0) {
1512 i--;
1513 if ((enabled.get(i).getServiceInfo().applicationInfo.flags
1514 & ApplicationInfo.FLAG_SYSTEM) != 0) {
1515 break;
1516 }
1517 }
satokab751aa2010-09-14 19:17:36 +09001518 InputMethodInfo imi = enabled.get(i);
satok03eb319a2010-11-11 18:17:42 +09001519 if (DEBUG) {
1520 Slog.d(TAG, "New default IME was selected: " + imi.getId());
1521 }
satok723a27e2010-11-11 14:58:11 +09001522 resetSelectedInputMethodAndSubtypeLocked(imi.getId());
Brandon Ballinger6da35a02009-10-21 00:38:13 -07001523 return true;
1524 }
1525
1526 return false;
1527 }
1528
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001529 void buildInputMethodListLocked(ArrayList<InputMethodInfo> list,
1530 HashMap<String, InputMethodInfo> map) {
1531 list.clear();
1532 map.clear();
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001533
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001534 PackageManager pm = mContext.getPackageManager();
Amith Yamasanie861ec12010-03-24 21:39:27 -07001535 final Configuration config = mContext.getResources().getConfiguration();
1536 final boolean haveHardKeyboard = config.keyboard == Configuration.KEYBOARD_QWERTY;
1537 String disabledSysImes = Settings.Secure.getString(mContext.getContentResolver(),
1538 Secure.DISABLED_SYSTEM_INPUT_METHODS);
1539 if (disabledSysImes == null) disabledSysImes = "";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001540
1541 List<ResolveInfo> services = pm.queryIntentServices(
1542 new Intent(InputMethod.SERVICE_INTERFACE),
1543 PackageManager.GET_META_DATA);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001544
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001545 for (int i = 0; i < services.size(); ++i) {
1546 ResolveInfo ri = services.get(i);
1547 ServiceInfo si = ri.serviceInfo;
1548 ComponentName compName = new ComponentName(si.packageName, si.name);
1549 if (!android.Manifest.permission.BIND_INPUT_METHOD.equals(
1550 si.permission)) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001551 Slog.w(TAG, "Skipping input method " + compName
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001552 + ": it does not require the permission "
1553 + android.Manifest.permission.BIND_INPUT_METHOD);
1554 continue;
1555 }
1556
Joe Onorato8a9b2202010-02-26 18:56:32 -08001557 if (DEBUG) Slog.d(TAG, "Checking " + compName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001558
1559 try {
1560 InputMethodInfo p = new InputMethodInfo(mContext, ri);
1561 list.add(p);
Amith Yamasanie861ec12010-03-24 21:39:27 -07001562 final String id = p.getId();
1563 map.put(id, p);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001564
Amith Yamasanie861ec12010-03-24 21:39:27 -07001565 // System IMEs are enabled by default, unless there's a hard keyboard
1566 // and the system IME was explicitly disabled
1567 if (isSystemIme(p) && (!haveHardKeyboard || disabledSysImes.indexOf(id) < 0)) {
1568 setInputMethodEnabledLocked(id, true);
Brandon Ballinger6da35a02009-10-21 00:38:13 -07001569 }
1570
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001571 if (DEBUG) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001572 Slog.d(TAG, "Found a third-party input method " + p);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001573 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001574
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001575 } catch (XmlPullParserException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001576 Slog.w(TAG, "Unable to load input method " + compName, e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001577 } catch (IOException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001578 Slog.w(TAG, "Unable to load input method " + compName, e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001579 }
1580 }
Brandon Ballinger6da35a02009-10-21 00:38:13 -07001581
1582 String defaultIme = Settings.Secure.getString(mContext
1583 .getContentResolver(), Settings.Secure.DEFAULT_INPUT_METHOD);
satok913a8922010-08-26 21:53:41 +09001584 if (!TextUtils.isEmpty(defaultIme) && !map.containsKey(defaultIme)) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001585 if (chooseNewDefaultIMELocked()) {
Brandon Ballinger6da35a02009-10-21 00:38:13 -07001586 updateFromSettingsLocked();
1587 }
1588 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001589 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001590
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001591 // ----------------------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001592
satokab751aa2010-09-14 19:17:36 +09001593 private void showInputMethodMenu() {
1594 showInputMethodMenuInternal(false);
1595 }
1596
1597 private void showInputMethodSubtypeMenu() {
1598 showInputMethodMenuInternal(true);
1599 }
1600
satok47a44912010-10-06 16:03:58 +09001601 private void showInputMethodAndSubtypeEnabler() {
satok86417ea2010-10-27 14:11:03 +09001602 Intent intent = new Intent(Settings.ACTION_INPUT_METHOD_AND_SUBTYPE_ENABLER);
satok47a44912010-10-06 16:03:58 +09001603 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
satok86417ea2010-10-27 14:11:03 +09001604 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED
1605 | Intent.FLAG_ACTIVITY_CLEAR_TOP);
satok47a44912010-10-06 16:03:58 +09001606 mContext.startActivity(intent);
1607 }
1608
satokab751aa2010-09-14 19:17:36 +09001609 private void showInputMethodMenuInternal(boolean showSubtypes) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001610 if (DEBUG) Slog.v(TAG, "Show switching menu");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001611
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001612 final Context context = mContext;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001613
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001614 final PackageManager pm = context.getPackageManager();
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001615
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001616 String lastInputMethodId = Settings.Secure.getString(context
1617 .getContentResolver(), Settings.Secure.DEFAULT_INPUT_METHOD);
satokab751aa2010-09-14 19:17:36 +09001618 int lastInputMethodSubtypeId = getSelectedInputMethodSubtypeId(lastInputMethodId);
Joe Onorato8a9b2202010-02-26 18:56:32 -08001619 if (DEBUG) Slog.v(TAG, "Current IME: " + lastInputMethodId);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001620
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001621 synchronized (mMethodMap) {
satok7f35c8c2010-10-07 21:13:11 +09001622 final List<Pair<InputMethodInfo, ArrayList<String>>> immis =
satok67ddf9c2010-11-17 09:45:54 +09001623 mSettings.getEnabledInputMethodAndSubtypeHashCodeListLocked();
satok7f35c8c2010-10-07 21:13:11 +09001624 ArrayList<Integer> subtypeIds = new ArrayList<Integer>();
1625
1626 if (immis == null || immis.size() == 0) {
1627 return;
1628 }
1629
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001630 hideInputMethodMenuLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001631
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001632 int N = immis.size();
satok913a8922010-08-26 21:53:41 +09001633
satokab751aa2010-09-14 19:17:36 +09001634 final Map<CharSequence, Pair<InputMethodInfo, Integer>> imMap =
1635 new TreeMap<CharSequence, Pair<InputMethodInfo, Integer>>(Collator.getInstance());
satok913a8922010-08-26 21:53:41 +09001636
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001637 for (int i = 0; i < N; ++i) {
satok7f35c8c2010-10-07 21:13:11 +09001638 InputMethodInfo property = immis.get(i).first;
1639 final ArrayList<String> enabledSubtypeIds = immis.get(i).second;
1640 HashSet<String> enabledSubtypeSet = new HashSet<String>();
1641 for (String s : enabledSubtypeIds) {
1642 enabledSubtypeSet.add(s);
1643 }
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001644 if (property == null) {
1645 continue;
1646 }
satokab751aa2010-09-14 19:17:36 +09001647 ArrayList<InputMethodSubtype> subtypes = property.getSubtypes();
1648 CharSequence label = property.loadLabel(pm);
satok7f35c8c2010-10-07 21:13:11 +09001649 if (showSubtypes && enabledSubtypeSet.size() > 0) {
satokab751aa2010-09-14 19:17:36 +09001650 for (int j = 0; j < subtypes.size(); ++j) {
1651 InputMethodSubtype subtype = subtypes.get(j);
satok7f35c8c2010-10-07 21:13:11 +09001652 if (enabledSubtypeSet.contains(String.valueOf(subtype.hashCode()))) {
1653 CharSequence title;
1654 int nameResId = subtype.getNameResId();
satok9ef02832010-11-04 21:17:48 +09001655 String mode = subtype.getMode();
satok7f35c8c2010-10-07 21:13:11 +09001656 if (nameResId != 0) {
1657 title = pm.getText(property.getPackageName(), nameResId,
1658 property.getServiceInfo().applicationInfo);
1659 } else {
1660 CharSequence language = subtype.getLocale();
satok7f35c8c2010-10-07 21:13:11 +09001661 // TODO: Use more friendly Title and UI
1662 title = label + "," + (mode == null ? "" : mode) + ","
1663 + (language == null ? "" : language);
1664 }
1665 imMap.put(title, new Pair<InputMethodInfo, Integer>(property, j));
satokab751aa2010-09-14 19:17:36 +09001666 }
satokab751aa2010-09-14 19:17:36 +09001667 }
1668 } else {
1669 imMap.put(label,
1670 new Pair<InputMethodInfo, Integer>(property, NOT_A_SUBTYPE_ID));
1671 subtypeIds.add(0);
1672 }
Dianne Hackborn97106ab2010-03-03 00:08:31 -08001673 }
satok913a8922010-08-26 21:53:41 +09001674
1675 N = imMap.size();
1676 mItems = imMap.keySet().toArray(new CharSequence[N]);
satokab751aa2010-09-14 19:17:36 +09001677 mIms = new InputMethodInfo[N];
1678 mSubtypeIds = new int[N];
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001679 int checkedItem = 0;
1680 for (int i = 0; i < N; ++i) {
satokab751aa2010-09-14 19:17:36 +09001681 Pair<InputMethodInfo, Integer> value = imMap.get(mItems[i]);
1682 mIms[i] = value.first;
1683 mSubtypeIds[i] = value.second;
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001684 if (mIms[i].getId().equals(lastInputMethodId)) {
satokab751aa2010-09-14 19:17:36 +09001685 int subtypeId = mSubtypeIds[i];
1686 if ((subtypeId == NOT_A_SUBTYPE_ID)
1687 || (lastInputMethodSubtypeId == NOT_A_SUBTYPE_ID && subtypeId == 0)
1688 || (subtypeId == lastInputMethodSubtypeId)) {
1689 checkedItem = i;
1690 }
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001691 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001692 }
satokab751aa2010-09-14 19:17:36 +09001693
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001694 AlertDialog.OnClickListener adocl = new AlertDialog.OnClickListener() {
1695 public void onClick(DialogInterface dialog, int which) {
1696 hideInputMethodMenu();
1697 }
1698 };
satokd87c2592010-09-29 11:52:06 +09001699
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001700 TypedArray a = context.obtainStyledAttributes(null,
1701 com.android.internal.R.styleable.DialogPreference,
1702 com.android.internal.R.attr.alertDialogStyle, 0);
1703 mDialogBuilder = new AlertDialog.Builder(context)
1704 .setTitle(com.android.internal.R.string.select_input_method)
1705 .setOnCancelListener(new OnCancelListener() {
1706 public void onCancel(DialogInterface dialog) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001707 hideInputMethodMenu();
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001708 }
1709 })
1710 .setIcon(a.getDrawable(
1711 com.android.internal.R.styleable.DialogPreference_dialogTitle));
1712 a.recycle();
satokd87c2592010-09-29 11:52:06 +09001713
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001714 mDialogBuilder.setSingleChoiceItems(mItems, checkedItem,
1715 new AlertDialog.OnClickListener() {
1716 public void onClick(DialogInterface dialog, int which) {
1717 synchronized (mMethodMap) {
satokab751aa2010-09-14 19:17:36 +09001718 if (mIms == null || mIms.length <= which
1719 || mSubtypeIds == null || mSubtypeIds.length <= which) {
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001720 return;
1721 }
1722 InputMethodInfo im = mIms[which];
satokab751aa2010-09-14 19:17:36 +09001723 int subtypeId = mSubtypeIds[which];
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001724 hideInputMethodMenu();
1725 if (im != null) {
satokab751aa2010-09-14 19:17:36 +09001726 if ((subtypeId < 0)
1727 || (subtypeId >= im.getSubtypes().size())) {
1728 subtypeId = NOT_A_SUBTYPE_ID;
1729 }
1730 setInputMethodLocked(im.getId(), subtypeId);
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001731 }
Dianne Hackborn20cb56e2010-03-04 00:58:29 -08001732 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001733 }
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001734 });
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001735
satok7f35c8c2010-10-07 21:13:11 +09001736 if (showSubtypes) {
1737 mDialogBuilder.setPositiveButton(com.android.internal.R.string.more_item_label,
1738 new DialogInterface.OnClickListener() {
1739 public void onClick(DialogInterface dialog, int whichButton) {
1740 showInputMethodAndSubtypeEnabler();
1741 }
1742 });
1743 }
satok0ff647b2010-10-08 13:49:28 +09001744 mDialogBuilder.setNegativeButton(com.android.internal.R.string.cancel,
1745 new DialogInterface.OnClickListener() {
1746 public void onClick(DialogInterface dialog, int whichButton) {
1747 hideInputMethodMenu();
1748 }
1749 });
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001750 mSwitchingDialog = mDialogBuilder.create();
1751 mSwitchingDialog.getWindow().setType(
1752 WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG);
1753 mSwitchingDialog.show();
1754 }
1755 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001756
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001757 void hideInputMethodMenu() {
The Android Open Source Project10592532009-03-18 17:39:46 -07001758 synchronized (mMethodMap) {
1759 hideInputMethodMenuLocked();
1760 }
1761 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001762
The Android Open Source Project10592532009-03-18 17:39:46 -07001763 void hideInputMethodMenuLocked() {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001764 if (DEBUG) Slog.v(TAG, "Hide switching menu");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001765
The Android Open Source Project10592532009-03-18 17:39:46 -07001766 if (mSwitchingDialog != null) {
1767 mSwitchingDialog.dismiss();
1768 mSwitchingDialog = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001769 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001770
The Android Open Source Project10592532009-03-18 17:39:46 -07001771 mDialogBuilder = null;
1772 mItems = null;
1773 mIms = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001774 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001775
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001776 // ----------------------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001777
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001778 public boolean setInputMethodEnabled(String id, boolean enabled) {
1779 synchronized (mMethodMap) {
1780 if (mContext.checkCallingOrSelfPermission(
1781 android.Manifest.permission.WRITE_SECURE_SETTINGS)
1782 != PackageManager.PERMISSION_GRANTED) {
1783 throw new SecurityException(
1784 "Requires permission "
1785 + android.Manifest.permission.WRITE_SECURE_SETTINGS);
1786 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001787
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001788 long ident = Binder.clearCallingIdentity();
1789 try {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001790 return setInputMethodEnabledLocked(id, enabled);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001791 } finally {
1792 Binder.restoreCallingIdentity(ident);
1793 }
1794 }
1795 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001796
1797 boolean setInputMethodEnabledLocked(String id, boolean enabled) {
1798 // Make sure this is a valid input method.
1799 InputMethodInfo imm = mMethodMap.get(id);
1800 if (imm == null) {
satokd87c2592010-09-29 11:52:06 +09001801 throw new IllegalArgumentException("Unknown id: " + mCurMethodId);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001802 }
1803
satokd87c2592010-09-29 11:52:06 +09001804 List<Pair<String, ArrayList<String>>> enabledInputMethodsList = mSettings
1805 .getEnabledInputMethodsAndSubtypeListLocked();
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001806
satokd87c2592010-09-29 11:52:06 +09001807 if (enabled) {
1808 for (Pair<String, ArrayList<String>> pair: enabledInputMethodsList) {
1809 if (pair.first.equals(id)) {
1810 // We are enabling this input method, but it is already enabled.
1811 // Nothing to do. The previous state was enabled.
1812 return true;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001813 }
1814 }
satokd87c2592010-09-29 11:52:06 +09001815 mSettings.appendAndPutEnabledInputMethodLocked(id, false);
1816 // Previous state was disabled.
1817 return false;
1818 } else {
1819 StringBuilder builder = new StringBuilder();
1820 if (mSettings.buildAndPutEnabledInputMethodsStrRemovingIdLocked(
1821 builder, enabledInputMethodsList, id)) {
1822 // Disabled input method is currently selected, switch to another one.
1823 String selId = Settings.Secure.getString(mContext.getContentResolver(),
1824 Settings.Secure.DEFAULT_INPUT_METHOD);
satok03eb319a2010-11-11 18:17:42 +09001825 if (id.equals(selId) && !chooseNewDefaultIMELocked()) {
1826 Slog.i(TAG, "Can't find new IME, unsetting the current input method.");
1827 resetSelectedInputMethodAndSubtypeLocked("");
satokd87c2592010-09-29 11:52:06 +09001828 }
1829 // Previous state was enabled.
1830 return true;
1831 } else {
1832 // We are disabling the input method but it is already disabled.
1833 // Nothing to do. The previous state was disabled.
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001834 return false;
1835 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001836 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001837 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08001838
satok723a27e2010-11-11 14:58:11 +09001839 private void saveCurrentInputMethodAndSubtypeToHistory() {
1840 String subtypeId = NOT_A_SUBTYPE_ID_STR;
1841 if (mCurrentSubtype != null) {
1842 subtypeId = String.valueOf(mCurrentSubtype.hashCode());
1843 }
1844 mSettings.addSubtypeToHistory(mCurMethodId, subtypeId);
satokab751aa2010-09-14 19:17:36 +09001845 }
1846
satok723a27e2010-11-11 14:58:11 +09001847 private void setSelectedInputMethodAndSubtypeLocked(InputMethodInfo imi, int subtypeId,
1848 boolean setSubtypeOnly) {
1849 // Update the history of InputMethod and Subtype
1850 saveCurrentInputMethodAndSubtypeToHistory();
1851
1852 // Set Subtype here
1853 if (imi == null || subtypeId < 0) {
1854 mSettings.putSelectedSubtype(NOT_A_SUBTYPE_ID);
Tadashi G. Takaoka0ba75bb2010-11-09 12:19:32 -08001855 mCurrentSubtype = null;
satok723a27e2010-11-11 14:58:11 +09001856 } else {
1857 final ArrayList<InputMethodSubtype> subtypes = imi.getSubtypes();
1858 if (subtypeId < subtypes.size()) {
1859 mSettings.putSelectedSubtype(subtypes.get(subtypeId).hashCode());
1860 mCurrentSubtype = subtypes.get(subtypeId);
1861 } else {
1862 mSettings.putSelectedSubtype(NOT_A_SUBTYPE_ID);
1863 mCurrentSubtype = null;
1864 }
satokab751aa2010-09-14 19:17:36 +09001865 }
satok723a27e2010-11-11 14:58:11 +09001866
1867 if (!setSubtypeOnly) {
1868 // Set InputMethod here
1869 mSettings.putSelectedInputMethod(imi != null ? imi.getId() : "");
1870 }
1871 }
1872
1873 private void resetSelectedInputMethodAndSubtypeLocked(String newDefaultIme) {
1874 InputMethodInfo imi = mMethodMap.get(newDefaultIme);
1875 int lastSubtypeId = NOT_A_SUBTYPE_ID;
1876 // newDefaultIme is empty when there is no candidate for the selected IME.
1877 if (imi != null && !TextUtils.isEmpty(newDefaultIme)) {
1878 String subtypeHashCode = mSettings.getLastSubtypeForInputMethodLocked(newDefaultIme);
1879 if (subtypeHashCode != null) {
1880 try {
1881 lastSubtypeId = getSubtypeIdFromHashCode(
1882 imi, Integer.valueOf(subtypeHashCode));
1883 } catch (NumberFormatException e) {
1884 Slog.w(TAG, "HashCode for subtype looks broken: " + subtypeHashCode, e);
1885 }
1886 }
1887 }
1888 setSelectedInputMethodAndSubtypeLocked(imi, lastSubtypeId, false);
satokab751aa2010-09-14 19:17:36 +09001889 }
1890
1891 private int getSelectedInputMethodSubtypeId(String id) {
1892 InputMethodInfo imi = mMethodMap.get(id);
1893 if (imi == null) {
1894 return NOT_A_SUBTYPE_ID;
1895 }
satokab751aa2010-09-14 19:17:36 +09001896 int subtypeId;
1897 try {
1898 subtypeId = Settings.Secure.getInt(mContext.getContentResolver(),
1899 Settings.Secure.SELECTED_INPUT_METHOD_SUBTYPE);
1900 } catch (SettingNotFoundException e) {
1901 return NOT_A_SUBTYPE_ID;
1902 }
satok723a27e2010-11-11 14:58:11 +09001903 return getSubtypeIdFromHashCode(imi, subtypeId);
1904 }
1905
1906 private int getSubtypeIdFromHashCode(InputMethodInfo imi, int subtypeHashCode) {
satok28203512010-11-24 11:06:49 +09001907 if (imi != null) {
1908 ArrayList<InputMethodSubtype> subtypes = imi.getSubtypes();
1909 for (int i = 0; i < subtypes.size(); ++i) {
1910 InputMethodSubtype ims = subtypes.get(i);
1911 if (subtypeHashCode == ims.hashCode()) {
1912 return i;
1913 }
satokab751aa2010-09-14 19:17:36 +09001914 }
1915 }
1916 return NOT_A_SUBTYPE_ID;
1917 }
1918
satok4e4569d2010-11-19 18:45:53 +09001919 /**
1920 * If there are no selected subtypes, tries finding the most applicable one according to the
1921 * given locale.
1922 * @param subtypes this function will search the most applicable subtype in subtypes
1923 * @param mode subtypes will be filtered by mode
1924 * @param locale subtypes will be filtered by locale
1925 * @param defaultSubtypeId if this function can't find the most applicable subtype, it will
1926 * return defaultSubtypeId
1927 * @return the most applicable subtypeId
1928 */
satokcd7cd292010-11-20 15:46:23 +09001929 private InputMethodSubtype findLastResortApplicableSubtypeLocked(
satok4e4569d2010-11-19 18:45:53 +09001930 List<InputMethodSubtype> subtypes, String mode, String locale, int defaultSubtypeId) {
satok8fbb1e82010-11-02 23:15:58 +09001931 if (subtypes == null || subtypes.size() == 0) {
satokcd7cd292010-11-20 15:46:23 +09001932 return null;
satok8fbb1e82010-11-02 23:15:58 +09001933 }
satok4e4569d2010-11-19 18:45:53 +09001934 if (TextUtils.isEmpty(locale)) {
1935 locale = mContext.getResources().getConfiguration().locale.toString();
1936 }
satok8fbb1e82010-11-02 23:15:58 +09001937 final String language = locale.substring(0, 2);
1938 boolean partialMatchFound = false;
satokcd7cd292010-11-20 15:46:23 +09001939 InputMethodSubtype applicableSubtype = null;
satok8fbb1e82010-11-02 23:15:58 +09001940 for (int i = 0; i < subtypes.size(); ++i) {
satokcd7cd292010-11-20 15:46:23 +09001941 InputMethodSubtype subtype = subtypes.get(i);
1942 final String subtypeLocale = subtype.getLocale();
satok4e4569d2010-11-19 18:45:53 +09001943 // An applicable subtype should match "mode".
1944 if (subtypes.get(i).getMode().equalsIgnoreCase(mode)) {
satok9ef02832010-11-04 21:17:48 +09001945 if (locale.equals(subtypeLocale)) {
1946 // Exact match (e.g. system locale is "en_US" and subtype locale is "en_US")
satokcd7cd292010-11-20 15:46:23 +09001947 applicableSubtype = subtype;
satok9ef02832010-11-04 21:17:48 +09001948 break;
1949 } else if (!partialMatchFound && subtypeLocale.startsWith(language)) {
1950 // Partial match (e.g. system locale is "en_US" and subtype locale is "en")
satokcd7cd292010-11-20 15:46:23 +09001951 applicableSubtype = subtype;
satok9ef02832010-11-04 21:17:48 +09001952 partialMatchFound = true;
1953 }
satok8fbb1e82010-11-02 23:15:58 +09001954 }
1955 }
1956
1957 // The first subtype applicable to the system locale will be defined as the most applicable
1958 // subtype.
1959 if (DEBUG) {
satokcd7cd292010-11-20 15:46:23 +09001960 Slog.d(TAG, "Applicable InputMethodSubtype was found: " + applicableSubtype.getMode()
1961 + "," + applicableSubtype.getLocale());
satok8fbb1e82010-11-02 23:15:58 +09001962 }
satokcd7cd292010-11-20 15:46:23 +09001963 return applicableSubtype;
satok8fbb1e82010-11-02 23:15:58 +09001964 }
1965
satok4e4569d2010-11-19 18:45:53 +09001966 // If there are no selected shortcuts, tries finding the most applicable ones.
1967 private Pair<InputMethodInfo, InputMethodSubtype>
1968 findLastResortApplicableShortcutInputMethodAndSubtypeLocked(String mode) {
1969 List<InputMethodInfo> imis = mSettings.getEnabledInputMethodListLocked();
1970 InputMethodInfo mostApplicableIMI = null;
satokcd7cd292010-11-20 15:46:23 +09001971 InputMethodSubtype mostApplicableSubtype = null;
satok4e4569d2010-11-19 18:45:53 +09001972 boolean foundInSystemIME = false;
1973
1974 // Search applicable subtype for each InputMethodInfo
1975 for (InputMethodInfo imi: imis) {
satokcd7cd292010-11-20 15:46:23 +09001976 InputMethodSubtype subtype = null;
satok4e4569d2010-11-19 18:45:53 +09001977 if (mCurrentSubtype != null) {
1978 // 1. Search with the current subtype's locale and the enabled subtypes
satokcd7cd292010-11-20 15:46:23 +09001979 subtype = findLastResortApplicableSubtypeLocked(
satok4e4569d2010-11-19 18:45:53 +09001980 mSettings.getEnabledInputMethodSubtypeListLocked(
1981 imi), mode, mCurrentSubtype.getLocale(), NOT_A_SUBTYPE_ID);
satokcd7cd292010-11-20 15:46:23 +09001982 if (subtype == null) {
satok4e4569d2010-11-19 18:45:53 +09001983 // 2. Search with the current subtype's locale and all subtypes
satokcd7cd292010-11-20 15:46:23 +09001984 subtype = findLastResortApplicableSubtypeLocked(imi.getSubtypes(),
satok4e4569d2010-11-19 18:45:53 +09001985 mode, mCurrentSubtype.getLocale(), NOT_A_SUBTYPE_ID);
1986 }
1987 }
1988 // 3. Search with the system locale and the enabled subtypes
satokcd7cd292010-11-20 15:46:23 +09001989 if (subtype == null) {
1990 subtype = findLastResortApplicableSubtypeLocked(
satok4e4569d2010-11-19 18:45:53 +09001991 mSettings.getEnabledInputMethodSubtypeListLocked(
1992 imi), mode, null, NOT_A_SUBTYPE_ID);
1993 }
satokcd7cd292010-11-20 15:46:23 +09001994 if (subtype == null) {
satok4e4569d2010-11-19 18:45:53 +09001995 // 4. Search with the system locale and all subtypes
satokcd7cd292010-11-20 15:46:23 +09001996 subtype = findLastResortApplicableSubtypeLocked(imi.getSubtypes(),
satok4e4569d2010-11-19 18:45:53 +09001997 mode, null, NOT_A_SUBTYPE_ID);
1998 }
satokcd7cd292010-11-20 15:46:23 +09001999 if (subtype != null) {
satok4e4569d2010-11-19 18:45:53 +09002000 if (imi.getId().equals(mCurMethodId)) {
2001 // The current input method is the most applicable IME.
2002 mostApplicableIMI = imi;
satokcd7cd292010-11-20 15:46:23 +09002003 mostApplicableSubtype = subtype;
satok4e4569d2010-11-19 18:45:53 +09002004 break;
2005 } else if ((imi.getServiceInfo().applicationInfo.flags
2006 & ApplicationInfo.FLAG_SYSTEM) != 0) {
2007 // The system input method is 2nd applicable IME.
2008 mostApplicableIMI = imi;
satokcd7cd292010-11-20 15:46:23 +09002009 mostApplicableSubtype = subtype;
satok4e4569d2010-11-19 18:45:53 +09002010 foundInSystemIME = true;
2011 } else if (!foundInSystemIME) {
2012 mostApplicableIMI = imi;
satokcd7cd292010-11-20 15:46:23 +09002013 mostApplicableSubtype = subtype;
satok4e4569d2010-11-19 18:45:53 +09002014 }
2015 }
2016 }
2017 if (DEBUG) {
satokcd7cd292010-11-20 15:46:23 +09002018 if (mostApplicableIMI != null) {
2019 Slog.w(TAG, "Most applicable shortcut input method was:"
2020 + mostApplicableIMI.getId());
2021 if (mostApplicableSubtype != null) {
2022 Slog.w(TAG, "Most applicable shortcut input method subtype was:"
2023 + "," + mostApplicableSubtype.getMode() + ","
2024 + mostApplicableSubtype.getLocale());
2025 }
2026 }
satok4e4569d2010-11-19 18:45:53 +09002027 }
satokcd7cd292010-11-20 15:46:23 +09002028 if (mostApplicableIMI != null) {
satok4e4569d2010-11-19 18:45:53 +09002029 return new Pair<InputMethodInfo, InputMethodSubtype> (mostApplicableIMI,
satokcd7cd292010-11-20 15:46:23 +09002030 mostApplicableSubtype);
satok4e4569d2010-11-19 18:45:53 +09002031 } else {
2032 return null;
2033 }
2034 }
2035
satokab751aa2010-09-14 19:17:36 +09002036 /**
2037 * @return Return the current subtype of this input method.
2038 */
2039 public InputMethodSubtype getCurrentInputMethodSubtype() {
satok4e4569d2010-11-19 18:45:53 +09002040 boolean subtypeIsSelected = false;
2041 try {
2042 subtypeIsSelected = Settings.Secure.getInt(mContext.getContentResolver(),
2043 Settings.Secure.SELECTED_INPUT_METHOD_SUBTYPE) != NOT_A_SUBTYPE_ID;
2044 } catch (SettingNotFoundException e) {
2045 }
satok3ef8b292010-11-23 06:06:29 +09002046 synchronized (mMethodMap) {
satok3ef8b292010-11-23 06:06:29 +09002047 if (!subtypeIsSelected || mCurrentSubtype == null) {
satok4e4569d2010-11-19 18:45:53 +09002048 String lastInputMethodId = Settings.Secure.getString(
2049 mContext.getContentResolver(), Settings.Secure.DEFAULT_INPUT_METHOD);
satok3ef8b292010-11-23 06:06:29 +09002050 int subtypeId = getSelectedInputMethodSubtypeId(lastInputMethodId);
2051 if (subtypeId == NOT_A_SUBTYPE_ID) {
satok4e4569d2010-11-19 18:45:53 +09002052 InputMethodInfo imi = mMethodMap.get(lastInputMethodId);
2053 if (imi != null) {
2054 // If there are no selected subtypes, the framework will try to find
2055 // the most applicable subtype from all subtypes whose mode is
2056 // SUBTYPE_MODE_KEYBOARD. This is an exceptional case, so we will hardcode
2057 // the mode.
satokcd7cd292010-11-20 15:46:23 +09002058 mCurrentSubtype = findLastResortApplicableSubtypeLocked(imi.getSubtypes(),
satok4e4569d2010-11-19 18:45:53 +09002059 SUBTYPE_MODE_KEYBOARD, null, DEFAULT_SUBTYPE_ID);
2060 }
satokcd7cd292010-11-20 15:46:23 +09002061 } else {
satok3ef8b292010-11-23 06:06:29 +09002062 mCurrentSubtype =
2063 mMethodMap.get(lastInputMethodId).getSubtypes().get(subtypeId);
2064 }
satok8fbb1e82010-11-02 23:15:58 +09002065 }
satok3ef8b292010-11-23 06:06:29 +09002066 return mCurrentSubtype;
satok8fbb1e82010-11-02 23:15:58 +09002067 }
satokab751aa2010-09-14 19:17:36 +09002068 }
2069
satokf3db1af2010-11-23 13:34:33 +09002070 private void addShortcutInputMethodAndSubtypes(InputMethodInfo imi,
2071 InputMethodSubtype subtype) {
2072 if (mShortcutInputMethodsAndSubtypes.containsKey(imi)) {
2073 mShortcutInputMethodsAndSubtypes.get(imi).add(subtype);
2074 } else {
2075 ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>();
2076 subtypes.add(subtype);
2077 mShortcutInputMethodsAndSubtypes.put(imi, subtypes);
2078 }
2079 }
2080
satok4e4569d2010-11-19 18:45:53 +09002081 // TODO: We should change the return type from List to List<Parcelable>
2082 public List getShortcutInputMethodsAndSubtypes() {
2083 synchronized (mMethodMap) {
satokf3db1af2010-11-23 13:34:33 +09002084 if (mShortcutInputMethodsAndSubtypes.size() == 0) {
satok4e4569d2010-11-19 18:45:53 +09002085 // If there are no selected shortcut subtypes, the framework will try to find
2086 // the most applicable subtype from all subtypes whose mode is
2087 // SUBTYPE_MODE_VOICE. This is an exceptional case, so we will hardcode the mode.
satokf3db1af2010-11-23 13:34:33 +09002088 Pair<InputMethodInfo, InputMethodSubtype> info =
2089 findLastResortApplicableShortcutInputMethodAndSubtypeLocked(
2090 SUBTYPE_MODE_VOICE);
2091 addShortcutInputMethodAndSubtypes(info.first, info.second);
2092 }
satokcd7cd292010-11-20 15:46:23 +09002093 ArrayList<Object> ret = new ArrayList<Object>();
satokf3db1af2010-11-23 13:34:33 +09002094 for (InputMethodInfo imi: mShortcutInputMethodsAndSubtypes.keySet()) {
2095 ret.add(imi);
2096 for (InputMethodSubtype subtype: mShortcutInputMethodsAndSubtypes.get(imi)) {
2097 ret.add(subtype);
satok4e4569d2010-11-19 18:45:53 +09002098 }
2099 }
satokf3db1af2010-11-23 13:34:33 +09002100 return ret;
satok4e4569d2010-11-19 18:45:53 +09002101 }
2102 }
2103
satokb66d2872010-11-10 01:04:04 +09002104 public boolean setCurrentInputMethodSubtype(InputMethodSubtype subtype) {
2105 synchronized (mMethodMap) {
2106 if (subtype != null && mCurMethodId != null) {
2107 InputMethodInfo imi = mMethodMap.get(mCurMethodId);
2108 int subtypeId = getSubtypeIdFromHashCode(imi, subtype.hashCode());
2109 if (subtypeId != NOT_A_SUBTYPE_ID) {
2110 setInputMethodLocked(mCurMethodId, subtypeId);
2111 return true;
2112 }
2113 }
2114 return false;
2115 }
2116 }
2117
satokd87c2592010-09-29 11:52:06 +09002118 /**
2119 * Utility class for putting and getting settings for InputMethod
2120 * TODO: Move all putters and getters of settings to this class.
2121 */
2122 private static class InputMethodSettings {
2123 // The string for enabled input method is saved as follows:
2124 // example: ("ime0;subtype0;subtype1;subtype2:ime1:ime2;subtype0")
2125 private static final char INPUT_METHOD_SEPARATER = ':';
2126 private static final char INPUT_METHOD_SUBTYPE_SEPARATER = ';';
satok723a27e2010-11-11 14:58:11 +09002127 private final TextUtils.SimpleStringSplitter mInputMethodSplitter =
satokd87c2592010-09-29 11:52:06 +09002128 new TextUtils.SimpleStringSplitter(INPUT_METHOD_SEPARATER);
2129
satok723a27e2010-11-11 14:58:11 +09002130 private final TextUtils.SimpleStringSplitter mSubtypeSplitter =
satokd87c2592010-09-29 11:52:06 +09002131 new TextUtils.SimpleStringSplitter(INPUT_METHOD_SUBTYPE_SEPARATER);
2132
2133 private final ContentResolver mResolver;
2134 private final HashMap<String, InputMethodInfo> mMethodMap;
2135 private final ArrayList<InputMethodInfo> mMethodList;
2136
2137 private String mEnabledInputMethodsStrCache;
2138
2139 private static void buildEnabledInputMethodsSettingString(
2140 StringBuilder builder, Pair<String, ArrayList<String>> pair) {
2141 String id = pair.first;
2142 ArrayList<String> subtypes = pair.second;
2143 builder.append(id);
satok57c767c2010-11-01 22:34:08 +09002144 // Inputmethod and subtypes are saved in the settings as follows:
2145 // ime0;subtype0;subtype1:ime1;subtype0:ime2:ime3;subtype0;subtype1
2146 for (String subtypeId: subtypes) {
2147 builder.append(INPUT_METHOD_SUBTYPE_SEPARATER).append(subtypeId);
satokd87c2592010-09-29 11:52:06 +09002148 }
2149 }
2150
2151 public InputMethodSettings(
2152 ContentResolver resolver, HashMap<String, InputMethodInfo> methodMap,
2153 ArrayList<InputMethodInfo> methodList) {
2154 mResolver = resolver;
2155 mMethodMap = methodMap;
2156 mMethodList = methodList;
2157 }
2158
2159 public List<InputMethodInfo> getEnabledInputMethodListLocked() {
2160 return createEnabledInputMethodListLocked(
2161 getEnabledInputMethodsAndSubtypeListLocked());
2162 }
2163
satok7f35c8c2010-10-07 21:13:11 +09002164 public List<Pair<InputMethodInfo, ArrayList<String>>>
satok67ddf9c2010-11-17 09:45:54 +09002165 getEnabledInputMethodAndSubtypeHashCodeListLocked() {
2166 return createEnabledInputMethodAndSubtypeHashCodeListLocked(
satok7f35c8c2010-10-07 21:13:11 +09002167 getEnabledInputMethodsAndSubtypeListLocked());
2168 }
2169
satok67ddf9c2010-11-17 09:45:54 +09002170 public List<InputMethodSubtype> getEnabledInputMethodSubtypeListLocked(
2171 InputMethodInfo imi) {
2172 List<Pair<String, ArrayList<String>>> imsList =
2173 getEnabledInputMethodsAndSubtypeListLocked();
2174 ArrayList<InputMethodSubtype> enabledSubtypes =
2175 new ArrayList<InputMethodSubtype>();
satok884ef9a2010-11-18 10:39:46 +09002176 if (imi != null) {
2177 for (Pair<String, ArrayList<String>> imsPair : imsList) {
2178 InputMethodInfo info = mMethodMap.get(imsPair.first);
2179 if (info != null && info.getId().equals(imi.getId())) {
2180 ArrayList<InputMethodSubtype> subtypes = info.getSubtypes();
2181 for (InputMethodSubtype ims: subtypes) {
2182 for (String s: imsPair.second) {
2183 if (String.valueOf(ims.hashCode()).equals(s)) {
2184 enabledSubtypes.add(ims);
2185 }
satok67ddf9c2010-11-17 09:45:54 +09002186 }
2187 }
satok884ef9a2010-11-18 10:39:46 +09002188 break;
satok67ddf9c2010-11-17 09:45:54 +09002189 }
satok67ddf9c2010-11-17 09:45:54 +09002190 }
2191 }
2192 return enabledSubtypes;
2193 }
2194
satokd87c2592010-09-29 11:52:06 +09002195 // At the initial boot, the settings for input methods are not set,
2196 // so we need to enable IME in that case.
2197 public void enableAllIMEsIfThereIsNoEnabledIME() {
2198 if (TextUtils.isEmpty(getEnabledInputMethodsStr())) {
2199 StringBuilder sb = new StringBuilder();
2200 final int N = mMethodList.size();
2201 for (int i = 0; i < N; i++) {
2202 InputMethodInfo imi = mMethodList.get(i);
2203 Slog.i(TAG, "Adding: " + imi.getId());
2204 if (i > 0) sb.append(':');
2205 sb.append(imi.getId());
2206 }
2207 putEnabledInputMethodsStr(sb.toString());
2208 }
2209 }
2210
2211 public List<Pair<String, ArrayList<String>>> getEnabledInputMethodsAndSubtypeListLocked() {
2212 ArrayList<Pair<String, ArrayList<String>>> imsList
2213 = new ArrayList<Pair<String, ArrayList<String>>>();
2214 final String enabledInputMethodsStr = getEnabledInputMethodsStr();
2215 if (TextUtils.isEmpty(enabledInputMethodsStr)) {
2216 return imsList;
2217 }
satok723a27e2010-11-11 14:58:11 +09002218 mInputMethodSplitter.setString(enabledInputMethodsStr);
2219 while (mInputMethodSplitter.hasNext()) {
2220 String nextImsStr = mInputMethodSplitter.next();
2221 mSubtypeSplitter.setString(nextImsStr);
2222 if (mSubtypeSplitter.hasNext()) {
satokd87c2592010-09-29 11:52:06 +09002223 ArrayList<String> subtypeHashes = new ArrayList<String>();
2224 // The first element is ime id.
satok723a27e2010-11-11 14:58:11 +09002225 String imeId = mSubtypeSplitter.next();
2226 while (mSubtypeSplitter.hasNext()) {
2227 subtypeHashes.add(mSubtypeSplitter.next());
satokd87c2592010-09-29 11:52:06 +09002228 }
2229 imsList.add(new Pair<String, ArrayList<String>>(imeId, subtypeHashes));
2230 }
2231 }
2232 return imsList;
2233 }
2234
2235 public void appendAndPutEnabledInputMethodLocked(String id, boolean reloadInputMethodStr) {
2236 if (reloadInputMethodStr) {
2237 getEnabledInputMethodsStr();
2238 }
2239 if (TextUtils.isEmpty(mEnabledInputMethodsStrCache)) {
2240 // Add in the newly enabled input method.
2241 putEnabledInputMethodsStr(id);
2242 } else {
2243 putEnabledInputMethodsStr(
2244 mEnabledInputMethodsStrCache + INPUT_METHOD_SEPARATER + id);
2245 }
2246 }
2247
2248 /**
2249 * Build and put a string of EnabledInputMethods with removing specified Id.
2250 * @return the specified id was removed or not.
2251 */
2252 public boolean buildAndPutEnabledInputMethodsStrRemovingIdLocked(
2253 StringBuilder builder, List<Pair<String, ArrayList<String>>> imsList, String id) {
2254 boolean isRemoved = false;
2255 boolean needsAppendSeparator = false;
2256 for (Pair<String, ArrayList<String>> ims: imsList) {
2257 String curId = ims.first;
2258 if (curId.equals(id)) {
2259 // We are disabling this input method, and it is
2260 // currently enabled. Skip it to remove from the
2261 // new list.
2262 isRemoved = true;
2263 } else {
2264 if (needsAppendSeparator) {
2265 builder.append(INPUT_METHOD_SEPARATER);
2266 } else {
2267 needsAppendSeparator = true;
2268 }
2269 buildEnabledInputMethodsSettingString(builder, ims);
2270 }
2271 }
2272 if (isRemoved) {
2273 // Update the setting with the new list of input methods.
2274 putEnabledInputMethodsStr(builder.toString());
2275 }
2276 return isRemoved;
2277 }
2278
2279 private List<InputMethodInfo> createEnabledInputMethodListLocked(
2280 List<Pair<String, ArrayList<String>>> imsList) {
2281 final ArrayList<InputMethodInfo> res = new ArrayList<InputMethodInfo>();
2282 for (Pair<String, ArrayList<String>> ims: imsList) {
2283 InputMethodInfo info = mMethodMap.get(ims.first);
2284 if (info != null) {
2285 res.add(info);
2286 }
2287 }
2288 return res;
2289 }
2290
satok7f35c8c2010-10-07 21:13:11 +09002291 private List<Pair<InputMethodInfo, ArrayList<String>>>
satok67ddf9c2010-11-17 09:45:54 +09002292 createEnabledInputMethodAndSubtypeHashCodeListLocked(
satok7f35c8c2010-10-07 21:13:11 +09002293 List<Pair<String, ArrayList<String>>> imsList) {
2294 final ArrayList<Pair<InputMethodInfo, ArrayList<String>>> res
2295 = new ArrayList<Pair<InputMethodInfo, ArrayList<String>>>();
2296 for (Pair<String, ArrayList<String>> ims : imsList) {
2297 InputMethodInfo info = mMethodMap.get(ims.first);
2298 if (info != null) {
2299 res.add(new Pair<InputMethodInfo, ArrayList<String>>(info, ims.second));
2300 }
2301 }
2302 return res;
2303 }
2304
satokd87c2592010-09-29 11:52:06 +09002305 private void putEnabledInputMethodsStr(String str) {
2306 Settings.Secure.putString(mResolver, Settings.Secure.ENABLED_INPUT_METHODS, str);
2307 mEnabledInputMethodsStrCache = str;
2308 }
2309
2310 private String getEnabledInputMethodsStr() {
2311 mEnabledInputMethodsStrCache = Settings.Secure.getString(
2312 mResolver, Settings.Secure.ENABLED_INPUT_METHODS);
satok723a27e2010-11-11 14:58:11 +09002313 if (DEBUG) {
2314 Slog.d(TAG, "getEnabledInputMethodsStr: " + mEnabledInputMethodsStrCache);
2315 }
satokd87c2592010-09-29 11:52:06 +09002316 return mEnabledInputMethodsStrCache;
2317 }
satok723a27e2010-11-11 14:58:11 +09002318
2319 private void saveSubtypeHistory(
2320 List<Pair<String, String>> savedImes, String newImeId, String newSubtypeId) {
2321 StringBuilder builder = new StringBuilder();
2322 boolean isImeAdded = false;
2323 if (!TextUtils.isEmpty(newImeId) && !TextUtils.isEmpty(newSubtypeId)) {
2324 builder.append(newImeId).append(INPUT_METHOD_SUBTYPE_SEPARATER).append(
2325 newSubtypeId);
2326 isImeAdded = true;
2327 }
2328 for (Pair<String, String> ime: savedImes) {
2329 String imeId = ime.first;
2330 String subtypeId = ime.second;
2331 if (TextUtils.isEmpty(subtypeId)) {
2332 subtypeId = NOT_A_SUBTYPE_ID_STR;
2333 }
2334 if (isImeAdded) {
2335 builder.append(INPUT_METHOD_SEPARATER);
2336 } else {
2337 isImeAdded = true;
2338 }
2339 builder.append(imeId).append(INPUT_METHOD_SUBTYPE_SEPARATER).append(
2340 subtypeId);
2341 }
2342 // Remove the last INPUT_METHOD_SEPARATER
2343 putSubtypeHistoryStr(builder.toString());
2344 }
2345
2346 public void addSubtypeToHistory(String imeId, String subtypeId) {
2347 List<Pair<String, String>> subtypeHistory = loadInputMethodAndSubtypeHistoryLocked();
2348 for (Pair<String, String> ime: subtypeHistory) {
2349 if (ime.first.equals(imeId)) {
2350 if (DEBUG) {
2351 Slog.v(TAG, "Subtype found in the history: " + imeId
2352 + ime.second);
2353 }
2354 // We should break here
2355 subtypeHistory.remove(ime);
2356 break;
2357 }
2358 }
2359 saveSubtypeHistory(subtypeHistory, imeId, subtypeId);
2360 }
2361
2362 private void putSubtypeHistoryStr(String str) {
2363 if (DEBUG) {
2364 Slog.d(TAG, "putSubtypeHistoryStr: " + str);
2365 }
2366 Settings.Secure.putString(
2367 mResolver, Settings.Secure.INPUT_METHODS_SUBTYPE_HISTORY, str);
2368 }
2369
2370 public Pair<String, String> getLastInputMethodAndSubtypeLocked() {
2371 // Gets the first one from the history
2372 return getLastSubtypeForInputMethodLockedInternal(null);
2373 }
2374
2375 public String getLastSubtypeForInputMethodLocked(String imeId) {
2376 Pair<String, String> ime = getLastSubtypeForInputMethodLockedInternal(imeId);
2377 if (ime != null) {
2378 return ime.second;
2379 } else {
2380 return null;
2381 }
2382 }
2383
2384 private Pair<String, String> getLastSubtypeForInputMethodLockedInternal(String imeId) {
2385 List<Pair<String, ArrayList<String>>> enabledImes =
2386 getEnabledInputMethodsAndSubtypeListLocked();
2387 List<Pair<String, String>> subtypeHistory = loadInputMethodAndSubtypeHistoryLocked();
2388 for (Pair<String, String> imeAndSubtype: subtypeHistory) {
2389 final String imeInTheHistory = imeAndSubtype.first;
2390 // If imeId is empty, returns the first IME and subtype in the history
2391 if (TextUtils.isEmpty(imeId) || imeInTheHistory.equals(imeId)) {
2392 final String subtypeInTheHistory = imeAndSubtype.second;
2393 final String subtypeHashCode = getEnabledSubtypeForInputMethodAndSubtypeLocked(
2394 enabledImes, imeInTheHistory, subtypeInTheHistory);
2395 if (!TextUtils.isEmpty(subtypeHashCode)) {
2396 if (DEBUG) {
2397 Slog.d(TAG, "Enabled subtype found in the history:" + subtypeHashCode);
2398 }
2399 return new Pair<String, String>(imeInTheHistory, subtypeHashCode);
2400 }
2401 }
2402 }
2403 if (DEBUG) {
2404 Slog.d(TAG, "No enabled IME found in the history");
2405 }
2406 return null;
2407 }
2408
2409 private String getEnabledSubtypeForInputMethodAndSubtypeLocked(List<Pair<String,
2410 ArrayList<String>>> enabledImes, String imeId, String subtypeHashCode) {
2411 for (Pair<String, ArrayList<String>> enabledIme: enabledImes) {
2412 if (enabledIme.first.equals(imeId)) {
2413 for (String s: enabledIme.second) {
2414 if (s.equals(subtypeHashCode)) {
2415 // If both imeId and subtypeId are enabled, return subtypeId.
2416 return s;
2417 }
2418 }
2419 // If imeId was enabled but subtypeId was disabled.
2420 return NOT_A_SUBTYPE_ID_STR;
2421 }
2422 }
2423 // If both imeId and subtypeId are disabled, return null
2424 return null;
2425 }
2426
2427 private List<Pair<String, String>> loadInputMethodAndSubtypeHistoryLocked() {
2428 ArrayList<Pair<String, String>> imsList = new ArrayList<Pair<String, String>>();
2429 final String subtypeHistoryStr = getSubtypeHistoryStr();
2430 if (TextUtils.isEmpty(subtypeHistoryStr)) {
2431 return imsList;
2432 }
2433 mInputMethodSplitter.setString(subtypeHistoryStr);
2434 while (mInputMethodSplitter.hasNext()) {
2435 String nextImsStr = mInputMethodSplitter.next();
2436 mSubtypeSplitter.setString(nextImsStr);
2437 if (mSubtypeSplitter.hasNext()) {
2438 String subtypeId = NOT_A_SUBTYPE_ID_STR;
2439 // The first element is ime id.
2440 String imeId = mSubtypeSplitter.next();
2441 while (mSubtypeSplitter.hasNext()) {
2442 subtypeId = mSubtypeSplitter.next();
2443 break;
2444 }
2445 imsList.add(new Pair<String, String>(imeId, subtypeId));
2446 }
2447 }
2448 return imsList;
2449 }
2450
2451 private String getSubtypeHistoryStr() {
2452 if (DEBUG) {
2453 Slog.d(TAG, "getSubtypeHistoryStr: " + Settings.Secure.getString(
2454 mResolver, Settings.Secure.INPUT_METHODS_SUBTYPE_HISTORY));
2455 }
2456 return Settings.Secure.getString(
2457 mResolver, Settings.Secure.INPUT_METHODS_SUBTYPE_HISTORY);
2458 }
2459
2460 public void putSelectedInputMethod(String imeId) {
2461 Settings.Secure.putString(mResolver, Settings.Secure.DEFAULT_INPUT_METHOD, imeId);
2462 }
2463
2464 public void putSelectedSubtype(int subtypeId) {
2465 Settings.Secure.putInt(
2466 mResolver, Settings.Secure.SELECTED_INPUT_METHOD_SUBTYPE, subtypeId);
2467 }
satokd87c2592010-09-29 11:52:06 +09002468 }
2469
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002470 // ----------------------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002471
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002472 @Override
2473 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
2474 if (mContext.checkCallingOrSelfPermission(android.Manifest.permission.DUMP)
2475 != PackageManager.PERMISSION_GRANTED) {
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002476
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002477 pw.println("Permission Denial: can't dump InputMethodManager from from pid="
2478 + Binder.getCallingPid()
2479 + ", uid=" + Binder.getCallingUid());
2480 return;
2481 }
2482
2483 IInputMethod method;
2484 ClientState client;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002485
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002486 final Printer p = new PrintWriterPrinter(pw);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002487
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002488 synchronized (mMethodMap) {
2489 p.println("Current Input Method Manager state:");
2490 int N = mMethodList.size();
2491 p.println(" Input Methods:");
2492 for (int i=0; i<N; i++) {
2493 InputMethodInfo info = mMethodList.get(i);
2494 p.println(" InputMethod #" + i + ":");
2495 info.dump(p, " ");
2496 }
2497 p.println(" Clients:");
2498 for (ClientState ci : mClients.values()) {
2499 p.println(" Client " + ci + ":");
2500 p.println(" client=" + ci.client);
2501 p.println(" inputContext=" + ci.inputContext);
2502 p.println(" sessionRequested=" + ci.sessionRequested);
2503 p.println(" curSession=" + ci.curSession);
2504 }
The Android Open Source Project10592532009-03-18 17:39:46 -07002505 p.println(" mCurMethodId=" + mCurMethodId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002506 client = mCurClient;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07002507 p.println(" mCurClient=" + client + " mCurSeq=" + mCurSeq);
2508 p.println(" mCurFocusedWindow=" + mCurFocusedWindow);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002509 p.println(" mCurId=" + mCurId + " mHaveConnect=" + mHaveConnection
2510 + " mBoundToMethod=" + mBoundToMethod);
2511 p.println(" mCurToken=" + mCurToken);
2512 p.println(" mCurIntent=" + mCurIntent);
2513 method = mCurMethod;
2514 p.println(" mCurMethod=" + mCurMethod);
2515 p.println(" mEnabledSession=" + mEnabledSession);
2516 p.println(" mShowRequested=" + mShowRequested
2517 + " mShowExplicitlyRequested=" + mShowExplicitlyRequested
2518 + " mShowForced=" + mShowForced
2519 + " mInputShown=" + mInputShown);
Dianne Hackborncc278702009-09-02 23:07:23 -07002520 p.println(" mSystemReady=" + mSystemReady + " mScreenOn=" + mScreenOn);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002521 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002522
Jeff Brownb88102f2010-09-08 11:49:43 -07002523 p.println(" ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002524 if (client != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002525 pw.flush();
2526 try {
2527 client.client.asBinder().dump(fd, args);
2528 } catch (RemoteException e) {
2529 p.println("Input method client dead: " + e);
2530 }
Jeff Brownb88102f2010-09-08 11:49:43 -07002531 } else {
2532 p.println("No input method client.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002533 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002534
Jeff Brownb88102f2010-09-08 11:49:43 -07002535 p.println(" ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002536 if (method != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002537 pw.flush();
2538 try {
2539 method.asBinder().dump(fd, args);
2540 } catch (RemoteException e) {
2541 p.println("Input method service dead: " + e);
2542 }
Jeff Brownb88102f2010-09-08 11:49:43 -07002543 } else {
2544 p.println("No input method service.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002545 }
2546 }
2547}