blob: 86669f8df6e0df5c759682daa324e71938f5bd83 [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
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800789 InputBindResult attachNewInputLocked(boolean initial, boolean needResult) {
790 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 }
807 return needResult
808 ? new InputBindResult(session.session, mCurId, mCurSeq)
809 : null;
810 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800811
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800812 InputBindResult startInputLocked(IInputMethodClient client,
813 IInputContext inputContext, EditorInfo attribute,
814 boolean initial, boolean needResult) {
815 // If no method is currently selected, do nothing.
816 if (mCurMethodId == null) {
817 return mNoBinding;
818 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800819
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800820 ClientState cs = mClients.get(client.asBinder());
821 if (cs == null) {
822 throw new IllegalArgumentException("unknown client "
823 + client.asBinder());
824 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800825
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800826 try {
827 if (!mIWindowManager.inputMethodClientHasFocus(cs.client)) {
828 // Check with the window manager to make sure this client actually
829 // has a window with focus. If not, reject. This is thread safe
830 // because if the focus changes some time before or after, the
831 // next client receiving focus that has any interest in input will
832 // be calling through here after that change happens.
Joe Onorato8a9b2202010-02-26 18:56:32 -0800833 Slog.w(TAG, "Starting input on non-focused client " + cs.client
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800834 + " (uid=" + cs.uid + " pid=" + cs.pid + ")");
835 return null;
836 }
837 } catch (RemoteException e) {
838 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800839
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800840 if (mCurClient != cs) {
841 // If the client is changing, we need to switch over to the new
842 // one.
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700843 unbindCurrentClientLocked();
Joe Onorato8a9b2202010-02-26 18:56:32 -0800844 if (DEBUG) Slog.v(TAG, "switching to client: client = "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800845 + cs.client.asBinder());
846
847 // If the screen is on, inform the new client it is active
848 if (mScreenOn) {
849 try {
850 cs.client.setActive(mScreenOn);
851 } catch (RemoteException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800852 Slog.w(TAG, "Got RemoteException sending setActive notification to pid "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800853 + cs.pid + " uid " + cs.uid);
854 }
855 }
856 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800857
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800858 // Bump up the sequence for this client and attach it.
859 mCurSeq++;
860 if (mCurSeq <= 0) mCurSeq = 1;
861 mCurClient = cs;
862 mCurInputContext = inputContext;
863 mCurAttribute = attribute;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800864
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800865 // Check if the input method is changing.
866 if (mCurId != null && mCurId.equals(mCurMethodId)) {
867 if (cs.curSession != null) {
868 // Fast case: if we are already connected to the input method,
869 // then just return it.
870 return attachNewInputLocked(initial, needResult);
871 }
872 if (mHaveConnection) {
873 if (mCurMethod != null) {
874 if (!cs.sessionRequested) {
875 cs.sessionRequested = true;
Joe Onorato8a9b2202010-02-26 18:56:32 -0800876 if (DEBUG) Slog.v(TAG, "Creating new session for client " + cs);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800877 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
878 MSG_CREATE_SESSION, mCurMethod,
Jean Chalarde0d32a62011-10-20 20:36:07 +0900879 new MethodCallback(mCurMethod, this)));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800880 }
881 // Return to client, and we will get back with it when
882 // we have had a session made for it.
883 return new InputBindResult(null, mCurId, mCurSeq);
884 } else if (SystemClock.uptimeMillis()
885 < (mLastBindTime+TIME_TO_RECONNECT)) {
886 // In this case we have connected to the service, but
887 // don't yet have its interface. If it hasn't been too
888 // long since we did the connection, we'll return to
889 // the client and wait to get the service interface so
890 // we can report back. If it has been too long, we want
891 // to fall through so we can try a disconnect/reconnect
892 // to see if we can get back in touch with the service.
893 return new InputBindResult(null, mCurId, mCurSeq);
894 } else {
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800895 EventLog.writeEvent(EventLogTags.IMF_FORCE_RECONNECT_IME,
896 mCurMethodId, SystemClock.uptimeMillis()-mLastBindTime, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800897 }
898 }
899 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800900
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700901 return startInputInnerLocked();
902 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800903
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700904 InputBindResult startInputInnerLocked() {
905 if (mCurMethodId == null) {
906 return mNoBinding;
907 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800908
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700909 if (!mSystemReady) {
910 // If the system is not yet ready, we shouldn't be running third
911 // party code.
Dianne Hackborncc278702009-09-02 23:07:23 -0700912 return new InputBindResult(null, mCurMethodId, mCurSeq);
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700913 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800914
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800915 InputMethodInfo info = mMethodMap.get(mCurMethodId);
916 if (info == null) {
917 throw new IllegalArgumentException("Unknown id: " + mCurMethodId);
918 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800919
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700920 unbindCurrentMethodLocked(false);
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800921
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800922 mCurIntent = new Intent(InputMethod.SERVICE_INTERFACE);
923 mCurIntent.setComponent(info.getComponent());
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700924 mCurIntent.putExtra(Intent.EXTRA_CLIENT_LABEL,
925 com.android.internal.R.string.input_method_binding_label);
926 mCurIntent.putExtra(Intent.EXTRA_CLIENT_INTENT, PendingIntent.getActivity(
927 mContext, 0, new Intent(Settings.ACTION_INPUT_METHOD_SETTINGS), 0));
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700928 if (mContext.bindService(mCurIntent, this, Context.BIND_AUTO_CREATE
929 | Context.BIND_NOT_VISIBLE)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800930 mLastBindTime = SystemClock.uptimeMillis();
931 mHaveConnection = true;
932 mCurId = info.getId();
933 mCurToken = new Binder();
934 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800935 if (DEBUG) Slog.v(TAG, "Adding window token: " + mCurToken);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800936 mIWindowManager.addWindowToken(mCurToken,
937 WindowManager.LayoutParams.TYPE_INPUT_METHOD);
938 } catch (RemoteException e) {
939 }
940 return new InputBindResult(null, mCurId, mCurSeq);
941 } else {
942 mCurIntent = null;
Joe Onorato8a9b2202010-02-26 18:56:32 -0800943 Slog.w(TAG, "Failure connecting to input method service: "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800944 + mCurIntent);
945 }
946 return null;
947 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800948
satoke7c6998e2011-06-03 17:57:59 +0900949 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800950 public InputBindResult startInput(IInputMethodClient client,
951 IInputContext inputContext, EditorInfo attribute,
952 boolean initial, boolean needResult) {
953 synchronized (mMethodMap) {
954 final long ident = Binder.clearCallingIdentity();
955 try {
956 return startInputLocked(client, inputContext, attribute,
957 initial, needResult);
958 } finally {
959 Binder.restoreCallingIdentity(ident);
960 }
961 }
962 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800963
satoke7c6998e2011-06-03 17:57:59 +0900964 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800965 public void finishInput(IInputMethodClient client) {
966 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800967
satoke7c6998e2011-06-03 17:57:59 +0900968 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800969 public void onServiceConnected(ComponentName name, IBinder service) {
970 synchronized (mMethodMap) {
971 if (mCurIntent != null && name.equals(mCurIntent.getComponent())) {
972 mCurMethod = IInputMethod.Stub.asInterface(service);
Dianne Hackborncc278702009-09-02 23:07:23 -0700973 if (mCurToken == null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800974 Slog.w(TAG, "Service connected without a token!");
Dianne Hackborncc278702009-09-02 23:07:23 -0700975 unbindCurrentMethodLocked(false);
976 return;
977 }
Joe Onorato8a9b2202010-02-26 18:56:32 -0800978 if (DEBUG) Slog.v(TAG, "Initiating attach with token: " + mCurToken);
Dianne Hackborncc278702009-09-02 23:07:23 -0700979 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
980 MSG_ATTACH_TOKEN, mCurMethod, mCurToken));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800981 if (mCurClient != null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800982 if (DEBUG) Slog.v(TAG, "Creating first session while with client "
Dianne Hackborncc278702009-09-02 23:07:23 -0700983 + mCurClient);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800984 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
Dianne Hackborncc278702009-09-02 23:07:23 -0700985 MSG_CREATE_SESSION, mCurMethod,
Jean Chalarde0d32a62011-10-20 20:36:07 +0900986 new MethodCallback(mCurMethod, this)));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800987 }
988 }
989 }
990 }
991
992 void onSessionCreated(IInputMethod method, IInputMethodSession session) {
993 synchronized (mMethodMap) {
994 if (mCurMethod != null && method != null
995 && mCurMethod.asBinder() == method.asBinder()) {
996 if (mCurClient != null) {
997 mCurClient.curSession = new SessionState(mCurClient,
998 method, session);
999 mCurClient.sessionRequested = false;
1000 InputBindResult res = attachNewInputLocked(true, true);
1001 if (res.method != null) {
1002 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageOO(
1003 MSG_BIND_METHOD, mCurClient.client, res));
1004 }
1005 }
1006 }
1007 }
1008 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001009
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001010 void unbindCurrentMethodLocked(boolean reportToClient) {
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07001011 if (mVisibleBound) {
1012 mContext.unbindService(mVisibleConnection);
1013 mVisibleBound = false;
1014 }
1015
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001016 if (mHaveConnection) {
1017 mContext.unbindService(this);
1018 mHaveConnection = false;
1019 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001020
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001021 if (mCurToken != null) {
1022 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001023 if (DEBUG) Slog.v(TAG, "Removing window token: " + mCurToken);
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001024 mIWindowManager.removeWindowToken(mCurToken);
1025 } catch (RemoteException e) {
1026 }
1027 mCurToken = null;
1028 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001029
The Android Open Source Project10592532009-03-18 17:39:46 -07001030 mCurId = null;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001031 clearCurMethodLocked();
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001032
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001033 if (reportToClient && mCurClient != null) {
1034 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
1035 MSG_UNBIND_METHOD, mCurSeq, mCurClient.client));
1036 }
1037 }
1038
Devin Taylor0c33ed22010-02-23 13:26:46 -06001039 private void finishSession(SessionState sessionState) {
1040 if (sessionState != null && sessionState.session != null) {
1041 try {
1042 sessionState.session.finishSession();
1043 } catch (RemoteException e) {
Jean-Baptiste Queru9d0f6df2010-03-29 12:55:09 -07001044 Slog.w(TAG, "Session failed to close due to remote exception", e);
satok15452a42011-10-28 17:58:28 +09001045 setImeWindowVisibilityStatusHiddenLocked();
Devin Taylor0c33ed22010-02-23 13:26:46 -06001046 }
1047 }
1048 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001049
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001050 void clearCurMethodLocked() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001051 if (mCurMethod != null) {
1052 for (ClientState cs : mClients.values()) {
1053 cs.sessionRequested = false;
Devin Taylor0c33ed22010-02-23 13:26:46 -06001054 finishSession(cs.curSession);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001055 cs.curSession = null;
1056 }
Devin Taylor0c33ed22010-02-23 13:26:46 -06001057
1058 finishSession(mEnabledSession);
1059 mEnabledSession = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001060 mCurMethod = null;
1061 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07001062 if (mStatusBar != null) {
1063 mStatusBar.setIconVisibility("ime", false);
1064 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001065 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001066
satoke7c6998e2011-06-03 17:57:59 +09001067 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001068 public void onServiceDisconnected(ComponentName name) {
1069 synchronized (mMethodMap) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001070 if (DEBUG) Slog.v(TAG, "Service disconnected: " + name
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001071 + " mCurIntent=" + mCurIntent);
1072 if (mCurMethod != null && mCurIntent != null
1073 && name.equals(mCurIntent.getComponent())) {
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001074 clearCurMethodLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001075 // We consider this to be a new bind attempt, since the system
1076 // should now try to restart the service for us.
1077 mLastBindTime = SystemClock.uptimeMillis();
1078 mShowRequested = mInputShown;
1079 mInputShown = false;
1080 if (mCurClient != null) {
1081 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
1082 MSG_UNBIND_METHOD, mCurSeq, mCurClient.client));
1083 }
1084 }
1085 }
1086 }
1087
satokf9f01002011-05-19 21:31:50 +09001088 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001089 public void updateStatusIcon(IBinder token, String packageName, int iconId) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001090 int uid = Binder.getCallingUid();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001091 long ident = Binder.clearCallingIdentity();
1092 try {
1093 if (token == null || mCurToken != token) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001094 Slog.w(TAG, "Ignoring setInputMethod of uid " + uid + " token: " + token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001095 return;
1096 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001097
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001098 synchronized (mMethodMap) {
1099 if (iconId == 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001100 if (DEBUG) Slog.d(TAG, "hide the small icon for the input method");
Dianne Hackborn661cd522011-08-22 00:26:20 -07001101 if (mStatusBar != null) {
1102 mStatusBar.setIconVisibility("ime", false);
1103 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001104 } else if (packageName != null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001105 if (DEBUG) Slog.d(TAG, "show a small icon for the input method");
Svetoslav Ganov6179ea32011-06-28 01:12:41 -07001106 CharSequence contentDescription = null;
1107 try {
1108 PackageManager packageManager = mContext.getPackageManager();
1109 contentDescription = packageManager.getApplicationLabel(
1110 packageManager.getApplicationInfo(packageName, 0));
1111 } catch (NameNotFoundException nnfe) {
1112 /* ignore */
1113 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07001114 if (mStatusBar != null) {
1115 mStatusBar.setIcon("ime", packageName, iconId, 0,
1116 contentDescription != null
1117 ? contentDescription.toString() : null);
1118 mStatusBar.setIconVisibility("ime", true);
1119 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001120 }
1121 }
1122 } finally {
1123 Binder.restoreCallingIdentity(ident);
1124 }
1125 }
1126
satok7cfc0ed2011-06-20 21:29:36 +09001127 private boolean needsToShowImeSwitchOngoingNotification() {
1128 if (!mShowOngoingImeSwitcherForPhones) return false;
1129 synchronized (mMethodMap) {
1130 List<InputMethodInfo> imis = mSettings.getEnabledInputMethodListLocked();
1131 final int N = imis.size();
satokb6359412011-06-28 17:47:41 +09001132 if (N > 2) return true;
1133 if (N < 1) return false;
1134 int nonAuxCount = 0;
1135 int auxCount = 0;
1136 InputMethodSubtype nonAuxSubtype = null;
1137 InputMethodSubtype auxSubtype = null;
satok7cfc0ed2011-06-20 21:29:36 +09001138 for(int i = 0; i < N; ++i) {
1139 final InputMethodInfo imi = imis.get(i);
1140 final List<InputMethodSubtype> subtypes = getEnabledInputMethodSubtypeListLocked(
1141 imi, true);
1142 final int subtypeCount = subtypes.size();
1143 if (subtypeCount == 0) {
satokb6359412011-06-28 17:47:41 +09001144 ++nonAuxCount;
satok7cfc0ed2011-06-20 21:29:36 +09001145 } else {
1146 for (int j = 0; j < subtypeCount; ++j) {
satokb6359412011-06-28 17:47:41 +09001147 final InputMethodSubtype subtype = subtypes.get(j);
1148 if (!subtype.isAuxiliary()) {
1149 ++nonAuxCount;
1150 nonAuxSubtype = subtype;
1151 } else {
1152 ++auxCount;
1153 auxSubtype = subtype;
satok7cfc0ed2011-06-20 21:29:36 +09001154 }
1155 }
1156 }
satok7cfc0ed2011-06-20 21:29:36 +09001157 }
satokb6359412011-06-28 17:47:41 +09001158 if (nonAuxCount > 1 || auxCount > 1) {
1159 return true;
1160 } else if (nonAuxCount == 1 && auxCount == 1) {
1161 if (nonAuxSubtype != null && auxSubtype != null
satok9747f892011-09-12 15:56:40 +09001162 && (nonAuxSubtype.getLocale().equals(auxSubtype.getLocale())
1163 || auxSubtype.overridesImplicitlyEnabledSubtype()
1164 || nonAuxSubtype.overridesImplicitlyEnabledSubtype())
satokb6359412011-06-28 17:47:41 +09001165 && nonAuxSubtype.containsExtraValueKey(TAG_TRY_SUPPRESSING_IME_SWITCHER)) {
1166 return false;
1167 }
1168 return true;
1169 }
1170 return false;
satok7cfc0ed2011-06-20 21:29:36 +09001171 }
satok7cfc0ed2011-06-20 21:29:36 +09001172 }
1173
satokdbf29502011-08-25 15:28:23 +09001174 @SuppressWarnings("deprecation")
satokf9f01002011-05-19 21:31:50 +09001175 @Override
Joe Onorato857fd9b2011-01-27 15:08:35 -08001176 public void setImeWindowStatus(IBinder token, int vis, int backDisposition) {
satok06487a52010-10-29 11:37:18 +09001177 int uid = Binder.getCallingUid();
1178 long ident = Binder.clearCallingIdentity();
1179 try {
1180 if (token == null || mCurToken != token) {
Joe Onorato857fd9b2011-01-27 15:08:35 -08001181 Slog.w(TAG, "Ignoring setImeWindowStatus of uid " + uid + " token: " + token);
satok06487a52010-10-29 11:37:18 +09001182 return;
1183 }
1184
1185 synchronized (mMethodMap) {
Joe Onorato857fd9b2011-01-27 15:08:35 -08001186 mImeWindowVis = vis;
1187 mBackDisposition = backDisposition;
Dianne Hackborn661cd522011-08-22 00:26:20 -07001188 if (mStatusBar != null) {
1189 mStatusBar.setImeWindowStatus(token, vis, backDisposition);
1190 }
satok7cfc0ed2011-06-20 21:29:36 +09001191 final boolean iconVisibility = (vis & InputMethodService.IME_ACTIVE) != 0;
satok5bc8e732011-07-22 21:07:23 +09001192 final InputMethodInfo imi = mMethodMap.get(mCurMethodId);
1193 if (imi != null && iconVisibility && needsToShowImeSwitchOngoingNotification()) {
satok7cfc0ed2011-06-20 21:29:36 +09001194 final PackageManager pm = mContext.getPackageManager();
satok7cfc0ed2011-06-20 21:29:36 +09001195 final CharSequence title = mRes.getText(
1196 com.android.internal.R.string.select_input_method);
satok5bc8e732011-07-22 21:07:23 +09001197 final CharSequence imiLabel = imi.loadLabel(pm);
1198 final CharSequence summary = mCurrentSubtype != null
1199 ? TextUtils.concat(mCurrentSubtype.getDisplayName(mContext,
1200 imi.getPackageName(), imi.getServiceInfo().applicationInfo),
1201 (TextUtils.isEmpty(imiLabel) ?
Ken Wakasa05dbb652011-08-22 15:22:43 +09001202 "" : " - " + imiLabel))
satok5bc8e732011-07-22 21:07:23 +09001203 : imiLabel;
1204
satok7cfc0ed2011-06-20 21:29:36 +09001205 mImeSwitcherNotification.setLatestEventInfo(
satok5bc8e732011-07-22 21:07:23 +09001206 mContext, title, summary, mImeSwitchPendingIntent);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001207 if (mNotificationManager != null) {
1208 mNotificationManager.notify(
1209 com.android.internal.R.string.select_input_method,
1210 mImeSwitcherNotification);
1211 mNotificationShown = true;
1212 }
satok7cfc0ed2011-06-20 21:29:36 +09001213 } else {
Dianne Hackborn661cd522011-08-22 00:26:20 -07001214 if (mNotificationShown && mNotificationManager != null) {
satok7cfc0ed2011-06-20 21:29:36 +09001215 mNotificationManager.cancel(
1216 com.android.internal.R.string.select_input_method);
1217 mNotificationShown = false;
1218 }
1219 }
satok06487a52010-10-29 11:37:18 +09001220 }
1221 } finally {
1222 Binder.restoreCallingIdentity(ident);
1223 }
1224 }
1225
satoke7c6998e2011-06-03 17:57:59 +09001226 @Override
satokf9f01002011-05-19 21:31:50 +09001227 public void registerSuggestionSpansForNotification(SuggestionSpan[] spans) {
1228 synchronized (mMethodMap) {
1229 final InputMethodInfo currentImi = mMethodMap.get(mCurMethodId);
1230 for (int i = 0; i < spans.length; ++i) {
1231 SuggestionSpan ss = spans[i];
satok42c5a162011-05-26 16:46:14 +09001232 if (!TextUtils.isEmpty(ss.getNotificationTargetClassName())) {
satokf9f01002011-05-19 21:31:50 +09001233 mSecureSuggestionSpans.put(ss, currentImi);
satok42c5a162011-05-26 16:46:14 +09001234 final InputMethodInfo targetImi = mSecureSuggestionSpans.get(ss);
satokf9f01002011-05-19 21:31:50 +09001235 }
1236 }
1237 }
1238 }
1239
satoke7c6998e2011-06-03 17:57:59 +09001240 @Override
satokf9f01002011-05-19 21:31:50 +09001241 public boolean notifySuggestionPicked(SuggestionSpan span, String originalString, int index) {
1242 synchronized (mMethodMap) {
1243 final InputMethodInfo targetImi = mSecureSuggestionSpans.get(span);
1244 // TODO: Do not send the intent if the process of the targetImi is already dead.
1245 if (targetImi != null) {
1246 final String[] suggestions = span.getSuggestions();
1247 if (index < 0 || index >= suggestions.length) return false;
satok42c5a162011-05-26 16:46:14 +09001248 final String className = span.getNotificationTargetClassName();
satokf9f01002011-05-19 21:31:50 +09001249 final Intent intent = new Intent();
1250 // Ensures that only a class in the original IME package will receive the
1251 // notification.
satok42c5a162011-05-26 16:46:14 +09001252 intent.setClassName(targetImi.getPackageName(), className);
satokf9f01002011-05-19 21:31:50 +09001253 intent.setAction(SuggestionSpan.ACTION_SUGGESTION_PICKED);
1254 intent.putExtra(SuggestionSpan.SUGGESTION_SPAN_PICKED_BEFORE, originalString);
1255 intent.putExtra(SuggestionSpan.SUGGESTION_SPAN_PICKED_AFTER, suggestions[index]);
1256 intent.putExtra(SuggestionSpan.SUGGESTION_SPAN_PICKED_HASHCODE, span.hashCode());
1257 mContext.sendBroadcast(intent);
1258 return true;
1259 }
1260 }
1261 return false;
1262 }
1263
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001264 void updateFromSettingsLocked() {
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001265 // We are assuming that whoever is changing DEFAULT_INPUT_METHOD and
1266 // ENABLED_INPUT_METHODS is taking care of keeping them correctly in
1267 // sync, so we will never have a DEFAULT_INPUT_METHOD that is not
1268 // enabled.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001269 String id = Settings.Secure.getString(mContext.getContentResolver(),
satokab751aa2010-09-14 19:17:36 +09001270 Settings.Secure.DEFAULT_INPUT_METHOD);
satok03eb319a2010-11-11 18:17:42 +09001271 // There is no input method selected, try to choose new applicable input method.
1272 if (TextUtils.isEmpty(id) && chooseNewDefaultIMELocked()) {
1273 id = Settings.Secure.getString(mContext.getContentResolver(),
1274 Settings.Secure.DEFAULT_INPUT_METHOD);
1275 }
1276 if (!TextUtils.isEmpty(id)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001277 try {
satokab751aa2010-09-14 19:17:36 +09001278 setInputMethodLocked(id, getSelectedInputMethodSubtypeId(id));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001279 } catch (IllegalArgumentException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001280 Slog.w(TAG, "Unknown input method from prefs: " + id, e);
The Android Open Source Project10592532009-03-18 17:39:46 -07001281 mCurMethodId = null;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001282 unbindCurrentMethodLocked(true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001283 }
satokf3db1af2010-11-23 13:34:33 +09001284 mShortcutInputMethodsAndSubtypes.clear();
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001285 } else {
1286 // There is no longer an input method set, so stop any current one.
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 }
1290 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001291
satokab751aa2010-09-14 19:17:36 +09001292 /* package */ void setInputMethodLocked(String id, int subtypeId) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001293 InputMethodInfo info = mMethodMap.get(id);
1294 if (info == null) {
satok913a8922010-08-26 21:53:41 +09001295 throw new IllegalArgumentException("Unknown id: " + id);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001296 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001297
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001298 if (id.equals(mCurMethodId)) {
satokcd7cd292010-11-20 15:46:23 +09001299 InputMethodSubtype subtype = null;
Ken Wakasa586f0512011-01-20 22:31:01 +09001300 if (subtypeId >= 0 && subtypeId < info.getSubtypeCount()) {
1301 subtype = info.getSubtypeAt(subtypeId);
satokcd7cd292010-11-20 15:46:23 +09001302 }
1303 if (subtype != mCurrentSubtype) {
1304 synchronized (mMethodMap) {
satokca830212011-01-13 21:15:04 +09001305 if (subtype != null) {
1306 setSelectedInputMethodAndSubtypeLocked(info, subtypeId, true);
1307 }
satokcd7cd292010-11-20 15:46:23 +09001308 if (mCurMethod != null) {
1309 try {
satok3afd6c02011-11-18 08:38:19 +09001310 refreshImeWindowVisibilityLocked();
satokcd7cd292010-11-20 15:46:23 +09001311 // If subtype is null, try to find the most applicable one from
1312 // getCurrentInputMethodSubtype.
1313 if (subtype == null) {
1314 subtype = getCurrentInputMethodSubtype();
1315 }
1316 mCurMethod.changeInputMethodSubtype(subtype);
1317 } catch (RemoteException e) {
1318 return;
satokab751aa2010-09-14 19:17:36 +09001319 }
1320 }
1321 }
1322 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001323 return;
1324 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001325
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001326 final long ident = Binder.clearCallingIdentity();
1327 try {
satokab751aa2010-09-14 19:17:36 +09001328 // Set a subtype to this input method.
1329 // subtypeId the name of a subtype which will be set.
satok723a27e2010-11-11 14:58:11 +09001330 setSelectedInputMethodAndSubtypeLocked(info, subtypeId, false);
1331 // mCurMethodId should be updated after setSelectedInputMethodAndSubtypeLocked()
1332 // because mCurMethodId is stored as a history in
1333 // setSelectedInputMethodAndSubtypeLocked().
1334 mCurMethodId = id;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001335
1336 if (ActivityManagerNative.isSystemReady()) {
1337 Intent intent = new Intent(Intent.ACTION_INPUT_METHOD_CHANGED);
Dianne Hackborn1c633fc2009-12-08 19:45:14 -08001338 intent.addFlags(Intent.FLAG_RECEIVER_REPLACE_PENDING);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001339 intent.putExtra("input_method_id", id);
1340 mContext.sendBroadcast(intent);
1341 }
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001342 unbindCurrentClientLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001343 } finally {
1344 Binder.restoreCallingIdentity(ident);
1345 }
1346 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001347
satok42c5a162011-05-26 16:46:14 +09001348 @Override
The Android Open Source Project4df24232009-03-05 14:34:35 -08001349 public boolean showSoftInput(IInputMethodClient client, int flags,
1350 ResultReceiver resultReceiver) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001351 int uid = Binder.getCallingUid();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001352 long ident = Binder.clearCallingIdentity();
1353 try {
1354 synchronized (mMethodMap) {
1355 if (mCurClient == null || client == null
1356 || mCurClient.client.asBinder() != client.asBinder()) {
1357 try {
1358 // We need to check if this is the current client with
1359 // focus in the window manager, to allow this call to
1360 // be made before input is started in it.
1361 if (!mIWindowManager.inputMethodClientHasFocus(client)) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001362 Slog.w(TAG, "Ignoring showSoftInput of uid " + uid + ": " + client);
The Android Open Source Project4df24232009-03-05 14:34:35 -08001363 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001364 }
1365 } catch (RemoteException e) {
The Android Open Source Project4df24232009-03-05 14:34:35 -08001366 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001367 }
1368 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001369
Joe Onorato8a9b2202010-02-26 18:56:32 -08001370 if (DEBUG) Slog.v(TAG, "Client requesting input be shown");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001371 return showCurrentInputLocked(flags, resultReceiver);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001372 }
1373 } finally {
1374 Binder.restoreCallingIdentity(ident);
1375 }
1376 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001377
The Android Open Source Project4df24232009-03-05 14:34:35 -08001378 boolean showCurrentInputLocked(int flags, ResultReceiver resultReceiver) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001379 mShowRequested = true;
1380 if ((flags&InputMethodManager.SHOW_IMPLICIT) == 0) {
1381 mShowExplicitlyRequested = true;
1382 }
1383 if ((flags&InputMethodManager.SHOW_FORCED) != 0) {
1384 mShowExplicitlyRequested = true;
1385 mShowForced = true;
1386 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001387
Dianne Hackborncc278702009-09-02 23:07:23 -07001388 if (!mSystemReady) {
1389 return false;
1390 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001391
The Android Open Source Project4df24232009-03-05 14:34:35 -08001392 boolean res = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001393 if (mCurMethod != null) {
The Android Open Source Project4df24232009-03-05 14:34:35 -08001394 executeOrSendMessage(mCurMethod, mCaller.obtainMessageIOO(
1395 MSG_SHOW_SOFT_INPUT, getImeShowFlags(), mCurMethod,
1396 resultReceiver));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001397 mInputShown = true;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07001398 if (mHaveConnection && !mVisibleBound) {
1399 mContext.bindService(mCurIntent, mVisibleConnection, Context.BIND_AUTO_CREATE);
1400 mVisibleBound = true;
1401 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08001402 res = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001403 } else if (mHaveConnection && SystemClock.uptimeMillis()
satok59b424c2011-09-30 17:21:46 +09001404 >= (mLastBindTime+TIME_TO_RECONNECT)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001405 // The client has asked to have the input method shown, but
1406 // we have been sitting here too long with a connection to the
1407 // service and no interface received, so let's disconnect/connect
1408 // to try to prod things along.
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001409 EventLog.writeEvent(EventLogTags.IMF_FORCE_RECONNECT_IME, mCurMethodId,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001410 SystemClock.uptimeMillis()-mLastBindTime,1);
satok59b424c2011-09-30 17:21:46 +09001411 Slog.w(TAG, "Force disconnect/connect to the IME in showCurrentInputLocked()");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001412 mContext.unbindService(this);
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07001413 mContext.bindService(mCurIntent, this, Context.BIND_AUTO_CREATE
1414 | Context.BIND_NOT_VISIBLE);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001415 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001416
The Android Open Source Project4df24232009-03-05 14:34:35 -08001417 return res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001418 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001419
satok42c5a162011-05-26 16:46:14 +09001420 @Override
The Android Open Source Project4df24232009-03-05 14:34:35 -08001421 public boolean hideSoftInput(IInputMethodClient client, int flags,
1422 ResultReceiver resultReceiver) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001423 int uid = Binder.getCallingUid();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001424 long ident = Binder.clearCallingIdentity();
1425 try {
1426 synchronized (mMethodMap) {
1427 if (mCurClient == null || client == null
1428 || mCurClient.client.asBinder() != client.asBinder()) {
1429 try {
1430 // We need to check if this is the current client with
1431 // focus in the window manager, to allow this call to
1432 // be made before input is started in it.
1433 if (!mIWindowManager.inputMethodClientHasFocus(client)) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001434 if (DEBUG) Slog.w(TAG, "Ignoring hideSoftInput of uid "
1435 + uid + ": " + client);
satok15452a42011-10-28 17:58:28 +09001436 setImeWindowVisibilityStatusHiddenLocked();
The Android Open Source Project4df24232009-03-05 14:34:35 -08001437 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001438 }
1439 } catch (RemoteException e) {
satok15452a42011-10-28 17:58:28 +09001440 setImeWindowVisibilityStatusHiddenLocked();
The Android Open Source Project4df24232009-03-05 14:34:35 -08001441 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001442 }
1443 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001444
Joe Onorato8a9b2202010-02-26 18:56:32 -08001445 if (DEBUG) Slog.v(TAG, "Client requesting input be hidden");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001446 return hideCurrentInputLocked(flags, resultReceiver);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001447 }
1448 } finally {
1449 Binder.restoreCallingIdentity(ident);
1450 }
1451 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001452
The Android Open Source Project4df24232009-03-05 14:34:35 -08001453 boolean hideCurrentInputLocked(int flags, ResultReceiver resultReceiver) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001454 if ((flags&InputMethodManager.HIDE_IMPLICIT_ONLY) != 0
1455 && (mShowExplicitlyRequested || mShowForced)) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001456 if (DEBUG) Slog.v(TAG,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001457 "Not hiding: explicit show not cancelled by non-explicit hide");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001458 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001459 }
1460 if (mShowForced && (flags&InputMethodManager.HIDE_NOT_ALWAYS) != 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001461 if (DEBUG) Slog.v(TAG,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001462 "Not hiding: forced show not cancelled by not-always hide");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001463 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001464 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08001465 boolean res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001466 if (mInputShown && mCurMethod != null) {
The Android Open Source Project4df24232009-03-05 14:34:35 -08001467 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
1468 MSG_HIDE_SOFT_INPUT, mCurMethod, resultReceiver));
1469 res = true;
1470 } else {
1471 res = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001472 }
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07001473 if (mHaveConnection && mVisibleBound) {
1474 mContext.unbindService(mVisibleConnection);
1475 mVisibleBound = false;
1476 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001477 mInputShown = false;
1478 mShowRequested = false;
1479 mShowExplicitlyRequested = false;
1480 mShowForced = false;
The Android Open Source Project4df24232009-03-05 14:34:35 -08001481 return res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001482 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001483
satok42c5a162011-05-26 16:46:14 +09001484 @Override
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001485 public void windowGainedFocus(IInputMethodClient client, IBinder windowToken,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001486 boolean viewHasFocus, boolean isTextEditor, int softInputMode,
1487 boolean first, int windowFlags) {
1488 long ident = Binder.clearCallingIdentity();
1489 try {
1490 synchronized (mMethodMap) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001491 if (DEBUG) Slog.v(TAG, "windowGainedFocus: " + client.asBinder()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001492 + " viewHasFocus=" + viewHasFocus
1493 + " isTextEditor=" + isTextEditor
1494 + " softInputMode=#" + Integer.toHexString(softInputMode)
1495 + " first=" + first + " flags=#"
1496 + Integer.toHexString(windowFlags));
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001497
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001498 if (mCurClient == null || client == null
1499 || mCurClient.client.asBinder() != client.asBinder()) {
1500 try {
1501 // We need to check if this is the current client with
1502 // focus in the window manager, to allow this call to
1503 // be made before input is started in it.
1504 if (!mIWindowManager.inputMethodClientHasFocus(client)) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001505 Slog.w(TAG, "Client not active, ignoring focus gain of: " + client);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001506 return;
1507 }
1508 } catch (RemoteException e) {
1509 }
1510 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001511
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001512 if (mCurFocusedWindow == windowToken) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001513 Slog.w(TAG, "Window already focused, ignoring focus gain of: " + client);
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001514 return;
1515 }
1516 mCurFocusedWindow = windowToken;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001517
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08001518 // Should we auto-show the IME even if the caller has not
1519 // specified what should be done with it?
1520 // We only do this automatically if the window can resize
1521 // to accommodate the IME (so what the user sees will give
1522 // them good context without input information being obscured
1523 // by the IME) or if running on a large screen where there
1524 // is more room for the target window + IME.
1525 final boolean doAutoShow =
1526 (softInputMode & WindowManager.LayoutParams.SOFT_INPUT_MASK_ADJUST)
1527 == WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE
1528 || mRes.getConfiguration().isLayoutSizeAtLeast(
1529 Configuration.SCREENLAYOUT_SIZE_LARGE);
1530
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001531 switch (softInputMode&WindowManager.LayoutParams.SOFT_INPUT_MASK_STATE) {
1532 case WindowManager.LayoutParams.SOFT_INPUT_STATE_UNSPECIFIED:
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08001533 if (!isTextEditor || !doAutoShow) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001534 if (WindowManager.LayoutParams.mayUseInputMethod(windowFlags)) {
1535 // There is no focus view, and this window will
1536 // be behind any soft input window, so hide the
1537 // soft input window if it is shown.
Joe Onorato8a9b2202010-02-26 18:56:32 -08001538 if (DEBUG) Slog.v(TAG, "Unspecified window will hide input");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001539 hideCurrentInputLocked(InputMethodManager.HIDE_NOT_ALWAYS, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001540 }
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08001541 } else if (isTextEditor && doAutoShow && (softInputMode &
1542 WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001543 // There is a focus view, and we are navigating forward
1544 // into the window, so show the input window for the user.
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08001545 // We only do this automatically if the window an resize
1546 // to accomodate the IME (so what the user sees will give
1547 // them good context without input information being obscured
1548 // by the IME) or if running on a large screen where there
1549 // is more room for the target window + IME.
Joe Onorato8a9b2202010-02-26 18:56:32 -08001550 if (DEBUG) Slog.v(TAG, "Unspecified window will show input");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001551 showCurrentInputLocked(InputMethodManager.SHOW_IMPLICIT, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001552 }
1553 break;
1554 case WindowManager.LayoutParams.SOFT_INPUT_STATE_UNCHANGED:
1555 // Do nothing.
1556 break;
1557 case WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN:
1558 if ((softInputMode &
1559 WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001560 if (DEBUG) Slog.v(TAG, "Window asks to hide input going forward");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001561 hideCurrentInputLocked(0, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001562 }
1563 break;
1564 case WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN:
Joe Onorato8a9b2202010-02-26 18:56:32 -08001565 if (DEBUG) Slog.v(TAG, "Window asks to hide input");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001566 hideCurrentInputLocked(0, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001567 break;
1568 case WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE:
1569 if ((softInputMode &
1570 WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001571 if (DEBUG) Slog.v(TAG, "Window asks to show input going forward");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001572 showCurrentInputLocked(InputMethodManager.SHOW_IMPLICIT, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001573 }
1574 break;
1575 case WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE:
Joe Onorato8a9b2202010-02-26 18:56:32 -08001576 if (DEBUG) Slog.v(TAG, "Window asks to always show input");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001577 showCurrentInputLocked(InputMethodManager.SHOW_IMPLICIT, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001578 break;
1579 }
1580 }
1581 } finally {
1582 Binder.restoreCallingIdentity(ident);
1583 }
1584 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001585
satok42c5a162011-05-26 16:46:14 +09001586 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001587 public void showInputMethodPickerFromClient(IInputMethodClient client) {
1588 synchronized (mMethodMap) {
1589 if (mCurClient == null || client == null
1590 || mCurClient.client.asBinder() != client.asBinder()) {
satok47a44912010-10-06 16:03:58 +09001591 Slog.w(TAG, "Ignoring showInputMethodPickerFromClient of uid "
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001592 + Binder.getCallingUid() + ": " + client);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001593 }
1594
satok440aab52010-11-25 09:43:11 +09001595 // Always call subtype picker, because subtype picker is a superset of input method
1596 // picker.
satokab751aa2010-09-14 19:17:36 +09001597 mHandler.sendEmptyMessage(MSG_SHOW_IM_SUBTYPE_PICKER);
1598 }
1599 }
1600
satok42c5a162011-05-26 16:46:14 +09001601 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001602 public void setInputMethod(IBinder token, String id) {
satok28203512010-11-24 11:06:49 +09001603 setInputMethodWithSubtypeId(token, id, NOT_A_SUBTYPE_ID);
1604 }
1605
satok42c5a162011-05-26 16:46:14 +09001606 @Override
satok28203512010-11-24 11:06:49 +09001607 public void setInputMethodAndSubtype(IBinder token, String id, InputMethodSubtype subtype) {
1608 synchronized (mMethodMap) {
1609 if (subtype != null) {
1610 setInputMethodWithSubtypeId(token, id, getSubtypeIdFromHashCode(
1611 mMethodMap.get(id), subtype.hashCode()));
1612 } else {
1613 setInputMethod(token, id);
1614 }
1615 }
satokab751aa2010-09-14 19:17:36 +09001616 }
1617
satok42c5a162011-05-26 16:46:14 +09001618 @Override
satokb416a712010-11-25 20:42:14 +09001619 public void showInputMethodAndSubtypeEnablerFromClient(
satok217f5482010-12-15 05:19:19 +09001620 IInputMethodClient client, String inputMethodId) {
satokb416a712010-11-25 20:42:14 +09001621 synchronized (mMethodMap) {
1622 if (mCurClient == null || client == null
1623 || mCurClient.client.asBinder() != client.asBinder()) {
1624 Slog.w(TAG, "Ignoring showInputMethodAndSubtypeEnablerFromClient of: " + client);
1625 }
satok7fee71f2010-12-17 18:54:26 +09001626 executeOrSendMessage(mCurMethod, mCaller.obtainMessageO(
1627 MSG_SHOW_IM_SUBTYPE_ENABLER, inputMethodId));
satokb416a712010-11-25 20:42:14 +09001628 }
1629 }
1630
satok4fc87d62011-05-20 16:13:43 +09001631 @Override
satok735cf382010-11-11 20:40:09 +09001632 public boolean switchToLastInputMethod(IBinder token) {
1633 synchronized (mMethodMap) {
satokc445bcd2011-01-25 18:57:24 +09001634 final Pair<String, String> lastIme = mSettings.getLastInputMethodAndSubtypeLocked();
satok4fc87d62011-05-20 16:13:43 +09001635 final InputMethodInfo lastImi;
satok208d5632011-05-20 22:13:38 +09001636 if (lastIme != null) {
satok4fc87d62011-05-20 16:13:43 +09001637 lastImi = mMethodMap.get(lastIme.first);
1638 } else {
1639 lastImi = null;
satok735cf382010-11-11 20:40:09 +09001640 }
satok4fc87d62011-05-20 16:13:43 +09001641 String targetLastImiId = null;
1642 int subtypeId = NOT_A_SUBTYPE_ID;
1643 if (lastIme != null && lastImi != null) {
1644 final boolean imiIdIsSame = lastImi.getId().equals(mCurMethodId);
1645 final int lastSubtypeHash = Integer.valueOf(lastIme.second);
1646 final int currentSubtypeHash = mCurrentSubtype == null ? NOT_A_SUBTYPE_ID
1647 : mCurrentSubtype.hashCode();
1648 // If the last IME is the same as the current IME and the last subtype is not
1649 // defined, there is no need to switch to the last IME.
1650 if (!imiIdIsSame || lastSubtypeHash != currentSubtypeHash) {
1651 targetLastImiId = lastIme.first;
1652 subtypeId = getSubtypeIdFromHashCode(lastImi, lastSubtypeHash);
1653 }
1654 }
1655
1656 if (TextUtils.isEmpty(targetLastImiId) && !canAddToLastInputMethod(mCurrentSubtype)) {
1657 // This is a safety net. If the currentSubtype can't be added to the history
1658 // and the framework couldn't find the last ime, we will make the last ime be
1659 // the most applicable enabled keyboard subtype of the system imes.
1660 final List<InputMethodInfo> enabled = mSettings.getEnabledInputMethodListLocked();
1661 if (enabled != null) {
1662 final int N = enabled.size();
1663 final String locale = mCurrentSubtype == null
1664 ? mRes.getConfiguration().locale.toString()
1665 : mCurrentSubtype.getLocale();
1666 for (int i = 0; i < N; ++i) {
1667 final InputMethodInfo imi = enabled.get(i);
1668 if (imi.getSubtypeCount() > 0 && isSystemIme(imi)) {
1669 InputMethodSubtype keyboardSubtype =
1670 findLastResortApplicableSubtypeLocked(mRes, getSubtypes(imi),
1671 SUBTYPE_MODE_KEYBOARD, locale, true);
1672 if (keyboardSubtype != null) {
1673 targetLastImiId = imi.getId();
1674 subtypeId = getSubtypeIdFromHashCode(
1675 imi, keyboardSubtype.hashCode());
1676 if(keyboardSubtype.getLocale().equals(locale)) {
1677 break;
1678 }
1679 }
1680 }
1681 }
1682 }
1683 }
1684
1685 if (!TextUtils.isEmpty(targetLastImiId)) {
1686 if (DEBUG) {
1687 Slog.d(TAG, "Switch to: " + lastImi.getId() + ", " + lastIme.second
1688 + ", from: " + mCurMethodId + ", " + subtypeId);
1689 }
1690 setInputMethodWithSubtypeId(token, targetLastImiId, subtypeId);
1691 return true;
1692 } else {
1693 return false;
1694 }
satok735cf382010-11-11 20:40:09 +09001695 }
1696 }
1697
satoke7c6998e2011-06-03 17:57:59 +09001698 @Override
satok688bd472012-02-09 20:09:17 +09001699 public boolean switchToNextInputMethod(IBinder token, boolean onlyCurrentIme) {
1700 synchronized (mMethodMap) {
1701 final ImeSubtypeListItem nextSubtype = mImListManager.getNextInputMethod(
1702 onlyCurrentIme, mMethodMap.get(mCurMethodId), mCurrentSubtype);
1703 if (nextSubtype == null) {
1704 return false;
1705 }
1706 setInputMethodWithSubtypeId(token, nextSubtype.mImi.getId(), nextSubtype.mSubtypeId);
1707 return true;
1708 }
1709 }
1710
1711 @Override
satok68f1b782011-04-11 14:26:04 +09001712 public InputMethodSubtype getLastInputMethodSubtype() {
1713 synchronized (mMethodMap) {
1714 final Pair<String, String> lastIme = mSettings.getLastInputMethodAndSubtypeLocked();
1715 // TODO: Handle the case of the last IME with no subtypes
1716 if (lastIme == null || TextUtils.isEmpty(lastIme.first)
1717 || TextUtils.isEmpty(lastIme.second)) return null;
1718 final InputMethodInfo lastImi = mMethodMap.get(lastIme.first);
1719 if (lastImi == null) return null;
1720 try {
1721 final int lastSubtypeHash = Integer.valueOf(lastIme.second);
satok0e7d7d62011-07-05 13:28:06 +09001722 final int lastSubtypeId = getSubtypeIdFromHashCode(lastImi, lastSubtypeHash);
1723 if (lastSubtypeId < 0 || lastSubtypeId >= lastImi.getSubtypeCount()) {
1724 return null;
1725 }
1726 return lastImi.getSubtypeAt(lastSubtypeId);
satok68f1b782011-04-11 14:26:04 +09001727 } catch (NumberFormatException e) {
1728 return null;
1729 }
1730 }
1731 }
1732
satoke7c6998e2011-06-03 17:57:59 +09001733 @Override
satokee5e77c2011-09-02 18:50:15 +09001734 public void setAdditionalInputMethodSubtypes(String imiId, InputMethodSubtype[] subtypes) {
satok91e88122011-07-18 11:11:42 +09001735 // By this IPC call, only a process which shares the same uid with the IME can add
1736 // additional input method subtypes to the IME.
satokee5e77c2011-09-02 18:50:15 +09001737 if (TextUtils.isEmpty(imiId) || subtypes == null || subtypes.length == 0) return;
satoke7c6998e2011-06-03 17:57:59 +09001738 synchronized (mMethodMap) {
satok91e88122011-07-18 11:11:42 +09001739 final InputMethodInfo imi = mMethodMap.get(imiId);
satokee5e77c2011-09-02 18:50:15 +09001740 if (imi == null) return;
satok91e88122011-07-18 11:11:42 +09001741 final PackageManager pm = mContext.getPackageManager();
1742 final String[] packageInfos = pm.getPackagesForUid(Binder.getCallingUid());
1743 if (packageInfos != null) {
1744 final int packageNum = packageInfos.length;
1745 for (int i = 0; i < packageNum; ++i) {
1746 if (packageInfos[i].equals(imi.getPackageName())) {
1747 mFileManager.addInputMethodSubtypes(imi, subtypes);
satokc5933802011-08-31 21:26:04 +09001748 final long ident = Binder.clearCallingIdentity();
1749 try {
1750 buildInputMethodListLocked(mMethodList, mMethodMap);
1751 } finally {
1752 Binder.restoreCallingIdentity(ident);
1753 }
satokee5e77c2011-09-02 18:50:15 +09001754 return;
satok91e88122011-07-18 11:11:42 +09001755 }
1756 }
1757 }
satoke7c6998e2011-06-03 17:57:59 +09001758 }
satokee5e77c2011-09-02 18:50:15 +09001759 return;
satoke7c6998e2011-06-03 17:57:59 +09001760 }
1761
satok28203512010-11-24 11:06:49 +09001762 private void setInputMethodWithSubtypeId(IBinder token, String id, int subtypeId) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001763 synchronized (mMethodMap) {
1764 if (token == null) {
1765 if (mContext.checkCallingOrSelfPermission(
1766 android.Manifest.permission.WRITE_SECURE_SETTINGS)
1767 != PackageManager.PERMISSION_GRANTED) {
1768 throw new SecurityException(
1769 "Using null token requires permission "
1770 + android.Manifest.permission.WRITE_SECURE_SETTINGS);
1771 }
1772 } else if (mCurToken != token) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001773 Slog.w(TAG, "Ignoring setInputMethod of uid " + Binder.getCallingUid()
1774 + " token: " + token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001775 return;
1776 }
1777
satokc5933802011-08-31 21:26:04 +09001778 final long ident = Binder.clearCallingIdentity();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001779 try {
satokab751aa2010-09-14 19:17:36 +09001780 setInputMethodLocked(id, subtypeId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001781 } finally {
1782 Binder.restoreCallingIdentity(ident);
1783 }
1784 }
1785 }
1786
satok42c5a162011-05-26 16:46:14 +09001787 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001788 public void hideMySoftInput(IBinder token, int flags) {
1789 synchronized (mMethodMap) {
1790 if (token == null || mCurToken != token) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001791 if (DEBUG) Slog.w(TAG, "Ignoring hideInputMethod of uid "
1792 + Binder.getCallingUid() + " token: " + token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001793 return;
1794 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001795 long ident = Binder.clearCallingIdentity();
1796 try {
The Android Open Source Project4df24232009-03-05 14:34:35 -08001797 hideCurrentInputLocked(flags, null);
1798 } finally {
1799 Binder.restoreCallingIdentity(ident);
1800 }
1801 }
1802 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001803
satok42c5a162011-05-26 16:46:14 +09001804 @Override
The Android Open Source Project4df24232009-03-05 14:34:35 -08001805 public void showMySoftInput(IBinder token, int flags) {
1806 synchronized (mMethodMap) {
1807 if (token == null || mCurToken != token) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001808 Slog.w(TAG, "Ignoring showMySoftInput of uid "
1809 + Binder.getCallingUid() + " token: " + token);
The Android Open Source Project4df24232009-03-05 14:34:35 -08001810 return;
1811 }
1812 long ident = Binder.clearCallingIdentity();
1813 try {
1814 showCurrentInputLocked(flags, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001815 } finally {
1816 Binder.restoreCallingIdentity(ident);
1817 }
1818 }
1819 }
1820
1821 void setEnabledSessionInMainThread(SessionState session) {
1822 if (mEnabledSession != session) {
1823 if (mEnabledSession != null) {
1824 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001825 if (DEBUG) Slog.v(TAG, "Disabling: " + mEnabledSession);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001826 mEnabledSession.method.setSessionEnabled(
1827 mEnabledSession.session, false);
1828 } catch (RemoteException e) {
1829 }
1830 }
1831 mEnabledSession = session;
1832 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001833 if (DEBUG) Slog.v(TAG, "Enabling: " + mEnabledSession);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001834 session.method.setSessionEnabled(
1835 session.session, true);
1836 } catch (RemoteException e) {
1837 }
1838 }
1839 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001840
satok42c5a162011-05-26 16:46:14 +09001841 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001842 public boolean handleMessage(Message msg) {
1843 HandlerCaller.SomeArgs args;
1844 switch (msg.what) {
1845 case MSG_SHOW_IM_PICKER:
1846 showInputMethodMenu();
1847 return true;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001848
satokab751aa2010-09-14 19:17:36 +09001849 case MSG_SHOW_IM_SUBTYPE_PICKER:
1850 showInputMethodSubtypeMenu();
1851 return true;
1852
satok47a44912010-10-06 16:03:58 +09001853 case MSG_SHOW_IM_SUBTYPE_ENABLER:
satok217f5482010-12-15 05:19:19 +09001854 args = (HandlerCaller.SomeArgs)msg.obj;
satok7fee71f2010-12-17 18:54:26 +09001855 showInputMethodAndSubtypeEnabler((String)args.arg1);
satok217f5482010-12-15 05:19:19 +09001856 return true;
1857
1858 case MSG_SHOW_IM_CONFIG:
1859 showConfigureInputMethods();
satok47a44912010-10-06 16:03:58 +09001860 return true;
1861
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001862 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001863
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001864 case MSG_UNBIND_INPUT:
1865 try {
1866 ((IInputMethod)msg.obj).unbindInput();
1867 } catch (RemoteException e) {
1868 // There is nothing interesting about the method dying.
1869 }
1870 return true;
1871 case MSG_BIND_INPUT:
1872 args = (HandlerCaller.SomeArgs)msg.obj;
1873 try {
1874 ((IInputMethod)args.arg1).bindInput((InputBinding)args.arg2);
1875 } catch (RemoteException e) {
1876 }
1877 return true;
1878 case MSG_SHOW_SOFT_INPUT:
The Android Open Source Project4df24232009-03-05 14:34:35 -08001879 args = (HandlerCaller.SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001880 try {
The Android Open Source Project4df24232009-03-05 14:34:35 -08001881 ((IInputMethod)args.arg1).showSoftInput(msg.arg1,
1882 (ResultReceiver)args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001883 } catch (RemoteException e) {
1884 }
1885 return true;
1886 case MSG_HIDE_SOFT_INPUT:
The Android Open Source Project4df24232009-03-05 14:34:35 -08001887 args = (HandlerCaller.SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001888 try {
The Android Open Source Project4df24232009-03-05 14:34:35 -08001889 ((IInputMethod)args.arg1).hideSoftInput(0,
1890 (ResultReceiver)args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001891 } catch (RemoteException e) {
1892 }
1893 return true;
1894 case MSG_ATTACH_TOKEN:
1895 args = (HandlerCaller.SomeArgs)msg.obj;
1896 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001897 if (DEBUG) Slog.v(TAG, "Sending attach of token: " + args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001898 ((IInputMethod)args.arg1).attachToken((IBinder)args.arg2);
1899 } catch (RemoteException e) {
1900 }
1901 return true;
1902 case MSG_CREATE_SESSION:
1903 args = (HandlerCaller.SomeArgs)msg.obj;
1904 try {
1905 ((IInputMethod)args.arg1).createSession(
1906 (IInputMethodCallback)args.arg2);
1907 } catch (RemoteException e) {
1908 }
1909 return true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001910 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001911
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001912 case MSG_START_INPUT:
1913 args = (HandlerCaller.SomeArgs)msg.obj;
1914 try {
1915 SessionState session = (SessionState)args.arg1;
1916 setEnabledSessionInMainThread(session);
1917 session.method.startInput((IInputContext)args.arg2,
1918 (EditorInfo)args.arg3);
1919 } catch (RemoteException e) {
1920 }
1921 return true;
1922 case MSG_RESTART_INPUT:
1923 args = (HandlerCaller.SomeArgs)msg.obj;
1924 try {
1925 SessionState session = (SessionState)args.arg1;
1926 setEnabledSessionInMainThread(session);
1927 session.method.restartInput((IInputContext)args.arg2,
1928 (EditorInfo)args.arg3);
1929 } catch (RemoteException e) {
1930 }
1931 return true;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001932
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001933 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001934
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001935 case MSG_UNBIND_METHOD:
1936 try {
1937 ((IInputMethodClient)msg.obj).onUnbindMethod(msg.arg1);
1938 } catch (RemoteException e) {
1939 // There is nothing interesting about the last client dying.
1940 }
1941 return true;
1942 case MSG_BIND_METHOD:
1943 args = (HandlerCaller.SomeArgs)msg.obj;
1944 try {
1945 ((IInputMethodClient)args.arg1).onBindMethod(
1946 (InputBindResult)args.arg2);
1947 } catch (RemoteException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001948 Slog.w(TAG, "Client died receiving input method " + args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001949 }
1950 return true;
1951 }
1952 return false;
1953 }
1954
Brandon Ballinger6da35a02009-10-21 00:38:13 -07001955 private boolean isSystemIme(InputMethodInfo inputMethod) {
1956 return (inputMethod.getServiceInfo().applicationInfo.flags
1957 & ApplicationInfo.FLAG_SYSTEM) != 0;
1958 }
1959
Ken Wakasa586f0512011-01-20 22:31:01 +09001960 private static ArrayList<InputMethodSubtype> getSubtypes(InputMethodInfo imi) {
1961 ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>();
1962 final int subtypeCount = imi.getSubtypeCount();
1963 for (int i = 0; i < subtypeCount; ++i) {
1964 subtypes.add(imi.getSubtypeAt(i));
1965 }
1966 return subtypes;
1967 }
1968
satoka86f5e42011-09-02 17:12:42 +09001969
1970 private static ArrayList<InputMethodSubtype> getOverridingImplicitlyEnabledSubtypes(
1971 InputMethodInfo imi, String mode) {
1972 ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>();
1973 final int subtypeCount = imi.getSubtypeCount();
1974 for (int i = 0; i < subtypeCount; ++i) {
1975 final InputMethodSubtype subtype = imi.getSubtypeAt(i);
1976 if (subtype.overridesImplicitlyEnabledSubtype() && subtype.getMode().equals(mode)) {
1977 subtypes.add(subtype);
1978 }
1979 }
1980 return subtypes;
1981 }
1982
satokdc9ddae2011-10-06 12:22:36 +09001983 private InputMethodInfo getMostApplicableDefaultIMELocked() {
satokd87c2592010-09-29 11:52:06 +09001984 List<InputMethodInfo> enabled = mSettings.getEnabledInputMethodListLocked();
Brandon Ballinger6da35a02009-10-21 00:38:13 -07001985 if (enabled != null && enabled.size() > 0) {
Dianne Hackborn83e48f52010-03-23 23:03:25 -07001986 // We'd prefer to fall back on a system IME, since that is safer.
1987 int i=enabled.size();
1988 while (i > 0) {
1989 i--;
satokdc9ddae2011-10-06 12:22:36 +09001990 final InputMethodInfo imi = enabled.get(i);
1991 if (isSystemIme(imi) && !imi.isAuxiliaryIme()) {
Dianne Hackborn83e48f52010-03-23 23:03:25 -07001992 break;
1993 }
1994 }
satokdc9ddae2011-10-06 12:22:36 +09001995 return enabled.get(i);
1996 }
1997 return null;
1998 }
1999
2000 private boolean chooseNewDefaultIMELocked() {
2001 final InputMethodInfo imi = getMostApplicableDefaultIMELocked();
2002 if (imi != null) {
satok03eb319a2010-11-11 18:17:42 +09002003 if (DEBUG) {
2004 Slog.d(TAG, "New default IME was selected: " + imi.getId());
2005 }
satok723a27e2010-11-11 14:58:11 +09002006 resetSelectedInputMethodAndSubtypeLocked(imi.getId());
Brandon Ballinger6da35a02009-10-21 00:38:13 -07002007 return true;
2008 }
2009
2010 return false;
2011 }
2012
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002013 void buildInputMethodListLocked(ArrayList<InputMethodInfo> list,
2014 HashMap<String, InputMethodInfo> map) {
2015 list.clear();
2016 map.clear();
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002017
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002018 PackageManager pm = mContext.getPackageManager();
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08002019 final Configuration config = mRes.getConfiguration();
Amith Yamasanie861ec12010-03-24 21:39:27 -07002020 final boolean haveHardKeyboard = config.keyboard == Configuration.KEYBOARD_QWERTY;
2021 String disabledSysImes = Settings.Secure.getString(mContext.getContentResolver(),
2022 Secure.DISABLED_SYSTEM_INPUT_METHODS);
2023 if (disabledSysImes == null) disabledSysImes = "";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002024
2025 List<ResolveInfo> services = pm.queryIntentServices(
2026 new Intent(InputMethod.SERVICE_INTERFACE),
2027 PackageManager.GET_META_DATA);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002028
satoke7c6998e2011-06-03 17:57:59 +09002029 final HashMap<String, List<InputMethodSubtype>> additionalSubtypes =
2030 mFileManager.getAllAdditionalInputMethodSubtypes();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002031 for (int i = 0; i < services.size(); ++i) {
2032 ResolveInfo ri = services.get(i);
2033 ServiceInfo si = ri.serviceInfo;
2034 ComponentName compName = new ComponentName(si.packageName, si.name);
2035 if (!android.Manifest.permission.BIND_INPUT_METHOD.equals(
2036 si.permission)) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002037 Slog.w(TAG, "Skipping input method " + compName
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002038 + ": it does not require the permission "
2039 + android.Manifest.permission.BIND_INPUT_METHOD);
2040 continue;
2041 }
2042
Joe Onorato8a9b2202010-02-26 18:56:32 -08002043 if (DEBUG) Slog.d(TAG, "Checking " + compName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002044
2045 try {
satoke7c6998e2011-06-03 17:57:59 +09002046 InputMethodInfo p = new InputMethodInfo(mContext, ri, additionalSubtypes);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002047 list.add(p);
Amith Yamasanie861ec12010-03-24 21:39:27 -07002048 final String id = p.getId();
2049 map.put(id, p);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002050
Amith Yamasanie861ec12010-03-24 21:39:27 -07002051 // System IMEs are enabled by default, unless there's a hard keyboard
2052 // and the system IME was explicitly disabled
2053 if (isSystemIme(p) && (!haveHardKeyboard || disabledSysImes.indexOf(id) < 0)) {
2054 setInputMethodEnabledLocked(id, true);
Brandon Ballinger6da35a02009-10-21 00:38:13 -07002055 }
2056
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002057 if (DEBUG) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002058 Slog.d(TAG, "Found a third-party input method " + p);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002059 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002060
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002061 } catch (XmlPullParserException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002062 Slog.w(TAG, "Unable to load input method " + compName, e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002063 } catch (IOException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002064 Slog.w(TAG, "Unable to load input method " + compName, e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002065 }
2066 }
Brandon Ballinger6da35a02009-10-21 00:38:13 -07002067
2068 String defaultIme = Settings.Secure.getString(mContext
2069 .getContentResolver(), Settings.Secure.DEFAULT_INPUT_METHOD);
satok913a8922010-08-26 21:53:41 +09002070 if (!TextUtils.isEmpty(defaultIme) && !map.containsKey(defaultIme)) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002071 if (chooseNewDefaultIMELocked()) {
Brandon Ballinger6da35a02009-10-21 00:38:13 -07002072 updateFromSettingsLocked();
2073 }
2074 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002075 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002076
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002077 // ----------------------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002078
satokab751aa2010-09-14 19:17:36 +09002079 private void showInputMethodMenu() {
2080 showInputMethodMenuInternal(false);
2081 }
2082
2083 private void showInputMethodSubtypeMenu() {
2084 showInputMethodMenuInternal(true);
2085 }
2086
satok217f5482010-12-15 05:19:19 +09002087 private void showInputMethodAndSubtypeEnabler(String inputMethodId) {
Tadashi G. Takaokaf49688f2011-01-20 17:56:13 +09002088 Intent intent = new Intent(Settings.ACTION_INPUT_METHOD_SUBTYPE_SETTINGS);
satok47a44912010-10-06 16:03:58 +09002089 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
satok86417ea2010-10-27 14:11:03 +09002090 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED
2091 | Intent.FLAG_ACTIVITY_CLEAR_TOP);
satok7fee71f2010-12-17 18:54:26 +09002092 if (!TextUtils.isEmpty(inputMethodId)) {
Tadashi G. Takaoka25480202011-01-20 23:13:02 +09002093 intent.putExtra(Settings.EXTRA_INPUT_METHOD_ID, inputMethodId);
satok7fee71f2010-12-17 18:54:26 +09002094 }
satok217f5482010-12-15 05:19:19 +09002095 mContext.startActivity(intent);
2096 }
2097
2098 private void showConfigureInputMethods() {
2099 Intent intent = new Intent(Settings.ACTION_INPUT_METHOD_SETTINGS);
2100 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
2101 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED
2102 | Intent.FLAG_ACTIVITY_CLEAR_TOP);
satok47a44912010-10-06 16:03:58 +09002103 mContext.startActivity(intent);
2104 }
2105
satokab751aa2010-09-14 19:17:36 +09002106 private void showInputMethodMenuInternal(boolean showSubtypes) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002107 if (DEBUG) Slog.v(TAG, "Show switching menu");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002108
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002109 final Context context = mContext;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002110 final PackageManager pm = context.getPackageManager();
satokbc81b692011-08-26 16:22:22 +09002111 final boolean isScreenLocked = mKeyguardManager != null
2112 && mKeyguardManager.isKeyguardLocked() && mKeyguardManager.isKeyguardSecure();
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002113
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002114 String lastInputMethodId = Settings.Secure.getString(context
2115 .getContentResolver(), Settings.Secure.DEFAULT_INPUT_METHOD);
satokab751aa2010-09-14 19:17:36 +09002116 int lastInputMethodSubtypeId = getSelectedInputMethodSubtypeId(lastInputMethodId);
Joe Onorato8a9b2202010-02-26 18:56:32 -08002117 if (DEBUG) Slog.v(TAG, "Current IME: " + lastInputMethodId);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002118
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002119 synchronized (mMethodMap) {
satokbb4aa062011-01-19 21:40:27 +09002120 final HashMap<InputMethodInfo, List<InputMethodSubtype>> immis =
2121 getExplicitlyOrImplicitlyEnabledInputMethodsAndSubtypeListLocked();
satok7f35c8c2010-10-07 21:13:11 +09002122 if (immis == null || immis.size() == 0) {
2123 return;
2124 }
2125
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002126 hideInputMethodMenuLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002127
satok688bd472012-02-09 20:09:17 +09002128 final List<ImeSubtypeListItem> imList =
2129 mImListManager.getSortedInputMethodAndSubtypeList(
2130 showSubtypes, mInputShown, isScreenLocked);
satok913a8922010-08-26 21:53:41 +09002131
satokc3690562012-01-10 20:14:43 +09002132 if (lastInputMethodSubtypeId == NOT_A_SUBTYPE_ID) {
2133 final InputMethodSubtype currentSubtype = getCurrentInputMethodSubtype();
2134 if (currentSubtype != null) {
2135 final InputMethodInfo currentImi = mMethodMap.get(mCurMethodId);
2136 lastInputMethodSubtypeId =
2137 getSubtypeIdFromHashCode(currentImi, currentSubtype.hashCode());
2138 }
2139 }
2140
Ken Wakasa761eb372011-03-04 19:06:18 +09002141 final int N = imList.size();
satokab751aa2010-09-14 19:17:36 +09002142 mIms = new InputMethodInfo[N];
2143 mSubtypeIds = new int[N];
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002144 int checkedItem = 0;
2145 for (int i = 0; i < N; ++i) {
Ken Wakasa05dbb652011-08-22 15:22:43 +09002146 final ImeSubtypeListItem item = imList.get(i);
2147 mIms[i] = item.mImi;
2148 mSubtypeIds[i] = item.mSubtypeId;
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002149 if (mIms[i].getId().equals(lastInputMethodId)) {
satokab751aa2010-09-14 19:17:36 +09002150 int subtypeId = mSubtypeIds[i];
2151 if ((subtypeId == NOT_A_SUBTYPE_ID)
2152 || (lastInputMethodSubtypeId == NOT_A_SUBTYPE_ID && subtypeId == 0)
2153 || (subtypeId == lastInputMethodSubtypeId)) {
2154 checkedItem = i;
2155 }
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002156 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002157 }
satokab751aa2010-09-14 19:17:36 +09002158
Ken Wakasa05dbb652011-08-22 15:22:43 +09002159 final TypedArray a = context.obtainStyledAttributes(null,
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002160 com.android.internal.R.styleable.DialogPreference,
2161 com.android.internal.R.attr.alertDialogStyle, 0);
2162 mDialogBuilder = new AlertDialog.Builder(context)
2163 .setTitle(com.android.internal.R.string.select_input_method)
2164 .setOnCancelListener(new OnCancelListener() {
satok42c5a162011-05-26 16:46:14 +09002165 @Override
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002166 public void onCancel(DialogInterface dialog) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002167 hideInputMethodMenu();
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002168 }
2169 })
2170 .setIcon(a.getDrawable(
2171 com.android.internal.R.styleable.DialogPreference_dialogTitle));
2172 a.recycle();
satokd87c2592010-09-29 11:52:06 +09002173
Ken Wakasa05dbb652011-08-22 15:22:43 +09002174 final ImeSubtypeListAdapter adapter = new ImeSubtypeListAdapter(context,
2175 com.android.internal.R.layout.simple_list_item_2_single_choice, imList,
2176 checkedItem);
2177
2178 mDialogBuilder.setSingleChoiceItems(adapter, checkedItem,
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002179 new AlertDialog.OnClickListener() {
satok42c5a162011-05-26 16:46:14 +09002180 @Override
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002181 public void onClick(DialogInterface dialog, int which) {
2182 synchronized (mMethodMap) {
satokab751aa2010-09-14 19:17:36 +09002183 if (mIms == null || mIms.length <= which
2184 || mSubtypeIds == null || mSubtypeIds.length <= which) {
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002185 return;
2186 }
2187 InputMethodInfo im = mIms[which];
satokab751aa2010-09-14 19:17:36 +09002188 int subtypeId = mSubtypeIds[which];
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002189 hideInputMethodMenu();
2190 if (im != null) {
satokab751aa2010-09-14 19:17:36 +09002191 if ((subtypeId < 0)
Ken Wakasa586f0512011-01-20 22:31:01 +09002192 || (subtypeId >= im.getSubtypeCount())) {
satokab751aa2010-09-14 19:17:36 +09002193 subtypeId = NOT_A_SUBTYPE_ID;
2194 }
2195 setInputMethodLocked(im.getId(), subtypeId);
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002196 }
Dianne Hackborn20cb56e2010-03-04 00:58:29 -08002197 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002198 }
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002199 });
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002200
satokbc81b692011-08-26 16:22:22 +09002201 if (showSubtypes && !isScreenLocked) {
satok82beadf2010-12-27 19:03:06 +09002202 mDialogBuilder.setPositiveButton(
2203 com.android.internal.R.string.configure_input_methods,
satok7f35c8c2010-10-07 21:13:11 +09002204 new DialogInterface.OnClickListener() {
satok42c5a162011-05-26 16:46:14 +09002205 @Override
satok7f35c8c2010-10-07 21:13:11 +09002206 public void onClick(DialogInterface dialog, int whichButton) {
satok217f5482010-12-15 05:19:19 +09002207 showConfigureInputMethods();
satok7f35c8c2010-10-07 21:13:11 +09002208 }
2209 });
2210 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002211 mSwitchingDialog = mDialogBuilder.create();
Dianne Hackborne3a7f622011-03-03 21:48:24 -08002212 mSwitchingDialog.setCanceledOnTouchOutside(true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002213 mSwitchingDialog.getWindow().setType(
2214 WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG);
Dianne Hackborne3a7f622011-03-03 21:48:24 -08002215 mSwitchingDialog.getWindow().getAttributes().setTitle("Select input method");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002216 mSwitchingDialog.show();
2217 }
2218 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002219
Ken Wakasa05dbb652011-08-22 15:22:43 +09002220 private static class ImeSubtypeListItem {
2221 public final CharSequence mImeName;
2222 public final CharSequence mSubtypeName;
2223 public final InputMethodInfo mImi;
2224 public final int mSubtypeId;
2225 public ImeSubtypeListItem(CharSequence imeName, CharSequence subtypeName,
2226 InputMethodInfo imi, int subtypeId) {
2227 mImeName = imeName;
2228 mSubtypeName = subtypeName;
2229 mImi = imi;
2230 mSubtypeId = subtypeId;
2231 }
2232 }
2233
2234 private static class ImeSubtypeListAdapter extends ArrayAdapter<ImeSubtypeListItem> {
2235 private final LayoutInflater mInflater;
2236 private final int mTextViewResourceId;
2237 private final List<ImeSubtypeListItem> mItemsList;
2238 private final int mCheckedItem;
2239 public ImeSubtypeListAdapter(Context context, int textViewResourceId,
2240 List<ImeSubtypeListItem> itemsList, int checkedItem) {
2241 super(context, textViewResourceId, itemsList);
2242 mTextViewResourceId = textViewResourceId;
2243 mItemsList = itemsList;
2244 mCheckedItem = checkedItem;
2245 mInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
2246 }
2247
2248 @Override
2249 public View getView(int position, View convertView, ViewGroup parent) {
2250 final View view = convertView != null ? convertView
2251 : mInflater.inflate(mTextViewResourceId, null);
2252 if (position < 0 || position >= mItemsList.size()) return view;
2253 final ImeSubtypeListItem item = mItemsList.get(position);
2254 final CharSequence imeName = item.mImeName;
2255 final CharSequence subtypeName = item.mSubtypeName;
2256 final TextView firstTextView = (TextView)view.findViewById(android.R.id.text1);
2257 final TextView secondTextView = (TextView)view.findViewById(android.R.id.text2);
2258 if (TextUtils.isEmpty(subtypeName)) {
2259 firstTextView.setText(imeName);
2260 secondTextView.setVisibility(View.GONE);
2261 } else {
2262 firstTextView.setText(subtypeName);
2263 secondTextView.setText(imeName);
2264 secondTextView.setVisibility(View.VISIBLE);
2265 }
2266 final RadioButton radioButton =
2267 (RadioButton)view.findViewById(com.android.internal.R.id.radio);
2268 radioButton.setChecked(position == mCheckedItem);
2269 return view;
2270 }
2271 }
2272
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002273 void hideInputMethodMenu() {
The Android Open Source Project10592532009-03-18 17:39:46 -07002274 synchronized (mMethodMap) {
2275 hideInputMethodMenuLocked();
2276 }
2277 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002278
The Android Open Source Project10592532009-03-18 17:39:46 -07002279 void hideInputMethodMenuLocked() {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002280 if (DEBUG) Slog.v(TAG, "Hide switching menu");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002281
The Android Open Source Project10592532009-03-18 17:39:46 -07002282 if (mSwitchingDialog != null) {
2283 mSwitchingDialog.dismiss();
2284 mSwitchingDialog = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002285 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002286
The Android Open Source Project10592532009-03-18 17:39:46 -07002287 mDialogBuilder = null;
The Android Open Source Project10592532009-03-18 17:39:46 -07002288 mIms = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002289 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002290
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002291 // ----------------------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002292
satok42c5a162011-05-26 16:46:14 +09002293 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002294 public boolean setInputMethodEnabled(String id, boolean enabled) {
2295 synchronized (mMethodMap) {
2296 if (mContext.checkCallingOrSelfPermission(
2297 android.Manifest.permission.WRITE_SECURE_SETTINGS)
2298 != PackageManager.PERMISSION_GRANTED) {
2299 throw new SecurityException(
2300 "Requires permission "
2301 + android.Manifest.permission.WRITE_SECURE_SETTINGS);
2302 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002303
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002304 long ident = Binder.clearCallingIdentity();
2305 try {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002306 return setInputMethodEnabledLocked(id, enabled);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002307 } finally {
2308 Binder.restoreCallingIdentity(ident);
2309 }
2310 }
2311 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002312
2313 boolean setInputMethodEnabledLocked(String id, boolean enabled) {
2314 // Make sure this is a valid input method.
2315 InputMethodInfo imm = mMethodMap.get(id);
2316 if (imm == null) {
satokd87c2592010-09-29 11:52:06 +09002317 throw new IllegalArgumentException("Unknown id: " + mCurMethodId);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002318 }
2319
satokd87c2592010-09-29 11:52:06 +09002320 List<Pair<String, ArrayList<String>>> enabledInputMethodsList = mSettings
2321 .getEnabledInputMethodsAndSubtypeListLocked();
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002322
satokd87c2592010-09-29 11:52:06 +09002323 if (enabled) {
2324 for (Pair<String, ArrayList<String>> pair: enabledInputMethodsList) {
2325 if (pair.first.equals(id)) {
2326 // We are enabling this input method, but it is already enabled.
2327 // Nothing to do. The previous state was enabled.
2328 return true;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002329 }
2330 }
satokd87c2592010-09-29 11:52:06 +09002331 mSettings.appendAndPutEnabledInputMethodLocked(id, false);
2332 // Previous state was disabled.
2333 return false;
2334 } else {
2335 StringBuilder builder = new StringBuilder();
2336 if (mSettings.buildAndPutEnabledInputMethodsStrRemovingIdLocked(
2337 builder, enabledInputMethodsList, id)) {
2338 // Disabled input method is currently selected, switch to another one.
2339 String selId = Settings.Secure.getString(mContext.getContentResolver(),
2340 Settings.Secure.DEFAULT_INPUT_METHOD);
satok03eb319a2010-11-11 18:17:42 +09002341 if (id.equals(selId) && !chooseNewDefaultIMELocked()) {
2342 Slog.i(TAG, "Can't find new IME, unsetting the current input method.");
2343 resetSelectedInputMethodAndSubtypeLocked("");
satokd87c2592010-09-29 11:52:06 +09002344 }
2345 // Previous state was enabled.
2346 return true;
2347 } else {
2348 // We are disabling the input method but it is already disabled.
2349 // Nothing to do. The previous state was disabled.
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002350 return false;
2351 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002352 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002353 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002354
satok57ffc002011-01-25 00:11:47 +09002355 private boolean canAddToLastInputMethod(InputMethodSubtype subtype) {
2356 if (subtype == null) return true;
satok9b415792011-05-30 12:37:52 +09002357 return !subtype.isAuxiliary();
satok57ffc002011-01-25 00:11:47 +09002358 }
2359
satok723a27e2010-11-11 14:58:11 +09002360 private void saveCurrentInputMethodAndSubtypeToHistory() {
2361 String subtypeId = NOT_A_SUBTYPE_ID_STR;
2362 if (mCurrentSubtype != null) {
2363 subtypeId = String.valueOf(mCurrentSubtype.hashCode());
2364 }
satok57ffc002011-01-25 00:11:47 +09002365 if (canAddToLastInputMethod(mCurrentSubtype)) {
2366 mSettings.addSubtypeToHistory(mCurMethodId, subtypeId);
2367 }
satokab751aa2010-09-14 19:17:36 +09002368 }
2369
satok723a27e2010-11-11 14:58:11 +09002370 private void setSelectedInputMethodAndSubtypeLocked(InputMethodInfo imi, int subtypeId,
2371 boolean setSubtypeOnly) {
2372 // Update the history of InputMethod and Subtype
2373 saveCurrentInputMethodAndSubtypeToHistory();
2374
2375 // Set Subtype here
2376 if (imi == null || subtypeId < 0) {
2377 mSettings.putSelectedSubtype(NOT_A_SUBTYPE_ID);
Tadashi G. Takaoka0ba75bb2010-11-09 12:19:32 -08002378 mCurrentSubtype = null;
satok723a27e2010-11-11 14:58:11 +09002379 } else {
Ken Wakasa586f0512011-01-20 22:31:01 +09002380 if (subtypeId < imi.getSubtypeCount()) {
2381 InputMethodSubtype subtype = imi.getSubtypeAt(subtypeId);
2382 mSettings.putSelectedSubtype(subtype.hashCode());
2383 mCurrentSubtype = subtype;
satok723a27e2010-11-11 14:58:11 +09002384 } else {
2385 mSettings.putSelectedSubtype(NOT_A_SUBTYPE_ID);
2386 mCurrentSubtype = null;
2387 }
satokab751aa2010-09-14 19:17:36 +09002388 }
satok723a27e2010-11-11 14:58:11 +09002389
2390 if (!setSubtypeOnly) {
2391 // Set InputMethod here
2392 mSettings.putSelectedInputMethod(imi != null ? imi.getId() : "");
2393 }
2394 }
2395
2396 private void resetSelectedInputMethodAndSubtypeLocked(String newDefaultIme) {
2397 InputMethodInfo imi = mMethodMap.get(newDefaultIme);
2398 int lastSubtypeId = NOT_A_SUBTYPE_ID;
2399 // newDefaultIme is empty when there is no candidate for the selected IME.
2400 if (imi != null && !TextUtils.isEmpty(newDefaultIme)) {
2401 String subtypeHashCode = mSettings.getLastSubtypeForInputMethodLocked(newDefaultIme);
2402 if (subtypeHashCode != null) {
2403 try {
2404 lastSubtypeId = getSubtypeIdFromHashCode(
2405 imi, Integer.valueOf(subtypeHashCode));
2406 } catch (NumberFormatException e) {
2407 Slog.w(TAG, "HashCode for subtype looks broken: " + subtypeHashCode, e);
2408 }
2409 }
2410 }
2411 setSelectedInputMethodAndSubtypeLocked(imi, lastSubtypeId, false);
satokab751aa2010-09-14 19:17:36 +09002412 }
2413
2414 private int getSelectedInputMethodSubtypeId(String id) {
2415 InputMethodInfo imi = mMethodMap.get(id);
2416 if (imi == null) {
2417 return NOT_A_SUBTYPE_ID;
2418 }
satokab751aa2010-09-14 19:17:36 +09002419 int subtypeId;
2420 try {
2421 subtypeId = Settings.Secure.getInt(mContext.getContentResolver(),
2422 Settings.Secure.SELECTED_INPUT_METHOD_SUBTYPE);
2423 } catch (SettingNotFoundException e) {
2424 return NOT_A_SUBTYPE_ID;
2425 }
satok723a27e2010-11-11 14:58:11 +09002426 return getSubtypeIdFromHashCode(imi, subtypeId);
2427 }
2428
2429 private int getSubtypeIdFromHashCode(InputMethodInfo imi, int subtypeHashCode) {
satok28203512010-11-24 11:06:49 +09002430 if (imi != null) {
Ken Wakasa586f0512011-01-20 22:31:01 +09002431 final int subtypeCount = imi.getSubtypeCount();
2432 for (int i = 0; i < subtypeCount; ++i) {
2433 InputMethodSubtype ims = imi.getSubtypeAt(i);
satok28203512010-11-24 11:06:49 +09002434 if (subtypeHashCode == ims.hashCode()) {
2435 return i;
2436 }
satokab751aa2010-09-14 19:17:36 +09002437 }
2438 }
2439 return NOT_A_SUBTYPE_ID;
2440 }
2441
satoka86f5e42011-09-02 17:12:42 +09002442 private static ArrayList<InputMethodSubtype> getImplicitlyApplicableSubtypesLocked(
2443 Resources res, InputMethodInfo imi) {
2444 final List<InputMethodSubtype> subtypes = getSubtypes(imi);
satokdf31ae62011-01-15 06:19:44 +09002445 final String systemLocale = res.getConfiguration().locale.toString();
satok3da92232011-01-11 22:46:30 +09002446 if (TextUtils.isEmpty(systemLocale)) return new ArrayList<InputMethodSubtype>();
satok4a553e32011-10-03 17:05:50 +09002447 final HashMap<String, InputMethodSubtype> applicableModeAndSubtypesMap =
satok3da92232011-01-11 22:46:30 +09002448 new HashMap<String, InputMethodSubtype>();
satok16331c82010-12-20 23:48:46 +09002449 final int N = subtypes.size();
satok16331c82010-12-20 23:48:46 +09002450 for (int i = 0; i < N; ++i) {
satoka86f5e42011-09-02 17:12:42 +09002451 // scan overriding implicitly enabled subtypes.
2452 InputMethodSubtype subtype = subtypes.get(i);
2453 if (subtype.overridesImplicitlyEnabledSubtype()) {
2454 final String mode = subtype.getMode();
2455 if (!applicableModeAndSubtypesMap.containsKey(mode)) {
2456 applicableModeAndSubtypesMap.put(mode, subtype);
2457 }
2458 }
2459 }
2460 if (applicableModeAndSubtypesMap.size() > 0) {
2461 return new ArrayList<InputMethodSubtype>(applicableModeAndSubtypesMap.values());
2462 }
2463 for (int i = 0; i < N; ++i) {
satok4a553e32011-10-03 17:05:50 +09002464 final InputMethodSubtype subtype = subtypes.get(i);
satok3da92232011-01-11 22:46:30 +09002465 final String locale = subtype.getLocale();
2466 final String mode = subtype.getMode();
2467 // When system locale starts with subtype's locale, that subtype will be applicable
2468 // for system locale
2469 // For instance, it's clearly applicable for cases like system locale = en_US and
2470 // subtype = en, but it is not necessarily considered applicable for cases like system
2471 // locale = en and subtype = en_US.
2472 // We just call systemLocale.startsWith(locale) in this function because there is no
2473 // need to find applicable subtypes aggressively unlike
2474 // findLastResortApplicableSubtypeLocked.
2475 if (systemLocale.startsWith(locale)) {
satok4a553e32011-10-03 17:05:50 +09002476 final InputMethodSubtype applicableSubtype = applicableModeAndSubtypesMap.get(mode);
satok3da92232011-01-11 22:46:30 +09002477 // If more applicable subtypes are contained, skip.
satok4a553e32011-10-03 17:05:50 +09002478 if (applicableSubtype != null) {
2479 if (systemLocale.equals(applicableSubtype.getLocale())) continue;
2480 if (!systemLocale.equals(locale)) continue;
2481 }
satok3da92232011-01-11 22:46:30 +09002482 applicableModeAndSubtypesMap.put(mode, subtype);
satokc3690562012-01-10 20:14:43 +09002483 }
2484 }
2485 final InputMethodSubtype keyboardSubtype
2486 = applicableModeAndSubtypesMap.get(SUBTYPE_MODE_KEYBOARD);
2487 final ArrayList<InputMethodSubtype> applicableSubtypes = new ArrayList<InputMethodSubtype>(
2488 applicableModeAndSubtypesMap.values());
2489 if (keyboardSubtype != null && !keyboardSubtype.containsExtraValueKey(TAG_ASCII_CAPABLE)) {
2490 for (int i = 0; i < N; ++i) {
2491 final InputMethodSubtype subtype = subtypes.get(i);
2492 final String mode = subtype.getMode();
2493 if (SUBTYPE_MODE_KEYBOARD.equals(mode) && subtype.containsExtraValueKey(
2494 TAG_ENABLED_WHEN_DEFAULT_IS_NOT_ASCII_CAPABLE)) {
2495 applicableSubtypes.add(subtype);
satok16331c82010-12-20 23:48:46 +09002496 }
2497 }
2498 }
satokc3690562012-01-10 20:14:43 +09002499 if (keyboardSubtype == null) {
satok16331c82010-12-20 23:48:46 +09002500 InputMethodSubtype lastResortKeyboardSubtype = findLastResortApplicableSubtypeLocked(
satokdf31ae62011-01-15 06:19:44 +09002501 res, subtypes, SUBTYPE_MODE_KEYBOARD, systemLocale, true);
satok16331c82010-12-20 23:48:46 +09002502 if (lastResortKeyboardSubtype != null) {
2503 applicableSubtypes.add(lastResortKeyboardSubtype);
2504 }
2505 }
2506 return applicableSubtypes;
2507 }
2508
satok4e4569d2010-11-19 18:45:53 +09002509 /**
2510 * If there are no selected subtypes, tries finding the most applicable one according to the
2511 * given locale.
2512 * @param subtypes this function will search the most applicable subtype in subtypes
2513 * @param mode subtypes will be filtered by mode
2514 * @param locale subtypes will be filtered by locale
satok7599a7f2010-12-22 13:45:23 +09002515 * @param canIgnoreLocaleAsLastResort if this function can't find the most applicable subtype,
2516 * it will return the first subtype matched with mode
satok4e4569d2010-11-19 18:45:53 +09002517 * @return the most applicable subtypeId
2518 */
satokdf31ae62011-01-15 06:19:44 +09002519 private static InputMethodSubtype findLastResortApplicableSubtypeLocked(
2520 Resources res, List<InputMethodSubtype> subtypes, String mode, String locale,
satok7599a7f2010-12-22 13:45:23 +09002521 boolean canIgnoreLocaleAsLastResort) {
satok8fbb1e82010-11-02 23:15:58 +09002522 if (subtypes == null || subtypes.size() == 0) {
satokcd7cd292010-11-20 15:46:23 +09002523 return null;
satok8fbb1e82010-11-02 23:15:58 +09002524 }
satok4e4569d2010-11-19 18:45:53 +09002525 if (TextUtils.isEmpty(locale)) {
satokdf31ae62011-01-15 06:19:44 +09002526 locale = res.getConfiguration().locale.toString();
satok4e4569d2010-11-19 18:45:53 +09002527 }
satok8fbb1e82010-11-02 23:15:58 +09002528 final String language = locale.substring(0, 2);
2529 boolean partialMatchFound = false;
satokcd7cd292010-11-20 15:46:23 +09002530 InputMethodSubtype applicableSubtype = null;
satok7599a7f2010-12-22 13:45:23 +09002531 InputMethodSubtype firstMatchedModeSubtype = null;
satok16331c82010-12-20 23:48:46 +09002532 final int N = subtypes.size();
2533 for (int i = 0; i < N; ++i) {
satokcd7cd292010-11-20 15:46:23 +09002534 InputMethodSubtype subtype = subtypes.get(i);
2535 final String subtypeLocale = subtype.getLocale();
satokd8713432011-01-18 00:55:13 +09002536 // An applicable subtype should match "mode". If mode is null, mode will be ignored,
2537 // and all subtypes with all modes can be candidates.
2538 if (mode == null || subtypes.get(i).getMode().equalsIgnoreCase(mode)) {
satok7599a7f2010-12-22 13:45:23 +09002539 if (firstMatchedModeSubtype == null) {
2540 firstMatchedModeSubtype = subtype;
2541 }
satok9ef02832010-11-04 21:17:48 +09002542 if (locale.equals(subtypeLocale)) {
2543 // Exact match (e.g. system locale is "en_US" and subtype locale is "en_US")
satokcd7cd292010-11-20 15:46:23 +09002544 applicableSubtype = subtype;
satok9ef02832010-11-04 21:17:48 +09002545 break;
2546 } else if (!partialMatchFound && subtypeLocale.startsWith(language)) {
2547 // Partial match (e.g. system locale is "en_US" and subtype locale is "en")
satokcd7cd292010-11-20 15:46:23 +09002548 applicableSubtype = subtype;
satok9ef02832010-11-04 21:17:48 +09002549 partialMatchFound = true;
2550 }
satok8fbb1e82010-11-02 23:15:58 +09002551 }
2552 }
2553
satok7599a7f2010-12-22 13:45:23 +09002554 if (applicableSubtype == null && canIgnoreLocaleAsLastResort) {
2555 return firstMatchedModeSubtype;
satok16331c82010-12-20 23:48:46 +09002556 }
2557
satok8fbb1e82010-11-02 23:15:58 +09002558 // The first subtype applicable to the system locale will be defined as the most applicable
2559 // subtype.
2560 if (DEBUG) {
satok16331c82010-12-20 23:48:46 +09002561 if (applicableSubtype != null) {
2562 Slog.d(TAG, "Applicable InputMethodSubtype was found: "
2563 + applicableSubtype.getMode() + "," + applicableSubtype.getLocale());
2564 }
satok8fbb1e82010-11-02 23:15:58 +09002565 }
satokcd7cd292010-11-20 15:46:23 +09002566 return applicableSubtype;
satok8fbb1e82010-11-02 23:15:58 +09002567 }
2568
satok4e4569d2010-11-19 18:45:53 +09002569 // If there are no selected shortcuts, tries finding the most applicable ones.
2570 private Pair<InputMethodInfo, InputMethodSubtype>
2571 findLastResortApplicableShortcutInputMethodAndSubtypeLocked(String mode) {
2572 List<InputMethodInfo> imis = mSettings.getEnabledInputMethodListLocked();
2573 InputMethodInfo mostApplicableIMI = null;
satokcd7cd292010-11-20 15:46:23 +09002574 InputMethodSubtype mostApplicableSubtype = null;
satok4e4569d2010-11-19 18:45:53 +09002575 boolean foundInSystemIME = false;
2576
2577 // Search applicable subtype for each InputMethodInfo
2578 for (InputMethodInfo imi: imis) {
satok7599a7f2010-12-22 13:45:23 +09002579 final String imiId = imi.getId();
2580 if (foundInSystemIME && !imiId.equals(mCurMethodId)) {
2581 continue;
2582 }
satokcd7cd292010-11-20 15:46:23 +09002583 InputMethodSubtype subtype = null;
satokdf31ae62011-01-15 06:19:44 +09002584 final List<InputMethodSubtype> enabledSubtypes =
2585 getEnabledInputMethodSubtypeList(imi, true);
2586 // 1. Search by the current subtype's locale from enabledSubtypes.
satok4e4569d2010-11-19 18:45:53 +09002587 if (mCurrentSubtype != null) {
satokcd7cd292010-11-20 15:46:23 +09002588 subtype = findLastResortApplicableSubtypeLocked(
satokdf31ae62011-01-15 06:19:44 +09002589 mRes, enabledSubtypes, mode, mCurrentSubtype.getLocale(), false);
satok4e4569d2010-11-19 18:45:53 +09002590 }
satokdf31ae62011-01-15 06:19:44 +09002591 // 2. Search by the system locale from enabledSubtypes.
2592 // 3. Search the first enabled subtype matched with mode from enabledSubtypes.
satokcd7cd292010-11-20 15:46:23 +09002593 if (subtype == null) {
2594 subtype = findLastResortApplicableSubtypeLocked(
satokdf31ae62011-01-15 06:19:44 +09002595 mRes, enabledSubtypes, mode, null, true);
satok4e4569d2010-11-19 18:45:53 +09002596 }
satoka86f5e42011-09-02 17:12:42 +09002597 final ArrayList<InputMethodSubtype> overridingImplicitlyEnabledSubtypes =
2598 getOverridingImplicitlyEnabledSubtypes(imi, mode);
2599 final ArrayList<InputMethodSubtype> subtypesForSearch =
2600 overridingImplicitlyEnabledSubtypes.isEmpty()
2601 ? getSubtypes(imi) : overridingImplicitlyEnabledSubtypes;
satok7599a7f2010-12-22 13:45:23 +09002602 // 4. Search by the current subtype's locale from all subtypes.
2603 if (subtype == null && mCurrentSubtype != null) {
2604 subtype = findLastResortApplicableSubtypeLocked(
satoka86f5e42011-09-02 17:12:42 +09002605 mRes, subtypesForSearch, mode, mCurrentSubtype.getLocale(), false);
satok7599a7f2010-12-22 13:45:23 +09002606 }
2607 // 5. Search by the system locale from all subtypes.
2608 // 6. Search the first enabled subtype matched with mode from all subtypes.
satokcd7cd292010-11-20 15:46:23 +09002609 if (subtype == null) {
satok7599a7f2010-12-22 13:45:23 +09002610 subtype = findLastResortApplicableSubtypeLocked(
satoka86f5e42011-09-02 17:12:42 +09002611 mRes, subtypesForSearch, mode, null, true);
satok4e4569d2010-11-19 18:45:53 +09002612 }
satokcd7cd292010-11-20 15:46:23 +09002613 if (subtype != null) {
satok7599a7f2010-12-22 13:45:23 +09002614 if (imiId.equals(mCurMethodId)) {
satok4e4569d2010-11-19 18:45:53 +09002615 // The current input method is the most applicable IME.
2616 mostApplicableIMI = imi;
satokcd7cd292010-11-20 15:46:23 +09002617 mostApplicableSubtype = subtype;
satok4e4569d2010-11-19 18:45:53 +09002618 break;
satok7599a7f2010-12-22 13:45:23 +09002619 } else if (!foundInSystemIME) {
satok4e4569d2010-11-19 18:45:53 +09002620 // The system input method is 2nd applicable IME.
2621 mostApplicableIMI = imi;
satokcd7cd292010-11-20 15:46:23 +09002622 mostApplicableSubtype = subtype;
satok7599a7f2010-12-22 13:45:23 +09002623 if ((imi.getServiceInfo().applicationInfo.flags
2624 & ApplicationInfo.FLAG_SYSTEM) != 0) {
2625 foundInSystemIME = true;
2626 }
satok4e4569d2010-11-19 18:45:53 +09002627 }
2628 }
2629 }
2630 if (DEBUG) {
satokcd7cd292010-11-20 15:46:23 +09002631 if (mostApplicableIMI != null) {
2632 Slog.w(TAG, "Most applicable shortcut input method was:"
2633 + mostApplicableIMI.getId());
2634 if (mostApplicableSubtype != null) {
2635 Slog.w(TAG, "Most applicable shortcut input method subtype was:"
2636 + "," + mostApplicableSubtype.getMode() + ","
2637 + mostApplicableSubtype.getLocale());
2638 }
2639 }
satok4e4569d2010-11-19 18:45:53 +09002640 }
satokcd7cd292010-11-20 15:46:23 +09002641 if (mostApplicableIMI != null) {
satok4e4569d2010-11-19 18:45:53 +09002642 return new Pair<InputMethodInfo, InputMethodSubtype> (mostApplicableIMI,
satokcd7cd292010-11-20 15:46:23 +09002643 mostApplicableSubtype);
satok4e4569d2010-11-19 18:45:53 +09002644 } else {
2645 return null;
2646 }
2647 }
2648
satokab751aa2010-09-14 19:17:36 +09002649 /**
2650 * @return Return the current subtype of this input method.
2651 */
satok42c5a162011-05-26 16:46:14 +09002652 @Override
satokab751aa2010-09-14 19:17:36 +09002653 public InputMethodSubtype getCurrentInputMethodSubtype() {
satok4e4569d2010-11-19 18:45:53 +09002654 boolean subtypeIsSelected = false;
2655 try {
2656 subtypeIsSelected = Settings.Secure.getInt(mContext.getContentResolver(),
2657 Settings.Secure.SELECTED_INPUT_METHOD_SUBTYPE) != NOT_A_SUBTYPE_ID;
2658 } catch (SettingNotFoundException e) {
2659 }
satok3ef8b292010-11-23 06:06:29 +09002660 synchronized (mMethodMap) {
satok3ef8b292010-11-23 06:06:29 +09002661 if (!subtypeIsSelected || mCurrentSubtype == null) {
satok4e4569d2010-11-19 18:45:53 +09002662 String lastInputMethodId = Settings.Secure.getString(
2663 mContext.getContentResolver(), Settings.Secure.DEFAULT_INPUT_METHOD);
satok3ef8b292010-11-23 06:06:29 +09002664 int subtypeId = getSelectedInputMethodSubtypeId(lastInputMethodId);
2665 if (subtypeId == NOT_A_SUBTYPE_ID) {
satok4e4569d2010-11-19 18:45:53 +09002666 InputMethodInfo imi = mMethodMap.get(lastInputMethodId);
2667 if (imi != null) {
2668 // If there are no selected subtypes, the framework will try to find
satokd8713432011-01-18 00:55:13 +09002669 // the most applicable subtype from explicitly or implicitly enabled
2670 // subtypes.
2671 List<InputMethodSubtype> explicitlyOrImplicitlyEnabledSubtypes =
2672 getEnabledInputMethodSubtypeList(imi, true);
2673 // If there is only one explicitly or implicitly enabled subtype,
2674 // just returns it.
2675 if (explicitlyOrImplicitlyEnabledSubtypes.size() == 1) {
2676 mCurrentSubtype = explicitlyOrImplicitlyEnabledSubtypes.get(0);
2677 } else if (explicitlyOrImplicitlyEnabledSubtypes.size() > 1) {
2678 mCurrentSubtype = findLastResortApplicableSubtypeLocked(
2679 mRes, explicitlyOrImplicitlyEnabledSubtypes,
2680 SUBTYPE_MODE_KEYBOARD, null, true);
2681 if (mCurrentSubtype == null) {
2682 mCurrentSubtype = findLastResortApplicableSubtypeLocked(
2683 mRes, explicitlyOrImplicitlyEnabledSubtypes, null, null,
2684 true);
2685 }
2686 }
satok4e4569d2010-11-19 18:45:53 +09002687 }
satokcd7cd292010-11-20 15:46:23 +09002688 } else {
satok3ef8b292010-11-23 06:06:29 +09002689 mCurrentSubtype =
Ken Wakasa586f0512011-01-20 22:31:01 +09002690 getSubtypes(mMethodMap.get(lastInputMethodId)).get(subtypeId);
satok3ef8b292010-11-23 06:06:29 +09002691 }
satok8fbb1e82010-11-02 23:15:58 +09002692 }
satok3ef8b292010-11-23 06:06:29 +09002693 return mCurrentSubtype;
satok8fbb1e82010-11-02 23:15:58 +09002694 }
satokab751aa2010-09-14 19:17:36 +09002695 }
2696
satokf3db1af2010-11-23 13:34:33 +09002697 private void addShortcutInputMethodAndSubtypes(InputMethodInfo imi,
2698 InputMethodSubtype subtype) {
2699 if (mShortcutInputMethodsAndSubtypes.containsKey(imi)) {
2700 mShortcutInputMethodsAndSubtypes.get(imi).add(subtype);
2701 } else {
2702 ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>();
2703 subtypes.add(subtype);
2704 mShortcutInputMethodsAndSubtypes.put(imi, subtypes);
2705 }
2706 }
2707
satok4e4569d2010-11-19 18:45:53 +09002708 // TODO: We should change the return type from List to List<Parcelable>
satokdbf29502011-08-25 15:28:23 +09002709 @SuppressWarnings("rawtypes")
satoke7c6998e2011-06-03 17:57:59 +09002710 @Override
satok4e4569d2010-11-19 18:45:53 +09002711 public List getShortcutInputMethodsAndSubtypes() {
2712 synchronized (mMethodMap) {
satok3da92232011-01-11 22:46:30 +09002713 ArrayList<Object> ret = new ArrayList<Object>();
satokf3db1af2010-11-23 13:34:33 +09002714 if (mShortcutInputMethodsAndSubtypes.size() == 0) {
satok4e4569d2010-11-19 18:45:53 +09002715 // If there are no selected shortcut subtypes, the framework will try to find
2716 // the most applicable subtype from all subtypes whose mode is
2717 // SUBTYPE_MODE_VOICE. This is an exceptional case, so we will hardcode the mode.
satokf3db1af2010-11-23 13:34:33 +09002718 Pair<InputMethodInfo, InputMethodSubtype> info =
2719 findLastResortApplicableShortcutInputMethodAndSubtypeLocked(
2720 SUBTYPE_MODE_VOICE);
satok7599a7f2010-12-22 13:45:23 +09002721 if (info != null) {
satok3da92232011-01-11 22:46:30 +09002722 ret.add(info.first);
2723 ret.add(info.second);
satok7599a7f2010-12-22 13:45:23 +09002724 }
satok3da92232011-01-11 22:46:30 +09002725 return ret;
satokf3db1af2010-11-23 13:34:33 +09002726 }
satokf3db1af2010-11-23 13:34:33 +09002727 for (InputMethodInfo imi: mShortcutInputMethodsAndSubtypes.keySet()) {
2728 ret.add(imi);
2729 for (InputMethodSubtype subtype: mShortcutInputMethodsAndSubtypes.get(imi)) {
2730 ret.add(subtype);
satok4e4569d2010-11-19 18:45:53 +09002731 }
2732 }
satokf3db1af2010-11-23 13:34:33 +09002733 return ret;
satok4e4569d2010-11-19 18:45:53 +09002734 }
2735 }
2736
satok42c5a162011-05-26 16:46:14 +09002737 @Override
satokb66d2872010-11-10 01:04:04 +09002738 public boolean setCurrentInputMethodSubtype(InputMethodSubtype subtype) {
2739 synchronized (mMethodMap) {
2740 if (subtype != null && mCurMethodId != null) {
2741 InputMethodInfo imi = mMethodMap.get(mCurMethodId);
2742 int subtypeId = getSubtypeIdFromHashCode(imi, subtype.hashCode());
2743 if (subtypeId != NOT_A_SUBTYPE_ID) {
2744 setInputMethodLocked(mCurMethodId, subtypeId);
2745 return true;
2746 }
2747 }
2748 return false;
2749 }
2750 }
2751
satok688bd472012-02-09 20:09:17 +09002752 private static class InputMethodAndSubtypeListManager {
2753 private final Context mContext;
2754 private final PackageManager mPm;
2755 private final InputMethodManagerService mImms;
2756 public InputMethodAndSubtypeListManager(Context context, InputMethodManagerService imms) {
2757 mContext = context;
2758 mPm = context.getPackageManager();
2759 mImms = imms;
2760 }
2761
2762 private final TreeMap<InputMethodInfo, List<InputMethodSubtype>> mSortedImmis =
2763 new TreeMap<InputMethodInfo, List<InputMethodSubtype>>(
2764 new Comparator<InputMethodInfo>() {
2765 @Override
2766 public int compare(InputMethodInfo imi1, InputMethodInfo imi2) {
2767 if (imi2 == null) return 0;
2768 if (imi1 == null) return 1;
2769 if (mPm == null) {
2770 return imi1.getId().compareTo(imi2.getId());
2771 }
2772 CharSequence imiId1 = imi1.loadLabel(mPm) + "/" + imi1.getId();
2773 CharSequence imiId2 = imi2.loadLabel(mPm) + "/" + imi2.getId();
2774 return imiId1.toString().compareTo(imiId2.toString());
2775 }
2776 });
2777
2778 public ImeSubtypeListItem getNextInputMethod(
2779 boolean onlyCurrentIme, InputMethodInfo imi, InputMethodSubtype subtype) {
2780 if (imi == null) {
2781 return null;
2782 }
2783 final List<ImeSubtypeListItem> imList = getSortedInputMethodAndSubtypeList();
2784 if (imList.size() <= 1) {
2785 return null;
2786 }
2787 final int N = imList.size();
2788 final int currentSubtypeId = subtype != null
2789 ? mImms.getSubtypeIdFromHashCode(imi, subtype.hashCode())
2790 : NOT_A_SUBTYPE_ID;
2791 for (int i = 0; i < N; ++i) {
2792 final ImeSubtypeListItem isli = imList.get(i);
2793 if (isli.mImi.equals(imi) && isli.mSubtypeId == currentSubtypeId) {
2794 if (!onlyCurrentIme) {
2795 return imList.get((i + 1) % N);
2796 }
2797 for (int j = 0; j < N - 1; ++j) {
2798 final ImeSubtypeListItem candidate = imList.get((i + j + 1) % N);
2799 if (candidate.mImi.equals(imi)) {
2800 return candidate;
2801 }
2802 }
2803 return null;
2804 }
2805 }
2806 return null;
2807 }
2808
2809 public List<ImeSubtypeListItem> getSortedInputMethodAndSubtypeList() {
2810 return getSortedInputMethodAndSubtypeList(true, false, false);
2811 }
2812
2813 public List<ImeSubtypeListItem> getSortedInputMethodAndSubtypeList(boolean showSubtypes,
2814 boolean inputShown, boolean isScreenLocked) {
2815 final ArrayList<ImeSubtypeListItem> imList = new ArrayList<ImeSubtypeListItem>();
2816 final HashMap<InputMethodInfo, List<InputMethodSubtype>> immis =
2817 mImms.getExplicitlyOrImplicitlyEnabledInputMethodsAndSubtypeListLocked();
2818 if (immis == null || immis.size() == 0) {
2819 return Collections.emptyList();
2820 }
2821 mSortedImmis.clear();
2822 mSortedImmis.putAll(immis);
2823 for (InputMethodInfo imi : mSortedImmis.keySet()) {
2824 if (imi == null) continue;
2825 List<InputMethodSubtype> explicitlyOrImplicitlyEnabledSubtypeList = immis.get(imi);
2826 HashSet<String> enabledSubtypeSet = new HashSet<String>();
2827 for (InputMethodSubtype subtype: explicitlyOrImplicitlyEnabledSubtypeList) {
2828 enabledSubtypeSet.add(String.valueOf(subtype.hashCode()));
2829 }
2830 ArrayList<InputMethodSubtype> subtypes = getSubtypes(imi);
2831 final CharSequence imeLabel = imi.loadLabel(mPm);
2832 if (showSubtypes && enabledSubtypeSet.size() > 0) {
2833 final int subtypeCount = imi.getSubtypeCount();
2834 if (DEBUG) {
2835 Slog.v(TAG, "Add subtypes: " + subtypeCount + ", " + imi.getId());
2836 }
2837 for (int j = 0; j < subtypeCount; ++j) {
2838 final InputMethodSubtype subtype = imi.getSubtypeAt(j);
2839 final String subtypeHashCode = String.valueOf(subtype.hashCode());
2840 // We show all enabled IMEs and subtypes when an IME is shown.
2841 if (enabledSubtypeSet.contains(subtypeHashCode)
2842 && ((inputShown && !isScreenLocked) || !subtype.isAuxiliary())) {
2843 final CharSequence subtypeLabel =
2844 subtype.overridesImplicitlyEnabledSubtype() ? null
2845 : subtype.getDisplayName(mContext, imi.getPackageName(),
2846 imi.getServiceInfo().applicationInfo);
2847 imList.add(new ImeSubtypeListItem(imeLabel, subtypeLabel, imi, j));
2848
2849 // Removing this subtype from enabledSubtypeSet because we no longer
2850 // need to add an entry of this subtype to imList to avoid duplicated
2851 // entries.
2852 enabledSubtypeSet.remove(subtypeHashCode);
2853 }
2854 }
2855 } else {
2856 imList.add(new ImeSubtypeListItem(imeLabel, null, imi, NOT_A_SUBTYPE_ID));
2857 }
2858 }
2859 return imList;
2860 }
2861 }
2862
satokd87c2592010-09-29 11:52:06 +09002863 /**
2864 * Utility class for putting and getting settings for InputMethod
2865 * TODO: Move all putters and getters of settings to this class.
2866 */
2867 private static class InputMethodSettings {
2868 // The string for enabled input method is saved as follows:
2869 // example: ("ime0;subtype0;subtype1;subtype2:ime1:ime2;subtype0")
2870 private static final char INPUT_METHOD_SEPARATER = ':';
2871 private static final char INPUT_METHOD_SUBTYPE_SEPARATER = ';';
satok723a27e2010-11-11 14:58:11 +09002872 private final TextUtils.SimpleStringSplitter mInputMethodSplitter =
satokd87c2592010-09-29 11:52:06 +09002873 new TextUtils.SimpleStringSplitter(INPUT_METHOD_SEPARATER);
2874
satok723a27e2010-11-11 14:58:11 +09002875 private final TextUtils.SimpleStringSplitter mSubtypeSplitter =
satokd87c2592010-09-29 11:52:06 +09002876 new TextUtils.SimpleStringSplitter(INPUT_METHOD_SUBTYPE_SEPARATER);
2877
satokdf31ae62011-01-15 06:19:44 +09002878 private final Resources mRes;
satokd87c2592010-09-29 11:52:06 +09002879 private final ContentResolver mResolver;
2880 private final HashMap<String, InputMethodInfo> mMethodMap;
2881 private final ArrayList<InputMethodInfo> mMethodList;
2882
2883 private String mEnabledInputMethodsStrCache;
2884
2885 private static void buildEnabledInputMethodsSettingString(
2886 StringBuilder builder, Pair<String, ArrayList<String>> pair) {
2887 String id = pair.first;
2888 ArrayList<String> subtypes = pair.second;
2889 builder.append(id);
satok57c767c2010-11-01 22:34:08 +09002890 // Inputmethod and subtypes are saved in the settings as follows:
2891 // ime0;subtype0;subtype1:ime1;subtype0:ime2:ime3;subtype0;subtype1
2892 for (String subtypeId: subtypes) {
2893 builder.append(INPUT_METHOD_SUBTYPE_SEPARATER).append(subtypeId);
satokd87c2592010-09-29 11:52:06 +09002894 }
2895 }
2896
2897 public InputMethodSettings(
satokdf31ae62011-01-15 06:19:44 +09002898 Resources res, ContentResolver resolver,
2899 HashMap<String, InputMethodInfo> methodMap, ArrayList<InputMethodInfo> methodList) {
2900 mRes = res;
satokd87c2592010-09-29 11:52:06 +09002901 mResolver = resolver;
2902 mMethodMap = methodMap;
2903 mMethodList = methodList;
2904 }
2905
2906 public List<InputMethodInfo> getEnabledInputMethodListLocked() {
2907 return createEnabledInputMethodListLocked(
2908 getEnabledInputMethodsAndSubtypeListLocked());
2909 }
2910
satok7f35c8c2010-10-07 21:13:11 +09002911 public List<Pair<InputMethodInfo, ArrayList<String>>>
satok67ddf9c2010-11-17 09:45:54 +09002912 getEnabledInputMethodAndSubtypeHashCodeListLocked() {
2913 return createEnabledInputMethodAndSubtypeHashCodeListLocked(
satok7f35c8c2010-10-07 21:13:11 +09002914 getEnabledInputMethodsAndSubtypeListLocked());
2915 }
2916
satok67ddf9c2010-11-17 09:45:54 +09002917 public List<InputMethodSubtype> getEnabledInputMethodSubtypeListLocked(
2918 InputMethodInfo imi) {
2919 List<Pair<String, ArrayList<String>>> imsList =
2920 getEnabledInputMethodsAndSubtypeListLocked();
2921 ArrayList<InputMethodSubtype> enabledSubtypes =
2922 new ArrayList<InputMethodSubtype>();
satok884ef9a2010-11-18 10:39:46 +09002923 if (imi != null) {
2924 for (Pair<String, ArrayList<String>> imsPair : imsList) {
2925 InputMethodInfo info = mMethodMap.get(imsPair.first);
2926 if (info != null && info.getId().equals(imi.getId())) {
Ken Wakasa586f0512011-01-20 22:31:01 +09002927 final int subtypeCount = info.getSubtypeCount();
2928 for (int i = 0; i < subtypeCount; ++i) {
2929 InputMethodSubtype ims = info.getSubtypeAt(i);
satok884ef9a2010-11-18 10:39:46 +09002930 for (String s: imsPair.second) {
2931 if (String.valueOf(ims.hashCode()).equals(s)) {
2932 enabledSubtypes.add(ims);
2933 }
satok67ddf9c2010-11-17 09:45:54 +09002934 }
2935 }
satok884ef9a2010-11-18 10:39:46 +09002936 break;
satok67ddf9c2010-11-17 09:45:54 +09002937 }
satok67ddf9c2010-11-17 09:45:54 +09002938 }
2939 }
2940 return enabledSubtypes;
2941 }
2942
satokd87c2592010-09-29 11:52:06 +09002943 // At the initial boot, the settings for input methods are not set,
2944 // so we need to enable IME in that case.
2945 public void enableAllIMEsIfThereIsNoEnabledIME() {
2946 if (TextUtils.isEmpty(getEnabledInputMethodsStr())) {
2947 StringBuilder sb = new StringBuilder();
2948 final int N = mMethodList.size();
2949 for (int i = 0; i < N; i++) {
2950 InputMethodInfo imi = mMethodList.get(i);
2951 Slog.i(TAG, "Adding: " + imi.getId());
2952 if (i > 0) sb.append(':');
2953 sb.append(imi.getId());
2954 }
2955 putEnabledInputMethodsStr(sb.toString());
2956 }
2957 }
2958
satokbb4aa062011-01-19 21:40:27 +09002959 private List<Pair<String, ArrayList<String>>> getEnabledInputMethodsAndSubtypeListLocked() {
satokd87c2592010-09-29 11:52:06 +09002960 ArrayList<Pair<String, ArrayList<String>>> imsList
2961 = new ArrayList<Pair<String, ArrayList<String>>>();
2962 final String enabledInputMethodsStr = getEnabledInputMethodsStr();
2963 if (TextUtils.isEmpty(enabledInputMethodsStr)) {
2964 return imsList;
2965 }
satok723a27e2010-11-11 14:58:11 +09002966 mInputMethodSplitter.setString(enabledInputMethodsStr);
2967 while (mInputMethodSplitter.hasNext()) {
2968 String nextImsStr = mInputMethodSplitter.next();
2969 mSubtypeSplitter.setString(nextImsStr);
2970 if (mSubtypeSplitter.hasNext()) {
satokd87c2592010-09-29 11:52:06 +09002971 ArrayList<String> subtypeHashes = new ArrayList<String>();
2972 // The first element is ime id.
satok723a27e2010-11-11 14:58:11 +09002973 String imeId = mSubtypeSplitter.next();
2974 while (mSubtypeSplitter.hasNext()) {
2975 subtypeHashes.add(mSubtypeSplitter.next());
satokd87c2592010-09-29 11:52:06 +09002976 }
2977 imsList.add(new Pair<String, ArrayList<String>>(imeId, subtypeHashes));
2978 }
2979 }
2980 return imsList;
2981 }
2982
2983 public void appendAndPutEnabledInputMethodLocked(String id, boolean reloadInputMethodStr) {
2984 if (reloadInputMethodStr) {
2985 getEnabledInputMethodsStr();
2986 }
2987 if (TextUtils.isEmpty(mEnabledInputMethodsStrCache)) {
2988 // Add in the newly enabled input method.
2989 putEnabledInputMethodsStr(id);
2990 } else {
2991 putEnabledInputMethodsStr(
2992 mEnabledInputMethodsStrCache + INPUT_METHOD_SEPARATER + id);
2993 }
2994 }
2995
2996 /**
2997 * Build and put a string of EnabledInputMethods with removing specified Id.
2998 * @return the specified id was removed or not.
2999 */
3000 public boolean buildAndPutEnabledInputMethodsStrRemovingIdLocked(
3001 StringBuilder builder, List<Pair<String, ArrayList<String>>> imsList, String id) {
3002 boolean isRemoved = false;
3003 boolean needsAppendSeparator = false;
3004 for (Pair<String, ArrayList<String>> ims: imsList) {
3005 String curId = ims.first;
3006 if (curId.equals(id)) {
3007 // We are disabling this input method, and it is
3008 // currently enabled. Skip it to remove from the
3009 // new list.
3010 isRemoved = true;
3011 } else {
3012 if (needsAppendSeparator) {
3013 builder.append(INPUT_METHOD_SEPARATER);
3014 } else {
3015 needsAppendSeparator = true;
3016 }
3017 buildEnabledInputMethodsSettingString(builder, ims);
3018 }
3019 }
3020 if (isRemoved) {
3021 // Update the setting with the new list of input methods.
3022 putEnabledInputMethodsStr(builder.toString());
3023 }
3024 return isRemoved;
3025 }
3026
3027 private List<InputMethodInfo> createEnabledInputMethodListLocked(
3028 List<Pair<String, ArrayList<String>>> imsList) {
3029 final ArrayList<InputMethodInfo> res = new ArrayList<InputMethodInfo>();
3030 for (Pair<String, ArrayList<String>> ims: imsList) {
3031 InputMethodInfo info = mMethodMap.get(ims.first);
3032 if (info != null) {
3033 res.add(info);
3034 }
3035 }
3036 return res;
3037 }
3038
satok7f35c8c2010-10-07 21:13:11 +09003039 private List<Pair<InputMethodInfo, ArrayList<String>>>
satok67ddf9c2010-11-17 09:45:54 +09003040 createEnabledInputMethodAndSubtypeHashCodeListLocked(
satok7f35c8c2010-10-07 21:13:11 +09003041 List<Pair<String, ArrayList<String>>> imsList) {
3042 final ArrayList<Pair<InputMethodInfo, ArrayList<String>>> res
3043 = new ArrayList<Pair<InputMethodInfo, ArrayList<String>>>();
3044 for (Pair<String, ArrayList<String>> ims : imsList) {
3045 InputMethodInfo info = mMethodMap.get(ims.first);
3046 if (info != null) {
3047 res.add(new Pair<InputMethodInfo, ArrayList<String>>(info, ims.second));
3048 }
3049 }
3050 return res;
3051 }
3052
satokd87c2592010-09-29 11:52:06 +09003053 private void putEnabledInputMethodsStr(String str) {
3054 Settings.Secure.putString(mResolver, Settings.Secure.ENABLED_INPUT_METHODS, str);
3055 mEnabledInputMethodsStrCache = str;
3056 }
3057
3058 private String getEnabledInputMethodsStr() {
3059 mEnabledInputMethodsStrCache = Settings.Secure.getString(
3060 mResolver, Settings.Secure.ENABLED_INPUT_METHODS);
satok723a27e2010-11-11 14:58:11 +09003061 if (DEBUG) {
3062 Slog.d(TAG, "getEnabledInputMethodsStr: " + mEnabledInputMethodsStrCache);
3063 }
satokd87c2592010-09-29 11:52:06 +09003064 return mEnabledInputMethodsStrCache;
3065 }
satok723a27e2010-11-11 14:58:11 +09003066
3067 private void saveSubtypeHistory(
3068 List<Pair<String, String>> savedImes, String newImeId, String newSubtypeId) {
3069 StringBuilder builder = new StringBuilder();
3070 boolean isImeAdded = false;
3071 if (!TextUtils.isEmpty(newImeId) && !TextUtils.isEmpty(newSubtypeId)) {
3072 builder.append(newImeId).append(INPUT_METHOD_SUBTYPE_SEPARATER).append(
3073 newSubtypeId);
3074 isImeAdded = true;
3075 }
3076 for (Pair<String, String> ime: savedImes) {
3077 String imeId = ime.first;
3078 String subtypeId = ime.second;
3079 if (TextUtils.isEmpty(subtypeId)) {
3080 subtypeId = NOT_A_SUBTYPE_ID_STR;
3081 }
3082 if (isImeAdded) {
3083 builder.append(INPUT_METHOD_SEPARATER);
3084 } else {
3085 isImeAdded = true;
3086 }
3087 builder.append(imeId).append(INPUT_METHOD_SUBTYPE_SEPARATER).append(
3088 subtypeId);
3089 }
3090 // Remove the last INPUT_METHOD_SEPARATER
3091 putSubtypeHistoryStr(builder.toString());
3092 }
3093
3094 public void addSubtypeToHistory(String imeId, String subtypeId) {
3095 List<Pair<String, String>> subtypeHistory = loadInputMethodAndSubtypeHistoryLocked();
3096 for (Pair<String, String> ime: subtypeHistory) {
3097 if (ime.first.equals(imeId)) {
3098 if (DEBUG) {
satokbb4aa062011-01-19 21:40:27 +09003099 Slog.v(TAG, "Subtype found in the history: " + imeId + ", "
satok723a27e2010-11-11 14:58:11 +09003100 + ime.second);
3101 }
3102 // We should break here
3103 subtypeHistory.remove(ime);
3104 break;
3105 }
3106 }
satokbb4aa062011-01-19 21:40:27 +09003107 if (DEBUG) {
3108 Slog.v(TAG, "Add subtype to the history: " + imeId + ", " + subtypeId);
3109 }
satok723a27e2010-11-11 14:58:11 +09003110 saveSubtypeHistory(subtypeHistory, imeId, subtypeId);
3111 }
3112
3113 private void putSubtypeHistoryStr(String str) {
3114 if (DEBUG) {
3115 Slog.d(TAG, "putSubtypeHistoryStr: " + str);
3116 }
3117 Settings.Secure.putString(
3118 mResolver, Settings.Secure.INPUT_METHODS_SUBTYPE_HISTORY, str);
3119 }
3120
3121 public Pair<String, String> getLastInputMethodAndSubtypeLocked() {
3122 // Gets the first one from the history
3123 return getLastSubtypeForInputMethodLockedInternal(null);
3124 }
3125
3126 public String getLastSubtypeForInputMethodLocked(String imeId) {
3127 Pair<String, String> ime = getLastSubtypeForInputMethodLockedInternal(imeId);
3128 if (ime != null) {
3129 return ime.second;
3130 } else {
3131 return null;
3132 }
3133 }
3134
3135 private Pair<String, String> getLastSubtypeForInputMethodLockedInternal(String imeId) {
3136 List<Pair<String, ArrayList<String>>> enabledImes =
3137 getEnabledInputMethodsAndSubtypeListLocked();
3138 List<Pair<String, String>> subtypeHistory = loadInputMethodAndSubtypeHistoryLocked();
satok4fc87d62011-05-20 16:13:43 +09003139 for (Pair<String, String> imeAndSubtype : subtypeHistory) {
satok723a27e2010-11-11 14:58:11 +09003140 final String imeInTheHistory = imeAndSubtype.first;
3141 // If imeId is empty, returns the first IME and subtype in the history
3142 if (TextUtils.isEmpty(imeId) || imeInTheHistory.equals(imeId)) {
3143 final String subtypeInTheHistory = imeAndSubtype.second;
satokdf31ae62011-01-15 06:19:44 +09003144 final String subtypeHashCode =
3145 getEnabledSubtypeHashCodeForInputMethodAndSubtypeLocked(
3146 enabledImes, imeInTheHistory, subtypeInTheHistory);
satok723a27e2010-11-11 14:58:11 +09003147 if (!TextUtils.isEmpty(subtypeHashCode)) {
3148 if (DEBUG) {
satokbb4aa062011-01-19 21:40:27 +09003149 Slog.d(TAG, "Enabled subtype found in the history: " + subtypeHashCode);
satok723a27e2010-11-11 14:58:11 +09003150 }
3151 return new Pair<String, String>(imeInTheHistory, subtypeHashCode);
3152 }
3153 }
3154 }
3155 if (DEBUG) {
3156 Slog.d(TAG, "No enabled IME found in the history");
3157 }
3158 return null;
3159 }
3160
satokdf31ae62011-01-15 06:19:44 +09003161 private String getEnabledSubtypeHashCodeForInputMethodAndSubtypeLocked(List<Pair<String,
satok723a27e2010-11-11 14:58:11 +09003162 ArrayList<String>>> enabledImes, String imeId, String subtypeHashCode) {
3163 for (Pair<String, ArrayList<String>> enabledIme: enabledImes) {
3164 if (enabledIme.first.equals(imeId)) {
satokf6cafb62011-01-17 16:29:02 +09003165 final ArrayList<String> explicitlyEnabledSubtypes = enabledIme.second;
3166 if (explicitlyEnabledSubtypes.size() == 0) {
3167 // If there are no explicitly enabled subtypes, applicable subtypes are
3168 // enabled implicitly.
satoka86f5e42011-09-02 17:12:42 +09003169 InputMethodInfo imi = mMethodMap.get(imeId);
satokdf31ae62011-01-15 06:19:44 +09003170 // If IME is enabled and no subtypes are enabled, applicable subtypes
3171 // are enabled implicitly, so needs to treat them to be enabled.
satoka86f5e42011-09-02 17:12:42 +09003172 if (imi != null && imi.getSubtypeCount() > 0) {
satokdf31ae62011-01-15 06:19:44 +09003173 List<InputMethodSubtype> implicitlySelectedSubtypes =
satoka86f5e42011-09-02 17:12:42 +09003174 getImplicitlyApplicableSubtypesLocked(mRes, imi);
satokdf31ae62011-01-15 06:19:44 +09003175 if (implicitlySelectedSubtypes != null) {
3176 final int N = implicitlySelectedSubtypes.size();
3177 for (int i = 0; i < N; ++i) {
3178 final InputMethodSubtype st = implicitlySelectedSubtypes.get(i);
3179 if (String.valueOf(st.hashCode()).equals(subtypeHashCode)) {
3180 return subtypeHashCode;
3181 }
3182 }
3183 }
3184 }
3185 } else {
satokf6cafb62011-01-17 16:29:02 +09003186 for (String s: explicitlyEnabledSubtypes) {
satokdf31ae62011-01-15 06:19:44 +09003187 if (s.equals(subtypeHashCode)) {
3188 // If both imeId and subtypeId are enabled, return subtypeId.
3189 return s;
3190 }
satok723a27e2010-11-11 14:58:11 +09003191 }
3192 }
3193 // If imeId was enabled but subtypeId was disabled.
3194 return NOT_A_SUBTYPE_ID_STR;
3195 }
3196 }
3197 // If both imeId and subtypeId are disabled, return null
3198 return null;
3199 }
3200
3201 private List<Pair<String, String>> loadInputMethodAndSubtypeHistoryLocked() {
3202 ArrayList<Pair<String, String>> imsList = new ArrayList<Pair<String, String>>();
3203 final String subtypeHistoryStr = getSubtypeHistoryStr();
3204 if (TextUtils.isEmpty(subtypeHistoryStr)) {
3205 return imsList;
3206 }
3207 mInputMethodSplitter.setString(subtypeHistoryStr);
3208 while (mInputMethodSplitter.hasNext()) {
3209 String nextImsStr = mInputMethodSplitter.next();
3210 mSubtypeSplitter.setString(nextImsStr);
3211 if (mSubtypeSplitter.hasNext()) {
3212 String subtypeId = NOT_A_SUBTYPE_ID_STR;
3213 // The first element is ime id.
3214 String imeId = mSubtypeSplitter.next();
3215 while (mSubtypeSplitter.hasNext()) {
3216 subtypeId = mSubtypeSplitter.next();
3217 break;
3218 }
3219 imsList.add(new Pair<String, String>(imeId, subtypeId));
3220 }
3221 }
3222 return imsList;
3223 }
3224
3225 private String getSubtypeHistoryStr() {
3226 if (DEBUG) {
3227 Slog.d(TAG, "getSubtypeHistoryStr: " + Settings.Secure.getString(
3228 mResolver, Settings.Secure.INPUT_METHODS_SUBTYPE_HISTORY));
3229 }
3230 return Settings.Secure.getString(
3231 mResolver, Settings.Secure.INPUT_METHODS_SUBTYPE_HISTORY);
3232 }
3233
3234 public void putSelectedInputMethod(String imeId) {
3235 Settings.Secure.putString(mResolver, Settings.Secure.DEFAULT_INPUT_METHOD, imeId);
3236 }
3237
3238 public void putSelectedSubtype(int subtypeId) {
3239 Settings.Secure.putInt(
3240 mResolver, Settings.Secure.SELECTED_INPUT_METHOD_SUBTYPE, subtypeId);
3241 }
satokd87c2592010-09-29 11:52:06 +09003242 }
3243
satoke7c6998e2011-06-03 17:57:59 +09003244 private static class InputMethodFileManager {
3245 private static final String SYSTEM_PATH = "system";
3246 private static final String INPUT_METHOD_PATH = "inputmethod";
3247 private static final String ADDITIONAL_SUBTYPES_FILE_NAME = "subtypes.xml";
3248 private static final String NODE_SUBTYPES = "subtypes";
3249 private static final String NODE_SUBTYPE = "subtype";
3250 private static final String NODE_IMI = "imi";
3251 private static final String ATTR_ID = "id";
3252 private static final String ATTR_LABEL = "label";
3253 private static final String ATTR_ICON = "icon";
3254 private static final String ATTR_IME_SUBTYPE_LOCALE = "imeSubtypeLocale";
3255 private static final String ATTR_IME_SUBTYPE_MODE = "imeSubtypeMode";
3256 private static final String ATTR_IME_SUBTYPE_EXTRA_VALUE = "imeSubtypeExtraValue";
3257 private static final String ATTR_IS_AUXILIARY = "isAuxiliary";
3258 private final AtomicFile mAdditionalInputMethodSubtypeFile;
3259 private final HashMap<String, InputMethodInfo> mMethodMap;
3260 private final HashMap<String, List<InputMethodSubtype>> mSubtypesMap =
3261 new HashMap<String, List<InputMethodSubtype>>();
3262 public InputMethodFileManager(HashMap<String, InputMethodInfo> methodMap) {
3263 if (methodMap == null) {
3264 throw new NullPointerException("methodMap is null");
3265 }
3266 mMethodMap = methodMap;
3267 final File systemDir = new File(Environment.getDataDirectory(), SYSTEM_PATH);
3268 final File inputMethodDir = new File(systemDir, INPUT_METHOD_PATH);
3269 if (!inputMethodDir.mkdirs()) {
3270 Slog.w(TAG, "Couldn't create dir.: " + inputMethodDir.getAbsolutePath());
3271 }
3272 final File subtypeFile = new File(inputMethodDir, ADDITIONAL_SUBTYPES_FILE_NAME);
3273 mAdditionalInputMethodSubtypeFile = new AtomicFile(subtypeFile);
3274 if (!subtypeFile.exists()) {
3275 // If "subtypes.xml" doesn't exist, create a blank file.
3276 writeAdditionalInputMethodSubtypes(mSubtypesMap, mAdditionalInputMethodSubtypeFile,
3277 methodMap);
3278 } else {
3279 readAdditionalInputMethodSubtypes(mSubtypesMap, mAdditionalInputMethodSubtypeFile);
3280 }
3281 }
3282
3283 private void deleteAllInputMethodSubtypes(String imiId) {
3284 synchronized (mMethodMap) {
3285 mSubtypesMap.remove(imiId);
3286 writeAdditionalInputMethodSubtypes(mSubtypesMap, mAdditionalInputMethodSubtypeFile,
3287 mMethodMap);
3288 }
3289 }
3290
3291 public void addInputMethodSubtypes(
satok4a28bde2011-06-29 21:03:40 +09003292 InputMethodInfo imi, InputMethodSubtype[] additionalSubtypes) {
satoke7c6998e2011-06-03 17:57:59 +09003293 synchronized (mMethodMap) {
3294 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>();
3295 final int N = additionalSubtypes.length;
3296 for (int i = 0; i < N; ++i) {
3297 final InputMethodSubtype subtype = additionalSubtypes[i];
satoked2b24e2011-08-31 18:03:21 +09003298 if (!subtypes.contains(subtype)) {
satoke7c6998e2011-06-03 17:57:59 +09003299 subtypes.add(subtype);
3300 }
3301 }
satok4a28bde2011-06-29 21:03:40 +09003302 mSubtypesMap.put(imi.getId(), subtypes);
satoke7c6998e2011-06-03 17:57:59 +09003303 writeAdditionalInputMethodSubtypes(mSubtypesMap, mAdditionalInputMethodSubtypeFile,
3304 mMethodMap);
3305 }
3306 }
3307
3308 public HashMap<String, List<InputMethodSubtype>> getAllAdditionalInputMethodSubtypes() {
3309 synchronized (mMethodMap) {
3310 return mSubtypesMap;
3311 }
3312 }
3313
3314 private static void writeAdditionalInputMethodSubtypes(
3315 HashMap<String, List<InputMethodSubtype>> allSubtypes, AtomicFile subtypesFile,
3316 HashMap<String, InputMethodInfo> methodMap) {
3317 // Safety net for the case that this function is called before methodMap is set.
3318 final boolean isSetMethodMap = methodMap != null && methodMap.size() > 0;
3319 FileOutputStream fos = null;
3320 try {
3321 fos = subtypesFile.startWrite();
3322 final XmlSerializer out = new FastXmlSerializer();
3323 out.setOutput(fos, "utf-8");
3324 out.startDocument(null, true);
3325 out.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
3326 out.startTag(null, NODE_SUBTYPES);
3327 for (String imiId : allSubtypes.keySet()) {
3328 if (isSetMethodMap && !methodMap.containsKey(imiId)) {
3329 Slog.w(TAG, "IME uninstalled or not valid.: " + imiId);
3330 continue;
3331 }
3332 out.startTag(null, NODE_IMI);
3333 out.attribute(null, ATTR_ID, imiId);
3334 final List<InputMethodSubtype> subtypesList = allSubtypes.get(imiId);
3335 final int N = subtypesList.size();
3336 for (int i = 0; i < N; ++i) {
3337 final InputMethodSubtype subtype = subtypesList.get(i);
3338 out.startTag(null, NODE_SUBTYPE);
3339 out.attribute(null, ATTR_ICON, String.valueOf(subtype.getIconResId()));
3340 out.attribute(null, ATTR_LABEL, String.valueOf(subtype.getNameResId()));
3341 out.attribute(null, ATTR_IME_SUBTYPE_LOCALE, subtype.getLocale());
3342 out.attribute(null, ATTR_IME_SUBTYPE_MODE, subtype.getMode());
3343 out.attribute(null, ATTR_IME_SUBTYPE_EXTRA_VALUE, subtype.getExtraValue());
3344 out.attribute(null, ATTR_IS_AUXILIARY,
3345 String.valueOf(subtype.isAuxiliary() ? 1 : 0));
3346 out.endTag(null, NODE_SUBTYPE);
3347 }
3348 out.endTag(null, NODE_IMI);
3349 }
3350 out.endTag(null, NODE_SUBTYPES);
3351 out.endDocument();
3352 subtypesFile.finishWrite(fos);
3353 } catch (java.io.IOException e) {
3354 Slog.w(TAG, "Error writing subtypes", e);
3355 if (fos != null) {
3356 subtypesFile.failWrite(fos);
3357 }
3358 }
3359 }
3360
3361 private static void readAdditionalInputMethodSubtypes(
3362 HashMap<String, List<InputMethodSubtype>> allSubtypes, AtomicFile subtypesFile) {
3363 if (allSubtypes == null || subtypesFile == null) return;
3364 allSubtypes.clear();
3365 FileInputStream fis = null;
3366 try {
3367 fis = subtypesFile.openRead();
3368 final XmlPullParser parser = Xml.newPullParser();
3369 parser.setInput(fis, null);
3370 int type = parser.getEventType();
3371 // Skip parsing until START_TAG
3372 while ((type = parser.next()) != XmlPullParser.START_TAG
3373 && type != XmlPullParser.END_DOCUMENT) {}
3374 String firstNodeName = parser.getName();
3375 if (!NODE_SUBTYPES.equals(firstNodeName)) {
3376 throw new XmlPullParserException("Xml doesn't start with subtypes");
3377 }
3378 final int depth =parser.getDepth();
3379 String currentImiId = null;
3380 ArrayList<InputMethodSubtype> tempSubtypesArray = null;
3381 while (((type = parser.next()) != XmlPullParser.END_TAG
3382 || parser.getDepth() > depth) && type != XmlPullParser.END_DOCUMENT) {
3383 if (type != XmlPullParser.START_TAG)
3384 continue;
3385 final String nodeName = parser.getName();
3386 if (NODE_IMI.equals(nodeName)) {
3387 currentImiId = parser.getAttributeValue(null, ATTR_ID);
3388 if (TextUtils.isEmpty(currentImiId)) {
3389 Slog.w(TAG, "Invalid imi id found in subtypes.xml");
3390 continue;
3391 }
3392 tempSubtypesArray = new ArrayList<InputMethodSubtype>();
3393 allSubtypes.put(currentImiId, tempSubtypesArray);
3394 } else if (NODE_SUBTYPE.equals(nodeName)) {
3395 if (TextUtils.isEmpty(currentImiId) || tempSubtypesArray == null) {
3396 Slog.w(TAG, "IME uninstalled or not valid.: " + currentImiId);
3397 continue;
3398 }
3399 final int icon = Integer.valueOf(
3400 parser.getAttributeValue(null, ATTR_ICON));
3401 final int label = Integer.valueOf(
3402 parser.getAttributeValue(null, ATTR_LABEL));
3403 final String imeSubtypeLocale =
3404 parser.getAttributeValue(null, ATTR_IME_SUBTYPE_LOCALE);
3405 final String imeSubtypeMode =
3406 parser.getAttributeValue(null, ATTR_IME_SUBTYPE_MODE);
3407 final String imeSubtypeExtraValue =
3408 parser.getAttributeValue(null, ATTR_IME_SUBTYPE_EXTRA_VALUE);
satok4a28bde2011-06-29 21:03:40 +09003409 final boolean isAuxiliary = "1".equals(String.valueOf(
3410 parser.getAttributeValue(null, ATTR_IS_AUXILIARY)));
satoke7c6998e2011-06-03 17:57:59 +09003411 final InputMethodSubtype subtype =
3412 new InputMethodSubtype(label, icon, imeSubtypeLocale,
3413 imeSubtypeMode, imeSubtypeExtraValue, isAuxiliary);
3414 tempSubtypesArray.add(subtype);
3415 }
3416 }
3417 } catch (XmlPullParserException e) {
3418 Slog.w(TAG, "Error reading subtypes: " + e);
3419 return;
3420 } catch (java.io.IOException e) {
3421 Slog.w(TAG, "Error reading subtypes: " + e);
3422 return;
3423 } catch (NumberFormatException e) {
3424 Slog.w(TAG, "Error reading subtypes: " + e);
3425 return;
3426 } finally {
3427 if (fis != null) {
3428 try {
3429 fis.close();
3430 } catch (java.io.IOException e1) {
3431 Slog.w(TAG, "Failed to close.");
3432 }
3433 }
3434 }
3435 }
3436 }
3437
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003438 // ----------------------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003439
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003440 @Override
3441 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
3442 if (mContext.checkCallingOrSelfPermission(android.Manifest.permission.DUMP)
3443 != PackageManager.PERMISSION_GRANTED) {
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003444
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003445 pw.println("Permission Denial: can't dump InputMethodManager from from pid="
3446 + Binder.getCallingPid()
3447 + ", uid=" + Binder.getCallingUid());
3448 return;
3449 }
3450
3451 IInputMethod method;
3452 ClientState client;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003453
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003454 final Printer p = new PrintWriterPrinter(pw);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003455
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003456 synchronized (mMethodMap) {
3457 p.println("Current Input Method Manager state:");
3458 int N = mMethodList.size();
3459 p.println(" Input Methods:");
3460 for (int i=0; i<N; i++) {
3461 InputMethodInfo info = mMethodList.get(i);
3462 p.println(" InputMethod #" + i + ":");
3463 info.dump(p, " ");
3464 }
3465 p.println(" Clients:");
3466 for (ClientState ci : mClients.values()) {
3467 p.println(" Client " + ci + ":");
3468 p.println(" client=" + ci.client);
3469 p.println(" inputContext=" + ci.inputContext);
3470 p.println(" sessionRequested=" + ci.sessionRequested);
3471 p.println(" curSession=" + ci.curSession);
3472 }
The Android Open Source Project10592532009-03-18 17:39:46 -07003473 p.println(" mCurMethodId=" + mCurMethodId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003474 client = mCurClient;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07003475 p.println(" mCurClient=" + client + " mCurSeq=" + mCurSeq);
3476 p.println(" mCurFocusedWindow=" + mCurFocusedWindow);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003477 p.println(" mCurId=" + mCurId + " mHaveConnect=" + mHaveConnection
3478 + " mBoundToMethod=" + mBoundToMethod);
3479 p.println(" mCurToken=" + mCurToken);
3480 p.println(" mCurIntent=" + mCurIntent);
3481 method = mCurMethod;
3482 p.println(" mCurMethod=" + mCurMethod);
3483 p.println(" mEnabledSession=" + mEnabledSession);
3484 p.println(" mShowRequested=" + mShowRequested
3485 + " mShowExplicitlyRequested=" + mShowExplicitlyRequested
3486 + " mShowForced=" + mShowForced
3487 + " mInputShown=" + mInputShown);
Dianne Hackborncc278702009-09-02 23:07:23 -07003488 p.println(" mSystemReady=" + mSystemReady + " mScreenOn=" + mScreenOn);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003489 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003490
Jeff Brownb88102f2010-09-08 11:49:43 -07003491 p.println(" ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003492 if (client != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003493 pw.flush();
3494 try {
3495 client.client.asBinder().dump(fd, args);
3496 } catch (RemoteException e) {
3497 p.println("Input method client dead: " + e);
3498 }
Jeff Brownb88102f2010-09-08 11:49:43 -07003499 } else {
3500 p.println("No input method client.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003501 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003502
Jeff Brownb88102f2010-09-08 11:49:43 -07003503 p.println(" ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003504 if (method != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003505 pw.flush();
3506 try {
3507 method.asBinder().dump(fd, args);
3508 } catch (RemoteException e) {
3509 p.println("Input method service dead: " + e);
3510 }
Jeff Brownb88102f2010-09-08 11:49:43 -07003511 } else {
3512 p.println("No input method service.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003513 }
3514 }
3515}