blob: 6b64dd0fc0ee58da05740b073e3c1ddb49989f0c [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;
83import android.view.WindowManager;
satokab751aa2010-09-14 19:17:36 +090084import android.view.inputmethod.EditorInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080085import android.view.inputmethod.InputBinding;
86import android.view.inputmethod.InputMethod;
87import android.view.inputmethod.InputMethodInfo;
88import android.view.inputmethod.InputMethodManager;
satokab751aa2010-09-14 19:17:36 +090089import android.view.inputmethod.InputMethodSubtype;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080090
satoke7c6998e2011-06-03 17:57:59 +090091import java.io.File;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080092import java.io.FileDescriptor;
satoke7c6998e2011-06-03 17:57:59 +090093import java.io.FileInputStream;
94import java.io.FileOutputStream;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080095import java.io.IOException;
96import java.io.PrintWriter;
97import java.util.ArrayList;
Ken Wakasa761eb372011-03-04 19:06:18 +090098import java.util.Comparator;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080099import java.util.HashMap;
satok7f35c8c2010-10-07 21:13:11 +0900100import java.util.HashSet;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800101import java.util.List;
satok913a8922010-08-26 21:53:41 +0900102import java.util.TreeMap;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800103
104/**
105 * This class provides a system service that manages input methods.
106 */
107public class InputMethodManagerService extends IInputMethodManager.Stub
108 implements ServiceConnection, Handler.Callback {
109 static final boolean DEBUG = false;
110 static final String TAG = "InputManagerService";
111
112 static final int MSG_SHOW_IM_PICKER = 1;
satokab751aa2010-09-14 19:17:36 +0900113 static final int MSG_SHOW_IM_SUBTYPE_PICKER = 2;
satok47a44912010-10-06 16:03:58 +0900114 static final int MSG_SHOW_IM_SUBTYPE_ENABLER = 3;
satok217f5482010-12-15 05:19:19 +0900115 static final int MSG_SHOW_IM_CONFIG = 4;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800116
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800117 static final int MSG_UNBIND_INPUT = 1000;
118 static final int MSG_BIND_INPUT = 1010;
119 static final int MSG_SHOW_SOFT_INPUT = 1020;
120 static final int MSG_HIDE_SOFT_INPUT = 1030;
121 static final int MSG_ATTACH_TOKEN = 1040;
122 static final int MSG_CREATE_SESSION = 1050;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800123
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800124 static final int MSG_START_INPUT = 2000;
125 static final int MSG_RESTART_INPUT = 2010;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800126
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800127 static final int MSG_UNBIND_METHOD = 3000;
128 static final int MSG_BIND_METHOD = 3010;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800129
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800130 static final long TIME_TO_RECONNECT = 10*1000;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800131
satokf9f01002011-05-19 21:31:50 +0900132 static final int SECURE_SUGGESTION_SPANS_MAX_SIZE = 20;
133
satokab751aa2010-09-14 19:17:36 +0900134 private static final int NOT_A_SUBTYPE_ID = -1;
satok723a27e2010-11-11 14:58:11 +0900135 private static final String NOT_A_SUBTYPE_ID_STR = String.valueOf(NOT_A_SUBTYPE_ID);
satok4e4569d2010-11-19 18:45:53 +0900136 private static final String SUBTYPE_MODE_KEYBOARD = "keyboard";
137 private static final String SUBTYPE_MODE_VOICE = "voice";
satokb6359412011-06-28 17:47:41 +0900138 private static final String TAG_TRY_SUPPRESSING_IME_SWITCHER = "TrySuppressingImeSwitcher";
satok4e4569d2010-11-19 18:45:53 +0900139
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800140 final Context mContext;
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -0800141 final Resources mRes;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800142 final Handler mHandler;
satokd87c2592010-09-29 11:52:06 +0900143 final InputMethodSettings mSettings;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800144 final SettingsObserver mSettingsObserver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800145 final IWindowManager mIWindowManager;
146 final HandlerCaller mCaller;
satoke7c6998e2011-06-03 17:57:59 +0900147 private final InputMethodFileManager mFileManager;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800148
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800149 final InputBindResult mNoBinding = new InputBindResult(null, null, -1);
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800150
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800151 // All known input methods. mMethodMap also serves as the global
152 // lock for this class.
satokd87c2592010-09-29 11:52:06 +0900153 final ArrayList<InputMethodInfo> mMethodList = new ArrayList<InputMethodInfo>();
154 final HashMap<String, InputMethodInfo> mMethodMap = new HashMap<String, InputMethodInfo>();
satokf9f01002011-05-19 21:31:50 +0900155 private final LruCache<SuggestionSpan, InputMethodInfo> mSecureSuggestionSpans =
156 new LruCache<SuggestionSpan, InputMethodInfo>(SECURE_SUGGESTION_SPANS_MAX_SIZE);
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800157
satok7cfc0ed2011-06-20 21:29:36 +0900158 // Ongoing notification
Dianne Hackborn661cd522011-08-22 00:26:20 -0700159 private NotificationManager mNotificationManager;
160 private KeyguardManager mKeyguardManager;
161 private StatusBarManagerService mStatusBar;
162 private Notification mImeSwitcherNotification;
163 private PendingIntent mImeSwitchPendingIntent;
satokb858c732011-07-22 19:54:34 +0900164 private boolean mShowOngoingImeSwitcherForPhones;
satok7cfc0ed2011-06-20 21:29:36 +0900165 private boolean mNotificationShown;
166
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800167 class SessionState {
168 final ClientState client;
169 final IInputMethod method;
170 final IInputMethodSession session;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800171
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800172 @Override
173 public String toString() {
174 return "SessionState{uid " + client.uid + " pid " + client.pid
175 + " method " + Integer.toHexString(
176 System.identityHashCode(method))
177 + " session " + Integer.toHexString(
178 System.identityHashCode(session))
179 + "}";
180 }
181
182 SessionState(ClientState _client, IInputMethod _method,
183 IInputMethodSession _session) {
184 client = _client;
185 method = _method;
186 session = _session;
187 }
188 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800189
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800190 class ClientState {
191 final IInputMethodClient client;
192 final IInputContext inputContext;
193 final int uid;
194 final int pid;
195 final InputBinding binding;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800196
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800197 boolean sessionRequested;
198 SessionState curSession;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800199
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800200 @Override
201 public String toString() {
202 return "ClientState{" + Integer.toHexString(
203 System.identityHashCode(this)) + " uid " + uid
204 + " pid " + pid + "}";
205 }
206
207 ClientState(IInputMethodClient _client, IInputContext _inputContext,
208 int _uid, int _pid) {
209 client = _client;
210 inputContext = _inputContext;
211 uid = _uid;
212 pid = _pid;
213 binding = new InputBinding(null, inputContext.asBinder(), uid, pid);
214 }
215 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800216
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800217 final HashMap<IBinder, ClientState> mClients
218 = new HashMap<IBinder, ClientState>();
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800219
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800220 /**
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700221 * Set once the system is ready to run third party code.
222 */
223 boolean mSystemReady;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800224
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700225 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800226 * Id of the currently selected input method.
227 */
228 String mCurMethodId;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800229
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800230 /**
231 * The current binding sequence number, incremented every time there is
232 * a new bind performed.
233 */
234 int mCurSeq;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800235
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800236 /**
237 * The client that is currently bound to an input method.
238 */
239 ClientState mCurClient;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800240
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800241 /**
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700242 * The last window token that gained focus.
243 */
244 IBinder mCurFocusedWindow;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800245
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700246 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800247 * The input context last provided by the current client.
248 */
249 IInputContext mCurInputContext;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800250
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800251 /**
252 * The attributes last provided by the current client.
253 */
254 EditorInfo mCurAttribute;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800255
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800256 /**
257 * The input method ID of the input method service that we are currently
258 * connected to or in the process of connecting to.
259 */
260 String mCurId;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800261
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800262 /**
satokab751aa2010-09-14 19:17:36 +0900263 * The current subtype of the current input method.
264 */
265 private InputMethodSubtype mCurrentSubtype;
266
satok4e4569d2010-11-19 18:45:53 +0900267 // This list contains the pairs of InputMethodInfo and InputMethodSubtype.
satokf3db1af2010-11-23 13:34:33 +0900268 private final HashMap<InputMethodInfo, ArrayList<InputMethodSubtype>>
269 mShortcutInputMethodsAndSubtypes =
270 new HashMap<InputMethodInfo, ArrayList<InputMethodSubtype>>();
satokab751aa2010-09-14 19:17:36 +0900271
272 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800273 * Set to true if our ServiceConnection is currently actively bound to
274 * a service (whether or not we have gotten its IBinder back yet).
275 */
276 boolean mHaveConnection;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800277
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800278 /**
279 * Set if the client has asked for the input method to be shown.
280 */
281 boolean mShowRequested;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800282
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800283 /**
284 * Set if we were explicitly told to show the input method.
285 */
286 boolean mShowExplicitlyRequested;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800287
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800288 /**
289 * Set if we were forced to be shown.
290 */
291 boolean mShowForced;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800292
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800293 /**
294 * Set if we last told the input method to show itself.
295 */
296 boolean mInputShown;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800297
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800298 /**
299 * The Intent used to connect to the current input method.
300 */
301 Intent mCurIntent;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800302
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800303 /**
304 * The token we have made for the currently active input method, to
305 * identify it in the future.
306 */
307 IBinder mCurToken;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800308
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800309 /**
310 * If non-null, this is the input method service we are currently connected
311 * to.
312 */
313 IInputMethod mCurMethod;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800314
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800315 /**
316 * Time that we last initiated a bind to the input method, to determine
317 * if we should try to disconnect and reconnect to it.
318 */
319 long mLastBindTime;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800320
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800321 /**
322 * Have we called mCurMethod.bindInput()?
323 */
324 boolean mBoundToMethod;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800325
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800326 /**
327 * Currently enabled session. Only touched by service thread, not
328 * protected by a lock.
329 */
330 SessionState mEnabledSession;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800331
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800332 /**
333 * True if the screen is on. The value is true initially.
334 */
335 boolean mScreenOn = true;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800336
Joe Onorato857fd9b2011-01-27 15:08:35 -0800337 int mBackDisposition = InputMethodService.BACK_DISPOSITION_DEFAULT;
338 int mImeWindowVis;
339
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800340 AlertDialog.Builder mDialogBuilder;
341 AlertDialog mSwitchingDialog;
342 InputMethodInfo[] mIms;
343 CharSequence[] mItems;
satokab751aa2010-09-14 19:17:36 +0900344 int[] mSubtypeIds;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800345
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800346 class SettingsObserver extends ContentObserver {
347 SettingsObserver(Handler handler) {
348 super(handler);
349 ContentResolver resolver = mContext.getContentResolver();
350 resolver.registerContentObserver(Settings.Secure.getUriFor(
351 Settings.Secure.DEFAULT_INPUT_METHOD), false, this);
satokab751aa2010-09-14 19:17:36 +0900352 resolver.registerContentObserver(Settings.Secure.getUriFor(
satokb6109bb2011-02-03 22:24:54 +0900353 Settings.Secure.ENABLED_INPUT_METHODS), false, this);
354 resolver.registerContentObserver(Settings.Secure.getUriFor(
satokab751aa2010-09-14 19:17:36 +0900355 Settings.Secure.SELECTED_INPUT_METHOD_SUBTYPE), false, this);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800356 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800357
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800358 @Override public void onChange(boolean selfChange) {
359 synchronized (mMethodMap) {
360 updateFromSettingsLocked();
361 }
362 }
363 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800364
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800365 class ScreenOnOffReceiver extends android.content.BroadcastReceiver {
366 @Override
367 public void onReceive(Context context, Intent intent) {
368 if (intent.getAction().equals(Intent.ACTION_SCREEN_ON)) {
369 mScreenOn = true;
370 } else if (intent.getAction().equals(Intent.ACTION_SCREEN_OFF)) {
371 mScreenOn = false;
The Android Open Source Project10592532009-03-18 17:39:46 -0700372 } else if (intent.getAction().equals(Intent.ACTION_CLOSE_SYSTEM_DIALOGS)) {
373 hideInputMethodMenu();
374 return;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800375 } else {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800376 Slog.w(TAG, "Unexpected intent " + intent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800377 }
378
379 // Inform the current client of the change in active status
380 try {
381 if (mCurClient != null && mCurClient.client != null) {
382 mCurClient.client.setActive(mScreenOn);
383 }
384 } catch (RemoteException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800385 Slog.w(TAG, "Got RemoteException sending 'screen on/off' notification to pid "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800386 + mCurClient.pid + " uid " + mCurClient.uid);
387 }
388 }
389 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800390
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800391 class MyPackageMonitor extends PackageMonitor {
392
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800393 @Override
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800394 public boolean onHandleForceStop(Intent intent, String[] packages, int uid, boolean doit) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800395 synchronized (mMethodMap) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800396 String curInputMethodId = Settings.Secure.getString(mContext
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800397 .getContentResolver(), Settings.Secure.DEFAULT_INPUT_METHOD);
398 final int N = mMethodList.size();
399 if (curInputMethodId != null) {
400 for (int i=0; i<N; i++) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800401 InputMethodInfo imi = mMethodList.get(i);
402 if (imi.getId().equals(curInputMethodId)) {
403 for (String pkg : packages) {
404 if (imi.getPackageName().equals(pkg)) {
405 if (!doit) {
406 return true;
407 }
satok723a27e2010-11-11 14:58:11 +0900408 resetSelectedInputMethodAndSubtypeLocked("");
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800409 chooseNewDefaultIMELocked();
410 return true;
411 }
412 }
413 }
414 }
415 }
416 }
417 return false;
418 }
419
420 @Override
421 public void onSomePackagesChanged() {
422 synchronized (mMethodMap) {
423 InputMethodInfo curIm = null;
424 String curInputMethodId = Settings.Secure.getString(mContext
425 .getContentResolver(), Settings.Secure.DEFAULT_INPUT_METHOD);
426 final int N = mMethodList.size();
427 if (curInputMethodId != null) {
428 for (int i=0; i<N; i++) {
429 InputMethodInfo imi = mMethodList.get(i);
satoke7c6998e2011-06-03 17:57:59 +0900430 final String imiId = imi.getId();
431 if (imiId.equals(curInputMethodId)) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800432 curIm = imi;
433 }
satoke7c6998e2011-06-03 17:57:59 +0900434
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800435 int change = isPackageDisappearing(imi.getPackageName());
satoke7c6998e2011-06-03 17:57:59 +0900436 if (isPackageModified(imi.getPackageName())) {
437 mFileManager.deleteAllInputMethodSubtypes(imiId);
438 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800439 if (change == PACKAGE_TEMPORARY_CHANGE
440 || change == PACKAGE_PERMANENT_CHANGE) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800441 Slog.i(TAG, "Input method uninstalled, disabling: "
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800442 + imi.getComponent());
443 setInputMethodEnabledLocked(imi.getId(), false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800444 }
445 }
446 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800447
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800448 buildInputMethodListLocked(mMethodList, mMethodMap);
449
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800450 boolean changed = false;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800451
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800452 if (curIm != null) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800453 int change = isPackageDisappearing(curIm.getPackageName());
454 if (change == PACKAGE_TEMPORARY_CHANGE
455 || change == PACKAGE_PERMANENT_CHANGE) {
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800456 ServiceInfo si = null;
457 try {
458 si = mContext.getPackageManager().getServiceInfo(
459 curIm.getComponent(), 0);
460 } catch (PackageManager.NameNotFoundException ex) {
461 }
462 if (si == null) {
463 // Uh oh, current input method is no longer around!
464 // Pick another one...
Joe Onorato8a9b2202010-02-26 18:56:32 -0800465 Slog.i(TAG, "Current input method removed: " + curInputMethodId);
Joe Onorato857fd9b2011-01-27 15:08:35 -0800466 mImeWindowVis = 0;
Dianne Hackborn661cd522011-08-22 00:26:20 -0700467 updateImeWindowStatusLocked();
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800468 if (!chooseNewDefaultIMELocked()) {
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800469 changed = true;
470 curIm = null;
Joe Onorato8a9b2202010-02-26 18:56:32 -0800471 Slog.i(TAG, "Unsetting current input method");
satok723a27e2010-11-11 14:58:11 +0900472 resetSelectedInputMethodAndSubtypeLocked("");
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800473 }
474 }
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800475 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800476 }
satokab751aa2010-09-14 19:17:36 +0900477
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800478 if (curIm == null) {
479 // We currently don't have a default input method... is
480 // one now available?
481 changed = chooseNewDefaultIMELocked();
482 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800483
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800484 if (changed) {
485 updateFromSettingsLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800486 }
487 }
488 }
489 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800490
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800491 class MethodCallback extends IInputMethodCallback.Stub {
492 final IInputMethod mMethod;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800493
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800494 MethodCallback(IInputMethod method) {
495 mMethod = method;
496 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800497
satoke7c6998e2011-06-03 17:57:59 +0900498 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800499 public void finishedEvent(int seq, boolean handled) throws RemoteException {
500 }
501
satoke7c6998e2011-06-03 17:57:59 +0900502 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800503 public void sessionCreated(IInputMethodSession session) throws RemoteException {
504 onSessionCreated(mMethod, session);
505 }
506 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800507
Dianne Hackborn661cd522011-08-22 00:26:20 -0700508 public InputMethodManagerService(Context context) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800509 mContext = context;
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -0800510 mRes = context.getResources();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800511 mHandler = new Handler(this);
512 mIWindowManager = IWindowManager.Stub.asInterface(
513 ServiceManager.getService(Context.WINDOW_SERVICE));
514 mCaller = new HandlerCaller(context, new HandlerCaller.Callback() {
satoke7c6998e2011-06-03 17:57:59 +0900515 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800516 public void executeMessage(Message msg) {
517 handleMessage(msg);
518 }
519 });
satok7cfc0ed2011-06-20 21:29:36 +0900520
satok7cfc0ed2011-06-20 21:29:36 +0900521 mImeSwitcherNotification = new Notification();
522 mImeSwitcherNotification.icon = com.android.internal.R.drawable.ic_notification_ime_default;
523 mImeSwitcherNotification.when = 0;
524 mImeSwitcherNotification.flags = Notification.FLAG_ONGOING_EVENT;
525 mImeSwitcherNotification.tickerText = null;
526 mImeSwitcherNotification.defaults = 0; // please be quiet
527 mImeSwitcherNotification.sound = null;
528 mImeSwitcherNotification.vibrate = null;
529 Intent intent = new Intent(Settings.ACTION_SHOW_INPUT_METHOD_PICKER);
satok683e2382011-07-12 08:28:52 +0900530 mImeSwitchPendingIntent = PendingIntent.getBroadcast(mContext, 0, intent, 0);
satokb858c732011-07-22 19:54:34 +0900531
532 mShowOngoingImeSwitcherForPhones = false;
satok7cfc0ed2011-06-20 21:29:36 +0900533
satoke7c6998e2011-06-03 17:57:59 +0900534 synchronized (mMethodMap) {
535 mFileManager = new InputMethodFileManager(mMethodMap);
536 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800537
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800538 (new MyPackageMonitor()).register(mContext, true);
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800539
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800540 IntentFilter screenOnOffFilt = new IntentFilter();
541 screenOnOffFilt.addAction(Intent.ACTION_SCREEN_ON);
542 screenOnOffFilt.addAction(Intent.ACTION_SCREEN_OFF);
The Android Open Source Project10592532009-03-18 17:39:46 -0700543 screenOnOffFilt.addAction(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800544 mContext.registerReceiver(new ScreenOnOffReceiver(), screenOnOffFilt);
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800545
satok7cfc0ed2011-06-20 21:29:36 +0900546 mNotificationShown = false;
satok913a8922010-08-26 21:53:41 +0900547
satokd87c2592010-09-29 11:52:06 +0900548 // mSettings should be created before buildInputMethodListLocked
satokdf31ae62011-01-15 06:19:44 +0900549 mSettings = new InputMethodSettings(
550 mRes, context.getContentResolver(), mMethodMap, mMethodList);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800551 buildInputMethodListLocked(mMethodList, mMethodMap);
satokd87c2592010-09-29 11:52:06 +0900552 mSettings.enableAllIMEsIfThereIsNoEnabledIME();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800553
satokd87c2592010-09-29 11:52:06 +0900554 if (TextUtils.isEmpty(Settings.Secure.getString(
555 mContext.getContentResolver(), Settings.Secure.DEFAULT_INPUT_METHOD))) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800556 InputMethodInfo defIm = null;
satokd87c2592010-09-29 11:52:06 +0900557 for (InputMethodInfo imi: mMethodList) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800558 if (defIm == null && imi.getIsDefaultResourceId() != 0) {
559 try {
satokd87c2592010-09-29 11:52:06 +0900560 Resources res = context.createPackageContext(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800561 imi.getPackageName(), 0).getResources();
562 if (res.getBoolean(imi.getIsDefaultResourceId())) {
563 defIm = imi;
Joe Onorato8a9b2202010-02-26 18:56:32 -0800564 Slog.i(TAG, "Selected default: " + imi.getId());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800565 }
566 } catch (PackageManager.NameNotFoundException ex) {
567 } catch (Resources.NotFoundException ex) {
568 }
569 }
570 }
satokd87c2592010-09-29 11:52:06 +0900571 if (defIm == null && mMethodList.size() > 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800572 defIm = mMethodList.get(0);
Joe Onorato8a9b2202010-02-26 18:56:32 -0800573 Slog.i(TAG, "No default found, using " + defIm.getId());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800574 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800575 if (defIm != null) {
satok723a27e2010-11-11 14:58:11 +0900576 setSelectedInputMethodAndSubtypeLocked(defIm, NOT_A_SUBTYPE_ID, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800577 }
578 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800579
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800580 mSettingsObserver = new SettingsObserver(mHandler);
581 updateFromSettingsLocked();
582 }
583
584 @Override
585 public boolean onTransact(int code, Parcel data, Parcel reply, int flags)
586 throws RemoteException {
587 try {
588 return super.onTransact(code, data, reply, flags);
589 } catch (RuntimeException e) {
590 // The input method manager only throws security exceptions, so let's
591 // log all others.
592 if (!(e instanceof SecurityException)) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800593 Slog.e(TAG, "Input Method Manager Crash", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800594 }
595 throw e;
596 }
597 }
598
Dianne Hackborn661cd522011-08-22 00:26:20 -0700599 public void systemReady(StatusBarManagerService statusBar) {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700600 synchronized (mMethodMap) {
601 if (!mSystemReady) {
602 mSystemReady = true;
Dianne Hackborn661cd522011-08-22 00:26:20 -0700603 mKeyguardManager = (KeyguardManager)
604 mContext.getSystemService(Context.KEYGUARD_SERVICE);
605 mNotificationManager = (NotificationManager)
606 mContext.getSystemService(Context.NOTIFICATION_SERVICE);
607 mStatusBar = statusBar;
608 statusBar.setIconVisibility("ime", false);
609 updateImeWindowStatusLocked();
satokb858c732011-07-22 19:54:34 +0900610 mShowOngoingImeSwitcherForPhones = mRes.getBoolean(
611 com.android.internal.R.bool.show_ongoing_ime_switcher);
Dianne Hackborncc278702009-09-02 23:07:23 -0700612 try {
613 startInputInnerLocked();
614 } catch (RuntimeException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800615 Slog.w(TAG, "Unexpected exception", e);
Dianne Hackborncc278702009-09-02 23:07:23 -0700616 }
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700617 }
618 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800619 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800620
Dianne Hackborn661cd522011-08-22 00:26:20 -0700621 void updateImeWindowStatusLocked() {
622 if (mStatusBar != null) {
623 mStatusBar.setImeWindowStatus(mCurToken, mImeWindowVis,
624 mBackDisposition);
625 }
626 }
627
satoke7c6998e2011-06-03 17:57:59 +0900628 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800629 public List<InputMethodInfo> getInputMethodList() {
630 synchronized (mMethodMap) {
631 return new ArrayList<InputMethodInfo>(mMethodList);
632 }
633 }
634
satoke7c6998e2011-06-03 17:57:59 +0900635 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800636 public List<InputMethodInfo> getEnabledInputMethodList() {
637 synchronized (mMethodMap) {
satokd87c2592010-09-29 11:52:06 +0900638 return mSettings.getEnabledInputMethodListLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800639 }
640 }
641
satokbb4aa062011-01-19 21:40:27 +0900642 private HashMap<InputMethodInfo, List<InputMethodSubtype>>
643 getExplicitlyOrImplicitlyEnabledInputMethodsAndSubtypeListLocked() {
644 HashMap<InputMethodInfo, List<InputMethodSubtype>> enabledInputMethodAndSubtypes =
645 new HashMap<InputMethodInfo, List<InputMethodSubtype>>();
646 for (InputMethodInfo imi: getEnabledInputMethodList()) {
647 enabledInputMethodAndSubtypes.put(
648 imi, getEnabledInputMethodSubtypeListLocked(imi, true));
649 }
650 return enabledInputMethodAndSubtypes;
651 }
652
653 public List<InputMethodSubtype> getEnabledInputMethodSubtypeListLocked(InputMethodInfo imi,
654 boolean allowsImplicitlySelectedSubtypes) {
655 if (imi == null && mCurMethodId != null) {
656 imi = mMethodMap.get(mCurMethodId);
657 }
satok7265d9b2011-02-14 15:47:30 +0900658 List<InputMethodSubtype> enabledSubtypes =
satokbb4aa062011-01-19 21:40:27 +0900659 mSettings.getEnabledInputMethodSubtypeListLocked(imi);
satok7265d9b2011-02-14 15:47:30 +0900660 if (allowsImplicitlySelectedSubtypes && enabledSubtypes.isEmpty()) {
661 enabledSubtypes = getApplicableSubtypesLocked(mRes, getSubtypes(imi));
satokbb4aa062011-01-19 21:40:27 +0900662 }
satok7265d9b2011-02-14 15:47:30 +0900663 return InputMethodSubtype.sort(mContext, 0, imi, enabledSubtypes);
satokbb4aa062011-01-19 21:40:27 +0900664 }
665
satoke7c6998e2011-06-03 17:57:59 +0900666 @Override
satok16331c82010-12-20 23:48:46 +0900667 public List<InputMethodSubtype> getEnabledInputMethodSubtypeList(InputMethodInfo imi,
668 boolean allowsImplicitlySelectedSubtypes) {
satok67ddf9c2010-11-17 09:45:54 +0900669 synchronized (mMethodMap) {
satokbb4aa062011-01-19 21:40:27 +0900670 return getEnabledInputMethodSubtypeListLocked(imi, allowsImplicitlySelectedSubtypes);
satok67ddf9c2010-11-17 09:45:54 +0900671 }
672 }
673
satoke7c6998e2011-06-03 17:57:59 +0900674 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800675 public void addClient(IInputMethodClient client,
676 IInputContext inputContext, int uid, int pid) {
677 synchronized (mMethodMap) {
678 mClients.put(client.asBinder(), new ClientState(client,
679 inputContext, uid, pid));
680 }
681 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800682
satoke7c6998e2011-06-03 17:57:59 +0900683 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800684 public void removeClient(IInputMethodClient client) {
685 synchronized (mMethodMap) {
686 mClients.remove(client.asBinder());
687 }
688 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800689
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800690 void executeOrSendMessage(IInterface target, Message msg) {
691 if (target.asBinder() instanceof Binder) {
692 mCaller.sendMessage(msg);
693 } else {
694 handleMessage(msg);
695 msg.recycle();
696 }
697 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800698
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700699 void unbindCurrentClientLocked() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800700 if (mCurClient != null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800701 if (DEBUG) Slog.v(TAG, "unbindCurrentInputLocked: client = "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800702 + mCurClient.client.asBinder());
703 if (mBoundToMethod) {
704 mBoundToMethod = false;
705 if (mCurMethod != null) {
706 executeOrSendMessage(mCurMethod, mCaller.obtainMessageO(
707 MSG_UNBIND_INPUT, mCurMethod));
708 }
709 }
710 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
711 MSG_UNBIND_METHOD, mCurSeq, mCurClient.client));
712 mCurClient.sessionRequested = false;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800713
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800714 // Call setActive(false) on the old client
715 try {
716 mCurClient.client.setActive(false);
717 } catch (RemoteException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800718 Slog.w(TAG, "Got RemoteException sending setActive(false) notification to pid "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800719 + mCurClient.pid + " uid " + mCurClient.uid);
720 }
721 mCurClient = null;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800722
The Android Open Source Project10592532009-03-18 17:39:46 -0700723 hideInputMethodMenuLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800724 }
725 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800726
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800727 private int getImeShowFlags() {
728 int flags = 0;
729 if (mShowForced) {
730 flags |= InputMethod.SHOW_FORCED
731 | InputMethod.SHOW_EXPLICIT;
732 } else if (mShowExplicitlyRequested) {
733 flags |= InputMethod.SHOW_EXPLICIT;
734 }
735 return flags;
736 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800737
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800738 private int getAppShowFlags() {
739 int flags = 0;
740 if (mShowForced) {
741 flags |= InputMethodManager.SHOW_FORCED;
742 } else if (!mShowExplicitlyRequested) {
743 flags |= InputMethodManager.SHOW_IMPLICIT;
744 }
745 return flags;
746 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800747
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800748 InputBindResult attachNewInputLocked(boolean initial, boolean needResult) {
749 if (!mBoundToMethod) {
750 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
751 MSG_BIND_INPUT, mCurMethod, mCurClient.binding));
752 mBoundToMethod = true;
753 }
754 final SessionState session = mCurClient.curSession;
755 if (initial) {
756 executeOrSendMessage(session.method, mCaller.obtainMessageOOO(
757 MSG_START_INPUT, session, mCurInputContext, mCurAttribute));
758 } else {
759 executeOrSendMessage(session.method, mCaller.obtainMessageOOO(
760 MSG_RESTART_INPUT, session, mCurInputContext, mCurAttribute));
761 }
762 if (mShowRequested) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800763 if (DEBUG) Slog.v(TAG, "Attach new input asks to show input");
The Android Open Source Project4df24232009-03-05 14:34:35 -0800764 showCurrentInputLocked(getAppShowFlags(), null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800765 }
766 return needResult
767 ? new InputBindResult(session.session, mCurId, mCurSeq)
768 : null;
769 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800770
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800771 InputBindResult startInputLocked(IInputMethodClient client,
772 IInputContext inputContext, EditorInfo attribute,
773 boolean initial, boolean needResult) {
774 // If no method is currently selected, do nothing.
775 if (mCurMethodId == null) {
776 return mNoBinding;
777 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800778
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800779 ClientState cs = mClients.get(client.asBinder());
780 if (cs == null) {
781 throw new IllegalArgumentException("unknown client "
782 + client.asBinder());
783 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800784
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800785 try {
786 if (!mIWindowManager.inputMethodClientHasFocus(cs.client)) {
787 // Check with the window manager to make sure this client actually
788 // has a window with focus. If not, reject. This is thread safe
789 // because if the focus changes some time before or after, the
790 // next client receiving focus that has any interest in input will
791 // be calling through here after that change happens.
Joe Onorato8a9b2202010-02-26 18:56:32 -0800792 Slog.w(TAG, "Starting input on non-focused client " + cs.client
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800793 + " (uid=" + cs.uid + " pid=" + cs.pid + ")");
794 return null;
795 }
796 } catch (RemoteException e) {
797 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800798
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800799 if (mCurClient != cs) {
800 // If the client is changing, we need to switch over to the new
801 // one.
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700802 unbindCurrentClientLocked();
Joe Onorato8a9b2202010-02-26 18:56:32 -0800803 if (DEBUG) Slog.v(TAG, "switching to client: client = "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800804 + cs.client.asBinder());
805
806 // If the screen is on, inform the new client it is active
807 if (mScreenOn) {
808 try {
809 cs.client.setActive(mScreenOn);
810 } catch (RemoteException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800811 Slog.w(TAG, "Got RemoteException sending setActive notification to pid "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800812 + cs.pid + " uid " + cs.uid);
813 }
814 }
815 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800816
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800817 // Bump up the sequence for this client and attach it.
818 mCurSeq++;
819 if (mCurSeq <= 0) mCurSeq = 1;
820 mCurClient = cs;
821 mCurInputContext = inputContext;
822 mCurAttribute = attribute;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800823
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800824 // Check if the input method is changing.
825 if (mCurId != null && mCurId.equals(mCurMethodId)) {
826 if (cs.curSession != null) {
827 // Fast case: if we are already connected to the input method,
828 // then just return it.
829 return attachNewInputLocked(initial, needResult);
830 }
831 if (mHaveConnection) {
832 if (mCurMethod != null) {
833 if (!cs.sessionRequested) {
834 cs.sessionRequested = true;
Joe Onorato8a9b2202010-02-26 18:56:32 -0800835 if (DEBUG) Slog.v(TAG, "Creating new session for client " + cs);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800836 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
837 MSG_CREATE_SESSION, mCurMethod,
838 new MethodCallback(mCurMethod)));
839 }
840 // Return to client, and we will get back with it when
841 // we have had a session made for it.
842 return new InputBindResult(null, mCurId, mCurSeq);
843 } else if (SystemClock.uptimeMillis()
844 < (mLastBindTime+TIME_TO_RECONNECT)) {
845 // In this case we have connected to the service, but
846 // don't yet have its interface. If it hasn't been too
847 // long since we did the connection, we'll return to
848 // the client and wait to get the service interface so
849 // we can report back. If it has been too long, we want
850 // to fall through so we can try a disconnect/reconnect
851 // to see if we can get back in touch with the service.
852 return new InputBindResult(null, mCurId, mCurSeq);
853 } else {
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800854 EventLog.writeEvent(EventLogTags.IMF_FORCE_RECONNECT_IME,
855 mCurMethodId, SystemClock.uptimeMillis()-mLastBindTime, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800856 }
857 }
858 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800859
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700860 return startInputInnerLocked();
861 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800862
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700863 InputBindResult startInputInnerLocked() {
864 if (mCurMethodId == null) {
865 return mNoBinding;
866 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800867
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700868 if (!mSystemReady) {
869 // If the system is not yet ready, we shouldn't be running third
870 // party code.
Dianne Hackborncc278702009-09-02 23:07:23 -0700871 return new InputBindResult(null, mCurMethodId, mCurSeq);
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700872 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800873
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800874 InputMethodInfo info = mMethodMap.get(mCurMethodId);
875 if (info == null) {
876 throw new IllegalArgumentException("Unknown id: " + mCurMethodId);
877 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800878
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700879 unbindCurrentMethodLocked(false);
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800880
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800881 mCurIntent = new Intent(InputMethod.SERVICE_INTERFACE);
882 mCurIntent.setComponent(info.getComponent());
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700883 mCurIntent.putExtra(Intent.EXTRA_CLIENT_LABEL,
884 com.android.internal.R.string.input_method_binding_label);
885 mCurIntent.putExtra(Intent.EXTRA_CLIENT_INTENT, PendingIntent.getActivity(
886 mContext, 0, new Intent(Settings.ACTION_INPUT_METHOD_SETTINGS), 0));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800887 if (mContext.bindService(mCurIntent, this, Context.BIND_AUTO_CREATE)) {
888 mLastBindTime = SystemClock.uptimeMillis();
889 mHaveConnection = true;
890 mCurId = info.getId();
891 mCurToken = new Binder();
892 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800893 if (DEBUG) Slog.v(TAG, "Adding window token: " + mCurToken);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800894 mIWindowManager.addWindowToken(mCurToken,
895 WindowManager.LayoutParams.TYPE_INPUT_METHOD);
896 } catch (RemoteException e) {
897 }
898 return new InputBindResult(null, mCurId, mCurSeq);
899 } else {
900 mCurIntent = null;
Joe Onorato8a9b2202010-02-26 18:56:32 -0800901 Slog.w(TAG, "Failure connecting to input method service: "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800902 + mCurIntent);
903 }
904 return null;
905 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800906
satoke7c6998e2011-06-03 17:57:59 +0900907 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800908 public InputBindResult startInput(IInputMethodClient client,
909 IInputContext inputContext, EditorInfo attribute,
910 boolean initial, boolean needResult) {
911 synchronized (mMethodMap) {
912 final long ident = Binder.clearCallingIdentity();
913 try {
914 return startInputLocked(client, inputContext, attribute,
915 initial, needResult);
916 } finally {
917 Binder.restoreCallingIdentity(ident);
918 }
919 }
920 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800921
satoke7c6998e2011-06-03 17:57:59 +0900922 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800923 public void finishInput(IInputMethodClient client) {
924 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800925
satoke7c6998e2011-06-03 17:57:59 +0900926 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800927 public void onServiceConnected(ComponentName name, IBinder service) {
928 synchronized (mMethodMap) {
929 if (mCurIntent != null && name.equals(mCurIntent.getComponent())) {
930 mCurMethod = IInputMethod.Stub.asInterface(service);
Dianne Hackborncc278702009-09-02 23:07:23 -0700931 if (mCurToken == null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800932 Slog.w(TAG, "Service connected without a token!");
Dianne Hackborncc278702009-09-02 23:07:23 -0700933 unbindCurrentMethodLocked(false);
934 return;
935 }
Joe Onorato8a9b2202010-02-26 18:56:32 -0800936 if (DEBUG) Slog.v(TAG, "Initiating attach with token: " + mCurToken);
Dianne Hackborncc278702009-09-02 23:07:23 -0700937 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
938 MSG_ATTACH_TOKEN, mCurMethod, mCurToken));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800939 if (mCurClient != null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800940 if (DEBUG) Slog.v(TAG, "Creating first session while with client "
Dianne Hackborncc278702009-09-02 23:07:23 -0700941 + mCurClient);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800942 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
Dianne Hackborncc278702009-09-02 23:07:23 -0700943 MSG_CREATE_SESSION, mCurMethod,
944 new MethodCallback(mCurMethod)));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800945 }
946 }
947 }
948 }
949
950 void onSessionCreated(IInputMethod method, IInputMethodSession session) {
951 synchronized (mMethodMap) {
952 if (mCurMethod != null && method != null
953 && mCurMethod.asBinder() == method.asBinder()) {
954 if (mCurClient != null) {
955 mCurClient.curSession = new SessionState(mCurClient,
956 method, session);
957 mCurClient.sessionRequested = false;
958 InputBindResult res = attachNewInputLocked(true, true);
959 if (res.method != null) {
960 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageOO(
961 MSG_BIND_METHOD, mCurClient.client, res));
962 }
963 }
964 }
965 }
966 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800967
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700968 void unbindCurrentMethodLocked(boolean reportToClient) {
969 if (mHaveConnection) {
970 mContext.unbindService(this);
971 mHaveConnection = false;
972 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800973
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700974 if (mCurToken != null) {
975 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800976 if (DEBUG) Slog.v(TAG, "Removing window token: " + mCurToken);
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700977 mIWindowManager.removeWindowToken(mCurToken);
978 } catch (RemoteException e) {
979 }
980 mCurToken = null;
981 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800982
The Android Open Source Project10592532009-03-18 17:39:46 -0700983 mCurId = null;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700984 clearCurMethodLocked();
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800985
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700986 if (reportToClient && mCurClient != null) {
987 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
988 MSG_UNBIND_METHOD, mCurSeq, mCurClient.client));
989 }
990 }
991
Devin Taylor0c33ed22010-02-23 13:26:46 -0600992 private void finishSession(SessionState sessionState) {
993 if (sessionState != null && sessionState.session != null) {
994 try {
995 sessionState.session.finishSession();
996 } catch (RemoteException e) {
Jean-Baptiste Queru9d0f6df2010-03-29 12:55:09 -0700997 Slog.w(TAG, "Session failed to close due to remote exception", e);
Devin Taylor0c33ed22010-02-23 13:26:46 -0600998 }
999 }
1000 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001001
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001002 void clearCurMethodLocked() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001003 if (mCurMethod != null) {
1004 for (ClientState cs : mClients.values()) {
1005 cs.sessionRequested = false;
Devin Taylor0c33ed22010-02-23 13:26:46 -06001006 finishSession(cs.curSession);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001007 cs.curSession = null;
1008 }
Devin Taylor0c33ed22010-02-23 13:26:46 -06001009
1010 finishSession(mEnabledSession);
1011 mEnabledSession = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001012 mCurMethod = null;
1013 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07001014 if (mStatusBar != null) {
1015 mStatusBar.setIconVisibility("ime", false);
1016 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001017 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001018
satoke7c6998e2011-06-03 17:57:59 +09001019 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001020 public void onServiceDisconnected(ComponentName name) {
1021 synchronized (mMethodMap) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001022 if (DEBUG) Slog.v(TAG, "Service disconnected: " + name
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001023 + " mCurIntent=" + mCurIntent);
1024 if (mCurMethod != null && mCurIntent != null
1025 && name.equals(mCurIntent.getComponent())) {
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001026 clearCurMethodLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001027 // We consider this to be a new bind attempt, since the system
1028 // should now try to restart the service for us.
1029 mLastBindTime = SystemClock.uptimeMillis();
1030 mShowRequested = mInputShown;
1031 mInputShown = false;
1032 if (mCurClient != null) {
1033 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
1034 MSG_UNBIND_METHOD, mCurSeq, mCurClient.client));
1035 }
1036 }
1037 }
1038 }
1039
satokf9f01002011-05-19 21:31:50 +09001040 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001041 public void updateStatusIcon(IBinder token, String packageName, int iconId) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001042 int uid = Binder.getCallingUid();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001043 long ident = Binder.clearCallingIdentity();
1044 try {
1045 if (token == null || mCurToken != token) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001046 Slog.w(TAG, "Ignoring setInputMethod of uid " + uid + " token: " + token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001047 return;
1048 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001049
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001050 synchronized (mMethodMap) {
1051 if (iconId == 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001052 if (DEBUG) Slog.d(TAG, "hide the small icon for the input method");
Dianne Hackborn661cd522011-08-22 00:26:20 -07001053 if (mStatusBar != null) {
1054 mStatusBar.setIconVisibility("ime", false);
1055 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001056 } else if (packageName != null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001057 if (DEBUG) Slog.d(TAG, "show a small icon for the input method");
Svetoslav Ganov6179ea32011-06-28 01:12:41 -07001058 CharSequence contentDescription = null;
1059 try {
1060 PackageManager packageManager = mContext.getPackageManager();
1061 contentDescription = packageManager.getApplicationLabel(
1062 packageManager.getApplicationInfo(packageName, 0));
1063 } catch (NameNotFoundException nnfe) {
1064 /* ignore */
1065 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07001066 if (mStatusBar != null) {
1067 mStatusBar.setIcon("ime", packageName, iconId, 0,
1068 contentDescription != null
1069 ? contentDescription.toString() : null);
1070 mStatusBar.setIconVisibility("ime", true);
1071 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001072 }
1073 }
1074 } finally {
1075 Binder.restoreCallingIdentity(ident);
1076 }
1077 }
1078
satok7cfc0ed2011-06-20 21:29:36 +09001079 private boolean needsToShowImeSwitchOngoingNotification() {
1080 if (!mShowOngoingImeSwitcherForPhones) return false;
1081 synchronized (mMethodMap) {
1082 List<InputMethodInfo> imis = mSettings.getEnabledInputMethodListLocked();
1083 final int N = imis.size();
satokb6359412011-06-28 17:47:41 +09001084 if (N > 2) return true;
1085 if (N < 1) return false;
1086 int nonAuxCount = 0;
1087 int auxCount = 0;
1088 InputMethodSubtype nonAuxSubtype = null;
1089 InputMethodSubtype auxSubtype = null;
satok7cfc0ed2011-06-20 21:29:36 +09001090 for(int i = 0; i < N; ++i) {
1091 final InputMethodInfo imi = imis.get(i);
1092 final List<InputMethodSubtype> subtypes = getEnabledInputMethodSubtypeListLocked(
1093 imi, true);
1094 final int subtypeCount = subtypes.size();
1095 if (subtypeCount == 0) {
satokb6359412011-06-28 17:47:41 +09001096 ++nonAuxCount;
satok7cfc0ed2011-06-20 21:29:36 +09001097 } else {
1098 for (int j = 0; j < subtypeCount; ++j) {
satokb6359412011-06-28 17:47:41 +09001099 final InputMethodSubtype subtype = subtypes.get(j);
1100 if (!subtype.isAuxiliary()) {
1101 ++nonAuxCount;
1102 nonAuxSubtype = subtype;
1103 } else {
1104 ++auxCount;
1105 auxSubtype = subtype;
satok7cfc0ed2011-06-20 21:29:36 +09001106 }
1107 }
1108 }
satok7cfc0ed2011-06-20 21:29:36 +09001109 }
satokb6359412011-06-28 17:47:41 +09001110 if (nonAuxCount > 1 || auxCount > 1) {
1111 return true;
1112 } else if (nonAuxCount == 1 && auxCount == 1) {
1113 if (nonAuxSubtype != null && auxSubtype != null
1114 && nonAuxSubtype.getLocale().equals(auxSubtype.getLocale())
1115 && nonAuxSubtype.containsExtraValueKey(TAG_TRY_SUPPRESSING_IME_SWITCHER)) {
1116 return false;
1117 }
1118 return true;
1119 }
1120 return false;
satok7cfc0ed2011-06-20 21:29:36 +09001121 }
satok7cfc0ed2011-06-20 21:29:36 +09001122 }
1123
satokf9f01002011-05-19 21:31:50 +09001124 @Override
Joe Onorato857fd9b2011-01-27 15:08:35 -08001125 public void setImeWindowStatus(IBinder token, int vis, int backDisposition) {
satok06487a52010-10-29 11:37:18 +09001126 int uid = Binder.getCallingUid();
1127 long ident = Binder.clearCallingIdentity();
1128 try {
1129 if (token == null || mCurToken != token) {
Joe Onorato857fd9b2011-01-27 15:08:35 -08001130 Slog.w(TAG, "Ignoring setImeWindowStatus of uid " + uid + " token: " + token);
satok06487a52010-10-29 11:37:18 +09001131 return;
1132 }
1133
1134 synchronized (mMethodMap) {
Joe Onorato857fd9b2011-01-27 15:08:35 -08001135 mImeWindowVis = vis;
1136 mBackDisposition = backDisposition;
Dianne Hackborn661cd522011-08-22 00:26:20 -07001137 if (mStatusBar != null) {
1138 mStatusBar.setImeWindowStatus(token, vis, backDisposition);
1139 }
satok7cfc0ed2011-06-20 21:29:36 +09001140 final boolean iconVisibility = (vis & InputMethodService.IME_ACTIVE) != 0;
satok5bc8e732011-07-22 21:07:23 +09001141 final InputMethodInfo imi = mMethodMap.get(mCurMethodId);
1142 if (imi != null && iconVisibility && needsToShowImeSwitchOngoingNotification()) {
satok7cfc0ed2011-06-20 21:29:36 +09001143 final PackageManager pm = mContext.getPackageManager();
satok7cfc0ed2011-06-20 21:29:36 +09001144 final CharSequence title = mRes.getText(
1145 com.android.internal.R.string.select_input_method);
satok5bc8e732011-07-22 21:07:23 +09001146 final CharSequence imiLabel = imi.loadLabel(pm);
1147 final CharSequence summary = mCurrentSubtype != null
1148 ? TextUtils.concat(mCurrentSubtype.getDisplayName(mContext,
1149 imi.getPackageName(), imi.getServiceInfo().applicationInfo),
1150 (TextUtils.isEmpty(imiLabel) ?
1151 "" : " (" + imiLabel + ")"))
1152 : imiLabel;
1153
satok7cfc0ed2011-06-20 21:29:36 +09001154 mImeSwitcherNotification.setLatestEventInfo(
satok5bc8e732011-07-22 21:07:23 +09001155 mContext, title, summary, mImeSwitchPendingIntent);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001156 if (mNotificationManager != null) {
1157 mNotificationManager.notify(
1158 com.android.internal.R.string.select_input_method,
1159 mImeSwitcherNotification);
1160 mNotificationShown = true;
1161 }
satok7cfc0ed2011-06-20 21:29:36 +09001162 } else {
Dianne Hackborn661cd522011-08-22 00:26:20 -07001163 if (mNotificationShown && mNotificationManager != null) {
satok7cfc0ed2011-06-20 21:29:36 +09001164 mNotificationManager.cancel(
1165 com.android.internal.R.string.select_input_method);
1166 mNotificationShown = false;
1167 }
1168 }
satok06487a52010-10-29 11:37:18 +09001169 }
1170 } finally {
1171 Binder.restoreCallingIdentity(ident);
1172 }
1173 }
1174
satoke7c6998e2011-06-03 17:57:59 +09001175 @Override
satokf9f01002011-05-19 21:31:50 +09001176 public void registerSuggestionSpansForNotification(SuggestionSpan[] spans) {
1177 synchronized (mMethodMap) {
1178 final InputMethodInfo currentImi = mMethodMap.get(mCurMethodId);
1179 for (int i = 0; i < spans.length; ++i) {
1180 SuggestionSpan ss = spans[i];
satok42c5a162011-05-26 16:46:14 +09001181 if (!TextUtils.isEmpty(ss.getNotificationTargetClassName())) {
satokf9f01002011-05-19 21:31:50 +09001182 mSecureSuggestionSpans.put(ss, currentImi);
satok42c5a162011-05-26 16:46:14 +09001183 final InputMethodInfo targetImi = mSecureSuggestionSpans.get(ss);
satokf9f01002011-05-19 21:31:50 +09001184 }
1185 }
1186 }
1187 }
1188
satoke7c6998e2011-06-03 17:57:59 +09001189 @Override
satokf9f01002011-05-19 21:31:50 +09001190 public boolean notifySuggestionPicked(SuggestionSpan span, String originalString, int index) {
1191 synchronized (mMethodMap) {
1192 final InputMethodInfo targetImi = mSecureSuggestionSpans.get(span);
1193 // TODO: Do not send the intent if the process of the targetImi is already dead.
1194 if (targetImi != null) {
1195 final String[] suggestions = span.getSuggestions();
1196 if (index < 0 || index >= suggestions.length) return false;
satok42c5a162011-05-26 16:46:14 +09001197 final String className = span.getNotificationTargetClassName();
satokf9f01002011-05-19 21:31:50 +09001198 final Intent intent = new Intent();
1199 // Ensures that only a class in the original IME package will receive the
1200 // notification.
satok42c5a162011-05-26 16:46:14 +09001201 intent.setClassName(targetImi.getPackageName(), className);
satokf9f01002011-05-19 21:31:50 +09001202 intent.setAction(SuggestionSpan.ACTION_SUGGESTION_PICKED);
1203 intent.putExtra(SuggestionSpan.SUGGESTION_SPAN_PICKED_BEFORE, originalString);
1204 intent.putExtra(SuggestionSpan.SUGGESTION_SPAN_PICKED_AFTER, suggestions[index]);
1205 intent.putExtra(SuggestionSpan.SUGGESTION_SPAN_PICKED_HASHCODE, span.hashCode());
1206 mContext.sendBroadcast(intent);
1207 return true;
1208 }
1209 }
1210 return false;
1211 }
1212
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001213 void updateFromSettingsLocked() {
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001214 // We are assuming that whoever is changing DEFAULT_INPUT_METHOD and
1215 // ENABLED_INPUT_METHODS is taking care of keeping them correctly in
1216 // sync, so we will never have a DEFAULT_INPUT_METHOD that is not
1217 // enabled.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001218 String id = Settings.Secure.getString(mContext.getContentResolver(),
satokab751aa2010-09-14 19:17:36 +09001219 Settings.Secure.DEFAULT_INPUT_METHOD);
satok03eb319a2010-11-11 18:17:42 +09001220 // There is no input method selected, try to choose new applicable input method.
1221 if (TextUtils.isEmpty(id) && chooseNewDefaultIMELocked()) {
1222 id = Settings.Secure.getString(mContext.getContentResolver(),
1223 Settings.Secure.DEFAULT_INPUT_METHOD);
1224 }
1225 if (!TextUtils.isEmpty(id)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001226 try {
satokab751aa2010-09-14 19:17:36 +09001227 setInputMethodLocked(id, getSelectedInputMethodSubtypeId(id));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001228 } catch (IllegalArgumentException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001229 Slog.w(TAG, "Unknown input method from prefs: " + id, e);
The Android Open Source Project10592532009-03-18 17:39:46 -07001230 mCurMethodId = null;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001231 unbindCurrentMethodLocked(true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001232 }
satokf3db1af2010-11-23 13:34:33 +09001233 mShortcutInputMethodsAndSubtypes.clear();
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001234 } else {
1235 // There is no longer an input method set, so stop any current one.
The Android Open Source Project10592532009-03-18 17:39:46 -07001236 mCurMethodId = null;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001237 unbindCurrentMethodLocked(true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001238 }
1239 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001240
satokab751aa2010-09-14 19:17:36 +09001241 /* package */ void setInputMethodLocked(String id, int subtypeId) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001242 InputMethodInfo info = mMethodMap.get(id);
1243 if (info == null) {
satok913a8922010-08-26 21:53:41 +09001244 throw new IllegalArgumentException("Unknown id: " + id);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001245 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001246
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001247 if (id.equals(mCurMethodId)) {
satokcd7cd292010-11-20 15:46:23 +09001248 InputMethodSubtype subtype = null;
Ken Wakasa586f0512011-01-20 22:31:01 +09001249 if (subtypeId >= 0 && subtypeId < info.getSubtypeCount()) {
1250 subtype = info.getSubtypeAt(subtypeId);
satokcd7cd292010-11-20 15:46:23 +09001251 }
1252 if (subtype != mCurrentSubtype) {
1253 synchronized (mMethodMap) {
satokca830212011-01-13 21:15:04 +09001254 if (subtype != null) {
1255 setSelectedInputMethodAndSubtypeLocked(info, subtypeId, true);
1256 }
satokcd7cd292010-11-20 15:46:23 +09001257 if (mCurMethod != null) {
1258 try {
satoke40dea02011-01-30 01:14:02 +09001259 final Configuration conf = mRes.getConfiguration();
1260 final boolean haveHardKeyboard = conf.keyboard
1261 != Configuration.KEYBOARD_NOKEYS;
1262 final boolean hardKeyShown = haveHardKeyboard
Ken Wakasa8710e762011-01-30 11:02:09 +09001263 && conf.hardKeyboardHidden
1264 != Configuration.HARDKEYBOARDHIDDEN_YES;
satoke40dea02011-01-30 01:14:02 +09001265 mImeWindowVis = (mInputShown || hardKeyShown) ? (
1266 InputMethodService.IME_ACTIVE | InputMethodService.IME_VISIBLE)
1267 : 0;
Dianne Hackborn661cd522011-08-22 00:26:20 -07001268 updateImeWindowStatusLocked();
satokcd7cd292010-11-20 15:46:23 +09001269 // If subtype is null, try to find the most applicable one from
1270 // getCurrentInputMethodSubtype.
1271 if (subtype == null) {
1272 subtype = getCurrentInputMethodSubtype();
1273 }
1274 mCurMethod.changeInputMethodSubtype(subtype);
1275 } catch (RemoteException e) {
1276 return;
satokab751aa2010-09-14 19:17:36 +09001277 }
1278 }
1279 }
1280 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001281 return;
1282 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001283
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001284 final long ident = Binder.clearCallingIdentity();
1285 try {
satokab751aa2010-09-14 19:17:36 +09001286 // Set a subtype to this input method.
1287 // subtypeId the name of a subtype which will be set.
satok723a27e2010-11-11 14:58:11 +09001288 setSelectedInputMethodAndSubtypeLocked(info, subtypeId, false);
1289 // mCurMethodId should be updated after setSelectedInputMethodAndSubtypeLocked()
1290 // because mCurMethodId is stored as a history in
1291 // setSelectedInputMethodAndSubtypeLocked().
1292 mCurMethodId = id;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001293
1294 if (ActivityManagerNative.isSystemReady()) {
1295 Intent intent = new Intent(Intent.ACTION_INPUT_METHOD_CHANGED);
Dianne Hackborn1c633fc2009-12-08 19:45:14 -08001296 intent.addFlags(Intent.FLAG_RECEIVER_REPLACE_PENDING);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001297 intent.putExtra("input_method_id", id);
1298 mContext.sendBroadcast(intent);
1299 }
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001300 unbindCurrentClientLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001301 } finally {
1302 Binder.restoreCallingIdentity(ident);
1303 }
1304 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001305
satok42c5a162011-05-26 16:46:14 +09001306 @Override
The Android Open Source Project4df24232009-03-05 14:34:35 -08001307 public boolean showSoftInput(IInputMethodClient client, int flags,
1308 ResultReceiver resultReceiver) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001309 int uid = Binder.getCallingUid();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001310 long ident = Binder.clearCallingIdentity();
1311 try {
1312 synchronized (mMethodMap) {
1313 if (mCurClient == null || client == null
1314 || mCurClient.client.asBinder() != client.asBinder()) {
1315 try {
1316 // We need to check if this is the current client with
1317 // focus in the window manager, to allow this call to
1318 // be made before input is started in it.
1319 if (!mIWindowManager.inputMethodClientHasFocus(client)) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001320 Slog.w(TAG, "Ignoring showSoftInput of uid " + uid + ": " + client);
The Android Open Source Project4df24232009-03-05 14:34:35 -08001321 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001322 }
1323 } catch (RemoteException e) {
The Android Open Source Project4df24232009-03-05 14:34:35 -08001324 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001325 }
1326 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001327
Joe Onorato8a9b2202010-02-26 18:56:32 -08001328 if (DEBUG) Slog.v(TAG, "Client requesting input be shown");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001329 return showCurrentInputLocked(flags, resultReceiver);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001330 }
1331 } finally {
1332 Binder.restoreCallingIdentity(ident);
1333 }
1334 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001335
The Android Open Source Project4df24232009-03-05 14:34:35 -08001336 boolean showCurrentInputLocked(int flags, ResultReceiver resultReceiver) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001337 mShowRequested = true;
1338 if ((flags&InputMethodManager.SHOW_IMPLICIT) == 0) {
1339 mShowExplicitlyRequested = true;
1340 }
1341 if ((flags&InputMethodManager.SHOW_FORCED) != 0) {
1342 mShowExplicitlyRequested = true;
1343 mShowForced = true;
1344 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001345
Dianne Hackborncc278702009-09-02 23:07:23 -07001346 if (!mSystemReady) {
1347 return false;
1348 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001349
The Android Open Source Project4df24232009-03-05 14:34:35 -08001350 boolean res = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001351 if (mCurMethod != null) {
The Android Open Source Project4df24232009-03-05 14:34:35 -08001352 executeOrSendMessage(mCurMethod, mCaller.obtainMessageIOO(
1353 MSG_SHOW_SOFT_INPUT, getImeShowFlags(), mCurMethod,
1354 resultReceiver));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001355 mInputShown = true;
The Android Open Source Project4df24232009-03-05 14:34:35 -08001356 res = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001357 } else if (mHaveConnection && SystemClock.uptimeMillis()
1358 < (mLastBindTime+TIME_TO_RECONNECT)) {
1359 // The client has asked to have the input method shown, but
1360 // we have been sitting here too long with a connection to the
1361 // service and no interface received, so let's disconnect/connect
1362 // to try to prod things along.
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001363 EventLog.writeEvent(EventLogTags.IMF_FORCE_RECONNECT_IME, mCurMethodId,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001364 SystemClock.uptimeMillis()-mLastBindTime,1);
1365 mContext.unbindService(this);
1366 mContext.bindService(mCurIntent, this, Context.BIND_AUTO_CREATE);
1367 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001368
The Android Open Source Project4df24232009-03-05 14:34:35 -08001369 return res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001370 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001371
satok42c5a162011-05-26 16:46:14 +09001372 @Override
The Android Open Source Project4df24232009-03-05 14:34:35 -08001373 public boolean hideSoftInput(IInputMethodClient client, int flags,
1374 ResultReceiver resultReceiver) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001375 int uid = Binder.getCallingUid();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001376 long ident = Binder.clearCallingIdentity();
1377 try {
1378 synchronized (mMethodMap) {
1379 if (mCurClient == null || client == null
1380 || mCurClient.client.asBinder() != client.asBinder()) {
1381 try {
1382 // We need to check if this is the current client with
1383 // focus in the window manager, to allow this call to
1384 // be made before input is started in it.
1385 if (!mIWindowManager.inputMethodClientHasFocus(client)) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001386 if (DEBUG) Slog.w(TAG, "Ignoring hideSoftInput of uid "
1387 + uid + ": " + client);
Joe Onorato857fd9b2011-01-27 15:08:35 -08001388 mImeWindowVis = 0;
Dianne Hackborn661cd522011-08-22 00:26:20 -07001389 updateImeWindowStatusLocked();
The Android Open Source Project4df24232009-03-05 14:34:35 -08001390 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001391 }
1392 } catch (RemoteException e) {
Joe Onorato857fd9b2011-01-27 15:08:35 -08001393 mImeWindowVis = 0;
Dianne Hackborn661cd522011-08-22 00:26:20 -07001394 updateImeWindowStatusLocked();
The Android Open Source Project4df24232009-03-05 14:34:35 -08001395 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001396 }
1397 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001398
Joe Onorato8a9b2202010-02-26 18:56:32 -08001399 if (DEBUG) Slog.v(TAG, "Client requesting input be hidden");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001400 return hideCurrentInputLocked(flags, resultReceiver);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001401 }
1402 } finally {
1403 Binder.restoreCallingIdentity(ident);
1404 }
1405 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001406
The Android Open Source Project4df24232009-03-05 14:34:35 -08001407 boolean hideCurrentInputLocked(int flags, ResultReceiver resultReceiver) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001408 if ((flags&InputMethodManager.HIDE_IMPLICIT_ONLY) != 0
1409 && (mShowExplicitlyRequested || mShowForced)) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001410 if (DEBUG) Slog.v(TAG,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001411 "Not hiding: explicit show not cancelled by non-explicit hide");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001412 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001413 }
1414 if (mShowForced && (flags&InputMethodManager.HIDE_NOT_ALWAYS) != 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001415 if (DEBUG) Slog.v(TAG,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001416 "Not hiding: forced show not cancelled by not-always hide");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001417 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001418 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08001419 boolean res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001420 if (mInputShown && mCurMethod != null) {
The Android Open Source Project4df24232009-03-05 14:34:35 -08001421 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
1422 MSG_HIDE_SOFT_INPUT, mCurMethod, resultReceiver));
1423 res = true;
1424 } else {
1425 res = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001426 }
1427 mInputShown = false;
1428 mShowRequested = false;
1429 mShowExplicitlyRequested = false;
1430 mShowForced = false;
The Android Open Source Project4df24232009-03-05 14:34:35 -08001431 return res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001432 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001433
satok42c5a162011-05-26 16:46:14 +09001434 @Override
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001435 public void windowGainedFocus(IInputMethodClient client, IBinder windowToken,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001436 boolean viewHasFocus, boolean isTextEditor, int softInputMode,
1437 boolean first, int windowFlags) {
1438 long ident = Binder.clearCallingIdentity();
1439 try {
1440 synchronized (mMethodMap) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001441 if (DEBUG) Slog.v(TAG, "windowGainedFocus: " + client.asBinder()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001442 + " viewHasFocus=" + viewHasFocus
1443 + " isTextEditor=" + isTextEditor
1444 + " softInputMode=#" + Integer.toHexString(softInputMode)
1445 + " first=" + first + " flags=#"
1446 + Integer.toHexString(windowFlags));
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001447
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001448 if (mCurClient == null || client == null
1449 || mCurClient.client.asBinder() != client.asBinder()) {
1450 try {
1451 // We need to check if this is the current client with
1452 // focus in the window manager, to allow this call to
1453 // be made before input is started in it.
1454 if (!mIWindowManager.inputMethodClientHasFocus(client)) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001455 Slog.w(TAG, "Client not active, ignoring focus gain of: " + client);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001456 return;
1457 }
1458 } catch (RemoteException e) {
1459 }
1460 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001461
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001462 if (mCurFocusedWindow == windowToken) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001463 Slog.w(TAG, "Window already focused, ignoring focus gain of: " + client);
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001464 return;
1465 }
1466 mCurFocusedWindow = windowToken;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001467
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08001468 // Should we auto-show the IME even if the caller has not
1469 // specified what should be done with it?
1470 // We only do this automatically if the window can resize
1471 // to accommodate the IME (so what the user sees will give
1472 // them good context without input information being obscured
1473 // by the IME) or if running on a large screen where there
1474 // is more room for the target window + IME.
1475 final boolean doAutoShow =
1476 (softInputMode & WindowManager.LayoutParams.SOFT_INPUT_MASK_ADJUST)
1477 == WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE
1478 || mRes.getConfiguration().isLayoutSizeAtLeast(
1479 Configuration.SCREENLAYOUT_SIZE_LARGE);
1480
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001481 switch (softInputMode&WindowManager.LayoutParams.SOFT_INPUT_MASK_STATE) {
1482 case WindowManager.LayoutParams.SOFT_INPUT_STATE_UNSPECIFIED:
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08001483 if (!isTextEditor || !doAutoShow) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001484 if (WindowManager.LayoutParams.mayUseInputMethod(windowFlags)) {
1485 // There is no focus view, and this window will
1486 // be behind any soft input window, so hide the
1487 // soft input window if it is shown.
Joe Onorato8a9b2202010-02-26 18:56:32 -08001488 if (DEBUG) Slog.v(TAG, "Unspecified window will hide input");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001489 hideCurrentInputLocked(InputMethodManager.HIDE_NOT_ALWAYS, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001490 }
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08001491 } else if (isTextEditor && doAutoShow && (softInputMode &
1492 WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001493 // There is a focus view, and we are navigating forward
1494 // into the window, so show the input window for the user.
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08001495 // We only do this automatically if the window an resize
1496 // to accomodate the IME (so what the user sees will give
1497 // them good context without input information being obscured
1498 // by the IME) or if running on a large screen where there
1499 // is more room for the target window + IME.
Joe Onorato8a9b2202010-02-26 18:56:32 -08001500 if (DEBUG) Slog.v(TAG, "Unspecified window will show input");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001501 showCurrentInputLocked(InputMethodManager.SHOW_IMPLICIT, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001502 }
1503 break;
1504 case WindowManager.LayoutParams.SOFT_INPUT_STATE_UNCHANGED:
1505 // Do nothing.
1506 break;
1507 case WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN:
1508 if ((softInputMode &
1509 WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001510 if (DEBUG) Slog.v(TAG, "Window asks to hide input going forward");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001511 hideCurrentInputLocked(0, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001512 }
1513 break;
1514 case WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN:
Joe Onorato8a9b2202010-02-26 18:56:32 -08001515 if (DEBUG) Slog.v(TAG, "Window asks to hide input");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001516 hideCurrentInputLocked(0, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001517 break;
1518 case WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE:
1519 if ((softInputMode &
1520 WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001521 if (DEBUG) Slog.v(TAG, "Window asks to show input going forward");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001522 showCurrentInputLocked(InputMethodManager.SHOW_IMPLICIT, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001523 }
1524 break;
1525 case WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE:
Joe Onorato8a9b2202010-02-26 18:56:32 -08001526 if (DEBUG) Slog.v(TAG, "Window asks to always show input");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001527 showCurrentInputLocked(InputMethodManager.SHOW_IMPLICIT, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001528 break;
1529 }
1530 }
1531 } finally {
1532 Binder.restoreCallingIdentity(ident);
1533 }
1534 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001535
satok42c5a162011-05-26 16:46:14 +09001536 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001537 public void showInputMethodPickerFromClient(IInputMethodClient client) {
1538 synchronized (mMethodMap) {
1539 if (mCurClient == null || client == null
1540 || mCurClient.client.asBinder() != client.asBinder()) {
satok47a44912010-10-06 16:03:58 +09001541 Slog.w(TAG, "Ignoring showInputMethodPickerFromClient of uid "
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001542 + Binder.getCallingUid() + ": " + client);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001543 }
1544
satok440aab52010-11-25 09:43:11 +09001545 // Always call subtype picker, because subtype picker is a superset of input method
1546 // picker.
satokab751aa2010-09-14 19:17:36 +09001547 mHandler.sendEmptyMessage(MSG_SHOW_IM_SUBTYPE_PICKER);
1548 }
1549 }
1550
satok42c5a162011-05-26 16:46:14 +09001551 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001552 public void setInputMethod(IBinder token, String id) {
satok28203512010-11-24 11:06:49 +09001553 setInputMethodWithSubtypeId(token, id, NOT_A_SUBTYPE_ID);
1554 }
1555
satok42c5a162011-05-26 16:46:14 +09001556 @Override
satok28203512010-11-24 11:06:49 +09001557 public void setInputMethodAndSubtype(IBinder token, String id, InputMethodSubtype subtype) {
1558 synchronized (mMethodMap) {
1559 if (subtype != null) {
1560 setInputMethodWithSubtypeId(token, id, getSubtypeIdFromHashCode(
1561 mMethodMap.get(id), subtype.hashCode()));
1562 } else {
1563 setInputMethod(token, id);
1564 }
1565 }
satokab751aa2010-09-14 19:17:36 +09001566 }
1567
satok42c5a162011-05-26 16:46:14 +09001568 @Override
satokb416a712010-11-25 20:42:14 +09001569 public void showInputMethodAndSubtypeEnablerFromClient(
satok217f5482010-12-15 05:19:19 +09001570 IInputMethodClient client, String inputMethodId) {
satokb416a712010-11-25 20:42:14 +09001571 synchronized (mMethodMap) {
1572 if (mCurClient == null || client == null
1573 || mCurClient.client.asBinder() != client.asBinder()) {
1574 Slog.w(TAG, "Ignoring showInputMethodAndSubtypeEnablerFromClient of: " + client);
1575 }
satok7fee71f2010-12-17 18:54:26 +09001576 executeOrSendMessage(mCurMethod, mCaller.obtainMessageO(
1577 MSG_SHOW_IM_SUBTYPE_ENABLER, inputMethodId));
satokb416a712010-11-25 20:42:14 +09001578 }
1579 }
1580
satok4fc87d62011-05-20 16:13:43 +09001581 @Override
satok735cf382010-11-11 20:40:09 +09001582 public boolean switchToLastInputMethod(IBinder token) {
1583 synchronized (mMethodMap) {
satokc445bcd2011-01-25 18:57:24 +09001584 final Pair<String, String> lastIme = mSettings.getLastInputMethodAndSubtypeLocked();
satok4fc87d62011-05-20 16:13:43 +09001585 final InputMethodInfo lastImi;
satok208d5632011-05-20 22:13:38 +09001586 if (lastIme != null) {
satok4fc87d62011-05-20 16:13:43 +09001587 lastImi = mMethodMap.get(lastIme.first);
1588 } else {
1589 lastImi = null;
satok735cf382010-11-11 20:40:09 +09001590 }
satok4fc87d62011-05-20 16:13:43 +09001591 String targetLastImiId = null;
1592 int subtypeId = NOT_A_SUBTYPE_ID;
1593 if (lastIme != null && lastImi != null) {
1594 final boolean imiIdIsSame = lastImi.getId().equals(mCurMethodId);
1595 final int lastSubtypeHash = Integer.valueOf(lastIme.second);
1596 final int currentSubtypeHash = mCurrentSubtype == null ? NOT_A_SUBTYPE_ID
1597 : mCurrentSubtype.hashCode();
1598 // If the last IME is the same as the current IME and the last subtype is not
1599 // defined, there is no need to switch to the last IME.
1600 if (!imiIdIsSame || lastSubtypeHash != currentSubtypeHash) {
1601 targetLastImiId = lastIme.first;
1602 subtypeId = getSubtypeIdFromHashCode(lastImi, lastSubtypeHash);
1603 }
1604 }
1605
1606 if (TextUtils.isEmpty(targetLastImiId) && !canAddToLastInputMethod(mCurrentSubtype)) {
1607 // This is a safety net. If the currentSubtype can't be added to the history
1608 // and the framework couldn't find the last ime, we will make the last ime be
1609 // the most applicable enabled keyboard subtype of the system imes.
1610 final List<InputMethodInfo> enabled = mSettings.getEnabledInputMethodListLocked();
1611 if (enabled != null) {
1612 final int N = enabled.size();
1613 final String locale = mCurrentSubtype == null
1614 ? mRes.getConfiguration().locale.toString()
1615 : mCurrentSubtype.getLocale();
1616 for (int i = 0; i < N; ++i) {
1617 final InputMethodInfo imi = enabled.get(i);
1618 if (imi.getSubtypeCount() > 0 && isSystemIme(imi)) {
1619 InputMethodSubtype keyboardSubtype =
1620 findLastResortApplicableSubtypeLocked(mRes, getSubtypes(imi),
1621 SUBTYPE_MODE_KEYBOARD, locale, true);
1622 if (keyboardSubtype != null) {
1623 targetLastImiId = imi.getId();
1624 subtypeId = getSubtypeIdFromHashCode(
1625 imi, keyboardSubtype.hashCode());
1626 if(keyboardSubtype.getLocale().equals(locale)) {
1627 break;
1628 }
1629 }
1630 }
1631 }
1632 }
1633 }
1634
1635 if (!TextUtils.isEmpty(targetLastImiId)) {
1636 if (DEBUG) {
1637 Slog.d(TAG, "Switch to: " + lastImi.getId() + ", " + lastIme.second
1638 + ", from: " + mCurMethodId + ", " + subtypeId);
1639 }
1640 setInputMethodWithSubtypeId(token, targetLastImiId, subtypeId);
1641 return true;
1642 } else {
1643 return false;
1644 }
satok735cf382010-11-11 20:40:09 +09001645 }
1646 }
1647
satoke7c6998e2011-06-03 17:57:59 +09001648 @Override
satok68f1b782011-04-11 14:26:04 +09001649 public InputMethodSubtype getLastInputMethodSubtype() {
1650 synchronized (mMethodMap) {
1651 final Pair<String, String> lastIme = mSettings.getLastInputMethodAndSubtypeLocked();
1652 // TODO: Handle the case of the last IME with no subtypes
1653 if (lastIme == null || TextUtils.isEmpty(lastIme.first)
1654 || TextUtils.isEmpty(lastIme.second)) return null;
1655 final InputMethodInfo lastImi = mMethodMap.get(lastIme.first);
1656 if (lastImi == null) return null;
1657 try {
1658 final int lastSubtypeHash = Integer.valueOf(lastIme.second);
satok0e7d7d62011-07-05 13:28:06 +09001659 final int lastSubtypeId = getSubtypeIdFromHashCode(lastImi, lastSubtypeHash);
1660 if (lastSubtypeId < 0 || lastSubtypeId >= lastImi.getSubtypeCount()) {
1661 return null;
1662 }
1663 return lastImi.getSubtypeAt(lastSubtypeId);
satok68f1b782011-04-11 14:26:04 +09001664 } catch (NumberFormatException e) {
1665 return null;
1666 }
1667 }
1668 }
1669
satoke7c6998e2011-06-03 17:57:59 +09001670 @Override
satok91e88122011-07-18 11:11:42 +09001671 public boolean setAdditionalInputMethodSubtypes(String imiId, InputMethodSubtype[] subtypes) {
1672 // By this IPC call, only a process which shares the same uid with the IME can add
1673 // additional input method subtypes to the IME.
1674 if (TextUtils.isEmpty(imiId) || subtypes == null || subtypes.length == 0) return false;
satoke7c6998e2011-06-03 17:57:59 +09001675 synchronized (mMethodMap) {
satok91e88122011-07-18 11:11:42 +09001676 final InputMethodInfo imi = mMethodMap.get(imiId);
satoke7c6998e2011-06-03 17:57:59 +09001677 if (imi == null) return false;
satok91e88122011-07-18 11:11:42 +09001678 final PackageManager pm = mContext.getPackageManager();
1679 final String[] packageInfos = pm.getPackagesForUid(Binder.getCallingUid());
1680 if (packageInfos != null) {
1681 final int packageNum = packageInfos.length;
1682 for (int i = 0; i < packageNum; ++i) {
1683 if (packageInfos[i].equals(imi.getPackageName())) {
1684 mFileManager.addInputMethodSubtypes(imi, subtypes);
1685 buildInputMethodListLocked(mMethodList, mMethodMap);
1686 return true;
1687 }
1688 }
1689 }
satoke7c6998e2011-06-03 17:57:59 +09001690 }
satok91e88122011-07-18 11:11:42 +09001691 return false;
satoke7c6998e2011-06-03 17:57:59 +09001692 }
1693
satok28203512010-11-24 11:06:49 +09001694 private void setInputMethodWithSubtypeId(IBinder token, String id, int subtypeId) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001695 synchronized (mMethodMap) {
1696 if (token == null) {
1697 if (mContext.checkCallingOrSelfPermission(
1698 android.Manifest.permission.WRITE_SECURE_SETTINGS)
1699 != PackageManager.PERMISSION_GRANTED) {
1700 throw new SecurityException(
1701 "Using null token requires permission "
1702 + android.Manifest.permission.WRITE_SECURE_SETTINGS);
1703 }
1704 } else if (mCurToken != token) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001705 Slog.w(TAG, "Ignoring setInputMethod of uid " + Binder.getCallingUid()
1706 + " token: " + token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001707 return;
1708 }
1709
1710 long ident = Binder.clearCallingIdentity();
1711 try {
satokab751aa2010-09-14 19:17:36 +09001712 setInputMethodLocked(id, subtypeId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001713 } finally {
1714 Binder.restoreCallingIdentity(ident);
1715 }
1716 }
1717 }
1718
satok42c5a162011-05-26 16:46:14 +09001719 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001720 public void hideMySoftInput(IBinder token, int flags) {
1721 synchronized (mMethodMap) {
1722 if (token == null || mCurToken != token) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001723 if (DEBUG) Slog.w(TAG, "Ignoring hideInputMethod of uid "
1724 + Binder.getCallingUid() + " token: " + token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001725 return;
1726 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001727 long ident = Binder.clearCallingIdentity();
1728 try {
The Android Open Source Project4df24232009-03-05 14:34:35 -08001729 hideCurrentInputLocked(flags, null);
1730 } finally {
1731 Binder.restoreCallingIdentity(ident);
1732 }
1733 }
1734 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001735
satok42c5a162011-05-26 16:46:14 +09001736 @Override
The Android Open Source Project4df24232009-03-05 14:34:35 -08001737 public void showMySoftInput(IBinder token, int flags) {
1738 synchronized (mMethodMap) {
1739 if (token == null || mCurToken != token) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001740 Slog.w(TAG, "Ignoring showMySoftInput of uid "
1741 + Binder.getCallingUid() + " token: " + token);
The Android Open Source Project4df24232009-03-05 14:34:35 -08001742 return;
1743 }
1744 long ident = Binder.clearCallingIdentity();
1745 try {
1746 showCurrentInputLocked(flags, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001747 } finally {
1748 Binder.restoreCallingIdentity(ident);
1749 }
1750 }
1751 }
1752
1753 void setEnabledSessionInMainThread(SessionState session) {
1754 if (mEnabledSession != session) {
1755 if (mEnabledSession != null) {
1756 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001757 if (DEBUG) Slog.v(TAG, "Disabling: " + mEnabledSession);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001758 mEnabledSession.method.setSessionEnabled(
1759 mEnabledSession.session, false);
1760 } catch (RemoteException e) {
1761 }
1762 }
1763 mEnabledSession = session;
1764 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001765 if (DEBUG) Slog.v(TAG, "Enabling: " + mEnabledSession);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001766 session.method.setSessionEnabled(
1767 session.session, true);
1768 } catch (RemoteException e) {
1769 }
1770 }
1771 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001772
satok42c5a162011-05-26 16:46:14 +09001773 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001774 public boolean handleMessage(Message msg) {
1775 HandlerCaller.SomeArgs args;
1776 switch (msg.what) {
1777 case MSG_SHOW_IM_PICKER:
1778 showInputMethodMenu();
1779 return true;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001780
satokab751aa2010-09-14 19:17:36 +09001781 case MSG_SHOW_IM_SUBTYPE_PICKER:
1782 showInputMethodSubtypeMenu();
1783 return true;
1784
satok47a44912010-10-06 16:03:58 +09001785 case MSG_SHOW_IM_SUBTYPE_ENABLER:
satok217f5482010-12-15 05:19:19 +09001786 args = (HandlerCaller.SomeArgs)msg.obj;
satok7fee71f2010-12-17 18:54:26 +09001787 showInputMethodAndSubtypeEnabler((String)args.arg1);
satok217f5482010-12-15 05:19:19 +09001788 return true;
1789
1790 case MSG_SHOW_IM_CONFIG:
1791 showConfigureInputMethods();
satok47a44912010-10-06 16:03:58 +09001792 return true;
1793
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001794 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001795
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001796 case MSG_UNBIND_INPUT:
1797 try {
1798 ((IInputMethod)msg.obj).unbindInput();
1799 } catch (RemoteException e) {
1800 // There is nothing interesting about the method dying.
1801 }
1802 return true;
1803 case MSG_BIND_INPUT:
1804 args = (HandlerCaller.SomeArgs)msg.obj;
1805 try {
1806 ((IInputMethod)args.arg1).bindInput((InputBinding)args.arg2);
1807 } catch (RemoteException e) {
1808 }
1809 return true;
1810 case MSG_SHOW_SOFT_INPUT:
The Android Open Source Project4df24232009-03-05 14:34:35 -08001811 args = (HandlerCaller.SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001812 try {
The Android Open Source Project4df24232009-03-05 14:34:35 -08001813 ((IInputMethod)args.arg1).showSoftInput(msg.arg1,
1814 (ResultReceiver)args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001815 } catch (RemoteException e) {
1816 }
1817 return true;
1818 case MSG_HIDE_SOFT_INPUT:
The Android Open Source Project4df24232009-03-05 14:34:35 -08001819 args = (HandlerCaller.SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001820 try {
The Android Open Source Project4df24232009-03-05 14:34:35 -08001821 ((IInputMethod)args.arg1).hideSoftInput(0,
1822 (ResultReceiver)args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001823 } catch (RemoteException e) {
1824 }
1825 return true;
1826 case MSG_ATTACH_TOKEN:
1827 args = (HandlerCaller.SomeArgs)msg.obj;
1828 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001829 if (DEBUG) Slog.v(TAG, "Sending attach of token: " + args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001830 ((IInputMethod)args.arg1).attachToken((IBinder)args.arg2);
1831 } catch (RemoteException e) {
1832 }
1833 return true;
1834 case MSG_CREATE_SESSION:
1835 args = (HandlerCaller.SomeArgs)msg.obj;
1836 try {
1837 ((IInputMethod)args.arg1).createSession(
1838 (IInputMethodCallback)args.arg2);
1839 } catch (RemoteException e) {
1840 }
1841 return true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001842 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001843
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001844 case MSG_START_INPUT:
1845 args = (HandlerCaller.SomeArgs)msg.obj;
1846 try {
1847 SessionState session = (SessionState)args.arg1;
1848 setEnabledSessionInMainThread(session);
1849 session.method.startInput((IInputContext)args.arg2,
1850 (EditorInfo)args.arg3);
1851 } catch (RemoteException e) {
1852 }
1853 return true;
1854 case MSG_RESTART_INPUT:
1855 args = (HandlerCaller.SomeArgs)msg.obj;
1856 try {
1857 SessionState session = (SessionState)args.arg1;
1858 setEnabledSessionInMainThread(session);
1859 session.method.restartInput((IInputContext)args.arg2,
1860 (EditorInfo)args.arg3);
1861 } catch (RemoteException e) {
1862 }
1863 return true;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001864
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001865 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001866
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001867 case MSG_UNBIND_METHOD:
1868 try {
1869 ((IInputMethodClient)msg.obj).onUnbindMethod(msg.arg1);
1870 } catch (RemoteException e) {
1871 // There is nothing interesting about the last client dying.
1872 }
1873 return true;
1874 case MSG_BIND_METHOD:
1875 args = (HandlerCaller.SomeArgs)msg.obj;
1876 try {
1877 ((IInputMethodClient)args.arg1).onBindMethod(
1878 (InputBindResult)args.arg2);
1879 } catch (RemoteException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001880 Slog.w(TAG, "Client died receiving input method " + args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001881 }
1882 return true;
1883 }
1884 return false;
1885 }
1886
Brandon Ballinger6da35a02009-10-21 00:38:13 -07001887 private boolean isSystemIme(InputMethodInfo inputMethod) {
1888 return (inputMethod.getServiceInfo().applicationInfo.flags
1889 & ApplicationInfo.FLAG_SYSTEM) != 0;
1890 }
1891
Ken Wakasa586f0512011-01-20 22:31:01 +09001892 private static ArrayList<InputMethodSubtype> getSubtypes(InputMethodInfo imi) {
1893 ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>();
1894 final int subtypeCount = imi.getSubtypeCount();
1895 for (int i = 0; i < subtypeCount; ++i) {
1896 subtypes.add(imi.getSubtypeAt(i));
1897 }
1898 return subtypes;
1899 }
1900
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001901 private boolean chooseNewDefaultIMELocked() {
satokd87c2592010-09-29 11:52:06 +09001902 List<InputMethodInfo> enabled = mSettings.getEnabledInputMethodListLocked();
Brandon Ballinger6da35a02009-10-21 00:38:13 -07001903 if (enabled != null && enabled.size() > 0) {
Dianne Hackborn83e48f52010-03-23 23:03:25 -07001904 // We'd prefer to fall back on a system IME, since that is safer.
1905 int i=enabled.size();
1906 while (i > 0) {
1907 i--;
1908 if ((enabled.get(i).getServiceInfo().applicationInfo.flags
1909 & ApplicationInfo.FLAG_SYSTEM) != 0) {
1910 break;
1911 }
1912 }
satokab751aa2010-09-14 19:17:36 +09001913 InputMethodInfo imi = enabled.get(i);
satok03eb319a2010-11-11 18:17:42 +09001914 if (DEBUG) {
1915 Slog.d(TAG, "New default IME was selected: " + imi.getId());
1916 }
satok723a27e2010-11-11 14:58:11 +09001917 resetSelectedInputMethodAndSubtypeLocked(imi.getId());
Brandon Ballinger6da35a02009-10-21 00:38:13 -07001918 return true;
1919 }
1920
1921 return false;
1922 }
1923
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001924 void buildInputMethodListLocked(ArrayList<InputMethodInfo> list,
1925 HashMap<String, InputMethodInfo> map) {
1926 list.clear();
1927 map.clear();
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001928
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001929 PackageManager pm = mContext.getPackageManager();
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08001930 final Configuration config = mRes.getConfiguration();
Amith Yamasanie861ec12010-03-24 21:39:27 -07001931 final boolean haveHardKeyboard = config.keyboard == Configuration.KEYBOARD_QWERTY;
1932 String disabledSysImes = Settings.Secure.getString(mContext.getContentResolver(),
1933 Secure.DISABLED_SYSTEM_INPUT_METHODS);
1934 if (disabledSysImes == null) disabledSysImes = "";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001935
1936 List<ResolveInfo> services = pm.queryIntentServices(
1937 new Intent(InputMethod.SERVICE_INTERFACE),
1938 PackageManager.GET_META_DATA);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001939
satoke7c6998e2011-06-03 17:57:59 +09001940 final HashMap<String, List<InputMethodSubtype>> additionalSubtypes =
1941 mFileManager.getAllAdditionalInputMethodSubtypes();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001942 for (int i = 0; i < services.size(); ++i) {
1943 ResolveInfo ri = services.get(i);
1944 ServiceInfo si = ri.serviceInfo;
1945 ComponentName compName = new ComponentName(si.packageName, si.name);
1946 if (!android.Manifest.permission.BIND_INPUT_METHOD.equals(
1947 si.permission)) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001948 Slog.w(TAG, "Skipping input method " + compName
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001949 + ": it does not require the permission "
1950 + android.Manifest.permission.BIND_INPUT_METHOD);
1951 continue;
1952 }
1953
Joe Onorato8a9b2202010-02-26 18:56:32 -08001954 if (DEBUG) Slog.d(TAG, "Checking " + compName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001955
1956 try {
satoke7c6998e2011-06-03 17:57:59 +09001957 InputMethodInfo p = new InputMethodInfo(mContext, ri, additionalSubtypes);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001958 list.add(p);
Amith Yamasanie861ec12010-03-24 21:39:27 -07001959 final String id = p.getId();
1960 map.put(id, p);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001961
Amith Yamasanie861ec12010-03-24 21:39:27 -07001962 // System IMEs are enabled by default, unless there's a hard keyboard
1963 // and the system IME was explicitly disabled
1964 if (isSystemIme(p) && (!haveHardKeyboard || disabledSysImes.indexOf(id) < 0)) {
1965 setInputMethodEnabledLocked(id, true);
Brandon Ballinger6da35a02009-10-21 00:38:13 -07001966 }
1967
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001968 if (DEBUG) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001969 Slog.d(TAG, "Found a third-party input method " + p);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001970 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001971
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001972 } catch (XmlPullParserException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001973 Slog.w(TAG, "Unable to load input method " + compName, e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001974 } catch (IOException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001975 Slog.w(TAG, "Unable to load input method " + compName, e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001976 }
1977 }
Brandon Ballinger6da35a02009-10-21 00:38:13 -07001978
1979 String defaultIme = Settings.Secure.getString(mContext
1980 .getContentResolver(), Settings.Secure.DEFAULT_INPUT_METHOD);
satok913a8922010-08-26 21:53:41 +09001981 if (!TextUtils.isEmpty(defaultIme) && !map.containsKey(defaultIme)) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001982 if (chooseNewDefaultIMELocked()) {
Brandon Ballinger6da35a02009-10-21 00:38:13 -07001983 updateFromSettingsLocked();
1984 }
1985 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001986 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001987
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001988 // ----------------------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001989
satokab751aa2010-09-14 19:17:36 +09001990 private void showInputMethodMenu() {
1991 showInputMethodMenuInternal(false);
1992 }
1993
1994 private void showInputMethodSubtypeMenu() {
1995 showInputMethodMenuInternal(true);
1996 }
1997
satok217f5482010-12-15 05:19:19 +09001998 private void showInputMethodAndSubtypeEnabler(String inputMethodId) {
Tadashi G. Takaokaf49688f2011-01-20 17:56:13 +09001999 Intent intent = new Intent(Settings.ACTION_INPUT_METHOD_SUBTYPE_SETTINGS);
satok47a44912010-10-06 16:03:58 +09002000 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
satok86417ea2010-10-27 14:11:03 +09002001 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED
2002 | Intent.FLAG_ACTIVITY_CLEAR_TOP);
satok7fee71f2010-12-17 18:54:26 +09002003 if (!TextUtils.isEmpty(inputMethodId)) {
Tadashi G. Takaoka25480202011-01-20 23:13:02 +09002004 intent.putExtra(Settings.EXTRA_INPUT_METHOD_ID, inputMethodId);
satok7fee71f2010-12-17 18:54:26 +09002005 }
satok217f5482010-12-15 05:19:19 +09002006 mContext.startActivity(intent);
2007 }
2008
2009 private void showConfigureInputMethods() {
2010 Intent intent = new Intent(Settings.ACTION_INPUT_METHOD_SETTINGS);
2011 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
2012 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED
2013 | Intent.FLAG_ACTIVITY_CLEAR_TOP);
satok47a44912010-10-06 16:03:58 +09002014 mContext.startActivity(intent);
2015 }
2016
satokab751aa2010-09-14 19:17:36 +09002017 private void showInputMethodMenuInternal(boolean showSubtypes) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002018 if (DEBUG) Slog.v(TAG, "Show switching menu");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002019
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002020 final Context context = mContext;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002021
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002022 final PackageManager pm = context.getPackageManager();
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002023
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002024 String lastInputMethodId = Settings.Secure.getString(context
2025 .getContentResolver(), Settings.Secure.DEFAULT_INPUT_METHOD);
satokab751aa2010-09-14 19:17:36 +09002026 int lastInputMethodSubtypeId = getSelectedInputMethodSubtypeId(lastInputMethodId);
Joe Onorato8a9b2202010-02-26 18:56:32 -08002027 if (DEBUG) Slog.v(TAG, "Current IME: " + lastInputMethodId);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002028
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002029 synchronized (mMethodMap) {
satokbb4aa062011-01-19 21:40:27 +09002030 final HashMap<InputMethodInfo, List<InputMethodSubtype>> immis =
2031 getExplicitlyOrImplicitlyEnabledInputMethodsAndSubtypeListLocked();
satok7f35c8c2010-10-07 21:13:11 +09002032 if (immis == null || immis.size() == 0) {
2033 return;
2034 }
2035
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002036 hideInputMethodMenuLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002037
Ken Wakasa761eb372011-03-04 19:06:18 +09002038 final TreeMap<InputMethodInfo, List<InputMethodSubtype>> sortedImmis =
2039 new TreeMap<InputMethodInfo, List<InputMethodSubtype>>(
2040 new Comparator<InputMethodInfo>() {
2041 @Override
2042 public int compare(InputMethodInfo imi1, InputMethodInfo imi2) {
2043 if (imi2 == null) return 0;
2044 if (imi1 == null) return 1;
2045 if (pm == null) {
2046 return imi1.getId().compareTo(imi2.getId());
2047 }
2048 CharSequence imiId1 = imi1.loadLabel(pm) + "/" + imi1.getId();
2049 CharSequence imiId2 = imi2.loadLabel(pm) + "/" + imi2.getId();
2050 return imiId1.toString().compareTo(imiId2.toString());
2051 }
2052 });
satok913a8922010-08-26 21:53:41 +09002053
Ken Wakasa761eb372011-03-04 19:06:18 +09002054 sortedImmis.putAll(immis);
2055
2056 final ArrayList<Pair<CharSequence, Pair<InputMethodInfo, Integer>>> imList =
2057 new ArrayList<Pair<CharSequence, Pair<InputMethodInfo, Integer>>>();
2058
2059 for (InputMethodInfo imi : sortedImmis.keySet()) {
satokbb4aa062011-01-19 21:40:27 +09002060 if (imi == null) continue;
2061 List<InputMethodSubtype> explicitlyOrImplicitlyEnabledSubtypeList = immis.get(imi);
satok7f35c8c2010-10-07 21:13:11 +09002062 HashSet<String> enabledSubtypeSet = new HashSet<String>();
satokbb4aa062011-01-19 21:40:27 +09002063 for (InputMethodSubtype subtype: explicitlyOrImplicitlyEnabledSubtypeList) {
2064 enabledSubtypeSet.add(String.valueOf(subtype.hashCode()));
satok7f35c8c2010-10-07 21:13:11 +09002065 }
satokbb4aa062011-01-19 21:40:27 +09002066 ArrayList<InputMethodSubtype> subtypes = getSubtypes(imi);
Ken Wakasa81f6e3d2011-03-04 09:59:52 +09002067 final CharSequence label = imi.loadLabel(pm);
satok7f35c8c2010-10-07 21:13:11 +09002068 if (showSubtypes && enabledSubtypeSet.size() > 0) {
satokbb4aa062011-01-19 21:40:27 +09002069 final int subtypeCount = imi.getSubtypeCount();
satok4a28bde2011-06-29 21:03:40 +09002070 if (DEBUG) {
2071 Slog.v(TAG, "Add subtypes: " + subtypeCount + ", " + imi.getId());
2072 }
Ken Wakasa586f0512011-01-20 22:31:01 +09002073 for (int j = 0; j < subtypeCount; ++j) {
satok4a28bde2011-06-29 21:03:40 +09002074 final InputMethodSubtype subtype = imi.getSubtypeAt(j);
2075 final String subtypeHashCode = String.valueOf(subtype.hashCode());
2076 // We show all enabled IMEs and subtypes when an IME is shown.
2077 if (enabledSubtypeSet.contains(subtypeHashCode)
satok7dca6cd2011-06-29 18:06:25 +09002078 && (mInputShown || !subtype.isAuxiliary())) {
Ken Wakasa761eb372011-03-04 19:06:18 +09002079 final CharSequence title;
satok4a28bde2011-06-29 21:03:40 +09002080 final String mode = subtype.getMode();
2081 title = TextUtils.concat(subtype.getDisplayName(context,
2082 imi.getPackageName(), imi.getServiceInfo().applicationInfo),
2083 (TextUtils.isEmpty(label) ? "" : " (" + label + ")"));
Ken Wakasa761eb372011-03-04 19:06:18 +09002084 imList.add(new Pair<CharSequence, Pair<InputMethodInfo, Integer>>(
2085 title, new Pair<InputMethodInfo, Integer>(imi, j)));
satok4a28bde2011-06-29 21:03:40 +09002086 // Removing this subtype from enabledSubtypeSet because we no longer
2087 // need to add an entry of this subtype to imList to avoid duplicated
2088 // entries.
2089 enabledSubtypeSet.remove(subtypeHashCode);
satokab751aa2010-09-14 19:17:36 +09002090 }
satokab751aa2010-09-14 19:17:36 +09002091 }
2092 } else {
Ken Wakasa761eb372011-03-04 19:06:18 +09002093 imList.add(new Pair<CharSequence, Pair<InputMethodInfo, Integer>>(
2094 label, new Pair<InputMethodInfo, Integer>(imi, NOT_A_SUBTYPE_ID)));
satokab751aa2010-09-14 19:17:36 +09002095 }
Dianne Hackborn97106ab2010-03-03 00:08:31 -08002096 }
satok913a8922010-08-26 21:53:41 +09002097
Ken Wakasa761eb372011-03-04 19:06:18 +09002098 final int N = imList.size();
2099 mItems = new CharSequence[N];
2100 for (int i = 0; i < N; ++i) {
2101 mItems[i] = imList.get(i).first;
2102 }
satokab751aa2010-09-14 19:17:36 +09002103 mIms = new InputMethodInfo[N];
2104 mSubtypeIds = new int[N];
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002105 int checkedItem = 0;
2106 for (int i = 0; i < N; ++i) {
Ken Wakasa761eb372011-03-04 19:06:18 +09002107 Pair<InputMethodInfo, Integer> value = imList.get(i).second;
satokab751aa2010-09-14 19:17:36 +09002108 mIms[i] = value.first;
2109 mSubtypeIds[i] = value.second;
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002110 if (mIms[i].getId().equals(lastInputMethodId)) {
satokab751aa2010-09-14 19:17:36 +09002111 int subtypeId = mSubtypeIds[i];
2112 if ((subtypeId == NOT_A_SUBTYPE_ID)
2113 || (lastInputMethodSubtypeId == NOT_A_SUBTYPE_ID && subtypeId == 0)
2114 || (subtypeId == lastInputMethodSubtypeId)) {
2115 checkedItem = i;
2116 }
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002117 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002118 }
satokab751aa2010-09-14 19:17:36 +09002119
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002120 AlertDialog.OnClickListener adocl = new AlertDialog.OnClickListener() {
satok42c5a162011-05-26 16:46:14 +09002121 @Override
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002122 public void onClick(DialogInterface dialog, int which) {
2123 hideInputMethodMenu();
2124 }
2125 };
satokd87c2592010-09-29 11:52:06 +09002126
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002127 TypedArray a = context.obtainStyledAttributes(null,
2128 com.android.internal.R.styleable.DialogPreference,
2129 com.android.internal.R.attr.alertDialogStyle, 0);
2130 mDialogBuilder = new AlertDialog.Builder(context)
2131 .setTitle(com.android.internal.R.string.select_input_method)
2132 .setOnCancelListener(new OnCancelListener() {
satok42c5a162011-05-26 16:46:14 +09002133 @Override
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002134 public void onCancel(DialogInterface dialog) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002135 hideInputMethodMenu();
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002136 }
2137 })
2138 .setIcon(a.getDrawable(
2139 com.android.internal.R.styleable.DialogPreference_dialogTitle));
2140 a.recycle();
satokd87c2592010-09-29 11:52:06 +09002141
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002142 mDialogBuilder.setSingleChoiceItems(mItems, checkedItem,
2143 new AlertDialog.OnClickListener() {
satok42c5a162011-05-26 16:46:14 +09002144 @Override
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002145 public void onClick(DialogInterface dialog, int which) {
2146 synchronized (mMethodMap) {
satokab751aa2010-09-14 19:17:36 +09002147 if (mIms == null || mIms.length <= which
2148 || mSubtypeIds == null || mSubtypeIds.length <= which) {
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002149 return;
2150 }
2151 InputMethodInfo im = mIms[which];
satokab751aa2010-09-14 19:17:36 +09002152 int subtypeId = mSubtypeIds[which];
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002153 hideInputMethodMenu();
2154 if (im != null) {
satokab751aa2010-09-14 19:17:36 +09002155 if ((subtypeId < 0)
Ken Wakasa586f0512011-01-20 22:31:01 +09002156 || (subtypeId >= im.getSubtypeCount())) {
satokab751aa2010-09-14 19:17:36 +09002157 subtypeId = NOT_A_SUBTYPE_ID;
2158 }
2159 setInputMethodLocked(im.getId(), subtypeId);
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002160 }
Dianne Hackborn20cb56e2010-03-04 00:58:29 -08002161 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002162 }
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002163 });
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002164
Dianne Hackborn661cd522011-08-22 00:26:20 -07002165 if (showSubtypes && mKeyguardManager != null && !(mKeyguardManager.isKeyguardLocked()
satokf90a33e2011-07-19 11:55:52 +09002166 && mKeyguardManager.isKeyguardSecure())) {
satok82beadf2010-12-27 19:03:06 +09002167 mDialogBuilder.setPositiveButton(
2168 com.android.internal.R.string.configure_input_methods,
satok7f35c8c2010-10-07 21:13:11 +09002169 new DialogInterface.OnClickListener() {
satok42c5a162011-05-26 16:46:14 +09002170 @Override
satok7f35c8c2010-10-07 21:13:11 +09002171 public void onClick(DialogInterface dialog, int whichButton) {
satok217f5482010-12-15 05:19:19 +09002172 showConfigureInputMethods();
satok7f35c8c2010-10-07 21:13:11 +09002173 }
2174 });
2175 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002176 mSwitchingDialog = mDialogBuilder.create();
Dianne Hackborne3a7f622011-03-03 21:48:24 -08002177 mSwitchingDialog.setCanceledOnTouchOutside(true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002178 mSwitchingDialog.getWindow().setType(
2179 WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG);
Dianne Hackborne3a7f622011-03-03 21:48:24 -08002180 mSwitchingDialog.getWindow().getAttributes().setTitle("Select input method");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002181 mSwitchingDialog.show();
2182 }
2183 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002184
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002185 void hideInputMethodMenu() {
The Android Open Source Project10592532009-03-18 17:39:46 -07002186 synchronized (mMethodMap) {
2187 hideInputMethodMenuLocked();
2188 }
2189 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002190
The Android Open Source Project10592532009-03-18 17:39:46 -07002191 void hideInputMethodMenuLocked() {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002192 if (DEBUG) Slog.v(TAG, "Hide switching menu");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002193
The Android Open Source Project10592532009-03-18 17:39:46 -07002194 if (mSwitchingDialog != null) {
2195 mSwitchingDialog.dismiss();
2196 mSwitchingDialog = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002197 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002198
The Android Open Source Project10592532009-03-18 17:39:46 -07002199 mDialogBuilder = null;
2200 mItems = null;
2201 mIms = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002202 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002203
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002204 // ----------------------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002205
satok42c5a162011-05-26 16:46:14 +09002206 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002207 public boolean setInputMethodEnabled(String id, boolean enabled) {
2208 synchronized (mMethodMap) {
2209 if (mContext.checkCallingOrSelfPermission(
2210 android.Manifest.permission.WRITE_SECURE_SETTINGS)
2211 != PackageManager.PERMISSION_GRANTED) {
2212 throw new SecurityException(
2213 "Requires permission "
2214 + android.Manifest.permission.WRITE_SECURE_SETTINGS);
2215 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002216
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002217 long ident = Binder.clearCallingIdentity();
2218 try {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002219 return setInputMethodEnabledLocked(id, enabled);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002220 } finally {
2221 Binder.restoreCallingIdentity(ident);
2222 }
2223 }
2224 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002225
2226 boolean setInputMethodEnabledLocked(String id, boolean enabled) {
2227 // Make sure this is a valid input method.
2228 InputMethodInfo imm = mMethodMap.get(id);
2229 if (imm == null) {
satokd87c2592010-09-29 11:52:06 +09002230 throw new IllegalArgumentException("Unknown id: " + mCurMethodId);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002231 }
2232
satokd87c2592010-09-29 11:52:06 +09002233 List<Pair<String, ArrayList<String>>> enabledInputMethodsList = mSettings
2234 .getEnabledInputMethodsAndSubtypeListLocked();
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002235
satokd87c2592010-09-29 11:52:06 +09002236 if (enabled) {
2237 for (Pair<String, ArrayList<String>> pair: enabledInputMethodsList) {
2238 if (pair.first.equals(id)) {
2239 // We are enabling this input method, but it is already enabled.
2240 // Nothing to do. The previous state was enabled.
2241 return true;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002242 }
2243 }
satokd87c2592010-09-29 11:52:06 +09002244 mSettings.appendAndPutEnabledInputMethodLocked(id, false);
2245 // Previous state was disabled.
2246 return false;
2247 } else {
2248 StringBuilder builder = new StringBuilder();
2249 if (mSettings.buildAndPutEnabledInputMethodsStrRemovingIdLocked(
2250 builder, enabledInputMethodsList, id)) {
2251 // Disabled input method is currently selected, switch to another one.
2252 String selId = Settings.Secure.getString(mContext.getContentResolver(),
2253 Settings.Secure.DEFAULT_INPUT_METHOD);
satok03eb319a2010-11-11 18:17:42 +09002254 if (id.equals(selId) && !chooseNewDefaultIMELocked()) {
2255 Slog.i(TAG, "Can't find new IME, unsetting the current input method.");
2256 resetSelectedInputMethodAndSubtypeLocked("");
satokd87c2592010-09-29 11:52:06 +09002257 }
2258 // Previous state was enabled.
2259 return true;
2260 } else {
2261 // We are disabling the input method but it is already disabled.
2262 // Nothing to do. The previous state was disabled.
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002263 return false;
2264 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002265 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002266 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002267
satok57ffc002011-01-25 00:11:47 +09002268 private boolean canAddToLastInputMethod(InputMethodSubtype subtype) {
2269 if (subtype == null) return true;
satok9b415792011-05-30 12:37:52 +09002270 return !subtype.isAuxiliary();
satok57ffc002011-01-25 00:11:47 +09002271 }
2272
satok723a27e2010-11-11 14:58:11 +09002273 private void saveCurrentInputMethodAndSubtypeToHistory() {
2274 String subtypeId = NOT_A_SUBTYPE_ID_STR;
2275 if (mCurrentSubtype != null) {
2276 subtypeId = String.valueOf(mCurrentSubtype.hashCode());
2277 }
satok57ffc002011-01-25 00:11:47 +09002278 if (canAddToLastInputMethod(mCurrentSubtype)) {
2279 mSettings.addSubtypeToHistory(mCurMethodId, subtypeId);
2280 }
satokab751aa2010-09-14 19:17:36 +09002281 }
2282
satok723a27e2010-11-11 14:58:11 +09002283 private void setSelectedInputMethodAndSubtypeLocked(InputMethodInfo imi, int subtypeId,
2284 boolean setSubtypeOnly) {
2285 // Update the history of InputMethod and Subtype
2286 saveCurrentInputMethodAndSubtypeToHistory();
2287
2288 // Set Subtype here
2289 if (imi == null || subtypeId < 0) {
2290 mSettings.putSelectedSubtype(NOT_A_SUBTYPE_ID);
Tadashi G. Takaoka0ba75bb2010-11-09 12:19:32 -08002291 mCurrentSubtype = null;
satok723a27e2010-11-11 14:58:11 +09002292 } else {
Ken Wakasa586f0512011-01-20 22:31:01 +09002293 if (subtypeId < imi.getSubtypeCount()) {
2294 InputMethodSubtype subtype = imi.getSubtypeAt(subtypeId);
2295 mSettings.putSelectedSubtype(subtype.hashCode());
2296 mCurrentSubtype = subtype;
satok723a27e2010-11-11 14:58:11 +09002297 } else {
2298 mSettings.putSelectedSubtype(NOT_A_SUBTYPE_ID);
2299 mCurrentSubtype = null;
2300 }
satokab751aa2010-09-14 19:17:36 +09002301 }
satok723a27e2010-11-11 14:58:11 +09002302
2303 if (!setSubtypeOnly) {
2304 // Set InputMethod here
2305 mSettings.putSelectedInputMethod(imi != null ? imi.getId() : "");
2306 }
2307 }
2308
2309 private void resetSelectedInputMethodAndSubtypeLocked(String newDefaultIme) {
2310 InputMethodInfo imi = mMethodMap.get(newDefaultIme);
2311 int lastSubtypeId = NOT_A_SUBTYPE_ID;
2312 // newDefaultIme is empty when there is no candidate for the selected IME.
2313 if (imi != null && !TextUtils.isEmpty(newDefaultIme)) {
2314 String subtypeHashCode = mSettings.getLastSubtypeForInputMethodLocked(newDefaultIme);
2315 if (subtypeHashCode != null) {
2316 try {
2317 lastSubtypeId = getSubtypeIdFromHashCode(
2318 imi, Integer.valueOf(subtypeHashCode));
2319 } catch (NumberFormatException e) {
2320 Slog.w(TAG, "HashCode for subtype looks broken: " + subtypeHashCode, e);
2321 }
2322 }
2323 }
2324 setSelectedInputMethodAndSubtypeLocked(imi, lastSubtypeId, false);
satokab751aa2010-09-14 19:17:36 +09002325 }
2326
2327 private int getSelectedInputMethodSubtypeId(String id) {
2328 InputMethodInfo imi = mMethodMap.get(id);
2329 if (imi == null) {
2330 return NOT_A_SUBTYPE_ID;
2331 }
satokab751aa2010-09-14 19:17:36 +09002332 int subtypeId;
2333 try {
2334 subtypeId = Settings.Secure.getInt(mContext.getContentResolver(),
2335 Settings.Secure.SELECTED_INPUT_METHOD_SUBTYPE);
2336 } catch (SettingNotFoundException e) {
2337 return NOT_A_SUBTYPE_ID;
2338 }
satok723a27e2010-11-11 14:58:11 +09002339 return getSubtypeIdFromHashCode(imi, subtypeId);
2340 }
2341
2342 private int getSubtypeIdFromHashCode(InputMethodInfo imi, int subtypeHashCode) {
satok28203512010-11-24 11:06:49 +09002343 if (imi != null) {
Ken Wakasa586f0512011-01-20 22:31:01 +09002344 final int subtypeCount = imi.getSubtypeCount();
2345 for (int i = 0; i < subtypeCount; ++i) {
2346 InputMethodSubtype ims = imi.getSubtypeAt(i);
satok28203512010-11-24 11:06:49 +09002347 if (subtypeHashCode == ims.hashCode()) {
2348 return i;
2349 }
satokab751aa2010-09-14 19:17:36 +09002350 }
2351 }
2352 return NOT_A_SUBTYPE_ID;
2353 }
2354
satokdf31ae62011-01-15 06:19:44 +09002355 private static ArrayList<InputMethodSubtype> getApplicableSubtypesLocked(
2356 Resources res, List<InputMethodSubtype> subtypes) {
2357 final String systemLocale = res.getConfiguration().locale.toString();
satok3da92232011-01-11 22:46:30 +09002358 if (TextUtils.isEmpty(systemLocale)) return new ArrayList<InputMethodSubtype>();
2359 HashMap<String, InputMethodSubtype> applicableModeAndSubtypesMap =
2360 new HashMap<String, InputMethodSubtype>();
satok16331c82010-12-20 23:48:46 +09002361 final int N = subtypes.size();
2362 boolean containsKeyboardSubtype = false;
2363 for (int i = 0; i < N; ++i) {
2364 InputMethodSubtype subtype = subtypes.get(i);
satok3da92232011-01-11 22:46:30 +09002365 final String locale = subtype.getLocale();
2366 final String mode = subtype.getMode();
2367 // When system locale starts with subtype's locale, that subtype will be applicable
2368 // for system locale
2369 // For instance, it's clearly applicable for cases like system locale = en_US and
2370 // subtype = en, but it is not necessarily considered applicable for cases like system
2371 // locale = en and subtype = en_US.
2372 // We just call systemLocale.startsWith(locale) in this function because there is no
2373 // need to find applicable subtypes aggressively unlike
2374 // findLastResortApplicableSubtypeLocked.
2375 if (systemLocale.startsWith(locale)) {
2376 InputMethodSubtype applicableSubtype = applicableModeAndSubtypesMap.get(mode);
2377 // If more applicable subtypes are contained, skip.
2378 if (applicableSubtype != null
2379 && systemLocale.equals(applicableSubtype.getLocale())) continue;
2380 applicableModeAndSubtypesMap.put(mode, subtype);
satok16331c82010-12-20 23:48:46 +09002381 if (!containsKeyboardSubtype
2382 && SUBTYPE_MODE_KEYBOARD.equalsIgnoreCase(subtype.getMode())) {
2383 containsKeyboardSubtype = true;
2384 }
2385 }
2386 }
satok4a28bde2011-06-29 21:03:40 +09002387 final ArrayList<InputMethodSubtype> applicableSubtypes = new ArrayList<InputMethodSubtype>(
satok3da92232011-01-11 22:46:30 +09002388 applicableModeAndSubtypesMap.values());
satok16331c82010-12-20 23:48:46 +09002389 if (!containsKeyboardSubtype) {
2390 InputMethodSubtype lastResortKeyboardSubtype = findLastResortApplicableSubtypeLocked(
satokdf31ae62011-01-15 06:19:44 +09002391 res, subtypes, SUBTYPE_MODE_KEYBOARD, systemLocale, true);
satok16331c82010-12-20 23:48:46 +09002392 if (lastResortKeyboardSubtype != null) {
2393 applicableSubtypes.add(lastResortKeyboardSubtype);
2394 }
2395 }
2396 return applicableSubtypes;
2397 }
2398
satok4e4569d2010-11-19 18:45:53 +09002399 /**
2400 * If there are no selected subtypes, tries finding the most applicable one according to the
2401 * given locale.
2402 * @param subtypes this function will search the most applicable subtype in subtypes
2403 * @param mode subtypes will be filtered by mode
2404 * @param locale subtypes will be filtered by locale
satok7599a7f2010-12-22 13:45:23 +09002405 * @param canIgnoreLocaleAsLastResort if this function can't find the most applicable subtype,
2406 * it will return the first subtype matched with mode
satok4e4569d2010-11-19 18:45:53 +09002407 * @return the most applicable subtypeId
2408 */
satokdf31ae62011-01-15 06:19:44 +09002409 private static InputMethodSubtype findLastResortApplicableSubtypeLocked(
2410 Resources res, List<InputMethodSubtype> subtypes, String mode, String locale,
satok7599a7f2010-12-22 13:45:23 +09002411 boolean canIgnoreLocaleAsLastResort) {
satok8fbb1e82010-11-02 23:15:58 +09002412 if (subtypes == null || subtypes.size() == 0) {
satokcd7cd292010-11-20 15:46:23 +09002413 return null;
satok8fbb1e82010-11-02 23:15:58 +09002414 }
satok4e4569d2010-11-19 18:45:53 +09002415 if (TextUtils.isEmpty(locale)) {
satokdf31ae62011-01-15 06:19:44 +09002416 locale = res.getConfiguration().locale.toString();
satok4e4569d2010-11-19 18:45:53 +09002417 }
satok8fbb1e82010-11-02 23:15:58 +09002418 final String language = locale.substring(0, 2);
2419 boolean partialMatchFound = false;
satokcd7cd292010-11-20 15:46:23 +09002420 InputMethodSubtype applicableSubtype = null;
satok7599a7f2010-12-22 13:45:23 +09002421 InputMethodSubtype firstMatchedModeSubtype = null;
satok16331c82010-12-20 23:48:46 +09002422 final int N = subtypes.size();
2423 for (int i = 0; i < N; ++i) {
satokcd7cd292010-11-20 15:46:23 +09002424 InputMethodSubtype subtype = subtypes.get(i);
2425 final String subtypeLocale = subtype.getLocale();
satokd8713432011-01-18 00:55:13 +09002426 // An applicable subtype should match "mode". If mode is null, mode will be ignored,
2427 // and all subtypes with all modes can be candidates.
2428 if (mode == null || subtypes.get(i).getMode().equalsIgnoreCase(mode)) {
satok7599a7f2010-12-22 13:45:23 +09002429 if (firstMatchedModeSubtype == null) {
2430 firstMatchedModeSubtype = subtype;
2431 }
satok9ef02832010-11-04 21:17:48 +09002432 if (locale.equals(subtypeLocale)) {
2433 // Exact match (e.g. system locale is "en_US" and subtype locale is "en_US")
satokcd7cd292010-11-20 15:46:23 +09002434 applicableSubtype = subtype;
satok9ef02832010-11-04 21:17:48 +09002435 break;
2436 } else if (!partialMatchFound && subtypeLocale.startsWith(language)) {
2437 // Partial match (e.g. system locale is "en_US" and subtype locale is "en")
satokcd7cd292010-11-20 15:46:23 +09002438 applicableSubtype = subtype;
satok9ef02832010-11-04 21:17:48 +09002439 partialMatchFound = true;
2440 }
satok8fbb1e82010-11-02 23:15:58 +09002441 }
2442 }
2443
satok7599a7f2010-12-22 13:45:23 +09002444 if (applicableSubtype == null && canIgnoreLocaleAsLastResort) {
2445 return firstMatchedModeSubtype;
satok16331c82010-12-20 23:48:46 +09002446 }
2447
satok8fbb1e82010-11-02 23:15:58 +09002448 // The first subtype applicable to the system locale will be defined as the most applicable
2449 // subtype.
2450 if (DEBUG) {
satok16331c82010-12-20 23:48:46 +09002451 if (applicableSubtype != null) {
2452 Slog.d(TAG, "Applicable InputMethodSubtype was found: "
2453 + applicableSubtype.getMode() + "," + applicableSubtype.getLocale());
2454 }
satok8fbb1e82010-11-02 23:15:58 +09002455 }
satokcd7cd292010-11-20 15:46:23 +09002456 return applicableSubtype;
satok8fbb1e82010-11-02 23:15:58 +09002457 }
2458
satok4e4569d2010-11-19 18:45:53 +09002459 // If there are no selected shortcuts, tries finding the most applicable ones.
2460 private Pair<InputMethodInfo, InputMethodSubtype>
2461 findLastResortApplicableShortcutInputMethodAndSubtypeLocked(String mode) {
2462 List<InputMethodInfo> imis = mSettings.getEnabledInputMethodListLocked();
2463 InputMethodInfo mostApplicableIMI = null;
satokcd7cd292010-11-20 15:46:23 +09002464 InputMethodSubtype mostApplicableSubtype = null;
satok4e4569d2010-11-19 18:45:53 +09002465 boolean foundInSystemIME = false;
2466
2467 // Search applicable subtype for each InputMethodInfo
2468 for (InputMethodInfo imi: imis) {
satok7599a7f2010-12-22 13:45:23 +09002469 final String imiId = imi.getId();
2470 if (foundInSystemIME && !imiId.equals(mCurMethodId)) {
2471 continue;
2472 }
satokcd7cd292010-11-20 15:46:23 +09002473 InputMethodSubtype subtype = null;
satokdf31ae62011-01-15 06:19:44 +09002474 final List<InputMethodSubtype> enabledSubtypes =
2475 getEnabledInputMethodSubtypeList(imi, true);
2476 // 1. Search by the current subtype's locale from enabledSubtypes.
satok4e4569d2010-11-19 18:45:53 +09002477 if (mCurrentSubtype != null) {
satokcd7cd292010-11-20 15:46:23 +09002478 subtype = findLastResortApplicableSubtypeLocked(
satokdf31ae62011-01-15 06:19:44 +09002479 mRes, enabledSubtypes, mode, mCurrentSubtype.getLocale(), false);
satok4e4569d2010-11-19 18:45:53 +09002480 }
satokdf31ae62011-01-15 06:19:44 +09002481 // 2. Search by the system locale from enabledSubtypes.
2482 // 3. Search the first enabled subtype matched with mode from enabledSubtypes.
satokcd7cd292010-11-20 15:46:23 +09002483 if (subtype == null) {
2484 subtype = findLastResortApplicableSubtypeLocked(
satokdf31ae62011-01-15 06:19:44 +09002485 mRes, enabledSubtypes, mode, null, true);
satok4e4569d2010-11-19 18:45:53 +09002486 }
satok7599a7f2010-12-22 13:45:23 +09002487 // 4. Search by the current subtype's locale from all subtypes.
2488 if (subtype == null && mCurrentSubtype != null) {
2489 subtype = findLastResortApplicableSubtypeLocked(
Ken Wakasa586f0512011-01-20 22:31:01 +09002490 mRes, getSubtypes(imi), mode, mCurrentSubtype.getLocale(), false);
satok7599a7f2010-12-22 13:45:23 +09002491 }
2492 // 5. Search by the system locale from all subtypes.
2493 // 6. Search the first enabled subtype matched with mode from all subtypes.
satokcd7cd292010-11-20 15:46:23 +09002494 if (subtype == null) {
satok7599a7f2010-12-22 13:45:23 +09002495 subtype = findLastResortApplicableSubtypeLocked(
Ken Wakasa586f0512011-01-20 22:31:01 +09002496 mRes, getSubtypes(imi), mode, null, true);
satok4e4569d2010-11-19 18:45:53 +09002497 }
satokcd7cd292010-11-20 15:46:23 +09002498 if (subtype != null) {
satok7599a7f2010-12-22 13:45:23 +09002499 if (imiId.equals(mCurMethodId)) {
satok4e4569d2010-11-19 18:45:53 +09002500 // The current input method is the most applicable IME.
2501 mostApplicableIMI = imi;
satokcd7cd292010-11-20 15:46:23 +09002502 mostApplicableSubtype = subtype;
satok4e4569d2010-11-19 18:45:53 +09002503 break;
satok7599a7f2010-12-22 13:45:23 +09002504 } else if (!foundInSystemIME) {
satok4e4569d2010-11-19 18:45:53 +09002505 // The system input method is 2nd applicable IME.
2506 mostApplicableIMI = imi;
satokcd7cd292010-11-20 15:46:23 +09002507 mostApplicableSubtype = subtype;
satok7599a7f2010-12-22 13:45:23 +09002508 if ((imi.getServiceInfo().applicationInfo.flags
2509 & ApplicationInfo.FLAG_SYSTEM) != 0) {
2510 foundInSystemIME = true;
2511 }
satok4e4569d2010-11-19 18:45:53 +09002512 }
2513 }
2514 }
2515 if (DEBUG) {
satokcd7cd292010-11-20 15:46:23 +09002516 if (mostApplicableIMI != null) {
2517 Slog.w(TAG, "Most applicable shortcut input method was:"
2518 + mostApplicableIMI.getId());
2519 if (mostApplicableSubtype != null) {
2520 Slog.w(TAG, "Most applicable shortcut input method subtype was:"
2521 + "," + mostApplicableSubtype.getMode() + ","
2522 + mostApplicableSubtype.getLocale());
2523 }
2524 }
satok4e4569d2010-11-19 18:45:53 +09002525 }
satokcd7cd292010-11-20 15:46:23 +09002526 if (mostApplicableIMI != null) {
satok4e4569d2010-11-19 18:45:53 +09002527 return new Pair<InputMethodInfo, InputMethodSubtype> (mostApplicableIMI,
satokcd7cd292010-11-20 15:46:23 +09002528 mostApplicableSubtype);
satok4e4569d2010-11-19 18:45:53 +09002529 } else {
2530 return null;
2531 }
2532 }
2533
satokab751aa2010-09-14 19:17:36 +09002534 /**
2535 * @return Return the current subtype of this input method.
2536 */
satok42c5a162011-05-26 16:46:14 +09002537 @Override
satokab751aa2010-09-14 19:17:36 +09002538 public InputMethodSubtype getCurrentInputMethodSubtype() {
satok4e4569d2010-11-19 18:45:53 +09002539 boolean subtypeIsSelected = false;
2540 try {
2541 subtypeIsSelected = Settings.Secure.getInt(mContext.getContentResolver(),
2542 Settings.Secure.SELECTED_INPUT_METHOD_SUBTYPE) != NOT_A_SUBTYPE_ID;
2543 } catch (SettingNotFoundException e) {
2544 }
satok3ef8b292010-11-23 06:06:29 +09002545 synchronized (mMethodMap) {
satok3ef8b292010-11-23 06:06:29 +09002546 if (!subtypeIsSelected || mCurrentSubtype == null) {
satok4e4569d2010-11-19 18:45:53 +09002547 String lastInputMethodId = Settings.Secure.getString(
2548 mContext.getContentResolver(), Settings.Secure.DEFAULT_INPUT_METHOD);
satok3ef8b292010-11-23 06:06:29 +09002549 int subtypeId = getSelectedInputMethodSubtypeId(lastInputMethodId);
2550 if (subtypeId == NOT_A_SUBTYPE_ID) {
satok4e4569d2010-11-19 18:45:53 +09002551 InputMethodInfo imi = mMethodMap.get(lastInputMethodId);
2552 if (imi != null) {
2553 // If there are no selected subtypes, the framework will try to find
satokd8713432011-01-18 00:55:13 +09002554 // the most applicable subtype from explicitly or implicitly enabled
2555 // subtypes.
2556 List<InputMethodSubtype> explicitlyOrImplicitlyEnabledSubtypes =
2557 getEnabledInputMethodSubtypeList(imi, true);
2558 // If there is only one explicitly or implicitly enabled subtype,
2559 // just returns it.
2560 if (explicitlyOrImplicitlyEnabledSubtypes.size() == 1) {
2561 mCurrentSubtype = explicitlyOrImplicitlyEnabledSubtypes.get(0);
2562 } else if (explicitlyOrImplicitlyEnabledSubtypes.size() > 1) {
2563 mCurrentSubtype = findLastResortApplicableSubtypeLocked(
2564 mRes, explicitlyOrImplicitlyEnabledSubtypes,
2565 SUBTYPE_MODE_KEYBOARD, null, true);
2566 if (mCurrentSubtype == null) {
2567 mCurrentSubtype = findLastResortApplicableSubtypeLocked(
2568 mRes, explicitlyOrImplicitlyEnabledSubtypes, null, null,
2569 true);
2570 }
2571 }
satok4e4569d2010-11-19 18:45:53 +09002572 }
satokcd7cd292010-11-20 15:46:23 +09002573 } else {
satok3ef8b292010-11-23 06:06:29 +09002574 mCurrentSubtype =
Ken Wakasa586f0512011-01-20 22:31:01 +09002575 getSubtypes(mMethodMap.get(lastInputMethodId)).get(subtypeId);
satok3ef8b292010-11-23 06:06:29 +09002576 }
satok8fbb1e82010-11-02 23:15:58 +09002577 }
satok3ef8b292010-11-23 06:06:29 +09002578 return mCurrentSubtype;
satok8fbb1e82010-11-02 23:15:58 +09002579 }
satokab751aa2010-09-14 19:17:36 +09002580 }
2581
satokf3db1af2010-11-23 13:34:33 +09002582 private void addShortcutInputMethodAndSubtypes(InputMethodInfo imi,
2583 InputMethodSubtype subtype) {
2584 if (mShortcutInputMethodsAndSubtypes.containsKey(imi)) {
2585 mShortcutInputMethodsAndSubtypes.get(imi).add(subtype);
2586 } else {
2587 ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>();
2588 subtypes.add(subtype);
2589 mShortcutInputMethodsAndSubtypes.put(imi, subtypes);
2590 }
2591 }
2592
satok4e4569d2010-11-19 18:45:53 +09002593 // TODO: We should change the return type from List to List<Parcelable>
satoke7c6998e2011-06-03 17:57:59 +09002594 @Override
satok4e4569d2010-11-19 18:45:53 +09002595 public List getShortcutInputMethodsAndSubtypes() {
2596 synchronized (mMethodMap) {
satok3da92232011-01-11 22:46:30 +09002597 ArrayList<Object> ret = new ArrayList<Object>();
satokf3db1af2010-11-23 13:34:33 +09002598 if (mShortcutInputMethodsAndSubtypes.size() == 0) {
satok4e4569d2010-11-19 18:45:53 +09002599 // If there are no selected shortcut subtypes, the framework will try to find
2600 // the most applicable subtype from all subtypes whose mode is
2601 // SUBTYPE_MODE_VOICE. This is an exceptional case, so we will hardcode the mode.
satokf3db1af2010-11-23 13:34:33 +09002602 Pair<InputMethodInfo, InputMethodSubtype> info =
2603 findLastResortApplicableShortcutInputMethodAndSubtypeLocked(
2604 SUBTYPE_MODE_VOICE);
satok7599a7f2010-12-22 13:45:23 +09002605 if (info != null) {
satok3da92232011-01-11 22:46:30 +09002606 ret.add(info.first);
2607 ret.add(info.second);
satok7599a7f2010-12-22 13:45:23 +09002608 }
satok3da92232011-01-11 22:46:30 +09002609 return ret;
satokf3db1af2010-11-23 13:34:33 +09002610 }
satokf3db1af2010-11-23 13:34:33 +09002611 for (InputMethodInfo imi: mShortcutInputMethodsAndSubtypes.keySet()) {
2612 ret.add(imi);
2613 for (InputMethodSubtype subtype: mShortcutInputMethodsAndSubtypes.get(imi)) {
2614 ret.add(subtype);
satok4e4569d2010-11-19 18:45:53 +09002615 }
2616 }
satokf3db1af2010-11-23 13:34:33 +09002617 return ret;
satok4e4569d2010-11-19 18:45:53 +09002618 }
2619 }
2620
satok42c5a162011-05-26 16:46:14 +09002621 @Override
satokb66d2872010-11-10 01:04:04 +09002622 public boolean setCurrentInputMethodSubtype(InputMethodSubtype subtype) {
2623 synchronized (mMethodMap) {
2624 if (subtype != null && mCurMethodId != null) {
2625 InputMethodInfo imi = mMethodMap.get(mCurMethodId);
2626 int subtypeId = getSubtypeIdFromHashCode(imi, subtype.hashCode());
2627 if (subtypeId != NOT_A_SUBTYPE_ID) {
2628 setInputMethodLocked(mCurMethodId, subtypeId);
2629 return true;
2630 }
2631 }
2632 return false;
2633 }
2634 }
2635
satokd87c2592010-09-29 11:52:06 +09002636 /**
2637 * Utility class for putting and getting settings for InputMethod
2638 * TODO: Move all putters and getters of settings to this class.
2639 */
2640 private static class InputMethodSettings {
2641 // The string for enabled input method is saved as follows:
2642 // example: ("ime0;subtype0;subtype1;subtype2:ime1:ime2;subtype0")
2643 private static final char INPUT_METHOD_SEPARATER = ':';
2644 private static final char INPUT_METHOD_SUBTYPE_SEPARATER = ';';
satok723a27e2010-11-11 14:58:11 +09002645 private final TextUtils.SimpleStringSplitter mInputMethodSplitter =
satokd87c2592010-09-29 11:52:06 +09002646 new TextUtils.SimpleStringSplitter(INPUT_METHOD_SEPARATER);
2647
satok723a27e2010-11-11 14:58:11 +09002648 private final TextUtils.SimpleStringSplitter mSubtypeSplitter =
satokd87c2592010-09-29 11:52:06 +09002649 new TextUtils.SimpleStringSplitter(INPUT_METHOD_SUBTYPE_SEPARATER);
2650
satokdf31ae62011-01-15 06:19:44 +09002651 private final Resources mRes;
satokd87c2592010-09-29 11:52:06 +09002652 private final ContentResolver mResolver;
2653 private final HashMap<String, InputMethodInfo> mMethodMap;
2654 private final ArrayList<InputMethodInfo> mMethodList;
2655
2656 private String mEnabledInputMethodsStrCache;
2657
2658 private static void buildEnabledInputMethodsSettingString(
2659 StringBuilder builder, Pair<String, ArrayList<String>> pair) {
2660 String id = pair.first;
2661 ArrayList<String> subtypes = pair.second;
2662 builder.append(id);
satok57c767c2010-11-01 22:34:08 +09002663 // Inputmethod and subtypes are saved in the settings as follows:
2664 // ime0;subtype0;subtype1:ime1;subtype0:ime2:ime3;subtype0;subtype1
2665 for (String subtypeId: subtypes) {
2666 builder.append(INPUT_METHOD_SUBTYPE_SEPARATER).append(subtypeId);
satokd87c2592010-09-29 11:52:06 +09002667 }
2668 }
2669
2670 public InputMethodSettings(
satokdf31ae62011-01-15 06:19:44 +09002671 Resources res, ContentResolver resolver,
2672 HashMap<String, InputMethodInfo> methodMap, ArrayList<InputMethodInfo> methodList) {
2673 mRes = res;
satokd87c2592010-09-29 11:52:06 +09002674 mResolver = resolver;
2675 mMethodMap = methodMap;
2676 mMethodList = methodList;
2677 }
2678
2679 public List<InputMethodInfo> getEnabledInputMethodListLocked() {
2680 return createEnabledInputMethodListLocked(
2681 getEnabledInputMethodsAndSubtypeListLocked());
2682 }
2683
satok7f35c8c2010-10-07 21:13:11 +09002684 public List<Pair<InputMethodInfo, ArrayList<String>>>
satok67ddf9c2010-11-17 09:45:54 +09002685 getEnabledInputMethodAndSubtypeHashCodeListLocked() {
2686 return createEnabledInputMethodAndSubtypeHashCodeListLocked(
satok7f35c8c2010-10-07 21:13:11 +09002687 getEnabledInputMethodsAndSubtypeListLocked());
2688 }
2689
satok67ddf9c2010-11-17 09:45:54 +09002690 public List<InputMethodSubtype> getEnabledInputMethodSubtypeListLocked(
2691 InputMethodInfo imi) {
2692 List<Pair<String, ArrayList<String>>> imsList =
2693 getEnabledInputMethodsAndSubtypeListLocked();
2694 ArrayList<InputMethodSubtype> enabledSubtypes =
2695 new ArrayList<InputMethodSubtype>();
satok884ef9a2010-11-18 10:39:46 +09002696 if (imi != null) {
2697 for (Pair<String, ArrayList<String>> imsPair : imsList) {
2698 InputMethodInfo info = mMethodMap.get(imsPair.first);
2699 if (info != null && info.getId().equals(imi.getId())) {
Ken Wakasa586f0512011-01-20 22:31:01 +09002700 final int subtypeCount = info.getSubtypeCount();
2701 for (int i = 0; i < subtypeCount; ++i) {
2702 InputMethodSubtype ims = info.getSubtypeAt(i);
satok884ef9a2010-11-18 10:39:46 +09002703 for (String s: imsPair.second) {
2704 if (String.valueOf(ims.hashCode()).equals(s)) {
2705 enabledSubtypes.add(ims);
2706 }
satok67ddf9c2010-11-17 09:45:54 +09002707 }
2708 }
satok884ef9a2010-11-18 10:39:46 +09002709 break;
satok67ddf9c2010-11-17 09:45:54 +09002710 }
satok67ddf9c2010-11-17 09:45:54 +09002711 }
2712 }
2713 return enabledSubtypes;
2714 }
2715
satokd87c2592010-09-29 11:52:06 +09002716 // At the initial boot, the settings for input methods are not set,
2717 // so we need to enable IME in that case.
2718 public void enableAllIMEsIfThereIsNoEnabledIME() {
2719 if (TextUtils.isEmpty(getEnabledInputMethodsStr())) {
2720 StringBuilder sb = new StringBuilder();
2721 final int N = mMethodList.size();
2722 for (int i = 0; i < N; i++) {
2723 InputMethodInfo imi = mMethodList.get(i);
2724 Slog.i(TAG, "Adding: " + imi.getId());
2725 if (i > 0) sb.append(':');
2726 sb.append(imi.getId());
2727 }
2728 putEnabledInputMethodsStr(sb.toString());
2729 }
2730 }
2731
satokbb4aa062011-01-19 21:40:27 +09002732 private List<Pair<String, ArrayList<String>>> getEnabledInputMethodsAndSubtypeListLocked() {
satokd87c2592010-09-29 11:52:06 +09002733 ArrayList<Pair<String, ArrayList<String>>> imsList
2734 = new ArrayList<Pair<String, ArrayList<String>>>();
2735 final String enabledInputMethodsStr = getEnabledInputMethodsStr();
2736 if (TextUtils.isEmpty(enabledInputMethodsStr)) {
2737 return imsList;
2738 }
satok723a27e2010-11-11 14:58:11 +09002739 mInputMethodSplitter.setString(enabledInputMethodsStr);
2740 while (mInputMethodSplitter.hasNext()) {
2741 String nextImsStr = mInputMethodSplitter.next();
2742 mSubtypeSplitter.setString(nextImsStr);
2743 if (mSubtypeSplitter.hasNext()) {
satokd87c2592010-09-29 11:52:06 +09002744 ArrayList<String> subtypeHashes = new ArrayList<String>();
2745 // The first element is ime id.
satok723a27e2010-11-11 14:58:11 +09002746 String imeId = mSubtypeSplitter.next();
2747 while (mSubtypeSplitter.hasNext()) {
2748 subtypeHashes.add(mSubtypeSplitter.next());
satokd87c2592010-09-29 11:52:06 +09002749 }
2750 imsList.add(new Pair<String, ArrayList<String>>(imeId, subtypeHashes));
2751 }
2752 }
2753 return imsList;
2754 }
2755
2756 public void appendAndPutEnabledInputMethodLocked(String id, boolean reloadInputMethodStr) {
2757 if (reloadInputMethodStr) {
2758 getEnabledInputMethodsStr();
2759 }
2760 if (TextUtils.isEmpty(mEnabledInputMethodsStrCache)) {
2761 // Add in the newly enabled input method.
2762 putEnabledInputMethodsStr(id);
2763 } else {
2764 putEnabledInputMethodsStr(
2765 mEnabledInputMethodsStrCache + INPUT_METHOD_SEPARATER + id);
2766 }
2767 }
2768
2769 /**
2770 * Build and put a string of EnabledInputMethods with removing specified Id.
2771 * @return the specified id was removed or not.
2772 */
2773 public boolean buildAndPutEnabledInputMethodsStrRemovingIdLocked(
2774 StringBuilder builder, List<Pair<String, ArrayList<String>>> imsList, String id) {
2775 boolean isRemoved = false;
2776 boolean needsAppendSeparator = false;
2777 for (Pair<String, ArrayList<String>> ims: imsList) {
2778 String curId = ims.first;
2779 if (curId.equals(id)) {
2780 // We are disabling this input method, and it is
2781 // currently enabled. Skip it to remove from the
2782 // new list.
2783 isRemoved = true;
2784 } else {
2785 if (needsAppendSeparator) {
2786 builder.append(INPUT_METHOD_SEPARATER);
2787 } else {
2788 needsAppendSeparator = true;
2789 }
2790 buildEnabledInputMethodsSettingString(builder, ims);
2791 }
2792 }
2793 if (isRemoved) {
2794 // Update the setting with the new list of input methods.
2795 putEnabledInputMethodsStr(builder.toString());
2796 }
2797 return isRemoved;
2798 }
2799
2800 private List<InputMethodInfo> createEnabledInputMethodListLocked(
2801 List<Pair<String, ArrayList<String>>> imsList) {
2802 final ArrayList<InputMethodInfo> res = new ArrayList<InputMethodInfo>();
2803 for (Pair<String, ArrayList<String>> ims: imsList) {
2804 InputMethodInfo info = mMethodMap.get(ims.first);
2805 if (info != null) {
2806 res.add(info);
2807 }
2808 }
2809 return res;
2810 }
2811
satok7f35c8c2010-10-07 21:13:11 +09002812 private List<Pair<InputMethodInfo, ArrayList<String>>>
satok67ddf9c2010-11-17 09:45:54 +09002813 createEnabledInputMethodAndSubtypeHashCodeListLocked(
satok7f35c8c2010-10-07 21:13:11 +09002814 List<Pair<String, ArrayList<String>>> imsList) {
2815 final ArrayList<Pair<InputMethodInfo, ArrayList<String>>> res
2816 = new ArrayList<Pair<InputMethodInfo, ArrayList<String>>>();
2817 for (Pair<String, ArrayList<String>> ims : imsList) {
2818 InputMethodInfo info = mMethodMap.get(ims.first);
2819 if (info != null) {
2820 res.add(new Pair<InputMethodInfo, ArrayList<String>>(info, ims.second));
2821 }
2822 }
2823 return res;
2824 }
2825
satokd87c2592010-09-29 11:52:06 +09002826 private void putEnabledInputMethodsStr(String str) {
2827 Settings.Secure.putString(mResolver, Settings.Secure.ENABLED_INPUT_METHODS, str);
2828 mEnabledInputMethodsStrCache = str;
2829 }
2830
2831 private String getEnabledInputMethodsStr() {
2832 mEnabledInputMethodsStrCache = Settings.Secure.getString(
2833 mResolver, Settings.Secure.ENABLED_INPUT_METHODS);
satok723a27e2010-11-11 14:58:11 +09002834 if (DEBUG) {
2835 Slog.d(TAG, "getEnabledInputMethodsStr: " + mEnabledInputMethodsStrCache);
2836 }
satokd87c2592010-09-29 11:52:06 +09002837 return mEnabledInputMethodsStrCache;
2838 }
satok723a27e2010-11-11 14:58:11 +09002839
2840 private void saveSubtypeHistory(
2841 List<Pair<String, String>> savedImes, String newImeId, String newSubtypeId) {
2842 StringBuilder builder = new StringBuilder();
2843 boolean isImeAdded = false;
2844 if (!TextUtils.isEmpty(newImeId) && !TextUtils.isEmpty(newSubtypeId)) {
2845 builder.append(newImeId).append(INPUT_METHOD_SUBTYPE_SEPARATER).append(
2846 newSubtypeId);
2847 isImeAdded = true;
2848 }
2849 for (Pair<String, String> ime: savedImes) {
2850 String imeId = ime.first;
2851 String subtypeId = ime.second;
2852 if (TextUtils.isEmpty(subtypeId)) {
2853 subtypeId = NOT_A_SUBTYPE_ID_STR;
2854 }
2855 if (isImeAdded) {
2856 builder.append(INPUT_METHOD_SEPARATER);
2857 } else {
2858 isImeAdded = true;
2859 }
2860 builder.append(imeId).append(INPUT_METHOD_SUBTYPE_SEPARATER).append(
2861 subtypeId);
2862 }
2863 // Remove the last INPUT_METHOD_SEPARATER
2864 putSubtypeHistoryStr(builder.toString());
2865 }
2866
2867 public void addSubtypeToHistory(String imeId, String subtypeId) {
2868 List<Pair<String, String>> subtypeHistory = loadInputMethodAndSubtypeHistoryLocked();
2869 for (Pair<String, String> ime: subtypeHistory) {
2870 if (ime.first.equals(imeId)) {
2871 if (DEBUG) {
satokbb4aa062011-01-19 21:40:27 +09002872 Slog.v(TAG, "Subtype found in the history: " + imeId + ", "
satok723a27e2010-11-11 14:58:11 +09002873 + ime.second);
2874 }
2875 // We should break here
2876 subtypeHistory.remove(ime);
2877 break;
2878 }
2879 }
satokbb4aa062011-01-19 21:40:27 +09002880 if (DEBUG) {
2881 Slog.v(TAG, "Add subtype to the history: " + imeId + ", " + subtypeId);
2882 }
satok723a27e2010-11-11 14:58:11 +09002883 saveSubtypeHistory(subtypeHistory, imeId, subtypeId);
2884 }
2885
2886 private void putSubtypeHistoryStr(String str) {
2887 if (DEBUG) {
2888 Slog.d(TAG, "putSubtypeHistoryStr: " + str);
2889 }
2890 Settings.Secure.putString(
2891 mResolver, Settings.Secure.INPUT_METHODS_SUBTYPE_HISTORY, str);
2892 }
2893
2894 public Pair<String, String> getLastInputMethodAndSubtypeLocked() {
2895 // Gets the first one from the history
2896 return getLastSubtypeForInputMethodLockedInternal(null);
2897 }
2898
2899 public String getLastSubtypeForInputMethodLocked(String imeId) {
2900 Pair<String, String> ime = getLastSubtypeForInputMethodLockedInternal(imeId);
2901 if (ime != null) {
2902 return ime.second;
2903 } else {
2904 return null;
2905 }
2906 }
2907
2908 private Pair<String, String> getLastSubtypeForInputMethodLockedInternal(String imeId) {
2909 List<Pair<String, ArrayList<String>>> enabledImes =
2910 getEnabledInputMethodsAndSubtypeListLocked();
2911 List<Pair<String, String>> subtypeHistory = loadInputMethodAndSubtypeHistoryLocked();
satok4fc87d62011-05-20 16:13:43 +09002912 for (Pair<String, String> imeAndSubtype : subtypeHistory) {
satok723a27e2010-11-11 14:58:11 +09002913 final String imeInTheHistory = imeAndSubtype.first;
2914 // If imeId is empty, returns the first IME and subtype in the history
2915 if (TextUtils.isEmpty(imeId) || imeInTheHistory.equals(imeId)) {
2916 final String subtypeInTheHistory = imeAndSubtype.second;
satokdf31ae62011-01-15 06:19:44 +09002917 final String subtypeHashCode =
2918 getEnabledSubtypeHashCodeForInputMethodAndSubtypeLocked(
2919 enabledImes, imeInTheHistory, subtypeInTheHistory);
satok723a27e2010-11-11 14:58:11 +09002920 if (!TextUtils.isEmpty(subtypeHashCode)) {
2921 if (DEBUG) {
satokbb4aa062011-01-19 21:40:27 +09002922 Slog.d(TAG, "Enabled subtype found in the history: " + subtypeHashCode);
satok723a27e2010-11-11 14:58:11 +09002923 }
2924 return new Pair<String, String>(imeInTheHistory, subtypeHashCode);
2925 }
2926 }
2927 }
2928 if (DEBUG) {
2929 Slog.d(TAG, "No enabled IME found in the history");
2930 }
2931 return null;
2932 }
2933
satokdf31ae62011-01-15 06:19:44 +09002934 private String getEnabledSubtypeHashCodeForInputMethodAndSubtypeLocked(List<Pair<String,
satok723a27e2010-11-11 14:58:11 +09002935 ArrayList<String>>> enabledImes, String imeId, String subtypeHashCode) {
2936 for (Pair<String, ArrayList<String>> enabledIme: enabledImes) {
2937 if (enabledIme.first.equals(imeId)) {
satokf6cafb62011-01-17 16:29:02 +09002938 final ArrayList<String> explicitlyEnabledSubtypes = enabledIme.second;
2939 if (explicitlyEnabledSubtypes.size() == 0) {
2940 // If there are no explicitly enabled subtypes, applicable subtypes are
2941 // enabled implicitly.
satokdf31ae62011-01-15 06:19:44 +09002942 InputMethodInfo ime = mMethodMap.get(imeId);
2943 // If IME is enabled and no subtypes are enabled, applicable subtypes
2944 // are enabled implicitly, so needs to treat them to be enabled.
Ken Wakasa586f0512011-01-20 22:31:01 +09002945 if (ime != null && ime.getSubtypeCount() > 0) {
satokdf31ae62011-01-15 06:19:44 +09002946 List<InputMethodSubtype> implicitlySelectedSubtypes =
Ken Wakasa586f0512011-01-20 22:31:01 +09002947 getApplicableSubtypesLocked(mRes, getSubtypes(ime));
satokdf31ae62011-01-15 06:19:44 +09002948 if (implicitlySelectedSubtypes != null) {
2949 final int N = implicitlySelectedSubtypes.size();
2950 for (int i = 0; i < N; ++i) {
2951 final InputMethodSubtype st = implicitlySelectedSubtypes.get(i);
2952 if (String.valueOf(st.hashCode()).equals(subtypeHashCode)) {
2953 return subtypeHashCode;
2954 }
2955 }
2956 }
2957 }
2958 } else {
satokf6cafb62011-01-17 16:29:02 +09002959 for (String s: explicitlyEnabledSubtypes) {
satokdf31ae62011-01-15 06:19:44 +09002960 if (s.equals(subtypeHashCode)) {
2961 // If both imeId and subtypeId are enabled, return subtypeId.
2962 return s;
2963 }
satok723a27e2010-11-11 14:58:11 +09002964 }
2965 }
2966 // If imeId was enabled but subtypeId was disabled.
2967 return NOT_A_SUBTYPE_ID_STR;
2968 }
2969 }
2970 // If both imeId and subtypeId are disabled, return null
2971 return null;
2972 }
2973
2974 private List<Pair<String, String>> loadInputMethodAndSubtypeHistoryLocked() {
2975 ArrayList<Pair<String, String>> imsList = new ArrayList<Pair<String, String>>();
2976 final String subtypeHistoryStr = getSubtypeHistoryStr();
2977 if (TextUtils.isEmpty(subtypeHistoryStr)) {
2978 return imsList;
2979 }
2980 mInputMethodSplitter.setString(subtypeHistoryStr);
2981 while (mInputMethodSplitter.hasNext()) {
2982 String nextImsStr = mInputMethodSplitter.next();
2983 mSubtypeSplitter.setString(nextImsStr);
2984 if (mSubtypeSplitter.hasNext()) {
2985 String subtypeId = NOT_A_SUBTYPE_ID_STR;
2986 // The first element is ime id.
2987 String imeId = mSubtypeSplitter.next();
2988 while (mSubtypeSplitter.hasNext()) {
2989 subtypeId = mSubtypeSplitter.next();
2990 break;
2991 }
2992 imsList.add(new Pair<String, String>(imeId, subtypeId));
2993 }
2994 }
2995 return imsList;
2996 }
2997
2998 private String getSubtypeHistoryStr() {
2999 if (DEBUG) {
3000 Slog.d(TAG, "getSubtypeHistoryStr: " + Settings.Secure.getString(
3001 mResolver, Settings.Secure.INPUT_METHODS_SUBTYPE_HISTORY));
3002 }
3003 return Settings.Secure.getString(
3004 mResolver, Settings.Secure.INPUT_METHODS_SUBTYPE_HISTORY);
3005 }
3006
3007 public void putSelectedInputMethod(String imeId) {
3008 Settings.Secure.putString(mResolver, Settings.Secure.DEFAULT_INPUT_METHOD, imeId);
3009 }
3010
3011 public void putSelectedSubtype(int subtypeId) {
3012 Settings.Secure.putInt(
3013 mResolver, Settings.Secure.SELECTED_INPUT_METHOD_SUBTYPE, subtypeId);
3014 }
satokd87c2592010-09-29 11:52:06 +09003015 }
3016
satoke7c6998e2011-06-03 17:57:59 +09003017 private static class InputMethodFileManager {
3018 private static final String SYSTEM_PATH = "system";
3019 private static final String INPUT_METHOD_PATH = "inputmethod";
3020 private static final String ADDITIONAL_SUBTYPES_FILE_NAME = "subtypes.xml";
3021 private static final String NODE_SUBTYPES = "subtypes";
3022 private static final String NODE_SUBTYPE = "subtype";
3023 private static final String NODE_IMI = "imi";
3024 private static final String ATTR_ID = "id";
3025 private static final String ATTR_LABEL = "label";
3026 private static final String ATTR_ICON = "icon";
3027 private static final String ATTR_IME_SUBTYPE_LOCALE = "imeSubtypeLocale";
3028 private static final String ATTR_IME_SUBTYPE_MODE = "imeSubtypeMode";
3029 private static final String ATTR_IME_SUBTYPE_EXTRA_VALUE = "imeSubtypeExtraValue";
3030 private static final String ATTR_IS_AUXILIARY = "isAuxiliary";
3031 private final AtomicFile mAdditionalInputMethodSubtypeFile;
3032 private final HashMap<String, InputMethodInfo> mMethodMap;
3033 private final HashMap<String, List<InputMethodSubtype>> mSubtypesMap =
3034 new HashMap<String, List<InputMethodSubtype>>();
3035 public InputMethodFileManager(HashMap<String, InputMethodInfo> methodMap) {
3036 if (methodMap == null) {
3037 throw new NullPointerException("methodMap is null");
3038 }
3039 mMethodMap = methodMap;
3040 final File systemDir = new File(Environment.getDataDirectory(), SYSTEM_PATH);
3041 final File inputMethodDir = new File(systemDir, INPUT_METHOD_PATH);
3042 if (!inputMethodDir.mkdirs()) {
3043 Slog.w(TAG, "Couldn't create dir.: " + inputMethodDir.getAbsolutePath());
3044 }
3045 final File subtypeFile = new File(inputMethodDir, ADDITIONAL_SUBTYPES_FILE_NAME);
3046 mAdditionalInputMethodSubtypeFile = new AtomicFile(subtypeFile);
3047 if (!subtypeFile.exists()) {
3048 // If "subtypes.xml" doesn't exist, create a blank file.
3049 writeAdditionalInputMethodSubtypes(mSubtypesMap, mAdditionalInputMethodSubtypeFile,
3050 methodMap);
3051 } else {
3052 readAdditionalInputMethodSubtypes(mSubtypesMap, mAdditionalInputMethodSubtypeFile);
3053 }
3054 }
3055
3056 private void deleteAllInputMethodSubtypes(String imiId) {
3057 synchronized (mMethodMap) {
3058 mSubtypesMap.remove(imiId);
3059 writeAdditionalInputMethodSubtypes(mSubtypesMap, mAdditionalInputMethodSubtypeFile,
3060 mMethodMap);
3061 }
3062 }
3063
3064 public void addInputMethodSubtypes(
satok4a28bde2011-06-29 21:03:40 +09003065 InputMethodInfo imi, InputMethodSubtype[] additionalSubtypes) {
satoke7c6998e2011-06-03 17:57:59 +09003066 synchronized (mMethodMap) {
satok4a28bde2011-06-29 21:03:40 +09003067 final HashSet<InputMethodSubtype> existingSubtypes =
3068 new HashSet<InputMethodSubtype>();
3069 for (int i = 0; i < imi.getSubtypeCount(); ++i) {
3070 existingSubtypes.add(imi.getSubtypeAt(i));
3071 }
3072
satoke7c6998e2011-06-03 17:57:59 +09003073 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>();
3074 final int N = additionalSubtypes.length;
3075 for (int i = 0; i < N; ++i) {
3076 final InputMethodSubtype subtype = additionalSubtypes[i];
satok4a28bde2011-06-29 21:03:40 +09003077 if (!subtypes.contains(subtype) && !existingSubtypes.contains(subtype)) {
satoke7c6998e2011-06-03 17:57:59 +09003078 subtypes.add(subtype);
3079 }
3080 }
satok4a28bde2011-06-29 21:03:40 +09003081 mSubtypesMap.put(imi.getId(), subtypes);
satoke7c6998e2011-06-03 17:57:59 +09003082 writeAdditionalInputMethodSubtypes(mSubtypesMap, mAdditionalInputMethodSubtypeFile,
3083 mMethodMap);
3084 }
3085 }
3086
3087 public HashMap<String, List<InputMethodSubtype>> getAllAdditionalInputMethodSubtypes() {
3088 synchronized (mMethodMap) {
3089 return mSubtypesMap;
3090 }
3091 }
3092
3093 private static void writeAdditionalInputMethodSubtypes(
3094 HashMap<String, List<InputMethodSubtype>> allSubtypes, AtomicFile subtypesFile,
3095 HashMap<String, InputMethodInfo> methodMap) {
3096 // Safety net for the case that this function is called before methodMap is set.
3097 final boolean isSetMethodMap = methodMap != null && methodMap.size() > 0;
3098 FileOutputStream fos = null;
3099 try {
3100 fos = subtypesFile.startWrite();
3101 final XmlSerializer out = new FastXmlSerializer();
3102 out.setOutput(fos, "utf-8");
3103 out.startDocument(null, true);
3104 out.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
3105 out.startTag(null, NODE_SUBTYPES);
3106 for (String imiId : allSubtypes.keySet()) {
3107 if (isSetMethodMap && !methodMap.containsKey(imiId)) {
3108 Slog.w(TAG, "IME uninstalled or not valid.: " + imiId);
3109 continue;
3110 }
3111 out.startTag(null, NODE_IMI);
3112 out.attribute(null, ATTR_ID, imiId);
3113 final List<InputMethodSubtype> subtypesList = allSubtypes.get(imiId);
3114 final int N = subtypesList.size();
3115 for (int i = 0; i < N; ++i) {
3116 final InputMethodSubtype subtype = subtypesList.get(i);
3117 out.startTag(null, NODE_SUBTYPE);
3118 out.attribute(null, ATTR_ICON, String.valueOf(subtype.getIconResId()));
3119 out.attribute(null, ATTR_LABEL, String.valueOf(subtype.getNameResId()));
3120 out.attribute(null, ATTR_IME_SUBTYPE_LOCALE, subtype.getLocale());
3121 out.attribute(null, ATTR_IME_SUBTYPE_MODE, subtype.getMode());
3122 out.attribute(null, ATTR_IME_SUBTYPE_EXTRA_VALUE, subtype.getExtraValue());
3123 out.attribute(null, ATTR_IS_AUXILIARY,
3124 String.valueOf(subtype.isAuxiliary() ? 1 : 0));
3125 out.endTag(null, NODE_SUBTYPE);
3126 }
3127 out.endTag(null, NODE_IMI);
3128 }
3129 out.endTag(null, NODE_SUBTYPES);
3130 out.endDocument();
3131 subtypesFile.finishWrite(fos);
3132 } catch (java.io.IOException e) {
3133 Slog.w(TAG, "Error writing subtypes", e);
3134 if (fos != null) {
3135 subtypesFile.failWrite(fos);
3136 }
3137 }
3138 }
3139
3140 private static void readAdditionalInputMethodSubtypes(
3141 HashMap<String, List<InputMethodSubtype>> allSubtypes, AtomicFile subtypesFile) {
3142 if (allSubtypes == null || subtypesFile == null) return;
3143 allSubtypes.clear();
3144 FileInputStream fis = null;
3145 try {
3146 fis = subtypesFile.openRead();
3147 final XmlPullParser parser = Xml.newPullParser();
3148 parser.setInput(fis, null);
3149 int type = parser.getEventType();
3150 // Skip parsing until START_TAG
3151 while ((type = parser.next()) != XmlPullParser.START_TAG
3152 && type != XmlPullParser.END_DOCUMENT) {}
3153 String firstNodeName = parser.getName();
3154 if (!NODE_SUBTYPES.equals(firstNodeName)) {
3155 throw new XmlPullParserException("Xml doesn't start with subtypes");
3156 }
3157 final int depth =parser.getDepth();
3158 String currentImiId = null;
3159 ArrayList<InputMethodSubtype> tempSubtypesArray = null;
3160 while (((type = parser.next()) != XmlPullParser.END_TAG
3161 || parser.getDepth() > depth) && type != XmlPullParser.END_DOCUMENT) {
3162 if (type != XmlPullParser.START_TAG)
3163 continue;
3164 final String nodeName = parser.getName();
3165 if (NODE_IMI.equals(nodeName)) {
3166 currentImiId = parser.getAttributeValue(null, ATTR_ID);
3167 if (TextUtils.isEmpty(currentImiId)) {
3168 Slog.w(TAG, "Invalid imi id found in subtypes.xml");
3169 continue;
3170 }
3171 tempSubtypesArray = new ArrayList<InputMethodSubtype>();
3172 allSubtypes.put(currentImiId, tempSubtypesArray);
3173 } else if (NODE_SUBTYPE.equals(nodeName)) {
3174 if (TextUtils.isEmpty(currentImiId) || tempSubtypesArray == null) {
3175 Slog.w(TAG, "IME uninstalled or not valid.: " + currentImiId);
3176 continue;
3177 }
3178 final int icon = Integer.valueOf(
3179 parser.getAttributeValue(null, ATTR_ICON));
3180 final int label = Integer.valueOf(
3181 parser.getAttributeValue(null, ATTR_LABEL));
3182 final String imeSubtypeLocale =
3183 parser.getAttributeValue(null, ATTR_IME_SUBTYPE_LOCALE);
3184 final String imeSubtypeMode =
3185 parser.getAttributeValue(null, ATTR_IME_SUBTYPE_MODE);
3186 final String imeSubtypeExtraValue =
3187 parser.getAttributeValue(null, ATTR_IME_SUBTYPE_EXTRA_VALUE);
satok4a28bde2011-06-29 21:03:40 +09003188 final boolean isAuxiliary = "1".equals(String.valueOf(
3189 parser.getAttributeValue(null, ATTR_IS_AUXILIARY)));
satoke7c6998e2011-06-03 17:57:59 +09003190 final InputMethodSubtype subtype =
3191 new InputMethodSubtype(label, icon, imeSubtypeLocale,
3192 imeSubtypeMode, imeSubtypeExtraValue, isAuxiliary);
3193 tempSubtypesArray.add(subtype);
3194 }
3195 }
3196 } catch (XmlPullParserException e) {
3197 Slog.w(TAG, "Error reading subtypes: " + e);
3198 return;
3199 } catch (java.io.IOException e) {
3200 Slog.w(TAG, "Error reading subtypes: " + e);
3201 return;
3202 } catch (NumberFormatException e) {
3203 Slog.w(TAG, "Error reading subtypes: " + e);
3204 return;
3205 } finally {
3206 if (fis != null) {
3207 try {
3208 fis.close();
3209 } catch (java.io.IOException e1) {
3210 Slog.w(TAG, "Failed to close.");
3211 }
3212 }
3213 }
3214 }
3215 }
3216
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003217 // ----------------------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003218
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003219 @Override
3220 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
3221 if (mContext.checkCallingOrSelfPermission(android.Manifest.permission.DUMP)
3222 != PackageManager.PERMISSION_GRANTED) {
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003223
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003224 pw.println("Permission Denial: can't dump InputMethodManager from from pid="
3225 + Binder.getCallingPid()
3226 + ", uid=" + Binder.getCallingUid());
3227 return;
3228 }
3229
3230 IInputMethod method;
3231 ClientState client;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003232
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003233 final Printer p = new PrintWriterPrinter(pw);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003234
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003235 synchronized (mMethodMap) {
3236 p.println("Current Input Method Manager state:");
3237 int N = mMethodList.size();
3238 p.println(" Input Methods:");
3239 for (int i=0; i<N; i++) {
3240 InputMethodInfo info = mMethodList.get(i);
3241 p.println(" InputMethod #" + i + ":");
3242 info.dump(p, " ");
3243 }
3244 p.println(" Clients:");
3245 for (ClientState ci : mClients.values()) {
3246 p.println(" Client " + ci + ":");
3247 p.println(" client=" + ci.client);
3248 p.println(" inputContext=" + ci.inputContext);
3249 p.println(" sessionRequested=" + ci.sessionRequested);
3250 p.println(" curSession=" + ci.curSession);
3251 }
The Android Open Source Project10592532009-03-18 17:39:46 -07003252 p.println(" mCurMethodId=" + mCurMethodId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003253 client = mCurClient;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07003254 p.println(" mCurClient=" + client + " mCurSeq=" + mCurSeq);
3255 p.println(" mCurFocusedWindow=" + mCurFocusedWindow);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003256 p.println(" mCurId=" + mCurId + " mHaveConnect=" + mHaveConnection
3257 + " mBoundToMethod=" + mBoundToMethod);
3258 p.println(" mCurToken=" + mCurToken);
3259 p.println(" mCurIntent=" + mCurIntent);
3260 method = mCurMethod;
3261 p.println(" mCurMethod=" + mCurMethod);
3262 p.println(" mEnabledSession=" + mEnabledSession);
3263 p.println(" mShowRequested=" + mShowRequested
3264 + " mShowExplicitlyRequested=" + mShowExplicitlyRequested
3265 + " mShowForced=" + mShowForced
3266 + " mInputShown=" + mInputShown);
Dianne Hackborncc278702009-09-02 23:07:23 -07003267 p.println(" mSystemReady=" + mSystemReady + " mScreenOn=" + mScreenOn);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003268 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003269
Jeff Brownb88102f2010-09-08 11:49:43 -07003270 p.println(" ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003271 if (client != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003272 pw.flush();
3273 try {
3274 client.client.asBinder().dump(fd, args);
3275 } catch (RemoteException e) {
3276 p.println("Input method client dead: " + e);
3277 }
Jeff Brownb88102f2010-09-08 11:49:43 -07003278 } else {
3279 p.println("No input method client.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003280 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003281
Jeff Brownb88102f2010-09-08 11:49:43 -07003282 p.println(" ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003283 if (method != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003284 pw.flush();
3285 try {
3286 method.asBinder().dump(fd, args);
3287 } catch (RemoteException e) {
3288 p.println("Input method service dead: " + e);
3289 }
Jeff Brownb88102f2010-09-08 11:49:43 -07003290 } else {
3291 p.println("No input method service.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003292 }
3293 }
3294}