blob: c574058bcfe783ab34eb2584359991386ab66814 [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
1280 mHandler.sendEmptyMessage(MSG_SHOW_IM_PICKER);
1281 }
1282 }
1283
satokab751aa2010-09-14 19:17:36 +09001284 public void showInputMethodSubtypePickerFromClient(IInputMethodClient client) {
1285 synchronized (mMethodMap) {
1286 if (mCurClient == null || client == null
1287 || mCurClient.client.asBinder() != client.asBinder()) {
satok47a44912010-10-06 16:03:58 +09001288 Slog.w(TAG, "Ignoring showInputMethodSubtypePickerFromClient of: " + client);
satokab751aa2010-09-14 19:17:36 +09001289 }
1290
1291 mHandler.sendEmptyMessage(MSG_SHOW_IM_SUBTYPE_PICKER);
1292 }
1293 }
1294
satok47a44912010-10-06 16:03:58 +09001295 public void showInputMethodAndSubtypeEnablerFromClient(
1296 IInputMethodClient client, String topId) {
1297 // TODO: Handle topId for setting the top position of the list activity
1298 synchronized (mMethodMap) {
1299 if (mCurClient == null || client == null
1300 || mCurClient.client.asBinder() != client.asBinder()) {
1301 Slog.w(TAG, "Ignoring showInputMethodAndSubtypeEnablerFromClient of: " + client);
1302 }
1303
1304 mHandler.sendEmptyMessage(MSG_SHOW_IM_SUBTYPE_ENABLER);
1305 }
1306 }
1307
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001308 public void setInputMethod(IBinder token, String id) {
satok28203512010-11-24 11:06:49 +09001309 setInputMethodWithSubtypeId(token, id, NOT_A_SUBTYPE_ID);
1310 }
1311
1312 public void setInputMethodAndSubtype(IBinder token, String id, InputMethodSubtype subtype) {
1313 synchronized (mMethodMap) {
1314 if (subtype != null) {
1315 setInputMethodWithSubtypeId(token, id, getSubtypeIdFromHashCode(
1316 mMethodMap.get(id), subtype.hashCode()));
1317 } else {
1318 setInputMethod(token, id);
1319 }
1320 }
satokab751aa2010-09-14 19:17:36 +09001321 }
1322
satok735cf382010-11-11 20:40:09 +09001323 public boolean switchToLastInputMethod(IBinder token) {
1324 synchronized (mMethodMap) {
1325 Pair<String, String> lastIme = mSettings.getLastInputMethodAndSubtypeLocked();
1326 if (lastIme != null) {
1327 InputMethodInfo imi = mMethodMap.get(lastIme.first);
1328 if (imi != null) {
satok28203512010-11-24 11:06:49 +09001329 setInputMethodWithSubtypeId(token, lastIme.first, getSubtypeIdFromHashCode(
satok735cf382010-11-11 20:40:09 +09001330 imi, Integer.valueOf(lastIme.second)));
1331 return true;
1332 }
1333 }
1334 return false;
1335 }
1336 }
1337
satok28203512010-11-24 11:06:49 +09001338 private void setInputMethodWithSubtypeId(IBinder token, String id, int subtypeId) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001339 synchronized (mMethodMap) {
1340 if (token == null) {
1341 if (mContext.checkCallingOrSelfPermission(
1342 android.Manifest.permission.WRITE_SECURE_SETTINGS)
1343 != PackageManager.PERMISSION_GRANTED) {
1344 throw new SecurityException(
1345 "Using null token requires permission "
1346 + android.Manifest.permission.WRITE_SECURE_SETTINGS);
1347 }
1348 } else if (mCurToken != token) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001349 Slog.w(TAG, "Ignoring setInputMethod of uid " + Binder.getCallingUid()
1350 + " token: " + token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001351 return;
1352 }
1353
1354 long ident = Binder.clearCallingIdentity();
1355 try {
satokab751aa2010-09-14 19:17:36 +09001356 setInputMethodLocked(id, subtypeId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001357 } finally {
1358 Binder.restoreCallingIdentity(ident);
1359 }
1360 }
1361 }
1362
1363 public void hideMySoftInput(IBinder token, int flags) {
1364 synchronized (mMethodMap) {
1365 if (token == null || mCurToken != token) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001366 if (DEBUG) Slog.w(TAG, "Ignoring hideInputMethod of uid "
1367 + Binder.getCallingUid() + " token: " + token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001368 return;
1369 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001370 long ident = Binder.clearCallingIdentity();
1371 try {
The Android Open Source Project4df24232009-03-05 14:34:35 -08001372 hideCurrentInputLocked(flags, null);
1373 } finally {
1374 Binder.restoreCallingIdentity(ident);
1375 }
1376 }
1377 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001378
The Android Open Source Project4df24232009-03-05 14:34:35 -08001379 public void showMySoftInput(IBinder token, int flags) {
1380 synchronized (mMethodMap) {
1381 if (token == null || mCurToken != token) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001382 Slog.w(TAG, "Ignoring showMySoftInput of uid "
1383 + Binder.getCallingUid() + " token: " + token);
The Android Open Source Project4df24232009-03-05 14:34:35 -08001384 return;
1385 }
1386 long ident = Binder.clearCallingIdentity();
1387 try {
1388 showCurrentInputLocked(flags, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001389 } finally {
1390 Binder.restoreCallingIdentity(ident);
1391 }
1392 }
1393 }
1394
1395 void setEnabledSessionInMainThread(SessionState session) {
1396 if (mEnabledSession != session) {
1397 if (mEnabledSession != null) {
1398 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001399 if (DEBUG) Slog.v(TAG, "Disabling: " + mEnabledSession);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001400 mEnabledSession.method.setSessionEnabled(
1401 mEnabledSession.session, false);
1402 } catch (RemoteException e) {
1403 }
1404 }
1405 mEnabledSession = session;
1406 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001407 if (DEBUG) Slog.v(TAG, "Enabling: " + mEnabledSession);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001408 session.method.setSessionEnabled(
1409 session.session, true);
1410 } catch (RemoteException e) {
1411 }
1412 }
1413 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001414
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001415 public boolean handleMessage(Message msg) {
1416 HandlerCaller.SomeArgs args;
1417 switch (msg.what) {
1418 case MSG_SHOW_IM_PICKER:
1419 showInputMethodMenu();
1420 return true;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001421
satokab751aa2010-09-14 19:17:36 +09001422 case MSG_SHOW_IM_SUBTYPE_PICKER:
1423 showInputMethodSubtypeMenu();
1424 return true;
1425
satok47a44912010-10-06 16:03:58 +09001426 case MSG_SHOW_IM_SUBTYPE_ENABLER:
1427 showInputMethodAndSubtypeEnabler();
1428 return true;
1429
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001430 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001431
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001432 case MSG_UNBIND_INPUT:
1433 try {
1434 ((IInputMethod)msg.obj).unbindInput();
1435 } catch (RemoteException e) {
1436 // There is nothing interesting about the method dying.
1437 }
1438 return true;
1439 case MSG_BIND_INPUT:
1440 args = (HandlerCaller.SomeArgs)msg.obj;
1441 try {
1442 ((IInputMethod)args.arg1).bindInput((InputBinding)args.arg2);
1443 } catch (RemoteException e) {
1444 }
1445 return true;
1446 case MSG_SHOW_SOFT_INPUT:
The Android Open Source Project4df24232009-03-05 14:34:35 -08001447 args = (HandlerCaller.SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001448 try {
The Android Open Source Project4df24232009-03-05 14:34:35 -08001449 ((IInputMethod)args.arg1).showSoftInput(msg.arg1,
1450 (ResultReceiver)args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001451 } catch (RemoteException e) {
1452 }
1453 return true;
1454 case MSG_HIDE_SOFT_INPUT:
The Android Open Source Project4df24232009-03-05 14:34:35 -08001455 args = (HandlerCaller.SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001456 try {
The Android Open Source Project4df24232009-03-05 14:34:35 -08001457 ((IInputMethod)args.arg1).hideSoftInput(0,
1458 (ResultReceiver)args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001459 } catch (RemoteException e) {
1460 }
1461 return true;
1462 case MSG_ATTACH_TOKEN:
1463 args = (HandlerCaller.SomeArgs)msg.obj;
1464 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001465 if (DEBUG) Slog.v(TAG, "Sending attach of token: " + args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001466 ((IInputMethod)args.arg1).attachToken((IBinder)args.arg2);
1467 } catch (RemoteException e) {
1468 }
1469 return true;
1470 case MSG_CREATE_SESSION:
1471 args = (HandlerCaller.SomeArgs)msg.obj;
1472 try {
1473 ((IInputMethod)args.arg1).createSession(
1474 (IInputMethodCallback)args.arg2);
1475 } catch (RemoteException e) {
1476 }
1477 return true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001478 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001479
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001480 case MSG_START_INPUT:
1481 args = (HandlerCaller.SomeArgs)msg.obj;
1482 try {
1483 SessionState session = (SessionState)args.arg1;
1484 setEnabledSessionInMainThread(session);
1485 session.method.startInput((IInputContext)args.arg2,
1486 (EditorInfo)args.arg3);
1487 } catch (RemoteException e) {
1488 }
1489 return true;
1490 case MSG_RESTART_INPUT:
1491 args = (HandlerCaller.SomeArgs)msg.obj;
1492 try {
1493 SessionState session = (SessionState)args.arg1;
1494 setEnabledSessionInMainThread(session);
1495 session.method.restartInput((IInputContext)args.arg2,
1496 (EditorInfo)args.arg3);
1497 } catch (RemoteException e) {
1498 }
1499 return true;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001500
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001501 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001502
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001503 case MSG_UNBIND_METHOD:
1504 try {
1505 ((IInputMethodClient)msg.obj).onUnbindMethod(msg.arg1);
1506 } catch (RemoteException e) {
1507 // There is nothing interesting about the last client dying.
1508 }
1509 return true;
1510 case MSG_BIND_METHOD:
1511 args = (HandlerCaller.SomeArgs)msg.obj;
1512 try {
1513 ((IInputMethodClient)args.arg1).onBindMethod(
1514 (InputBindResult)args.arg2);
1515 } catch (RemoteException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001516 Slog.w(TAG, "Client died receiving input method " + args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001517 }
1518 return true;
1519 }
1520 return false;
1521 }
1522
Brandon Ballinger6da35a02009-10-21 00:38:13 -07001523 private boolean isSystemIme(InputMethodInfo inputMethod) {
1524 return (inputMethod.getServiceInfo().applicationInfo.flags
1525 & ApplicationInfo.FLAG_SYSTEM) != 0;
1526 }
1527
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001528 private boolean chooseNewDefaultIMELocked() {
satokd87c2592010-09-29 11:52:06 +09001529 List<InputMethodInfo> enabled = mSettings.getEnabledInputMethodListLocked();
Brandon Ballinger6da35a02009-10-21 00:38:13 -07001530 if (enabled != null && enabled.size() > 0) {
Dianne Hackborn83e48f52010-03-23 23:03:25 -07001531 // We'd prefer to fall back on a system IME, since that is safer.
1532 int i=enabled.size();
1533 while (i > 0) {
1534 i--;
1535 if ((enabled.get(i).getServiceInfo().applicationInfo.flags
1536 & ApplicationInfo.FLAG_SYSTEM) != 0) {
1537 break;
1538 }
1539 }
satokab751aa2010-09-14 19:17:36 +09001540 InputMethodInfo imi = enabled.get(i);
satok03eb319a2010-11-11 18:17:42 +09001541 if (DEBUG) {
1542 Slog.d(TAG, "New default IME was selected: " + imi.getId());
1543 }
satok723a27e2010-11-11 14:58:11 +09001544 resetSelectedInputMethodAndSubtypeLocked(imi.getId());
Brandon Ballinger6da35a02009-10-21 00:38:13 -07001545 return true;
1546 }
1547
1548 return false;
1549 }
1550
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001551 void buildInputMethodListLocked(ArrayList<InputMethodInfo> list,
1552 HashMap<String, InputMethodInfo> map) {
1553 list.clear();
1554 map.clear();
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001555
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001556 PackageManager pm = mContext.getPackageManager();
Amith Yamasanie861ec12010-03-24 21:39:27 -07001557 final Configuration config = mContext.getResources().getConfiguration();
1558 final boolean haveHardKeyboard = config.keyboard == Configuration.KEYBOARD_QWERTY;
1559 String disabledSysImes = Settings.Secure.getString(mContext.getContentResolver(),
1560 Secure.DISABLED_SYSTEM_INPUT_METHODS);
1561 if (disabledSysImes == null) disabledSysImes = "";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001562
1563 List<ResolveInfo> services = pm.queryIntentServices(
1564 new Intent(InputMethod.SERVICE_INTERFACE),
1565 PackageManager.GET_META_DATA);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001566
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001567 for (int i = 0; i < services.size(); ++i) {
1568 ResolveInfo ri = services.get(i);
1569 ServiceInfo si = ri.serviceInfo;
1570 ComponentName compName = new ComponentName(si.packageName, si.name);
1571 if (!android.Manifest.permission.BIND_INPUT_METHOD.equals(
1572 si.permission)) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001573 Slog.w(TAG, "Skipping input method " + compName
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001574 + ": it does not require the permission "
1575 + android.Manifest.permission.BIND_INPUT_METHOD);
1576 continue;
1577 }
1578
Joe Onorato8a9b2202010-02-26 18:56:32 -08001579 if (DEBUG) Slog.d(TAG, "Checking " + compName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001580
1581 try {
1582 InputMethodInfo p = new InputMethodInfo(mContext, ri);
1583 list.add(p);
Amith Yamasanie861ec12010-03-24 21:39:27 -07001584 final String id = p.getId();
1585 map.put(id, p);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001586
Amith Yamasanie861ec12010-03-24 21:39:27 -07001587 // System IMEs are enabled by default, unless there's a hard keyboard
1588 // and the system IME was explicitly disabled
1589 if (isSystemIme(p) && (!haveHardKeyboard || disabledSysImes.indexOf(id) < 0)) {
1590 setInputMethodEnabledLocked(id, true);
Brandon Ballinger6da35a02009-10-21 00:38:13 -07001591 }
1592
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001593 if (DEBUG) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001594 Slog.d(TAG, "Found a third-party input method " + p);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001595 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001596
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001597 } catch (XmlPullParserException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001598 Slog.w(TAG, "Unable to load input method " + compName, e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001599 } catch (IOException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001600 Slog.w(TAG, "Unable to load input method " + compName, e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001601 }
1602 }
Brandon Ballinger6da35a02009-10-21 00:38:13 -07001603
1604 String defaultIme = Settings.Secure.getString(mContext
1605 .getContentResolver(), Settings.Secure.DEFAULT_INPUT_METHOD);
satok913a8922010-08-26 21:53:41 +09001606 if (!TextUtils.isEmpty(defaultIme) && !map.containsKey(defaultIme)) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001607 if (chooseNewDefaultIMELocked()) {
Brandon Ballinger6da35a02009-10-21 00:38:13 -07001608 updateFromSettingsLocked();
1609 }
1610 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001611 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001612
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001613 // ----------------------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001614
satokab751aa2010-09-14 19:17:36 +09001615 private void showInputMethodMenu() {
1616 showInputMethodMenuInternal(false);
1617 }
1618
1619 private void showInputMethodSubtypeMenu() {
1620 showInputMethodMenuInternal(true);
1621 }
1622
satok47a44912010-10-06 16:03:58 +09001623 private void showInputMethodAndSubtypeEnabler() {
satok86417ea2010-10-27 14:11:03 +09001624 Intent intent = new Intent(Settings.ACTION_INPUT_METHOD_AND_SUBTYPE_ENABLER);
satok47a44912010-10-06 16:03:58 +09001625 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
satok86417ea2010-10-27 14:11:03 +09001626 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED
1627 | Intent.FLAG_ACTIVITY_CLEAR_TOP);
satok47a44912010-10-06 16:03:58 +09001628 mContext.startActivity(intent);
1629 }
1630
satokab751aa2010-09-14 19:17:36 +09001631 private void showInputMethodMenuInternal(boolean showSubtypes) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001632 if (DEBUG) Slog.v(TAG, "Show switching menu");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001633
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001634 final Context context = mContext;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001635
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001636 final PackageManager pm = context.getPackageManager();
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001637
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001638 String lastInputMethodId = Settings.Secure.getString(context
1639 .getContentResolver(), Settings.Secure.DEFAULT_INPUT_METHOD);
satokab751aa2010-09-14 19:17:36 +09001640 int lastInputMethodSubtypeId = getSelectedInputMethodSubtypeId(lastInputMethodId);
Joe Onorato8a9b2202010-02-26 18:56:32 -08001641 if (DEBUG) Slog.v(TAG, "Current IME: " + lastInputMethodId);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001642
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001643 synchronized (mMethodMap) {
satok7f35c8c2010-10-07 21:13:11 +09001644 final List<Pair<InputMethodInfo, ArrayList<String>>> immis =
satok67ddf9c2010-11-17 09:45:54 +09001645 mSettings.getEnabledInputMethodAndSubtypeHashCodeListLocked();
satok7f35c8c2010-10-07 21:13:11 +09001646 ArrayList<Integer> subtypeIds = new ArrayList<Integer>();
1647
1648 if (immis == null || immis.size() == 0) {
1649 return;
1650 }
1651
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001652 hideInputMethodMenuLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001653
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001654 int N = immis.size();
satok913a8922010-08-26 21:53:41 +09001655
satokab751aa2010-09-14 19:17:36 +09001656 final Map<CharSequence, Pair<InputMethodInfo, Integer>> imMap =
1657 new TreeMap<CharSequence, Pair<InputMethodInfo, Integer>>(Collator.getInstance());
satok913a8922010-08-26 21:53:41 +09001658
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001659 for (int i = 0; i < N; ++i) {
satok7f35c8c2010-10-07 21:13:11 +09001660 InputMethodInfo property = immis.get(i).first;
1661 final ArrayList<String> enabledSubtypeIds = immis.get(i).second;
1662 HashSet<String> enabledSubtypeSet = new HashSet<String>();
1663 for (String s : enabledSubtypeIds) {
1664 enabledSubtypeSet.add(s);
1665 }
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001666 if (property == null) {
1667 continue;
1668 }
satokab751aa2010-09-14 19:17:36 +09001669 ArrayList<InputMethodSubtype> subtypes = property.getSubtypes();
1670 CharSequence label = property.loadLabel(pm);
satok7f35c8c2010-10-07 21:13:11 +09001671 if (showSubtypes && enabledSubtypeSet.size() > 0) {
satokab751aa2010-09-14 19:17:36 +09001672 for (int j = 0; j < subtypes.size(); ++j) {
1673 InputMethodSubtype subtype = subtypes.get(j);
satok7f35c8c2010-10-07 21:13:11 +09001674 if (enabledSubtypeSet.contains(String.valueOf(subtype.hashCode()))) {
1675 CharSequence title;
1676 int nameResId = subtype.getNameResId();
satok9ef02832010-11-04 21:17:48 +09001677 String mode = subtype.getMode();
satok7f35c8c2010-10-07 21:13:11 +09001678 if (nameResId != 0) {
1679 title = pm.getText(property.getPackageName(), nameResId,
1680 property.getServiceInfo().applicationInfo);
1681 } else {
1682 CharSequence language = subtype.getLocale();
satok7f35c8c2010-10-07 21:13:11 +09001683 // TODO: Use more friendly Title and UI
1684 title = label + "," + (mode == null ? "" : mode) + ","
1685 + (language == null ? "" : language);
1686 }
1687 imMap.put(title, new Pair<InputMethodInfo, Integer>(property, j));
satokab751aa2010-09-14 19:17:36 +09001688 }
satokab751aa2010-09-14 19:17:36 +09001689 }
1690 } else {
1691 imMap.put(label,
1692 new Pair<InputMethodInfo, Integer>(property, NOT_A_SUBTYPE_ID));
1693 subtypeIds.add(0);
1694 }
Dianne Hackborn97106ab2010-03-03 00:08:31 -08001695 }
satok913a8922010-08-26 21:53:41 +09001696
1697 N = imMap.size();
1698 mItems = imMap.keySet().toArray(new CharSequence[N]);
satokab751aa2010-09-14 19:17:36 +09001699 mIms = new InputMethodInfo[N];
1700 mSubtypeIds = new int[N];
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001701 int checkedItem = 0;
1702 for (int i = 0; i < N; ++i) {
satokab751aa2010-09-14 19:17:36 +09001703 Pair<InputMethodInfo, Integer> value = imMap.get(mItems[i]);
1704 mIms[i] = value.first;
1705 mSubtypeIds[i] = value.second;
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001706 if (mIms[i].getId().equals(lastInputMethodId)) {
satokab751aa2010-09-14 19:17:36 +09001707 int subtypeId = mSubtypeIds[i];
1708 if ((subtypeId == NOT_A_SUBTYPE_ID)
1709 || (lastInputMethodSubtypeId == NOT_A_SUBTYPE_ID && subtypeId == 0)
1710 || (subtypeId == lastInputMethodSubtypeId)) {
1711 checkedItem = i;
1712 }
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001713 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001714 }
satokab751aa2010-09-14 19:17:36 +09001715
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001716 AlertDialog.OnClickListener adocl = new AlertDialog.OnClickListener() {
1717 public void onClick(DialogInterface dialog, int which) {
1718 hideInputMethodMenu();
1719 }
1720 };
satokd87c2592010-09-29 11:52:06 +09001721
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001722 TypedArray a = context.obtainStyledAttributes(null,
1723 com.android.internal.R.styleable.DialogPreference,
1724 com.android.internal.R.attr.alertDialogStyle, 0);
1725 mDialogBuilder = new AlertDialog.Builder(context)
1726 .setTitle(com.android.internal.R.string.select_input_method)
1727 .setOnCancelListener(new OnCancelListener() {
1728 public void onCancel(DialogInterface dialog) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001729 hideInputMethodMenu();
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001730 }
1731 })
1732 .setIcon(a.getDrawable(
1733 com.android.internal.R.styleable.DialogPreference_dialogTitle));
1734 a.recycle();
satokd87c2592010-09-29 11:52:06 +09001735
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001736 mDialogBuilder.setSingleChoiceItems(mItems, checkedItem,
1737 new AlertDialog.OnClickListener() {
1738 public void onClick(DialogInterface dialog, int which) {
1739 synchronized (mMethodMap) {
satokab751aa2010-09-14 19:17:36 +09001740 if (mIms == null || mIms.length <= which
1741 || mSubtypeIds == null || mSubtypeIds.length <= which) {
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001742 return;
1743 }
1744 InputMethodInfo im = mIms[which];
satokab751aa2010-09-14 19:17:36 +09001745 int subtypeId = mSubtypeIds[which];
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001746 hideInputMethodMenu();
1747 if (im != null) {
satokab751aa2010-09-14 19:17:36 +09001748 if ((subtypeId < 0)
1749 || (subtypeId >= im.getSubtypes().size())) {
1750 subtypeId = NOT_A_SUBTYPE_ID;
1751 }
1752 setInputMethodLocked(im.getId(), subtypeId);
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001753 }
Dianne Hackborn20cb56e2010-03-04 00:58:29 -08001754 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001755 }
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07001756 });
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001757
satok7f35c8c2010-10-07 21:13:11 +09001758 if (showSubtypes) {
1759 mDialogBuilder.setPositiveButton(com.android.internal.R.string.more_item_label,
1760 new DialogInterface.OnClickListener() {
1761 public void onClick(DialogInterface dialog, int whichButton) {
1762 showInputMethodAndSubtypeEnabler();
1763 }
1764 });
1765 }
satok0ff647b2010-10-08 13:49:28 +09001766 mDialogBuilder.setNegativeButton(com.android.internal.R.string.cancel,
1767 new DialogInterface.OnClickListener() {
1768 public void onClick(DialogInterface dialog, int whichButton) {
1769 hideInputMethodMenu();
1770 }
1771 });
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001772 mSwitchingDialog = mDialogBuilder.create();
1773 mSwitchingDialog.getWindow().setType(
1774 WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG);
1775 mSwitchingDialog.show();
1776 }
1777 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001778
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001779 void hideInputMethodMenu() {
The Android Open Source Project10592532009-03-18 17:39:46 -07001780 synchronized (mMethodMap) {
1781 hideInputMethodMenuLocked();
1782 }
1783 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001784
The Android Open Source Project10592532009-03-18 17:39:46 -07001785 void hideInputMethodMenuLocked() {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001786 if (DEBUG) Slog.v(TAG, "Hide switching menu");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001787
The Android Open Source Project10592532009-03-18 17:39:46 -07001788 if (mSwitchingDialog != null) {
1789 mSwitchingDialog.dismiss();
1790 mSwitchingDialog = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001791 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001792
The Android Open Source Project10592532009-03-18 17:39:46 -07001793 mDialogBuilder = null;
1794 mItems = null;
1795 mIms = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001796 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001797
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001798 // ----------------------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001799
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001800 public boolean setInputMethodEnabled(String id, boolean enabled) {
1801 synchronized (mMethodMap) {
1802 if (mContext.checkCallingOrSelfPermission(
1803 android.Manifest.permission.WRITE_SECURE_SETTINGS)
1804 != PackageManager.PERMISSION_GRANTED) {
1805 throw new SecurityException(
1806 "Requires permission "
1807 + android.Manifest.permission.WRITE_SECURE_SETTINGS);
1808 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001809
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001810 long ident = Binder.clearCallingIdentity();
1811 try {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001812 return setInputMethodEnabledLocked(id, enabled);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001813 } finally {
1814 Binder.restoreCallingIdentity(ident);
1815 }
1816 }
1817 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001818
1819 boolean setInputMethodEnabledLocked(String id, boolean enabled) {
1820 // Make sure this is a valid input method.
1821 InputMethodInfo imm = mMethodMap.get(id);
1822 if (imm == null) {
satokd87c2592010-09-29 11:52:06 +09001823 throw new IllegalArgumentException("Unknown id: " + mCurMethodId);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001824 }
1825
satokd87c2592010-09-29 11:52:06 +09001826 List<Pair<String, ArrayList<String>>> enabledInputMethodsList = mSettings
1827 .getEnabledInputMethodsAndSubtypeListLocked();
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001828
satokd87c2592010-09-29 11:52:06 +09001829 if (enabled) {
1830 for (Pair<String, ArrayList<String>> pair: enabledInputMethodsList) {
1831 if (pair.first.equals(id)) {
1832 // We are enabling this input method, but it is already enabled.
1833 // Nothing to do. The previous state was enabled.
1834 return true;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001835 }
1836 }
satokd87c2592010-09-29 11:52:06 +09001837 mSettings.appendAndPutEnabledInputMethodLocked(id, false);
1838 // Previous state was disabled.
1839 return false;
1840 } else {
1841 StringBuilder builder = new StringBuilder();
1842 if (mSettings.buildAndPutEnabledInputMethodsStrRemovingIdLocked(
1843 builder, enabledInputMethodsList, id)) {
1844 // Disabled input method is currently selected, switch to another one.
1845 String selId = Settings.Secure.getString(mContext.getContentResolver(),
1846 Settings.Secure.DEFAULT_INPUT_METHOD);
satok03eb319a2010-11-11 18:17:42 +09001847 if (id.equals(selId) && !chooseNewDefaultIMELocked()) {
1848 Slog.i(TAG, "Can't find new IME, unsetting the current input method.");
1849 resetSelectedInputMethodAndSubtypeLocked("");
satokd87c2592010-09-29 11:52:06 +09001850 }
1851 // Previous state was enabled.
1852 return true;
1853 } else {
1854 // We are disabling the input method but it is already disabled.
1855 // Nothing to do. The previous state was disabled.
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001856 return false;
1857 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001858 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001859 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08001860
satok723a27e2010-11-11 14:58:11 +09001861 private void saveCurrentInputMethodAndSubtypeToHistory() {
1862 String subtypeId = NOT_A_SUBTYPE_ID_STR;
1863 if (mCurrentSubtype != null) {
1864 subtypeId = String.valueOf(mCurrentSubtype.hashCode());
1865 }
1866 mSettings.addSubtypeToHistory(mCurMethodId, subtypeId);
satokab751aa2010-09-14 19:17:36 +09001867 }
1868
satok723a27e2010-11-11 14:58:11 +09001869 private void setSelectedInputMethodAndSubtypeLocked(InputMethodInfo imi, int subtypeId,
1870 boolean setSubtypeOnly) {
1871 // Update the history of InputMethod and Subtype
1872 saveCurrentInputMethodAndSubtypeToHistory();
1873
1874 // Set Subtype here
1875 if (imi == null || subtypeId < 0) {
1876 mSettings.putSelectedSubtype(NOT_A_SUBTYPE_ID);
Tadashi G. Takaoka0ba75bb2010-11-09 12:19:32 -08001877 mCurrentSubtype = null;
satok723a27e2010-11-11 14:58:11 +09001878 } else {
1879 final ArrayList<InputMethodSubtype> subtypes = imi.getSubtypes();
1880 if (subtypeId < subtypes.size()) {
1881 mSettings.putSelectedSubtype(subtypes.get(subtypeId).hashCode());
1882 mCurrentSubtype = subtypes.get(subtypeId);
1883 } else {
1884 mSettings.putSelectedSubtype(NOT_A_SUBTYPE_ID);
1885 mCurrentSubtype = null;
1886 }
satokab751aa2010-09-14 19:17:36 +09001887 }
satok723a27e2010-11-11 14:58:11 +09001888
1889 if (!setSubtypeOnly) {
1890 // Set InputMethod here
1891 mSettings.putSelectedInputMethod(imi != null ? imi.getId() : "");
1892 }
1893 }
1894
1895 private void resetSelectedInputMethodAndSubtypeLocked(String newDefaultIme) {
1896 InputMethodInfo imi = mMethodMap.get(newDefaultIme);
1897 int lastSubtypeId = NOT_A_SUBTYPE_ID;
1898 // newDefaultIme is empty when there is no candidate for the selected IME.
1899 if (imi != null && !TextUtils.isEmpty(newDefaultIme)) {
1900 String subtypeHashCode = mSettings.getLastSubtypeForInputMethodLocked(newDefaultIme);
1901 if (subtypeHashCode != null) {
1902 try {
1903 lastSubtypeId = getSubtypeIdFromHashCode(
1904 imi, Integer.valueOf(subtypeHashCode));
1905 } catch (NumberFormatException e) {
1906 Slog.w(TAG, "HashCode for subtype looks broken: " + subtypeHashCode, e);
1907 }
1908 }
1909 }
1910 setSelectedInputMethodAndSubtypeLocked(imi, lastSubtypeId, false);
satokab751aa2010-09-14 19:17:36 +09001911 }
1912
1913 private int getSelectedInputMethodSubtypeId(String id) {
1914 InputMethodInfo imi = mMethodMap.get(id);
1915 if (imi == null) {
1916 return NOT_A_SUBTYPE_ID;
1917 }
satokab751aa2010-09-14 19:17:36 +09001918 int subtypeId;
1919 try {
1920 subtypeId = Settings.Secure.getInt(mContext.getContentResolver(),
1921 Settings.Secure.SELECTED_INPUT_METHOD_SUBTYPE);
1922 } catch (SettingNotFoundException e) {
1923 return NOT_A_SUBTYPE_ID;
1924 }
satok723a27e2010-11-11 14:58:11 +09001925 return getSubtypeIdFromHashCode(imi, subtypeId);
1926 }
1927
1928 private int getSubtypeIdFromHashCode(InputMethodInfo imi, int subtypeHashCode) {
satok28203512010-11-24 11:06:49 +09001929 if (imi != null) {
1930 ArrayList<InputMethodSubtype> subtypes = imi.getSubtypes();
1931 for (int i = 0; i < subtypes.size(); ++i) {
1932 InputMethodSubtype ims = subtypes.get(i);
1933 if (subtypeHashCode == ims.hashCode()) {
1934 return i;
1935 }
satokab751aa2010-09-14 19:17:36 +09001936 }
1937 }
1938 return NOT_A_SUBTYPE_ID;
1939 }
1940
satok4e4569d2010-11-19 18:45:53 +09001941 /**
1942 * If there are no selected subtypes, tries finding the most applicable one according to the
1943 * given locale.
1944 * @param subtypes this function will search the most applicable subtype in subtypes
1945 * @param mode subtypes will be filtered by mode
1946 * @param locale subtypes will be filtered by locale
1947 * @param defaultSubtypeId if this function can't find the most applicable subtype, it will
1948 * return defaultSubtypeId
1949 * @return the most applicable subtypeId
1950 */
satokcd7cd292010-11-20 15:46:23 +09001951 private InputMethodSubtype findLastResortApplicableSubtypeLocked(
satok4e4569d2010-11-19 18:45:53 +09001952 List<InputMethodSubtype> subtypes, String mode, String locale, int defaultSubtypeId) {
satok8fbb1e82010-11-02 23:15:58 +09001953 if (subtypes == null || subtypes.size() == 0) {
satokcd7cd292010-11-20 15:46:23 +09001954 return null;
satok8fbb1e82010-11-02 23:15:58 +09001955 }
satok4e4569d2010-11-19 18:45:53 +09001956 if (TextUtils.isEmpty(locale)) {
1957 locale = mContext.getResources().getConfiguration().locale.toString();
1958 }
satok8fbb1e82010-11-02 23:15:58 +09001959 final String language = locale.substring(0, 2);
1960 boolean partialMatchFound = false;
satokcd7cd292010-11-20 15:46:23 +09001961 InputMethodSubtype applicableSubtype = null;
satok8fbb1e82010-11-02 23:15:58 +09001962 for (int i = 0; i < subtypes.size(); ++i) {
satokcd7cd292010-11-20 15:46:23 +09001963 InputMethodSubtype subtype = subtypes.get(i);
1964 final String subtypeLocale = subtype.getLocale();
satok4e4569d2010-11-19 18:45:53 +09001965 // An applicable subtype should match "mode".
1966 if (subtypes.get(i).getMode().equalsIgnoreCase(mode)) {
satok9ef02832010-11-04 21:17:48 +09001967 if (locale.equals(subtypeLocale)) {
1968 // Exact match (e.g. system locale is "en_US" and subtype locale is "en_US")
satokcd7cd292010-11-20 15:46:23 +09001969 applicableSubtype = subtype;
satok9ef02832010-11-04 21:17:48 +09001970 break;
1971 } else if (!partialMatchFound && subtypeLocale.startsWith(language)) {
1972 // Partial match (e.g. system locale is "en_US" and subtype locale is "en")
satokcd7cd292010-11-20 15:46:23 +09001973 applicableSubtype = subtype;
satok9ef02832010-11-04 21:17:48 +09001974 partialMatchFound = true;
1975 }
satok8fbb1e82010-11-02 23:15:58 +09001976 }
1977 }
1978
1979 // The first subtype applicable to the system locale will be defined as the most applicable
1980 // subtype.
1981 if (DEBUG) {
satokcd7cd292010-11-20 15:46:23 +09001982 Slog.d(TAG, "Applicable InputMethodSubtype was found: " + applicableSubtype.getMode()
1983 + "," + applicableSubtype.getLocale());
satok8fbb1e82010-11-02 23:15:58 +09001984 }
satokcd7cd292010-11-20 15:46:23 +09001985 return applicableSubtype;
satok8fbb1e82010-11-02 23:15:58 +09001986 }
1987
satok4e4569d2010-11-19 18:45:53 +09001988 // If there are no selected shortcuts, tries finding the most applicable ones.
1989 private Pair<InputMethodInfo, InputMethodSubtype>
1990 findLastResortApplicableShortcutInputMethodAndSubtypeLocked(String mode) {
1991 List<InputMethodInfo> imis = mSettings.getEnabledInputMethodListLocked();
1992 InputMethodInfo mostApplicableIMI = null;
satokcd7cd292010-11-20 15:46:23 +09001993 InputMethodSubtype mostApplicableSubtype = null;
satok4e4569d2010-11-19 18:45:53 +09001994 boolean foundInSystemIME = false;
1995
1996 // Search applicable subtype for each InputMethodInfo
1997 for (InputMethodInfo imi: imis) {
satokcd7cd292010-11-20 15:46:23 +09001998 InputMethodSubtype subtype = null;
satok4e4569d2010-11-19 18:45:53 +09001999 if (mCurrentSubtype != null) {
2000 // 1. Search with the current subtype's locale and the enabled subtypes
satokcd7cd292010-11-20 15:46:23 +09002001 subtype = findLastResortApplicableSubtypeLocked(
satok4e4569d2010-11-19 18:45:53 +09002002 mSettings.getEnabledInputMethodSubtypeListLocked(
2003 imi), mode, mCurrentSubtype.getLocale(), NOT_A_SUBTYPE_ID);
satokcd7cd292010-11-20 15:46:23 +09002004 if (subtype == null) {
satok4e4569d2010-11-19 18:45:53 +09002005 // 2. Search with the current subtype's locale and all subtypes
satokcd7cd292010-11-20 15:46:23 +09002006 subtype = findLastResortApplicableSubtypeLocked(imi.getSubtypes(),
satok4e4569d2010-11-19 18:45:53 +09002007 mode, mCurrentSubtype.getLocale(), NOT_A_SUBTYPE_ID);
2008 }
2009 }
2010 // 3. Search with the system locale and the enabled subtypes
satokcd7cd292010-11-20 15:46:23 +09002011 if (subtype == null) {
2012 subtype = findLastResortApplicableSubtypeLocked(
satok4e4569d2010-11-19 18:45:53 +09002013 mSettings.getEnabledInputMethodSubtypeListLocked(
2014 imi), mode, null, NOT_A_SUBTYPE_ID);
2015 }
satokcd7cd292010-11-20 15:46:23 +09002016 if (subtype == null) {
satok4e4569d2010-11-19 18:45:53 +09002017 // 4. Search with the system locale and all subtypes
satokcd7cd292010-11-20 15:46:23 +09002018 subtype = findLastResortApplicableSubtypeLocked(imi.getSubtypes(),
satok4e4569d2010-11-19 18:45:53 +09002019 mode, null, NOT_A_SUBTYPE_ID);
2020 }
satokcd7cd292010-11-20 15:46:23 +09002021 if (subtype != null) {
satok4e4569d2010-11-19 18:45:53 +09002022 if (imi.getId().equals(mCurMethodId)) {
2023 // The current input method is the most applicable IME.
2024 mostApplicableIMI = imi;
satokcd7cd292010-11-20 15:46:23 +09002025 mostApplicableSubtype = subtype;
satok4e4569d2010-11-19 18:45:53 +09002026 break;
2027 } else if ((imi.getServiceInfo().applicationInfo.flags
2028 & ApplicationInfo.FLAG_SYSTEM) != 0) {
2029 // The system input method is 2nd applicable IME.
2030 mostApplicableIMI = imi;
satokcd7cd292010-11-20 15:46:23 +09002031 mostApplicableSubtype = subtype;
satok4e4569d2010-11-19 18:45:53 +09002032 foundInSystemIME = true;
2033 } else if (!foundInSystemIME) {
2034 mostApplicableIMI = imi;
satokcd7cd292010-11-20 15:46:23 +09002035 mostApplicableSubtype = subtype;
satok4e4569d2010-11-19 18:45:53 +09002036 }
2037 }
2038 }
2039 if (DEBUG) {
satokcd7cd292010-11-20 15:46:23 +09002040 if (mostApplicableIMI != null) {
2041 Slog.w(TAG, "Most applicable shortcut input method was:"
2042 + mostApplicableIMI.getId());
2043 if (mostApplicableSubtype != null) {
2044 Slog.w(TAG, "Most applicable shortcut input method subtype was:"
2045 + "," + mostApplicableSubtype.getMode() + ","
2046 + mostApplicableSubtype.getLocale());
2047 }
2048 }
satok4e4569d2010-11-19 18:45:53 +09002049 }
satokcd7cd292010-11-20 15:46:23 +09002050 if (mostApplicableIMI != null) {
satok4e4569d2010-11-19 18:45:53 +09002051 return new Pair<InputMethodInfo, InputMethodSubtype> (mostApplicableIMI,
satokcd7cd292010-11-20 15:46:23 +09002052 mostApplicableSubtype);
satok4e4569d2010-11-19 18:45:53 +09002053 } else {
2054 return null;
2055 }
2056 }
2057
satokab751aa2010-09-14 19:17:36 +09002058 /**
2059 * @return Return the current subtype of this input method.
2060 */
2061 public InputMethodSubtype getCurrentInputMethodSubtype() {
satok4e4569d2010-11-19 18:45:53 +09002062 boolean subtypeIsSelected = false;
2063 try {
2064 subtypeIsSelected = Settings.Secure.getInt(mContext.getContentResolver(),
2065 Settings.Secure.SELECTED_INPUT_METHOD_SUBTYPE) != NOT_A_SUBTYPE_ID;
2066 } catch (SettingNotFoundException e) {
2067 }
satok3ef8b292010-11-23 06:06:29 +09002068 synchronized (mMethodMap) {
satok3ef8b292010-11-23 06:06:29 +09002069 if (!subtypeIsSelected || mCurrentSubtype == null) {
satok4e4569d2010-11-19 18:45:53 +09002070 String lastInputMethodId = Settings.Secure.getString(
2071 mContext.getContentResolver(), Settings.Secure.DEFAULT_INPUT_METHOD);
satok3ef8b292010-11-23 06:06:29 +09002072 int subtypeId = getSelectedInputMethodSubtypeId(lastInputMethodId);
2073 if (subtypeId == NOT_A_SUBTYPE_ID) {
satok4e4569d2010-11-19 18:45:53 +09002074 InputMethodInfo imi = mMethodMap.get(lastInputMethodId);
2075 if (imi != null) {
2076 // If there are no selected subtypes, the framework will try to find
2077 // the most applicable subtype from all subtypes whose mode is
2078 // SUBTYPE_MODE_KEYBOARD. This is an exceptional case, so we will hardcode
2079 // the mode.
satokcd7cd292010-11-20 15:46:23 +09002080 mCurrentSubtype = findLastResortApplicableSubtypeLocked(imi.getSubtypes(),
satok4e4569d2010-11-19 18:45:53 +09002081 SUBTYPE_MODE_KEYBOARD, null, DEFAULT_SUBTYPE_ID);
2082 }
satokcd7cd292010-11-20 15:46:23 +09002083 } else {
satok3ef8b292010-11-23 06:06:29 +09002084 mCurrentSubtype =
2085 mMethodMap.get(lastInputMethodId).getSubtypes().get(subtypeId);
2086 }
satok8fbb1e82010-11-02 23:15:58 +09002087 }
satok3ef8b292010-11-23 06:06:29 +09002088 return mCurrentSubtype;
satok8fbb1e82010-11-02 23:15:58 +09002089 }
satokab751aa2010-09-14 19:17:36 +09002090 }
2091
satokf3db1af2010-11-23 13:34:33 +09002092 private void addShortcutInputMethodAndSubtypes(InputMethodInfo imi,
2093 InputMethodSubtype subtype) {
2094 if (mShortcutInputMethodsAndSubtypes.containsKey(imi)) {
2095 mShortcutInputMethodsAndSubtypes.get(imi).add(subtype);
2096 } else {
2097 ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>();
2098 subtypes.add(subtype);
2099 mShortcutInputMethodsAndSubtypes.put(imi, subtypes);
2100 }
2101 }
2102
satok4e4569d2010-11-19 18:45:53 +09002103 // TODO: We should change the return type from List to List<Parcelable>
2104 public List getShortcutInputMethodsAndSubtypes() {
2105 synchronized (mMethodMap) {
satokf3db1af2010-11-23 13:34:33 +09002106 if (mShortcutInputMethodsAndSubtypes.size() == 0) {
satok4e4569d2010-11-19 18:45:53 +09002107 // If there are no selected shortcut subtypes, the framework will try to find
2108 // the most applicable subtype from all subtypes whose mode is
2109 // SUBTYPE_MODE_VOICE. This is an exceptional case, so we will hardcode the mode.
satokf3db1af2010-11-23 13:34:33 +09002110 Pair<InputMethodInfo, InputMethodSubtype> info =
2111 findLastResortApplicableShortcutInputMethodAndSubtypeLocked(
2112 SUBTYPE_MODE_VOICE);
2113 addShortcutInputMethodAndSubtypes(info.first, info.second);
2114 }
satokcd7cd292010-11-20 15:46:23 +09002115 ArrayList<Object> ret = new ArrayList<Object>();
satokf3db1af2010-11-23 13:34:33 +09002116 for (InputMethodInfo imi: mShortcutInputMethodsAndSubtypes.keySet()) {
2117 ret.add(imi);
2118 for (InputMethodSubtype subtype: mShortcutInputMethodsAndSubtypes.get(imi)) {
2119 ret.add(subtype);
satok4e4569d2010-11-19 18:45:53 +09002120 }
2121 }
satokf3db1af2010-11-23 13:34:33 +09002122 return ret;
satok4e4569d2010-11-19 18:45:53 +09002123 }
2124 }
2125
satokb66d2872010-11-10 01:04:04 +09002126 public boolean setCurrentInputMethodSubtype(InputMethodSubtype subtype) {
2127 synchronized (mMethodMap) {
2128 if (subtype != null && mCurMethodId != null) {
2129 InputMethodInfo imi = mMethodMap.get(mCurMethodId);
2130 int subtypeId = getSubtypeIdFromHashCode(imi, subtype.hashCode());
2131 if (subtypeId != NOT_A_SUBTYPE_ID) {
2132 setInputMethodLocked(mCurMethodId, subtypeId);
2133 return true;
2134 }
2135 }
2136 return false;
2137 }
2138 }
2139
satokd87c2592010-09-29 11:52:06 +09002140 /**
2141 * Utility class for putting and getting settings for InputMethod
2142 * TODO: Move all putters and getters of settings to this class.
2143 */
2144 private static class InputMethodSettings {
2145 // The string for enabled input method is saved as follows:
2146 // example: ("ime0;subtype0;subtype1;subtype2:ime1:ime2;subtype0")
2147 private static final char INPUT_METHOD_SEPARATER = ':';
2148 private static final char INPUT_METHOD_SUBTYPE_SEPARATER = ';';
satok723a27e2010-11-11 14:58:11 +09002149 private final TextUtils.SimpleStringSplitter mInputMethodSplitter =
satokd87c2592010-09-29 11:52:06 +09002150 new TextUtils.SimpleStringSplitter(INPUT_METHOD_SEPARATER);
2151
satok723a27e2010-11-11 14:58:11 +09002152 private final TextUtils.SimpleStringSplitter mSubtypeSplitter =
satokd87c2592010-09-29 11:52:06 +09002153 new TextUtils.SimpleStringSplitter(INPUT_METHOD_SUBTYPE_SEPARATER);
2154
2155 private final ContentResolver mResolver;
2156 private final HashMap<String, InputMethodInfo> mMethodMap;
2157 private final ArrayList<InputMethodInfo> mMethodList;
2158
2159 private String mEnabledInputMethodsStrCache;
2160
2161 private static void buildEnabledInputMethodsSettingString(
2162 StringBuilder builder, Pair<String, ArrayList<String>> pair) {
2163 String id = pair.first;
2164 ArrayList<String> subtypes = pair.second;
2165 builder.append(id);
satok57c767c2010-11-01 22:34:08 +09002166 // Inputmethod and subtypes are saved in the settings as follows:
2167 // ime0;subtype0;subtype1:ime1;subtype0:ime2:ime3;subtype0;subtype1
2168 for (String subtypeId: subtypes) {
2169 builder.append(INPUT_METHOD_SUBTYPE_SEPARATER).append(subtypeId);
satokd87c2592010-09-29 11:52:06 +09002170 }
2171 }
2172
2173 public InputMethodSettings(
2174 ContentResolver resolver, HashMap<String, InputMethodInfo> methodMap,
2175 ArrayList<InputMethodInfo> methodList) {
2176 mResolver = resolver;
2177 mMethodMap = methodMap;
2178 mMethodList = methodList;
2179 }
2180
2181 public List<InputMethodInfo> getEnabledInputMethodListLocked() {
2182 return createEnabledInputMethodListLocked(
2183 getEnabledInputMethodsAndSubtypeListLocked());
2184 }
2185
satok7f35c8c2010-10-07 21:13:11 +09002186 public List<Pair<InputMethodInfo, ArrayList<String>>>
satok67ddf9c2010-11-17 09:45:54 +09002187 getEnabledInputMethodAndSubtypeHashCodeListLocked() {
2188 return createEnabledInputMethodAndSubtypeHashCodeListLocked(
satok7f35c8c2010-10-07 21:13:11 +09002189 getEnabledInputMethodsAndSubtypeListLocked());
2190 }
2191
satok67ddf9c2010-11-17 09:45:54 +09002192 public List<InputMethodSubtype> getEnabledInputMethodSubtypeListLocked(
2193 InputMethodInfo imi) {
2194 List<Pair<String, ArrayList<String>>> imsList =
2195 getEnabledInputMethodsAndSubtypeListLocked();
2196 ArrayList<InputMethodSubtype> enabledSubtypes =
2197 new ArrayList<InputMethodSubtype>();
satok884ef9a2010-11-18 10:39:46 +09002198 if (imi != null) {
2199 for (Pair<String, ArrayList<String>> imsPair : imsList) {
2200 InputMethodInfo info = mMethodMap.get(imsPair.first);
2201 if (info != null && info.getId().equals(imi.getId())) {
2202 ArrayList<InputMethodSubtype> subtypes = info.getSubtypes();
2203 for (InputMethodSubtype ims: subtypes) {
2204 for (String s: imsPair.second) {
2205 if (String.valueOf(ims.hashCode()).equals(s)) {
2206 enabledSubtypes.add(ims);
2207 }
satok67ddf9c2010-11-17 09:45:54 +09002208 }
2209 }
satok884ef9a2010-11-18 10:39:46 +09002210 break;
satok67ddf9c2010-11-17 09:45:54 +09002211 }
satok67ddf9c2010-11-17 09:45:54 +09002212 }
2213 }
2214 return enabledSubtypes;
2215 }
2216
satokd87c2592010-09-29 11:52:06 +09002217 // At the initial boot, the settings for input methods are not set,
2218 // so we need to enable IME in that case.
2219 public void enableAllIMEsIfThereIsNoEnabledIME() {
2220 if (TextUtils.isEmpty(getEnabledInputMethodsStr())) {
2221 StringBuilder sb = new StringBuilder();
2222 final int N = mMethodList.size();
2223 for (int i = 0; i < N; i++) {
2224 InputMethodInfo imi = mMethodList.get(i);
2225 Slog.i(TAG, "Adding: " + imi.getId());
2226 if (i > 0) sb.append(':');
2227 sb.append(imi.getId());
2228 }
2229 putEnabledInputMethodsStr(sb.toString());
2230 }
2231 }
2232
2233 public List<Pair<String, ArrayList<String>>> getEnabledInputMethodsAndSubtypeListLocked() {
2234 ArrayList<Pair<String, ArrayList<String>>> imsList
2235 = new ArrayList<Pair<String, ArrayList<String>>>();
2236 final String enabledInputMethodsStr = getEnabledInputMethodsStr();
2237 if (TextUtils.isEmpty(enabledInputMethodsStr)) {
2238 return imsList;
2239 }
satok723a27e2010-11-11 14:58:11 +09002240 mInputMethodSplitter.setString(enabledInputMethodsStr);
2241 while (mInputMethodSplitter.hasNext()) {
2242 String nextImsStr = mInputMethodSplitter.next();
2243 mSubtypeSplitter.setString(nextImsStr);
2244 if (mSubtypeSplitter.hasNext()) {
satokd87c2592010-09-29 11:52:06 +09002245 ArrayList<String> subtypeHashes = new ArrayList<String>();
2246 // The first element is ime id.
satok723a27e2010-11-11 14:58:11 +09002247 String imeId = mSubtypeSplitter.next();
2248 while (mSubtypeSplitter.hasNext()) {
2249 subtypeHashes.add(mSubtypeSplitter.next());
satokd87c2592010-09-29 11:52:06 +09002250 }
2251 imsList.add(new Pair<String, ArrayList<String>>(imeId, subtypeHashes));
2252 }
2253 }
2254 return imsList;
2255 }
2256
2257 public void appendAndPutEnabledInputMethodLocked(String id, boolean reloadInputMethodStr) {
2258 if (reloadInputMethodStr) {
2259 getEnabledInputMethodsStr();
2260 }
2261 if (TextUtils.isEmpty(mEnabledInputMethodsStrCache)) {
2262 // Add in the newly enabled input method.
2263 putEnabledInputMethodsStr(id);
2264 } else {
2265 putEnabledInputMethodsStr(
2266 mEnabledInputMethodsStrCache + INPUT_METHOD_SEPARATER + id);
2267 }
2268 }
2269
2270 /**
2271 * Build and put a string of EnabledInputMethods with removing specified Id.
2272 * @return the specified id was removed or not.
2273 */
2274 public boolean buildAndPutEnabledInputMethodsStrRemovingIdLocked(
2275 StringBuilder builder, List<Pair<String, ArrayList<String>>> imsList, String id) {
2276 boolean isRemoved = false;
2277 boolean needsAppendSeparator = false;
2278 for (Pair<String, ArrayList<String>> ims: imsList) {
2279 String curId = ims.first;
2280 if (curId.equals(id)) {
2281 // We are disabling this input method, and it is
2282 // currently enabled. Skip it to remove from the
2283 // new list.
2284 isRemoved = true;
2285 } else {
2286 if (needsAppendSeparator) {
2287 builder.append(INPUT_METHOD_SEPARATER);
2288 } else {
2289 needsAppendSeparator = true;
2290 }
2291 buildEnabledInputMethodsSettingString(builder, ims);
2292 }
2293 }
2294 if (isRemoved) {
2295 // Update the setting with the new list of input methods.
2296 putEnabledInputMethodsStr(builder.toString());
2297 }
2298 return isRemoved;
2299 }
2300
2301 private List<InputMethodInfo> createEnabledInputMethodListLocked(
2302 List<Pair<String, ArrayList<String>>> imsList) {
2303 final ArrayList<InputMethodInfo> res = new ArrayList<InputMethodInfo>();
2304 for (Pair<String, ArrayList<String>> ims: imsList) {
2305 InputMethodInfo info = mMethodMap.get(ims.first);
2306 if (info != null) {
2307 res.add(info);
2308 }
2309 }
2310 return res;
2311 }
2312
satok7f35c8c2010-10-07 21:13:11 +09002313 private List<Pair<InputMethodInfo, ArrayList<String>>>
satok67ddf9c2010-11-17 09:45:54 +09002314 createEnabledInputMethodAndSubtypeHashCodeListLocked(
satok7f35c8c2010-10-07 21:13:11 +09002315 List<Pair<String, ArrayList<String>>> imsList) {
2316 final ArrayList<Pair<InputMethodInfo, ArrayList<String>>> res
2317 = new ArrayList<Pair<InputMethodInfo, ArrayList<String>>>();
2318 for (Pair<String, ArrayList<String>> ims : imsList) {
2319 InputMethodInfo info = mMethodMap.get(ims.first);
2320 if (info != null) {
2321 res.add(new Pair<InputMethodInfo, ArrayList<String>>(info, ims.second));
2322 }
2323 }
2324 return res;
2325 }
2326
satokd87c2592010-09-29 11:52:06 +09002327 private void putEnabledInputMethodsStr(String str) {
2328 Settings.Secure.putString(mResolver, Settings.Secure.ENABLED_INPUT_METHODS, str);
2329 mEnabledInputMethodsStrCache = str;
2330 }
2331
2332 private String getEnabledInputMethodsStr() {
2333 mEnabledInputMethodsStrCache = Settings.Secure.getString(
2334 mResolver, Settings.Secure.ENABLED_INPUT_METHODS);
satok723a27e2010-11-11 14:58:11 +09002335 if (DEBUG) {
2336 Slog.d(TAG, "getEnabledInputMethodsStr: " + mEnabledInputMethodsStrCache);
2337 }
satokd87c2592010-09-29 11:52:06 +09002338 return mEnabledInputMethodsStrCache;
2339 }
satok723a27e2010-11-11 14:58:11 +09002340
2341 private void saveSubtypeHistory(
2342 List<Pair<String, String>> savedImes, String newImeId, String newSubtypeId) {
2343 StringBuilder builder = new StringBuilder();
2344 boolean isImeAdded = false;
2345 if (!TextUtils.isEmpty(newImeId) && !TextUtils.isEmpty(newSubtypeId)) {
2346 builder.append(newImeId).append(INPUT_METHOD_SUBTYPE_SEPARATER).append(
2347 newSubtypeId);
2348 isImeAdded = true;
2349 }
2350 for (Pair<String, String> ime: savedImes) {
2351 String imeId = ime.first;
2352 String subtypeId = ime.second;
2353 if (TextUtils.isEmpty(subtypeId)) {
2354 subtypeId = NOT_A_SUBTYPE_ID_STR;
2355 }
2356 if (isImeAdded) {
2357 builder.append(INPUT_METHOD_SEPARATER);
2358 } else {
2359 isImeAdded = true;
2360 }
2361 builder.append(imeId).append(INPUT_METHOD_SUBTYPE_SEPARATER).append(
2362 subtypeId);
2363 }
2364 // Remove the last INPUT_METHOD_SEPARATER
2365 putSubtypeHistoryStr(builder.toString());
2366 }
2367
2368 public void addSubtypeToHistory(String imeId, String subtypeId) {
2369 List<Pair<String, String>> subtypeHistory = loadInputMethodAndSubtypeHistoryLocked();
2370 for (Pair<String, String> ime: subtypeHistory) {
2371 if (ime.first.equals(imeId)) {
2372 if (DEBUG) {
2373 Slog.v(TAG, "Subtype found in the history: " + imeId
2374 + ime.second);
2375 }
2376 // We should break here
2377 subtypeHistory.remove(ime);
2378 break;
2379 }
2380 }
2381 saveSubtypeHistory(subtypeHistory, imeId, subtypeId);
2382 }
2383
2384 private void putSubtypeHistoryStr(String str) {
2385 if (DEBUG) {
2386 Slog.d(TAG, "putSubtypeHistoryStr: " + str);
2387 }
2388 Settings.Secure.putString(
2389 mResolver, Settings.Secure.INPUT_METHODS_SUBTYPE_HISTORY, str);
2390 }
2391
2392 public Pair<String, String> getLastInputMethodAndSubtypeLocked() {
2393 // Gets the first one from the history
2394 return getLastSubtypeForInputMethodLockedInternal(null);
2395 }
2396
2397 public String getLastSubtypeForInputMethodLocked(String imeId) {
2398 Pair<String, String> ime = getLastSubtypeForInputMethodLockedInternal(imeId);
2399 if (ime != null) {
2400 return ime.second;
2401 } else {
2402 return null;
2403 }
2404 }
2405
2406 private Pair<String, String> getLastSubtypeForInputMethodLockedInternal(String imeId) {
2407 List<Pair<String, ArrayList<String>>> enabledImes =
2408 getEnabledInputMethodsAndSubtypeListLocked();
2409 List<Pair<String, String>> subtypeHistory = loadInputMethodAndSubtypeHistoryLocked();
2410 for (Pair<String, String> imeAndSubtype: subtypeHistory) {
2411 final String imeInTheHistory = imeAndSubtype.first;
2412 // If imeId is empty, returns the first IME and subtype in the history
2413 if (TextUtils.isEmpty(imeId) || imeInTheHistory.equals(imeId)) {
2414 final String subtypeInTheHistory = imeAndSubtype.second;
2415 final String subtypeHashCode = getEnabledSubtypeForInputMethodAndSubtypeLocked(
2416 enabledImes, imeInTheHistory, subtypeInTheHistory);
2417 if (!TextUtils.isEmpty(subtypeHashCode)) {
2418 if (DEBUG) {
2419 Slog.d(TAG, "Enabled subtype found in the history:" + subtypeHashCode);
2420 }
2421 return new Pair<String, String>(imeInTheHistory, subtypeHashCode);
2422 }
2423 }
2424 }
2425 if (DEBUG) {
2426 Slog.d(TAG, "No enabled IME found in the history");
2427 }
2428 return null;
2429 }
2430
2431 private String getEnabledSubtypeForInputMethodAndSubtypeLocked(List<Pair<String,
2432 ArrayList<String>>> enabledImes, String imeId, String subtypeHashCode) {
2433 for (Pair<String, ArrayList<String>> enabledIme: enabledImes) {
2434 if (enabledIme.first.equals(imeId)) {
2435 for (String s: enabledIme.second) {
2436 if (s.equals(subtypeHashCode)) {
2437 // If both imeId and subtypeId are enabled, return subtypeId.
2438 return s;
2439 }
2440 }
2441 // If imeId was enabled but subtypeId was disabled.
2442 return NOT_A_SUBTYPE_ID_STR;
2443 }
2444 }
2445 // If both imeId and subtypeId are disabled, return null
2446 return null;
2447 }
2448
2449 private List<Pair<String, String>> loadInputMethodAndSubtypeHistoryLocked() {
2450 ArrayList<Pair<String, String>> imsList = new ArrayList<Pair<String, String>>();
2451 final String subtypeHistoryStr = getSubtypeHistoryStr();
2452 if (TextUtils.isEmpty(subtypeHistoryStr)) {
2453 return imsList;
2454 }
2455 mInputMethodSplitter.setString(subtypeHistoryStr);
2456 while (mInputMethodSplitter.hasNext()) {
2457 String nextImsStr = mInputMethodSplitter.next();
2458 mSubtypeSplitter.setString(nextImsStr);
2459 if (mSubtypeSplitter.hasNext()) {
2460 String subtypeId = NOT_A_SUBTYPE_ID_STR;
2461 // The first element is ime id.
2462 String imeId = mSubtypeSplitter.next();
2463 while (mSubtypeSplitter.hasNext()) {
2464 subtypeId = mSubtypeSplitter.next();
2465 break;
2466 }
2467 imsList.add(new Pair<String, String>(imeId, subtypeId));
2468 }
2469 }
2470 return imsList;
2471 }
2472
2473 private String getSubtypeHistoryStr() {
2474 if (DEBUG) {
2475 Slog.d(TAG, "getSubtypeHistoryStr: " + Settings.Secure.getString(
2476 mResolver, Settings.Secure.INPUT_METHODS_SUBTYPE_HISTORY));
2477 }
2478 return Settings.Secure.getString(
2479 mResolver, Settings.Secure.INPUT_METHODS_SUBTYPE_HISTORY);
2480 }
2481
2482 public void putSelectedInputMethod(String imeId) {
2483 Settings.Secure.putString(mResolver, Settings.Secure.DEFAULT_INPUT_METHOD, imeId);
2484 }
2485
2486 public void putSelectedSubtype(int subtypeId) {
2487 Settings.Secure.putInt(
2488 mResolver, Settings.Secure.SELECTED_INPUT_METHOD_SUBTYPE, subtypeId);
2489 }
satokd87c2592010-09-29 11:52:06 +09002490 }
2491
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002492 // ----------------------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002493
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002494 @Override
2495 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
2496 if (mContext.checkCallingOrSelfPermission(android.Manifest.permission.DUMP)
2497 != PackageManager.PERMISSION_GRANTED) {
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002498
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002499 pw.println("Permission Denial: can't dump InputMethodManager from from pid="
2500 + Binder.getCallingPid()
2501 + ", uid=" + Binder.getCallingUid());
2502 return;
2503 }
2504
2505 IInputMethod method;
2506 ClientState client;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002507
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002508 final Printer p = new PrintWriterPrinter(pw);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002509
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002510 synchronized (mMethodMap) {
2511 p.println("Current Input Method Manager state:");
2512 int N = mMethodList.size();
2513 p.println(" Input Methods:");
2514 for (int i=0; i<N; i++) {
2515 InputMethodInfo info = mMethodList.get(i);
2516 p.println(" InputMethod #" + i + ":");
2517 info.dump(p, " ");
2518 }
2519 p.println(" Clients:");
2520 for (ClientState ci : mClients.values()) {
2521 p.println(" Client " + ci + ":");
2522 p.println(" client=" + ci.client);
2523 p.println(" inputContext=" + ci.inputContext);
2524 p.println(" sessionRequested=" + ci.sessionRequested);
2525 p.println(" curSession=" + ci.curSession);
2526 }
The Android Open Source Project10592532009-03-18 17:39:46 -07002527 p.println(" mCurMethodId=" + mCurMethodId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002528 client = mCurClient;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07002529 p.println(" mCurClient=" + client + " mCurSeq=" + mCurSeq);
2530 p.println(" mCurFocusedWindow=" + mCurFocusedWindow);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002531 p.println(" mCurId=" + mCurId + " mHaveConnect=" + mHaveConnection
2532 + " mBoundToMethod=" + mBoundToMethod);
2533 p.println(" mCurToken=" + mCurToken);
2534 p.println(" mCurIntent=" + mCurIntent);
2535 method = mCurMethod;
2536 p.println(" mCurMethod=" + mCurMethod);
2537 p.println(" mEnabledSession=" + mEnabledSession);
2538 p.println(" mShowRequested=" + mShowRequested
2539 + " mShowExplicitlyRequested=" + mShowExplicitlyRequested
2540 + " mShowForced=" + mShowForced
2541 + " mInputShown=" + mInputShown);
Dianne Hackborncc278702009-09-02 23:07:23 -07002542 p.println(" mSystemReady=" + mSystemReady + " mScreenOn=" + mScreenOn);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002543 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002544
Jeff Brownb88102f2010-09-08 11:49:43 -07002545 p.println(" ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002546 if (client != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002547 pw.flush();
2548 try {
2549 client.client.asBinder().dump(fd, args);
2550 } catch (RemoteException e) {
2551 p.println("Input method client dead: " + e);
2552 }
Jeff Brownb88102f2010-09-08 11:49:43 -07002553 } else {
2554 p.println("No input method client.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002555 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002556
Jeff Brownb88102f2010-09-08 11:49:43 -07002557 p.println(" ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002558 if (method != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002559 pw.flush();
2560 try {
2561 method.asBinder().dump(fd, args);
2562 } catch (RemoteException e) {
2563 p.println("Input method service dead: " + e);
2564 }
Jeff Brownb88102f2010-09-08 11:49:43 -07002565 } else {
2566 p.println("No input method service.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002567 }
2568 }
2569}