blob: c70564658576e444bbe993459840e2649c781f8a [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
4 * use this file except in compliance with the License. You may obtain a copy of
5 * the License at
Doug Zongkerab5c49c2009-12-04 10:31:43 -08006 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007 * http://www.apache.org/licenses/LICENSE-2.0
Doug Zongkerab5c49c2009-12-04 10:31:43 -08008 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12 * License for the specific language governing permissions and limitations under
13 * the License.
14 */
15
16package com.android.server;
17
Dianne Hackborn21f1bd12010-02-19 17:02:21 -080018import com.android.internal.content.PackageMonitor;
satoke7c6998e2011-06-03 17:57:59 +090019import com.android.internal.os.AtomicFile;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080020import com.android.internal.os.HandlerCaller;
satoke7c6998e2011-06-03 17:57:59 +090021import com.android.internal.util.FastXmlSerializer;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080022import com.android.internal.view.IInputContext;
23import com.android.internal.view.IInputMethod;
24import com.android.internal.view.IInputMethodCallback;
25import com.android.internal.view.IInputMethodClient;
26import com.android.internal.view.IInputMethodManager;
27import com.android.internal.view.IInputMethodSession;
28import com.android.internal.view.InputBindResult;
Dianne Hackborna924dc0d2011-02-17 14:22:17 -080029import com.android.server.EventLogTags;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080030
satoke7c6998e2011-06-03 17:57:59 +090031import org.xmlpull.v1.XmlPullParser;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080032import org.xmlpull.v1.XmlPullParserException;
satoke7c6998e2011-06-03 17:57:59 +090033import org.xmlpull.v1.XmlSerializer;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080034
35import android.app.ActivityManagerNative;
36import android.app.AlertDialog;
satokf90a33e2011-07-19 11:55:52 +090037import android.app.KeyguardManager;
satok7cfc0ed2011-06-20 21:29:36 +090038import android.app.Notification;
39import android.app.NotificationManager;
Dianne Hackborndd9b82c2009-09-03 00:18:47 -070040import android.app.PendingIntent;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080041import android.content.ComponentName;
42import android.content.ContentResolver;
43import android.content.Context;
44import android.content.DialogInterface;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080045import android.content.DialogInterface.OnCancelListener;
46import android.content.Intent;
satoke7c6998e2011-06-03 17:57:59 +090047import android.content.IntentFilter;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080048import android.content.ServiceConnection;
Brandon Ballinger6da35a02009-10-21 00:38:13 -070049import android.content.pm.ApplicationInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080050import android.content.pm.PackageManager;
Svetoslav Ganov6179ea32011-06-28 01:12:41 -070051import android.content.pm.PackageManager.NameNotFoundException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080052import android.content.pm.ResolveInfo;
53import android.content.pm.ServiceInfo;
Amith Yamasanie861ec12010-03-24 21:39:27 -070054import android.content.res.Configuration;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080055import android.content.res.Resources;
56import android.content.res.TypedArray;
57import android.database.ContentObserver;
Joe Onorato857fd9b2011-01-27 15:08:35 -080058import android.inputmethodservice.InputMethodService;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080059import android.os.Binder;
satoke7c6998e2011-06-03 17:57:59 +090060import android.os.Environment;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080061import android.os.Handler;
62import android.os.IBinder;
63import android.os.IInterface;
64import android.os.Message;
65import android.os.Parcel;
66import android.os.RemoteException;
The Android Open Source Project4df24232009-03-05 14:34:35 -080067import android.os.ResultReceiver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080068import android.os.ServiceManager;
69import android.os.SystemClock;
70import android.provider.Settings;
Amith Yamasanie861ec12010-03-24 21:39:27 -070071import android.provider.Settings.Secure;
satokab751aa2010-09-14 19:17:36 +090072import android.provider.Settings.SettingNotFoundException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080073import android.text.TextUtils;
satokf9f01002011-05-19 21:31:50 +090074import android.text.style.SuggestionSpan;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080075import android.util.EventLog;
satokf9f01002011-05-19 21:31:50 +090076import android.util.LruCache;
satokab751aa2010-09-14 19:17:36 +090077import android.util.Pair;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080078import android.util.PrintWriterPrinter;
79import android.util.Printer;
satoke7c6998e2011-06-03 17:57:59 +090080import android.util.Slog;
81import android.util.Xml;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080082import android.view.IWindowManager;
Ken Wakasa05dbb652011-08-22 15:22:43 +090083import android.view.LayoutInflater;
84import android.view.View;
85import android.view.ViewGroup;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080086import android.view.WindowManager;
satokab751aa2010-09-14 19:17:36 +090087import android.view.inputmethod.EditorInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080088import android.view.inputmethod.InputBinding;
89import android.view.inputmethod.InputMethod;
90import android.view.inputmethod.InputMethodInfo;
91import android.view.inputmethod.InputMethodManager;
satokab751aa2010-09-14 19:17:36 +090092import android.view.inputmethod.InputMethodSubtype;
Ken Wakasa05dbb652011-08-22 15:22:43 +090093import android.widget.ArrayAdapter;
94import android.widget.RadioButton;
95import android.widget.TextView;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080096
satoke7c6998e2011-06-03 17:57:59 +090097import java.io.File;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080098import java.io.FileDescriptor;
satoke7c6998e2011-06-03 17:57:59 +090099import java.io.FileInputStream;
100import java.io.FileOutputStream;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800101import java.io.IOException;
102import java.io.PrintWriter;
103import java.util.ArrayList;
satok688bd472012-02-09 20:09:17 +0900104import java.util.Collections;
Ken Wakasa761eb372011-03-04 19:06:18 +0900105import java.util.Comparator;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800106import java.util.HashMap;
satok7f35c8c2010-10-07 21:13:11 +0900107import java.util.HashSet;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800108import java.util.List;
satok913a8922010-08-26 21:53:41 +0900109import java.util.TreeMap;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800110
111/**
112 * This class provides a system service that manages input methods.
113 */
114public class InputMethodManagerService extends IInputMethodManager.Stub
115 implements ServiceConnection, Handler.Callback {
116 static final boolean DEBUG = false;
117 static final String TAG = "InputManagerService";
118
119 static final int MSG_SHOW_IM_PICKER = 1;
satokab751aa2010-09-14 19:17:36 +0900120 static final int MSG_SHOW_IM_SUBTYPE_PICKER = 2;
satok47a44912010-10-06 16:03:58 +0900121 static final int MSG_SHOW_IM_SUBTYPE_ENABLER = 3;
satok217f5482010-12-15 05:19:19 +0900122 static final int MSG_SHOW_IM_CONFIG = 4;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800123
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800124 static final int MSG_UNBIND_INPUT = 1000;
125 static final int MSG_BIND_INPUT = 1010;
126 static final int MSG_SHOW_SOFT_INPUT = 1020;
127 static final int MSG_HIDE_SOFT_INPUT = 1030;
128 static final int MSG_ATTACH_TOKEN = 1040;
129 static final int MSG_CREATE_SESSION = 1050;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800130
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800131 static final int MSG_START_INPUT = 2000;
132 static final int MSG_RESTART_INPUT = 2010;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800133
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800134 static final int MSG_UNBIND_METHOD = 3000;
135 static final int MSG_BIND_METHOD = 3010;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800136
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800137 static final long TIME_TO_RECONNECT = 10*1000;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800138
satokf9f01002011-05-19 21:31:50 +0900139 static final int SECURE_SUGGESTION_SPANS_MAX_SIZE = 20;
140
satokab751aa2010-09-14 19:17:36 +0900141 private static final int NOT_A_SUBTYPE_ID = -1;
satok723a27e2010-11-11 14:58:11 +0900142 private static final String NOT_A_SUBTYPE_ID_STR = String.valueOf(NOT_A_SUBTYPE_ID);
satok4e4569d2010-11-19 18:45:53 +0900143 private static final String SUBTYPE_MODE_KEYBOARD = "keyboard";
144 private static final String SUBTYPE_MODE_VOICE = "voice";
satokb6359412011-06-28 17:47:41 +0900145 private static final String TAG_TRY_SUPPRESSING_IME_SWITCHER = "TrySuppressingImeSwitcher";
satokc3690562012-01-10 20:14:43 +0900146 private static final String TAG_ENABLED_WHEN_DEFAULT_IS_NOT_ASCII_CAPABLE =
147 "EnabledWhenDefaultIsNotAsciiCapable";
148 private static final String TAG_ASCII_CAPABLE = "AsciiCapable";
satok4e4569d2010-11-19 18:45:53 +0900149
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800150 final Context mContext;
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -0800151 final Resources mRes;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800152 final Handler mHandler;
satokd87c2592010-09-29 11:52:06 +0900153 final InputMethodSettings mSettings;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800154 final SettingsObserver mSettingsObserver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800155 final IWindowManager mIWindowManager;
156 final HandlerCaller mCaller;
satoke7c6998e2011-06-03 17:57:59 +0900157 private final InputMethodFileManager mFileManager;
satok688bd472012-02-09 20:09:17 +0900158 private final InputMethodAndSubtypeListManager mImListManager;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800159
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800160 final InputBindResult mNoBinding = new InputBindResult(null, null, -1);
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800161
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800162 // All known input methods. mMethodMap also serves as the global
163 // lock for this class.
satokd87c2592010-09-29 11:52:06 +0900164 final ArrayList<InputMethodInfo> mMethodList = new ArrayList<InputMethodInfo>();
165 final HashMap<String, InputMethodInfo> mMethodMap = new HashMap<String, InputMethodInfo>();
satokf9f01002011-05-19 21:31:50 +0900166 private final LruCache<SuggestionSpan, InputMethodInfo> mSecureSuggestionSpans =
167 new LruCache<SuggestionSpan, InputMethodInfo>(SECURE_SUGGESTION_SPANS_MAX_SIZE);
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800168
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700169 // Used to bring IME service up to visible adjustment while it is being shown.
170 final ServiceConnection mVisibleConnection = new ServiceConnection() {
171 @Override public void onServiceConnected(ComponentName name, IBinder service) {
172 }
173
174 @Override public void onServiceDisconnected(ComponentName name) {
175 }
176 };
177 boolean mVisibleBound = false;
178
satok7cfc0ed2011-06-20 21:29:36 +0900179 // Ongoing notification
Dianne Hackborn661cd522011-08-22 00:26:20 -0700180 private NotificationManager mNotificationManager;
181 private KeyguardManager mKeyguardManager;
182 private StatusBarManagerService mStatusBar;
183 private Notification mImeSwitcherNotification;
184 private PendingIntent mImeSwitchPendingIntent;
satokb858c732011-07-22 19:54:34 +0900185 private boolean mShowOngoingImeSwitcherForPhones;
satok7cfc0ed2011-06-20 21:29:36 +0900186 private boolean mNotificationShown;
187
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800188 class SessionState {
189 final ClientState client;
190 final IInputMethod method;
191 final IInputMethodSession session;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800192
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800193 @Override
194 public String toString() {
195 return "SessionState{uid " + client.uid + " pid " + client.pid
196 + " method " + Integer.toHexString(
197 System.identityHashCode(method))
198 + " session " + Integer.toHexString(
199 System.identityHashCode(session))
200 + "}";
201 }
202
203 SessionState(ClientState _client, IInputMethod _method,
204 IInputMethodSession _session) {
205 client = _client;
206 method = _method;
207 session = _session;
208 }
209 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800210
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800211 class ClientState {
212 final IInputMethodClient client;
213 final IInputContext inputContext;
214 final int uid;
215 final int pid;
216 final InputBinding binding;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800217
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800218 boolean sessionRequested;
219 SessionState curSession;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800220
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800221 @Override
222 public String toString() {
223 return "ClientState{" + Integer.toHexString(
224 System.identityHashCode(this)) + " uid " + uid
225 + " pid " + pid + "}";
226 }
227
228 ClientState(IInputMethodClient _client, IInputContext _inputContext,
229 int _uid, int _pid) {
230 client = _client;
231 inputContext = _inputContext;
232 uid = _uid;
233 pid = _pid;
234 binding = new InputBinding(null, inputContext.asBinder(), uid, pid);
235 }
236 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800237
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800238 final HashMap<IBinder, ClientState> mClients
239 = new HashMap<IBinder, ClientState>();
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800240
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800241 /**
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700242 * Set once the system is ready to run third party code.
243 */
244 boolean mSystemReady;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800245
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700246 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800247 * Id of the currently selected input method.
248 */
249 String mCurMethodId;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800250
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800251 /**
252 * The current binding sequence number, incremented every time there is
253 * a new bind performed.
254 */
255 int mCurSeq;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800256
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800257 /**
258 * The client that is currently bound to an input method.
259 */
260 ClientState mCurClient;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800261
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800262 /**
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700263 * The last window token that gained focus.
264 */
265 IBinder mCurFocusedWindow;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800266
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700267 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800268 * The input context last provided by the current client.
269 */
270 IInputContext mCurInputContext;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800271
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800272 /**
273 * The attributes last provided by the current client.
274 */
275 EditorInfo mCurAttribute;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800276
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800277 /**
278 * The input method ID of the input method service that we are currently
279 * connected to or in the process of connecting to.
280 */
281 String mCurId;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800282
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800283 /**
satokab751aa2010-09-14 19:17:36 +0900284 * The current subtype of the current input method.
285 */
286 private InputMethodSubtype mCurrentSubtype;
287
satok4e4569d2010-11-19 18:45:53 +0900288 // This list contains the pairs of InputMethodInfo and InputMethodSubtype.
satokf3db1af2010-11-23 13:34:33 +0900289 private final HashMap<InputMethodInfo, ArrayList<InputMethodSubtype>>
290 mShortcutInputMethodsAndSubtypes =
291 new HashMap<InputMethodInfo, ArrayList<InputMethodSubtype>>();
satokab751aa2010-09-14 19:17:36 +0900292
293 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800294 * Set to true if our ServiceConnection is currently actively bound to
295 * a service (whether or not we have gotten its IBinder back yet).
296 */
297 boolean mHaveConnection;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800298
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800299 /**
300 * Set if the client has asked for the input method to be shown.
301 */
302 boolean mShowRequested;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800303
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800304 /**
305 * Set if we were explicitly told to show the input method.
306 */
307 boolean mShowExplicitlyRequested;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800308
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800309 /**
310 * Set if we were forced to be shown.
311 */
312 boolean mShowForced;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800313
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800314 /**
315 * Set if we last told the input method to show itself.
316 */
317 boolean mInputShown;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800318
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800319 /**
320 * The Intent used to connect to the current input method.
321 */
322 Intent mCurIntent;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800323
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800324 /**
325 * The token we have made for the currently active input method, to
326 * identify it in the future.
327 */
328 IBinder mCurToken;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800329
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800330 /**
331 * If non-null, this is the input method service we are currently connected
332 * to.
333 */
334 IInputMethod mCurMethod;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800335
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800336 /**
337 * Time that we last initiated a bind to the input method, to determine
338 * if we should try to disconnect and reconnect to it.
339 */
340 long mLastBindTime;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800341
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800342 /**
343 * Have we called mCurMethod.bindInput()?
344 */
345 boolean mBoundToMethod;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800346
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800347 /**
348 * Currently enabled session. Only touched by service thread, not
349 * protected by a lock.
350 */
351 SessionState mEnabledSession;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800352
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800353 /**
354 * True if the screen is on. The value is true initially.
355 */
356 boolean mScreenOn = true;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800357
Joe Onorato857fd9b2011-01-27 15:08:35 -0800358 int mBackDisposition = InputMethodService.BACK_DISPOSITION_DEFAULT;
359 int mImeWindowVis;
360
Ken Wakasa05dbb652011-08-22 15:22:43 +0900361 private AlertDialog.Builder mDialogBuilder;
362 private AlertDialog mSwitchingDialog;
363 private InputMethodInfo[] mIms;
364 private int[] mSubtypeIds;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800365
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800366 class SettingsObserver extends ContentObserver {
367 SettingsObserver(Handler handler) {
368 super(handler);
369 ContentResolver resolver = mContext.getContentResolver();
370 resolver.registerContentObserver(Settings.Secure.getUriFor(
371 Settings.Secure.DEFAULT_INPUT_METHOD), false, this);
satokab751aa2010-09-14 19:17:36 +0900372 resolver.registerContentObserver(Settings.Secure.getUriFor(
satokb6109bb2011-02-03 22:24:54 +0900373 Settings.Secure.ENABLED_INPUT_METHODS), false, this);
374 resolver.registerContentObserver(Settings.Secure.getUriFor(
satokab751aa2010-09-14 19:17:36 +0900375 Settings.Secure.SELECTED_INPUT_METHOD_SUBTYPE), false, this);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800376 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800377
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800378 @Override public void onChange(boolean selfChange) {
379 synchronized (mMethodMap) {
380 updateFromSettingsLocked();
381 }
382 }
383 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800384
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800385 class ScreenOnOffReceiver extends android.content.BroadcastReceiver {
386 @Override
387 public void onReceive(Context context, Intent intent) {
388 if (intent.getAction().equals(Intent.ACTION_SCREEN_ON)) {
389 mScreenOn = true;
satok3afd6c02011-11-18 08:38:19 +0900390 refreshImeWindowVisibilityLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800391 } else if (intent.getAction().equals(Intent.ACTION_SCREEN_OFF)) {
392 mScreenOn = false;
satok15452a42011-10-28 17:58:28 +0900393 setImeWindowVisibilityStatusHiddenLocked();
The Android Open Source Project10592532009-03-18 17:39:46 -0700394 } else if (intent.getAction().equals(Intent.ACTION_CLOSE_SYSTEM_DIALOGS)) {
395 hideInputMethodMenu();
396 return;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800397 } else {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800398 Slog.w(TAG, "Unexpected intent " + intent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800399 }
400
401 // Inform the current client of the change in active status
402 try {
403 if (mCurClient != null && mCurClient.client != null) {
404 mCurClient.client.setActive(mScreenOn);
405 }
406 } catch (RemoteException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800407 Slog.w(TAG, "Got RemoteException sending 'screen on/off' notification to pid "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800408 + mCurClient.pid + " uid " + mCurClient.uid);
409 }
410 }
411 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800412
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800413 class MyPackageMonitor extends PackageMonitor {
414
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800415 @Override
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800416 public boolean onHandleForceStop(Intent intent, String[] packages, int uid, boolean doit) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800417 synchronized (mMethodMap) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800418 String curInputMethodId = Settings.Secure.getString(mContext
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800419 .getContentResolver(), Settings.Secure.DEFAULT_INPUT_METHOD);
420 final int N = mMethodList.size();
421 if (curInputMethodId != null) {
422 for (int i=0; i<N; i++) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800423 InputMethodInfo imi = mMethodList.get(i);
424 if (imi.getId().equals(curInputMethodId)) {
425 for (String pkg : packages) {
426 if (imi.getPackageName().equals(pkg)) {
427 if (!doit) {
428 return true;
429 }
satok723a27e2010-11-11 14:58:11 +0900430 resetSelectedInputMethodAndSubtypeLocked("");
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800431 chooseNewDefaultIMELocked();
432 return true;
433 }
434 }
435 }
436 }
437 }
438 }
439 return false;
440 }
441
442 @Override
443 public void onSomePackagesChanged() {
444 synchronized (mMethodMap) {
445 InputMethodInfo curIm = null;
446 String curInputMethodId = Settings.Secure.getString(mContext
447 .getContentResolver(), Settings.Secure.DEFAULT_INPUT_METHOD);
448 final int N = mMethodList.size();
449 if (curInputMethodId != null) {
450 for (int i=0; i<N; i++) {
451 InputMethodInfo imi = mMethodList.get(i);
satoke7c6998e2011-06-03 17:57:59 +0900452 final String imiId = imi.getId();
453 if (imiId.equals(curInputMethodId)) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800454 curIm = imi;
455 }
satoke7c6998e2011-06-03 17:57:59 +0900456
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800457 int change = isPackageDisappearing(imi.getPackageName());
satoke7c6998e2011-06-03 17:57:59 +0900458 if (isPackageModified(imi.getPackageName())) {
459 mFileManager.deleteAllInputMethodSubtypes(imiId);
460 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800461 if (change == PACKAGE_TEMPORARY_CHANGE
462 || change == PACKAGE_PERMANENT_CHANGE) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800463 Slog.i(TAG, "Input method uninstalled, disabling: "
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800464 + imi.getComponent());
465 setInputMethodEnabledLocked(imi.getId(), false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800466 }
467 }
468 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800469
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800470 buildInputMethodListLocked(mMethodList, mMethodMap);
471
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800472 boolean changed = false;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800473
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800474 if (curIm != null) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800475 int change = isPackageDisappearing(curIm.getPackageName());
476 if (change == PACKAGE_TEMPORARY_CHANGE
477 || change == PACKAGE_PERMANENT_CHANGE) {
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800478 ServiceInfo si = null;
479 try {
480 si = mContext.getPackageManager().getServiceInfo(
481 curIm.getComponent(), 0);
482 } catch (PackageManager.NameNotFoundException ex) {
483 }
484 if (si == null) {
485 // Uh oh, current input method is no longer around!
486 // Pick another one...
Joe Onorato8a9b2202010-02-26 18:56:32 -0800487 Slog.i(TAG, "Current input method removed: " + curInputMethodId);
satok15452a42011-10-28 17:58:28 +0900488 setImeWindowVisibilityStatusHiddenLocked();
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800489 if (!chooseNewDefaultIMELocked()) {
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800490 changed = true;
491 curIm = null;
Joe Onorato8a9b2202010-02-26 18:56:32 -0800492 Slog.i(TAG, "Unsetting current input method");
satok723a27e2010-11-11 14:58:11 +0900493 resetSelectedInputMethodAndSubtypeLocked("");
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800494 }
495 }
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800496 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800497 }
satokab751aa2010-09-14 19:17:36 +0900498
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800499 if (curIm == null) {
500 // We currently don't have a default input method... is
501 // one now available?
502 changed = chooseNewDefaultIMELocked();
503 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800504
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800505 if (changed) {
506 updateFromSettingsLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800507 }
508 }
509 }
510 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800511
Jean Chalarde0d32a62011-10-20 20:36:07 +0900512 private static class MethodCallback extends IInputMethodCallback.Stub {
513 private final IInputMethod mMethod;
514 private final InputMethodManagerService mParentIMMS;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800515
Jean Chalarde0d32a62011-10-20 20:36:07 +0900516 MethodCallback(final IInputMethod method, final InputMethodManagerService imms) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800517 mMethod = method;
Jean Chalarde0d32a62011-10-20 20:36:07 +0900518 mParentIMMS = imms;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800519 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800520
satoke7c6998e2011-06-03 17:57:59 +0900521 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800522 public void finishedEvent(int seq, boolean handled) throws RemoteException {
523 }
524
satoke7c6998e2011-06-03 17:57:59 +0900525 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800526 public void sessionCreated(IInputMethodSession session) throws RemoteException {
Jean Chalarde0d32a62011-10-20 20:36:07 +0900527 mParentIMMS.onSessionCreated(mMethod, session);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800528 }
529 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800530
Dianne Hackborn661cd522011-08-22 00:26:20 -0700531 public InputMethodManagerService(Context context) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800532 mContext = context;
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -0800533 mRes = context.getResources();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800534 mHandler = new Handler(this);
535 mIWindowManager = IWindowManager.Stub.asInterface(
536 ServiceManager.getService(Context.WINDOW_SERVICE));
537 mCaller = new HandlerCaller(context, new HandlerCaller.Callback() {
satoke7c6998e2011-06-03 17:57:59 +0900538 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800539 public void executeMessage(Message msg) {
540 handleMessage(msg);
541 }
542 });
satok7cfc0ed2011-06-20 21:29:36 +0900543
satok7cfc0ed2011-06-20 21:29:36 +0900544 mImeSwitcherNotification = new Notification();
545 mImeSwitcherNotification.icon = com.android.internal.R.drawable.ic_notification_ime_default;
546 mImeSwitcherNotification.when = 0;
547 mImeSwitcherNotification.flags = Notification.FLAG_ONGOING_EVENT;
548 mImeSwitcherNotification.tickerText = null;
549 mImeSwitcherNotification.defaults = 0; // please be quiet
550 mImeSwitcherNotification.sound = null;
551 mImeSwitcherNotification.vibrate = null;
552 Intent intent = new Intent(Settings.ACTION_SHOW_INPUT_METHOD_PICKER);
satok683e2382011-07-12 08:28:52 +0900553 mImeSwitchPendingIntent = PendingIntent.getBroadcast(mContext, 0, intent, 0);
satokb858c732011-07-22 19:54:34 +0900554
555 mShowOngoingImeSwitcherForPhones = false;
satok7cfc0ed2011-06-20 21:29:36 +0900556
satoke7c6998e2011-06-03 17:57:59 +0900557 synchronized (mMethodMap) {
558 mFileManager = new InputMethodFileManager(mMethodMap);
559 }
satok688bd472012-02-09 20:09:17 +0900560 mImListManager = new InputMethodAndSubtypeListManager(context, this);
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800561
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800562 (new MyPackageMonitor()).register(mContext, true);
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800563
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800564 IntentFilter screenOnOffFilt = new IntentFilter();
565 screenOnOffFilt.addAction(Intent.ACTION_SCREEN_ON);
566 screenOnOffFilt.addAction(Intent.ACTION_SCREEN_OFF);
The Android Open Source Project10592532009-03-18 17:39:46 -0700567 screenOnOffFilt.addAction(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800568 mContext.registerReceiver(new ScreenOnOffReceiver(), screenOnOffFilt);
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800569
satok7cfc0ed2011-06-20 21:29:36 +0900570 mNotificationShown = false;
satok913a8922010-08-26 21:53:41 +0900571
satokd87c2592010-09-29 11:52:06 +0900572 // mSettings should be created before buildInputMethodListLocked
satokdf31ae62011-01-15 06:19:44 +0900573 mSettings = new InputMethodSettings(
574 mRes, context.getContentResolver(), mMethodMap, mMethodList);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800575 buildInputMethodListLocked(mMethodList, mMethodMap);
satokd87c2592010-09-29 11:52:06 +0900576 mSettings.enableAllIMEsIfThereIsNoEnabledIME();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800577
satokd87c2592010-09-29 11:52:06 +0900578 if (TextUtils.isEmpty(Settings.Secure.getString(
579 mContext.getContentResolver(), Settings.Secure.DEFAULT_INPUT_METHOD))) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800580 InputMethodInfo defIm = null;
satokd87c2592010-09-29 11:52:06 +0900581 for (InputMethodInfo imi: mMethodList) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800582 if (defIm == null && imi.getIsDefaultResourceId() != 0) {
583 try {
satokd87c2592010-09-29 11:52:06 +0900584 Resources res = context.createPackageContext(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800585 imi.getPackageName(), 0).getResources();
586 if (res.getBoolean(imi.getIsDefaultResourceId())) {
587 defIm = imi;
Joe Onorato8a9b2202010-02-26 18:56:32 -0800588 Slog.i(TAG, "Selected default: " + imi.getId());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800589 }
590 } catch (PackageManager.NameNotFoundException ex) {
591 } catch (Resources.NotFoundException ex) {
592 }
593 }
594 }
satokd87c2592010-09-29 11:52:06 +0900595 if (defIm == null && mMethodList.size() > 0) {
satokdc9ddae2011-10-06 12:22:36 +0900596 defIm = getMostApplicableDefaultIMELocked();
Joe Onorato8a9b2202010-02-26 18:56:32 -0800597 Slog.i(TAG, "No default found, using " + defIm.getId());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800598 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800599 if (defIm != null) {
satok723a27e2010-11-11 14:58:11 +0900600 setSelectedInputMethodAndSubtypeLocked(defIm, NOT_A_SUBTYPE_ID, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800601 }
602 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800603
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800604 mSettingsObserver = new SettingsObserver(mHandler);
605 updateFromSettingsLocked();
606 }
607
608 @Override
609 public boolean onTransact(int code, Parcel data, Parcel reply, int flags)
610 throws RemoteException {
611 try {
612 return super.onTransact(code, data, reply, flags);
613 } catch (RuntimeException e) {
614 // The input method manager only throws security exceptions, so let's
615 // log all others.
616 if (!(e instanceof SecurityException)) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800617 Slog.e(TAG, "Input Method Manager Crash", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800618 }
619 throw e;
620 }
621 }
622
Dianne Hackborn661cd522011-08-22 00:26:20 -0700623 public void systemReady(StatusBarManagerService statusBar) {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700624 synchronized (mMethodMap) {
625 if (!mSystemReady) {
626 mSystemReady = true;
Dianne Hackborn661cd522011-08-22 00:26:20 -0700627 mKeyguardManager = (KeyguardManager)
628 mContext.getSystemService(Context.KEYGUARD_SERVICE);
629 mNotificationManager = (NotificationManager)
630 mContext.getSystemService(Context.NOTIFICATION_SERVICE);
631 mStatusBar = statusBar;
632 statusBar.setIconVisibility("ime", false);
633 updateImeWindowStatusLocked();
satokb858c732011-07-22 19:54:34 +0900634 mShowOngoingImeSwitcherForPhones = mRes.getBoolean(
635 com.android.internal.R.bool.show_ongoing_ime_switcher);
Dianne Hackborncc278702009-09-02 23:07:23 -0700636 try {
637 startInputInnerLocked();
638 } catch (RuntimeException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800639 Slog.w(TAG, "Unexpected exception", e);
Dianne Hackborncc278702009-09-02 23:07:23 -0700640 }
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700641 }
642 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800643 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800644
satok15452a42011-10-28 17:58:28 +0900645 private void setImeWindowVisibilityStatusHiddenLocked() {
646 mImeWindowVis = 0;
647 updateImeWindowStatusLocked();
648 }
649
satok3afd6c02011-11-18 08:38:19 +0900650 private void refreshImeWindowVisibilityLocked() {
651 final Configuration conf = mRes.getConfiguration();
652 final boolean haveHardKeyboard = conf.keyboard
653 != Configuration.KEYBOARD_NOKEYS;
654 final boolean hardKeyShown = haveHardKeyboard
655 && conf.hardKeyboardHidden
656 != Configuration.HARDKEYBOARDHIDDEN_YES;
657 final boolean isScreenLocked = mKeyguardManager != null
658 && mKeyguardManager.isKeyguardLocked()
659 && mKeyguardManager.isKeyguardSecure();
660 mImeWindowVis = (!isScreenLocked && (mInputShown || hardKeyShown)) ?
661 (InputMethodService.IME_ACTIVE | InputMethodService.IME_VISIBLE) : 0;
662 updateImeWindowStatusLocked();
663 }
664
satok15452a42011-10-28 17:58:28 +0900665 private void updateImeWindowStatusLocked() {
satokdbf29502011-08-25 15:28:23 +0900666 setImeWindowStatus(mCurToken, mImeWindowVis, mBackDisposition);
Dianne Hackborn661cd522011-08-22 00:26:20 -0700667 }
668
satoke7c6998e2011-06-03 17:57:59 +0900669 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800670 public List<InputMethodInfo> getInputMethodList() {
671 synchronized (mMethodMap) {
672 return new ArrayList<InputMethodInfo>(mMethodList);
673 }
674 }
675
satoke7c6998e2011-06-03 17:57:59 +0900676 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800677 public List<InputMethodInfo> getEnabledInputMethodList() {
678 synchronized (mMethodMap) {
satokd87c2592010-09-29 11:52:06 +0900679 return mSettings.getEnabledInputMethodListLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800680 }
681 }
682
satokbb4aa062011-01-19 21:40:27 +0900683 private HashMap<InputMethodInfo, List<InputMethodSubtype>>
684 getExplicitlyOrImplicitlyEnabledInputMethodsAndSubtypeListLocked() {
685 HashMap<InputMethodInfo, List<InputMethodSubtype>> enabledInputMethodAndSubtypes =
686 new HashMap<InputMethodInfo, List<InputMethodSubtype>>();
687 for (InputMethodInfo imi: getEnabledInputMethodList()) {
688 enabledInputMethodAndSubtypes.put(
689 imi, getEnabledInputMethodSubtypeListLocked(imi, true));
690 }
691 return enabledInputMethodAndSubtypes;
692 }
693
694 public List<InputMethodSubtype> getEnabledInputMethodSubtypeListLocked(InputMethodInfo imi,
695 boolean allowsImplicitlySelectedSubtypes) {
696 if (imi == null && mCurMethodId != null) {
697 imi = mMethodMap.get(mCurMethodId);
698 }
satok7265d9b2011-02-14 15:47:30 +0900699 List<InputMethodSubtype> enabledSubtypes =
satokbb4aa062011-01-19 21:40:27 +0900700 mSettings.getEnabledInputMethodSubtypeListLocked(imi);
satok7265d9b2011-02-14 15:47:30 +0900701 if (allowsImplicitlySelectedSubtypes && enabledSubtypes.isEmpty()) {
satoka86f5e42011-09-02 17:12:42 +0900702 enabledSubtypes = getImplicitlyApplicableSubtypesLocked(mRes, imi);
satokbb4aa062011-01-19 21:40:27 +0900703 }
satok7265d9b2011-02-14 15:47:30 +0900704 return InputMethodSubtype.sort(mContext, 0, imi, enabledSubtypes);
satokbb4aa062011-01-19 21:40:27 +0900705 }
706
satoke7c6998e2011-06-03 17:57:59 +0900707 @Override
satok16331c82010-12-20 23:48:46 +0900708 public List<InputMethodSubtype> getEnabledInputMethodSubtypeList(InputMethodInfo imi,
709 boolean allowsImplicitlySelectedSubtypes) {
satok67ddf9c2010-11-17 09:45:54 +0900710 synchronized (mMethodMap) {
satokbb4aa062011-01-19 21:40:27 +0900711 return getEnabledInputMethodSubtypeListLocked(imi, allowsImplicitlySelectedSubtypes);
satok67ddf9c2010-11-17 09:45:54 +0900712 }
713 }
714
satoke7c6998e2011-06-03 17:57:59 +0900715 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800716 public void addClient(IInputMethodClient client,
717 IInputContext inputContext, int uid, int pid) {
718 synchronized (mMethodMap) {
719 mClients.put(client.asBinder(), new ClientState(client,
720 inputContext, uid, pid));
721 }
722 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800723
satoke7c6998e2011-06-03 17:57:59 +0900724 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800725 public void removeClient(IInputMethodClient client) {
726 synchronized (mMethodMap) {
727 mClients.remove(client.asBinder());
728 }
729 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800730
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800731 void executeOrSendMessage(IInterface target, Message msg) {
732 if (target.asBinder() instanceof Binder) {
733 mCaller.sendMessage(msg);
734 } else {
735 handleMessage(msg);
736 msg.recycle();
737 }
738 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800739
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700740 void unbindCurrentClientLocked() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800741 if (mCurClient != null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800742 if (DEBUG) Slog.v(TAG, "unbindCurrentInputLocked: client = "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800743 + mCurClient.client.asBinder());
744 if (mBoundToMethod) {
745 mBoundToMethod = false;
746 if (mCurMethod != null) {
747 executeOrSendMessage(mCurMethod, mCaller.obtainMessageO(
748 MSG_UNBIND_INPUT, mCurMethod));
749 }
750 }
751 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
752 MSG_UNBIND_METHOD, mCurSeq, mCurClient.client));
753 mCurClient.sessionRequested = false;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800754
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800755 // Call setActive(false) on the old client
756 try {
757 mCurClient.client.setActive(false);
758 } catch (RemoteException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800759 Slog.w(TAG, "Got RemoteException sending setActive(false) notification to pid "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800760 + mCurClient.pid + " uid " + mCurClient.uid);
761 }
762 mCurClient = null;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800763
The Android Open Source Project10592532009-03-18 17:39:46 -0700764 hideInputMethodMenuLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800765 }
766 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800767
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800768 private int getImeShowFlags() {
769 int flags = 0;
770 if (mShowForced) {
771 flags |= InputMethod.SHOW_FORCED
772 | InputMethod.SHOW_EXPLICIT;
773 } else if (mShowExplicitlyRequested) {
774 flags |= InputMethod.SHOW_EXPLICIT;
775 }
776 return flags;
777 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800778
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800779 private int getAppShowFlags() {
780 int flags = 0;
781 if (mShowForced) {
782 flags |= InputMethodManager.SHOW_FORCED;
783 } else if (!mShowExplicitlyRequested) {
784 flags |= InputMethodManager.SHOW_IMPLICIT;
785 }
786 return flags;
787 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800788
Dianne Hackborn7663d802012-02-24 13:08:49 -0800789 InputBindResult attachNewInputLocked(boolean initial) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800790 if (!mBoundToMethod) {
791 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
792 MSG_BIND_INPUT, mCurMethod, mCurClient.binding));
793 mBoundToMethod = true;
794 }
795 final SessionState session = mCurClient.curSession;
796 if (initial) {
797 executeOrSendMessage(session.method, mCaller.obtainMessageOOO(
798 MSG_START_INPUT, session, mCurInputContext, mCurAttribute));
799 } else {
800 executeOrSendMessage(session.method, mCaller.obtainMessageOOO(
801 MSG_RESTART_INPUT, session, mCurInputContext, mCurAttribute));
802 }
803 if (mShowRequested) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800804 if (DEBUG) Slog.v(TAG, "Attach new input asks to show input");
The Android Open Source Project4df24232009-03-05 14:34:35 -0800805 showCurrentInputLocked(getAppShowFlags(), null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800806 }
Dianne Hackborn7663d802012-02-24 13:08:49 -0800807 return new InputBindResult(session.session, mCurId, mCurSeq);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800808 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800809
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800810 InputBindResult startInputLocked(IInputMethodClient client,
Dianne Hackborn7663d802012-02-24 13:08:49 -0800811 IInputContext inputContext, EditorInfo attribute, int controlFlags) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800812 // If no method is currently selected, do nothing.
813 if (mCurMethodId == null) {
814 return mNoBinding;
815 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800816
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800817 ClientState cs = mClients.get(client.asBinder());
818 if (cs == null) {
819 throw new IllegalArgumentException("unknown client "
820 + client.asBinder());
821 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800822
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800823 try {
824 if (!mIWindowManager.inputMethodClientHasFocus(cs.client)) {
825 // Check with the window manager to make sure this client actually
826 // has a window with focus. If not, reject. This is thread safe
827 // because if the focus changes some time before or after, the
828 // next client receiving focus that has any interest in input will
829 // be calling through here after that change happens.
Joe Onorato8a9b2202010-02-26 18:56:32 -0800830 Slog.w(TAG, "Starting input on non-focused client " + cs.client
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800831 + " (uid=" + cs.uid + " pid=" + cs.pid + ")");
832 return null;
833 }
834 } catch (RemoteException e) {
835 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800836
Dianne Hackborn7663d802012-02-24 13:08:49 -0800837 return startInputUncheckedLocked(cs, inputContext, attribute, controlFlags);
838 }
839
840 InputBindResult startInputUncheckedLocked(ClientState cs,
841 IInputContext inputContext, EditorInfo attribute, int controlFlags) {
842 // If no method is currently selected, do nothing.
843 if (mCurMethodId == null) {
844 return mNoBinding;
845 }
846
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800847 if (mCurClient != cs) {
848 // If the client is changing, we need to switch over to the new
849 // one.
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700850 unbindCurrentClientLocked();
Joe Onorato8a9b2202010-02-26 18:56:32 -0800851 if (DEBUG) Slog.v(TAG, "switching to client: client = "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800852 + cs.client.asBinder());
853
854 // If the screen is on, inform the new client it is active
855 if (mScreenOn) {
856 try {
857 cs.client.setActive(mScreenOn);
858 } catch (RemoteException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800859 Slog.w(TAG, "Got RemoteException sending setActive notification to pid "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800860 + cs.pid + " uid " + cs.uid);
861 }
862 }
863 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800864
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800865 // Bump up the sequence for this client and attach it.
866 mCurSeq++;
867 if (mCurSeq <= 0) mCurSeq = 1;
868 mCurClient = cs;
869 mCurInputContext = inputContext;
870 mCurAttribute = attribute;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800871
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800872 // Check if the input method is changing.
873 if (mCurId != null && mCurId.equals(mCurMethodId)) {
874 if (cs.curSession != null) {
875 // Fast case: if we are already connected to the input method,
876 // then just return it.
Dianne Hackborn7663d802012-02-24 13:08:49 -0800877 return attachNewInputLocked(
878 (controlFlags&InputMethodManager.CONTROL_START_INITIAL) != 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800879 }
880 if (mHaveConnection) {
881 if (mCurMethod != null) {
882 if (!cs.sessionRequested) {
883 cs.sessionRequested = true;
Joe Onorato8a9b2202010-02-26 18:56:32 -0800884 if (DEBUG) Slog.v(TAG, "Creating new session for client " + cs);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800885 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
886 MSG_CREATE_SESSION, mCurMethod,
Jean Chalarde0d32a62011-10-20 20:36:07 +0900887 new MethodCallback(mCurMethod, this)));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800888 }
889 // Return to client, and we will get back with it when
890 // we have had a session made for it.
891 return new InputBindResult(null, mCurId, mCurSeq);
892 } else if (SystemClock.uptimeMillis()
893 < (mLastBindTime+TIME_TO_RECONNECT)) {
894 // In this case we have connected to the service, but
895 // don't yet have its interface. If it hasn't been too
896 // long since we did the connection, we'll return to
897 // the client and wait to get the service interface so
898 // we can report back. If it has been too long, we want
899 // to fall through so we can try a disconnect/reconnect
900 // to see if we can get back in touch with the service.
901 return new InputBindResult(null, mCurId, mCurSeq);
902 } else {
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800903 EventLog.writeEvent(EventLogTags.IMF_FORCE_RECONNECT_IME,
904 mCurMethodId, SystemClock.uptimeMillis()-mLastBindTime, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800905 }
906 }
907 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800908
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700909 return startInputInnerLocked();
910 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800911
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700912 InputBindResult startInputInnerLocked() {
913 if (mCurMethodId == null) {
914 return mNoBinding;
915 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800916
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700917 if (!mSystemReady) {
918 // If the system is not yet ready, we shouldn't be running third
919 // party code.
Dianne Hackborncc278702009-09-02 23:07:23 -0700920 return new InputBindResult(null, mCurMethodId, mCurSeq);
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700921 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800922
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800923 InputMethodInfo info = mMethodMap.get(mCurMethodId);
924 if (info == null) {
925 throw new IllegalArgumentException("Unknown id: " + mCurMethodId);
926 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800927
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700928 unbindCurrentMethodLocked(false);
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800929
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800930 mCurIntent = new Intent(InputMethod.SERVICE_INTERFACE);
931 mCurIntent.setComponent(info.getComponent());
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700932 mCurIntent.putExtra(Intent.EXTRA_CLIENT_LABEL,
933 com.android.internal.R.string.input_method_binding_label);
934 mCurIntent.putExtra(Intent.EXTRA_CLIENT_INTENT, PendingIntent.getActivity(
935 mContext, 0, new Intent(Settings.ACTION_INPUT_METHOD_SETTINGS), 0));
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700936 if (mContext.bindService(mCurIntent, this, Context.BIND_AUTO_CREATE
937 | Context.BIND_NOT_VISIBLE)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800938 mLastBindTime = SystemClock.uptimeMillis();
939 mHaveConnection = true;
940 mCurId = info.getId();
941 mCurToken = new Binder();
942 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800943 if (DEBUG) Slog.v(TAG, "Adding window token: " + mCurToken);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800944 mIWindowManager.addWindowToken(mCurToken,
945 WindowManager.LayoutParams.TYPE_INPUT_METHOD);
946 } catch (RemoteException e) {
947 }
948 return new InputBindResult(null, mCurId, mCurSeq);
949 } else {
950 mCurIntent = null;
Joe Onorato8a9b2202010-02-26 18:56:32 -0800951 Slog.w(TAG, "Failure connecting to input method service: "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800952 + mCurIntent);
953 }
954 return null;
955 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800956
satoke7c6998e2011-06-03 17:57:59 +0900957 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800958 public InputBindResult startInput(IInputMethodClient client,
Dianne Hackborn7663d802012-02-24 13:08:49 -0800959 IInputContext inputContext, EditorInfo attribute, int controlFlags) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800960 synchronized (mMethodMap) {
961 final long ident = Binder.clearCallingIdentity();
962 try {
Dianne Hackborn7663d802012-02-24 13:08:49 -0800963 return startInputLocked(client, inputContext, attribute, controlFlags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800964 } finally {
965 Binder.restoreCallingIdentity(ident);
966 }
967 }
968 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800969
satoke7c6998e2011-06-03 17:57:59 +0900970 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800971 public void finishInput(IInputMethodClient client) {
972 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800973
satoke7c6998e2011-06-03 17:57:59 +0900974 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800975 public void onServiceConnected(ComponentName name, IBinder service) {
976 synchronized (mMethodMap) {
977 if (mCurIntent != null && name.equals(mCurIntent.getComponent())) {
978 mCurMethod = IInputMethod.Stub.asInterface(service);
Dianne Hackborncc278702009-09-02 23:07:23 -0700979 if (mCurToken == null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800980 Slog.w(TAG, "Service connected without a token!");
Dianne Hackborncc278702009-09-02 23:07:23 -0700981 unbindCurrentMethodLocked(false);
982 return;
983 }
Joe Onorato8a9b2202010-02-26 18:56:32 -0800984 if (DEBUG) Slog.v(TAG, "Initiating attach with token: " + mCurToken);
Dianne Hackborncc278702009-09-02 23:07:23 -0700985 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
986 MSG_ATTACH_TOKEN, mCurMethod, mCurToken));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800987 if (mCurClient != null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800988 if (DEBUG) Slog.v(TAG, "Creating first session while with client "
Dianne Hackborncc278702009-09-02 23:07:23 -0700989 + mCurClient);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800990 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
Dianne Hackborncc278702009-09-02 23:07:23 -0700991 MSG_CREATE_SESSION, mCurMethod,
Jean Chalarde0d32a62011-10-20 20:36:07 +0900992 new MethodCallback(mCurMethod, this)));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800993 }
994 }
995 }
996 }
997
998 void onSessionCreated(IInputMethod method, IInputMethodSession session) {
999 synchronized (mMethodMap) {
1000 if (mCurMethod != null && method != null
1001 && mCurMethod.asBinder() == method.asBinder()) {
1002 if (mCurClient != null) {
1003 mCurClient.curSession = new SessionState(mCurClient,
1004 method, session);
1005 mCurClient.sessionRequested = false;
Dianne Hackborn7663d802012-02-24 13:08:49 -08001006 InputBindResult res = attachNewInputLocked(true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001007 if (res.method != null) {
1008 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageOO(
1009 MSG_BIND_METHOD, mCurClient.client, res));
1010 }
1011 }
1012 }
1013 }
1014 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001015
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001016 void unbindCurrentMethodLocked(boolean reportToClient) {
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07001017 if (mVisibleBound) {
1018 mContext.unbindService(mVisibleConnection);
1019 mVisibleBound = false;
1020 }
1021
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001022 if (mHaveConnection) {
1023 mContext.unbindService(this);
1024 mHaveConnection = false;
1025 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001026
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001027 if (mCurToken != null) {
1028 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001029 if (DEBUG) Slog.v(TAG, "Removing window token: " + mCurToken);
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001030 mIWindowManager.removeWindowToken(mCurToken);
1031 } catch (RemoteException e) {
1032 }
1033 mCurToken = null;
1034 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001035
The Android Open Source Project10592532009-03-18 17:39:46 -07001036 mCurId = null;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001037 clearCurMethodLocked();
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001038
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001039 if (reportToClient && mCurClient != null) {
1040 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
1041 MSG_UNBIND_METHOD, mCurSeq, mCurClient.client));
1042 }
1043 }
1044
Devin Taylor0c33ed22010-02-23 13:26:46 -06001045 private void finishSession(SessionState sessionState) {
1046 if (sessionState != null && sessionState.session != null) {
1047 try {
1048 sessionState.session.finishSession();
1049 } catch (RemoteException e) {
Jean-Baptiste Queru9d0f6df2010-03-29 12:55:09 -07001050 Slog.w(TAG, "Session failed to close due to remote exception", e);
satok15452a42011-10-28 17:58:28 +09001051 setImeWindowVisibilityStatusHiddenLocked();
Devin Taylor0c33ed22010-02-23 13:26:46 -06001052 }
1053 }
1054 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001055
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001056 void clearCurMethodLocked() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001057 if (mCurMethod != null) {
1058 for (ClientState cs : mClients.values()) {
1059 cs.sessionRequested = false;
Devin Taylor0c33ed22010-02-23 13:26:46 -06001060 finishSession(cs.curSession);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001061 cs.curSession = null;
1062 }
Devin Taylor0c33ed22010-02-23 13:26:46 -06001063
1064 finishSession(mEnabledSession);
1065 mEnabledSession = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001066 mCurMethod = null;
1067 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07001068 if (mStatusBar != null) {
1069 mStatusBar.setIconVisibility("ime", false);
1070 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001071 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001072
satoke7c6998e2011-06-03 17:57:59 +09001073 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001074 public void onServiceDisconnected(ComponentName name) {
1075 synchronized (mMethodMap) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001076 if (DEBUG) Slog.v(TAG, "Service disconnected: " + name
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001077 + " mCurIntent=" + mCurIntent);
1078 if (mCurMethod != null && mCurIntent != null
1079 && name.equals(mCurIntent.getComponent())) {
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001080 clearCurMethodLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001081 // We consider this to be a new bind attempt, since the system
1082 // should now try to restart the service for us.
1083 mLastBindTime = SystemClock.uptimeMillis();
1084 mShowRequested = mInputShown;
1085 mInputShown = false;
1086 if (mCurClient != null) {
1087 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
1088 MSG_UNBIND_METHOD, mCurSeq, mCurClient.client));
1089 }
1090 }
1091 }
1092 }
1093
satokf9f01002011-05-19 21:31:50 +09001094 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001095 public void updateStatusIcon(IBinder token, String packageName, int iconId) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001096 int uid = Binder.getCallingUid();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001097 long ident = Binder.clearCallingIdentity();
1098 try {
1099 if (token == null || mCurToken != token) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001100 Slog.w(TAG, "Ignoring setInputMethod of uid " + uid + " token: " + token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001101 return;
1102 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001103
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001104 synchronized (mMethodMap) {
1105 if (iconId == 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001106 if (DEBUG) Slog.d(TAG, "hide the small icon for the input method");
Dianne Hackborn661cd522011-08-22 00:26:20 -07001107 if (mStatusBar != null) {
1108 mStatusBar.setIconVisibility("ime", false);
1109 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001110 } else if (packageName != null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001111 if (DEBUG) Slog.d(TAG, "show a small icon for the input method");
Svetoslav Ganov6179ea32011-06-28 01:12:41 -07001112 CharSequence contentDescription = null;
1113 try {
1114 PackageManager packageManager = mContext.getPackageManager();
1115 contentDescription = packageManager.getApplicationLabel(
1116 packageManager.getApplicationInfo(packageName, 0));
1117 } catch (NameNotFoundException nnfe) {
1118 /* ignore */
1119 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07001120 if (mStatusBar != null) {
1121 mStatusBar.setIcon("ime", packageName, iconId, 0,
1122 contentDescription != null
1123 ? contentDescription.toString() : null);
1124 mStatusBar.setIconVisibility("ime", true);
1125 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001126 }
1127 }
1128 } finally {
1129 Binder.restoreCallingIdentity(ident);
1130 }
1131 }
1132
satok7cfc0ed2011-06-20 21:29:36 +09001133 private boolean needsToShowImeSwitchOngoingNotification() {
1134 if (!mShowOngoingImeSwitcherForPhones) return false;
1135 synchronized (mMethodMap) {
1136 List<InputMethodInfo> imis = mSettings.getEnabledInputMethodListLocked();
1137 final int N = imis.size();
satokb6359412011-06-28 17:47:41 +09001138 if (N > 2) return true;
1139 if (N < 1) return false;
1140 int nonAuxCount = 0;
1141 int auxCount = 0;
1142 InputMethodSubtype nonAuxSubtype = null;
1143 InputMethodSubtype auxSubtype = null;
satok7cfc0ed2011-06-20 21:29:36 +09001144 for(int i = 0; i < N; ++i) {
1145 final InputMethodInfo imi = imis.get(i);
1146 final List<InputMethodSubtype> subtypes = getEnabledInputMethodSubtypeListLocked(
1147 imi, true);
1148 final int subtypeCount = subtypes.size();
1149 if (subtypeCount == 0) {
satokb6359412011-06-28 17:47:41 +09001150 ++nonAuxCount;
satok7cfc0ed2011-06-20 21:29:36 +09001151 } else {
1152 for (int j = 0; j < subtypeCount; ++j) {
satokb6359412011-06-28 17:47:41 +09001153 final InputMethodSubtype subtype = subtypes.get(j);
1154 if (!subtype.isAuxiliary()) {
1155 ++nonAuxCount;
1156 nonAuxSubtype = subtype;
1157 } else {
1158 ++auxCount;
1159 auxSubtype = subtype;
satok7cfc0ed2011-06-20 21:29:36 +09001160 }
1161 }
1162 }
satok7cfc0ed2011-06-20 21:29:36 +09001163 }
satokb6359412011-06-28 17:47:41 +09001164 if (nonAuxCount > 1 || auxCount > 1) {
1165 return true;
1166 } else if (nonAuxCount == 1 && auxCount == 1) {
1167 if (nonAuxSubtype != null && auxSubtype != null
satok9747f892011-09-12 15:56:40 +09001168 && (nonAuxSubtype.getLocale().equals(auxSubtype.getLocale())
1169 || auxSubtype.overridesImplicitlyEnabledSubtype()
1170 || nonAuxSubtype.overridesImplicitlyEnabledSubtype())
satokb6359412011-06-28 17:47:41 +09001171 && nonAuxSubtype.containsExtraValueKey(TAG_TRY_SUPPRESSING_IME_SWITCHER)) {
1172 return false;
1173 }
1174 return true;
1175 }
1176 return false;
satok7cfc0ed2011-06-20 21:29:36 +09001177 }
satok7cfc0ed2011-06-20 21:29:36 +09001178 }
1179
satokdbf29502011-08-25 15:28:23 +09001180 @SuppressWarnings("deprecation")
satokf9f01002011-05-19 21:31:50 +09001181 @Override
Joe Onorato857fd9b2011-01-27 15:08:35 -08001182 public void setImeWindowStatus(IBinder token, int vis, int backDisposition) {
satok06487a52010-10-29 11:37:18 +09001183 int uid = Binder.getCallingUid();
1184 long ident = Binder.clearCallingIdentity();
1185 try {
1186 if (token == null || mCurToken != token) {
Joe Onorato857fd9b2011-01-27 15:08:35 -08001187 Slog.w(TAG, "Ignoring setImeWindowStatus of uid " + uid + " token: " + token);
satok06487a52010-10-29 11:37:18 +09001188 return;
1189 }
1190
1191 synchronized (mMethodMap) {
Joe Onorato857fd9b2011-01-27 15:08:35 -08001192 mImeWindowVis = vis;
1193 mBackDisposition = backDisposition;
Dianne Hackborn661cd522011-08-22 00:26:20 -07001194 if (mStatusBar != null) {
1195 mStatusBar.setImeWindowStatus(token, vis, backDisposition);
1196 }
satok7cfc0ed2011-06-20 21:29:36 +09001197 final boolean iconVisibility = (vis & InputMethodService.IME_ACTIVE) != 0;
satok5bc8e732011-07-22 21:07:23 +09001198 final InputMethodInfo imi = mMethodMap.get(mCurMethodId);
1199 if (imi != null && iconVisibility && needsToShowImeSwitchOngoingNotification()) {
satok7cfc0ed2011-06-20 21:29:36 +09001200 final PackageManager pm = mContext.getPackageManager();
satok7cfc0ed2011-06-20 21:29:36 +09001201 final CharSequence title = mRes.getText(
1202 com.android.internal.R.string.select_input_method);
satok5bc8e732011-07-22 21:07:23 +09001203 final CharSequence imiLabel = imi.loadLabel(pm);
1204 final CharSequence summary = mCurrentSubtype != null
1205 ? TextUtils.concat(mCurrentSubtype.getDisplayName(mContext,
1206 imi.getPackageName(), imi.getServiceInfo().applicationInfo),
1207 (TextUtils.isEmpty(imiLabel) ?
Ken Wakasa05dbb652011-08-22 15:22:43 +09001208 "" : " - " + imiLabel))
satok5bc8e732011-07-22 21:07:23 +09001209 : imiLabel;
1210
satok7cfc0ed2011-06-20 21:29:36 +09001211 mImeSwitcherNotification.setLatestEventInfo(
satok5bc8e732011-07-22 21:07:23 +09001212 mContext, title, summary, mImeSwitchPendingIntent);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001213 if (mNotificationManager != null) {
1214 mNotificationManager.notify(
1215 com.android.internal.R.string.select_input_method,
1216 mImeSwitcherNotification);
1217 mNotificationShown = true;
1218 }
satok7cfc0ed2011-06-20 21:29:36 +09001219 } else {
Dianne Hackborn661cd522011-08-22 00:26:20 -07001220 if (mNotificationShown && mNotificationManager != null) {
satok7cfc0ed2011-06-20 21:29:36 +09001221 mNotificationManager.cancel(
1222 com.android.internal.R.string.select_input_method);
1223 mNotificationShown = false;
1224 }
1225 }
satok06487a52010-10-29 11:37:18 +09001226 }
1227 } finally {
1228 Binder.restoreCallingIdentity(ident);
1229 }
1230 }
1231
satoke7c6998e2011-06-03 17:57:59 +09001232 @Override
satokf9f01002011-05-19 21:31:50 +09001233 public void registerSuggestionSpansForNotification(SuggestionSpan[] spans) {
1234 synchronized (mMethodMap) {
1235 final InputMethodInfo currentImi = mMethodMap.get(mCurMethodId);
1236 for (int i = 0; i < spans.length; ++i) {
1237 SuggestionSpan ss = spans[i];
satok42c5a162011-05-26 16:46:14 +09001238 if (!TextUtils.isEmpty(ss.getNotificationTargetClassName())) {
satokf9f01002011-05-19 21:31:50 +09001239 mSecureSuggestionSpans.put(ss, currentImi);
satok42c5a162011-05-26 16:46:14 +09001240 final InputMethodInfo targetImi = mSecureSuggestionSpans.get(ss);
satokf9f01002011-05-19 21:31:50 +09001241 }
1242 }
1243 }
1244 }
1245
satoke7c6998e2011-06-03 17:57:59 +09001246 @Override
satokf9f01002011-05-19 21:31:50 +09001247 public boolean notifySuggestionPicked(SuggestionSpan span, String originalString, int index) {
1248 synchronized (mMethodMap) {
1249 final InputMethodInfo targetImi = mSecureSuggestionSpans.get(span);
1250 // TODO: Do not send the intent if the process of the targetImi is already dead.
1251 if (targetImi != null) {
1252 final String[] suggestions = span.getSuggestions();
1253 if (index < 0 || index >= suggestions.length) return false;
satok42c5a162011-05-26 16:46:14 +09001254 final String className = span.getNotificationTargetClassName();
satokf9f01002011-05-19 21:31:50 +09001255 final Intent intent = new Intent();
1256 // Ensures that only a class in the original IME package will receive the
1257 // notification.
satok42c5a162011-05-26 16:46:14 +09001258 intent.setClassName(targetImi.getPackageName(), className);
satokf9f01002011-05-19 21:31:50 +09001259 intent.setAction(SuggestionSpan.ACTION_SUGGESTION_PICKED);
1260 intent.putExtra(SuggestionSpan.SUGGESTION_SPAN_PICKED_BEFORE, originalString);
1261 intent.putExtra(SuggestionSpan.SUGGESTION_SPAN_PICKED_AFTER, suggestions[index]);
1262 intent.putExtra(SuggestionSpan.SUGGESTION_SPAN_PICKED_HASHCODE, span.hashCode());
1263 mContext.sendBroadcast(intent);
1264 return true;
1265 }
1266 }
1267 return false;
1268 }
1269
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001270 void updateFromSettingsLocked() {
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001271 // We are assuming that whoever is changing DEFAULT_INPUT_METHOD and
1272 // ENABLED_INPUT_METHODS is taking care of keeping them correctly in
1273 // sync, so we will never have a DEFAULT_INPUT_METHOD that is not
1274 // enabled.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001275 String id = Settings.Secure.getString(mContext.getContentResolver(),
satokab751aa2010-09-14 19:17:36 +09001276 Settings.Secure.DEFAULT_INPUT_METHOD);
satok03eb319a2010-11-11 18:17:42 +09001277 // There is no input method selected, try to choose new applicable input method.
1278 if (TextUtils.isEmpty(id) && chooseNewDefaultIMELocked()) {
1279 id = Settings.Secure.getString(mContext.getContentResolver(),
1280 Settings.Secure.DEFAULT_INPUT_METHOD);
1281 }
1282 if (!TextUtils.isEmpty(id)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001283 try {
satokab751aa2010-09-14 19:17:36 +09001284 setInputMethodLocked(id, getSelectedInputMethodSubtypeId(id));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001285 } catch (IllegalArgumentException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001286 Slog.w(TAG, "Unknown input method from prefs: " + id, e);
The Android Open Source Project10592532009-03-18 17:39:46 -07001287 mCurMethodId = null;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001288 unbindCurrentMethodLocked(true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001289 }
satokf3db1af2010-11-23 13:34:33 +09001290 mShortcutInputMethodsAndSubtypes.clear();
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001291 } else {
1292 // There is no longer an input method set, so stop any current one.
The Android Open Source Project10592532009-03-18 17:39:46 -07001293 mCurMethodId = null;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001294 unbindCurrentMethodLocked(true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001295 }
1296 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001297
satokab751aa2010-09-14 19:17:36 +09001298 /* package */ void setInputMethodLocked(String id, int subtypeId) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001299 InputMethodInfo info = mMethodMap.get(id);
1300 if (info == null) {
satok913a8922010-08-26 21:53:41 +09001301 throw new IllegalArgumentException("Unknown id: " + id);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001302 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001303
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001304 if (id.equals(mCurMethodId)) {
satokcd7cd292010-11-20 15:46:23 +09001305 InputMethodSubtype subtype = null;
Ken Wakasa586f0512011-01-20 22:31:01 +09001306 if (subtypeId >= 0 && subtypeId < info.getSubtypeCount()) {
1307 subtype = info.getSubtypeAt(subtypeId);
satokcd7cd292010-11-20 15:46:23 +09001308 }
1309 if (subtype != mCurrentSubtype) {
1310 synchronized (mMethodMap) {
satokca830212011-01-13 21:15:04 +09001311 if (subtype != null) {
1312 setSelectedInputMethodAndSubtypeLocked(info, subtypeId, true);
1313 }
satokcd7cd292010-11-20 15:46:23 +09001314 if (mCurMethod != null) {
1315 try {
satok3afd6c02011-11-18 08:38:19 +09001316 refreshImeWindowVisibilityLocked();
satokcd7cd292010-11-20 15:46:23 +09001317 // If subtype is null, try to find the most applicable one from
1318 // getCurrentInputMethodSubtype.
1319 if (subtype == null) {
1320 subtype = getCurrentInputMethodSubtype();
1321 }
1322 mCurMethod.changeInputMethodSubtype(subtype);
1323 } catch (RemoteException e) {
1324 return;
satokab751aa2010-09-14 19:17:36 +09001325 }
1326 }
1327 }
1328 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001329 return;
1330 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001331
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001332 final long ident = Binder.clearCallingIdentity();
1333 try {
satokab751aa2010-09-14 19:17:36 +09001334 // Set a subtype to this input method.
1335 // subtypeId the name of a subtype which will be set.
satok723a27e2010-11-11 14:58:11 +09001336 setSelectedInputMethodAndSubtypeLocked(info, subtypeId, false);
1337 // mCurMethodId should be updated after setSelectedInputMethodAndSubtypeLocked()
1338 // because mCurMethodId is stored as a history in
1339 // setSelectedInputMethodAndSubtypeLocked().
1340 mCurMethodId = id;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001341
1342 if (ActivityManagerNative.isSystemReady()) {
1343 Intent intent = new Intent(Intent.ACTION_INPUT_METHOD_CHANGED);
Dianne Hackborn1c633fc2009-12-08 19:45:14 -08001344 intent.addFlags(Intent.FLAG_RECEIVER_REPLACE_PENDING);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001345 intent.putExtra("input_method_id", id);
1346 mContext.sendBroadcast(intent);
1347 }
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001348 unbindCurrentClientLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001349 } finally {
1350 Binder.restoreCallingIdentity(ident);
1351 }
1352 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001353
satok42c5a162011-05-26 16:46:14 +09001354 @Override
The Android Open Source Project4df24232009-03-05 14:34:35 -08001355 public boolean showSoftInput(IInputMethodClient client, int flags,
1356 ResultReceiver resultReceiver) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001357 int uid = Binder.getCallingUid();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001358 long ident = Binder.clearCallingIdentity();
1359 try {
1360 synchronized (mMethodMap) {
1361 if (mCurClient == null || client == null
1362 || mCurClient.client.asBinder() != client.asBinder()) {
1363 try {
1364 // We need to check if this is the current client with
1365 // focus in the window manager, to allow this call to
1366 // be made before input is started in it.
1367 if (!mIWindowManager.inputMethodClientHasFocus(client)) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001368 Slog.w(TAG, "Ignoring showSoftInput of uid " + uid + ": " + client);
The Android Open Source Project4df24232009-03-05 14:34:35 -08001369 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001370 }
1371 } catch (RemoteException e) {
The Android Open Source Project4df24232009-03-05 14:34:35 -08001372 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001373 }
1374 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001375
Joe Onorato8a9b2202010-02-26 18:56:32 -08001376 if (DEBUG) Slog.v(TAG, "Client requesting input be shown");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001377 return showCurrentInputLocked(flags, resultReceiver);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001378 }
1379 } finally {
1380 Binder.restoreCallingIdentity(ident);
1381 }
1382 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001383
The Android Open Source Project4df24232009-03-05 14:34:35 -08001384 boolean showCurrentInputLocked(int flags, ResultReceiver resultReceiver) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001385 mShowRequested = true;
1386 if ((flags&InputMethodManager.SHOW_IMPLICIT) == 0) {
1387 mShowExplicitlyRequested = true;
1388 }
1389 if ((flags&InputMethodManager.SHOW_FORCED) != 0) {
1390 mShowExplicitlyRequested = true;
1391 mShowForced = true;
1392 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001393
Dianne Hackborncc278702009-09-02 23:07:23 -07001394 if (!mSystemReady) {
1395 return false;
1396 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001397
The Android Open Source Project4df24232009-03-05 14:34:35 -08001398 boolean res = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001399 if (mCurMethod != null) {
The Android Open Source Project4df24232009-03-05 14:34:35 -08001400 executeOrSendMessage(mCurMethod, mCaller.obtainMessageIOO(
1401 MSG_SHOW_SOFT_INPUT, getImeShowFlags(), mCurMethod,
1402 resultReceiver));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001403 mInputShown = true;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07001404 if (mHaveConnection && !mVisibleBound) {
1405 mContext.bindService(mCurIntent, mVisibleConnection, Context.BIND_AUTO_CREATE);
1406 mVisibleBound = true;
1407 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08001408 res = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001409 } else if (mHaveConnection && SystemClock.uptimeMillis()
satok59b424c2011-09-30 17:21:46 +09001410 >= (mLastBindTime+TIME_TO_RECONNECT)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001411 // The client has asked to have the input method shown, but
1412 // we have been sitting here too long with a connection to the
1413 // service and no interface received, so let's disconnect/connect
1414 // to try to prod things along.
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001415 EventLog.writeEvent(EventLogTags.IMF_FORCE_RECONNECT_IME, mCurMethodId,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001416 SystemClock.uptimeMillis()-mLastBindTime,1);
satok59b424c2011-09-30 17:21:46 +09001417 Slog.w(TAG, "Force disconnect/connect to the IME in showCurrentInputLocked()");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001418 mContext.unbindService(this);
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07001419 mContext.bindService(mCurIntent, this, Context.BIND_AUTO_CREATE
1420 | Context.BIND_NOT_VISIBLE);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001421 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001422
The Android Open Source Project4df24232009-03-05 14:34:35 -08001423 return res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001424 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001425
satok42c5a162011-05-26 16:46:14 +09001426 @Override
The Android Open Source Project4df24232009-03-05 14:34:35 -08001427 public boolean hideSoftInput(IInputMethodClient client, int flags,
1428 ResultReceiver resultReceiver) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001429 int uid = Binder.getCallingUid();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001430 long ident = Binder.clearCallingIdentity();
1431 try {
1432 synchronized (mMethodMap) {
1433 if (mCurClient == null || client == null
1434 || mCurClient.client.asBinder() != client.asBinder()) {
1435 try {
1436 // We need to check if this is the current client with
1437 // focus in the window manager, to allow this call to
1438 // be made before input is started in it.
1439 if (!mIWindowManager.inputMethodClientHasFocus(client)) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001440 if (DEBUG) Slog.w(TAG, "Ignoring hideSoftInput of uid "
1441 + uid + ": " + client);
satok15452a42011-10-28 17:58:28 +09001442 setImeWindowVisibilityStatusHiddenLocked();
The Android Open Source Project4df24232009-03-05 14:34:35 -08001443 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001444 }
1445 } catch (RemoteException e) {
satok15452a42011-10-28 17:58:28 +09001446 setImeWindowVisibilityStatusHiddenLocked();
The Android Open Source Project4df24232009-03-05 14:34:35 -08001447 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001448 }
1449 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001450
Joe Onorato8a9b2202010-02-26 18:56:32 -08001451 if (DEBUG) Slog.v(TAG, "Client requesting input be hidden");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001452 return hideCurrentInputLocked(flags, resultReceiver);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001453 }
1454 } finally {
1455 Binder.restoreCallingIdentity(ident);
1456 }
1457 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001458
The Android Open Source Project4df24232009-03-05 14:34:35 -08001459 boolean hideCurrentInputLocked(int flags, ResultReceiver resultReceiver) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001460 if ((flags&InputMethodManager.HIDE_IMPLICIT_ONLY) != 0
1461 && (mShowExplicitlyRequested || mShowForced)) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001462 if (DEBUG) Slog.v(TAG,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001463 "Not hiding: explicit show not cancelled by non-explicit hide");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001464 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001465 }
1466 if (mShowForced && (flags&InputMethodManager.HIDE_NOT_ALWAYS) != 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001467 if (DEBUG) Slog.v(TAG,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001468 "Not hiding: forced show not cancelled by not-always hide");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001469 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001470 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08001471 boolean res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001472 if (mInputShown && mCurMethod != null) {
The Android Open Source Project4df24232009-03-05 14:34:35 -08001473 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
1474 MSG_HIDE_SOFT_INPUT, mCurMethod, resultReceiver));
1475 res = true;
1476 } else {
1477 res = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001478 }
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07001479 if (mHaveConnection && mVisibleBound) {
1480 mContext.unbindService(mVisibleConnection);
1481 mVisibleBound = false;
1482 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001483 mInputShown = false;
1484 mShowRequested = false;
1485 mShowExplicitlyRequested = false;
1486 mShowForced = false;
The Android Open Source Project4df24232009-03-05 14:34:35 -08001487 return res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001488 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001489
satok42c5a162011-05-26 16:46:14 +09001490 @Override
Dianne Hackborn7663d802012-02-24 13:08:49 -08001491 public InputBindResult windowGainedFocus(IInputMethodClient client, IBinder windowToken,
1492 int controlFlags, int softInputMode, int windowFlags,
1493 EditorInfo attribute, IInputContext inputContext) {
1494 InputBindResult res = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001495 long ident = Binder.clearCallingIdentity();
1496 try {
1497 synchronized (mMethodMap) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001498 if (DEBUG) Slog.v(TAG, "windowGainedFocus: " + client.asBinder()
Dianne Hackborn7663d802012-02-24 13:08:49 -08001499 + " controlFlags=#" + Integer.toHexString(controlFlags)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001500 + " softInputMode=#" + Integer.toHexString(softInputMode)
Dianne Hackborn7663d802012-02-24 13:08:49 -08001501 + " windowFlags=#" + Integer.toHexString(windowFlags));
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001502
Dianne Hackborn7663d802012-02-24 13:08:49 -08001503 ClientState cs = mClients.get(client.asBinder());
1504 if (cs == null) {
1505 throw new IllegalArgumentException("unknown client "
1506 + client.asBinder());
1507 }
1508
1509 try {
1510 if (!mIWindowManager.inputMethodClientHasFocus(cs.client)) {
1511 // Check with the window manager to make sure this client actually
1512 // has a window with focus. If not, reject. This is thread safe
1513 // because if the focus changes some time before or after, the
1514 // next client receiving focus that has any interest in input will
1515 // be calling through here after that change happens.
1516 Slog.w(TAG, "Focus gain on non-focused client " + cs.client
1517 + " (uid=" + cs.uid + " pid=" + cs.pid + ")");
1518 return null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001519 }
Dianne Hackborn7663d802012-02-24 13:08:49 -08001520 } catch (RemoteException e) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001521 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001522
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001523 if (mCurFocusedWindow == windowToken) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001524 Slog.w(TAG, "Window already focused, ignoring focus gain of: " + client);
Dianne Hackborn7663d802012-02-24 13:08:49 -08001525 if (attribute != null) {
1526 return startInputUncheckedLocked(cs, inputContext, attribute,
1527 controlFlags);
1528 }
1529 return null;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001530 }
1531 mCurFocusedWindow = windowToken;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001532
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08001533 // Should we auto-show the IME even if the caller has not
1534 // specified what should be done with it?
1535 // We only do this automatically if the window can resize
1536 // to accommodate the IME (so what the user sees will give
1537 // them good context without input information being obscured
1538 // by the IME) or if running on a large screen where there
1539 // is more room for the target window + IME.
1540 final boolean doAutoShow =
1541 (softInputMode & WindowManager.LayoutParams.SOFT_INPUT_MASK_ADJUST)
1542 == WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE
1543 || mRes.getConfiguration().isLayoutSizeAtLeast(
1544 Configuration.SCREENLAYOUT_SIZE_LARGE);
Dianne Hackborn7663d802012-02-24 13:08:49 -08001545 final boolean isTextEditor =
1546 (controlFlags&InputMethodManager.CONTROL_WINDOW_IS_TEXT_EDITOR) != 0;
1547
1548 // We want to start input before showing the IME, but after closing
1549 // it. We want to do this after closing it to help the IME disappear
1550 // more quickly (not get stuck behind it initializing itself for the
1551 // new focused input, even if its window wants to hide the IME).
1552 boolean didStart = false;
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08001553
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001554 switch (softInputMode&WindowManager.LayoutParams.SOFT_INPUT_MASK_STATE) {
1555 case WindowManager.LayoutParams.SOFT_INPUT_STATE_UNSPECIFIED:
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08001556 if (!isTextEditor || !doAutoShow) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001557 if (WindowManager.LayoutParams.mayUseInputMethod(windowFlags)) {
1558 // There is no focus view, and this window will
1559 // be behind any soft input window, so hide the
1560 // soft input window if it is shown.
Joe Onorato8a9b2202010-02-26 18:56:32 -08001561 if (DEBUG) Slog.v(TAG, "Unspecified window will hide input");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001562 hideCurrentInputLocked(InputMethodManager.HIDE_NOT_ALWAYS, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001563 }
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08001564 } else if (isTextEditor && doAutoShow && (softInputMode &
1565 WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001566 // There is a focus view, and we are navigating forward
1567 // into the window, so show the input window for the user.
Dianne Hackborn7663d802012-02-24 13:08:49 -08001568 // We only do this automatically if the window can resize
1569 // to accommodate the IME (so what the user sees will give
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08001570 // them good context without input information being obscured
1571 // by the IME) or if running on a large screen where there
1572 // is more room for the target window + IME.
Joe Onorato8a9b2202010-02-26 18:56:32 -08001573 if (DEBUG) Slog.v(TAG, "Unspecified window will show input");
Dianne Hackborn7663d802012-02-24 13:08:49 -08001574 if (attribute != null) {
1575 res = startInputUncheckedLocked(cs, inputContext, attribute,
1576 controlFlags);
1577 didStart = true;
1578 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08001579 showCurrentInputLocked(InputMethodManager.SHOW_IMPLICIT, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001580 }
1581 break;
1582 case WindowManager.LayoutParams.SOFT_INPUT_STATE_UNCHANGED:
1583 // Do nothing.
1584 break;
1585 case WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN:
1586 if ((softInputMode &
1587 WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001588 if (DEBUG) Slog.v(TAG, "Window asks to hide input going forward");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001589 hideCurrentInputLocked(0, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001590 }
1591 break;
1592 case WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN:
Joe Onorato8a9b2202010-02-26 18:56:32 -08001593 if (DEBUG) Slog.v(TAG, "Window asks to hide input");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001594 hideCurrentInputLocked(0, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001595 break;
1596 case WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE:
1597 if ((softInputMode &
1598 WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001599 if (DEBUG) Slog.v(TAG, "Window asks to show input going forward");
Dianne Hackborn7663d802012-02-24 13:08:49 -08001600 if (attribute != null) {
1601 res = startInputUncheckedLocked(cs, inputContext, attribute,
1602 controlFlags);
1603 didStart = true;
1604 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08001605 showCurrentInputLocked(InputMethodManager.SHOW_IMPLICIT, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001606 }
1607 break;
1608 case WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE:
Joe Onorato8a9b2202010-02-26 18:56:32 -08001609 if (DEBUG) Slog.v(TAG, "Window asks to always show input");
Dianne Hackborn7663d802012-02-24 13:08:49 -08001610 if (attribute != null) {
1611 res = startInputUncheckedLocked(cs, inputContext, attribute,
1612 controlFlags);
1613 didStart = true;
1614 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08001615 showCurrentInputLocked(InputMethodManager.SHOW_IMPLICIT, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001616 break;
1617 }
Dianne Hackborn7663d802012-02-24 13:08:49 -08001618
1619 if (!didStart && attribute != null) {
1620 res = startInputUncheckedLocked(cs, inputContext, attribute,
1621 controlFlags);
1622 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001623 }
1624 } finally {
1625 Binder.restoreCallingIdentity(ident);
1626 }
Dianne Hackborn7663d802012-02-24 13:08:49 -08001627
1628 return res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001629 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001630
satok42c5a162011-05-26 16:46:14 +09001631 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001632 public void showInputMethodPickerFromClient(IInputMethodClient client) {
1633 synchronized (mMethodMap) {
1634 if (mCurClient == null || client == null
1635 || mCurClient.client.asBinder() != client.asBinder()) {
satok47a44912010-10-06 16:03:58 +09001636 Slog.w(TAG, "Ignoring showInputMethodPickerFromClient of uid "
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001637 + Binder.getCallingUid() + ": " + client);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001638 }
1639
satok440aab52010-11-25 09:43:11 +09001640 // Always call subtype picker, because subtype picker is a superset of input method
1641 // picker.
satokab751aa2010-09-14 19:17:36 +09001642 mHandler.sendEmptyMessage(MSG_SHOW_IM_SUBTYPE_PICKER);
1643 }
1644 }
1645
satok42c5a162011-05-26 16:46:14 +09001646 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001647 public void setInputMethod(IBinder token, String id) {
satok28203512010-11-24 11:06:49 +09001648 setInputMethodWithSubtypeId(token, id, NOT_A_SUBTYPE_ID);
1649 }
1650
satok42c5a162011-05-26 16:46:14 +09001651 @Override
satok28203512010-11-24 11:06:49 +09001652 public void setInputMethodAndSubtype(IBinder token, String id, InputMethodSubtype subtype) {
1653 synchronized (mMethodMap) {
1654 if (subtype != null) {
1655 setInputMethodWithSubtypeId(token, id, getSubtypeIdFromHashCode(
1656 mMethodMap.get(id), subtype.hashCode()));
1657 } else {
1658 setInputMethod(token, id);
1659 }
1660 }
satokab751aa2010-09-14 19:17:36 +09001661 }
1662
satok42c5a162011-05-26 16:46:14 +09001663 @Override
satokb416a71e2010-11-25 20:42:14 +09001664 public void showInputMethodAndSubtypeEnablerFromClient(
satok217f5482010-12-15 05:19:19 +09001665 IInputMethodClient client, String inputMethodId) {
satokb416a71e2010-11-25 20:42:14 +09001666 synchronized (mMethodMap) {
1667 if (mCurClient == null || client == null
1668 || mCurClient.client.asBinder() != client.asBinder()) {
1669 Slog.w(TAG, "Ignoring showInputMethodAndSubtypeEnablerFromClient of: " + client);
1670 }
satok7fee71f2010-12-17 18:54:26 +09001671 executeOrSendMessage(mCurMethod, mCaller.obtainMessageO(
1672 MSG_SHOW_IM_SUBTYPE_ENABLER, inputMethodId));
satokb416a71e2010-11-25 20:42:14 +09001673 }
1674 }
1675
satok4fc87d62011-05-20 16:13:43 +09001676 @Override
satok735cf382010-11-11 20:40:09 +09001677 public boolean switchToLastInputMethod(IBinder token) {
1678 synchronized (mMethodMap) {
satokc445bcd2011-01-25 18:57:24 +09001679 final Pair<String, String> lastIme = mSettings.getLastInputMethodAndSubtypeLocked();
satok4fc87d62011-05-20 16:13:43 +09001680 final InputMethodInfo lastImi;
satok208d5632011-05-20 22:13:38 +09001681 if (lastIme != null) {
satok4fc87d62011-05-20 16:13:43 +09001682 lastImi = mMethodMap.get(lastIme.first);
1683 } else {
1684 lastImi = null;
satok735cf382010-11-11 20:40:09 +09001685 }
satok4fc87d62011-05-20 16:13:43 +09001686 String targetLastImiId = null;
1687 int subtypeId = NOT_A_SUBTYPE_ID;
1688 if (lastIme != null && lastImi != null) {
1689 final boolean imiIdIsSame = lastImi.getId().equals(mCurMethodId);
1690 final int lastSubtypeHash = Integer.valueOf(lastIme.second);
1691 final int currentSubtypeHash = mCurrentSubtype == null ? NOT_A_SUBTYPE_ID
1692 : mCurrentSubtype.hashCode();
1693 // If the last IME is the same as the current IME and the last subtype is not
1694 // defined, there is no need to switch to the last IME.
1695 if (!imiIdIsSame || lastSubtypeHash != currentSubtypeHash) {
1696 targetLastImiId = lastIme.first;
1697 subtypeId = getSubtypeIdFromHashCode(lastImi, lastSubtypeHash);
1698 }
1699 }
1700
1701 if (TextUtils.isEmpty(targetLastImiId) && !canAddToLastInputMethod(mCurrentSubtype)) {
1702 // This is a safety net. If the currentSubtype can't be added to the history
1703 // and the framework couldn't find the last ime, we will make the last ime be
1704 // the most applicable enabled keyboard subtype of the system imes.
1705 final List<InputMethodInfo> enabled = mSettings.getEnabledInputMethodListLocked();
1706 if (enabled != null) {
1707 final int N = enabled.size();
1708 final String locale = mCurrentSubtype == null
1709 ? mRes.getConfiguration().locale.toString()
1710 : mCurrentSubtype.getLocale();
1711 for (int i = 0; i < N; ++i) {
1712 final InputMethodInfo imi = enabled.get(i);
1713 if (imi.getSubtypeCount() > 0 && isSystemIme(imi)) {
1714 InputMethodSubtype keyboardSubtype =
1715 findLastResortApplicableSubtypeLocked(mRes, getSubtypes(imi),
1716 SUBTYPE_MODE_KEYBOARD, locale, true);
1717 if (keyboardSubtype != null) {
1718 targetLastImiId = imi.getId();
1719 subtypeId = getSubtypeIdFromHashCode(
1720 imi, keyboardSubtype.hashCode());
1721 if(keyboardSubtype.getLocale().equals(locale)) {
1722 break;
1723 }
1724 }
1725 }
1726 }
1727 }
1728 }
1729
1730 if (!TextUtils.isEmpty(targetLastImiId)) {
1731 if (DEBUG) {
1732 Slog.d(TAG, "Switch to: " + lastImi.getId() + ", " + lastIme.second
1733 + ", from: " + mCurMethodId + ", " + subtypeId);
1734 }
1735 setInputMethodWithSubtypeId(token, targetLastImiId, subtypeId);
1736 return true;
1737 } else {
1738 return false;
1739 }
satok735cf382010-11-11 20:40:09 +09001740 }
1741 }
1742
satoke7c6998e2011-06-03 17:57:59 +09001743 @Override
satok688bd472012-02-09 20:09:17 +09001744 public boolean switchToNextInputMethod(IBinder token, boolean onlyCurrentIme) {
1745 synchronized (mMethodMap) {
1746 final ImeSubtypeListItem nextSubtype = mImListManager.getNextInputMethod(
1747 onlyCurrentIme, mMethodMap.get(mCurMethodId), mCurrentSubtype);
1748 if (nextSubtype == null) {
1749 return false;
1750 }
1751 setInputMethodWithSubtypeId(token, nextSubtype.mImi.getId(), nextSubtype.mSubtypeId);
1752 return true;
1753 }
1754 }
1755
1756 @Override
satok68f1b782011-04-11 14:26:04 +09001757 public InputMethodSubtype getLastInputMethodSubtype() {
1758 synchronized (mMethodMap) {
1759 final Pair<String, String> lastIme = mSettings.getLastInputMethodAndSubtypeLocked();
1760 // TODO: Handle the case of the last IME with no subtypes
1761 if (lastIme == null || TextUtils.isEmpty(lastIme.first)
1762 || TextUtils.isEmpty(lastIme.second)) return null;
1763 final InputMethodInfo lastImi = mMethodMap.get(lastIme.first);
1764 if (lastImi == null) return null;
1765 try {
1766 final int lastSubtypeHash = Integer.valueOf(lastIme.second);
satok0e7d7d62011-07-05 13:28:06 +09001767 final int lastSubtypeId = getSubtypeIdFromHashCode(lastImi, lastSubtypeHash);
1768 if (lastSubtypeId < 0 || lastSubtypeId >= lastImi.getSubtypeCount()) {
1769 return null;
1770 }
1771 return lastImi.getSubtypeAt(lastSubtypeId);
satok68f1b782011-04-11 14:26:04 +09001772 } catch (NumberFormatException e) {
1773 return null;
1774 }
1775 }
1776 }
1777
satoke7c6998e2011-06-03 17:57:59 +09001778 @Override
satokee5e77c2011-09-02 18:50:15 +09001779 public void setAdditionalInputMethodSubtypes(String imiId, InputMethodSubtype[] subtypes) {
satok91e88122011-07-18 11:11:42 +09001780 // By this IPC call, only a process which shares the same uid with the IME can add
1781 // additional input method subtypes to the IME.
satokee5e77c2011-09-02 18:50:15 +09001782 if (TextUtils.isEmpty(imiId) || subtypes == null || subtypes.length == 0) return;
satoke7c6998e2011-06-03 17:57:59 +09001783 synchronized (mMethodMap) {
satok91e88122011-07-18 11:11:42 +09001784 final InputMethodInfo imi = mMethodMap.get(imiId);
satokee5e77c2011-09-02 18:50:15 +09001785 if (imi == null) return;
satok91e88122011-07-18 11:11:42 +09001786 final PackageManager pm = mContext.getPackageManager();
1787 final String[] packageInfos = pm.getPackagesForUid(Binder.getCallingUid());
1788 if (packageInfos != null) {
1789 final int packageNum = packageInfos.length;
1790 for (int i = 0; i < packageNum; ++i) {
1791 if (packageInfos[i].equals(imi.getPackageName())) {
1792 mFileManager.addInputMethodSubtypes(imi, subtypes);
satokc5933802011-08-31 21:26:04 +09001793 final long ident = Binder.clearCallingIdentity();
1794 try {
1795 buildInputMethodListLocked(mMethodList, mMethodMap);
1796 } finally {
1797 Binder.restoreCallingIdentity(ident);
1798 }
satokee5e77c2011-09-02 18:50:15 +09001799 return;
satok91e88122011-07-18 11:11:42 +09001800 }
1801 }
1802 }
satoke7c6998e2011-06-03 17:57:59 +09001803 }
satokee5e77c2011-09-02 18:50:15 +09001804 return;
satoke7c6998e2011-06-03 17:57:59 +09001805 }
1806
satok28203512010-11-24 11:06:49 +09001807 private void setInputMethodWithSubtypeId(IBinder token, String id, int subtypeId) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001808 synchronized (mMethodMap) {
1809 if (token == null) {
1810 if (mContext.checkCallingOrSelfPermission(
1811 android.Manifest.permission.WRITE_SECURE_SETTINGS)
1812 != PackageManager.PERMISSION_GRANTED) {
1813 throw new SecurityException(
1814 "Using null token requires permission "
1815 + android.Manifest.permission.WRITE_SECURE_SETTINGS);
1816 }
1817 } else if (mCurToken != token) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001818 Slog.w(TAG, "Ignoring setInputMethod of uid " + Binder.getCallingUid()
1819 + " token: " + token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001820 return;
1821 }
1822
satokc5933802011-08-31 21:26:04 +09001823 final long ident = Binder.clearCallingIdentity();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001824 try {
satokab751aa2010-09-14 19:17:36 +09001825 setInputMethodLocked(id, subtypeId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001826 } finally {
1827 Binder.restoreCallingIdentity(ident);
1828 }
1829 }
1830 }
1831
satok42c5a162011-05-26 16:46:14 +09001832 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001833 public void hideMySoftInput(IBinder token, int flags) {
1834 synchronized (mMethodMap) {
1835 if (token == null || mCurToken != token) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001836 if (DEBUG) Slog.w(TAG, "Ignoring hideInputMethod of uid "
1837 + Binder.getCallingUid() + " token: " + token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001838 return;
1839 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001840 long ident = Binder.clearCallingIdentity();
1841 try {
The Android Open Source Project4df24232009-03-05 14:34:35 -08001842 hideCurrentInputLocked(flags, null);
1843 } finally {
1844 Binder.restoreCallingIdentity(ident);
1845 }
1846 }
1847 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001848
satok42c5a162011-05-26 16:46:14 +09001849 @Override
The Android Open Source Project4df24232009-03-05 14:34:35 -08001850 public void showMySoftInput(IBinder token, int flags) {
1851 synchronized (mMethodMap) {
1852 if (token == null || mCurToken != token) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001853 Slog.w(TAG, "Ignoring showMySoftInput of uid "
1854 + Binder.getCallingUid() + " token: " + token);
The Android Open Source Project4df24232009-03-05 14:34:35 -08001855 return;
1856 }
1857 long ident = Binder.clearCallingIdentity();
1858 try {
1859 showCurrentInputLocked(flags, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001860 } finally {
1861 Binder.restoreCallingIdentity(ident);
1862 }
1863 }
1864 }
1865
1866 void setEnabledSessionInMainThread(SessionState session) {
1867 if (mEnabledSession != session) {
1868 if (mEnabledSession != null) {
1869 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001870 if (DEBUG) Slog.v(TAG, "Disabling: " + mEnabledSession);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001871 mEnabledSession.method.setSessionEnabled(
1872 mEnabledSession.session, false);
1873 } catch (RemoteException e) {
1874 }
1875 }
1876 mEnabledSession = session;
1877 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001878 if (DEBUG) Slog.v(TAG, "Enabling: " + mEnabledSession);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001879 session.method.setSessionEnabled(
1880 session.session, true);
1881 } catch (RemoteException e) {
1882 }
1883 }
1884 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001885
satok42c5a162011-05-26 16:46:14 +09001886 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001887 public boolean handleMessage(Message msg) {
1888 HandlerCaller.SomeArgs args;
1889 switch (msg.what) {
1890 case MSG_SHOW_IM_PICKER:
1891 showInputMethodMenu();
1892 return true;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001893
satokab751aa2010-09-14 19:17:36 +09001894 case MSG_SHOW_IM_SUBTYPE_PICKER:
1895 showInputMethodSubtypeMenu();
1896 return true;
1897
satok47a44912010-10-06 16:03:58 +09001898 case MSG_SHOW_IM_SUBTYPE_ENABLER:
satok217f5482010-12-15 05:19:19 +09001899 args = (HandlerCaller.SomeArgs)msg.obj;
satok7fee71f2010-12-17 18:54:26 +09001900 showInputMethodAndSubtypeEnabler((String)args.arg1);
satok217f5482010-12-15 05:19:19 +09001901 return true;
1902
1903 case MSG_SHOW_IM_CONFIG:
1904 showConfigureInputMethods();
satok47a44912010-10-06 16:03:58 +09001905 return true;
1906
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001907 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001908
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001909 case MSG_UNBIND_INPUT:
1910 try {
1911 ((IInputMethod)msg.obj).unbindInput();
1912 } catch (RemoteException e) {
1913 // There is nothing interesting about the method dying.
1914 }
1915 return true;
1916 case MSG_BIND_INPUT:
1917 args = (HandlerCaller.SomeArgs)msg.obj;
1918 try {
1919 ((IInputMethod)args.arg1).bindInput((InputBinding)args.arg2);
1920 } catch (RemoteException e) {
1921 }
1922 return true;
1923 case MSG_SHOW_SOFT_INPUT:
The Android Open Source Project4df24232009-03-05 14:34:35 -08001924 args = (HandlerCaller.SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001925 try {
The Android Open Source Project4df24232009-03-05 14:34:35 -08001926 ((IInputMethod)args.arg1).showSoftInput(msg.arg1,
1927 (ResultReceiver)args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001928 } catch (RemoteException e) {
1929 }
1930 return true;
1931 case MSG_HIDE_SOFT_INPUT:
The Android Open Source Project4df24232009-03-05 14:34:35 -08001932 args = (HandlerCaller.SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001933 try {
The Android Open Source Project4df24232009-03-05 14:34:35 -08001934 ((IInputMethod)args.arg1).hideSoftInput(0,
1935 (ResultReceiver)args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001936 } catch (RemoteException e) {
1937 }
1938 return true;
1939 case MSG_ATTACH_TOKEN:
1940 args = (HandlerCaller.SomeArgs)msg.obj;
1941 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001942 if (DEBUG) Slog.v(TAG, "Sending attach of token: " + args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001943 ((IInputMethod)args.arg1).attachToken((IBinder)args.arg2);
1944 } catch (RemoteException e) {
1945 }
1946 return true;
1947 case MSG_CREATE_SESSION:
1948 args = (HandlerCaller.SomeArgs)msg.obj;
1949 try {
1950 ((IInputMethod)args.arg1).createSession(
1951 (IInputMethodCallback)args.arg2);
1952 } catch (RemoteException e) {
1953 }
1954 return true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001955 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001956
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001957 case MSG_START_INPUT:
1958 args = (HandlerCaller.SomeArgs)msg.obj;
1959 try {
1960 SessionState session = (SessionState)args.arg1;
1961 setEnabledSessionInMainThread(session);
1962 session.method.startInput((IInputContext)args.arg2,
1963 (EditorInfo)args.arg3);
1964 } catch (RemoteException e) {
1965 }
1966 return true;
1967 case MSG_RESTART_INPUT:
1968 args = (HandlerCaller.SomeArgs)msg.obj;
1969 try {
1970 SessionState session = (SessionState)args.arg1;
1971 setEnabledSessionInMainThread(session);
1972 session.method.restartInput((IInputContext)args.arg2,
1973 (EditorInfo)args.arg3);
1974 } catch (RemoteException e) {
1975 }
1976 return true;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001977
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001978 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001979
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001980 case MSG_UNBIND_METHOD:
1981 try {
1982 ((IInputMethodClient)msg.obj).onUnbindMethod(msg.arg1);
1983 } catch (RemoteException e) {
1984 // There is nothing interesting about the last client dying.
1985 }
1986 return true;
1987 case MSG_BIND_METHOD:
1988 args = (HandlerCaller.SomeArgs)msg.obj;
1989 try {
1990 ((IInputMethodClient)args.arg1).onBindMethod(
1991 (InputBindResult)args.arg2);
1992 } catch (RemoteException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001993 Slog.w(TAG, "Client died receiving input method " + args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001994 }
1995 return true;
1996 }
1997 return false;
1998 }
1999
Brandon Ballinger6da35a02009-10-21 00:38:13 -07002000 private boolean isSystemIme(InputMethodInfo inputMethod) {
2001 return (inputMethod.getServiceInfo().applicationInfo.flags
2002 & ApplicationInfo.FLAG_SYSTEM) != 0;
2003 }
2004
Ken Wakasa586f0512011-01-20 22:31:01 +09002005 private static ArrayList<InputMethodSubtype> getSubtypes(InputMethodInfo imi) {
2006 ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>();
2007 final int subtypeCount = imi.getSubtypeCount();
2008 for (int i = 0; i < subtypeCount; ++i) {
2009 subtypes.add(imi.getSubtypeAt(i));
2010 }
2011 return subtypes;
2012 }
2013
satoka86f5e42011-09-02 17:12:42 +09002014
2015 private static ArrayList<InputMethodSubtype> getOverridingImplicitlyEnabledSubtypes(
2016 InputMethodInfo imi, String mode) {
2017 ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>();
2018 final int subtypeCount = imi.getSubtypeCount();
2019 for (int i = 0; i < subtypeCount; ++i) {
2020 final InputMethodSubtype subtype = imi.getSubtypeAt(i);
2021 if (subtype.overridesImplicitlyEnabledSubtype() && subtype.getMode().equals(mode)) {
2022 subtypes.add(subtype);
2023 }
2024 }
2025 return subtypes;
2026 }
2027
satokdc9ddae2011-10-06 12:22:36 +09002028 private InputMethodInfo getMostApplicableDefaultIMELocked() {
satokd87c2592010-09-29 11:52:06 +09002029 List<InputMethodInfo> enabled = mSettings.getEnabledInputMethodListLocked();
Brandon Ballinger6da35a02009-10-21 00:38:13 -07002030 if (enabled != null && enabled.size() > 0) {
Dianne Hackborn83e48f52010-03-23 23:03:25 -07002031 // We'd prefer to fall back on a system IME, since that is safer.
2032 int i=enabled.size();
2033 while (i > 0) {
2034 i--;
satokdc9ddae2011-10-06 12:22:36 +09002035 final InputMethodInfo imi = enabled.get(i);
2036 if (isSystemIme(imi) && !imi.isAuxiliaryIme()) {
Dianne Hackborn83e48f52010-03-23 23:03:25 -07002037 break;
2038 }
2039 }
satokdc9ddae2011-10-06 12:22:36 +09002040 return enabled.get(i);
2041 }
2042 return null;
2043 }
2044
2045 private boolean chooseNewDefaultIMELocked() {
2046 final InputMethodInfo imi = getMostApplicableDefaultIMELocked();
2047 if (imi != null) {
satok03eb319a2010-11-11 18:17:42 +09002048 if (DEBUG) {
2049 Slog.d(TAG, "New default IME was selected: " + imi.getId());
2050 }
satok723a27e2010-11-11 14:58:11 +09002051 resetSelectedInputMethodAndSubtypeLocked(imi.getId());
Brandon Ballinger6da35a02009-10-21 00:38:13 -07002052 return true;
2053 }
2054
2055 return false;
2056 }
2057
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002058 void buildInputMethodListLocked(ArrayList<InputMethodInfo> list,
2059 HashMap<String, InputMethodInfo> map) {
2060 list.clear();
2061 map.clear();
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002062
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002063 PackageManager pm = mContext.getPackageManager();
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08002064 final Configuration config = mRes.getConfiguration();
Amith Yamasanie861ec12010-03-24 21:39:27 -07002065 final boolean haveHardKeyboard = config.keyboard == Configuration.KEYBOARD_QWERTY;
2066 String disabledSysImes = Settings.Secure.getString(mContext.getContentResolver(),
2067 Secure.DISABLED_SYSTEM_INPUT_METHODS);
2068 if (disabledSysImes == null) disabledSysImes = "";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002069
2070 List<ResolveInfo> services = pm.queryIntentServices(
2071 new Intent(InputMethod.SERVICE_INTERFACE),
2072 PackageManager.GET_META_DATA);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002073
satoke7c6998e2011-06-03 17:57:59 +09002074 final HashMap<String, List<InputMethodSubtype>> additionalSubtypes =
2075 mFileManager.getAllAdditionalInputMethodSubtypes();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002076 for (int i = 0; i < services.size(); ++i) {
2077 ResolveInfo ri = services.get(i);
2078 ServiceInfo si = ri.serviceInfo;
2079 ComponentName compName = new ComponentName(si.packageName, si.name);
2080 if (!android.Manifest.permission.BIND_INPUT_METHOD.equals(
2081 si.permission)) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002082 Slog.w(TAG, "Skipping input method " + compName
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002083 + ": it does not require the permission "
2084 + android.Manifest.permission.BIND_INPUT_METHOD);
2085 continue;
2086 }
2087
Joe Onorato8a9b2202010-02-26 18:56:32 -08002088 if (DEBUG) Slog.d(TAG, "Checking " + compName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002089
2090 try {
satoke7c6998e2011-06-03 17:57:59 +09002091 InputMethodInfo p = new InputMethodInfo(mContext, ri, additionalSubtypes);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002092 list.add(p);
Amith Yamasanie861ec12010-03-24 21:39:27 -07002093 final String id = p.getId();
2094 map.put(id, p);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002095
Amith Yamasanie861ec12010-03-24 21:39:27 -07002096 // System IMEs are enabled by default, unless there's a hard keyboard
2097 // and the system IME was explicitly disabled
2098 if (isSystemIme(p) && (!haveHardKeyboard || disabledSysImes.indexOf(id) < 0)) {
2099 setInputMethodEnabledLocked(id, true);
Brandon Ballinger6da35a02009-10-21 00:38:13 -07002100 }
2101
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002102 if (DEBUG) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002103 Slog.d(TAG, "Found a third-party input method " + p);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002104 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002105
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002106 } catch (XmlPullParserException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002107 Slog.w(TAG, "Unable to load input method " + compName, e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002108 } catch (IOException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002109 Slog.w(TAG, "Unable to load input method " + compName, e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002110 }
2111 }
Brandon Ballinger6da35a02009-10-21 00:38:13 -07002112
2113 String defaultIme = Settings.Secure.getString(mContext
2114 .getContentResolver(), Settings.Secure.DEFAULT_INPUT_METHOD);
satok913a8922010-08-26 21:53:41 +09002115 if (!TextUtils.isEmpty(defaultIme) && !map.containsKey(defaultIme)) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002116 if (chooseNewDefaultIMELocked()) {
Brandon Ballinger6da35a02009-10-21 00:38:13 -07002117 updateFromSettingsLocked();
2118 }
2119 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002120 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002121
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002122 // ----------------------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002123
satokab751aa2010-09-14 19:17:36 +09002124 private void showInputMethodMenu() {
2125 showInputMethodMenuInternal(false);
2126 }
2127
2128 private void showInputMethodSubtypeMenu() {
2129 showInputMethodMenuInternal(true);
2130 }
2131
satok217f5482010-12-15 05:19:19 +09002132 private void showInputMethodAndSubtypeEnabler(String inputMethodId) {
Tadashi G. Takaokaf49688f2011-01-20 17:56:13 +09002133 Intent intent = new Intent(Settings.ACTION_INPUT_METHOD_SUBTYPE_SETTINGS);
satok47a44912010-10-06 16:03:58 +09002134 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
satok86417ea2010-10-27 14:11:03 +09002135 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED
2136 | Intent.FLAG_ACTIVITY_CLEAR_TOP);
satok7fee71f2010-12-17 18:54:26 +09002137 if (!TextUtils.isEmpty(inputMethodId)) {
Tadashi G. Takaoka25480202011-01-20 23:13:02 +09002138 intent.putExtra(Settings.EXTRA_INPUT_METHOD_ID, inputMethodId);
satok7fee71f2010-12-17 18:54:26 +09002139 }
satok217f5482010-12-15 05:19:19 +09002140 mContext.startActivity(intent);
2141 }
2142
2143 private void showConfigureInputMethods() {
2144 Intent intent = new Intent(Settings.ACTION_INPUT_METHOD_SETTINGS);
2145 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
2146 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED
2147 | Intent.FLAG_ACTIVITY_CLEAR_TOP);
satok47a44912010-10-06 16:03:58 +09002148 mContext.startActivity(intent);
2149 }
2150
satokab751aa2010-09-14 19:17:36 +09002151 private void showInputMethodMenuInternal(boolean showSubtypes) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002152 if (DEBUG) Slog.v(TAG, "Show switching menu");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002153
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002154 final Context context = mContext;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002155 final PackageManager pm = context.getPackageManager();
satokbc81b692011-08-26 16:22:22 +09002156 final boolean isScreenLocked = mKeyguardManager != null
2157 && mKeyguardManager.isKeyguardLocked() && mKeyguardManager.isKeyguardSecure();
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002158
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002159 String lastInputMethodId = Settings.Secure.getString(context
2160 .getContentResolver(), Settings.Secure.DEFAULT_INPUT_METHOD);
satokab751aa2010-09-14 19:17:36 +09002161 int lastInputMethodSubtypeId = getSelectedInputMethodSubtypeId(lastInputMethodId);
Joe Onorato8a9b2202010-02-26 18:56:32 -08002162 if (DEBUG) Slog.v(TAG, "Current IME: " + lastInputMethodId);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002163
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002164 synchronized (mMethodMap) {
satokbb4aa062011-01-19 21:40:27 +09002165 final HashMap<InputMethodInfo, List<InputMethodSubtype>> immis =
2166 getExplicitlyOrImplicitlyEnabledInputMethodsAndSubtypeListLocked();
satok7f35c8c2010-10-07 21:13:11 +09002167 if (immis == null || immis.size() == 0) {
2168 return;
2169 }
2170
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002171 hideInputMethodMenuLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002172
satok688bd472012-02-09 20:09:17 +09002173 final List<ImeSubtypeListItem> imList =
2174 mImListManager.getSortedInputMethodAndSubtypeList(
2175 showSubtypes, mInputShown, isScreenLocked);
satok913a8922010-08-26 21:53:41 +09002176
satokc3690562012-01-10 20:14:43 +09002177 if (lastInputMethodSubtypeId == NOT_A_SUBTYPE_ID) {
2178 final InputMethodSubtype currentSubtype = getCurrentInputMethodSubtype();
2179 if (currentSubtype != null) {
2180 final InputMethodInfo currentImi = mMethodMap.get(mCurMethodId);
2181 lastInputMethodSubtypeId =
2182 getSubtypeIdFromHashCode(currentImi, currentSubtype.hashCode());
2183 }
2184 }
2185
Ken Wakasa761eb372011-03-04 19:06:18 +09002186 final int N = imList.size();
satokab751aa2010-09-14 19:17:36 +09002187 mIms = new InputMethodInfo[N];
2188 mSubtypeIds = new int[N];
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002189 int checkedItem = 0;
2190 for (int i = 0; i < N; ++i) {
Ken Wakasa05dbb652011-08-22 15:22:43 +09002191 final ImeSubtypeListItem item = imList.get(i);
2192 mIms[i] = item.mImi;
2193 mSubtypeIds[i] = item.mSubtypeId;
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002194 if (mIms[i].getId().equals(lastInputMethodId)) {
satokab751aa2010-09-14 19:17:36 +09002195 int subtypeId = mSubtypeIds[i];
2196 if ((subtypeId == NOT_A_SUBTYPE_ID)
2197 || (lastInputMethodSubtypeId == NOT_A_SUBTYPE_ID && subtypeId == 0)
2198 || (subtypeId == lastInputMethodSubtypeId)) {
2199 checkedItem = i;
2200 }
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002201 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002202 }
satokab751aa2010-09-14 19:17:36 +09002203
Ken Wakasa05dbb652011-08-22 15:22:43 +09002204 final TypedArray a = context.obtainStyledAttributes(null,
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002205 com.android.internal.R.styleable.DialogPreference,
2206 com.android.internal.R.attr.alertDialogStyle, 0);
2207 mDialogBuilder = new AlertDialog.Builder(context)
2208 .setTitle(com.android.internal.R.string.select_input_method)
2209 .setOnCancelListener(new OnCancelListener() {
satok42c5a162011-05-26 16:46:14 +09002210 @Override
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002211 public void onCancel(DialogInterface dialog) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002212 hideInputMethodMenu();
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002213 }
2214 })
2215 .setIcon(a.getDrawable(
2216 com.android.internal.R.styleable.DialogPreference_dialogTitle));
2217 a.recycle();
satokd87c2592010-09-29 11:52:06 +09002218
Ken Wakasa05dbb652011-08-22 15:22:43 +09002219 final ImeSubtypeListAdapter adapter = new ImeSubtypeListAdapter(context,
2220 com.android.internal.R.layout.simple_list_item_2_single_choice, imList,
2221 checkedItem);
2222
2223 mDialogBuilder.setSingleChoiceItems(adapter, checkedItem,
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002224 new AlertDialog.OnClickListener() {
satok42c5a162011-05-26 16:46:14 +09002225 @Override
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002226 public void onClick(DialogInterface dialog, int which) {
2227 synchronized (mMethodMap) {
satokab751aa2010-09-14 19:17:36 +09002228 if (mIms == null || mIms.length <= which
2229 || mSubtypeIds == null || mSubtypeIds.length <= which) {
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002230 return;
2231 }
2232 InputMethodInfo im = mIms[which];
satokab751aa2010-09-14 19:17:36 +09002233 int subtypeId = mSubtypeIds[which];
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002234 hideInputMethodMenu();
2235 if (im != null) {
satokab751aa2010-09-14 19:17:36 +09002236 if ((subtypeId < 0)
Ken Wakasa586f0512011-01-20 22:31:01 +09002237 || (subtypeId >= im.getSubtypeCount())) {
satokab751aa2010-09-14 19:17:36 +09002238 subtypeId = NOT_A_SUBTYPE_ID;
2239 }
2240 setInputMethodLocked(im.getId(), subtypeId);
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002241 }
Dianne Hackborn20cb56e2010-03-04 00:58:29 -08002242 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002243 }
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002244 });
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002245
satokbc81b692011-08-26 16:22:22 +09002246 if (showSubtypes && !isScreenLocked) {
satok82beadf2010-12-27 19:03:06 +09002247 mDialogBuilder.setPositiveButton(
2248 com.android.internal.R.string.configure_input_methods,
satok7f35c8c2010-10-07 21:13:11 +09002249 new DialogInterface.OnClickListener() {
satok42c5a162011-05-26 16:46:14 +09002250 @Override
satok7f35c8c2010-10-07 21:13:11 +09002251 public void onClick(DialogInterface dialog, int whichButton) {
satok217f5482010-12-15 05:19:19 +09002252 showConfigureInputMethods();
satok7f35c8c2010-10-07 21:13:11 +09002253 }
2254 });
2255 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002256 mSwitchingDialog = mDialogBuilder.create();
Dianne Hackborne3a7f622011-03-03 21:48:24 -08002257 mSwitchingDialog.setCanceledOnTouchOutside(true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002258 mSwitchingDialog.getWindow().setType(
2259 WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG);
Dianne Hackborne3a7f622011-03-03 21:48:24 -08002260 mSwitchingDialog.getWindow().getAttributes().setTitle("Select input method");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002261 mSwitchingDialog.show();
2262 }
2263 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002264
Ken Wakasa05dbb652011-08-22 15:22:43 +09002265 private static class ImeSubtypeListItem {
2266 public final CharSequence mImeName;
2267 public final CharSequence mSubtypeName;
2268 public final InputMethodInfo mImi;
2269 public final int mSubtypeId;
2270 public ImeSubtypeListItem(CharSequence imeName, CharSequence subtypeName,
2271 InputMethodInfo imi, int subtypeId) {
2272 mImeName = imeName;
2273 mSubtypeName = subtypeName;
2274 mImi = imi;
2275 mSubtypeId = subtypeId;
2276 }
2277 }
2278
2279 private static class ImeSubtypeListAdapter extends ArrayAdapter<ImeSubtypeListItem> {
2280 private final LayoutInflater mInflater;
2281 private final int mTextViewResourceId;
2282 private final List<ImeSubtypeListItem> mItemsList;
2283 private final int mCheckedItem;
2284 public ImeSubtypeListAdapter(Context context, int textViewResourceId,
2285 List<ImeSubtypeListItem> itemsList, int checkedItem) {
2286 super(context, textViewResourceId, itemsList);
2287 mTextViewResourceId = textViewResourceId;
2288 mItemsList = itemsList;
2289 mCheckedItem = checkedItem;
2290 mInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
2291 }
2292
2293 @Override
2294 public View getView(int position, View convertView, ViewGroup parent) {
2295 final View view = convertView != null ? convertView
2296 : mInflater.inflate(mTextViewResourceId, null);
2297 if (position < 0 || position >= mItemsList.size()) return view;
2298 final ImeSubtypeListItem item = mItemsList.get(position);
2299 final CharSequence imeName = item.mImeName;
2300 final CharSequence subtypeName = item.mSubtypeName;
2301 final TextView firstTextView = (TextView)view.findViewById(android.R.id.text1);
2302 final TextView secondTextView = (TextView)view.findViewById(android.R.id.text2);
2303 if (TextUtils.isEmpty(subtypeName)) {
2304 firstTextView.setText(imeName);
2305 secondTextView.setVisibility(View.GONE);
2306 } else {
2307 firstTextView.setText(subtypeName);
2308 secondTextView.setText(imeName);
2309 secondTextView.setVisibility(View.VISIBLE);
2310 }
2311 final RadioButton radioButton =
2312 (RadioButton)view.findViewById(com.android.internal.R.id.radio);
2313 radioButton.setChecked(position == mCheckedItem);
2314 return view;
2315 }
2316 }
2317
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002318 void hideInputMethodMenu() {
The Android Open Source Project10592532009-03-18 17:39:46 -07002319 synchronized (mMethodMap) {
2320 hideInputMethodMenuLocked();
2321 }
2322 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002323
The Android Open Source Project10592532009-03-18 17:39:46 -07002324 void hideInputMethodMenuLocked() {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002325 if (DEBUG) Slog.v(TAG, "Hide switching menu");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002326
The Android Open Source Project10592532009-03-18 17:39:46 -07002327 if (mSwitchingDialog != null) {
2328 mSwitchingDialog.dismiss();
2329 mSwitchingDialog = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002330 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002331
The Android Open Source Project10592532009-03-18 17:39:46 -07002332 mDialogBuilder = null;
The Android Open Source Project10592532009-03-18 17:39:46 -07002333 mIms = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002334 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002335
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002336 // ----------------------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002337
satok42c5a162011-05-26 16:46:14 +09002338 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002339 public boolean setInputMethodEnabled(String id, boolean enabled) {
2340 synchronized (mMethodMap) {
2341 if (mContext.checkCallingOrSelfPermission(
2342 android.Manifest.permission.WRITE_SECURE_SETTINGS)
2343 != PackageManager.PERMISSION_GRANTED) {
2344 throw new SecurityException(
2345 "Requires permission "
2346 + android.Manifest.permission.WRITE_SECURE_SETTINGS);
2347 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002348
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002349 long ident = Binder.clearCallingIdentity();
2350 try {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002351 return setInputMethodEnabledLocked(id, enabled);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002352 } finally {
2353 Binder.restoreCallingIdentity(ident);
2354 }
2355 }
2356 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002357
2358 boolean setInputMethodEnabledLocked(String id, boolean enabled) {
2359 // Make sure this is a valid input method.
2360 InputMethodInfo imm = mMethodMap.get(id);
2361 if (imm == null) {
satokd87c2592010-09-29 11:52:06 +09002362 throw new IllegalArgumentException("Unknown id: " + mCurMethodId);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002363 }
2364
satokd87c2592010-09-29 11:52:06 +09002365 List<Pair<String, ArrayList<String>>> enabledInputMethodsList = mSettings
2366 .getEnabledInputMethodsAndSubtypeListLocked();
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002367
satokd87c2592010-09-29 11:52:06 +09002368 if (enabled) {
2369 for (Pair<String, ArrayList<String>> pair: enabledInputMethodsList) {
2370 if (pair.first.equals(id)) {
2371 // We are enabling this input method, but it is already enabled.
2372 // Nothing to do. The previous state was enabled.
2373 return true;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002374 }
2375 }
satokd87c2592010-09-29 11:52:06 +09002376 mSettings.appendAndPutEnabledInputMethodLocked(id, false);
2377 // Previous state was disabled.
2378 return false;
2379 } else {
2380 StringBuilder builder = new StringBuilder();
2381 if (mSettings.buildAndPutEnabledInputMethodsStrRemovingIdLocked(
2382 builder, enabledInputMethodsList, id)) {
2383 // Disabled input method is currently selected, switch to another one.
2384 String selId = Settings.Secure.getString(mContext.getContentResolver(),
2385 Settings.Secure.DEFAULT_INPUT_METHOD);
satok03eb319a2010-11-11 18:17:42 +09002386 if (id.equals(selId) && !chooseNewDefaultIMELocked()) {
2387 Slog.i(TAG, "Can't find new IME, unsetting the current input method.");
2388 resetSelectedInputMethodAndSubtypeLocked("");
satokd87c2592010-09-29 11:52:06 +09002389 }
2390 // Previous state was enabled.
2391 return true;
2392 } else {
2393 // We are disabling the input method but it is already disabled.
2394 // Nothing to do. The previous state was disabled.
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002395 return false;
2396 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002397 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002398 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002399
satok57ffc002011-01-25 00:11:47 +09002400 private boolean canAddToLastInputMethod(InputMethodSubtype subtype) {
2401 if (subtype == null) return true;
satok9b415792011-05-30 12:37:52 +09002402 return !subtype.isAuxiliary();
satok57ffc002011-01-25 00:11:47 +09002403 }
2404
satok723a27e2010-11-11 14:58:11 +09002405 private void saveCurrentInputMethodAndSubtypeToHistory() {
2406 String subtypeId = NOT_A_SUBTYPE_ID_STR;
2407 if (mCurrentSubtype != null) {
2408 subtypeId = String.valueOf(mCurrentSubtype.hashCode());
2409 }
satok57ffc002011-01-25 00:11:47 +09002410 if (canAddToLastInputMethod(mCurrentSubtype)) {
2411 mSettings.addSubtypeToHistory(mCurMethodId, subtypeId);
2412 }
satokab751aa2010-09-14 19:17:36 +09002413 }
2414
satok723a27e2010-11-11 14:58:11 +09002415 private void setSelectedInputMethodAndSubtypeLocked(InputMethodInfo imi, int subtypeId,
2416 boolean setSubtypeOnly) {
2417 // Update the history of InputMethod and Subtype
2418 saveCurrentInputMethodAndSubtypeToHistory();
2419
2420 // Set Subtype here
2421 if (imi == null || subtypeId < 0) {
2422 mSettings.putSelectedSubtype(NOT_A_SUBTYPE_ID);
Tadashi G. Takaoka0ba75bb2010-11-09 12:19:32 -08002423 mCurrentSubtype = null;
satok723a27e2010-11-11 14:58:11 +09002424 } else {
Ken Wakasa586f0512011-01-20 22:31:01 +09002425 if (subtypeId < imi.getSubtypeCount()) {
2426 InputMethodSubtype subtype = imi.getSubtypeAt(subtypeId);
2427 mSettings.putSelectedSubtype(subtype.hashCode());
2428 mCurrentSubtype = subtype;
satok723a27e2010-11-11 14:58:11 +09002429 } else {
2430 mSettings.putSelectedSubtype(NOT_A_SUBTYPE_ID);
2431 mCurrentSubtype = null;
2432 }
satokab751aa2010-09-14 19:17:36 +09002433 }
satok723a27e2010-11-11 14:58:11 +09002434
2435 if (!setSubtypeOnly) {
2436 // Set InputMethod here
2437 mSettings.putSelectedInputMethod(imi != null ? imi.getId() : "");
2438 }
2439 }
2440
2441 private void resetSelectedInputMethodAndSubtypeLocked(String newDefaultIme) {
2442 InputMethodInfo imi = mMethodMap.get(newDefaultIme);
2443 int lastSubtypeId = NOT_A_SUBTYPE_ID;
2444 // newDefaultIme is empty when there is no candidate for the selected IME.
2445 if (imi != null && !TextUtils.isEmpty(newDefaultIme)) {
2446 String subtypeHashCode = mSettings.getLastSubtypeForInputMethodLocked(newDefaultIme);
2447 if (subtypeHashCode != null) {
2448 try {
2449 lastSubtypeId = getSubtypeIdFromHashCode(
2450 imi, Integer.valueOf(subtypeHashCode));
2451 } catch (NumberFormatException e) {
2452 Slog.w(TAG, "HashCode for subtype looks broken: " + subtypeHashCode, e);
2453 }
2454 }
2455 }
2456 setSelectedInputMethodAndSubtypeLocked(imi, lastSubtypeId, false);
satokab751aa2010-09-14 19:17:36 +09002457 }
2458
2459 private int getSelectedInputMethodSubtypeId(String id) {
2460 InputMethodInfo imi = mMethodMap.get(id);
2461 if (imi == null) {
2462 return NOT_A_SUBTYPE_ID;
2463 }
satokab751aa2010-09-14 19:17:36 +09002464 int subtypeId;
2465 try {
2466 subtypeId = Settings.Secure.getInt(mContext.getContentResolver(),
2467 Settings.Secure.SELECTED_INPUT_METHOD_SUBTYPE);
2468 } catch (SettingNotFoundException e) {
2469 return NOT_A_SUBTYPE_ID;
2470 }
satok723a27e2010-11-11 14:58:11 +09002471 return getSubtypeIdFromHashCode(imi, subtypeId);
2472 }
2473
2474 private int getSubtypeIdFromHashCode(InputMethodInfo imi, int subtypeHashCode) {
satok28203512010-11-24 11:06:49 +09002475 if (imi != null) {
Ken Wakasa586f0512011-01-20 22:31:01 +09002476 final int subtypeCount = imi.getSubtypeCount();
2477 for (int i = 0; i < subtypeCount; ++i) {
2478 InputMethodSubtype ims = imi.getSubtypeAt(i);
satok28203512010-11-24 11:06:49 +09002479 if (subtypeHashCode == ims.hashCode()) {
2480 return i;
2481 }
satokab751aa2010-09-14 19:17:36 +09002482 }
2483 }
2484 return NOT_A_SUBTYPE_ID;
2485 }
2486
satoka86f5e42011-09-02 17:12:42 +09002487 private static ArrayList<InputMethodSubtype> getImplicitlyApplicableSubtypesLocked(
2488 Resources res, InputMethodInfo imi) {
2489 final List<InputMethodSubtype> subtypes = getSubtypes(imi);
satokdf31ae62011-01-15 06:19:44 +09002490 final String systemLocale = res.getConfiguration().locale.toString();
satok3da92232011-01-11 22:46:30 +09002491 if (TextUtils.isEmpty(systemLocale)) return new ArrayList<InputMethodSubtype>();
satok4a553e32011-10-03 17:05:50 +09002492 final HashMap<String, InputMethodSubtype> applicableModeAndSubtypesMap =
satok3da92232011-01-11 22:46:30 +09002493 new HashMap<String, InputMethodSubtype>();
satok16331c82010-12-20 23:48:46 +09002494 final int N = subtypes.size();
satok16331c82010-12-20 23:48:46 +09002495 for (int i = 0; i < N; ++i) {
satoka86f5e42011-09-02 17:12:42 +09002496 // scan overriding implicitly enabled subtypes.
2497 InputMethodSubtype subtype = subtypes.get(i);
2498 if (subtype.overridesImplicitlyEnabledSubtype()) {
2499 final String mode = subtype.getMode();
2500 if (!applicableModeAndSubtypesMap.containsKey(mode)) {
2501 applicableModeAndSubtypesMap.put(mode, subtype);
2502 }
2503 }
2504 }
2505 if (applicableModeAndSubtypesMap.size() > 0) {
2506 return new ArrayList<InputMethodSubtype>(applicableModeAndSubtypesMap.values());
2507 }
2508 for (int i = 0; i < N; ++i) {
satok4a553e32011-10-03 17:05:50 +09002509 final InputMethodSubtype subtype = subtypes.get(i);
satok3da92232011-01-11 22:46:30 +09002510 final String locale = subtype.getLocale();
2511 final String mode = subtype.getMode();
2512 // When system locale starts with subtype's locale, that subtype will be applicable
2513 // for system locale
2514 // For instance, it's clearly applicable for cases like system locale = en_US and
2515 // subtype = en, but it is not necessarily considered applicable for cases like system
2516 // locale = en and subtype = en_US.
2517 // We just call systemLocale.startsWith(locale) in this function because there is no
2518 // need to find applicable subtypes aggressively unlike
2519 // findLastResortApplicableSubtypeLocked.
2520 if (systemLocale.startsWith(locale)) {
satok4a553e32011-10-03 17:05:50 +09002521 final InputMethodSubtype applicableSubtype = applicableModeAndSubtypesMap.get(mode);
satok3da92232011-01-11 22:46:30 +09002522 // If more applicable subtypes are contained, skip.
satok4a553e32011-10-03 17:05:50 +09002523 if (applicableSubtype != null) {
2524 if (systemLocale.equals(applicableSubtype.getLocale())) continue;
2525 if (!systemLocale.equals(locale)) continue;
2526 }
satok3da92232011-01-11 22:46:30 +09002527 applicableModeAndSubtypesMap.put(mode, subtype);
satokc3690562012-01-10 20:14:43 +09002528 }
2529 }
2530 final InputMethodSubtype keyboardSubtype
2531 = applicableModeAndSubtypesMap.get(SUBTYPE_MODE_KEYBOARD);
2532 final ArrayList<InputMethodSubtype> applicableSubtypes = new ArrayList<InputMethodSubtype>(
2533 applicableModeAndSubtypesMap.values());
2534 if (keyboardSubtype != null && !keyboardSubtype.containsExtraValueKey(TAG_ASCII_CAPABLE)) {
2535 for (int i = 0; i < N; ++i) {
2536 final InputMethodSubtype subtype = subtypes.get(i);
2537 final String mode = subtype.getMode();
2538 if (SUBTYPE_MODE_KEYBOARD.equals(mode) && subtype.containsExtraValueKey(
2539 TAG_ENABLED_WHEN_DEFAULT_IS_NOT_ASCII_CAPABLE)) {
2540 applicableSubtypes.add(subtype);
satok16331c82010-12-20 23:48:46 +09002541 }
2542 }
2543 }
satokc3690562012-01-10 20:14:43 +09002544 if (keyboardSubtype == null) {
satok16331c82010-12-20 23:48:46 +09002545 InputMethodSubtype lastResortKeyboardSubtype = findLastResortApplicableSubtypeLocked(
satokdf31ae62011-01-15 06:19:44 +09002546 res, subtypes, SUBTYPE_MODE_KEYBOARD, systemLocale, true);
satok16331c82010-12-20 23:48:46 +09002547 if (lastResortKeyboardSubtype != null) {
2548 applicableSubtypes.add(lastResortKeyboardSubtype);
2549 }
2550 }
2551 return applicableSubtypes;
2552 }
2553
satok4e4569d2010-11-19 18:45:53 +09002554 /**
2555 * If there are no selected subtypes, tries finding the most applicable one according to the
2556 * given locale.
2557 * @param subtypes this function will search the most applicable subtype in subtypes
2558 * @param mode subtypes will be filtered by mode
2559 * @param locale subtypes will be filtered by locale
satok7599a7fb2010-12-22 13:45:23 +09002560 * @param canIgnoreLocaleAsLastResort if this function can't find the most applicable subtype,
2561 * it will return the first subtype matched with mode
satok4e4569d2010-11-19 18:45:53 +09002562 * @return the most applicable subtypeId
2563 */
satokdf31ae62011-01-15 06:19:44 +09002564 private static InputMethodSubtype findLastResortApplicableSubtypeLocked(
2565 Resources res, List<InputMethodSubtype> subtypes, String mode, String locale,
satok7599a7fb2010-12-22 13:45:23 +09002566 boolean canIgnoreLocaleAsLastResort) {
satok8fbb1e82010-11-02 23:15:58 +09002567 if (subtypes == null || subtypes.size() == 0) {
satokcd7cd292010-11-20 15:46:23 +09002568 return null;
satok8fbb1e82010-11-02 23:15:58 +09002569 }
satok4e4569d2010-11-19 18:45:53 +09002570 if (TextUtils.isEmpty(locale)) {
satokdf31ae62011-01-15 06:19:44 +09002571 locale = res.getConfiguration().locale.toString();
satok4e4569d2010-11-19 18:45:53 +09002572 }
satok8fbb1e82010-11-02 23:15:58 +09002573 final String language = locale.substring(0, 2);
2574 boolean partialMatchFound = false;
satokcd7cd292010-11-20 15:46:23 +09002575 InputMethodSubtype applicableSubtype = null;
satok7599a7fb2010-12-22 13:45:23 +09002576 InputMethodSubtype firstMatchedModeSubtype = null;
satok16331c82010-12-20 23:48:46 +09002577 final int N = subtypes.size();
2578 for (int i = 0; i < N; ++i) {
satokcd7cd292010-11-20 15:46:23 +09002579 InputMethodSubtype subtype = subtypes.get(i);
2580 final String subtypeLocale = subtype.getLocale();
satokd8713432011-01-18 00:55:13 +09002581 // An applicable subtype should match "mode". If mode is null, mode will be ignored,
2582 // and all subtypes with all modes can be candidates.
2583 if (mode == null || subtypes.get(i).getMode().equalsIgnoreCase(mode)) {
satok7599a7fb2010-12-22 13:45:23 +09002584 if (firstMatchedModeSubtype == null) {
2585 firstMatchedModeSubtype = subtype;
2586 }
satok9ef02832010-11-04 21:17:48 +09002587 if (locale.equals(subtypeLocale)) {
2588 // Exact match (e.g. system locale is "en_US" and subtype locale is "en_US")
satokcd7cd292010-11-20 15:46:23 +09002589 applicableSubtype = subtype;
satok9ef02832010-11-04 21:17:48 +09002590 break;
2591 } else if (!partialMatchFound && subtypeLocale.startsWith(language)) {
2592 // Partial match (e.g. system locale is "en_US" and subtype locale is "en")
satokcd7cd292010-11-20 15:46:23 +09002593 applicableSubtype = subtype;
satok9ef02832010-11-04 21:17:48 +09002594 partialMatchFound = true;
2595 }
satok8fbb1e82010-11-02 23:15:58 +09002596 }
2597 }
2598
satok7599a7fb2010-12-22 13:45:23 +09002599 if (applicableSubtype == null && canIgnoreLocaleAsLastResort) {
2600 return firstMatchedModeSubtype;
satok16331c82010-12-20 23:48:46 +09002601 }
2602
satok8fbb1e82010-11-02 23:15:58 +09002603 // The first subtype applicable to the system locale will be defined as the most applicable
2604 // subtype.
2605 if (DEBUG) {
satok16331c82010-12-20 23:48:46 +09002606 if (applicableSubtype != null) {
2607 Slog.d(TAG, "Applicable InputMethodSubtype was found: "
2608 + applicableSubtype.getMode() + "," + applicableSubtype.getLocale());
2609 }
satok8fbb1e82010-11-02 23:15:58 +09002610 }
satokcd7cd292010-11-20 15:46:23 +09002611 return applicableSubtype;
satok8fbb1e82010-11-02 23:15:58 +09002612 }
2613
satok4e4569d2010-11-19 18:45:53 +09002614 // If there are no selected shortcuts, tries finding the most applicable ones.
2615 private Pair<InputMethodInfo, InputMethodSubtype>
2616 findLastResortApplicableShortcutInputMethodAndSubtypeLocked(String mode) {
2617 List<InputMethodInfo> imis = mSettings.getEnabledInputMethodListLocked();
2618 InputMethodInfo mostApplicableIMI = null;
satokcd7cd292010-11-20 15:46:23 +09002619 InputMethodSubtype mostApplicableSubtype = null;
satok4e4569d2010-11-19 18:45:53 +09002620 boolean foundInSystemIME = false;
2621
2622 // Search applicable subtype for each InputMethodInfo
2623 for (InputMethodInfo imi: imis) {
satok7599a7fb2010-12-22 13:45:23 +09002624 final String imiId = imi.getId();
2625 if (foundInSystemIME && !imiId.equals(mCurMethodId)) {
2626 continue;
2627 }
satokcd7cd292010-11-20 15:46:23 +09002628 InputMethodSubtype subtype = null;
satokdf31ae62011-01-15 06:19:44 +09002629 final List<InputMethodSubtype> enabledSubtypes =
2630 getEnabledInputMethodSubtypeList(imi, true);
2631 // 1. Search by the current subtype's locale from enabledSubtypes.
satok4e4569d2010-11-19 18:45:53 +09002632 if (mCurrentSubtype != null) {
satokcd7cd292010-11-20 15:46:23 +09002633 subtype = findLastResortApplicableSubtypeLocked(
satokdf31ae62011-01-15 06:19:44 +09002634 mRes, enabledSubtypes, mode, mCurrentSubtype.getLocale(), false);
satok4e4569d2010-11-19 18:45:53 +09002635 }
satokdf31ae62011-01-15 06:19:44 +09002636 // 2. Search by the system locale from enabledSubtypes.
2637 // 3. Search the first enabled subtype matched with mode from enabledSubtypes.
satokcd7cd292010-11-20 15:46:23 +09002638 if (subtype == null) {
2639 subtype = findLastResortApplicableSubtypeLocked(
satokdf31ae62011-01-15 06:19:44 +09002640 mRes, enabledSubtypes, mode, null, true);
satok4e4569d2010-11-19 18:45:53 +09002641 }
satoka86f5e42011-09-02 17:12:42 +09002642 final ArrayList<InputMethodSubtype> overridingImplicitlyEnabledSubtypes =
2643 getOverridingImplicitlyEnabledSubtypes(imi, mode);
2644 final ArrayList<InputMethodSubtype> subtypesForSearch =
2645 overridingImplicitlyEnabledSubtypes.isEmpty()
2646 ? getSubtypes(imi) : overridingImplicitlyEnabledSubtypes;
satok7599a7fb2010-12-22 13:45:23 +09002647 // 4. Search by the current subtype's locale from all subtypes.
2648 if (subtype == null && mCurrentSubtype != null) {
2649 subtype = findLastResortApplicableSubtypeLocked(
satoka86f5e42011-09-02 17:12:42 +09002650 mRes, subtypesForSearch, mode, mCurrentSubtype.getLocale(), false);
satok7599a7fb2010-12-22 13:45:23 +09002651 }
2652 // 5. Search by the system locale from all subtypes.
2653 // 6. Search the first enabled subtype matched with mode from all subtypes.
satokcd7cd292010-11-20 15:46:23 +09002654 if (subtype == null) {
satok7599a7fb2010-12-22 13:45:23 +09002655 subtype = findLastResortApplicableSubtypeLocked(
satoka86f5e42011-09-02 17:12:42 +09002656 mRes, subtypesForSearch, mode, null, true);
satok4e4569d2010-11-19 18:45:53 +09002657 }
satokcd7cd292010-11-20 15:46:23 +09002658 if (subtype != null) {
satok7599a7fb2010-12-22 13:45:23 +09002659 if (imiId.equals(mCurMethodId)) {
satok4e4569d2010-11-19 18:45:53 +09002660 // The current input method is the most applicable IME.
2661 mostApplicableIMI = imi;
satokcd7cd292010-11-20 15:46:23 +09002662 mostApplicableSubtype = subtype;
satok4e4569d2010-11-19 18:45:53 +09002663 break;
satok7599a7fb2010-12-22 13:45:23 +09002664 } else if (!foundInSystemIME) {
satok4e4569d2010-11-19 18:45:53 +09002665 // The system input method is 2nd applicable IME.
2666 mostApplicableIMI = imi;
satokcd7cd292010-11-20 15:46:23 +09002667 mostApplicableSubtype = subtype;
satok7599a7fb2010-12-22 13:45:23 +09002668 if ((imi.getServiceInfo().applicationInfo.flags
2669 & ApplicationInfo.FLAG_SYSTEM) != 0) {
2670 foundInSystemIME = true;
2671 }
satok4e4569d2010-11-19 18:45:53 +09002672 }
2673 }
2674 }
2675 if (DEBUG) {
satokcd7cd292010-11-20 15:46:23 +09002676 if (mostApplicableIMI != null) {
2677 Slog.w(TAG, "Most applicable shortcut input method was:"
2678 + mostApplicableIMI.getId());
2679 if (mostApplicableSubtype != null) {
2680 Slog.w(TAG, "Most applicable shortcut input method subtype was:"
2681 + "," + mostApplicableSubtype.getMode() + ","
2682 + mostApplicableSubtype.getLocale());
2683 }
2684 }
satok4e4569d2010-11-19 18:45:53 +09002685 }
satokcd7cd292010-11-20 15:46:23 +09002686 if (mostApplicableIMI != null) {
satok4e4569d2010-11-19 18:45:53 +09002687 return new Pair<InputMethodInfo, InputMethodSubtype> (mostApplicableIMI,
satokcd7cd292010-11-20 15:46:23 +09002688 mostApplicableSubtype);
satok4e4569d2010-11-19 18:45:53 +09002689 } else {
2690 return null;
2691 }
2692 }
2693
satokab751aa2010-09-14 19:17:36 +09002694 /**
2695 * @return Return the current subtype of this input method.
2696 */
satok42c5a162011-05-26 16:46:14 +09002697 @Override
satokab751aa2010-09-14 19:17:36 +09002698 public InputMethodSubtype getCurrentInputMethodSubtype() {
satok4e4569d2010-11-19 18:45:53 +09002699 boolean subtypeIsSelected = false;
2700 try {
2701 subtypeIsSelected = Settings.Secure.getInt(mContext.getContentResolver(),
2702 Settings.Secure.SELECTED_INPUT_METHOD_SUBTYPE) != NOT_A_SUBTYPE_ID;
2703 } catch (SettingNotFoundException e) {
2704 }
satok3ef8b292010-11-23 06:06:29 +09002705 synchronized (mMethodMap) {
satok3ef8b292010-11-23 06:06:29 +09002706 if (!subtypeIsSelected || mCurrentSubtype == null) {
satok4e4569d2010-11-19 18:45:53 +09002707 String lastInputMethodId = Settings.Secure.getString(
2708 mContext.getContentResolver(), Settings.Secure.DEFAULT_INPUT_METHOD);
satok3ef8b292010-11-23 06:06:29 +09002709 int subtypeId = getSelectedInputMethodSubtypeId(lastInputMethodId);
2710 if (subtypeId == NOT_A_SUBTYPE_ID) {
satok4e4569d2010-11-19 18:45:53 +09002711 InputMethodInfo imi = mMethodMap.get(lastInputMethodId);
2712 if (imi != null) {
2713 // If there are no selected subtypes, the framework will try to find
satokd8713432011-01-18 00:55:13 +09002714 // the most applicable subtype from explicitly or implicitly enabled
2715 // subtypes.
2716 List<InputMethodSubtype> explicitlyOrImplicitlyEnabledSubtypes =
2717 getEnabledInputMethodSubtypeList(imi, true);
2718 // If there is only one explicitly or implicitly enabled subtype,
2719 // just returns it.
2720 if (explicitlyOrImplicitlyEnabledSubtypes.size() == 1) {
2721 mCurrentSubtype = explicitlyOrImplicitlyEnabledSubtypes.get(0);
2722 } else if (explicitlyOrImplicitlyEnabledSubtypes.size() > 1) {
2723 mCurrentSubtype = findLastResortApplicableSubtypeLocked(
2724 mRes, explicitlyOrImplicitlyEnabledSubtypes,
2725 SUBTYPE_MODE_KEYBOARD, null, true);
2726 if (mCurrentSubtype == null) {
2727 mCurrentSubtype = findLastResortApplicableSubtypeLocked(
2728 mRes, explicitlyOrImplicitlyEnabledSubtypes, null, null,
2729 true);
2730 }
2731 }
satok4e4569d2010-11-19 18:45:53 +09002732 }
satokcd7cd292010-11-20 15:46:23 +09002733 } else {
satok3ef8b292010-11-23 06:06:29 +09002734 mCurrentSubtype =
Ken Wakasa586f0512011-01-20 22:31:01 +09002735 getSubtypes(mMethodMap.get(lastInputMethodId)).get(subtypeId);
satok3ef8b292010-11-23 06:06:29 +09002736 }
satok8fbb1e82010-11-02 23:15:58 +09002737 }
satok3ef8b292010-11-23 06:06:29 +09002738 return mCurrentSubtype;
satok8fbb1e82010-11-02 23:15:58 +09002739 }
satokab751aa2010-09-14 19:17:36 +09002740 }
2741
satokf3db1af2010-11-23 13:34:33 +09002742 private void addShortcutInputMethodAndSubtypes(InputMethodInfo imi,
2743 InputMethodSubtype subtype) {
2744 if (mShortcutInputMethodsAndSubtypes.containsKey(imi)) {
2745 mShortcutInputMethodsAndSubtypes.get(imi).add(subtype);
2746 } else {
2747 ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>();
2748 subtypes.add(subtype);
2749 mShortcutInputMethodsAndSubtypes.put(imi, subtypes);
2750 }
2751 }
2752
satok4e4569d2010-11-19 18:45:53 +09002753 // TODO: We should change the return type from List to List<Parcelable>
satokdbf29502011-08-25 15:28:23 +09002754 @SuppressWarnings("rawtypes")
satoke7c6998e2011-06-03 17:57:59 +09002755 @Override
satok4e4569d2010-11-19 18:45:53 +09002756 public List getShortcutInputMethodsAndSubtypes() {
2757 synchronized (mMethodMap) {
satok3da92232011-01-11 22:46:30 +09002758 ArrayList<Object> ret = new ArrayList<Object>();
satokf3db1af2010-11-23 13:34:33 +09002759 if (mShortcutInputMethodsAndSubtypes.size() == 0) {
satok4e4569d2010-11-19 18:45:53 +09002760 // If there are no selected shortcut subtypes, the framework will try to find
2761 // the most applicable subtype from all subtypes whose mode is
2762 // SUBTYPE_MODE_VOICE. This is an exceptional case, so we will hardcode the mode.
satokf3db1af2010-11-23 13:34:33 +09002763 Pair<InputMethodInfo, InputMethodSubtype> info =
2764 findLastResortApplicableShortcutInputMethodAndSubtypeLocked(
2765 SUBTYPE_MODE_VOICE);
satok7599a7fb2010-12-22 13:45:23 +09002766 if (info != null) {
satok3da92232011-01-11 22:46:30 +09002767 ret.add(info.first);
2768 ret.add(info.second);
satok7599a7fb2010-12-22 13:45:23 +09002769 }
satok3da92232011-01-11 22:46:30 +09002770 return ret;
satokf3db1af2010-11-23 13:34:33 +09002771 }
satokf3db1af2010-11-23 13:34:33 +09002772 for (InputMethodInfo imi: mShortcutInputMethodsAndSubtypes.keySet()) {
2773 ret.add(imi);
2774 for (InputMethodSubtype subtype: mShortcutInputMethodsAndSubtypes.get(imi)) {
2775 ret.add(subtype);
satok4e4569d2010-11-19 18:45:53 +09002776 }
2777 }
satokf3db1af2010-11-23 13:34:33 +09002778 return ret;
satok4e4569d2010-11-19 18:45:53 +09002779 }
2780 }
2781
satok42c5a162011-05-26 16:46:14 +09002782 @Override
satokb66d2872010-11-10 01:04:04 +09002783 public boolean setCurrentInputMethodSubtype(InputMethodSubtype subtype) {
2784 synchronized (mMethodMap) {
2785 if (subtype != null && mCurMethodId != null) {
2786 InputMethodInfo imi = mMethodMap.get(mCurMethodId);
2787 int subtypeId = getSubtypeIdFromHashCode(imi, subtype.hashCode());
2788 if (subtypeId != NOT_A_SUBTYPE_ID) {
2789 setInputMethodLocked(mCurMethodId, subtypeId);
2790 return true;
2791 }
2792 }
2793 return false;
2794 }
2795 }
2796
satok688bd472012-02-09 20:09:17 +09002797 private static class InputMethodAndSubtypeListManager {
2798 private final Context mContext;
2799 private final PackageManager mPm;
2800 private final InputMethodManagerService mImms;
2801 public InputMethodAndSubtypeListManager(Context context, InputMethodManagerService imms) {
2802 mContext = context;
2803 mPm = context.getPackageManager();
2804 mImms = imms;
2805 }
2806
2807 private final TreeMap<InputMethodInfo, List<InputMethodSubtype>> mSortedImmis =
2808 new TreeMap<InputMethodInfo, List<InputMethodSubtype>>(
2809 new Comparator<InputMethodInfo>() {
2810 @Override
2811 public int compare(InputMethodInfo imi1, InputMethodInfo imi2) {
2812 if (imi2 == null) return 0;
2813 if (imi1 == null) return 1;
2814 if (mPm == null) {
2815 return imi1.getId().compareTo(imi2.getId());
2816 }
2817 CharSequence imiId1 = imi1.loadLabel(mPm) + "/" + imi1.getId();
2818 CharSequence imiId2 = imi2.loadLabel(mPm) + "/" + imi2.getId();
2819 return imiId1.toString().compareTo(imiId2.toString());
2820 }
2821 });
2822
2823 public ImeSubtypeListItem getNextInputMethod(
2824 boolean onlyCurrentIme, InputMethodInfo imi, InputMethodSubtype subtype) {
2825 if (imi == null) {
2826 return null;
2827 }
2828 final List<ImeSubtypeListItem> imList = getSortedInputMethodAndSubtypeList();
2829 if (imList.size() <= 1) {
2830 return null;
2831 }
2832 final int N = imList.size();
2833 final int currentSubtypeId = subtype != null
2834 ? mImms.getSubtypeIdFromHashCode(imi, subtype.hashCode())
2835 : NOT_A_SUBTYPE_ID;
2836 for (int i = 0; i < N; ++i) {
2837 final ImeSubtypeListItem isli = imList.get(i);
2838 if (isli.mImi.equals(imi) && isli.mSubtypeId == currentSubtypeId) {
2839 if (!onlyCurrentIme) {
2840 return imList.get((i + 1) % N);
2841 }
2842 for (int j = 0; j < N - 1; ++j) {
2843 final ImeSubtypeListItem candidate = imList.get((i + j + 1) % N);
2844 if (candidate.mImi.equals(imi)) {
2845 return candidate;
2846 }
2847 }
2848 return null;
2849 }
2850 }
2851 return null;
2852 }
2853
2854 public List<ImeSubtypeListItem> getSortedInputMethodAndSubtypeList() {
2855 return getSortedInputMethodAndSubtypeList(true, false, false);
2856 }
2857
2858 public List<ImeSubtypeListItem> getSortedInputMethodAndSubtypeList(boolean showSubtypes,
2859 boolean inputShown, boolean isScreenLocked) {
2860 final ArrayList<ImeSubtypeListItem> imList = new ArrayList<ImeSubtypeListItem>();
2861 final HashMap<InputMethodInfo, List<InputMethodSubtype>> immis =
2862 mImms.getExplicitlyOrImplicitlyEnabledInputMethodsAndSubtypeListLocked();
2863 if (immis == null || immis.size() == 0) {
2864 return Collections.emptyList();
2865 }
2866 mSortedImmis.clear();
2867 mSortedImmis.putAll(immis);
2868 for (InputMethodInfo imi : mSortedImmis.keySet()) {
2869 if (imi == null) continue;
2870 List<InputMethodSubtype> explicitlyOrImplicitlyEnabledSubtypeList = immis.get(imi);
2871 HashSet<String> enabledSubtypeSet = new HashSet<String>();
2872 for (InputMethodSubtype subtype: explicitlyOrImplicitlyEnabledSubtypeList) {
2873 enabledSubtypeSet.add(String.valueOf(subtype.hashCode()));
2874 }
2875 ArrayList<InputMethodSubtype> subtypes = getSubtypes(imi);
2876 final CharSequence imeLabel = imi.loadLabel(mPm);
2877 if (showSubtypes && enabledSubtypeSet.size() > 0) {
2878 final int subtypeCount = imi.getSubtypeCount();
2879 if (DEBUG) {
2880 Slog.v(TAG, "Add subtypes: " + subtypeCount + ", " + imi.getId());
2881 }
2882 for (int j = 0; j < subtypeCount; ++j) {
2883 final InputMethodSubtype subtype = imi.getSubtypeAt(j);
2884 final String subtypeHashCode = String.valueOf(subtype.hashCode());
2885 // We show all enabled IMEs and subtypes when an IME is shown.
2886 if (enabledSubtypeSet.contains(subtypeHashCode)
2887 && ((inputShown && !isScreenLocked) || !subtype.isAuxiliary())) {
2888 final CharSequence subtypeLabel =
2889 subtype.overridesImplicitlyEnabledSubtype() ? null
2890 : subtype.getDisplayName(mContext, imi.getPackageName(),
2891 imi.getServiceInfo().applicationInfo);
2892 imList.add(new ImeSubtypeListItem(imeLabel, subtypeLabel, imi, j));
2893
2894 // Removing this subtype from enabledSubtypeSet because we no longer
2895 // need to add an entry of this subtype to imList to avoid duplicated
2896 // entries.
2897 enabledSubtypeSet.remove(subtypeHashCode);
2898 }
2899 }
2900 } else {
2901 imList.add(new ImeSubtypeListItem(imeLabel, null, imi, NOT_A_SUBTYPE_ID));
2902 }
2903 }
2904 return imList;
2905 }
2906 }
2907
satokd87c2592010-09-29 11:52:06 +09002908 /**
2909 * Utility class for putting and getting settings for InputMethod
2910 * TODO: Move all putters and getters of settings to this class.
2911 */
2912 private static class InputMethodSettings {
2913 // The string for enabled input method is saved as follows:
2914 // example: ("ime0;subtype0;subtype1;subtype2:ime1:ime2;subtype0")
2915 private static final char INPUT_METHOD_SEPARATER = ':';
2916 private static final char INPUT_METHOD_SUBTYPE_SEPARATER = ';';
satok723a27e2010-11-11 14:58:11 +09002917 private final TextUtils.SimpleStringSplitter mInputMethodSplitter =
satokd87c2592010-09-29 11:52:06 +09002918 new TextUtils.SimpleStringSplitter(INPUT_METHOD_SEPARATER);
2919
satok723a27e2010-11-11 14:58:11 +09002920 private final TextUtils.SimpleStringSplitter mSubtypeSplitter =
satokd87c2592010-09-29 11:52:06 +09002921 new TextUtils.SimpleStringSplitter(INPUT_METHOD_SUBTYPE_SEPARATER);
2922
satokdf31ae62011-01-15 06:19:44 +09002923 private final Resources mRes;
satokd87c2592010-09-29 11:52:06 +09002924 private final ContentResolver mResolver;
2925 private final HashMap<String, InputMethodInfo> mMethodMap;
2926 private final ArrayList<InputMethodInfo> mMethodList;
2927
2928 private String mEnabledInputMethodsStrCache;
2929
2930 private static void buildEnabledInputMethodsSettingString(
2931 StringBuilder builder, Pair<String, ArrayList<String>> pair) {
2932 String id = pair.first;
2933 ArrayList<String> subtypes = pair.second;
2934 builder.append(id);
satok57c767c2010-11-01 22:34:08 +09002935 // Inputmethod and subtypes are saved in the settings as follows:
2936 // ime0;subtype0;subtype1:ime1;subtype0:ime2:ime3;subtype0;subtype1
2937 for (String subtypeId: subtypes) {
2938 builder.append(INPUT_METHOD_SUBTYPE_SEPARATER).append(subtypeId);
satokd87c2592010-09-29 11:52:06 +09002939 }
2940 }
2941
2942 public InputMethodSettings(
satokdf31ae62011-01-15 06:19:44 +09002943 Resources res, ContentResolver resolver,
2944 HashMap<String, InputMethodInfo> methodMap, ArrayList<InputMethodInfo> methodList) {
2945 mRes = res;
satokd87c2592010-09-29 11:52:06 +09002946 mResolver = resolver;
2947 mMethodMap = methodMap;
2948 mMethodList = methodList;
2949 }
2950
2951 public List<InputMethodInfo> getEnabledInputMethodListLocked() {
2952 return createEnabledInputMethodListLocked(
2953 getEnabledInputMethodsAndSubtypeListLocked());
2954 }
2955
satok7f35c8c2010-10-07 21:13:11 +09002956 public List<Pair<InputMethodInfo, ArrayList<String>>>
satok67ddf9c2010-11-17 09:45:54 +09002957 getEnabledInputMethodAndSubtypeHashCodeListLocked() {
2958 return createEnabledInputMethodAndSubtypeHashCodeListLocked(
satok7f35c8c2010-10-07 21:13:11 +09002959 getEnabledInputMethodsAndSubtypeListLocked());
2960 }
2961
satok67ddf9c2010-11-17 09:45:54 +09002962 public List<InputMethodSubtype> getEnabledInputMethodSubtypeListLocked(
2963 InputMethodInfo imi) {
2964 List<Pair<String, ArrayList<String>>> imsList =
2965 getEnabledInputMethodsAndSubtypeListLocked();
2966 ArrayList<InputMethodSubtype> enabledSubtypes =
2967 new ArrayList<InputMethodSubtype>();
satok884ef9a2010-11-18 10:39:46 +09002968 if (imi != null) {
2969 for (Pair<String, ArrayList<String>> imsPair : imsList) {
2970 InputMethodInfo info = mMethodMap.get(imsPair.first);
2971 if (info != null && info.getId().equals(imi.getId())) {
Ken Wakasa586f0512011-01-20 22:31:01 +09002972 final int subtypeCount = info.getSubtypeCount();
2973 for (int i = 0; i < subtypeCount; ++i) {
2974 InputMethodSubtype ims = info.getSubtypeAt(i);
satok884ef9a2010-11-18 10:39:46 +09002975 for (String s: imsPair.second) {
2976 if (String.valueOf(ims.hashCode()).equals(s)) {
2977 enabledSubtypes.add(ims);
2978 }
satok67ddf9c2010-11-17 09:45:54 +09002979 }
2980 }
satok884ef9a2010-11-18 10:39:46 +09002981 break;
satok67ddf9c2010-11-17 09:45:54 +09002982 }
satok67ddf9c2010-11-17 09:45:54 +09002983 }
2984 }
2985 return enabledSubtypes;
2986 }
2987
satokd87c2592010-09-29 11:52:06 +09002988 // At the initial boot, the settings for input methods are not set,
2989 // so we need to enable IME in that case.
2990 public void enableAllIMEsIfThereIsNoEnabledIME() {
2991 if (TextUtils.isEmpty(getEnabledInputMethodsStr())) {
2992 StringBuilder sb = new StringBuilder();
2993 final int N = mMethodList.size();
2994 for (int i = 0; i < N; i++) {
2995 InputMethodInfo imi = mMethodList.get(i);
2996 Slog.i(TAG, "Adding: " + imi.getId());
2997 if (i > 0) sb.append(':');
2998 sb.append(imi.getId());
2999 }
3000 putEnabledInputMethodsStr(sb.toString());
3001 }
3002 }
3003
satokbb4aa062011-01-19 21:40:27 +09003004 private List<Pair<String, ArrayList<String>>> getEnabledInputMethodsAndSubtypeListLocked() {
satokd87c2592010-09-29 11:52:06 +09003005 ArrayList<Pair<String, ArrayList<String>>> imsList
3006 = new ArrayList<Pair<String, ArrayList<String>>>();
3007 final String enabledInputMethodsStr = getEnabledInputMethodsStr();
3008 if (TextUtils.isEmpty(enabledInputMethodsStr)) {
3009 return imsList;
3010 }
satok723a27e2010-11-11 14:58:11 +09003011 mInputMethodSplitter.setString(enabledInputMethodsStr);
3012 while (mInputMethodSplitter.hasNext()) {
3013 String nextImsStr = mInputMethodSplitter.next();
3014 mSubtypeSplitter.setString(nextImsStr);
3015 if (mSubtypeSplitter.hasNext()) {
satokd87c2592010-09-29 11:52:06 +09003016 ArrayList<String> subtypeHashes = new ArrayList<String>();
3017 // The first element is ime id.
satok723a27e2010-11-11 14:58:11 +09003018 String imeId = mSubtypeSplitter.next();
3019 while (mSubtypeSplitter.hasNext()) {
3020 subtypeHashes.add(mSubtypeSplitter.next());
satokd87c2592010-09-29 11:52:06 +09003021 }
3022 imsList.add(new Pair<String, ArrayList<String>>(imeId, subtypeHashes));
3023 }
3024 }
3025 return imsList;
3026 }
3027
3028 public void appendAndPutEnabledInputMethodLocked(String id, boolean reloadInputMethodStr) {
3029 if (reloadInputMethodStr) {
3030 getEnabledInputMethodsStr();
3031 }
3032 if (TextUtils.isEmpty(mEnabledInputMethodsStrCache)) {
3033 // Add in the newly enabled input method.
3034 putEnabledInputMethodsStr(id);
3035 } else {
3036 putEnabledInputMethodsStr(
3037 mEnabledInputMethodsStrCache + INPUT_METHOD_SEPARATER + id);
3038 }
3039 }
3040
3041 /**
3042 * Build and put a string of EnabledInputMethods with removing specified Id.
3043 * @return the specified id was removed or not.
3044 */
3045 public boolean buildAndPutEnabledInputMethodsStrRemovingIdLocked(
3046 StringBuilder builder, List<Pair<String, ArrayList<String>>> imsList, String id) {
3047 boolean isRemoved = false;
3048 boolean needsAppendSeparator = false;
3049 for (Pair<String, ArrayList<String>> ims: imsList) {
3050 String curId = ims.first;
3051 if (curId.equals(id)) {
3052 // We are disabling this input method, and it is
3053 // currently enabled. Skip it to remove from the
3054 // new list.
3055 isRemoved = true;
3056 } else {
3057 if (needsAppendSeparator) {
3058 builder.append(INPUT_METHOD_SEPARATER);
3059 } else {
3060 needsAppendSeparator = true;
3061 }
3062 buildEnabledInputMethodsSettingString(builder, ims);
3063 }
3064 }
3065 if (isRemoved) {
3066 // Update the setting with the new list of input methods.
3067 putEnabledInputMethodsStr(builder.toString());
3068 }
3069 return isRemoved;
3070 }
3071
3072 private List<InputMethodInfo> createEnabledInputMethodListLocked(
3073 List<Pair<String, ArrayList<String>>> imsList) {
3074 final ArrayList<InputMethodInfo> res = new ArrayList<InputMethodInfo>();
3075 for (Pair<String, ArrayList<String>> ims: imsList) {
3076 InputMethodInfo info = mMethodMap.get(ims.first);
3077 if (info != null) {
3078 res.add(info);
3079 }
3080 }
3081 return res;
3082 }
3083
satok7f35c8c2010-10-07 21:13:11 +09003084 private List<Pair<InputMethodInfo, ArrayList<String>>>
satok67ddf9c2010-11-17 09:45:54 +09003085 createEnabledInputMethodAndSubtypeHashCodeListLocked(
satok7f35c8c2010-10-07 21:13:11 +09003086 List<Pair<String, ArrayList<String>>> imsList) {
3087 final ArrayList<Pair<InputMethodInfo, ArrayList<String>>> res
3088 = new ArrayList<Pair<InputMethodInfo, ArrayList<String>>>();
3089 for (Pair<String, ArrayList<String>> ims : imsList) {
3090 InputMethodInfo info = mMethodMap.get(ims.first);
3091 if (info != null) {
3092 res.add(new Pair<InputMethodInfo, ArrayList<String>>(info, ims.second));
3093 }
3094 }
3095 return res;
3096 }
3097
satokd87c2592010-09-29 11:52:06 +09003098 private void putEnabledInputMethodsStr(String str) {
3099 Settings.Secure.putString(mResolver, Settings.Secure.ENABLED_INPUT_METHODS, str);
3100 mEnabledInputMethodsStrCache = str;
3101 }
3102
3103 private String getEnabledInputMethodsStr() {
3104 mEnabledInputMethodsStrCache = Settings.Secure.getString(
3105 mResolver, Settings.Secure.ENABLED_INPUT_METHODS);
satok723a27e2010-11-11 14:58:11 +09003106 if (DEBUG) {
3107 Slog.d(TAG, "getEnabledInputMethodsStr: " + mEnabledInputMethodsStrCache);
3108 }
satokd87c2592010-09-29 11:52:06 +09003109 return mEnabledInputMethodsStrCache;
3110 }
satok723a27e2010-11-11 14:58:11 +09003111
3112 private void saveSubtypeHistory(
3113 List<Pair<String, String>> savedImes, String newImeId, String newSubtypeId) {
3114 StringBuilder builder = new StringBuilder();
3115 boolean isImeAdded = false;
3116 if (!TextUtils.isEmpty(newImeId) && !TextUtils.isEmpty(newSubtypeId)) {
3117 builder.append(newImeId).append(INPUT_METHOD_SUBTYPE_SEPARATER).append(
3118 newSubtypeId);
3119 isImeAdded = true;
3120 }
3121 for (Pair<String, String> ime: savedImes) {
3122 String imeId = ime.first;
3123 String subtypeId = ime.second;
3124 if (TextUtils.isEmpty(subtypeId)) {
3125 subtypeId = NOT_A_SUBTYPE_ID_STR;
3126 }
3127 if (isImeAdded) {
3128 builder.append(INPUT_METHOD_SEPARATER);
3129 } else {
3130 isImeAdded = true;
3131 }
3132 builder.append(imeId).append(INPUT_METHOD_SUBTYPE_SEPARATER).append(
3133 subtypeId);
3134 }
3135 // Remove the last INPUT_METHOD_SEPARATER
3136 putSubtypeHistoryStr(builder.toString());
3137 }
3138
3139 public void addSubtypeToHistory(String imeId, String subtypeId) {
3140 List<Pair<String, String>> subtypeHistory = loadInputMethodAndSubtypeHistoryLocked();
3141 for (Pair<String, String> ime: subtypeHistory) {
3142 if (ime.first.equals(imeId)) {
3143 if (DEBUG) {
satokbb4aa062011-01-19 21:40:27 +09003144 Slog.v(TAG, "Subtype found in the history: " + imeId + ", "
satok723a27e2010-11-11 14:58:11 +09003145 + ime.second);
3146 }
3147 // We should break here
3148 subtypeHistory.remove(ime);
3149 break;
3150 }
3151 }
satokbb4aa062011-01-19 21:40:27 +09003152 if (DEBUG) {
3153 Slog.v(TAG, "Add subtype to the history: " + imeId + ", " + subtypeId);
3154 }
satok723a27e2010-11-11 14:58:11 +09003155 saveSubtypeHistory(subtypeHistory, imeId, subtypeId);
3156 }
3157
3158 private void putSubtypeHistoryStr(String str) {
3159 if (DEBUG) {
3160 Slog.d(TAG, "putSubtypeHistoryStr: " + str);
3161 }
3162 Settings.Secure.putString(
3163 mResolver, Settings.Secure.INPUT_METHODS_SUBTYPE_HISTORY, str);
3164 }
3165
3166 public Pair<String, String> getLastInputMethodAndSubtypeLocked() {
3167 // Gets the first one from the history
3168 return getLastSubtypeForInputMethodLockedInternal(null);
3169 }
3170
3171 public String getLastSubtypeForInputMethodLocked(String imeId) {
3172 Pair<String, String> ime = getLastSubtypeForInputMethodLockedInternal(imeId);
3173 if (ime != null) {
3174 return ime.second;
3175 } else {
3176 return null;
3177 }
3178 }
3179
3180 private Pair<String, String> getLastSubtypeForInputMethodLockedInternal(String imeId) {
3181 List<Pair<String, ArrayList<String>>> enabledImes =
3182 getEnabledInputMethodsAndSubtypeListLocked();
3183 List<Pair<String, String>> subtypeHistory = loadInputMethodAndSubtypeHistoryLocked();
satok4fc87d62011-05-20 16:13:43 +09003184 for (Pair<String, String> imeAndSubtype : subtypeHistory) {
satok723a27e2010-11-11 14:58:11 +09003185 final String imeInTheHistory = imeAndSubtype.first;
3186 // If imeId is empty, returns the first IME and subtype in the history
3187 if (TextUtils.isEmpty(imeId) || imeInTheHistory.equals(imeId)) {
3188 final String subtypeInTheHistory = imeAndSubtype.second;
satokdf31ae62011-01-15 06:19:44 +09003189 final String subtypeHashCode =
3190 getEnabledSubtypeHashCodeForInputMethodAndSubtypeLocked(
3191 enabledImes, imeInTheHistory, subtypeInTheHistory);
satok723a27e2010-11-11 14:58:11 +09003192 if (!TextUtils.isEmpty(subtypeHashCode)) {
3193 if (DEBUG) {
satokbb4aa062011-01-19 21:40:27 +09003194 Slog.d(TAG, "Enabled subtype found in the history: " + subtypeHashCode);
satok723a27e2010-11-11 14:58:11 +09003195 }
3196 return new Pair<String, String>(imeInTheHistory, subtypeHashCode);
3197 }
3198 }
3199 }
3200 if (DEBUG) {
3201 Slog.d(TAG, "No enabled IME found in the history");
3202 }
3203 return null;
3204 }
3205
satokdf31ae62011-01-15 06:19:44 +09003206 private String getEnabledSubtypeHashCodeForInputMethodAndSubtypeLocked(List<Pair<String,
satok723a27e2010-11-11 14:58:11 +09003207 ArrayList<String>>> enabledImes, String imeId, String subtypeHashCode) {
3208 for (Pair<String, ArrayList<String>> enabledIme: enabledImes) {
3209 if (enabledIme.first.equals(imeId)) {
satokf6cafb62011-01-17 16:29:02 +09003210 final ArrayList<String> explicitlyEnabledSubtypes = enabledIme.second;
3211 if (explicitlyEnabledSubtypes.size() == 0) {
3212 // If there are no explicitly enabled subtypes, applicable subtypes are
3213 // enabled implicitly.
satoka86f5e42011-09-02 17:12:42 +09003214 InputMethodInfo imi = mMethodMap.get(imeId);
satokdf31ae62011-01-15 06:19:44 +09003215 // If IME is enabled and no subtypes are enabled, applicable subtypes
3216 // are enabled implicitly, so needs to treat them to be enabled.
satoka86f5e42011-09-02 17:12:42 +09003217 if (imi != null && imi.getSubtypeCount() > 0) {
satokdf31ae62011-01-15 06:19:44 +09003218 List<InputMethodSubtype> implicitlySelectedSubtypes =
satoka86f5e42011-09-02 17:12:42 +09003219 getImplicitlyApplicableSubtypesLocked(mRes, imi);
satokdf31ae62011-01-15 06:19:44 +09003220 if (implicitlySelectedSubtypes != null) {
3221 final int N = implicitlySelectedSubtypes.size();
3222 for (int i = 0; i < N; ++i) {
3223 final InputMethodSubtype st = implicitlySelectedSubtypes.get(i);
3224 if (String.valueOf(st.hashCode()).equals(subtypeHashCode)) {
3225 return subtypeHashCode;
3226 }
3227 }
3228 }
3229 }
3230 } else {
satokf6cafb62011-01-17 16:29:02 +09003231 for (String s: explicitlyEnabledSubtypes) {
satokdf31ae62011-01-15 06:19:44 +09003232 if (s.equals(subtypeHashCode)) {
3233 // If both imeId and subtypeId are enabled, return subtypeId.
3234 return s;
3235 }
satok723a27e2010-11-11 14:58:11 +09003236 }
3237 }
3238 // If imeId was enabled but subtypeId was disabled.
3239 return NOT_A_SUBTYPE_ID_STR;
3240 }
3241 }
3242 // If both imeId and subtypeId are disabled, return null
3243 return null;
3244 }
3245
3246 private List<Pair<String, String>> loadInputMethodAndSubtypeHistoryLocked() {
3247 ArrayList<Pair<String, String>> imsList = new ArrayList<Pair<String, String>>();
3248 final String subtypeHistoryStr = getSubtypeHistoryStr();
3249 if (TextUtils.isEmpty(subtypeHistoryStr)) {
3250 return imsList;
3251 }
3252 mInputMethodSplitter.setString(subtypeHistoryStr);
3253 while (mInputMethodSplitter.hasNext()) {
3254 String nextImsStr = mInputMethodSplitter.next();
3255 mSubtypeSplitter.setString(nextImsStr);
3256 if (mSubtypeSplitter.hasNext()) {
3257 String subtypeId = NOT_A_SUBTYPE_ID_STR;
3258 // The first element is ime id.
3259 String imeId = mSubtypeSplitter.next();
3260 while (mSubtypeSplitter.hasNext()) {
3261 subtypeId = mSubtypeSplitter.next();
3262 break;
3263 }
3264 imsList.add(new Pair<String, String>(imeId, subtypeId));
3265 }
3266 }
3267 return imsList;
3268 }
3269
3270 private String getSubtypeHistoryStr() {
3271 if (DEBUG) {
3272 Slog.d(TAG, "getSubtypeHistoryStr: " + Settings.Secure.getString(
3273 mResolver, Settings.Secure.INPUT_METHODS_SUBTYPE_HISTORY));
3274 }
3275 return Settings.Secure.getString(
3276 mResolver, Settings.Secure.INPUT_METHODS_SUBTYPE_HISTORY);
3277 }
3278
3279 public void putSelectedInputMethod(String imeId) {
3280 Settings.Secure.putString(mResolver, Settings.Secure.DEFAULT_INPUT_METHOD, imeId);
3281 }
3282
3283 public void putSelectedSubtype(int subtypeId) {
3284 Settings.Secure.putInt(
3285 mResolver, Settings.Secure.SELECTED_INPUT_METHOD_SUBTYPE, subtypeId);
3286 }
satokd87c2592010-09-29 11:52:06 +09003287 }
3288
satoke7c6998e2011-06-03 17:57:59 +09003289 private static class InputMethodFileManager {
3290 private static final String SYSTEM_PATH = "system";
3291 private static final String INPUT_METHOD_PATH = "inputmethod";
3292 private static final String ADDITIONAL_SUBTYPES_FILE_NAME = "subtypes.xml";
3293 private static final String NODE_SUBTYPES = "subtypes";
3294 private static final String NODE_SUBTYPE = "subtype";
3295 private static final String NODE_IMI = "imi";
3296 private static final String ATTR_ID = "id";
3297 private static final String ATTR_LABEL = "label";
3298 private static final String ATTR_ICON = "icon";
3299 private static final String ATTR_IME_SUBTYPE_LOCALE = "imeSubtypeLocale";
3300 private static final String ATTR_IME_SUBTYPE_MODE = "imeSubtypeMode";
3301 private static final String ATTR_IME_SUBTYPE_EXTRA_VALUE = "imeSubtypeExtraValue";
3302 private static final String ATTR_IS_AUXILIARY = "isAuxiliary";
3303 private final AtomicFile mAdditionalInputMethodSubtypeFile;
3304 private final HashMap<String, InputMethodInfo> mMethodMap;
3305 private final HashMap<String, List<InputMethodSubtype>> mSubtypesMap =
3306 new HashMap<String, List<InputMethodSubtype>>();
3307 public InputMethodFileManager(HashMap<String, InputMethodInfo> methodMap) {
3308 if (methodMap == null) {
3309 throw new NullPointerException("methodMap is null");
3310 }
3311 mMethodMap = methodMap;
3312 final File systemDir = new File(Environment.getDataDirectory(), SYSTEM_PATH);
3313 final File inputMethodDir = new File(systemDir, INPUT_METHOD_PATH);
3314 if (!inputMethodDir.mkdirs()) {
3315 Slog.w(TAG, "Couldn't create dir.: " + inputMethodDir.getAbsolutePath());
3316 }
3317 final File subtypeFile = new File(inputMethodDir, ADDITIONAL_SUBTYPES_FILE_NAME);
3318 mAdditionalInputMethodSubtypeFile = new AtomicFile(subtypeFile);
3319 if (!subtypeFile.exists()) {
3320 // If "subtypes.xml" doesn't exist, create a blank file.
3321 writeAdditionalInputMethodSubtypes(mSubtypesMap, mAdditionalInputMethodSubtypeFile,
3322 methodMap);
3323 } else {
3324 readAdditionalInputMethodSubtypes(mSubtypesMap, mAdditionalInputMethodSubtypeFile);
3325 }
3326 }
3327
3328 private void deleteAllInputMethodSubtypes(String imiId) {
3329 synchronized (mMethodMap) {
3330 mSubtypesMap.remove(imiId);
3331 writeAdditionalInputMethodSubtypes(mSubtypesMap, mAdditionalInputMethodSubtypeFile,
3332 mMethodMap);
3333 }
3334 }
3335
3336 public void addInputMethodSubtypes(
satok4a28bde2011-06-29 21:03:40 +09003337 InputMethodInfo imi, InputMethodSubtype[] additionalSubtypes) {
satoke7c6998e2011-06-03 17:57:59 +09003338 synchronized (mMethodMap) {
3339 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>();
3340 final int N = additionalSubtypes.length;
3341 for (int i = 0; i < N; ++i) {
3342 final InputMethodSubtype subtype = additionalSubtypes[i];
satoked2b24e2011-08-31 18:03:21 +09003343 if (!subtypes.contains(subtype)) {
satoke7c6998e2011-06-03 17:57:59 +09003344 subtypes.add(subtype);
3345 }
3346 }
satok4a28bde2011-06-29 21:03:40 +09003347 mSubtypesMap.put(imi.getId(), subtypes);
satoke7c6998e2011-06-03 17:57:59 +09003348 writeAdditionalInputMethodSubtypes(mSubtypesMap, mAdditionalInputMethodSubtypeFile,
3349 mMethodMap);
3350 }
3351 }
3352
3353 public HashMap<String, List<InputMethodSubtype>> getAllAdditionalInputMethodSubtypes() {
3354 synchronized (mMethodMap) {
3355 return mSubtypesMap;
3356 }
3357 }
3358
3359 private static void writeAdditionalInputMethodSubtypes(
3360 HashMap<String, List<InputMethodSubtype>> allSubtypes, AtomicFile subtypesFile,
3361 HashMap<String, InputMethodInfo> methodMap) {
3362 // Safety net for the case that this function is called before methodMap is set.
3363 final boolean isSetMethodMap = methodMap != null && methodMap.size() > 0;
3364 FileOutputStream fos = null;
3365 try {
3366 fos = subtypesFile.startWrite();
3367 final XmlSerializer out = new FastXmlSerializer();
3368 out.setOutput(fos, "utf-8");
3369 out.startDocument(null, true);
3370 out.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
3371 out.startTag(null, NODE_SUBTYPES);
3372 for (String imiId : allSubtypes.keySet()) {
3373 if (isSetMethodMap && !methodMap.containsKey(imiId)) {
3374 Slog.w(TAG, "IME uninstalled or not valid.: " + imiId);
3375 continue;
3376 }
3377 out.startTag(null, NODE_IMI);
3378 out.attribute(null, ATTR_ID, imiId);
3379 final List<InputMethodSubtype> subtypesList = allSubtypes.get(imiId);
3380 final int N = subtypesList.size();
3381 for (int i = 0; i < N; ++i) {
3382 final InputMethodSubtype subtype = subtypesList.get(i);
3383 out.startTag(null, NODE_SUBTYPE);
3384 out.attribute(null, ATTR_ICON, String.valueOf(subtype.getIconResId()));
3385 out.attribute(null, ATTR_LABEL, String.valueOf(subtype.getNameResId()));
3386 out.attribute(null, ATTR_IME_SUBTYPE_LOCALE, subtype.getLocale());
3387 out.attribute(null, ATTR_IME_SUBTYPE_MODE, subtype.getMode());
3388 out.attribute(null, ATTR_IME_SUBTYPE_EXTRA_VALUE, subtype.getExtraValue());
3389 out.attribute(null, ATTR_IS_AUXILIARY,
3390 String.valueOf(subtype.isAuxiliary() ? 1 : 0));
3391 out.endTag(null, NODE_SUBTYPE);
3392 }
3393 out.endTag(null, NODE_IMI);
3394 }
3395 out.endTag(null, NODE_SUBTYPES);
3396 out.endDocument();
3397 subtypesFile.finishWrite(fos);
3398 } catch (java.io.IOException e) {
3399 Slog.w(TAG, "Error writing subtypes", e);
3400 if (fos != null) {
3401 subtypesFile.failWrite(fos);
3402 }
3403 }
3404 }
3405
3406 private static void readAdditionalInputMethodSubtypes(
3407 HashMap<String, List<InputMethodSubtype>> allSubtypes, AtomicFile subtypesFile) {
3408 if (allSubtypes == null || subtypesFile == null) return;
3409 allSubtypes.clear();
3410 FileInputStream fis = null;
3411 try {
3412 fis = subtypesFile.openRead();
3413 final XmlPullParser parser = Xml.newPullParser();
3414 parser.setInput(fis, null);
3415 int type = parser.getEventType();
3416 // Skip parsing until START_TAG
3417 while ((type = parser.next()) != XmlPullParser.START_TAG
3418 && type != XmlPullParser.END_DOCUMENT) {}
3419 String firstNodeName = parser.getName();
3420 if (!NODE_SUBTYPES.equals(firstNodeName)) {
3421 throw new XmlPullParserException("Xml doesn't start with subtypes");
3422 }
3423 final int depth =parser.getDepth();
3424 String currentImiId = null;
3425 ArrayList<InputMethodSubtype> tempSubtypesArray = null;
3426 while (((type = parser.next()) != XmlPullParser.END_TAG
3427 || parser.getDepth() > depth) && type != XmlPullParser.END_DOCUMENT) {
3428 if (type != XmlPullParser.START_TAG)
3429 continue;
3430 final String nodeName = parser.getName();
3431 if (NODE_IMI.equals(nodeName)) {
3432 currentImiId = parser.getAttributeValue(null, ATTR_ID);
3433 if (TextUtils.isEmpty(currentImiId)) {
3434 Slog.w(TAG, "Invalid imi id found in subtypes.xml");
3435 continue;
3436 }
3437 tempSubtypesArray = new ArrayList<InputMethodSubtype>();
3438 allSubtypes.put(currentImiId, tempSubtypesArray);
3439 } else if (NODE_SUBTYPE.equals(nodeName)) {
3440 if (TextUtils.isEmpty(currentImiId) || tempSubtypesArray == null) {
3441 Slog.w(TAG, "IME uninstalled or not valid.: " + currentImiId);
3442 continue;
3443 }
3444 final int icon = Integer.valueOf(
3445 parser.getAttributeValue(null, ATTR_ICON));
3446 final int label = Integer.valueOf(
3447 parser.getAttributeValue(null, ATTR_LABEL));
3448 final String imeSubtypeLocale =
3449 parser.getAttributeValue(null, ATTR_IME_SUBTYPE_LOCALE);
3450 final String imeSubtypeMode =
3451 parser.getAttributeValue(null, ATTR_IME_SUBTYPE_MODE);
3452 final String imeSubtypeExtraValue =
3453 parser.getAttributeValue(null, ATTR_IME_SUBTYPE_EXTRA_VALUE);
satok4a28bde2011-06-29 21:03:40 +09003454 final boolean isAuxiliary = "1".equals(String.valueOf(
3455 parser.getAttributeValue(null, ATTR_IS_AUXILIARY)));
satoke7c6998e2011-06-03 17:57:59 +09003456 final InputMethodSubtype subtype =
3457 new InputMethodSubtype(label, icon, imeSubtypeLocale,
3458 imeSubtypeMode, imeSubtypeExtraValue, isAuxiliary);
3459 tempSubtypesArray.add(subtype);
3460 }
3461 }
3462 } catch (XmlPullParserException e) {
3463 Slog.w(TAG, "Error reading subtypes: " + e);
3464 return;
3465 } catch (java.io.IOException e) {
3466 Slog.w(TAG, "Error reading subtypes: " + e);
3467 return;
3468 } catch (NumberFormatException e) {
3469 Slog.w(TAG, "Error reading subtypes: " + e);
3470 return;
3471 } finally {
3472 if (fis != null) {
3473 try {
3474 fis.close();
3475 } catch (java.io.IOException e1) {
3476 Slog.w(TAG, "Failed to close.");
3477 }
3478 }
3479 }
3480 }
3481 }
3482
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003483 // ----------------------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003484
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003485 @Override
3486 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
3487 if (mContext.checkCallingOrSelfPermission(android.Manifest.permission.DUMP)
3488 != PackageManager.PERMISSION_GRANTED) {
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003489
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003490 pw.println("Permission Denial: can't dump InputMethodManager from from pid="
3491 + Binder.getCallingPid()
3492 + ", uid=" + Binder.getCallingUid());
3493 return;
3494 }
3495
3496 IInputMethod method;
3497 ClientState client;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003498
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003499 final Printer p = new PrintWriterPrinter(pw);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003500
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003501 synchronized (mMethodMap) {
3502 p.println("Current Input Method Manager state:");
3503 int N = mMethodList.size();
3504 p.println(" Input Methods:");
3505 for (int i=0; i<N; i++) {
3506 InputMethodInfo info = mMethodList.get(i);
3507 p.println(" InputMethod #" + i + ":");
3508 info.dump(p, " ");
3509 }
3510 p.println(" Clients:");
3511 for (ClientState ci : mClients.values()) {
3512 p.println(" Client " + ci + ":");
3513 p.println(" client=" + ci.client);
3514 p.println(" inputContext=" + ci.inputContext);
3515 p.println(" sessionRequested=" + ci.sessionRequested);
3516 p.println(" curSession=" + ci.curSession);
3517 }
The Android Open Source Project10592532009-03-18 17:39:46 -07003518 p.println(" mCurMethodId=" + mCurMethodId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003519 client = mCurClient;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07003520 p.println(" mCurClient=" + client + " mCurSeq=" + mCurSeq);
3521 p.println(" mCurFocusedWindow=" + mCurFocusedWindow);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003522 p.println(" mCurId=" + mCurId + " mHaveConnect=" + mHaveConnection
3523 + " mBoundToMethod=" + mBoundToMethod);
3524 p.println(" mCurToken=" + mCurToken);
3525 p.println(" mCurIntent=" + mCurIntent);
3526 method = mCurMethod;
3527 p.println(" mCurMethod=" + mCurMethod);
3528 p.println(" mEnabledSession=" + mEnabledSession);
3529 p.println(" mShowRequested=" + mShowRequested
3530 + " mShowExplicitlyRequested=" + mShowExplicitlyRequested
3531 + " mShowForced=" + mShowForced
3532 + " mInputShown=" + mInputShown);
Dianne Hackborncc278702009-09-02 23:07:23 -07003533 p.println(" mSystemReady=" + mSystemReady + " mScreenOn=" + mScreenOn);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003534 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003535
Jeff Brownb88102f2010-09-08 11:49:43 -07003536 p.println(" ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003537 if (client != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003538 pw.flush();
3539 try {
3540 client.client.asBinder().dump(fd, args);
3541 } catch (RemoteException e) {
3542 p.println("Input method client dead: " + e);
3543 }
Jeff Brownb88102f2010-09-08 11:49:43 -07003544 } else {
3545 p.println("No input method client.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003546 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003547
Jeff Brownb88102f2010-09-08 11:49:43 -07003548 p.println(" ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003549 if (method != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003550 pw.flush();
3551 try {
3552 method.asBinder().dump(fd, args);
3553 } catch (RemoteException e) {
3554 p.println("Input method service dead: " + e);
3555 }
Jeff Brownb88102f2010-09-08 11:49:43 -07003556 } else {
3557 p.println("No input method service.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003558 }
3559 }
3560}