blob: c7bfdc82b73bfb50a0712f951893993e3f4b2ff7 [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
satokb416a712010-11-25 20:42:14 +09001301 public void showInputMethodAndSubtypeEnablerFromClient(
1302 IInputMethodClient client, String topId) {
1303 // TODO: Handle topId for setting the top position of the list ActivityManagerNative
1304 synchronized (mMethodMap) {
1305 if (mCurClient == null || client == null
1306 || mCurClient.client.asBinder() != client.asBinder()) {
1307 Slog.w(TAG, "Ignoring showInputMethodAndSubtypeEnablerFromClient of: " + client);
1308 }
1309 mHandler.sendEmptyMessage(MSG_SHOW_IM_SUBTYPE_ENABLER);
1310 }
1311 }
1312
satok735cf382010-11-11 20:40:09 +09001313 public boolean switchToLastInputMethod(IBinder token) {
1314 synchronized (mMethodMap) {
1315 Pair<String, String> lastIme = mSettings.getLastInputMethodAndSubtypeLocked();
1316 if (lastIme != null) {
1317 InputMethodInfo imi = mMethodMap.get(lastIme.first);
1318 if (imi != null) {
satok28203512010-11-24 11:06:49 +09001319 setInputMethodWithSubtypeId(token, lastIme.first, getSubtypeIdFromHashCode(
satok735cf382010-11-11 20:40:09 +09001320 imi, Integer.valueOf(lastIme.second)));
1321 return true;
1322 }
1323 }
1324 return false;
1325 }
1326 }
1327
satok28203512010-11-24 11:06:49 +09001328 private void setInputMethodWithSubtypeId(IBinder token, String id, int subtypeId) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001329 synchronized (mMethodMap) {
1330 if (token == null) {
1331 if (mContext.checkCallingOrSelfPermission(
1332 android.Manifest.permission.WRITE_SECURE_SETTINGS)
1333 != PackageManager.PERMISSION_GRANTED) {
1334 throw new SecurityException(
1335 "Using null token requires permission "
1336 + android.Manifest.permission.WRITE_SECURE_SETTINGS);
1337 }
1338 } else if (mCurToken != token) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001339 Slog.w(TAG, "Ignoring setInputMethod of uid " + Binder.getCallingUid()
1340 + " token: " + token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001341 return;
1342 }
1343
1344 long ident = Binder.clearCallingIdentity();
1345 try {
satokab751aa2010-09-14 19:17:36 +09001346 setInputMethodLocked(id, subtypeId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001347 } finally {
1348 Binder.restoreCallingIdentity(ident);
1349 }
1350 }
1351 }
1352
1353 public void hideMySoftInput(IBinder token, int flags) {
1354 synchronized (mMethodMap) {
1355 if (token == null || mCurToken != token) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001356 if (DEBUG) Slog.w(TAG, "Ignoring hideInputMethod of uid "
1357 + Binder.getCallingUid() + " token: " + token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001358 return;
1359 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001360 long ident = Binder.clearCallingIdentity();
1361 try {
The Android Open Source Project4df24232009-03-05 14:34:35 -08001362 hideCurrentInputLocked(flags, null);
1363 } finally {
1364 Binder.restoreCallingIdentity(ident);
1365 }
1366 }
1367 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001368
The Android Open Source Project4df24232009-03-05 14:34:35 -08001369 public void showMySoftInput(IBinder token, int flags) {
1370 synchronized (mMethodMap) {
1371 if (token == null || mCurToken != token) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001372 Slog.w(TAG, "Ignoring showMySoftInput of uid "
1373 + Binder.getCallingUid() + " token: " + token);
The Android Open Source Project4df24232009-03-05 14:34:35 -08001374 return;
1375 }
1376 long ident = Binder.clearCallingIdentity();
1377 try {
1378 showCurrentInputLocked(flags, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001379 } finally {
1380 Binder.restoreCallingIdentity(ident);
1381 }
1382 }
1383 }
1384
1385 void setEnabledSessionInMainThread(SessionState session) {
1386 if (mEnabledSession != session) {
1387 if (mEnabledSession != null) {
1388 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001389 if (DEBUG) Slog.v(TAG, "Disabling: " + mEnabledSession);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001390 mEnabledSession.method.setSessionEnabled(
1391 mEnabledSession.session, false);
1392 } catch (RemoteException e) {
1393 }
1394 }
1395 mEnabledSession = session;
1396 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001397 if (DEBUG) Slog.v(TAG, "Enabling: " + mEnabledSession);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001398 session.method.setSessionEnabled(
1399 session.session, true);
1400 } catch (RemoteException e) {
1401 }
1402 }
1403 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001404
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001405 public boolean handleMessage(Message msg) {
1406 HandlerCaller.SomeArgs args;
1407 switch (msg.what) {
1408 case MSG_SHOW_IM_PICKER:
1409 showInputMethodMenu();
1410 return true;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001411
satokab751aa2010-09-14 19:17:36 +09001412 case MSG_SHOW_IM_SUBTYPE_PICKER:
1413 showInputMethodSubtypeMenu();
1414 return true;
1415
satok47a44912010-10-06 16:03:58 +09001416 case MSG_SHOW_IM_SUBTYPE_ENABLER:
1417 showInputMethodAndSubtypeEnabler();
1418 return true;
1419
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001420 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001421
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001422 case MSG_UNBIND_INPUT:
1423 try {
1424 ((IInputMethod)msg.obj).unbindInput();
1425 } catch (RemoteException e) {
1426 // There is nothing interesting about the method dying.
1427 }
1428 return true;
1429 case MSG_BIND_INPUT:
1430 args = (HandlerCaller.SomeArgs)msg.obj;
1431 try {
1432 ((IInputMethod)args.arg1).bindInput((InputBinding)args.arg2);
1433 } catch (RemoteException e) {
1434 }
1435 return true;
1436 case MSG_SHOW_SOFT_INPUT:
The Android Open Source Project4df24232009-03-05 14:34:35 -08001437 args = (HandlerCaller.SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001438 try {
The Android Open Source Project4df24232009-03-05 14:34:35 -08001439 ((IInputMethod)args.arg1).showSoftInput(msg.arg1,
1440 (ResultReceiver)args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001441 } catch (RemoteException e) {
1442 }
1443 return true;
1444 case MSG_HIDE_SOFT_INPUT:
The Android Open Source Project4df24232009-03-05 14:34:35 -08001445 args = (HandlerCaller.SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001446 try {
The Android Open Source Project4df24232009-03-05 14:34:35 -08001447 ((IInputMethod)args.arg1).hideSoftInput(0,
1448 (ResultReceiver)args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001449 } catch (RemoteException e) {
1450 }
1451 return true;
1452 case MSG_ATTACH_TOKEN:
1453 args = (HandlerCaller.SomeArgs)msg.obj;
1454 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001455 if (DEBUG) Slog.v(TAG, "Sending attach of token: " + args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001456 ((IInputMethod)args.arg1).attachToken((IBinder)args.arg2);
1457 } catch (RemoteException e) {
1458 }
1459 return true;
1460 case MSG_CREATE_SESSION:
1461 args = (HandlerCaller.SomeArgs)msg.obj;
1462 try {
1463 ((IInputMethod)args.arg1).createSession(
1464 (IInputMethodCallback)args.arg2);
1465 } catch (RemoteException e) {
1466 }
1467 return true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001468 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001469
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001470 case MSG_START_INPUT:
1471 args = (HandlerCaller.SomeArgs)msg.obj;
1472 try {
1473 SessionState session = (SessionState)args.arg1;
1474 setEnabledSessionInMainThread(session);
1475 session.method.startInput((IInputContext)args.arg2,
1476 (EditorInfo)args.arg3);
1477 } catch (RemoteException e) {
1478 }
1479 return true;
1480 case MSG_RESTART_INPUT:
1481 args = (HandlerCaller.SomeArgs)msg.obj;
1482 try {
1483 SessionState session = (SessionState)args.arg1;
1484 setEnabledSessionInMainThread(session);
1485 session.method.restartInput((IInputContext)args.arg2,
1486 (EditorInfo)args.arg3);
1487 } catch (RemoteException e) {
1488 }
1489 return true;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001490
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001491 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001492
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001493 case MSG_UNBIND_METHOD:
1494 try {
1495 ((IInputMethodClient)msg.obj).onUnbindMethod(msg.arg1);
1496 } catch (RemoteException e) {
1497 // There is nothing interesting about the last client dying.
1498 }
1499 return true;
1500 case MSG_BIND_METHOD:
1501 args = (HandlerCaller.SomeArgs)msg.obj;
1502 try {
1503 ((IInputMethodClient)args.arg1).onBindMethod(
1504 (InputBindResult)args.arg2);
1505 } catch (RemoteException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001506 Slog.w(TAG, "Client died receiving input method " + args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001507 }
1508 return true;
1509 }
1510 return false;
1511 }
1512
Brandon Ballinger6da35a02009-10-21 00:38:13 -07001513 private boolean isSystemIme(InputMethodInfo inputMethod) {
1514 return (inputMethod.getServiceInfo().applicationInfo.flags
1515 & ApplicationInfo.FLAG_SYSTEM) != 0;
1516 }
1517
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001518 private boolean chooseNewDefaultIMELocked() {
satokd87c2592010-09-29 11:52:06 +09001519 List<InputMethodInfo> enabled = mSettings.getEnabledInputMethodListLocked();
Brandon Ballinger6da35a02009-10-21 00:38:13 -07001520 if (enabled != null && enabled.size() > 0) {
Dianne Hackborn83e48f52010-03-23 23:03:25 -07001521 // We'd prefer to fall back on a system IME, since that is safer.
1522 int i=enabled.size();
1523 while (i > 0) {
1524 i--;
1525 if ((enabled.get(i).getServiceInfo().applicationInfo.flags
1526 & ApplicationInfo.FLAG_SYSTEM) != 0) {
1527 break;
1528 }
1529 }
satokab751aa2010-09-14 19:17:36 +09001530 InputMethodInfo imi = enabled.get(i);
satok03eb319a2010-11-11 18:17:42 +09001531 if (DEBUG) {
1532 Slog.d(TAG, "New default IME was selected: " + imi.getId());
1533 }
satok723a27e2010-11-11 14:58:11 +09001534 resetSelectedInputMethodAndSubtypeLocked(imi.getId());
Brandon Ballinger6da35a02009-10-21 00:38:13 -07001535 return true;
1536 }
1537
1538 return false;
1539 }
1540
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001541 void buildInputMethodListLocked(ArrayList<InputMethodInfo> list,
1542 HashMap<String, InputMethodInfo> map) {
1543 list.clear();
1544 map.clear();
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001545
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001546 PackageManager pm = mContext.getPackageManager();
Amith Yamasanie861ec12010-03-24 21:39:27 -07001547 final Configuration config = mContext.getResources().getConfiguration();
1548 final boolean haveHardKeyboard = config.keyboard == Configuration.KEYBOARD_QWERTY;
1549 String disabledSysImes = Settings.Secure.getString(mContext.getContentResolver(),
1550 Secure.DISABLED_SYSTEM_INPUT_METHODS);
1551 if (disabledSysImes == null) disabledSysImes = "";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001552
1553 List<ResolveInfo> services = pm.queryIntentServices(
1554 new Intent(InputMethod.SERVICE_INTERFACE),
1555 PackageManager.GET_META_DATA);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001556
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001557 for (int i = 0; i < services.size(); ++i) {
1558 ResolveInfo ri = services.get(i);
1559 ServiceInfo si = ri.serviceInfo;
1560 ComponentName compName = new ComponentName(si.packageName, si.name);
1561 if (!android.Manifest.permission.BIND_INPUT_METHOD.equals(
1562 si.permission)) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001563 Slog.w(TAG, "Skipping input method " + compName
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001564 + ": it does not require the permission "
1565 + android.Manifest.permission.BIND_INPUT_METHOD);
1566 continue;
1567 }
1568
Joe Onorato8a9b2202010-02-26 18:56:32 -08001569 if (DEBUG) Slog.d(TAG, "Checking " + compName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001570
1571 try {
1572 InputMethodInfo p = new InputMethodInfo(mContext, ri);
1573 list.add(p);
Amith Yamasanie861ec12010-03-24 21:39:27 -07001574 final String id = p.getId();
1575 map.put(id, p);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001576
Amith Yamasanie861ec12010-03-24 21:39:27 -07001577 // System IMEs are enabled by default, unless there's a hard keyboard
1578 // and the system IME was explicitly disabled
1579 if (isSystemIme(p) && (!haveHardKeyboard || disabledSysImes.indexOf(id) < 0)) {
1580 setInputMethodEnabledLocked(id, true);
Brandon Ballinger6da35a02009-10-21 00:38:13 -07001581 }
1582
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001583 if (DEBUG) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001584 Slog.d(TAG, "Found a third-party input method " + p);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001585 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001586
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001587 } catch (XmlPullParserException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001588 Slog.w(TAG, "Unable to load input method " + compName, e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001589 } catch (IOException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001590 Slog.w(TAG, "Unable to load input method " + compName, e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001591 }
1592 }
Brandon Ballinger6da35a02009-10-21 00:38:13 -07001593
1594 String defaultIme = Settings.Secure.getString(mContext
1595 .getContentResolver(), Settings.Secure.DEFAULT_INPUT_METHOD);
satok913a8922010-08-26 21:53:41 +09001596 if (!TextUtils.isEmpty(defaultIme) && !map.containsKey(defaultIme)) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001597 if (chooseNewDefaultIMELocked()) {
Brandon Ballinger6da35a02009-10-21 00:38:13 -07001598 updateFromSettingsLocked();
1599 }
1600 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001601 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001602
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001603 // ----------------------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001604
satokab751aa2010-09-14 19:17:36 +09001605 private void showInputMethodMenu() {
1606 showInputMethodMenuInternal(false);
1607 }
1608
1609 private void showInputMethodSubtypeMenu() {
1610 showInputMethodMenuInternal(true);
1611 }
1612
satok47a44912010-10-06 16:03:58 +09001613 private void showInputMethodAndSubtypeEnabler() {
satok86417ea2010-10-27 14:11:03 +09001614 Intent intent = new Intent(Settings.ACTION_INPUT_METHOD_AND_SUBTYPE_ENABLER);
satok47a44912010-10-06 16:03:58 +09001615 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
satok86417ea2010-10-27 14:11:03 +09001616 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED
1617 | Intent.FLAG_ACTIVITY_CLEAR_TOP);
satok47a44912010-10-06 16:03:58 +09001618 mContext.startActivity(intent);
1619 }
1620
satokab751aa2010-09-14 19:17:36 +09001621 private void showInputMethodMenuInternal(boolean showSubtypes) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001622 if (DEBUG) Slog.v(TAG, "Show switching menu");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001623
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001624 final Context context = mContext;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001625
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001626 final PackageManager pm = context.getPackageManager();
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001627
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001628 String lastInputMethodId = Settings.Secure.getString(context
1629 .getContentResolver(), Settings.Secure.DEFAULT_INPUT_METHOD);
satokab751aa2010-09-14 19:17:36 +09001630 int lastInputMethodSubtypeId = getSelectedInputMethodSubtypeId(lastInputMethodId);
Joe Onorato8a9b2202010-02-26 18:56:32 -08001631 if (DEBUG) Slog.v(TAG, "Current IME: " + lastInputMethodId);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001632
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001633 synchronized (mMethodMap) {
satok7f35c8c2010-10-07 21:13:11 +09001634 final List<Pair<InputMethodInfo, ArrayList<String>>> immis =
satok67ddf9c2010-11-17 09:45:54 +09001635 mSettings.getEnabledInputMethodAndSubtypeHashCodeListLocked();
satok7f35c8c2010-10-07 21:13:11 +09001636 ArrayList<Integer> subtypeIds = new ArrayList<Integer>();
1637
1638 if (immis == null || immis.size() == 0) {
1639 return;
1640 }
1641
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001642 hideInputMethodMenuLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001643
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001644 int N = immis.size();
satok913a8922010-08-26 21:53:41 +09001645
satokab751aa2010-09-14 19:17:36 +09001646 final Map<CharSequence, Pair<InputMethodInfo, Integer>> imMap =
1647 new TreeMap<CharSequence, Pair<InputMethodInfo, Integer>>(Collator.getInstance());
satok913a8922010-08-26 21:53:41 +09001648
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001649 for (int i = 0; i < N; ++i) {
satok7f35c8c2010-10-07 21:13:11 +09001650 InputMethodInfo property = immis.get(i).first;
1651 final ArrayList<String> enabledSubtypeIds = immis.get(i).second;
1652 HashSet<String> enabledSubtypeSet = new HashSet<String>();
1653 for (String s : enabledSubtypeIds) {
1654 enabledSubtypeSet.add(s);
1655 }
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001656 if (property == null) {
1657 continue;
1658 }
satokab751aa2010-09-14 19:17:36 +09001659 ArrayList<InputMethodSubtype> subtypes = property.getSubtypes();
1660 CharSequence label = property.loadLabel(pm);
satok7f35c8c2010-10-07 21:13:11 +09001661 if (showSubtypes && enabledSubtypeSet.size() > 0) {
satokab751aa2010-09-14 19:17:36 +09001662 for (int j = 0; j < subtypes.size(); ++j) {
1663 InputMethodSubtype subtype = subtypes.get(j);
satok7f35c8c2010-10-07 21:13:11 +09001664 if (enabledSubtypeSet.contains(String.valueOf(subtype.hashCode()))) {
1665 CharSequence title;
1666 int nameResId = subtype.getNameResId();
satok9ef02832010-11-04 21:17:48 +09001667 String mode = subtype.getMode();
satok7f35c8c2010-10-07 21:13:11 +09001668 if (nameResId != 0) {
1669 title = pm.getText(property.getPackageName(), nameResId,
1670 property.getServiceInfo().applicationInfo);
1671 } else {
1672 CharSequence language = subtype.getLocale();
satok7f35c8c2010-10-07 21:13:11 +09001673 // TODO: Use more friendly Title and UI
1674 title = label + "," + (mode == null ? "" : mode) + ","
1675 + (language == null ? "" : language);
1676 }
1677 imMap.put(title, new Pair<InputMethodInfo, Integer>(property, j));
satokab751aa2010-09-14 19:17:36 +09001678 }
satokab751aa2010-09-14 19:17:36 +09001679 }
1680 } else {
1681 imMap.put(label,
1682 new Pair<InputMethodInfo, Integer>(property, NOT_A_SUBTYPE_ID));
1683 subtypeIds.add(0);
1684 }
Dianne Hackborn97106ab2010-03-03 00:08:31 -08001685 }
satok913a8922010-08-26 21:53:41 +09001686
1687 N = imMap.size();
1688 mItems = imMap.keySet().toArray(new CharSequence[N]);
satokab751aa2010-09-14 19:17:36 +09001689 mIms = new InputMethodInfo[N];
1690 mSubtypeIds = new int[N];
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001691 int checkedItem = 0;
1692 for (int i = 0; i < N; ++i) {
satokab751aa2010-09-14 19:17:36 +09001693 Pair<InputMethodInfo, Integer> value = imMap.get(mItems[i]);
1694 mIms[i] = value.first;
1695 mSubtypeIds[i] = value.second;
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001696 if (mIms[i].getId().equals(lastInputMethodId)) {
satokab751aa2010-09-14 19:17:36 +09001697 int subtypeId = mSubtypeIds[i];
1698 if ((subtypeId == NOT_A_SUBTYPE_ID)
1699 || (lastInputMethodSubtypeId == NOT_A_SUBTYPE_ID && subtypeId == 0)
1700 || (subtypeId == lastInputMethodSubtypeId)) {
1701 checkedItem = i;
1702 }
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001703 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001704 }
satokab751aa2010-09-14 19:17:36 +09001705
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001706 AlertDialog.OnClickListener adocl = new AlertDialog.OnClickListener() {
1707 public void onClick(DialogInterface dialog, int which) {
1708 hideInputMethodMenu();
1709 }
1710 };
satokd87c2592010-09-29 11:52:06 +09001711
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001712 TypedArray a = context.obtainStyledAttributes(null,
1713 com.android.internal.R.styleable.DialogPreference,
1714 com.android.internal.R.attr.alertDialogStyle, 0);
1715 mDialogBuilder = new AlertDialog.Builder(context)
1716 .setTitle(com.android.internal.R.string.select_input_method)
1717 .setOnCancelListener(new OnCancelListener() {
1718 public void onCancel(DialogInterface dialog) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001719 hideInputMethodMenu();
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001720 }
1721 })
1722 .setIcon(a.getDrawable(
1723 com.android.internal.R.styleable.DialogPreference_dialogTitle));
1724 a.recycle();
satokd87c2592010-09-29 11:52:06 +09001725
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001726 mDialogBuilder.setSingleChoiceItems(mItems, checkedItem,
1727 new AlertDialog.OnClickListener() {
1728 public void onClick(DialogInterface dialog, int which) {
1729 synchronized (mMethodMap) {
satokab751aa2010-09-14 19:17:36 +09001730 if (mIms == null || mIms.length <= which
1731 || mSubtypeIds == null || mSubtypeIds.length <= which) {
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001732 return;
1733 }
1734 InputMethodInfo im = mIms[which];
satokab751aa2010-09-14 19:17:36 +09001735 int subtypeId = mSubtypeIds[which];
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001736 hideInputMethodMenu();
1737 if (im != null) {
satokab751aa2010-09-14 19:17:36 +09001738 if ((subtypeId < 0)
1739 || (subtypeId >= im.getSubtypes().size())) {
1740 subtypeId = NOT_A_SUBTYPE_ID;
1741 }
1742 setInputMethodLocked(im.getId(), subtypeId);
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001743 }
Dianne Hackborn20cb56e2010-03-04 00:58:29 -08001744 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001745 }
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001746 });
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001747
satok7f35c8c2010-10-07 21:13:11 +09001748 if (showSubtypes) {
1749 mDialogBuilder.setPositiveButton(com.android.internal.R.string.more_item_label,
1750 new DialogInterface.OnClickListener() {
1751 public void onClick(DialogInterface dialog, int whichButton) {
1752 showInputMethodAndSubtypeEnabler();
1753 }
1754 });
1755 }
satok0ff647b2010-10-08 13:49:28 +09001756 mDialogBuilder.setNegativeButton(com.android.internal.R.string.cancel,
1757 new DialogInterface.OnClickListener() {
1758 public void onClick(DialogInterface dialog, int whichButton) {
1759 hideInputMethodMenu();
1760 }
1761 });
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001762 mSwitchingDialog = mDialogBuilder.create();
1763 mSwitchingDialog.getWindow().setType(
1764 WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG);
1765 mSwitchingDialog.show();
1766 }
1767 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001768
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001769 void hideInputMethodMenu() {
The Android Open Source Project10592532009-03-18 17:39:46 -07001770 synchronized (mMethodMap) {
1771 hideInputMethodMenuLocked();
1772 }
1773 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001774
The Android Open Source Project10592532009-03-18 17:39:46 -07001775 void hideInputMethodMenuLocked() {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001776 if (DEBUG) Slog.v(TAG, "Hide switching menu");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001777
The Android Open Source Project10592532009-03-18 17:39:46 -07001778 if (mSwitchingDialog != null) {
1779 mSwitchingDialog.dismiss();
1780 mSwitchingDialog = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001781 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001782
The Android Open Source Project10592532009-03-18 17:39:46 -07001783 mDialogBuilder = null;
1784 mItems = null;
1785 mIms = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001786 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001787
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001788 // ----------------------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001789
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001790 public boolean setInputMethodEnabled(String id, boolean enabled) {
1791 synchronized (mMethodMap) {
1792 if (mContext.checkCallingOrSelfPermission(
1793 android.Manifest.permission.WRITE_SECURE_SETTINGS)
1794 != PackageManager.PERMISSION_GRANTED) {
1795 throw new SecurityException(
1796 "Requires permission "
1797 + android.Manifest.permission.WRITE_SECURE_SETTINGS);
1798 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001799
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001800 long ident = Binder.clearCallingIdentity();
1801 try {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001802 return setInputMethodEnabledLocked(id, enabled);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001803 } finally {
1804 Binder.restoreCallingIdentity(ident);
1805 }
1806 }
1807 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001808
1809 boolean setInputMethodEnabledLocked(String id, boolean enabled) {
1810 // Make sure this is a valid input method.
1811 InputMethodInfo imm = mMethodMap.get(id);
1812 if (imm == null) {
satokd87c2592010-09-29 11:52:06 +09001813 throw new IllegalArgumentException("Unknown id: " + mCurMethodId);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001814 }
1815
satokd87c2592010-09-29 11:52:06 +09001816 List<Pair<String, ArrayList<String>>> enabledInputMethodsList = mSettings
1817 .getEnabledInputMethodsAndSubtypeListLocked();
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001818
satokd87c2592010-09-29 11:52:06 +09001819 if (enabled) {
1820 for (Pair<String, ArrayList<String>> pair: enabledInputMethodsList) {
1821 if (pair.first.equals(id)) {
1822 // We are enabling this input method, but it is already enabled.
1823 // Nothing to do. The previous state was enabled.
1824 return true;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001825 }
1826 }
satokd87c2592010-09-29 11:52:06 +09001827 mSettings.appendAndPutEnabledInputMethodLocked(id, false);
1828 // Previous state was disabled.
1829 return false;
1830 } else {
1831 StringBuilder builder = new StringBuilder();
1832 if (mSettings.buildAndPutEnabledInputMethodsStrRemovingIdLocked(
1833 builder, enabledInputMethodsList, id)) {
1834 // Disabled input method is currently selected, switch to another one.
1835 String selId = Settings.Secure.getString(mContext.getContentResolver(),
1836 Settings.Secure.DEFAULT_INPUT_METHOD);
satok03eb319a2010-11-11 18:17:42 +09001837 if (id.equals(selId) && !chooseNewDefaultIMELocked()) {
1838 Slog.i(TAG, "Can't find new IME, unsetting the current input method.");
1839 resetSelectedInputMethodAndSubtypeLocked("");
satokd87c2592010-09-29 11:52:06 +09001840 }
1841 // Previous state was enabled.
1842 return true;
1843 } else {
1844 // We are disabling the input method but it is already disabled.
1845 // Nothing to do. The previous state was disabled.
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001846 return false;
1847 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001848 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001849 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08001850
satok723a27e2010-11-11 14:58:11 +09001851 private void saveCurrentInputMethodAndSubtypeToHistory() {
1852 String subtypeId = NOT_A_SUBTYPE_ID_STR;
1853 if (mCurrentSubtype != null) {
1854 subtypeId = String.valueOf(mCurrentSubtype.hashCode());
1855 }
1856 mSettings.addSubtypeToHistory(mCurMethodId, subtypeId);
satokab751aa2010-09-14 19:17:36 +09001857 }
1858
satok723a27e2010-11-11 14:58:11 +09001859 private void setSelectedInputMethodAndSubtypeLocked(InputMethodInfo imi, int subtypeId,
1860 boolean setSubtypeOnly) {
1861 // Update the history of InputMethod and Subtype
1862 saveCurrentInputMethodAndSubtypeToHistory();
1863
1864 // Set Subtype here
1865 if (imi == null || subtypeId < 0) {
1866 mSettings.putSelectedSubtype(NOT_A_SUBTYPE_ID);
Tadashi G. Takaoka0ba75bb2010-11-09 12:19:32 -08001867 mCurrentSubtype = null;
satok723a27e2010-11-11 14:58:11 +09001868 } else {
1869 final ArrayList<InputMethodSubtype> subtypes = imi.getSubtypes();
1870 if (subtypeId < subtypes.size()) {
1871 mSettings.putSelectedSubtype(subtypes.get(subtypeId).hashCode());
1872 mCurrentSubtype = subtypes.get(subtypeId);
1873 } else {
1874 mSettings.putSelectedSubtype(NOT_A_SUBTYPE_ID);
1875 mCurrentSubtype = null;
1876 }
satokab751aa2010-09-14 19:17:36 +09001877 }
satok723a27e2010-11-11 14:58:11 +09001878
1879 if (!setSubtypeOnly) {
1880 // Set InputMethod here
1881 mSettings.putSelectedInputMethod(imi != null ? imi.getId() : "");
1882 }
1883 }
1884
1885 private void resetSelectedInputMethodAndSubtypeLocked(String newDefaultIme) {
1886 InputMethodInfo imi = mMethodMap.get(newDefaultIme);
1887 int lastSubtypeId = NOT_A_SUBTYPE_ID;
1888 // newDefaultIme is empty when there is no candidate for the selected IME.
1889 if (imi != null && !TextUtils.isEmpty(newDefaultIme)) {
1890 String subtypeHashCode = mSettings.getLastSubtypeForInputMethodLocked(newDefaultIme);
1891 if (subtypeHashCode != null) {
1892 try {
1893 lastSubtypeId = getSubtypeIdFromHashCode(
1894 imi, Integer.valueOf(subtypeHashCode));
1895 } catch (NumberFormatException e) {
1896 Slog.w(TAG, "HashCode for subtype looks broken: " + subtypeHashCode, e);
1897 }
1898 }
1899 }
1900 setSelectedInputMethodAndSubtypeLocked(imi, lastSubtypeId, false);
satokab751aa2010-09-14 19:17:36 +09001901 }
1902
1903 private int getSelectedInputMethodSubtypeId(String id) {
1904 InputMethodInfo imi = mMethodMap.get(id);
1905 if (imi == null) {
1906 return NOT_A_SUBTYPE_ID;
1907 }
satokab751aa2010-09-14 19:17:36 +09001908 int subtypeId;
1909 try {
1910 subtypeId = Settings.Secure.getInt(mContext.getContentResolver(),
1911 Settings.Secure.SELECTED_INPUT_METHOD_SUBTYPE);
1912 } catch (SettingNotFoundException e) {
1913 return NOT_A_SUBTYPE_ID;
1914 }
satok723a27e2010-11-11 14:58:11 +09001915 return getSubtypeIdFromHashCode(imi, subtypeId);
1916 }
1917
1918 private int getSubtypeIdFromHashCode(InputMethodInfo imi, int subtypeHashCode) {
satok28203512010-11-24 11:06:49 +09001919 if (imi != null) {
1920 ArrayList<InputMethodSubtype> subtypes = imi.getSubtypes();
1921 for (int i = 0; i < subtypes.size(); ++i) {
1922 InputMethodSubtype ims = subtypes.get(i);
1923 if (subtypeHashCode == ims.hashCode()) {
1924 return i;
1925 }
satokab751aa2010-09-14 19:17:36 +09001926 }
1927 }
1928 return NOT_A_SUBTYPE_ID;
1929 }
1930
satok4e4569d2010-11-19 18:45:53 +09001931 /**
1932 * If there are no selected subtypes, tries finding the most applicable one according to the
1933 * given locale.
1934 * @param subtypes this function will search the most applicable subtype in subtypes
1935 * @param mode subtypes will be filtered by mode
1936 * @param locale subtypes will be filtered by locale
1937 * @param defaultSubtypeId if this function can't find the most applicable subtype, it will
1938 * return defaultSubtypeId
1939 * @return the most applicable subtypeId
1940 */
satokcd7cd292010-11-20 15:46:23 +09001941 private InputMethodSubtype findLastResortApplicableSubtypeLocked(
satok4e4569d2010-11-19 18:45:53 +09001942 List<InputMethodSubtype> subtypes, String mode, String locale, int defaultSubtypeId) {
satok8fbb1e82010-11-02 23:15:58 +09001943 if (subtypes == null || subtypes.size() == 0) {
satokcd7cd292010-11-20 15:46:23 +09001944 return null;
satok8fbb1e82010-11-02 23:15:58 +09001945 }
satok4e4569d2010-11-19 18:45:53 +09001946 if (TextUtils.isEmpty(locale)) {
1947 locale = mContext.getResources().getConfiguration().locale.toString();
1948 }
satok8fbb1e82010-11-02 23:15:58 +09001949 final String language = locale.substring(0, 2);
1950 boolean partialMatchFound = false;
satokcd7cd292010-11-20 15:46:23 +09001951 InputMethodSubtype applicableSubtype = null;
satok8fbb1e82010-11-02 23:15:58 +09001952 for (int i = 0; i < subtypes.size(); ++i) {
satokcd7cd292010-11-20 15:46:23 +09001953 InputMethodSubtype subtype = subtypes.get(i);
1954 final String subtypeLocale = subtype.getLocale();
satok4e4569d2010-11-19 18:45:53 +09001955 // An applicable subtype should match "mode".
1956 if (subtypes.get(i).getMode().equalsIgnoreCase(mode)) {
satok9ef02832010-11-04 21:17:48 +09001957 if (locale.equals(subtypeLocale)) {
1958 // Exact match (e.g. system locale is "en_US" and subtype locale is "en_US")
satokcd7cd292010-11-20 15:46:23 +09001959 applicableSubtype = subtype;
satok9ef02832010-11-04 21:17:48 +09001960 break;
1961 } else if (!partialMatchFound && subtypeLocale.startsWith(language)) {
1962 // Partial match (e.g. system locale is "en_US" and subtype locale is "en")
satokcd7cd292010-11-20 15:46:23 +09001963 applicableSubtype = subtype;
satok9ef02832010-11-04 21:17:48 +09001964 partialMatchFound = true;
1965 }
satok8fbb1e82010-11-02 23:15:58 +09001966 }
1967 }
1968
1969 // The first subtype applicable to the system locale will be defined as the most applicable
1970 // subtype.
1971 if (DEBUG) {
satokcd7cd292010-11-20 15:46:23 +09001972 Slog.d(TAG, "Applicable InputMethodSubtype was found: " + applicableSubtype.getMode()
1973 + "," + applicableSubtype.getLocale());
satok8fbb1e82010-11-02 23:15:58 +09001974 }
satokcd7cd292010-11-20 15:46:23 +09001975 return applicableSubtype;
satok8fbb1e82010-11-02 23:15:58 +09001976 }
1977
satok4e4569d2010-11-19 18:45:53 +09001978 // If there are no selected shortcuts, tries finding the most applicable ones.
1979 private Pair<InputMethodInfo, InputMethodSubtype>
1980 findLastResortApplicableShortcutInputMethodAndSubtypeLocked(String mode) {
1981 List<InputMethodInfo> imis = mSettings.getEnabledInputMethodListLocked();
1982 InputMethodInfo mostApplicableIMI = null;
satokcd7cd292010-11-20 15:46:23 +09001983 InputMethodSubtype mostApplicableSubtype = null;
satok4e4569d2010-11-19 18:45:53 +09001984 boolean foundInSystemIME = false;
1985
1986 // Search applicable subtype for each InputMethodInfo
1987 for (InputMethodInfo imi: imis) {
satokcd7cd292010-11-20 15:46:23 +09001988 InputMethodSubtype subtype = null;
satok4e4569d2010-11-19 18:45:53 +09001989 if (mCurrentSubtype != null) {
1990 // 1. Search with the current subtype's locale and the enabled subtypes
satokcd7cd292010-11-20 15:46:23 +09001991 subtype = findLastResortApplicableSubtypeLocked(
satok4e4569d2010-11-19 18:45:53 +09001992 mSettings.getEnabledInputMethodSubtypeListLocked(
1993 imi), mode, mCurrentSubtype.getLocale(), NOT_A_SUBTYPE_ID);
satokcd7cd292010-11-20 15:46:23 +09001994 if (subtype == null) {
satok4e4569d2010-11-19 18:45:53 +09001995 // 2. Search with the current subtype's locale and all subtypes
satokcd7cd292010-11-20 15:46:23 +09001996 subtype = findLastResortApplicableSubtypeLocked(imi.getSubtypes(),
satok4e4569d2010-11-19 18:45:53 +09001997 mode, mCurrentSubtype.getLocale(), NOT_A_SUBTYPE_ID);
1998 }
1999 }
2000 // 3. Search with the system locale and the enabled subtypes
satokcd7cd292010-11-20 15:46:23 +09002001 if (subtype == null) {
2002 subtype = findLastResortApplicableSubtypeLocked(
satok4e4569d2010-11-19 18:45:53 +09002003 mSettings.getEnabledInputMethodSubtypeListLocked(
2004 imi), mode, null, NOT_A_SUBTYPE_ID);
2005 }
satokcd7cd292010-11-20 15:46:23 +09002006 if (subtype == null) {
satok4e4569d2010-11-19 18:45:53 +09002007 // 4. Search with the system locale and all subtypes
satokcd7cd292010-11-20 15:46:23 +09002008 subtype = findLastResortApplicableSubtypeLocked(imi.getSubtypes(),
satok4e4569d2010-11-19 18:45:53 +09002009 mode, null, NOT_A_SUBTYPE_ID);
2010 }
satokcd7cd292010-11-20 15:46:23 +09002011 if (subtype != null) {
satok4e4569d2010-11-19 18:45:53 +09002012 if (imi.getId().equals(mCurMethodId)) {
2013 // The current input method is the most applicable IME.
2014 mostApplicableIMI = imi;
satokcd7cd292010-11-20 15:46:23 +09002015 mostApplicableSubtype = subtype;
satok4e4569d2010-11-19 18:45:53 +09002016 break;
2017 } else if ((imi.getServiceInfo().applicationInfo.flags
2018 & ApplicationInfo.FLAG_SYSTEM) != 0) {
2019 // The system input method is 2nd applicable IME.
2020 mostApplicableIMI = imi;
satokcd7cd292010-11-20 15:46:23 +09002021 mostApplicableSubtype = subtype;
satok4e4569d2010-11-19 18:45:53 +09002022 foundInSystemIME = true;
2023 } else if (!foundInSystemIME) {
2024 mostApplicableIMI = imi;
satokcd7cd292010-11-20 15:46:23 +09002025 mostApplicableSubtype = subtype;
satok4e4569d2010-11-19 18:45:53 +09002026 }
2027 }
2028 }
2029 if (DEBUG) {
satokcd7cd292010-11-20 15:46:23 +09002030 if (mostApplicableIMI != null) {
2031 Slog.w(TAG, "Most applicable shortcut input method was:"
2032 + mostApplicableIMI.getId());
2033 if (mostApplicableSubtype != null) {
2034 Slog.w(TAG, "Most applicable shortcut input method subtype was:"
2035 + "," + mostApplicableSubtype.getMode() + ","
2036 + mostApplicableSubtype.getLocale());
2037 }
2038 }
satok4e4569d2010-11-19 18:45:53 +09002039 }
satokcd7cd292010-11-20 15:46:23 +09002040 if (mostApplicableIMI != null) {
satok4e4569d2010-11-19 18:45:53 +09002041 return new Pair<InputMethodInfo, InputMethodSubtype> (mostApplicableIMI,
satokcd7cd292010-11-20 15:46:23 +09002042 mostApplicableSubtype);
satok4e4569d2010-11-19 18:45:53 +09002043 } else {
2044 return null;
2045 }
2046 }
2047
satokab751aa2010-09-14 19:17:36 +09002048 /**
2049 * @return Return the current subtype of this input method.
2050 */
2051 public InputMethodSubtype getCurrentInputMethodSubtype() {
satok4e4569d2010-11-19 18:45:53 +09002052 boolean subtypeIsSelected = false;
2053 try {
2054 subtypeIsSelected = Settings.Secure.getInt(mContext.getContentResolver(),
2055 Settings.Secure.SELECTED_INPUT_METHOD_SUBTYPE) != NOT_A_SUBTYPE_ID;
2056 } catch (SettingNotFoundException e) {
2057 }
satok3ef8b292010-11-23 06:06:29 +09002058 synchronized (mMethodMap) {
satok3ef8b292010-11-23 06:06:29 +09002059 if (!subtypeIsSelected || mCurrentSubtype == null) {
satok4e4569d2010-11-19 18:45:53 +09002060 String lastInputMethodId = Settings.Secure.getString(
2061 mContext.getContentResolver(), Settings.Secure.DEFAULT_INPUT_METHOD);
satok3ef8b292010-11-23 06:06:29 +09002062 int subtypeId = getSelectedInputMethodSubtypeId(lastInputMethodId);
2063 if (subtypeId == NOT_A_SUBTYPE_ID) {
satok4e4569d2010-11-19 18:45:53 +09002064 InputMethodInfo imi = mMethodMap.get(lastInputMethodId);
2065 if (imi != null) {
2066 // If there are no selected subtypes, the framework will try to find
2067 // the most applicable subtype from all subtypes whose mode is
2068 // SUBTYPE_MODE_KEYBOARD. This is an exceptional case, so we will hardcode
2069 // the mode.
satokcd7cd292010-11-20 15:46:23 +09002070 mCurrentSubtype = findLastResortApplicableSubtypeLocked(imi.getSubtypes(),
satok4e4569d2010-11-19 18:45:53 +09002071 SUBTYPE_MODE_KEYBOARD, null, DEFAULT_SUBTYPE_ID);
2072 }
satokcd7cd292010-11-20 15:46:23 +09002073 } else {
satok3ef8b292010-11-23 06:06:29 +09002074 mCurrentSubtype =
2075 mMethodMap.get(lastInputMethodId).getSubtypes().get(subtypeId);
2076 }
satok8fbb1e82010-11-02 23:15:58 +09002077 }
satok3ef8b292010-11-23 06:06:29 +09002078 return mCurrentSubtype;
satok8fbb1e82010-11-02 23:15:58 +09002079 }
satokab751aa2010-09-14 19:17:36 +09002080 }
2081
satokf3db1af2010-11-23 13:34:33 +09002082 private void addShortcutInputMethodAndSubtypes(InputMethodInfo imi,
2083 InputMethodSubtype subtype) {
2084 if (mShortcutInputMethodsAndSubtypes.containsKey(imi)) {
2085 mShortcutInputMethodsAndSubtypes.get(imi).add(subtype);
2086 } else {
2087 ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>();
2088 subtypes.add(subtype);
2089 mShortcutInputMethodsAndSubtypes.put(imi, subtypes);
2090 }
2091 }
2092
satok4e4569d2010-11-19 18:45:53 +09002093 // TODO: We should change the return type from List to List<Parcelable>
2094 public List getShortcutInputMethodsAndSubtypes() {
2095 synchronized (mMethodMap) {
satokf3db1af2010-11-23 13:34:33 +09002096 if (mShortcutInputMethodsAndSubtypes.size() == 0) {
satok4e4569d2010-11-19 18:45:53 +09002097 // If there are no selected shortcut subtypes, the framework will try to find
2098 // the most applicable subtype from all subtypes whose mode is
2099 // SUBTYPE_MODE_VOICE. This is an exceptional case, so we will hardcode the mode.
satokf3db1af2010-11-23 13:34:33 +09002100 Pair<InputMethodInfo, InputMethodSubtype> info =
2101 findLastResortApplicableShortcutInputMethodAndSubtypeLocked(
2102 SUBTYPE_MODE_VOICE);
2103 addShortcutInputMethodAndSubtypes(info.first, info.second);
2104 }
satokcd7cd292010-11-20 15:46:23 +09002105 ArrayList<Object> ret = new ArrayList<Object>();
satokf3db1af2010-11-23 13:34:33 +09002106 for (InputMethodInfo imi: mShortcutInputMethodsAndSubtypes.keySet()) {
2107 ret.add(imi);
2108 for (InputMethodSubtype subtype: mShortcutInputMethodsAndSubtypes.get(imi)) {
2109 ret.add(subtype);
satok4e4569d2010-11-19 18:45:53 +09002110 }
2111 }
satokf3db1af2010-11-23 13:34:33 +09002112 return ret;
satok4e4569d2010-11-19 18:45:53 +09002113 }
2114 }
2115
satokb66d2872010-11-10 01:04:04 +09002116 public boolean setCurrentInputMethodSubtype(InputMethodSubtype subtype) {
2117 synchronized (mMethodMap) {
2118 if (subtype != null && mCurMethodId != null) {
2119 InputMethodInfo imi = mMethodMap.get(mCurMethodId);
2120 int subtypeId = getSubtypeIdFromHashCode(imi, subtype.hashCode());
2121 if (subtypeId != NOT_A_SUBTYPE_ID) {
2122 setInputMethodLocked(mCurMethodId, subtypeId);
2123 return true;
2124 }
2125 }
2126 return false;
2127 }
2128 }
2129
satokd87c2592010-09-29 11:52:06 +09002130 /**
2131 * Utility class for putting and getting settings for InputMethod
2132 * TODO: Move all putters and getters of settings to this class.
2133 */
2134 private static class InputMethodSettings {
2135 // The string for enabled input method is saved as follows:
2136 // example: ("ime0;subtype0;subtype1;subtype2:ime1:ime2;subtype0")
2137 private static final char INPUT_METHOD_SEPARATER = ':';
2138 private static final char INPUT_METHOD_SUBTYPE_SEPARATER = ';';
satok723a27e2010-11-11 14:58:11 +09002139 private final TextUtils.SimpleStringSplitter mInputMethodSplitter =
satokd87c2592010-09-29 11:52:06 +09002140 new TextUtils.SimpleStringSplitter(INPUT_METHOD_SEPARATER);
2141
satok723a27e2010-11-11 14:58:11 +09002142 private final TextUtils.SimpleStringSplitter mSubtypeSplitter =
satokd87c2592010-09-29 11:52:06 +09002143 new TextUtils.SimpleStringSplitter(INPUT_METHOD_SUBTYPE_SEPARATER);
2144
2145 private final ContentResolver mResolver;
2146 private final HashMap<String, InputMethodInfo> mMethodMap;
2147 private final ArrayList<InputMethodInfo> mMethodList;
2148
2149 private String mEnabledInputMethodsStrCache;
2150
2151 private static void buildEnabledInputMethodsSettingString(
2152 StringBuilder builder, Pair<String, ArrayList<String>> pair) {
2153 String id = pair.first;
2154 ArrayList<String> subtypes = pair.second;
2155 builder.append(id);
satok57c767c2010-11-01 22:34:08 +09002156 // Inputmethod and subtypes are saved in the settings as follows:
2157 // ime0;subtype0;subtype1:ime1;subtype0:ime2:ime3;subtype0;subtype1
2158 for (String subtypeId: subtypes) {
2159 builder.append(INPUT_METHOD_SUBTYPE_SEPARATER).append(subtypeId);
satokd87c2592010-09-29 11:52:06 +09002160 }
2161 }
2162
2163 public InputMethodSettings(
2164 ContentResolver resolver, HashMap<String, InputMethodInfo> methodMap,
2165 ArrayList<InputMethodInfo> methodList) {
2166 mResolver = resolver;
2167 mMethodMap = methodMap;
2168 mMethodList = methodList;
2169 }
2170
2171 public List<InputMethodInfo> getEnabledInputMethodListLocked() {
2172 return createEnabledInputMethodListLocked(
2173 getEnabledInputMethodsAndSubtypeListLocked());
2174 }
2175
satok7f35c8c2010-10-07 21:13:11 +09002176 public List<Pair<InputMethodInfo, ArrayList<String>>>
satok67ddf9c2010-11-17 09:45:54 +09002177 getEnabledInputMethodAndSubtypeHashCodeListLocked() {
2178 return createEnabledInputMethodAndSubtypeHashCodeListLocked(
satok7f35c8c2010-10-07 21:13:11 +09002179 getEnabledInputMethodsAndSubtypeListLocked());
2180 }
2181
satok67ddf9c2010-11-17 09:45:54 +09002182 public List<InputMethodSubtype> getEnabledInputMethodSubtypeListLocked(
2183 InputMethodInfo imi) {
2184 List<Pair<String, ArrayList<String>>> imsList =
2185 getEnabledInputMethodsAndSubtypeListLocked();
2186 ArrayList<InputMethodSubtype> enabledSubtypes =
2187 new ArrayList<InputMethodSubtype>();
satok884ef9a2010-11-18 10:39:46 +09002188 if (imi != null) {
2189 for (Pair<String, ArrayList<String>> imsPair : imsList) {
2190 InputMethodInfo info = mMethodMap.get(imsPair.first);
2191 if (info != null && info.getId().equals(imi.getId())) {
2192 ArrayList<InputMethodSubtype> subtypes = info.getSubtypes();
2193 for (InputMethodSubtype ims: subtypes) {
2194 for (String s: imsPair.second) {
2195 if (String.valueOf(ims.hashCode()).equals(s)) {
2196 enabledSubtypes.add(ims);
2197 }
satok67ddf9c2010-11-17 09:45:54 +09002198 }
2199 }
satok884ef9a2010-11-18 10:39:46 +09002200 break;
satok67ddf9c2010-11-17 09:45:54 +09002201 }
satok67ddf9c2010-11-17 09:45:54 +09002202 }
2203 }
2204 return enabledSubtypes;
2205 }
2206
satokd87c2592010-09-29 11:52:06 +09002207 // At the initial boot, the settings for input methods are not set,
2208 // so we need to enable IME in that case.
2209 public void enableAllIMEsIfThereIsNoEnabledIME() {
2210 if (TextUtils.isEmpty(getEnabledInputMethodsStr())) {
2211 StringBuilder sb = new StringBuilder();
2212 final int N = mMethodList.size();
2213 for (int i = 0; i < N; i++) {
2214 InputMethodInfo imi = mMethodList.get(i);
2215 Slog.i(TAG, "Adding: " + imi.getId());
2216 if (i > 0) sb.append(':');
2217 sb.append(imi.getId());
2218 }
2219 putEnabledInputMethodsStr(sb.toString());
2220 }
2221 }
2222
2223 public List<Pair<String, ArrayList<String>>> getEnabledInputMethodsAndSubtypeListLocked() {
2224 ArrayList<Pair<String, ArrayList<String>>> imsList
2225 = new ArrayList<Pair<String, ArrayList<String>>>();
2226 final String enabledInputMethodsStr = getEnabledInputMethodsStr();
2227 if (TextUtils.isEmpty(enabledInputMethodsStr)) {
2228 return imsList;
2229 }
satok723a27e2010-11-11 14:58:11 +09002230 mInputMethodSplitter.setString(enabledInputMethodsStr);
2231 while (mInputMethodSplitter.hasNext()) {
2232 String nextImsStr = mInputMethodSplitter.next();
2233 mSubtypeSplitter.setString(nextImsStr);
2234 if (mSubtypeSplitter.hasNext()) {
satokd87c2592010-09-29 11:52:06 +09002235 ArrayList<String> subtypeHashes = new ArrayList<String>();
2236 // The first element is ime id.
satok723a27e2010-11-11 14:58:11 +09002237 String imeId = mSubtypeSplitter.next();
2238 while (mSubtypeSplitter.hasNext()) {
2239 subtypeHashes.add(mSubtypeSplitter.next());
satokd87c2592010-09-29 11:52:06 +09002240 }
2241 imsList.add(new Pair<String, ArrayList<String>>(imeId, subtypeHashes));
2242 }
2243 }
2244 return imsList;
2245 }
2246
2247 public void appendAndPutEnabledInputMethodLocked(String id, boolean reloadInputMethodStr) {
2248 if (reloadInputMethodStr) {
2249 getEnabledInputMethodsStr();
2250 }
2251 if (TextUtils.isEmpty(mEnabledInputMethodsStrCache)) {
2252 // Add in the newly enabled input method.
2253 putEnabledInputMethodsStr(id);
2254 } else {
2255 putEnabledInputMethodsStr(
2256 mEnabledInputMethodsStrCache + INPUT_METHOD_SEPARATER + id);
2257 }
2258 }
2259
2260 /**
2261 * Build and put a string of EnabledInputMethods with removing specified Id.
2262 * @return the specified id was removed or not.
2263 */
2264 public boolean buildAndPutEnabledInputMethodsStrRemovingIdLocked(
2265 StringBuilder builder, List<Pair<String, ArrayList<String>>> imsList, String id) {
2266 boolean isRemoved = false;
2267 boolean needsAppendSeparator = false;
2268 for (Pair<String, ArrayList<String>> ims: imsList) {
2269 String curId = ims.first;
2270 if (curId.equals(id)) {
2271 // We are disabling this input method, and it is
2272 // currently enabled. Skip it to remove from the
2273 // new list.
2274 isRemoved = true;
2275 } else {
2276 if (needsAppendSeparator) {
2277 builder.append(INPUT_METHOD_SEPARATER);
2278 } else {
2279 needsAppendSeparator = true;
2280 }
2281 buildEnabledInputMethodsSettingString(builder, ims);
2282 }
2283 }
2284 if (isRemoved) {
2285 // Update the setting with the new list of input methods.
2286 putEnabledInputMethodsStr(builder.toString());
2287 }
2288 return isRemoved;
2289 }
2290
2291 private List<InputMethodInfo> createEnabledInputMethodListLocked(
2292 List<Pair<String, ArrayList<String>>> imsList) {
2293 final ArrayList<InputMethodInfo> res = new ArrayList<InputMethodInfo>();
2294 for (Pair<String, ArrayList<String>> ims: imsList) {
2295 InputMethodInfo info = mMethodMap.get(ims.first);
2296 if (info != null) {
2297 res.add(info);
2298 }
2299 }
2300 return res;
2301 }
2302
satok7f35c8c2010-10-07 21:13:11 +09002303 private List<Pair<InputMethodInfo, ArrayList<String>>>
satok67ddf9c2010-11-17 09:45:54 +09002304 createEnabledInputMethodAndSubtypeHashCodeListLocked(
satok7f35c8c2010-10-07 21:13:11 +09002305 List<Pair<String, ArrayList<String>>> imsList) {
2306 final ArrayList<Pair<InputMethodInfo, ArrayList<String>>> res
2307 = new ArrayList<Pair<InputMethodInfo, ArrayList<String>>>();
2308 for (Pair<String, ArrayList<String>> ims : imsList) {
2309 InputMethodInfo info = mMethodMap.get(ims.first);
2310 if (info != null) {
2311 res.add(new Pair<InputMethodInfo, ArrayList<String>>(info, ims.second));
2312 }
2313 }
2314 return res;
2315 }
2316
satokd87c2592010-09-29 11:52:06 +09002317 private void putEnabledInputMethodsStr(String str) {
2318 Settings.Secure.putString(mResolver, Settings.Secure.ENABLED_INPUT_METHODS, str);
2319 mEnabledInputMethodsStrCache = str;
2320 }
2321
2322 private String getEnabledInputMethodsStr() {
2323 mEnabledInputMethodsStrCache = Settings.Secure.getString(
2324 mResolver, Settings.Secure.ENABLED_INPUT_METHODS);
satok723a27e2010-11-11 14:58:11 +09002325 if (DEBUG) {
2326 Slog.d(TAG, "getEnabledInputMethodsStr: " + mEnabledInputMethodsStrCache);
2327 }
satokd87c2592010-09-29 11:52:06 +09002328 return mEnabledInputMethodsStrCache;
2329 }
satok723a27e2010-11-11 14:58:11 +09002330
2331 private void saveSubtypeHistory(
2332 List<Pair<String, String>> savedImes, String newImeId, String newSubtypeId) {
2333 StringBuilder builder = new StringBuilder();
2334 boolean isImeAdded = false;
2335 if (!TextUtils.isEmpty(newImeId) && !TextUtils.isEmpty(newSubtypeId)) {
2336 builder.append(newImeId).append(INPUT_METHOD_SUBTYPE_SEPARATER).append(
2337 newSubtypeId);
2338 isImeAdded = true;
2339 }
2340 for (Pair<String, String> ime: savedImes) {
2341 String imeId = ime.first;
2342 String subtypeId = ime.second;
2343 if (TextUtils.isEmpty(subtypeId)) {
2344 subtypeId = NOT_A_SUBTYPE_ID_STR;
2345 }
2346 if (isImeAdded) {
2347 builder.append(INPUT_METHOD_SEPARATER);
2348 } else {
2349 isImeAdded = true;
2350 }
2351 builder.append(imeId).append(INPUT_METHOD_SUBTYPE_SEPARATER).append(
2352 subtypeId);
2353 }
2354 // Remove the last INPUT_METHOD_SEPARATER
2355 putSubtypeHistoryStr(builder.toString());
2356 }
2357
2358 public void addSubtypeToHistory(String imeId, String subtypeId) {
2359 List<Pair<String, String>> subtypeHistory = loadInputMethodAndSubtypeHistoryLocked();
2360 for (Pair<String, String> ime: subtypeHistory) {
2361 if (ime.first.equals(imeId)) {
2362 if (DEBUG) {
2363 Slog.v(TAG, "Subtype found in the history: " + imeId
2364 + ime.second);
2365 }
2366 // We should break here
2367 subtypeHistory.remove(ime);
2368 break;
2369 }
2370 }
2371 saveSubtypeHistory(subtypeHistory, imeId, subtypeId);
2372 }
2373
2374 private void putSubtypeHistoryStr(String str) {
2375 if (DEBUG) {
2376 Slog.d(TAG, "putSubtypeHistoryStr: " + str);
2377 }
2378 Settings.Secure.putString(
2379 mResolver, Settings.Secure.INPUT_METHODS_SUBTYPE_HISTORY, str);
2380 }
2381
2382 public Pair<String, String> getLastInputMethodAndSubtypeLocked() {
2383 // Gets the first one from the history
2384 return getLastSubtypeForInputMethodLockedInternal(null);
2385 }
2386
2387 public String getLastSubtypeForInputMethodLocked(String imeId) {
2388 Pair<String, String> ime = getLastSubtypeForInputMethodLockedInternal(imeId);
2389 if (ime != null) {
2390 return ime.second;
2391 } else {
2392 return null;
2393 }
2394 }
2395
2396 private Pair<String, String> getLastSubtypeForInputMethodLockedInternal(String imeId) {
2397 List<Pair<String, ArrayList<String>>> enabledImes =
2398 getEnabledInputMethodsAndSubtypeListLocked();
2399 List<Pair<String, String>> subtypeHistory = loadInputMethodAndSubtypeHistoryLocked();
2400 for (Pair<String, String> imeAndSubtype: subtypeHistory) {
2401 final String imeInTheHistory = imeAndSubtype.first;
2402 // If imeId is empty, returns the first IME and subtype in the history
2403 if (TextUtils.isEmpty(imeId) || imeInTheHistory.equals(imeId)) {
2404 final String subtypeInTheHistory = imeAndSubtype.second;
2405 final String subtypeHashCode = getEnabledSubtypeForInputMethodAndSubtypeLocked(
2406 enabledImes, imeInTheHistory, subtypeInTheHistory);
2407 if (!TextUtils.isEmpty(subtypeHashCode)) {
2408 if (DEBUG) {
2409 Slog.d(TAG, "Enabled subtype found in the history:" + subtypeHashCode);
2410 }
2411 return new Pair<String, String>(imeInTheHistory, subtypeHashCode);
2412 }
2413 }
2414 }
2415 if (DEBUG) {
2416 Slog.d(TAG, "No enabled IME found in the history");
2417 }
2418 return null;
2419 }
2420
2421 private String getEnabledSubtypeForInputMethodAndSubtypeLocked(List<Pair<String,
2422 ArrayList<String>>> enabledImes, String imeId, String subtypeHashCode) {
2423 for (Pair<String, ArrayList<String>> enabledIme: enabledImes) {
2424 if (enabledIme.first.equals(imeId)) {
2425 for (String s: enabledIme.second) {
2426 if (s.equals(subtypeHashCode)) {
2427 // If both imeId and subtypeId are enabled, return subtypeId.
2428 return s;
2429 }
2430 }
2431 // If imeId was enabled but subtypeId was disabled.
2432 return NOT_A_SUBTYPE_ID_STR;
2433 }
2434 }
2435 // If both imeId and subtypeId are disabled, return null
2436 return null;
2437 }
2438
2439 private List<Pair<String, String>> loadInputMethodAndSubtypeHistoryLocked() {
2440 ArrayList<Pair<String, String>> imsList = new ArrayList<Pair<String, String>>();
2441 final String subtypeHistoryStr = getSubtypeHistoryStr();
2442 if (TextUtils.isEmpty(subtypeHistoryStr)) {
2443 return imsList;
2444 }
2445 mInputMethodSplitter.setString(subtypeHistoryStr);
2446 while (mInputMethodSplitter.hasNext()) {
2447 String nextImsStr = mInputMethodSplitter.next();
2448 mSubtypeSplitter.setString(nextImsStr);
2449 if (mSubtypeSplitter.hasNext()) {
2450 String subtypeId = NOT_A_SUBTYPE_ID_STR;
2451 // The first element is ime id.
2452 String imeId = mSubtypeSplitter.next();
2453 while (mSubtypeSplitter.hasNext()) {
2454 subtypeId = mSubtypeSplitter.next();
2455 break;
2456 }
2457 imsList.add(new Pair<String, String>(imeId, subtypeId));
2458 }
2459 }
2460 return imsList;
2461 }
2462
2463 private String getSubtypeHistoryStr() {
2464 if (DEBUG) {
2465 Slog.d(TAG, "getSubtypeHistoryStr: " + Settings.Secure.getString(
2466 mResolver, Settings.Secure.INPUT_METHODS_SUBTYPE_HISTORY));
2467 }
2468 return Settings.Secure.getString(
2469 mResolver, Settings.Secure.INPUT_METHODS_SUBTYPE_HISTORY);
2470 }
2471
2472 public void putSelectedInputMethod(String imeId) {
2473 Settings.Secure.putString(mResolver, Settings.Secure.DEFAULT_INPUT_METHOD, imeId);
2474 }
2475
2476 public void putSelectedSubtype(int subtypeId) {
2477 Settings.Secure.putInt(
2478 mResolver, Settings.Secure.SELECTED_INPUT_METHOD_SUBTYPE, subtypeId);
2479 }
satokd87c2592010-09-29 11:52:06 +09002480 }
2481
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002482 // ----------------------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002483
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002484 @Override
2485 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
2486 if (mContext.checkCallingOrSelfPermission(android.Manifest.permission.DUMP)
2487 != PackageManager.PERMISSION_GRANTED) {
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002488
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002489 pw.println("Permission Denial: can't dump InputMethodManager from from pid="
2490 + Binder.getCallingPid()
2491 + ", uid=" + Binder.getCallingUid());
2492 return;
2493 }
2494
2495 IInputMethod method;
2496 ClientState client;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002497
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002498 final Printer p = new PrintWriterPrinter(pw);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002499
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002500 synchronized (mMethodMap) {
2501 p.println("Current Input Method Manager state:");
2502 int N = mMethodList.size();
2503 p.println(" Input Methods:");
2504 for (int i=0; i<N; i++) {
2505 InputMethodInfo info = mMethodList.get(i);
2506 p.println(" InputMethod #" + i + ":");
2507 info.dump(p, " ");
2508 }
2509 p.println(" Clients:");
2510 for (ClientState ci : mClients.values()) {
2511 p.println(" Client " + ci + ":");
2512 p.println(" client=" + ci.client);
2513 p.println(" inputContext=" + ci.inputContext);
2514 p.println(" sessionRequested=" + ci.sessionRequested);
2515 p.println(" curSession=" + ci.curSession);
2516 }
The Android Open Source Project10592532009-03-18 17:39:46 -07002517 p.println(" mCurMethodId=" + mCurMethodId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002518 client = mCurClient;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07002519 p.println(" mCurClient=" + client + " mCurSeq=" + mCurSeq);
2520 p.println(" mCurFocusedWindow=" + mCurFocusedWindow);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002521 p.println(" mCurId=" + mCurId + " mHaveConnect=" + mHaveConnection
2522 + " mBoundToMethod=" + mBoundToMethod);
2523 p.println(" mCurToken=" + mCurToken);
2524 p.println(" mCurIntent=" + mCurIntent);
2525 method = mCurMethod;
2526 p.println(" mCurMethod=" + mCurMethod);
2527 p.println(" mEnabledSession=" + mEnabledSession);
2528 p.println(" mShowRequested=" + mShowRequested
2529 + " mShowExplicitlyRequested=" + mShowExplicitlyRequested
2530 + " mShowForced=" + mShowForced
2531 + " mInputShown=" + mInputShown);
Dianne Hackborncc278702009-09-02 23:07:23 -07002532 p.println(" mSystemReady=" + mSystemReady + " mScreenOn=" + mScreenOn);
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 (client != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002537 pw.flush();
2538 try {
2539 client.client.asBinder().dump(fd, args);
2540 } catch (RemoteException e) {
2541 p.println("Input method client dead: " + e);
2542 }
Jeff Brownb88102f2010-09-08 11:49:43 -07002543 } else {
2544 p.println("No input method client.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002545 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002546
Jeff Brownb88102f2010-09-08 11:49:43 -07002547 p.println(" ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002548 if (method != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002549 pw.flush();
2550 try {
2551 method.asBinder().dump(fd, args);
2552 } catch (RemoteException e) {
2553 p.println("Input method service dead: " + e);
2554 }
Jeff Brownb88102f2010-09-08 11:49:43 -07002555 } else {
2556 p.println("No input method service.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002557 }
2558 }
2559}