blob: bb831f51d07d428e06a5d67c19c4732bbd549cc2 [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() {
satokdbf29502011-08-25 15:28:23 +0900622 setImeWindowStatus(mCurToken, mImeWindowVis, mBackDisposition);
Dianne Hackborn661cd522011-08-22 00:26:20 -0700623 }
624
satoke7c6998e2011-06-03 17:57:59 +0900625 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800626 public List<InputMethodInfo> getInputMethodList() {
627 synchronized (mMethodMap) {
628 return new ArrayList<InputMethodInfo>(mMethodList);
629 }
630 }
631
satoke7c6998e2011-06-03 17:57:59 +0900632 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800633 public List<InputMethodInfo> getEnabledInputMethodList() {
634 synchronized (mMethodMap) {
satokd87c2592010-09-29 11:52:06 +0900635 return mSettings.getEnabledInputMethodListLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800636 }
637 }
638
satokbb4aa062011-01-19 21:40:27 +0900639 private HashMap<InputMethodInfo, List<InputMethodSubtype>>
640 getExplicitlyOrImplicitlyEnabledInputMethodsAndSubtypeListLocked() {
641 HashMap<InputMethodInfo, List<InputMethodSubtype>> enabledInputMethodAndSubtypes =
642 new HashMap<InputMethodInfo, List<InputMethodSubtype>>();
643 for (InputMethodInfo imi: getEnabledInputMethodList()) {
644 enabledInputMethodAndSubtypes.put(
645 imi, getEnabledInputMethodSubtypeListLocked(imi, true));
646 }
647 return enabledInputMethodAndSubtypes;
648 }
649
650 public List<InputMethodSubtype> getEnabledInputMethodSubtypeListLocked(InputMethodInfo imi,
651 boolean allowsImplicitlySelectedSubtypes) {
652 if (imi == null && mCurMethodId != null) {
653 imi = mMethodMap.get(mCurMethodId);
654 }
satok7265d9b2011-02-14 15:47:30 +0900655 List<InputMethodSubtype> enabledSubtypes =
satokbb4aa062011-01-19 21:40:27 +0900656 mSettings.getEnabledInputMethodSubtypeListLocked(imi);
satok7265d9b2011-02-14 15:47:30 +0900657 if (allowsImplicitlySelectedSubtypes && enabledSubtypes.isEmpty()) {
658 enabledSubtypes = getApplicableSubtypesLocked(mRes, getSubtypes(imi));
satokbb4aa062011-01-19 21:40:27 +0900659 }
satok7265d9b2011-02-14 15:47:30 +0900660 return InputMethodSubtype.sort(mContext, 0, imi, enabledSubtypes);
satokbb4aa062011-01-19 21:40:27 +0900661 }
662
satoke7c6998e2011-06-03 17:57:59 +0900663 @Override
satok16331c82010-12-20 23:48:46 +0900664 public List<InputMethodSubtype> getEnabledInputMethodSubtypeList(InputMethodInfo imi,
665 boolean allowsImplicitlySelectedSubtypes) {
satok67ddf9c2010-11-17 09:45:54 +0900666 synchronized (mMethodMap) {
satokbb4aa062011-01-19 21:40:27 +0900667 return getEnabledInputMethodSubtypeListLocked(imi, allowsImplicitlySelectedSubtypes);
satok67ddf9c2010-11-17 09:45:54 +0900668 }
669 }
670
satoke7c6998e2011-06-03 17:57:59 +0900671 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800672 public void addClient(IInputMethodClient client,
673 IInputContext inputContext, int uid, int pid) {
674 synchronized (mMethodMap) {
675 mClients.put(client.asBinder(), new ClientState(client,
676 inputContext, uid, pid));
677 }
678 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800679
satoke7c6998e2011-06-03 17:57:59 +0900680 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800681 public void removeClient(IInputMethodClient client) {
682 synchronized (mMethodMap) {
683 mClients.remove(client.asBinder());
684 }
685 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800686
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800687 void executeOrSendMessage(IInterface target, Message msg) {
688 if (target.asBinder() instanceof Binder) {
689 mCaller.sendMessage(msg);
690 } else {
691 handleMessage(msg);
692 msg.recycle();
693 }
694 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800695
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700696 void unbindCurrentClientLocked() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800697 if (mCurClient != null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800698 if (DEBUG) Slog.v(TAG, "unbindCurrentInputLocked: client = "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800699 + mCurClient.client.asBinder());
700 if (mBoundToMethod) {
701 mBoundToMethod = false;
702 if (mCurMethod != null) {
703 executeOrSendMessage(mCurMethod, mCaller.obtainMessageO(
704 MSG_UNBIND_INPUT, mCurMethod));
705 }
706 }
707 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
708 MSG_UNBIND_METHOD, mCurSeq, mCurClient.client));
709 mCurClient.sessionRequested = false;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800710
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800711 // Call setActive(false) on the old client
712 try {
713 mCurClient.client.setActive(false);
714 } catch (RemoteException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800715 Slog.w(TAG, "Got RemoteException sending setActive(false) notification to pid "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800716 + mCurClient.pid + " uid " + mCurClient.uid);
717 }
718 mCurClient = null;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800719
The Android Open Source Project10592532009-03-18 17:39:46 -0700720 hideInputMethodMenuLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800721 }
722 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800723
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800724 private int getImeShowFlags() {
725 int flags = 0;
726 if (mShowForced) {
727 flags |= InputMethod.SHOW_FORCED
728 | InputMethod.SHOW_EXPLICIT;
729 } else if (mShowExplicitlyRequested) {
730 flags |= InputMethod.SHOW_EXPLICIT;
731 }
732 return flags;
733 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800734
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800735 private int getAppShowFlags() {
736 int flags = 0;
737 if (mShowForced) {
738 flags |= InputMethodManager.SHOW_FORCED;
739 } else if (!mShowExplicitlyRequested) {
740 flags |= InputMethodManager.SHOW_IMPLICIT;
741 }
742 return flags;
743 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800744
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800745 InputBindResult attachNewInputLocked(boolean initial, boolean needResult) {
746 if (!mBoundToMethod) {
747 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
748 MSG_BIND_INPUT, mCurMethod, mCurClient.binding));
749 mBoundToMethod = true;
750 }
751 final SessionState session = mCurClient.curSession;
752 if (initial) {
753 executeOrSendMessage(session.method, mCaller.obtainMessageOOO(
754 MSG_START_INPUT, session, mCurInputContext, mCurAttribute));
755 } else {
756 executeOrSendMessage(session.method, mCaller.obtainMessageOOO(
757 MSG_RESTART_INPUT, session, mCurInputContext, mCurAttribute));
758 }
759 if (mShowRequested) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800760 if (DEBUG) Slog.v(TAG, "Attach new input asks to show input");
The Android Open Source Project4df24232009-03-05 14:34:35 -0800761 showCurrentInputLocked(getAppShowFlags(), null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800762 }
763 return needResult
764 ? new InputBindResult(session.session, mCurId, mCurSeq)
765 : null;
766 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800767
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800768 InputBindResult startInputLocked(IInputMethodClient client,
769 IInputContext inputContext, EditorInfo attribute,
770 boolean initial, boolean needResult) {
771 // If no method is currently selected, do nothing.
772 if (mCurMethodId == null) {
773 return mNoBinding;
774 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800775
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800776 ClientState cs = mClients.get(client.asBinder());
777 if (cs == null) {
778 throw new IllegalArgumentException("unknown client "
779 + client.asBinder());
780 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800781
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800782 try {
783 if (!mIWindowManager.inputMethodClientHasFocus(cs.client)) {
784 // Check with the window manager to make sure this client actually
785 // has a window with focus. If not, reject. This is thread safe
786 // because if the focus changes some time before or after, the
787 // next client receiving focus that has any interest in input will
788 // be calling through here after that change happens.
Joe Onorato8a9b2202010-02-26 18:56:32 -0800789 Slog.w(TAG, "Starting input on non-focused client " + cs.client
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800790 + " (uid=" + cs.uid + " pid=" + cs.pid + ")");
791 return null;
792 }
793 } catch (RemoteException e) {
794 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800795
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800796 if (mCurClient != cs) {
797 // If the client is changing, we need to switch over to the new
798 // one.
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700799 unbindCurrentClientLocked();
Joe Onorato8a9b2202010-02-26 18:56:32 -0800800 if (DEBUG) Slog.v(TAG, "switching to client: client = "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800801 + cs.client.asBinder());
802
803 // If the screen is on, inform the new client it is active
804 if (mScreenOn) {
805 try {
806 cs.client.setActive(mScreenOn);
807 } catch (RemoteException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800808 Slog.w(TAG, "Got RemoteException sending setActive notification to pid "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800809 + cs.pid + " uid " + cs.uid);
810 }
811 }
812 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800813
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800814 // Bump up the sequence for this client and attach it.
815 mCurSeq++;
816 if (mCurSeq <= 0) mCurSeq = 1;
817 mCurClient = cs;
818 mCurInputContext = inputContext;
819 mCurAttribute = attribute;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800820
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800821 // Check if the input method is changing.
822 if (mCurId != null && mCurId.equals(mCurMethodId)) {
823 if (cs.curSession != null) {
824 // Fast case: if we are already connected to the input method,
825 // then just return it.
826 return attachNewInputLocked(initial, needResult);
827 }
828 if (mHaveConnection) {
829 if (mCurMethod != null) {
830 if (!cs.sessionRequested) {
831 cs.sessionRequested = true;
Joe Onorato8a9b2202010-02-26 18:56:32 -0800832 if (DEBUG) Slog.v(TAG, "Creating new session for client " + cs);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800833 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
834 MSG_CREATE_SESSION, mCurMethod,
835 new MethodCallback(mCurMethod)));
836 }
837 // Return to client, and we will get back with it when
838 // we have had a session made for it.
839 return new InputBindResult(null, mCurId, mCurSeq);
840 } else if (SystemClock.uptimeMillis()
841 < (mLastBindTime+TIME_TO_RECONNECT)) {
842 // In this case we have connected to the service, but
843 // don't yet have its interface. If it hasn't been too
844 // long since we did the connection, we'll return to
845 // the client and wait to get the service interface so
846 // we can report back. If it has been too long, we want
847 // to fall through so we can try a disconnect/reconnect
848 // to see if we can get back in touch with the service.
849 return new InputBindResult(null, mCurId, mCurSeq);
850 } else {
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800851 EventLog.writeEvent(EventLogTags.IMF_FORCE_RECONNECT_IME,
852 mCurMethodId, SystemClock.uptimeMillis()-mLastBindTime, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800853 }
854 }
855 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800856
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700857 return startInputInnerLocked();
858 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800859
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700860 InputBindResult startInputInnerLocked() {
861 if (mCurMethodId == null) {
862 return mNoBinding;
863 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800864
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700865 if (!mSystemReady) {
866 // If the system is not yet ready, we shouldn't be running third
867 // party code.
Dianne Hackborncc278702009-09-02 23:07:23 -0700868 return new InputBindResult(null, mCurMethodId, mCurSeq);
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700869 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800870
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800871 InputMethodInfo info = mMethodMap.get(mCurMethodId);
872 if (info == null) {
873 throw new IllegalArgumentException("Unknown id: " + mCurMethodId);
874 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800875
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700876 unbindCurrentMethodLocked(false);
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800877
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800878 mCurIntent = new Intent(InputMethod.SERVICE_INTERFACE);
879 mCurIntent.setComponent(info.getComponent());
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700880 mCurIntent.putExtra(Intent.EXTRA_CLIENT_LABEL,
881 com.android.internal.R.string.input_method_binding_label);
882 mCurIntent.putExtra(Intent.EXTRA_CLIENT_INTENT, PendingIntent.getActivity(
883 mContext, 0, new Intent(Settings.ACTION_INPUT_METHOD_SETTINGS), 0));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800884 if (mContext.bindService(mCurIntent, this, Context.BIND_AUTO_CREATE)) {
885 mLastBindTime = SystemClock.uptimeMillis();
886 mHaveConnection = true;
887 mCurId = info.getId();
888 mCurToken = new Binder();
889 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800890 if (DEBUG) Slog.v(TAG, "Adding window token: " + mCurToken);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800891 mIWindowManager.addWindowToken(mCurToken,
892 WindowManager.LayoutParams.TYPE_INPUT_METHOD);
893 } catch (RemoteException e) {
894 }
895 return new InputBindResult(null, mCurId, mCurSeq);
896 } else {
897 mCurIntent = null;
Joe Onorato8a9b2202010-02-26 18:56:32 -0800898 Slog.w(TAG, "Failure connecting to input method service: "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800899 + mCurIntent);
900 }
901 return null;
902 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800903
satoke7c6998e2011-06-03 17:57:59 +0900904 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800905 public InputBindResult startInput(IInputMethodClient client,
906 IInputContext inputContext, EditorInfo attribute,
907 boolean initial, boolean needResult) {
908 synchronized (mMethodMap) {
909 final long ident = Binder.clearCallingIdentity();
910 try {
911 return startInputLocked(client, inputContext, attribute,
912 initial, needResult);
913 } finally {
914 Binder.restoreCallingIdentity(ident);
915 }
916 }
917 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800918
satoke7c6998e2011-06-03 17:57:59 +0900919 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800920 public void finishInput(IInputMethodClient client) {
921 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800922
satoke7c6998e2011-06-03 17:57:59 +0900923 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800924 public void onServiceConnected(ComponentName name, IBinder service) {
925 synchronized (mMethodMap) {
926 if (mCurIntent != null && name.equals(mCurIntent.getComponent())) {
927 mCurMethod = IInputMethod.Stub.asInterface(service);
Dianne Hackborncc278702009-09-02 23:07:23 -0700928 if (mCurToken == null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800929 Slog.w(TAG, "Service connected without a token!");
Dianne Hackborncc278702009-09-02 23:07:23 -0700930 unbindCurrentMethodLocked(false);
931 return;
932 }
Joe Onorato8a9b2202010-02-26 18:56:32 -0800933 if (DEBUG) Slog.v(TAG, "Initiating attach with token: " + mCurToken);
Dianne Hackborncc278702009-09-02 23:07:23 -0700934 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
935 MSG_ATTACH_TOKEN, mCurMethod, mCurToken));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800936 if (mCurClient != null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800937 if (DEBUG) Slog.v(TAG, "Creating first session while with client "
Dianne Hackborncc278702009-09-02 23:07:23 -0700938 + mCurClient);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800939 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
Dianne Hackborncc278702009-09-02 23:07:23 -0700940 MSG_CREATE_SESSION, mCurMethod,
941 new MethodCallback(mCurMethod)));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800942 }
943 }
944 }
945 }
946
947 void onSessionCreated(IInputMethod method, IInputMethodSession session) {
948 synchronized (mMethodMap) {
949 if (mCurMethod != null && method != null
950 && mCurMethod.asBinder() == method.asBinder()) {
951 if (mCurClient != null) {
952 mCurClient.curSession = new SessionState(mCurClient,
953 method, session);
954 mCurClient.sessionRequested = false;
955 InputBindResult res = attachNewInputLocked(true, true);
956 if (res.method != null) {
957 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageOO(
958 MSG_BIND_METHOD, mCurClient.client, res));
959 }
960 }
961 }
962 }
963 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800964
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700965 void unbindCurrentMethodLocked(boolean reportToClient) {
966 if (mHaveConnection) {
967 mContext.unbindService(this);
968 mHaveConnection = false;
969 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800970
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700971 if (mCurToken != null) {
972 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800973 if (DEBUG) Slog.v(TAG, "Removing window token: " + mCurToken);
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700974 mIWindowManager.removeWindowToken(mCurToken);
975 } catch (RemoteException e) {
976 }
977 mCurToken = null;
978 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800979
The Android Open Source Project10592532009-03-18 17:39:46 -0700980 mCurId = null;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700981 clearCurMethodLocked();
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800982
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700983 if (reportToClient && mCurClient != null) {
984 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
985 MSG_UNBIND_METHOD, mCurSeq, mCurClient.client));
986 }
987 }
988
Devin Taylor0c33ed22010-02-23 13:26:46 -0600989 private void finishSession(SessionState sessionState) {
990 if (sessionState != null && sessionState.session != null) {
991 try {
992 sessionState.session.finishSession();
993 } catch (RemoteException e) {
Jean-Baptiste Queru9d0f6df2010-03-29 12:55:09 -0700994 Slog.w(TAG, "Session failed to close due to remote exception", e);
satokdbf29502011-08-25 15:28:23 +0900995 mImeWindowVis = 0;
996 updateImeWindowStatusLocked();
Devin Taylor0c33ed22010-02-23 13:26:46 -0600997 }
998 }
999 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001000
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001001 void clearCurMethodLocked() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001002 if (mCurMethod != null) {
1003 for (ClientState cs : mClients.values()) {
1004 cs.sessionRequested = false;
Devin Taylor0c33ed22010-02-23 13:26:46 -06001005 finishSession(cs.curSession);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001006 cs.curSession = null;
1007 }
Devin Taylor0c33ed22010-02-23 13:26:46 -06001008
1009 finishSession(mEnabledSession);
1010 mEnabledSession = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001011 mCurMethod = null;
1012 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07001013 if (mStatusBar != null) {
1014 mStatusBar.setIconVisibility("ime", false);
1015 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001016 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001017
satoke7c6998e2011-06-03 17:57:59 +09001018 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001019 public void onServiceDisconnected(ComponentName name) {
1020 synchronized (mMethodMap) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001021 if (DEBUG) Slog.v(TAG, "Service disconnected: " + name
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001022 + " mCurIntent=" + mCurIntent);
1023 if (mCurMethod != null && mCurIntent != null
1024 && name.equals(mCurIntent.getComponent())) {
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001025 clearCurMethodLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001026 // We consider this to be a new bind attempt, since the system
1027 // should now try to restart the service for us.
1028 mLastBindTime = SystemClock.uptimeMillis();
1029 mShowRequested = mInputShown;
1030 mInputShown = false;
1031 if (mCurClient != null) {
1032 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
1033 MSG_UNBIND_METHOD, mCurSeq, mCurClient.client));
1034 }
1035 }
1036 }
1037 }
1038
satokf9f01002011-05-19 21:31:50 +09001039 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001040 public void updateStatusIcon(IBinder token, String packageName, int iconId) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001041 int uid = Binder.getCallingUid();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001042 long ident = Binder.clearCallingIdentity();
1043 try {
1044 if (token == null || mCurToken != token) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001045 Slog.w(TAG, "Ignoring setInputMethod of uid " + uid + " token: " + token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001046 return;
1047 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001048
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001049 synchronized (mMethodMap) {
1050 if (iconId == 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001051 if (DEBUG) Slog.d(TAG, "hide the small icon for the input method");
Dianne Hackborn661cd522011-08-22 00:26:20 -07001052 if (mStatusBar != null) {
1053 mStatusBar.setIconVisibility("ime", false);
1054 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001055 } else if (packageName != null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001056 if (DEBUG) Slog.d(TAG, "show a small icon for the input method");
Svetoslav Ganov6179ea32011-06-28 01:12:41 -07001057 CharSequence contentDescription = null;
1058 try {
1059 PackageManager packageManager = mContext.getPackageManager();
1060 contentDescription = packageManager.getApplicationLabel(
1061 packageManager.getApplicationInfo(packageName, 0));
1062 } catch (NameNotFoundException nnfe) {
1063 /* ignore */
1064 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07001065 if (mStatusBar != null) {
1066 mStatusBar.setIcon("ime", packageName, iconId, 0,
1067 contentDescription != null
1068 ? contentDescription.toString() : null);
1069 mStatusBar.setIconVisibility("ime", true);
1070 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001071 }
1072 }
1073 } finally {
1074 Binder.restoreCallingIdentity(ident);
1075 }
1076 }
1077
satok7cfc0ed2011-06-20 21:29:36 +09001078 private boolean needsToShowImeSwitchOngoingNotification() {
1079 if (!mShowOngoingImeSwitcherForPhones) return false;
1080 synchronized (mMethodMap) {
1081 List<InputMethodInfo> imis = mSettings.getEnabledInputMethodListLocked();
1082 final int N = imis.size();
satokb6359412011-06-28 17:47:41 +09001083 if (N > 2) return true;
1084 if (N < 1) return false;
1085 int nonAuxCount = 0;
1086 int auxCount = 0;
1087 InputMethodSubtype nonAuxSubtype = null;
1088 InputMethodSubtype auxSubtype = null;
satok7cfc0ed2011-06-20 21:29:36 +09001089 for(int i = 0; i < N; ++i) {
1090 final InputMethodInfo imi = imis.get(i);
1091 final List<InputMethodSubtype> subtypes = getEnabledInputMethodSubtypeListLocked(
1092 imi, true);
1093 final int subtypeCount = subtypes.size();
1094 if (subtypeCount == 0) {
satokb6359412011-06-28 17:47:41 +09001095 ++nonAuxCount;
satok7cfc0ed2011-06-20 21:29:36 +09001096 } else {
1097 for (int j = 0; j < subtypeCount; ++j) {
satokb6359412011-06-28 17:47:41 +09001098 final InputMethodSubtype subtype = subtypes.get(j);
1099 if (!subtype.isAuxiliary()) {
1100 ++nonAuxCount;
1101 nonAuxSubtype = subtype;
1102 } else {
1103 ++auxCount;
1104 auxSubtype = subtype;
satok7cfc0ed2011-06-20 21:29:36 +09001105 }
1106 }
1107 }
satok7cfc0ed2011-06-20 21:29:36 +09001108 }
satokb6359412011-06-28 17:47:41 +09001109 if (nonAuxCount > 1 || auxCount > 1) {
1110 return true;
1111 } else if (nonAuxCount == 1 && auxCount == 1) {
1112 if (nonAuxSubtype != null && auxSubtype != null
1113 && nonAuxSubtype.getLocale().equals(auxSubtype.getLocale())
1114 && nonAuxSubtype.containsExtraValueKey(TAG_TRY_SUPPRESSING_IME_SWITCHER)) {
1115 return false;
1116 }
1117 return true;
1118 }
1119 return false;
satok7cfc0ed2011-06-20 21:29:36 +09001120 }
satok7cfc0ed2011-06-20 21:29:36 +09001121 }
1122
satokdbf29502011-08-25 15:28:23 +09001123 @SuppressWarnings("deprecation")
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);
satokc5933802011-08-31 21:26:04 +09001685 final long ident = Binder.clearCallingIdentity();
1686 try {
1687 buildInputMethodListLocked(mMethodList, mMethodMap);
1688 } finally {
1689 Binder.restoreCallingIdentity(ident);
1690 }
satok91e88122011-07-18 11:11:42 +09001691 return true;
1692 }
1693 }
1694 }
satoke7c6998e2011-06-03 17:57:59 +09001695 }
satok91e88122011-07-18 11:11:42 +09001696 return false;
satoke7c6998e2011-06-03 17:57:59 +09001697 }
1698
satok28203512010-11-24 11:06:49 +09001699 private void setInputMethodWithSubtypeId(IBinder token, String id, int subtypeId) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001700 synchronized (mMethodMap) {
1701 if (token == null) {
1702 if (mContext.checkCallingOrSelfPermission(
1703 android.Manifest.permission.WRITE_SECURE_SETTINGS)
1704 != PackageManager.PERMISSION_GRANTED) {
1705 throw new SecurityException(
1706 "Using null token requires permission "
1707 + android.Manifest.permission.WRITE_SECURE_SETTINGS);
1708 }
1709 } else if (mCurToken != token) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001710 Slog.w(TAG, "Ignoring setInputMethod of uid " + Binder.getCallingUid()
1711 + " token: " + token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001712 return;
1713 }
1714
satokc5933802011-08-31 21:26:04 +09001715 final long ident = Binder.clearCallingIdentity();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001716 try {
satokab751aa2010-09-14 19:17:36 +09001717 setInputMethodLocked(id, subtypeId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001718 } finally {
1719 Binder.restoreCallingIdentity(ident);
1720 }
1721 }
1722 }
1723
satok42c5a162011-05-26 16:46:14 +09001724 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001725 public void hideMySoftInput(IBinder token, int flags) {
1726 synchronized (mMethodMap) {
1727 if (token == null || mCurToken != token) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001728 if (DEBUG) Slog.w(TAG, "Ignoring hideInputMethod of uid "
1729 + Binder.getCallingUid() + " token: " + token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001730 return;
1731 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001732 long ident = Binder.clearCallingIdentity();
1733 try {
The Android Open Source Project4df24232009-03-05 14:34:35 -08001734 hideCurrentInputLocked(flags, null);
1735 } finally {
1736 Binder.restoreCallingIdentity(ident);
1737 }
1738 }
1739 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001740
satok42c5a162011-05-26 16:46:14 +09001741 @Override
The Android Open Source Project4df24232009-03-05 14:34:35 -08001742 public void showMySoftInput(IBinder token, int flags) {
1743 synchronized (mMethodMap) {
1744 if (token == null || mCurToken != token) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001745 Slog.w(TAG, "Ignoring showMySoftInput of uid "
1746 + Binder.getCallingUid() + " token: " + token);
The Android Open Source Project4df24232009-03-05 14:34:35 -08001747 return;
1748 }
1749 long ident = Binder.clearCallingIdentity();
1750 try {
1751 showCurrentInputLocked(flags, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001752 } finally {
1753 Binder.restoreCallingIdentity(ident);
1754 }
1755 }
1756 }
1757
1758 void setEnabledSessionInMainThread(SessionState session) {
1759 if (mEnabledSession != session) {
1760 if (mEnabledSession != null) {
1761 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001762 if (DEBUG) Slog.v(TAG, "Disabling: " + mEnabledSession);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001763 mEnabledSession.method.setSessionEnabled(
1764 mEnabledSession.session, false);
1765 } catch (RemoteException e) {
1766 }
1767 }
1768 mEnabledSession = session;
1769 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001770 if (DEBUG) Slog.v(TAG, "Enabling: " + mEnabledSession);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001771 session.method.setSessionEnabled(
1772 session.session, true);
1773 } catch (RemoteException e) {
1774 }
1775 }
1776 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001777
satok42c5a162011-05-26 16:46:14 +09001778 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001779 public boolean handleMessage(Message msg) {
1780 HandlerCaller.SomeArgs args;
1781 switch (msg.what) {
1782 case MSG_SHOW_IM_PICKER:
1783 showInputMethodMenu();
1784 return true;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001785
satokab751aa2010-09-14 19:17:36 +09001786 case MSG_SHOW_IM_SUBTYPE_PICKER:
1787 showInputMethodSubtypeMenu();
1788 return true;
1789
satok47a44912010-10-06 16:03:58 +09001790 case MSG_SHOW_IM_SUBTYPE_ENABLER:
satok217f5482010-12-15 05:19:19 +09001791 args = (HandlerCaller.SomeArgs)msg.obj;
satok7fee71f2010-12-17 18:54:26 +09001792 showInputMethodAndSubtypeEnabler((String)args.arg1);
satok217f5482010-12-15 05:19:19 +09001793 return true;
1794
1795 case MSG_SHOW_IM_CONFIG:
1796 showConfigureInputMethods();
satok47a44912010-10-06 16:03:58 +09001797 return true;
1798
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001799 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001800
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001801 case MSG_UNBIND_INPUT:
1802 try {
1803 ((IInputMethod)msg.obj).unbindInput();
1804 } catch (RemoteException e) {
1805 // There is nothing interesting about the method dying.
1806 }
1807 return true;
1808 case MSG_BIND_INPUT:
1809 args = (HandlerCaller.SomeArgs)msg.obj;
1810 try {
1811 ((IInputMethod)args.arg1).bindInput((InputBinding)args.arg2);
1812 } catch (RemoteException e) {
1813 }
1814 return true;
1815 case MSG_SHOW_SOFT_INPUT:
The Android Open Source Project4df24232009-03-05 14:34:35 -08001816 args = (HandlerCaller.SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001817 try {
The Android Open Source Project4df24232009-03-05 14:34:35 -08001818 ((IInputMethod)args.arg1).showSoftInput(msg.arg1,
1819 (ResultReceiver)args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001820 } catch (RemoteException e) {
1821 }
1822 return true;
1823 case MSG_HIDE_SOFT_INPUT:
The Android Open Source Project4df24232009-03-05 14:34:35 -08001824 args = (HandlerCaller.SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001825 try {
The Android Open Source Project4df24232009-03-05 14:34:35 -08001826 ((IInputMethod)args.arg1).hideSoftInput(0,
1827 (ResultReceiver)args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001828 } catch (RemoteException e) {
1829 }
1830 return true;
1831 case MSG_ATTACH_TOKEN:
1832 args = (HandlerCaller.SomeArgs)msg.obj;
1833 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001834 if (DEBUG) Slog.v(TAG, "Sending attach of token: " + args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001835 ((IInputMethod)args.arg1).attachToken((IBinder)args.arg2);
1836 } catch (RemoteException e) {
1837 }
1838 return true;
1839 case MSG_CREATE_SESSION:
1840 args = (HandlerCaller.SomeArgs)msg.obj;
1841 try {
1842 ((IInputMethod)args.arg1).createSession(
1843 (IInputMethodCallback)args.arg2);
1844 } catch (RemoteException e) {
1845 }
1846 return true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001847 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001848
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001849 case MSG_START_INPUT:
1850 args = (HandlerCaller.SomeArgs)msg.obj;
1851 try {
1852 SessionState session = (SessionState)args.arg1;
1853 setEnabledSessionInMainThread(session);
1854 session.method.startInput((IInputContext)args.arg2,
1855 (EditorInfo)args.arg3);
1856 } catch (RemoteException e) {
1857 }
1858 return true;
1859 case MSG_RESTART_INPUT:
1860 args = (HandlerCaller.SomeArgs)msg.obj;
1861 try {
1862 SessionState session = (SessionState)args.arg1;
1863 setEnabledSessionInMainThread(session);
1864 session.method.restartInput((IInputContext)args.arg2,
1865 (EditorInfo)args.arg3);
1866 } catch (RemoteException e) {
1867 }
1868 return true;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001869
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001870 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001871
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001872 case MSG_UNBIND_METHOD:
1873 try {
1874 ((IInputMethodClient)msg.obj).onUnbindMethod(msg.arg1);
1875 } catch (RemoteException e) {
1876 // There is nothing interesting about the last client dying.
1877 }
1878 return true;
1879 case MSG_BIND_METHOD:
1880 args = (HandlerCaller.SomeArgs)msg.obj;
1881 try {
1882 ((IInputMethodClient)args.arg1).onBindMethod(
1883 (InputBindResult)args.arg2);
1884 } catch (RemoteException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001885 Slog.w(TAG, "Client died receiving input method " + args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001886 }
1887 return true;
1888 }
1889 return false;
1890 }
1891
Brandon Ballinger6da35a02009-10-21 00:38:13 -07001892 private boolean isSystemIme(InputMethodInfo inputMethod) {
1893 return (inputMethod.getServiceInfo().applicationInfo.flags
1894 & ApplicationInfo.FLAG_SYSTEM) != 0;
1895 }
1896
Ken Wakasa586f0512011-01-20 22:31:01 +09001897 private static ArrayList<InputMethodSubtype> getSubtypes(InputMethodInfo imi) {
1898 ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>();
1899 final int subtypeCount = imi.getSubtypeCount();
1900 for (int i = 0; i < subtypeCount; ++i) {
1901 subtypes.add(imi.getSubtypeAt(i));
1902 }
1903 return subtypes;
1904 }
1905
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001906 private boolean chooseNewDefaultIMELocked() {
satokd87c2592010-09-29 11:52:06 +09001907 List<InputMethodInfo> enabled = mSettings.getEnabledInputMethodListLocked();
Brandon Ballinger6da35a02009-10-21 00:38:13 -07001908 if (enabled != null && enabled.size() > 0) {
Dianne Hackborn83e48f52010-03-23 23:03:25 -07001909 // We'd prefer to fall back on a system IME, since that is safer.
1910 int i=enabled.size();
1911 while (i > 0) {
1912 i--;
1913 if ((enabled.get(i).getServiceInfo().applicationInfo.flags
1914 & ApplicationInfo.FLAG_SYSTEM) != 0) {
1915 break;
1916 }
1917 }
satokab751aa2010-09-14 19:17:36 +09001918 InputMethodInfo imi = enabled.get(i);
satok03eb319a2010-11-11 18:17:42 +09001919 if (DEBUG) {
1920 Slog.d(TAG, "New default IME was selected: " + imi.getId());
1921 }
satok723a27e2010-11-11 14:58:11 +09001922 resetSelectedInputMethodAndSubtypeLocked(imi.getId());
Brandon Ballinger6da35a02009-10-21 00:38:13 -07001923 return true;
1924 }
1925
1926 return false;
1927 }
1928
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001929 void buildInputMethodListLocked(ArrayList<InputMethodInfo> list,
1930 HashMap<String, InputMethodInfo> map) {
1931 list.clear();
1932 map.clear();
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001933
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001934 PackageManager pm = mContext.getPackageManager();
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08001935 final Configuration config = mRes.getConfiguration();
Amith Yamasanie861ec12010-03-24 21:39:27 -07001936 final boolean haveHardKeyboard = config.keyboard == Configuration.KEYBOARD_QWERTY;
1937 String disabledSysImes = Settings.Secure.getString(mContext.getContentResolver(),
1938 Secure.DISABLED_SYSTEM_INPUT_METHODS);
1939 if (disabledSysImes == null) disabledSysImes = "";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001940
1941 List<ResolveInfo> services = pm.queryIntentServices(
1942 new Intent(InputMethod.SERVICE_INTERFACE),
1943 PackageManager.GET_META_DATA);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001944
satoke7c6998e2011-06-03 17:57:59 +09001945 final HashMap<String, List<InputMethodSubtype>> additionalSubtypes =
1946 mFileManager.getAllAdditionalInputMethodSubtypes();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001947 for (int i = 0; i < services.size(); ++i) {
1948 ResolveInfo ri = services.get(i);
1949 ServiceInfo si = ri.serviceInfo;
1950 ComponentName compName = new ComponentName(si.packageName, si.name);
1951 if (!android.Manifest.permission.BIND_INPUT_METHOD.equals(
1952 si.permission)) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001953 Slog.w(TAG, "Skipping input method " + compName
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001954 + ": it does not require the permission "
1955 + android.Manifest.permission.BIND_INPUT_METHOD);
1956 continue;
1957 }
1958
Joe Onorato8a9b2202010-02-26 18:56:32 -08001959 if (DEBUG) Slog.d(TAG, "Checking " + compName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001960
1961 try {
satoke7c6998e2011-06-03 17:57:59 +09001962 InputMethodInfo p = new InputMethodInfo(mContext, ri, additionalSubtypes);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001963 list.add(p);
Amith Yamasanie861ec12010-03-24 21:39:27 -07001964 final String id = p.getId();
1965 map.put(id, p);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001966
Amith Yamasanie861ec12010-03-24 21:39:27 -07001967 // System IMEs are enabled by default, unless there's a hard keyboard
1968 // and the system IME was explicitly disabled
1969 if (isSystemIme(p) && (!haveHardKeyboard || disabledSysImes.indexOf(id) < 0)) {
1970 setInputMethodEnabledLocked(id, true);
Brandon Ballinger6da35a02009-10-21 00:38:13 -07001971 }
1972
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001973 if (DEBUG) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001974 Slog.d(TAG, "Found a third-party input method " + p);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001975 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001976
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001977 } catch (XmlPullParserException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001978 Slog.w(TAG, "Unable to load input method " + compName, e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001979 } catch (IOException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001980 Slog.w(TAG, "Unable to load input method " + compName, e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001981 }
1982 }
Brandon Ballinger6da35a02009-10-21 00:38:13 -07001983
1984 String defaultIme = Settings.Secure.getString(mContext
1985 .getContentResolver(), Settings.Secure.DEFAULT_INPUT_METHOD);
satok913a8922010-08-26 21:53:41 +09001986 if (!TextUtils.isEmpty(defaultIme) && !map.containsKey(defaultIme)) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001987 if (chooseNewDefaultIMELocked()) {
Brandon Ballinger6da35a02009-10-21 00:38:13 -07001988 updateFromSettingsLocked();
1989 }
1990 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001991 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001992
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001993 // ----------------------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001994
satokab751aa2010-09-14 19:17:36 +09001995 private void showInputMethodMenu() {
1996 showInputMethodMenuInternal(false);
1997 }
1998
1999 private void showInputMethodSubtypeMenu() {
2000 showInputMethodMenuInternal(true);
2001 }
2002
satok217f5482010-12-15 05:19:19 +09002003 private void showInputMethodAndSubtypeEnabler(String inputMethodId) {
Tadashi G. Takaokaf49688f2011-01-20 17:56:13 +09002004 Intent intent = new Intent(Settings.ACTION_INPUT_METHOD_SUBTYPE_SETTINGS);
satok47a44912010-10-06 16:03:58 +09002005 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
satok86417ea2010-10-27 14:11:03 +09002006 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED
2007 | Intent.FLAG_ACTIVITY_CLEAR_TOP);
satok7fee71f2010-12-17 18:54:26 +09002008 if (!TextUtils.isEmpty(inputMethodId)) {
Tadashi G. Takaoka25480202011-01-20 23:13:02 +09002009 intent.putExtra(Settings.EXTRA_INPUT_METHOD_ID, inputMethodId);
satok7fee71f2010-12-17 18:54:26 +09002010 }
satok217f5482010-12-15 05:19:19 +09002011 mContext.startActivity(intent);
2012 }
2013
2014 private void showConfigureInputMethods() {
2015 Intent intent = new Intent(Settings.ACTION_INPUT_METHOD_SETTINGS);
2016 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
2017 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED
2018 | Intent.FLAG_ACTIVITY_CLEAR_TOP);
satok47a44912010-10-06 16:03:58 +09002019 mContext.startActivity(intent);
2020 }
2021
satokab751aa2010-09-14 19:17:36 +09002022 private void showInputMethodMenuInternal(boolean showSubtypes) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002023 if (DEBUG) Slog.v(TAG, "Show switching menu");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002024
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002025 final Context context = mContext;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002026 final PackageManager pm = context.getPackageManager();
satokbc81b692011-08-26 16:22:22 +09002027 final boolean isScreenLocked = mKeyguardManager != null
2028 && mKeyguardManager.isKeyguardLocked() && mKeyguardManager.isKeyguardSecure();
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002029
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002030 String lastInputMethodId = Settings.Secure.getString(context
2031 .getContentResolver(), Settings.Secure.DEFAULT_INPUT_METHOD);
satokab751aa2010-09-14 19:17:36 +09002032 int lastInputMethodSubtypeId = getSelectedInputMethodSubtypeId(lastInputMethodId);
Joe Onorato8a9b2202010-02-26 18:56:32 -08002033 if (DEBUG) Slog.v(TAG, "Current IME: " + lastInputMethodId);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002034
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002035 synchronized (mMethodMap) {
satokbb4aa062011-01-19 21:40:27 +09002036 final HashMap<InputMethodInfo, List<InputMethodSubtype>> immis =
2037 getExplicitlyOrImplicitlyEnabledInputMethodsAndSubtypeListLocked();
satok7f35c8c2010-10-07 21:13:11 +09002038 if (immis == null || immis.size() == 0) {
2039 return;
2040 }
2041
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002042 hideInputMethodMenuLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002043
Ken Wakasa761eb372011-03-04 19:06:18 +09002044 final TreeMap<InputMethodInfo, List<InputMethodSubtype>> sortedImmis =
2045 new TreeMap<InputMethodInfo, List<InputMethodSubtype>>(
2046 new Comparator<InputMethodInfo>() {
2047 @Override
2048 public int compare(InputMethodInfo imi1, InputMethodInfo imi2) {
2049 if (imi2 == null) return 0;
2050 if (imi1 == null) return 1;
2051 if (pm == null) {
2052 return imi1.getId().compareTo(imi2.getId());
2053 }
2054 CharSequence imiId1 = imi1.loadLabel(pm) + "/" + imi1.getId();
2055 CharSequence imiId2 = imi2.loadLabel(pm) + "/" + imi2.getId();
2056 return imiId1.toString().compareTo(imiId2.toString());
2057 }
2058 });
satok913a8922010-08-26 21:53:41 +09002059
Ken Wakasa761eb372011-03-04 19:06:18 +09002060 sortedImmis.putAll(immis);
2061
2062 final ArrayList<Pair<CharSequence, Pair<InputMethodInfo, Integer>>> imList =
2063 new ArrayList<Pair<CharSequence, Pair<InputMethodInfo, Integer>>>();
2064
2065 for (InputMethodInfo imi : sortedImmis.keySet()) {
satokbb4aa062011-01-19 21:40:27 +09002066 if (imi == null) continue;
2067 List<InputMethodSubtype> explicitlyOrImplicitlyEnabledSubtypeList = immis.get(imi);
satok7f35c8c2010-10-07 21:13:11 +09002068 HashSet<String> enabledSubtypeSet = new HashSet<String>();
satokbb4aa062011-01-19 21:40:27 +09002069 for (InputMethodSubtype subtype: explicitlyOrImplicitlyEnabledSubtypeList) {
2070 enabledSubtypeSet.add(String.valueOf(subtype.hashCode()));
satok7f35c8c2010-10-07 21:13:11 +09002071 }
satokbb4aa062011-01-19 21:40:27 +09002072 ArrayList<InputMethodSubtype> subtypes = getSubtypes(imi);
Ken Wakasa81f6e3d2011-03-04 09:59:52 +09002073 final CharSequence label = imi.loadLabel(pm);
satok7f35c8c2010-10-07 21:13:11 +09002074 if (showSubtypes && enabledSubtypeSet.size() > 0) {
satokbb4aa062011-01-19 21:40:27 +09002075 final int subtypeCount = imi.getSubtypeCount();
satok4a28bde2011-06-29 21:03:40 +09002076 if (DEBUG) {
2077 Slog.v(TAG, "Add subtypes: " + subtypeCount + ", " + imi.getId());
2078 }
Ken Wakasa586f0512011-01-20 22:31:01 +09002079 for (int j = 0; j < subtypeCount; ++j) {
satok4a28bde2011-06-29 21:03:40 +09002080 final InputMethodSubtype subtype = imi.getSubtypeAt(j);
2081 final String subtypeHashCode = String.valueOf(subtype.hashCode());
2082 // We show all enabled IMEs and subtypes when an IME is shown.
2083 if (enabledSubtypeSet.contains(subtypeHashCode)
satokbc81b692011-08-26 16:22:22 +09002084 && ((mInputShown && !isScreenLocked) || !subtype.isAuxiliary())) {
Ken Wakasa761eb372011-03-04 19:06:18 +09002085 final CharSequence title;
satok4a28bde2011-06-29 21:03:40 +09002086 final String mode = subtype.getMode();
2087 title = TextUtils.concat(subtype.getDisplayName(context,
2088 imi.getPackageName(), imi.getServiceInfo().applicationInfo),
2089 (TextUtils.isEmpty(label) ? "" : " (" + label + ")"));
Ken Wakasa761eb372011-03-04 19:06:18 +09002090 imList.add(new Pair<CharSequence, Pair<InputMethodInfo, Integer>>(
2091 title, new Pair<InputMethodInfo, Integer>(imi, j)));
satok4a28bde2011-06-29 21:03:40 +09002092 // Removing this subtype from enabledSubtypeSet because we no longer
2093 // need to add an entry of this subtype to imList to avoid duplicated
2094 // entries.
2095 enabledSubtypeSet.remove(subtypeHashCode);
satokab751aa2010-09-14 19:17:36 +09002096 }
satokab751aa2010-09-14 19:17:36 +09002097 }
2098 } else {
Ken Wakasa761eb372011-03-04 19:06:18 +09002099 imList.add(new Pair<CharSequence, Pair<InputMethodInfo, Integer>>(
2100 label, new Pair<InputMethodInfo, Integer>(imi, NOT_A_SUBTYPE_ID)));
satokab751aa2010-09-14 19:17:36 +09002101 }
Dianne Hackborn97106ab2010-03-03 00:08:31 -08002102 }
satok913a8922010-08-26 21:53:41 +09002103
Ken Wakasa761eb372011-03-04 19:06:18 +09002104 final int N = imList.size();
2105 mItems = new CharSequence[N];
2106 for (int i = 0; i < N; ++i) {
2107 mItems[i] = imList.get(i).first;
2108 }
satokab751aa2010-09-14 19:17:36 +09002109 mIms = new InputMethodInfo[N];
2110 mSubtypeIds = new int[N];
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002111 int checkedItem = 0;
2112 for (int i = 0; i < N; ++i) {
Ken Wakasa761eb372011-03-04 19:06:18 +09002113 Pair<InputMethodInfo, Integer> value = imList.get(i).second;
satokab751aa2010-09-14 19:17:36 +09002114 mIms[i] = value.first;
2115 mSubtypeIds[i] = value.second;
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002116 if (mIms[i].getId().equals(lastInputMethodId)) {
satokab751aa2010-09-14 19:17:36 +09002117 int subtypeId = mSubtypeIds[i];
2118 if ((subtypeId == NOT_A_SUBTYPE_ID)
2119 || (lastInputMethodSubtypeId == NOT_A_SUBTYPE_ID && subtypeId == 0)
2120 || (subtypeId == lastInputMethodSubtypeId)) {
2121 checkedItem = i;
2122 }
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002123 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002124 }
satokab751aa2010-09-14 19:17:36 +09002125
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002126 AlertDialog.OnClickListener adocl = new AlertDialog.OnClickListener() {
satok42c5a162011-05-26 16:46:14 +09002127 @Override
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002128 public void onClick(DialogInterface dialog, int which) {
2129 hideInputMethodMenu();
2130 }
2131 };
satokd87c2592010-09-29 11:52:06 +09002132
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002133 TypedArray a = context.obtainStyledAttributes(null,
2134 com.android.internal.R.styleable.DialogPreference,
2135 com.android.internal.R.attr.alertDialogStyle, 0);
2136 mDialogBuilder = new AlertDialog.Builder(context)
2137 .setTitle(com.android.internal.R.string.select_input_method)
2138 .setOnCancelListener(new OnCancelListener() {
satok42c5a162011-05-26 16:46:14 +09002139 @Override
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002140 public void onCancel(DialogInterface dialog) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002141 hideInputMethodMenu();
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002142 }
2143 })
2144 .setIcon(a.getDrawable(
2145 com.android.internal.R.styleable.DialogPreference_dialogTitle));
2146 a.recycle();
satokd87c2592010-09-29 11:52:06 +09002147
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002148 mDialogBuilder.setSingleChoiceItems(mItems, checkedItem,
2149 new AlertDialog.OnClickListener() {
satok42c5a162011-05-26 16:46:14 +09002150 @Override
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002151 public void onClick(DialogInterface dialog, int which) {
2152 synchronized (mMethodMap) {
satokab751aa2010-09-14 19:17:36 +09002153 if (mIms == null || mIms.length <= which
2154 || mSubtypeIds == null || mSubtypeIds.length <= which) {
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002155 return;
2156 }
2157 InputMethodInfo im = mIms[which];
satokab751aa2010-09-14 19:17:36 +09002158 int subtypeId = mSubtypeIds[which];
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002159 hideInputMethodMenu();
2160 if (im != null) {
satokab751aa2010-09-14 19:17:36 +09002161 if ((subtypeId < 0)
Ken Wakasa586f0512011-01-20 22:31:01 +09002162 || (subtypeId >= im.getSubtypeCount())) {
satokab751aa2010-09-14 19:17:36 +09002163 subtypeId = NOT_A_SUBTYPE_ID;
2164 }
2165 setInputMethodLocked(im.getId(), subtypeId);
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002166 }
Dianne Hackborn20cb56e2010-03-04 00:58:29 -08002167 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002168 }
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002169 });
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002170
satokbc81b692011-08-26 16:22:22 +09002171 if (showSubtypes && !isScreenLocked) {
satok82beadf2010-12-27 19:03:06 +09002172 mDialogBuilder.setPositiveButton(
2173 com.android.internal.R.string.configure_input_methods,
satok7f35c8c2010-10-07 21:13:11 +09002174 new DialogInterface.OnClickListener() {
satok42c5a162011-05-26 16:46:14 +09002175 @Override
satok7f35c8c2010-10-07 21:13:11 +09002176 public void onClick(DialogInterface dialog, int whichButton) {
satok217f5482010-12-15 05:19:19 +09002177 showConfigureInputMethods();
satok7f35c8c2010-10-07 21:13:11 +09002178 }
2179 });
2180 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002181 mSwitchingDialog = mDialogBuilder.create();
Dianne Hackborne3a7f622011-03-03 21:48:24 -08002182 mSwitchingDialog.setCanceledOnTouchOutside(true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002183 mSwitchingDialog.getWindow().setType(
2184 WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG);
Dianne Hackborne3a7f622011-03-03 21:48:24 -08002185 mSwitchingDialog.getWindow().getAttributes().setTitle("Select input method");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002186 mSwitchingDialog.show();
2187 }
2188 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002189
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002190 void hideInputMethodMenu() {
The Android Open Source Project10592532009-03-18 17:39:46 -07002191 synchronized (mMethodMap) {
2192 hideInputMethodMenuLocked();
2193 }
2194 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002195
The Android Open Source Project10592532009-03-18 17:39:46 -07002196 void hideInputMethodMenuLocked() {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002197 if (DEBUG) Slog.v(TAG, "Hide switching menu");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002198
The Android Open Source Project10592532009-03-18 17:39:46 -07002199 if (mSwitchingDialog != null) {
2200 mSwitchingDialog.dismiss();
2201 mSwitchingDialog = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002202 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002203
The Android Open Source Project10592532009-03-18 17:39:46 -07002204 mDialogBuilder = null;
2205 mItems = null;
2206 mIms = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002207 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002208
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002209 // ----------------------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002210
satok42c5a162011-05-26 16:46:14 +09002211 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002212 public boolean setInputMethodEnabled(String id, boolean enabled) {
2213 synchronized (mMethodMap) {
2214 if (mContext.checkCallingOrSelfPermission(
2215 android.Manifest.permission.WRITE_SECURE_SETTINGS)
2216 != PackageManager.PERMISSION_GRANTED) {
2217 throw new SecurityException(
2218 "Requires permission "
2219 + android.Manifest.permission.WRITE_SECURE_SETTINGS);
2220 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002221
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002222 long ident = Binder.clearCallingIdentity();
2223 try {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002224 return setInputMethodEnabledLocked(id, enabled);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002225 } finally {
2226 Binder.restoreCallingIdentity(ident);
2227 }
2228 }
2229 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002230
2231 boolean setInputMethodEnabledLocked(String id, boolean enabled) {
2232 // Make sure this is a valid input method.
2233 InputMethodInfo imm = mMethodMap.get(id);
2234 if (imm == null) {
satokd87c2592010-09-29 11:52:06 +09002235 throw new IllegalArgumentException("Unknown id: " + mCurMethodId);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002236 }
2237
satokd87c2592010-09-29 11:52:06 +09002238 List<Pair<String, ArrayList<String>>> enabledInputMethodsList = mSettings
2239 .getEnabledInputMethodsAndSubtypeListLocked();
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002240
satokd87c2592010-09-29 11:52:06 +09002241 if (enabled) {
2242 for (Pair<String, ArrayList<String>> pair: enabledInputMethodsList) {
2243 if (pair.first.equals(id)) {
2244 // We are enabling this input method, but it is already enabled.
2245 // Nothing to do. The previous state was enabled.
2246 return true;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002247 }
2248 }
satokd87c2592010-09-29 11:52:06 +09002249 mSettings.appendAndPutEnabledInputMethodLocked(id, false);
2250 // Previous state was disabled.
2251 return false;
2252 } else {
2253 StringBuilder builder = new StringBuilder();
2254 if (mSettings.buildAndPutEnabledInputMethodsStrRemovingIdLocked(
2255 builder, enabledInputMethodsList, id)) {
2256 // Disabled input method is currently selected, switch to another one.
2257 String selId = Settings.Secure.getString(mContext.getContentResolver(),
2258 Settings.Secure.DEFAULT_INPUT_METHOD);
satok03eb319a2010-11-11 18:17:42 +09002259 if (id.equals(selId) && !chooseNewDefaultIMELocked()) {
2260 Slog.i(TAG, "Can't find new IME, unsetting the current input method.");
2261 resetSelectedInputMethodAndSubtypeLocked("");
satokd87c2592010-09-29 11:52:06 +09002262 }
2263 // Previous state was enabled.
2264 return true;
2265 } else {
2266 // We are disabling the input method but it is already disabled.
2267 // Nothing to do. The previous state was disabled.
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002268 return false;
2269 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002270 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002271 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002272
satok57ffc002011-01-25 00:11:47 +09002273 private boolean canAddToLastInputMethod(InputMethodSubtype subtype) {
2274 if (subtype == null) return true;
satok9b415792011-05-30 12:37:52 +09002275 return !subtype.isAuxiliary();
satok57ffc002011-01-25 00:11:47 +09002276 }
2277
satok723a27e2010-11-11 14:58:11 +09002278 private void saveCurrentInputMethodAndSubtypeToHistory() {
2279 String subtypeId = NOT_A_SUBTYPE_ID_STR;
2280 if (mCurrentSubtype != null) {
2281 subtypeId = String.valueOf(mCurrentSubtype.hashCode());
2282 }
satok57ffc002011-01-25 00:11:47 +09002283 if (canAddToLastInputMethod(mCurrentSubtype)) {
2284 mSettings.addSubtypeToHistory(mCurMethodId, subtypeId);
2285 }
satokab751aa2010-09-14 19:17:36 +09002286 }
2287
satok723a27e2010-11-11 14:58:11 +09002288 private void setSelectedInputMethodAndSubtypeLocked(InputMethodInfo imi, int subtypeId,
2289 boolean setSubtypeOnly) {
2290 // Update the history of InputMethod and Subtype
2291 saveCurrentInputMethodAndSubtypeToHistory();
2292
2293 // Set Subtype here
2294 if (imi == null || subtypeId < 0) {
2295 mSettings.putSelectedSubtype(NOT_A_SUBTYPE_ID);
Tadashi G. Takaoka0ba75bb2010-11-09 12:19:32 -08002296 mCurrentSubtype = null;
satok723a27e2010-11-11 14:58:11 +09002297 } else {
Ken Wakasa586f0512011-01-20 22:31:01 +09002298 if (subtypeId < imi.getSubtypeCount()) {
2299 InputMethodSubtype subtype = imi.getSubtypeAt(subtypeId);
2300 mSettings.putSelectedSubtype(subtype.hashCode());
2301 mCurrentSubtype = subtype;
satok723a27e2010-11-11 14:58:11 +09002302 } else {
2303 mSettings.putSelectedSubtype(NOT_A_SUBTYPE_ID);
2304 mCurrentSubtype = null;
2305 }
satokab751aa2010-09-14 19:17:36 +09002306 }
satok723a27e2010-11-11 14:58:11 +09002307
2308 if (!setSubtypeOnly) {
2309 // Set InputMethod here
2310 mSettings.putSelectedInputMethod(imi != null ? imi.getId() : "");
2311 }
2312 }
2313
2314 private void resetSelectedInputMethodAndSubtypeLocked(String newDefaultIme) {
2315 InputMethodInfo imi = mMethodMap.get(newDefaultIme);
2316 int lastSubtypeId = NOT_A_SUBTYPE_ID;
2317 // newDefaultIme is empty when there is no candidate for the selected IME.
2318 if (imi != null && !TextUtils.isEmpty(newDefaultIme)) {
2319 String subtypeHashCode = mSettings.getLastSubtypeForInputMethodLocked(newDefaultIme);
2320 if (subtypeHashCode != null) {
2321 try {
2322 lastSubtypeId = getSubtypeIdFromHashCode(
2323 imi, Integer.valueOf(subtypeHashCode));
2324 } catch (NumberFormatException e) {
2325 Slog.w(TAG, "HashCode for subtype looks broken: " + subtypeHashCode, e);
2326 }
2327 }
2328 }
2329 setSelectedInputMethodAndSubtypeLocked(imi, lastSubtypeId, false);
satokab751aa2010-09-14 19:17:36 +09002330 }
2331
2332 private int getSelectedInputMethodSubtypeId(String id) {
2333 InputMethodInfo imi = mMethodMap.get(id);
2334 if (imi == null) {
2335 return NOT_A_SUBTYPE_ID;
2336 }
satokab751aa2010-09-14 19:17:36 +09002337 int subtypeId;
2338 try {
2339 subtypeId = Settings.Secure.getInt(mContext.getContentResolver(),
2340 Settings.Secure.SELECTED_INPUT_METHOD_SUBTYPE);
2341 } catch (SettingNotFoundException e) {
2342 return NOT_A_SUBTYPE_ID;
2343 }
satok723a27e2010-11-11 14:58:11 +09002344 return getSubtypeIdFromHashCode(imi, subtypeId);
2345 }
2346
2347 private int getSubtypeIdFromHashCode(InputMethodInfo imi, int subtypeHashCode) {
satok28203512010-11-24 11:06:49 +09002348 if (imi != null) {
Ken Wakasa586f0512011-01-20 22:31:01 +09002349 final int subtypeCount = imi.getSubtypeCount();
2350 for (int i = 0; i < subtypeCount; ++i) {
2351 InputMethodSubtype ims = imi.getSubtypeAt(i);
satok28203512010-11-24 11:06:49 +09002352 if (subtypeHashCode == ims.hashCode()) {
2353 return i;
2354 }
satokab751aa2010-09-14 19:17:36 +09002355 }
2356 }
2357 return NOT_A_SUBTYPE_ID;
2358 }
2359
satokdf31ae62011-01-15 06:19:44 +09002360 private static ArrayList<InputMethodSubtype> getApplicableSubtypesLocked(
2361 Resources res, List<InputMethodSubtype> subtypes) {
2362 final String systemLocale = res.getConfiguration().locale.toString();
satok3da92232011-01-11 22:46:30 +09002363 if (TextUtils.isEmpty(systemLocale)) return new ArrayList<InputMethodSubtype>();
2364 HashMap<String, InputMethodSubtype> applicableModeAndSubtypesMap =
2365 new HashMap<String, InputMethodSubtype>();
satok16331c82010-12-20 23:48:46 +09002366 final int N = subtypes.size();
2367 boolean containsKeyboardSubtype = false;
2368 for (int i = 0; i < N; ++i) {
2369 InputMethodSubtype subtype = subtypes.get(i);
satok3da92232011-01-11 22:46:30 +09002370 final String locale = subtype.getLocale();
2371 final String mode = subtype.getMode();
2372 // When system locale starts with subtype's locale, that subtype will be applicable
2373 // for system locale
2374 // For instance, it's clearly applicable for cases like system locale = en_US and
2375 // subtype = en, but it is not necessarily considered applicable for cases like system
2376 // locale = en and subtype = en_US.
2377 // We just call systemLocale.startsWith(locale) in this function because there is no
2378 // need to find applicable subtypes aggressively unlike
2379 // findLastResortApplicableSubtypeLocked.
2380 if (systemLocale.startsWith(locale)) {
2381 InputMethodSubtype applicableSubtype = applicableModeAndSubtypesMap.get(mode);
2382 // If more applicable subtypes are contained, skip.
2383 if (applicableSubtype != null
2384 && systemLocale.equals(applicableSubtype.getLocale())) continue;
2385 applicableModeAndSubtypesMap.put(mode, subtype);
satok16331c82010-12-20 23:48:46 +09002386 if (!containsKeyboardSubtype
2387 && SUBTYPE_MODE_KEYBOARD.equalsIgnoreCase(subtype.getMode())) {
2388 containsKeyboardSubtype = true;
2389 }
2390 }
2391 }
satok4a28bde2011-06-29 21:03:40 +09002392 final ArrayList<InputMethodSubtype> applicableSubtypes = new ArrayList<InputMethodSubtype>(
satok3da92232011-01-11 22:46:30 +09002393 applicableModeAndSubtypesMap.values());
satok16331c82010-12-20 23:48:46 +09002394 if (!containsKeyboardSubtype) {
2395 InputMethodSubtype lastResortKeyboardSubtype = findLastResortApplicableSubtypeLocked(
satokdf31ae62011-01-15 06:19:44 +09002396 res, subtypes, SUBTYPE_MODE_KEYBOARD, systemLocale, true);
satok16331c82010-12-20 23:48:46 +09002397 if (lastResortKeyboardSubtype != null) {
2398 applicableSubtypes.add(lastResortKeyboardSubtype);
2399 }
2400 }
2401 return applicableSubtypes;
2402 }
2403
satok4e4569d2010-11-19 18:45:53 +09002404 /**
2405 * If there are no selected subtypes, tries finding the most applicable one according to the
2406 * given locale.
2407 * @param subtypes this function will search the most applicable subtype in subtypes
2408 * @param mode subtypes will be filtered by mode
2409 * @param locale subtypes will be filtered by locale
satok7599a7f2010-12-22 13:45:23 +09002410 * @param canIgnoreLocaleAsLastResort if this function can't find the most applicable subtype,
2411 * it will return the first subtype matched with mode
satok4e4569d2010-11-19 18:45:53 +09002412 * @return the most applicable subtypeId
2413 */
satokdf31ae62011-01-15 06:19:44 +09002414 private static InputMethodSubtype findLastResortApplicableSubtypeLocked(
2415 Resources res, List<InputMethodSubtype> subtypes, String mode, String locale,
satok7599a7f2010-12-22 13:45:23 +09002416 boolean canIgnoreLocaleAsLastResort) {
satok8fbb1e82010-11-02 23:15:58 +09002417 if (subtypes == null || subtypes.size() == 0) {
satokcd7cd292010-11-20 15:46:23 +09002418 return null;
satok8fbb1e82010-11-02 23:15:58 +09002419 }
satok4e4569d2010-11-19 18:45:53 +09002420 if (TextUtils.isEmpty(locale)) {
satokdf31ae62011-01-15 06:19:44 +09002421 locale = res.getConfiguration().locale.toString();
satok4e4569d2010-11-19 18:45:53 +09002422 }
satok8fbb1e82010-11-02 23:15:58 +09002423 final String language = locale.substring(0, 2);
2424 boolean partialMatchFound = false;
satokcd7cd292010-11-20 15:46:23 +09002425 InputMethodSubtype applicableSubtype = null;
satok7599a7f2010-12-22 13:45:23 +09002426 InputMethodSubtype firstMatchedModeSubtype = null;
satok16331c82010-12-20 23:48:46 +09002427 final int N = subtypes.size();
2428 for (int i = 0; i < N; ++i) {
satokcd7cd292010-11-20 15:46:23 +09002429 InputMethodSubtype subtype = subtypes.get(i);
2430 final String subtypeLocale = subtype.getLocale();
satokd8713432011-01-18 00:55:13 +09002431 // An applicable subtype should match "mode". If mode is null, mode will be ignored,
2432 // and all subtypes with all modes can be candidates.
2433 if (mode == null || subtypes.get(i).getMode().equalsIgnoreCase(mode)) {
satok7599a7f2010-12-22 13:45:23 +09002434 if (firstMatchedModeSubtype == null) {
2435 firstMatchedModeSubtype = subtype;
2436 }
satok9ef02832010-11-04 21:17:48 +09002437 if (locale.equals(subtypeLocale)) {
2438 // Exact match (e.g. system locale is "en_US" and subtype locale is "en_US")
satokcd7cd292010-11-20 15:46:23 +09002439 applicableSubtype = subtype;
satok9ef02832010-11-04 21:17:48 +09002440 break;
2441 } else if (!partialMatchFound && subtypeLocale.startsWith(language)) {
2442 // Partial match (e.g. system locale is "en_US" and subtype locale is "en")
satokcd7cd292010-11-20 15:46:23 +09002443 applicableSubtype = subtype;
satok9ef02832010-11-04 21:17:48 +09002444 partialMatchFound = true;
2445 }
satok8fbb1e82010-11-02 23:15:58 +09002446 }
2447 }
2448
satok7599a7f2010-12-22 13:45:23 +09002449 if (applicableSubtype == null && canIgnoreLocaleAsLastResort) {
2450 return firstMatchedModeSubtype;
satok16331c82010-12-20 23:48:46 +09002451 }
2452
satok8fbb1e82010-11-02 23:15:58 +09002453 // The first subtype applicable to the system locale will be defined as the most applicable
2454 // subtype.
2455 if (DEBUG) {
satok16331c82010-12-20 23:48:46 +09002456 if (applicableSubtype != null) {
2457 Slog.d(TAG, "Applicable InputMethodSubtype was found: "
2458 + applicableSubtype.getMode() + "," + applicableSubtype.getLocale());
2459 }
satok8fbb1e82010-11-02 23:15:58 +09002460 }
satokcd7cd292010-11-20 15:46:23 +09002461 return applicableSubtype;
satok8fbb1e82010-11-02 23:15:58 +09002462 }
2463
satok4e4569d2010-11-19 18:45:53 +09002464 // If there are no selected shortcuts, tries finding the most applicable ones.
2465 private Pair<InputMethodInfo, InputMethodSubtype>
2466 findLastResortApplicableShortcutInputMethodAndSubtypeLocked(String mode) {
2467 List<InputMethodInfo> imis = mSettings.getEnabledInputMethodListLocked();
2468 InputMethodInfo mostApplicableIMI = null;
satokcd7cd292010-11-20 15:46:23 +09002469 InputMethodSubtype mostApplicableSubtype = null;
satok4e4569d2010-11-19 18:45:53 +09002470 boolean foundInSystemIME = false;
2471
2472 // Search applicable subtype for each InputMethodInfo
2473 for (InputMethodInfo imi: imis) {
satok7599a7f2010-12-22 13:45:23 +09002474 final String imiId = imi.getId();
2475 if (foundInSystemIME && !imiId.equals(mCurMethodId)) {
2476 continue;
2477 }
satokcd7cd292010-11-20 15:46:23 +09002478 InputMethodSubtype subtype = null;
satokdf31ae62011-01-15 06:19:44 +09002479 final List<InputMethodSubtype> enabledSubtypes =
2480 getEnabledInputMethodSubtypeList(imi, true);
2481 // 1. Search by the current subtype's locale from enabledSubtypes.
satok4e4569d2010-11-19 18:45:53 +09002482 if (mCurrentSubtype != null) {
satokcd7cd292010-11-20 15:46:23 +09002483 subtype = findLastResortApplicableSubtypeLocked(
satokdf31ae62011-01-15 06:19:44 +09002484 mRes, enabledSubtypes, mode, mCurrentSubtype.getLocale(), false);
satok4e4569d2010-11-19 18:45:53 +09002485 }
satokdf31ae62011-01-15 06:19:44 +09002486 // 2. Search by the system locale from enabledSubtypes.
2487 // 3. Search the first enabled subtype matched with mode from enabledSubtypes.
satokcd7cd292010-11-20 15:46:23 +09002488 if (subtype == null) {
2489 subtype = findLastResortApplicableSubtypeLocked(
satokdf31ae62011-01-15 06:19:44 +09002490 mRes, enabledSubtypes, mode, null, true);
satok4e4569d2010-11-19 18:45:53 +09002491 }
satok7599a7f2010-12-22 13:45:23 +09002492 // 4. Search by the current subtype's locale from all subtypes.
2493 if (subtype == null && mCurrentSubtype != null) {
2494 subtype = findLastResortApplicableSubtypeLocked(
Ken Wakasa586f0512011-01-20 22:31:01 +09002495 mRes, getSubtypes(imi), mode, mCurrentSubtype.getLocale(), false);
satok7599a7f2010-12-22 13:45:23 +09002496 }
2497 // 5. Search by the system locale from all subtypes.
2498 // 6. Search the first enabled subtype matched with mode from all subtypes.
satokcd7cd292010-11-20 15:46:23 +09002499 if (subtype == null) {
satok7599a7f2010-12-22 13:45:23 +09002500 subtype = findLastResortApplicableSubtypeLocked(
Ken Wakasa586f0512011-01-20 22:31:01 +09002501 mRes, getSubtypes(imi), mode, null, true);
satok4e4569d2010-11-19 18:45:53 +09002502 }
satokcd7cd292010-11-20 15:46:23 +09002503 if (subtype != null) {
satok7599a7f2010-12-22 13:45:23 +09002504 if (imiId.equals(mCurMethodId)) {
satok4e4569d2010-11-19 18:45:53 +09002505 // The current input method is the most applicable IME.
2506 mostApplicableIMI = imi;
satokcd7cd292010-11-20 15:46:23 +09002507 mostApplicableSubtype = subtype;
satok4e4569d2010-11-19 18:45:53 +09002508 break;
satok7599a7f2010-12-22 13:45:23 +09002509 } else if (!foundInSystemIME) {
satok4e4569d2010-11-19 18:45:53 +09002510 // The system input method is 2nd applicable IME.
2511 mostApplicableIMI = imi;
satokcd7cd292010-11-20 15:46:23 +09002512 mostApplicableSubtype = subtype;
satok7599a7f2010-12-22 13:45:23 +09002513 if ((imi.getServiceInfo().applicationInfo.flags
2514 & ApplicationInfo.FLAG_SYSTEM) != 0) {
2515 foundInSystemIME = true;
2516 }
satok4e4569d2010-11-19 18:45:53 +09002517 }
2518 }
2519 }
2520 if (DEBUG) {
satokcd7cd292010-11-20 15:46:23 +09002521 if (mostApplicableIMI != null) {
2522 Slog.w(TAG, "Most applicable shortcut input method was:"
2523 + mostApplicableIMI.getId());
2524 if (mostApplicableSubtype != null) {
2525 Slog.w(TAG, "Most applicable shortcut input method subtype was:"
2526 + "," + mostApplicableSubtype.getMode() + ","
2527 + mostApplicableSubtype.getLocale());
2528 }
2529 }
satok4e4569d2010-11-19 18:45:53 +09002530 }
satokcd7cd292010-11-20 15:46:23 +09002531 if (mostApplicableIMI != null) {
satok4e4569d2010-11-19 18:45:53 +09002532 return new Pair<InputMethodInfo, InputMethodSubtype> (mostApplicableIMI,
satokcd7cd292010-11-20 15:46:23 +09002533 mostApplicableSubtype);
satok4e4569d2010-11-19 18:45:53 +09002534 } else {
2535 return null;
2536 }
2537 }
2538
satokab751aa2010-09-14 19:17:36 +09002539 /**
2540 * @return Return the current subtype of this input method.
2541 */
satok42c5a162011-05-26 16:46:14 +09002542 @Override
satokab751aa2010-09-14 19:17:36 +09002543 public InputMethodSubtype getCurrentInputMethodSubtype() {
satok4e4569d2010-11-19 18:45:53 +09002544 boolean subtypeIsSelected = false;
2545 try {
2546 subtypeIsSelected = Settings.Secure.getInt(mContext.getContentResolver(),
2547 Settings.Secure.SELECTED_INPUT_METHOD_SUBTYPE) != NOT_A_SUBTYPE_ID;
2548 } catch (SettingNotFoundException e) {
2549 }
satok3ef8b292010-11-23 06:06:29 +09002550 synchronized (mMethodMap) {
satok3ef8b292010-11-23 06:06:29 +09002551 if (!subtypeIsSelected || mCurrentSubtype == null) {
satok4e4569d2010-11-19 18:45:53 +09002552 String lastInputMethodId = Settings.Secure.getString(
2553 mContext.getContentResolver(), Settings.Secure.DEFAULT_INPUT_METHOD);
satok3ef8b292010-11-23 06:06:29 +09002554 int subtypeId = getSelectedInputMethodSubtypeId(lastInputMethodId);
2555 if (subtypeId == NOT_A_SUBTYPE_ID) {
satok4e4569d2010-11-19 18:45:53 +09002556 InputMethodInfo imi = mMethodMap.get(lastInputMethodId);
2557 if (imi != null) {
2558 // If there are no selected subtypes, the framework will try to find
satokd8713432011-01-18 00:55:13 +09002559 // the most applicable subtype from explicitly or implicitly enabled
2560 // subtypes.
2561 List<InputMethodSubtype> explicitlyOrImplicitlyEnabledSubtypes =
2562 getEnabledInputMethodSubtypeList(imi, true);
2563 // If there is only one explicitly or implicitly enabled subtype,
2564 // just returns it.
2565 if (explicitlyOrImplicitlyEnabledSubtypes.size() == 1) {
2566 mCurrentSubtype = explicitlyOrImplicitlyEnabledSubtypes.get(0);
2567 } else if (explicitlyOrImplicitlyEnabledSubtypes.size() > 1) {
2568 mCurrentSubtype = findLastResortApplicableSubtypeLocked(
2569 mRes, explicitlyOrImplicitlyEnabledSubtypes,
2570 SUBTYPE_MODE_KEYBOARD, null, true);
2571 if (mCurrentSubtype == null) {
2572 mCurrentSubtype = findLastResortApplicableSubtypeLocked(
2573 mRes, explicitlyOrImplicitlyEnabledSubtypes, null, null,
2574 true);
2575 }
2576 }
satok4e4569d2010-11-19 18:45:53 +09002577 }
satokcd7cd292010-11-20 15:46:23 +09002578 } else {
satok3ef8b292010-11-23 06:06:29 +09002579 mCurrentSubtype =
Ken Wakasa586f0512011-01-20 22:31:01 +09002580 getSubtypes(mMethodMap.get(lastInputMethodId)).get(subtypeId);
satok3ef8b292010-11-23 06:06:29 +09002581 }
satok8fbb1e82010-11-02 23:15:58 +09002582 }
satok3ef8b292010-11-23 06:06:29 +09002583 return mCurrentSubtype;
satok8fbb1e82010-11-02 23:15:58 +09002584 }
satokab751aa2010-09-14 19:17:36 +09002585 }
2586
satokf3db1af2010-11-23 13:34:33 +09002587 private void addShortcutInputMethodAndSubtypes(InputMethodInfo imi,
2588 InputMethodSubtype subtype) {
2589 if (mShortcutInputMethodsAndSubtypes.containsKey(imi)) {
2590 mShortcutInputMethodsAndSubtypes.get(imi).add(subtype);
2591 } else {
2592 ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>();
2593 subtypes.add(subtype);
2594 mShortcutInputMethodsAndSubtypes.put(imi, subtypes);
2595 }
2596 }
2597
satok4e4569d2010-11-19 18:45:53 +09002598 // TODO: We should change the return type from List to List<Parcelable>
satokdbf29502011-08-25 15:28:23 +09002599 @SuppressWarnings("rawtypes")
satoke7c6998e2011-06-03 17:57:59 +09002600 @Override
satok4e4569d2010-11-19 18:45:53 +09002601 public List getShortcutInputMethodsAndSubtypes() {
2602 synchronized (mMethodMap) {
satok3da92232011-01-11 22:46:30 +09002603 ArrayList<Object> ret = new ArrayList<Object>();
satokf3db1af2010-11-23 13:34:33 +09002604 if (mShortcutInputMethodsAndSubtypes.size() == 0) {
satok4e4569d2010-11-19 18:45:53 +09002605 // If there are no selected shortcut subtypes, the framework will try to find
2606 // the most applicable subtype from all subtypes whose mode is
2607 // SUBTYPE_MODE_VOICE. This is an exceptional case, so we will hardcode the mode.
satokf3db1af2010-11-23 13:34:33 +09002608 Pair<InputMethodInfo, InputMethodSubtype> info =
2609 findLastResortApplicableShortcutInputMethodAndSubtypeLocked(
2610 SUBTYPE_MODE_VOICE);
satok7599a7f2010-12-22 13:45:23 +09002611 if (info != null) {
satok3da92232011-01-11 22:46:30 +09002612 ret.add(info.first);
2613 ret.add(info.second);
satok7599a7f2010-12-22 13:45:23 +09002614 }
satok3da92232011-01-11 22:46:30 +09002615 return ret;
satokf3db1af2010-11-23 13:34:33 +09002616 }
satokf3db1af2010-11-23 13:34:33 +09002617 for (InputMethodInfo imi: mShortcutInputMethodsAndSubtypes.keySet()) {
2618 ret.add(imi);
2619 for (InputMethodSubtype subtype: mShortcutInputMethodsAndSubtypes.get(imi)) {
2620 ret.add(subtype);
satok4e4569d2010-11-19 18:45:53 +09002621 }
2622 }
satokf3db1af2010-11-23 13:34:33 +09002623 return ret;
satok4e4569d2010-11-19 18:45:53 +09002624 }
2625 }
2626
satok42c5a162011-05-26 16:46:14 +09002627 @Override
satokb66d2872010-11-10 01:04:04 +09002628 public boolean setCurrentInputMethodSubtype(InputMethodSubtype subtype) {
2629 synchronized (mMethodMap) {
2630 if (subtype != null && mCurMethodId != null) {
2631 InputMethodInfo imi = mMethodMap.get(mCurMethodId);
2632 int subtypeId = getSubtypeIdFromHashCode(imi, subtype.hashCode());
2633 if (subtypeId != NOT_A_SUBTYPE_ID) {
2634 setInputMethodLocked(mCurMethodId, subtypeId);
2635 return true;
2636 }
2637 }
2638 return false;
2639 }
2640 }
2641
satokd87c2592010-09-29 11:52:06 +09002642 /**
2643 * Utility class for putting and getting settings for InputMethod
2644 * TODO: Move all putters and getters of settings to this class.
2645 */
2646 private static class InputMethodSettings {
2647 // The string for enabled input method is saved as follows:
2648 // example: ("ime0;subtype0;subtype1;subtype2:ime1:ime2;subtype0")
2649 private static final char INPUT_METHOD_SEPARATER = ':';
2650 private static final char INPUT_METHOD_SUBTYPE_SEPARATER = ';';
satok723a27e2010-11-11 14:58:11 +09002651 private final TextUtils.SimpleStringSplitter mInputMethodSplitter =
satokd87c2592010-09-29 11:52:06 +09002652 new TextUtils.SimpleStringSplitter(INPUT_METHOD_SEPARATER);
2653
satok723a27e2010-11-11 14:58:11 +09002654 private final TextUtils.SimpleStringSplitter mSubtypeSplitter =
satokd87c2592010-09-29 11:52:06 +09002655 new TextUtils.SimpleStringSplitter(INPUT_METHOD_SUBTYPE_SEPARATER);
2656
satokdf31ae62011-01-15 06:19:44 +09002657 private final Resources mRes;
satokd87c2592010-09-29 11:52:06 +09002658 private final ContentResolver mResolver;
2659 private final HashMap<String, InputMethodInfo> mMethodMap;
2660 private final ArrayList<InputMethodInfo> mMethodList;
2661
2662 private String mEnabledInputMethodsStrCache;
2663
2664 private static void buildEnabledInputMethodsSettingString(
2665 StringBuilder builder, Pair<String, ArrayList<String>> pair) {
2666 String id = pair.first;
2667 ArrayList<String> subtypes = pair.second;
2668 builder.append(id);
satok57c767c2010-11-01 22:34:08 +09002669 // Inputmethod and subtypes are saved in the settings as follows:
2670 // ime0;subtype0;subtype1:ime1;subtype0:ime2:ime3;subtype0;subtype1
2671 for (String subtypeId: subtypes) {
2672 builder.append(INPUT_METHOD_SUBTYPE_SEPARATER).append(subtypeId);
satokd87c2592010-09-29 11:52:06 +09002673 }
2674 }
2675
2676 public InputMethodSettings(
satokdf31ae62011-01-15 06:19:44 +09002677 Resources res, ContentResolver resolver,
2678 HashMap<String, InputMethodInfo> methodMap, ArrayList<InputMethodInfo> methodList) {
2679 mRes = res;
satokd87c2592010-09-29 11:52:06 +09002680 mResolver = resolver;
2681 mMethodMap = methodMap;
2682 mMethodList = methodList;
2683 }
2684
2685 public List<InputMethodInfo> getEnabledInputMethodListLocked() {
2686 return createEnabledInputMethodListLocked(
2687 getEnabledInputMethodsAndSubtypeListLocked());
2688 }
2689
satok7f35c8c2010-10-07 21:13:11 +09002690 public List<Pair<InputMethodInfo, ArrayList<String>>>
satok67ddf9c2010-11-17 09:45:54 +09002691 getEnabledInputMethodAndSubtypeHashCodeListLocked() {
2692 return createEnabledInputMethodAndSubtypeHashCodeListLocked(
satok7f35c8c2010-10-07 21:13:11 +09002693 getEnabledInputMethodsAndSubtypeListLocked());
2694 }
2695
satok67ddf9c2010-11-17 09:45:54 +09002696 public List<InputMethodSubtype> getEnabledInputMethodSubtypeListLocked(
2697 InputMethodInfo imi) {
2698 List<Pair<String, ArrayList<String>>> imsList =
2699 getEnabledInputMethodsAndSubtypeListLocked();
2700 ArrayList<InputMethodSubtype> enabledSubtypes =
2701 new ArrayList<InputMethodSubtype>();
satok884ef9a2010-11-18 10:39:46 +09002702 if (imi != null) {
2703 for (Pair<String, ArrayList<String>> imsPair : imsList) {
2704 InputMethodInfo info = mMethodMap.get(imsPair.first);
2705 if (info != null && info.getId().equals(imi.getId())) {
Ken Wakasa586f0512011-01-20 22:31:01 +09002706 final int subtypeCount = info.getSubtypeCount();
2707 for (int i = 0; i < subtypeCount; ++i) {
2708 InputMethodSubtype ims = info.getSubtypeAt(i);
satok884ef9a2010-11-18 10:39:46 +09002709 for (String s: imsPair.second) {
2710 if (String.valueOf(ims.hashCode()).equals(s)) {
2711 enabledSubtypes.add(ims);
2712 }
satok67ddf9c2010-11-17 09:45:54 +09002713 }
2714 }
satok884ef9a2010-11-18 10:39:46 +09002715 break;
satok67ddf9c2010-11-17 09:45:54 +09002716 }
satok67ddf9c2010-11-17 09:45:54 +09002717 }
2718 }
2719 return enabledSubtypes;
2720 }
2721
satokd87c2592010-09-29 11:52:06 +09002722 // At the initial boot, the settings for input methods are not set,
2723 // so we need to enable IME in that case.
2724 public void enableAllIMEsIfThereIsNoEnabledIME() {
2725 if (TextUtils.isEmpty(getEnabledInputMethodsStr())) {
2726 StringBuilder sb = new StringBuilder();
2727 final int N = mMethodList.size();
2728 for (int i = 0; i < N; i++) {
2729 InputMethodInfo imi = mMethodList.get(i);
2730 Slog.i(TAG, "Adding: " + imi.getId());
2731 if (i > 0) sb.append(':');
2732 sb.append(imi.getId());
2733 }
2734 putEnabledInputMethodsStr(sb.toString());
2735 }
2736 }
2737
satokbb4aa062011-01-19 21:40:27 +09002738 private List<Pair<String, ArrayList<String>>> getEnabledInputMethodsAndSubtypeListLocked() {
satokd87c2592010-09-29 11:52:06 +09002739 ArrayList<Pair<String, ArrayList<String>>> imsList
2740 = new ArrayList<Pair<String, ArrayList<String>>>();
2741 final String enabledInputMethodsStr = getEnabledInputMethodsStr();
2742 if (TextUtils.isEmpty(enabledInputMethodsStr)) {
2743 return imsList;
2744 }
satok723a27e2010-11-11 14:58:11 +09002745 mInputMethodSplitter.setString(enabledInputMethodsStr);
2746 while (mInputMethodSplitter.hasNext()) {
2747 String nextImsStr = mInputMethodSplitter.next();
2748 mSubtypeSplitter.setString(nextImsStr);
2749 if (mSubtypeSplitter.hasNext()) {
satokd87c2592010-09-29 11:52:06 +09002750 ArrayList<String> subtypeHashes = new ArrayList<String>();
2751 // The first element is ime id.
satok723a27e2010-11-11 14:58:11 +09002752 String imeId = mSubtypeSplitter.next();
2753 while (mSubtypeSplitter.hasNext()) {
2754 subtypeHashes.add(mSubtypeSplitter.next());
satokd87c2592010-09-29 11:52:06 +09002755 }
2756 imsList.add(new Pair<String, ArrayList<String>>(imeId, subtypeHashes));
2757 }
2758 }
2759 return imsList;
2760 }
2761
2762 public void appendAndPutEnabledInputMethodLocked(String id, boolean reloadInputMethodStr) {
2763 if (reloadInputMethodStr) {
2764 getEnabledInputMethodsStr();
2765 }
2766 if (TextUtils.isEmpty(mEnabledInputMethodsStrCache)) {
2767 // Add in the newly enabled input method.
2768 putEnabledInputMethodsStr(id);
2769 } else {
2770 putEnabledInputMethodsStr(
2771 mEnabledInputMethodsStrCache + INPUT_METHOD_SEPARATER + id);
2772 }
2773 }
2774
2775 /**
2776 * Build and put a string of EnabledInputMethods with removing specified Id.
2777 * @return the specified id was removed or not.
2778 */
2779 public boolean buildAndPutEnabledInputMethodsStrRemovingIdLocked(
2780 StringBuilder builder, List<Pair<String, ArrayList<String>>> imsList, String id) {
2781 boolean isRemoved = false;
2782 boolean needsAppendSeparator = false;
2783 for (Pair<String, ArrayList<String>> ims: imsList) {
2784 String curId = ims.first;
2785 if (curId.equals(id)) {
2786 // We are disabling this input method, and it is
2787 // currently enabled. Skip it to remove from the
2788 // new list.
2789 isRemoved = true;
2790 } else {
2791 if (needsAppendSeparator) {
2792 builder.append(INPUT_METHOD_SEPARATER);
2793 } else {
2794 needsAppendSeparator = true;
2795 }
2796 buildEnabledInputMethodsSettingString(builder, ims);
2797 }
2798 }
2799 if (isRemoved) {
2800 // Update the setting with the new list of input methods.
2801 putEnabledInputMethodsStr(builder.toString());
2802 }
2803 return isRemoved;
2804 }
2805
2806 private List<InputMethodInfo> createEnabledInputMethodListLocked(
2807 List<Pair<String, ArrayList<String>>> imsList) {
2808 final ArrayList<InputMethodInfo> res = new ArrayList<InputMethodInfo>();
2809 for (Pair<String, ArrayList<String>> ims: imsList) {
2810 InputMethodInfo info = mMethodMap.get(ims.first);
2811 if (info != null) {
2812 res.add(info);
2813 }
2814 }
2815 return res;
2816 }
2817
satok7f35c8c2010-10-07 21:13:11 +09002818 private List<Pair<InputMethodInfo, ArrayList<String>>>
satok67ddf9c2010-11-17 09:45:54 +09002819 createEnabledInputMethodAndSubtypeHashCodeListLocked(
satok7f35c8c2010-10-07 21:13:11 +09002820 List<Pair<String, ArrayList<String>>> imsList) {
2821 final ArrayList<Pair<InputMethodInfo, ArrayList<String>>> res
2822 = new ArrayList<Pair<InputMethodInfo, ArrayList<String>>>();
2823 for (Pair<String, ArrayList<String>> ims : imsList) {
2824 InputMethodInfo info = mMethodMap.get(ims.first);
2825 if (info != null) {
2826 res.add(new Pair<InputMethodInfo, ArrayList<String>>(info, ims.second));
2827 }
2828 }
2829 return res;
2830 }
2831
satokd87c2592010-09-29 11:52:06 +09002832 private void putEnabledInputMethodsStr(String str) {
2833 Settings.Secure.putString(mResolver, Settings.Secure.ENABLED_INPUT_METHODS, str);
2834 mEnabledInputMethodsStrCache = str;
2835 }
2836
2837 private String getEnabledInputMethodsStr() {
2838 mEnabledInputMethodsStrCache = Settings.Secure.getString(
2839 mResolver, Settings.Secure.ENABLED_INPUT_METHODS);
satok723a27e2010-11-11 14:58:11 +09002840 if (DEBUG) {
2841 Slog.d(TAG, "getEnabledInputMethodsStr: " + mEnabledInputMethodsStrCache);
2842 }
satokd87c2592010-09-29 11:52:06 +09002843 return mEnabledInputMethodsStrCache;
2844 }
satok723a27e2010-11-11 14:58:11 +09002845
2846 private void saveSubtypeHistory(
2847 List<Pair<String, String>> savedImes, String newImeId, String newSubtypeId) {
2848 StringBuilder builder = new StringBuilder();
2849 boolean isImeAdded = false;
2850 if (!TextUtils.isEmpty(newImeId) && !TextUtils.isEmpty(newSubtypeId)) {
2851 builder.append(newImeId).append(INPUT_METHOD_SUBTYPE_SEPARATER).append(
2852 newSubtypeId);
2853 isImeAdded = true;
2854 }
2855 for (Pair<String, String> ime: savedImes) {
2856 String imeId = ime.first;
2857 String subtypeId = ime.second;
2858 if (TextUtils.isEmpty(subtypeId)) {
2859 subtypeId = NOT_A_SUBTYPE_ID_STR;
2860 }
2861 if (isImeAdded) {
2862 builder.append(INPUT_METHOD_SEPARATER);
2863 } else {
2864 isImeAdded = true;
2865 }
2866 builder.append(imeId).append(INPUT_METHOD_SUBTYPE_SEPARATER).append(
2867 subtypeId);
2868 }
2869 // Remove the last INPUT_METHOD_SEPARATER
2870 putSubtypeHistoryStr(builder.toString());
2871 }
2872
2873 public void addSubtypeToHistory(String imeId, String subtypeId) {
2874 List<Pair<String, String>> subtypeHistory = loadInputMethodAndSubtypeHistoryLocked();
2875 for (Pair<String, String> ime: subtypeHistory) {
2876 if (ime.first.equals(imeId)) {
2877 if (DEBUG) {
satokbb4aa062011-01-19 21:40:27 +09002878 Slog.v(TAG, "Subtype found in the history: " + imeId + ", "
satok723a27e2010-11-11 14:58:11 +09002879 + ime.second);
2880 }
2881 // We should break here
2882 subtypeHistory.remove(ime);
2883 break;
2884 }
2885 }
satokbb4aa062011-01-19 21:40:27 +09002886 if (DEBUG) {
2887 Slog.v(TAG, "Add subtype to the history: " + imeId + ", " + subtypeId);
2888 }
satok723a27e2010-11-11 14:58:11 +09002889 saveSubtypeHistory(subtypeHistory, imeId, subtypeId);
2890 }
2891
2892 private void putSubtypeHistoryStr(String str) {
2893 if (DEBUG) {
2894 Slog.d(TAG, "putSubtypeHistoryStr: " + str);
2895 }
2896 Settings.Secure.putString(
2897 mResolver, Settings.Secure.INPUT_METHODS_SUBTYPE_HISTORY, str);
2898 }
2899
2900 public Pair<String, String> getLastInputMethodAndSubtypeLocked() {
2901 // Gets the first one from the history
2902 return getLastSubtypeForInputMethodLockedInternal(null);
2903 }
2904
2905 public String getLastSubtypeForInputMethodLocked(String imeId) {
2906 Pair<String, String> ime = getLastSubtypeForInputMethodLockedInternal(imeId);
2907 if (ime != null) {
2908 return ime.second;
2909 } else {
2910 return null;
2911 }
2912 }
2913
2914 private Pair<String, String> getLastSubtypeForInputMethodLockedInternal(String imeId) {
2915 List<Pair<String, ArrayList<String>>> enabledImes =
2916 getEnabledInputMethodsAndSubtypeListLocked();
2917 List<Pair<String, String>> subtypeHistory = loadInputMethodAndSubtypeHistoryLocked();
satok4fc87d62011-05-20 16:13:43 +09002918 for (Pair<String, String> imeAndSubtype : subtypeHistory) {
satok723a27e2010-11-11 14:58:11 +09002919 final String imeInTheHistory = imeAndSubtype.first;
2920 // If imeId is empty, returns the first IME and subtype in the history
2921 if (TextUtils.isEmpty(imeId) || imeInTheHistory.equals(imeId)) {
2922 final String subtypeInTheHistory = imeAndSubtype.second;
satokdf31ae62011-01-15 06:19:44 +09002923 final String subtypeHashCode =
2924 getEnabledSubtypeHashCodeForInputMethodAndSubtypeLocked(
2925 enabledImes, imeInTheHistory, subtypeInTheHistory);
satok723a27e2010-11-11 14:58:11 +09002926 if (!TextUtils.isEmpty(subtypeHashCode)) {
2927 if (DEBUG) {
satokbb4aa062011-01-19 21:40:27 +09002928 Slog.d(TAG, "Enabled subtype found in the history: " + subtypeHashCode);
satok723a27e2010-11-11 14:58:11 +09002929 }
2930 return new Pair<String, String>(imeInTheHistory, subtypeHashCode);
2931 }
2932 }
2933 }
2934 if (DEBUG) {
2935 Slog.d(TAG, "No enabled IME found in the history");
2936 }
2937 return null;
2938 }
2939
satokdf31ae62011-01-15 06:19:44 +09002940 private String getEnabledSubtypeHashCodeForInputMethodAndSubtypeLocked(List<Pair<String,
satok723a27e2010-11-11 14:58:11 +09002941 ArrayList<String>>> enabledImes, String imeId, String subtypeHashCode) {
2942 for (Pair<String, ArrayList<String>> enabledIme: enabledImes) {
2943 if (enabledIme.first.equals(imeId)) {
satokf6cafb62011-01-17 16:29:02 +09002944 final ArrayList<String> explicitlyEnabledSubtypes = enabledIme.second;
2945 if (explicitlyEnabledSubtypes.size() == 0) {
2946 // If there are no explicitly enabled subtypes, applicable subtypes are
2947 // enabled implicitly.
satokdf31ae62011-01-15 06:19:44 +09002948 InputMethodInfo ime = mMethodMap.get(imeId);
2949 // If IME is enabled and no subtypes are enabled, applicable subtypes
2950 // are enabled implicitly, so needs to treat them to be enabled.
Ken Wakasa586f0512011-01-20 22:31:01 +09002951 if (ime != null && ime.getSubtypeCount() > 0) {
satokdf31ae62011-01-15 06:19:44 +09002952 List<InputMethodSubtype> implicitlySelectedSubtypes =
Ken Wakasa586f0512011-01-20 22:31:01 +09002953 getApplicableSubtypesLocked(mRes, getSubtypes(ime));
satokdf31ae62011-01-15 06:19:44 +09002954 if (implicitlySelectedSubtypes != null) {
2955 final int N = implicitlySelectedSubtypes.size();
2956 for (int i = 0; i < N; ++i) {
2957 final InputMethodSubtype st = implicitlySelectedSubtypes.get(i);
2958 if (String.valueOf(st.hashCode()).equals(subtypeHashCode)) {
2959 return subtypeHashCode;
2960 }
2961 }
2962 }
2963 }
2964 } else {
satokf6cafb62011-01-17 16:29:02 +09002965 for (String s: explicitlyEnabledSubtypes) {
satokdf31ae62011-01-15 06:19:44 +09002966 if (s.equals(subtypeHashCode)) {
2967 // If both imeId and subtypeId are enabled, return subtypeId.
2968 return s;
2969 }
satok723a27e2010-11-11 14:58:11 +09002970 }
2971 }
2972 // If imeId was enabled but subtypeId was disabled.
2973 return NOT_A_SUBTYPE_ID_STR;
2974 }
2975 }
2976 // If both imeId and subtypeId are disabled, return null
2977 return null;
2978 }
2979
2980 private List<Pair<String, String>> loadInputMethodAndSubtypeHistoryLocked() {
2981 ArrayList<Pair<String, String>> imsList = new ArrayList<Pair<String, String>>();
2982 final String subtypeHistoryStr = getSubtypeHistoryStr();
2983 if (TextUtils.isEmpty(subtypeHistoryStr)) {
2984 return imsList;
2985 }
2986 mInputMethodSplitter.setString(subtypeHistoryStr);
2987 while (mInputMethodSplitter.hasNext()) {
2988 String nextImsStr = mInputMethodSplitter.next();
2989 mSubtypeSplitter.setString(nextImsStr);
2990 if (mSubtypeSplitter.hasNext()) {
2991 String subtypeId = NOT_A_SUBTYPE_ID_STR;
2992 // The first element is ime id.
2993 String imeId = mSubtypeSplitter.next();
2994 while (mSubtypeSplitter.hasNext()) {
2995 subtypeId = mSubtypeSplitter.next();
2996 break;
2997 }
2998 imsList.add(new Pair<String, String>(imeId, subtypeId));
2999 }
3000 }
3001 return imsList;
3002 }
3003
3004 private String getSubtypeHistoryStr() {
3005 if (DEBUG) {
3006 Slog.d(TAG, "getSubtypeHistoryStr: " + Settings.Secure.getString(
3007 mResolver, Settings.Secure.INPUT_METHODS_SUBTYPE_HISTORY));
3008 }
3009 return Settings.Secure.getString(
3010 mResolver, Settings.Secure.INPUT_METHODS_SUBTYPE_HISTORY);
3011 }
3012
3013 public void putSelectedInputMethod(String imeId) {
3014 Settings.Secure.putString(mResolver, Settings.Secure.DEFAULT_INPUT_METHOD, imeId);
3015 }
3016
3017 public void putSelectedSubtype(int subtypeId) {
3018 Settings.Secure.putInt(
3019 mResolver, Settings.Secure.SELECTED_INPUT_METHOD_SUBTYPE, subtypeId);
3020 }
satokd87c2592010-09-29 11:52:06 +09003021 }
3022
satoke7c6998e2011-06-03 17:57:59 +09003023 private static class InputMethodFileManager {
3024 private static final String SYSTEM_PATH = "system";
3025 private static final String INPUT_METHOD_PATH = "inputmethod";
3026 private static final String ADDITIONAL_SUBTYPES_FILE_NAME = "subtypes.xml";
3027 private static final String NODE_SUBTYPES = "subtypes";
3028 private static final String NODE_SUBTYPE = "subtype";
3029 private static final String NODE_IMI = "imi";
3030 private static final String ATTR_ID = "id";
3031 private static final String ATTR_LABEL = "label";
3032 private static final String ATTR_ICON = "icon";
3033 private static final String ATTR_IME_SUBTYPE_LOCALE = "imeSubtypeLocale";
3034 private static final String ATTR_IME_SUBTYPE_MODE = "imeSubtypeMode";
3035 private static final String ATTR_IME_SUBTYPE_EXTRA_VALUE = "imeSubtypeExtraValue";
3036 private static final String ATTR_IS_AUXILIARY = "isAuxiliary";
3037 private final AtomicFile mAdditionalInputMethodSubtypeFile;
3038 private final HashMap<String, InputMethodInfo> mMethodMap;
3039 private final HashMap<String, List<InputMethodSubtype>> mSubtypesMap =
3040 new HashMap<String, List<InputMethodSubtype>>();
3041 public InputMethodFileManager(HashMap<String, InputMethodInfo> methodMap) {
3042 if (methodMap == null) {
3043 throw new NullPointerException("methodMap is null");
3044 }
3045 mMethodMap = methodMap;
3046 final File systemDir = new File(Environment.getDataDirectory(), SYSTEM_PATH);
3047 final File inputMethodDir = new File(systemDir, INPUT_METHOD_PATH);
3048 if (!inputMethodDir.mkdirs()) {
3049 Slog.w(TAG, "Couldn't create dir.: " + inputMethodDir.getAbsolutePath());
3050 }
3051 final File subtypeFile = new File(inputMethodDir, ADDITIONAL_SUBTYPES_FILE_NAME);
3052 mAdditionalInputMethodSubtypeFile = new AtomicFile(subtypeFile);
3053 if (!subtypeFile.exists()) {
3054 // If "subtypes.xml" doesn't exist, create a blank file.
3055 writeAdditionalInputMethodSubtypes(mSubtypesMap, mAdditionalInputMethodSubtypeFile,
3056 methodMap);
3057 } else {
3058 readAdditionalInputMethodSubtypes(mSubtypesMap, mAdditionalInputMethodSubtypeFile);
3059 }
3060 }
3061
3062 private void deleteAllInputMethodSubtypes(String imiId) {
3063 synchronized (mMethodMap) {
3064 mSubtypesMap.remove(imiId);
3065 writeAdditionalInputMethodSubtypes(mSubtypesMap, mAdditionalInputMethodSubtypeFile,
3066 mMethodMap);
3067 }
3068 }
3069
3070 public void addInputMethodSubtypes(
satok4a28bde2011-06-29 21:03:40 +09003071 InputMethodInfo imi, InputMethodSubtype[] additionalSubtypes) {
satoke7c6998e2011-06-03 17:57:59 +09003072 synchronized (mMethodMap) {
3073 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];
satoked2b24e2011-08-31 18:03:21 +09003077 if (!subtypes.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}