blob: 251247c26b9cacf81ea7a391955c88ac2373eab2 [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;
Satoshi Kataokad7443c82013-10-15 17:45:43 +090019import com.android.internal.inputmethod.InputMethodSubtypeSwitchingController;
Satoshi Kataokad787f692013-10-26 04:44:21 +090020import com.android.internal.inputmethod.InputMethodSubtypeSwitchingController.ImeSubtypeListItem;
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +090021import com.android.internal.inputmethod.InputMethodUtils;
22import com.android.internal.inputmethod.InputMethodUtils.InputMethodSettings;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080023import com.android.internal.os.HandlerCaller;
Svetoslav Ganov758143e2012-08-06 16:40:27 -070024import com.android.internal.os.SomeArgs;
satoke7c6998e2011-06-03 17:57:59 +090025import com.android.internal.util.FastXmlSerializer;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080026import com.android.internal.view.IInputContext;
27import com.android.internal.view.IInputMethod;
Michael Wright52a53522013-03-14 10:59:38 -070028import com.android.internal.view.IInputSessionCallback;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080029import com.android.internal.view.IInputMethodClient;
30import com.android.internal.view.IInputMethodManager;
31import com.android.internal.view.IInputMethodSession;
32import com.android.internal.view.InputBindResult;
Adam Lesinskief2ea1f2013-12-05 16:48:06 -080033import com.android.server.statusbar.StatusBarManagerService;
satok01038492012-04-09 21:08:27 +090034import com.android.server.wm.WindowManagerService;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080035
satoke7c6998e2011-06-03 17:57:59 +090036import org.xmlpull.v1.XmlPullParser;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080037import org.xmlpull.v1.XmlPullParserException;
satoke7c6998e2011-06-03 17:57:59 +090038import org.xmlpull.v1.XmlSerializer;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080039
40import android.app.ActivityManagerNative;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +090041import android.app.AppGlobals;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080042import android.app.AlertDialog;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +090043import android.app.IUserSwitchObserver;
satokf90a33e2011-07-19 11:55:52 +090044import android.app.KeyguardManager;
satok7cfc0ed2011-06-20 21:29:36 +090045import android.app.Notification;
46import android.app.NotificationManager;
Dianne Hackborndd9b82c2009-09-03 00:18:47 -070047import android.app.PendingIntent;
satok5b927c432012-05-01 20:09:34 +090048import android.content.BroadcastReceiver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080049import android.content.ComponentName;
50import android.content.ContentResolver;
51import android.content.Context;
52import android.content.DialogInterface;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080053import android.content.DialogInterface.OnCancelListener;
54import android.content.Intent;
satoke7c6998e2011-06-03 17:57:59 +090055import android.content.IntentFilter;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080056import android.content.ServiceConnection;
Brandon Ballinger6da35a02009-10-21 00:38:13 -070057import android.content.pm.ApplicationInfo;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +090058import android.content.pm.IPackageManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080059import android.content.pm.PackageManager;
60import android.content.pm.ResolveInfo;
61import android.content.pm.ServiceInfo;
Amith Yamasani734983f2014-03-04 16:48:05 -080062import android.content.pm.UserInfo;
Amith Yamasanie861ec12010-03-24 21:39:27 -070063import android.content.res.Configuration;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080064import android.content.res.Resources;
65import android.content.res.TypedArray;
66import android.database.ContentObserver;
Joe Onorato857fd9b2011-01-27 15:08:35 -080067import android.inputmethodservice.InputMethodService;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080068import android.os.Binder;
satoke7c6998e2011-06-03 17:57:59 +090069import android.os.Environment;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080070import android.os.Handler;
71import android.os.IBinder;
72import android.os.IInterface;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +090073import android.os.IRemoteCallback;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080074import android.os.Message;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +090075import android.os.Process;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080076import android.os.Parcel;
77import android.os.RemoteException;
The Android Open Source Project4df24232009-03-05 14:34:35 -080078import android.os.ResultReceiver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080079import android.os.ServiceManager;
80import android.os.SystemClock;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +090081import android.os.UserHandle;
Amith Yamasani734983f2014-03-04 16:48:05 -080082import android.os.UserManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080083import android.provider.Settings;
84import android.text.TextUtils;
satokf9f01002011-05-19 21:31:50 +090085import android.text.style.SuggestionSpan;
Dianne Hackborn39606a02012-07-31 17:54:35 -070086import android.util.AtomicFile;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080087import android.util.EventLog;
satokf9f01002011-05-19 21:31:50 +090088import android.util.LruCache;
satokab751aa2010-09-14 19:17:36 +090089import android.util.Pair;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080090import android.util.PrintWriterPrinter;
91import android.util.Printer;
satoke7c6998e2011-06-03 17:57:59 +090092import android.util.Slog;
93import android.util.Xml;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080094import android.view.IWindowManager;
Jeff Brownc28867a2013-03-26 15:42:39 -070095import android.view.InputChannel;
Ken Wakasa05dbb652011-08-22 15:22:43 +090096import android.view.LayoutInflater;
97import android.view.View;
98import android.view.ViewGroup;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080099import android.view.WindowManager;
satokab751aa2010-09-14 19:17:36 +0900100import android.view.inputmethod.EditorInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800101import android.view.inputmethod.InputBinding;
102import android.view.inputmethod.InputMethod;
103import android.view.inputmethod.InputMethodInfo;
104import android.view.inputmethod.InputMethodManager;
satokab751aa2010-09-14 19:17:36 +0900105import android.view.inputmethod.InputMethodSubtype;
Ken Wakasa05dbb652011-08-22 15:22:43 +0900106import android.widget.ArrayAdapter;
satok01038492012-04-09 21:08:27 +0900107import android.widget.CompoundButton;
108import android.widget.CompoundButton.OnCheckedChangeListener;
Ken Wakasa05dbb652011-08-22 15:22:43 +0900109import android.widget.RadioButton;
satok01038492012-04-09 21:08:27 +0900110import android.widget.Switch;
Ken Wakasa05dbb652011-08-22 15:22:43 +0900111import android.widget.TextView;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800112
satoke7c6998e2011-06-03 17:57:59 +0900113import java.io.File;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800114import java.io.FileDescriptor;
satoke7c6998e2011-06-03 17:57:59 +0900115import java.io.FileInputStream;
116import java.io.FileOutputStream;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800117import java.io.IOException;
118import java.io.PrintWriter;
119import java.util.ArrayList;
satok688bd472012-02-09 20:09:17 +0900120import java.util.Collections;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800121import java.util.HashMap;
122import java.util.List;
satok5b927c432012-05-01 20:09:34 +0900123import java.util.Locale;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800124
125/**
126 * This class provides a system service that manages input methods.
127 */
128public class InputMethodManagerService extends IInputMethodManager.Stub
129 implements ServiceConnection, Handler.Callback {
130 static final boolean DEBUG = false;
Jeff Brown6ec6f792012-04-17 16:52:41 -0700131 static final String TAG = "InputMethodManagerService";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800132
133 static final int MSG_SHOW_IM_PICKER = 1;
satokab751aa2010-09-14 19:17:36 +0900134 static final int MSG_SHOW_IM_SUBTYPE_PICKER = 2;
satok47a44912010-10-06 16:03:58 +0900135 static final int MSG_SHOW_IM_SUBTYPE_ENABLER = 3;
satok217f5482010-12-15 05:19:19 +0900136 static final int MSG_SHOW_IM_CONFIG = 4;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800137
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800138 static final int MSG_UNBIND_INPUT = 1000;
139 static final int MSG_BIND_INPUT = 1010;
140 static final int MSG_SHOW_SOFT_INPUT = 1020;
141 static final int MSG_HIDE_SOFT_INPUT = 1030;
142 static final int MSG_ATTACH_TOKEN = 1040;
143 static final int MSG_CREATE_SESSION = 1050;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800144
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800145 static final int MSG_START_INPUT = 2000;
146 static final int MSG_RESTART_INPUT = 2010;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800147
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800148 static final int MSG_UNBIND_METHOD = 3000;
149 static final int MSG_BIND_METHOD = 3010;
Dianne Hackborna6e41342012-05-22 16:30:34 -0700150 static final int MSG_SET_ACTIVE = 3020;
Yohei Yukawab7b79072014-03-25 11:02:00 +0900151 static final int MSG_SET_CURSOR_ANCHOR_MONITOR_MODE = 3030;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800152
satok01038492012-04-09 21:08:27 +0900153 static final int MSG_HARD_KEYBOARD_SWITCH_CHANGED = 4000;
154
Satoshi Kataokabcacc322013-10-21 17:57:27 -0700155 static final long TIME_TO_RECONNECT = 3 * 1000;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800156
satokf9f01002011-05-19 21:31:50 +0900157 static final int SECURE_SUGGESTION_SPANS_MAX_SIZE = 20;
158
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +0900159 private static final int NOT_A_SUBTYPE_ID = InputMethodUtils.NOT_A_SUBTYPE_ID;
satokb6359412011-06-28 17:47:41 +0900160 private static final String TAG_TRY_SUPPRESSING_IME_SWITCHER = "TrySuppressingImeSwitcher";
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +0900161
satok4e4569d2010-11-19 18:45:53 +0900162
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800163 final Context mContext;
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -0800164 final Resources mRes;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800165 final Handler mHandler;
satokd87c2592010-09-29 11:52:06 +0900166 final InputMethodSettings mSettings;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800167 final SettingsObserver mSettingsObserver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800168 final IWindowManager mIWindowManager;
169 final HandlerCaller mCaller;
Dianne Hackborn119bbc32013-03-22 17:27:25 -0700170 final boolean mHasFeature;
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +0900171 private InputMethodFileManager mFileManager;
satok01038492012-04-09 21:08:27 +0900172 private final HardKeyboardListener mHardKeyboardListener;
173 private final WindowManagerService mWindowManagerService;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800174
Jeff Brownc28867a2013-03-26 15:42:39 -0700175 final InputBindResult mNoBinding = new InputBindResult(null, null, null, -1);
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800176
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800177 // All known input methods. mMethodMap also serves as the global
178 // lock for this class.
satokd87c2592010-09-29 11:52:06 +0900179 final ArrayList<InputMethodInfo> mMethodList = new ArrayList<InputMethodInfo>();
180 final HashMap<String, InputMethodInfo> mMethodMap = new HashMap<String, InputMethodInfo>();
satokf9f01002011-05-19 21:31:50 +0900181 private final LruCache<SuggestionSpan, InputMethodInfo> mSecureSuggestionSpans =
182 new LruCache<SuggestionSpan, InputMethodInfo>(SECURE_SUGGESTION_SPANS_MAX_SIZE);
Satoshi Kataokad787f692013-10-26 04:44:21 +0900183 private final InputMethodSubtypeSwitchingController mSwitchingController;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800184
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700185 // Used to bring IME service up to visible adjustment while it is being shown.
186 final ServiceConnection mVisibleConnection = new ServiceConnection() {
187 @Override public void onServiceConnected(ComponentName name, IBinder service) {
188 }
189
190 @Override public void onServiceDisconnected(ComponentName name) {
191 }
192 };
193 boolean mVisibleBound = false;
194
satok7cfc0ed2011-06-20 21:29:36 +0900195 // Ongoing notification
Dianne Hackborn661cd522011-08-22 00:26:20 -0700196 private NotificationManager mNotificationManager;
197 private KeyguardManager mKeyguardManager;
198 private StatusBarManagerService mStatusBar;
199 private Notification mImeSwitcherNotification;
200 private PendingIntent mImeSwitchPendingIntent;
satokb858c732011-07-22 19:54:34 +0900201 private boolean mShowOngoingImeSwitcherForPhones;
satok7cfc0ed2011-06-20 21:29:36 +0900202 private boolean mNotificationShown;
satok0a1bcf42012-05-16 19:26:31 +0900203 private final boolean mImeSelectedOnBoot;
satok7cfc0ed2011-06-20 21:29:36 +0900204
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800205 class SessionState {
206 final ClientState client;
207 final IInputMethod method;
Jeff Brownc28867a2013-03-26 15:42:39 -0700208
209 IInputMethodSession session;
210 InputChannel channel;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800211
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800212 @Override
213 public String toString() {
214 return "SessionState{uid " + client.uid + " pid " + client.pid
215 + " method " + Integer.toHexString(
216 System.identityHashCode(method))
217 + " session " + Integer.toHexString(
218 System.identityHashCode(session))
Jeff Brownc28867a2013-03-26 15:42:39 -0700219 + " channel " + channel
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800220 + "}";
221 }
222
223 SessionState(ClientState _client, IInputMethod _method,
Jeff Brownc28867a2013-03-26 15:42:39 -0700224 IInputMethodSession _session, InputChannel _channel) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800225 client = _client;
226 method = _method;
227 session = _session;
Jeff Brownc28867a2013-03-26 15:42:39 -0700228 channel = _channel;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800229 }
230 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800231
Jeff Brownc28867a2013-03-26 15:42:39 -0700232 static final class ClientState {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800233 final IInputMethodClient client;
234 final IInputContext inputContext;
235 final int uid;
236 final int pid;
237 final InputBinding binding;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800238
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800239 boolean sessionRequested;
240 SessionState curSession;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800241
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800242 @Override
243 public String toString() {
244 return "ClientState{" + Integer.toHexString(
245 System.identityHashCode(this)) + " uid " + uid
246 + " pid " + pid + "}";
247 }
248
249 ClientState(IInputMethodClient _client, IInputContext _inputContext,
250 int _uid, int _pid) {
251 client = _client;
252 inputContext = _inputContext;
253 uid = _uid;
254 pid = _pid;
255 binding = new InputBinding(null, inputContext.asBinder(), uid, pid);
256 }
257 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800258
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800259 final HashMap<IBinder, ClientState> mClients
260 = new HashMap<IBinder, ClientState>();
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800261
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800262 /**
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700263 * Set once the system is ready to run third party code.
264 */
265 boolean mSystemReady;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800266
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700267 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800268 * Id of the currently selected input method.
269 */
270 String mCurMethodId;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800271
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800272 /**
273 * The current binding sequence number, incremented every time there is
274 * a new bind performed.
275 */
276 int mCurSeq;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800277
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800278 /**
279 * The client that is currently bound to an input method.
280 */
281 ClientState mCurClient;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800282
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800283 /**
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700284 * The last window token that gained focus.
285 */
286 IBinder mCurFocusedWindow;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800287
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700288 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800289 * The input context last provided by the current client.
290 */
291 IInputContext mCurInputContext;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800292
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800293 /**
294 * The attributes last provided by the current client.
295 */
296 EditorInfo mCurAttribute;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800297
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800298 /**
299 * The input method ID of the input method service that we are currently
300 * connected to or in the process of connecting to.
301 */
302 String mCurId;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800303
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800304 /**
satokab751aa2010-09-14 19:17:36 +0900305 * The current subtype of the current input method.
306 */
307 private InputMethodSubtype mCurrentSubtype;
308
satok4e4569d2010-11-19 18:45:53 +0900309 // This list contains the pairs of InputMethodInfo and InputMethodSubtype.
satokf3db1af2010-11-23 13:34:33 +0900310 private final HashMap<InputMethodInfo, ArrayList<InputMethodSubtype>>
311 mShortcutInputMethodsAndSubtypes =
312 new HashMap<InputMethodInfo, ArrayList<InputMethodSubtype>>();
satokab751aa2010-09-14 19:17:36 +0900313
John Spurlocke0980502013-10-25 11:59:29 -0400314 // Was the keyguard locked when this client became current?
315 private boolean mCurClientInKeyguard;
316
satokab751aa2010-09-14 19:17:36 +0900317 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800318 * Set to true if our ServiceConnection is currently actively bound to
319 * a service (whether or not we have gotten its IBinder back yet).
320 */
321 boolean mHaveConnection;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800322
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800323 /**
324 * Set if the client has asked for the input method to be shown.
325 */
326 boolean mShowRequested;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800327
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800328 /**
329 * Set if we were explicitly told to show the input method.
330 */
331 boolean mShowExplicitlyRequested;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800332
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800333 /**
334 * Set if we were forced to be shown.
335 */
336 boolean mShowForced;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800337
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800338 /**
339 * Set if we last told the input method to show itself.
340 */
341 boolean mInputShown;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800342
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800343 /**
344 * The Intent used to connect to the current input method.
345 */
346 Intent mCurIntent;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800347
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800348 /**
349 * The token we have made for the currently active input method, to
350 * identify it in the future.
351 */
352 IBinder mCurToken;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800353
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800354 /**
355 * If non-null, this is the input method service we are currently connected
356 * to.
357 */
358 IInputMethod mCurMethod;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800359
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800360 /**
361 * Time that we last initiated a bind to the input method, to determine
362 * if we should try to disconnect and reconnect to it.
363 */
364 long mLastBindTime;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800365
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800366 /**
367 * Have we called mCurMethod.bindInput()?
368 */
369 boolean mBoundToMethod;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800370
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800371 /**
372 * Currently enabled session. Only touched by service thread, not
373 * protected by a lock.
374 */
375 SessionState mEnabledSession;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800376
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800377 /**
378 * True if the screen is on. The value is true initially.
379 */
380 boolean mScreenOn = true;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800381
Joe Onorato857fd9b2011-01-27 15:08:35 -0800382 int mBackDisposition = InputMethodService.BACK_DISPOSITION_DEFAULT;
383 int mImeWindowVis;
384
Ken Wakasa05dbb652011-08-22 15:22:43 +0900385 private AlertDialog.Builder mDialogBuilder;
386 private AlertDialog mSwitchingDialog;
satok01038492012-04-09 21:08:27 +0900387 private View mSwitchingDialogTitleView;
Ken Wakasa05dbb652011-08-22 15:22:43 +0900388 private InputMethodInfo[] mIms;
389 private int[] mSubtypeIds;
satok5b927c432012-05-01 20:09:34 +0900390 private Locale mLastSystemLocale;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900391 private final MyPackageMonitor mMyPackageMonitor = new MyPackageMonitor();
392 private final IPackageManager mIPackageManager;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800393
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800394 class SettingsObserver extends ContentObserver {
Dianne Hackbornfd7aded2013-01-22 17:10:23 -0800395 String mLastEnabled = "";
396
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800397 SettingsObserver(Handler handler) {
398 super(handler);
399 ContentResolver resolver = mContext.getContentResolver();
400 resolver.registerContentObserver(Settings.Secure.getUriFor(
401 Settings.Secure.DEFAULT_INPUT_METHOD), false, this);
satokab751aa2010-09-14 19:17:36 +0900402 resolver.registerContentObserver(Settings.Secure.getUriFor(
satokb6109bb2011-02-03 22:24:54 +0900403 Settings.Secure.ENABLED_INPUT_METHODS), false, this);
404 resolver.registerContentObserver(Settings.Secure.getUriFor(
satokab751aa2010-09-14 19:17:36 +0900405 Settings.Secure.SELECTED_INPUT_METHOD_SUBTYPE), false, this);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800406 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800407
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800408 @Override public void onChange(boolean selfChange) {
409 synchronized (mMethodMap) {
Dianne Hackbornfd7aded2013-01-22 17:10:23 -0800410 boolean enabledChanged = false;
411 String newEnabled = mSettings.getEnabledInputMethodsStr();
412 if (!mLastEnabled.equals(newEnabled)) {
413 mLastEnabled = newEnabled;
414 enabledChanged = true;
415 }
416 updateFromSettingsLocked(enabledChanged);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800417 }
418 }
419 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800420
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900421 class ImmsBroadcastReceiver extends android.content.BroadcastReceiver {
422 private void updateActive() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800423 // Inform the current client of the change in active status
Dianne Hackborna6e41342012-05-22 16:30:34 -0700424 if (mCurClient != null && mCurClient.client != null) {
425 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
426 MSG_SET_ACTIVE, mScreenOn ? 1 : 0, mCurClient));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800427 }
428 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900429
430 @Override
431 public void onReceive(Context context, Intent intent) {
432 final String action = intent.getAction();
433 if (Intent.ACTION_SCREEN_ON.equals(action)) {
434 mScreenOn = true;
435 refreshImeWindowVisibilityLocked();
436 updateActive();
437 return;
438 } else if (Intent.ACTION_SCREEN_OFF.equals(action)) {
439 mScreenOn = false;
440 setImeWindowVisibilityStatusHiddenLocked();
441 updateActive();
442 return;
443 } else if (Intent.ACTION_CLOSE_SYSTEM_DIALOGS.equals(action)) {
444 hideInputMethodMenu();
445 // No need to updateActive
446 return;
Amith Yamasani734983f2014-03-04 16:48:05 -0800447 } else if (Intent.ACTION_USER_ADDED.equals(action)
448 || Intent.ACTION_USER_REMOVED.equals(action)) {
Kenny Guy2a764942014-04-02 13:29:20 +0100449 updateCurrentProfileIds();
Amith Yamasani734983f2014-03-04 16:48:05 -0800450 return;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900451 } else {
452 Slog.w(TAG, "Unexpected intent " + intent);
453 }
454 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800455 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800456
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800457 class MyPackageMonitor extends PackageMonitor {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900458 private boolean isChangingPackagesOfCurrentUser() {
459 final int userId = getChangingUserId();
460 final boolean retval = userId == mSettings.getCurrentUserId();
461 if (DEBUG) {
satok81f8b7c2012-12-04 20:42:56 +0900462 if (!retval) {
463 Slog.d(TAG, "--- ignore this call back from a background user: " + userId);
464 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900465 }
466 return retval;
467 }
468
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800469 @Override
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800470 public boolean onHandleForceStop(Intent intent, String[] packages, int uid, boolean doit) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900471 if (!isChangingPackagesOfCurrentUser()) {
472 return false;
473 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800474 synchronized (mMethodMap) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900475 String curInputMethodId = mSettings.getSelectedInputMethod();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800476 final int N = mMethodList.size();
477 if (curInputMethodId != null) {
478 for (int i=0; i<N; i++) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800479 InputMethodInfo imi = mMethodList.get(i);
480 if (imi.getId().equals(curInputMethodId)) {
481 for (String pkg : packages) {
482 if (imi.getPackageName().equals(pkg)) {
483 if (!doit) {
484 return true;
485 }
satok723a27e2010-11-11 14:58:11 +0900486 resetSelectedInputMethodAndSubtypeLocked("");
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800487 chooseNewDefaultIMELocked();
488 return true;
489 }
490 }
491 }
492 }
493 }
494 }
495 return false;
496 }
497
498 @Override
499 public void onSomePackagesChanged() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900500 if (!isChangingPackagesOfCurrentUser()) {
501 return;
502 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800503 synchronized (mMethodMap) {
504 InputMethodInfo curIm = null;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900505 String curInputMethodId = mSettings.getSelectedInputMethod();
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800506 final int N = mMethodList.size();
507 if (curInputMethodId != null) {
508 for (int i=0; i<N; i++) {
509 InputMethodInfo imi = mMethodList.get(i);
satoke7c6998e2011-06-03 17:57:59 +0900510 final String imiId = imi.getId();
511 if (imiId.equals(curInputMethodId)) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800512 curIm = imi;
513 }
satoke7c6998e2011-06-03 17:57:59 +0900514
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800515 int change = isPackageDisappearing(imi.getPackageName());
satoke7c6998e2011-06-03 17:57:59 +0900516 if (isPackageModified(imi.getPackageName())) {
517 mFileManager.deleteAllInputMethodSubtypes(imiId);
518 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800519 if (change == PACKAGE_TEMPORARY_CHANGE
520 || change == PACKAGE_PERMANENT_CHANGE) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800521 Slog.i(TAG, "Input method uninstalled, disabling: "
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800522 + imi.getComponent());
523 setInputMethodEnabledLocked(imi.getId(), false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800524 }
525 }
526 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800527
Satoshi Kataokaf1367b72013-01-25 17:20:12 +0900528 buildInputMethodListLocked(
529 mMethodList, mMethodMap, false /* resetDefaultEnabledIme */);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800530
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800531 boolean changed = false;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800532
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800533 if (curIm != null) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800534 int change = isPackageDisappearing(curIm.getPackageName());
535 if (change == PACKAGE_TEMPORARY_CHANGE
536 || change == PACKAGE_PERMANENT_CHANGE) {
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800537 ServiceInfo si = null;
538 try {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900539 si = mIPackageManager.getServiceInfo(
540 curIm.getComponent(), 0, mSettings.getCurrentUserId());
541 } catch (RemoteException ex) {
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800542 }
543 if (si == null) {
544 // Uh oh, current input method is no longer around!
545 // Pick another one...
Joe Onorato8a9b2202010-02-26 18:56:32 -0800546 Slog.i(TAG, "Current input method removed: " + curInputMethodId);
satok15452a42011-10-28 17:58:28 +0900547 setImeWindowVisibilityStatusHiddenLocked();
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800548 if (!chooseNewDefaultIMELocked()) {
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800549 changed = true;
550 curIm = null;
Joe Onorato8a9b2202010-02-26 18:56:32 -0800551 Slog.i(TAG, "Unsetting current input method");
satok723a27e2010-11-11 14:58:11 +0900552 resetSelectedInputMethodAndSubtypeLocked("");
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800553 }
554 }
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800555 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800556 }
satokab751aa2010-09-14 19:17:36 +0900557
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800558 if (curIm == null) {
559 // We currently don't have a default input method... is
560 // one now available?
561 changed = chooseNewDefaultIMELocked();
562 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800563
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800564 if (changed) {
Dianne Hackbornfd7aded2013-01-22 17:10:23 -0800565 updateFromSettingsLocked(false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800566 }
567 }
568 }
569 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800570
Jeff Brownc28867a2013-03-26 15:42:39 -0700571 private static final class MethodCallback extends IInputSessionCallback.Stub {
Jean Chalarde0d32a62011-10-20 20:36:07 +0900572 private final InputMethodManagerService mParentIMMS;
Jeff Brownc28867a2013-03-26 15:42:39 -0700573 private final IInputMethod mMethod;
574 private final InputChannel mChannel;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800575
Jeff Brownc28867a2013-03-26 15:42:39 -0700576 MethodCallback(InputMethodManagerService imms, IInputMethod method,
577 InputChannel channel) {
Jean Chalarde0d32a62011-10-20 20:36:07 +0900578 mParentIMMS = imms;
Jeff Brownc28867a2013-03-26 15:42:39 -0700579 mMethod = method;
580 mChannel = channel;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800581 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800582
satoke7c6998e2011-06-03 17:57:59 +0900583 @Override
Jeff Brownc28867a2013-03-26 15:42:39 -0700584 public void sessionCreated(IInputMethodSession session) {
Dianne Hackborn6b6b3fd2014-03-24 11:27:18 -0700585 long ident = Binder.clearCallingIdentity();
586 try {
587 mParentIMMS.onSessionCreated(mMethod, session, mChannel);
588 } finally {
589 Binder.restoreCallingIdentity(ident);
590 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800591 }
592 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800593
satok01038492012-04-09 21:08:27 +0900594 private class HardKeyboardListener
595 implements WindowManagerService.OnHardKeyboardStatusChangeListener {
596 @Override
597 public void onHardKeyboardStatusChange(boolean available, boolean enabled) {
598 mHandler.sendMessage(mHandler.obtainMessage(
599 MSG_HARD_KEYBOARD_SWITCH_CHANGED, available ? 1 : 0, enabled ? 1 : 0));
600 }
601
602 public void handleHardKeyboardStatusChange(boolean available, boolean enabled) {
603 if (DEBUG) {
604 Slog.w(TAG, "HardKeyboardStatusChanged: available = " + available + ", enabled = "
605 + enabled);
606 }
607 synchronized(mMethodMap) {
608 if (mSwitchingDialog != null && mSwitchingDialogTitleView != null
609 && mSwitchingDialog.isShowing()) {
610 mSwitchingDialogTitleView.findViewById(
611 com.android.internal.R.id.hard_keyboard_section).setVisibility(
612 available ? View.VISIBLE : View.GONE);
613 }
614 }
615 }
616 }
617
618 public InputMethodManagerService(Context context, WindowManagerService windowManager) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900619 mIPackageManager = AppGlobals.getPackageManager();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800620 mContext = context;
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -0800621 mRes = context.getResources();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800622 mHandler = new Handler(this);
623 mIWindowManager = IWindowManager.Stub.asInterface(
624 ServiceManager.getService(Context.WINDOW_SERVICE));
Mita Yuned218c72012-12-06 17:18:25 -0800625 mCaller = new HandlerCaller(context, null, new HandlerCaller.Callback() {
satoke7c6998e2011-06-03 17:57:59 +0900626 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800627 public void executeMessage(Message msg) {
628 handleMessage(msg);
629 }
Mita Yuned218c72012-12-06 17:18:25 -0800630 }, true /*asyncHandler*/);
satok01038492012-04-09 21:08:27 +0900631 mWindowManagerService = windowManager;
632 mHardKeyboardListener = new HardKeyboardListener();
Dianne Hackborn119bbc32013-03-22 17:27:25 -0700633 mHasFeature = context.getPackageManager().hasSystemFeature(
634 PackageManager.FEATURE_INPUT_METHODS);
satok7cfc0ed2011-06-20 21:29:36 +0900635
satok7cfc0ed2011-06-20 21:29:36 +0900636 mImeSwitcherNotification = new Notification();
637 mImeSwitcherNotification.icon = com.android.internal.R.drawable.ic_notification_ime_default;
638 mImeSwitcherNotification.when = 0;
639 mImeSwitcherNotification.flags = Notification.FLAG_ONGOING_EVENT;
640 mImeSwitcherNotification.tickerText = null;
641 mImeSwitcherNotification.defaults = 0; // please be quiet
642 mImeSwitcherNotification.sound = null;
643 mImeSwitcherNotification.vibrate = null;
Daniel Sandler590d5152012-06-14 16:10:13 -0400644
645 // Tag this notification specially so SystemUI knows it's important
John Spurlockfd7f1e02014-03-18 16:41:57 -0400646 mImeSwitcherNotification.extras.putBoolean(Notification.EXTRA_ALLOW_DURING_SETUP, true);
647 mImeSwitcherNotification.category = Notification.CATEGORY_SYSTEM;
Daniel Sandler590d5152012-06-14 16:10:13 -0400648
satok7cfc0ed2011-06-20 21:29:36 +0900649 Intent intent = new Intent(Settings.ACTION_SHOW_INPUT_METHOD_PICKER);
satok683e2382011-07-12 08:28:52 +0900650 mImeSwitchPendingIntent = PendingIntent.getBroadcast(mContext, 0, intent, 0);
satokb858c732011-07-22 19:54:34 +0900651
652 mShowOngoingImeSwitcherForPhones = false;
satok7cfc0ed2011-06-20 21:29:36 +0900653
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900654 final IntentFilter broadcastFilter = new IntentFilter();
655 broadcastFilter.addAction(Intent.ACTION_SCREEN_ON);
656 broadcastFilter.addAction(Intent.ACTION_SCREEN_OFF);
657 broadcastFilter.addAction(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
Amith Yamasani734983f2014-03-04 16:48:05 -0800658 broadcastFilter.addAction(Intent.ACTION_USER_ADDED);
659 broadcastFilter.addAction(Intent.ACTION_USER_REMOVED);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900660 mContext.registerReceiver(new ImmsBroadcastReceiver(), broadcastFilter);
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800661
satok7cfc0ed2011-06-20 21:29:36 +0900662 mNotificationShown = false;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900663 int userId = 0;
664 try {
665 ActivityManagerNative.getDefault().registerUserSwitchObserver(
666 new IUserSwitchObserver.Stub() {
667 @Override
668 public void onUserSwitching(int newUserId, IRemoteCallback reply) {
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +0900669 synchronized(mMethodMap) {
670 switchUserLocked(newUserId);
671 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900672 if (reply != null) {
673 try {
674 reply.sendResult(null);
675 } catch (RemoteException e) {
676 }
677 }
678 }
679
680 @Override
681 public void onUserSwitchComplete(int newUserId) throws RemoteException {
682 }
683 });
684 userId = ActivityManagerNative.getDefault().getCurrentUser().id;
685 } catch (RemoteException e) {
686 Slog.w(TAG, "Couldn't get current user ID; guessing it's 0", e);
687 }
satok81f8b7c2012-12-04 20:42:56 +0900688 mMyPackageMonitor.register(mContext, null, UserHandle.ALL, true);
satok913a8922010-08-26 21:53:41 +0900689
satokd87c2592010-09-29 11:52:06 +0900690 // mSettings should be created before buildInputMethodListLocked
satokdf31ae62011-01-15 06:19:44 +0900691 mSettings = new InputMethodSettings(
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900692 mRes, context.getContentResolver(), mMethodMap, mMethodList, userId);
Kenny Guy2a764942014-04-02 13:29:20 +0100693 updateCurrentProfileIds();
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +0900694 mFileManager = new InputMethodFileManager(mMethodMap, userId);
Yohei Yukawa5a647b692014-05-22 12:49:00 +0900695 synchronized (mMethodMap) {
696 mSwitchingController = InputMethodSubtypeSwitchingController.createInstanceLocked(
697 mSettings, context);
698 }
satok0a1bcf42012-05-16 19:26:31 +0900699
700 // Just checking if defaultImiId is empty or not
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900701 final String defaultImiId = mSettings.getSelectedInputMethod();
Satoshi Kataokaf1367b72013-01-25 17:20:12 +0900702 if (DEBUG) {
703 Slog.d(TAG, "Initial default ime = " + defaultImiId);
704 }
satok0a1bcf42012-05-16 19:26:31 +0900705 mImeSelectedOnBoot = !TextUtils.isEmpty(defaultImiId);
706
Yohei Yukawa5a647b692014-05-22 12:49:00 +0900707 synchronized (mMethodMap) {
708 buildInputMethodListLocked(mMethodList, mMethodMap,
709 !mImeSelectedOnBoot /* resetDefaultEnabledIme */);
710 }
satokd87c2592010-09-29 11:52:06 +0900711 mSettings.enableAllIMEsIfThereIsNoEnabledIME();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800712
satok0a1bcf42012-05-16 19:26:31 +0900713 if (!mImeSelectedOnBoot) {
714 Slog.w(TAG, "No IME selected. Choose the most applicable IME.");
Yohei Yukawa5a647b692014-05-22 12:49:00 +0900715 synchronized (mMethodMap) {
716 resetDefaultImeLocked(context);
717 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800718 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800719
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800720 mSettingsObserver = new SettingsObserver(mHandler);
Yohei Yukawa5a647b692014-05-22 12:49:00 +0900721 synchronized (mMethodMap) {
722 updateFromSettingsLocked(true);
723 }
satok5b927c432012-05-01 20:09:34 +0900724
725 // IMMS wants to receive Intent.ACTION_LOCALE_CHANGED in order to update the current IME
726 // according to the new system locale.
727 final IntentFilter filter = new IntentFilter();
728 filter.addAction(Intent.ACTION_LOCALE_CHANGED);
729 mContext.registerReceiver(
730 new BroadcastReceiver() {
731 @Override
732 public void onReceive(Context context, Intent intent) {
733 synchronized(mMethodMap) {
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +0900734 resetStateIfCurrentLocaleChangedLocked();
satok5b927c432012-05-01 20:09:34 +0900735 }
736 }
737 }, filter);
738 }
739
satok5b927c432012-05-01 20:09:34 +0900740 private void resetDefaultImeLocked(Context context) {
741 // Do not reset the default (current) IME when it is a 3rd-party IME
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +0900742 if (mCurMethodId != null
743 && !InputMethodUtils.isSystemIme(mMethodMap.get(mCurMethodId))) {
satok5b927c432012-05-01 20:09:34 +0900744 return;
745 }
746
747 InputMethodInfo defIm = null;
748 for (InputMethodInfo imi : mMethodList) {
749 if (defIm == null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +0900750 if (InputMethodUtils.isValidSystemDefaultIme(
751 mSystemReady, imi, context)) {
satok5b927c432012-05-01 20:09:34 +0900752 defIm = imi;
753 Slog.i(TAG, "Selected default: " + imi.getId());
754 }
755 }
756 }
757 if (defIm == null && mMethodList.size() > 0) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +0900758 defIm = InputMethodUtils.getMostApplicableDefaultIME(
759 mSettings.getEnabledInputMethodListLocked());
satok5b927c432012-05-01 20:09:34 +0900760 Slog.i(TAG, "No default found, using " + defIm.getId());
761 }
762 if (defIm != null) {
763 setSelectedInputMethodAndSubtypeLocked(defIm, NOT_A_SUBTYPE_ID, false);
764 }
765 }
766
Satoshi Kataoka7f7535f2013-02-18 12:54:16 +0900767 private void resetAllInternalStateLocked(final boolean updateOnlyWhenLocaleChanged,
768 final boolean resetDefaultEnabledIme) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900769 if (!mSystemReady) {
770 // not system ready
771 return;
772 }
773 final Locale newLocale = mRes.getConfiguration().locale;
774 if (!updateOnlyWhenLocaleChanged
775 || (newLocale != null && !newLocale.equals(mLastSystemLocale))) {
776 if (!updateOnlyWhenLocaleChanged) {
777 hideCurrentInputLocked(0, null);
778 mCurMethodId = null;
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -0700779 unbindCurrentMethodLocked(true, false);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900780 }
781 if (DEBUG) {
782 Slog.i(TAG, "Locale has been changed to " + newLocale);
783 }
Satoshi Kataoka7f7535f2013-02-18 12:54:16 +0900784 buildInputMethodListLocked(mMethodList, mMethodMap, resetDefaultEnabledIme);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900785 if (!updateOnlyWhenLocaleChanged) {
786 final String selectedImiId = mSettings.getSelectedInputMethod();
787 if (TextUtils.isEmpty(selectedImiId)) {
788 // This is the first time of the user switch and
789 // set the current ime to the proper one.
790 resetDefaultImeLocked(mContext);
791 }
Satoshi Kataokad08a9232012-09-28 15:59:58 +0900792 } else {
793 // If the locale is changed, needs to reset the default ime
794 resetDefaultImeLocked(mContext);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900795 }
Dianne Hackbornfd7aded2013-01-22 17:10:23 -0800796 updateFromSettingsLocked(true);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900797 mLastSystemLocale = newLocale;
798 if (!updateOnlyWhenLocaleChanged) {
799 try {
800 startInputInnerLocked();
801 } catch (RuntimeException e) {
802 Slog.w(TAG, "Unexpected exception", e);
803 }
804 }
805 }
806 }
807
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +0900808 private void resetStateIfCurrentLocaleChangedLocked() {
Satoshi Kataoka7f7535f2013-02-18 12:54:16 +0900809 resetAllInternalStateLocked(true /* updateOnlyWhenLocaleChanged */,
810 true /* resetDefaultImeLocked */);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900811 }
812
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +0900813 private void switchUserLocked(int newUserId) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900814 mSettings.setCurrentUserId(newUserId);
Kenny Guy2a764942014-04-02 13:29:20 +0100815 updateCurrentProfileIds();
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +0900816 // InputMethodFileManager should be reset when the user is changed
817 mFileManager = new InputMethodFileManager(mMethodMap, newUserId);
Satoshi Kataoka7f7535f2013-02-18 12:54:16 +0900818 final String defaultImiId = mSettings.getSelectedInputMethod();
Satoshi Kataoka7c4a2a12013-02-25 15:25:43 +0900819 // For secondary users, the list of enabled IMEs may not have been updated since the
820 // callbacks to PackageMonitor are ignored for the secondary user. Here, defaultImiId may
821 // not be empty even if the IME has been uninstalled by the primary user.
822 // Even in such cases, IMMS works fine because it will find the most applicable
823 // IME for that user.
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +0900824 final boolean initialUserSwitch = TextUtils.isEmpty(defaultImiId);
Satoshi Kataoka7f7535f2013-02-18 12:54:16 +0900825 if (DEBUG) {
826 Slog.d(TAG, "Switch user: " + newUserId + " current ime = " + defaultImiId);
827 }
828 resetAllInternalStateLocked(false /* updateOnlyWhenLocaleChanged */,
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +0900829 initialUserSwitch /* needsToResetDefaultIme */);
830 if (initialUserSwitch) {
831 InputMethodUtils.setNonSelectedSystemImesDisabledUntilUsed(mContext.getPackageManager(),
832 mSettings.getEnabledInputMethodListLocked());
833 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900834 }
835
Kenny Guy2a764942014-04-02 13:29:20 +0100836 void updateCurrentProfileIds() {
837 List<UserInfo> profiles =
838 UserManager.get(mContext).getProfiles(mSettings.getCurrentUserId());
839 int[] currentProfileIds = new int[profiles.size()]; // profiles will not be null
840 for (int i = 0; i < currentProfileIds.length; i++) {
841 currentProfileIds[i] = profiles.get(i).id;
Amith Yamasani734983f2014-03-04 16:48:05 -0800842 }
Kenny Guy2a764942014-04-02 13:29:20 +0100843 mSettings.setCurrentProfileIds(currentProfileIds);
Amith Yamasani734983f2014-03-04 16:48:05 -0800844 }
845
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800846 @Override
847 public boolean onTransact(int code, Parcel data, Parcel reply, int flags)
848 throws RemoteException {
849 try {
850 return super.onTransact(code, data, reply, flags);
851 } catch (RuntimeException e) {
852 // The input method manager only throws security exceptions, so let's
853 // log all others.
854 if (!(e instanceof SecurityException)) {
Dianne Hackborn164371f2013-10-01 19:10:13 -0700855 Slog.wtf(TAG, "Input Method Manager Crash", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800856 }
857 throw e;
858 }
859 }
860
Svetoslav Ganova0027152013-06-25 14:59:53 -0700861 public void systemRunning(StatusBarManagerService statusBar) {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700862 synchronized (mMethodMap) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900863 if (DEBUG) {
864 Slog.d(TAG, "--- systemReady");
865 }
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700866 if (!mSystemReady) {
867 mSystemReady = true;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900868 mKeyguardManager =
869 (KeyguardManager) mContext.getSystemService(Context.KEYGUARD_SERVICE);
Dianne Hackborn661cd522011-08-22 00:26:20 -0700870 mNotificationManager = (NotificationManager)
871 mContext.getSystemService(Context.NOTIFICATION_SERVICE);
872 mStatusBar = statusBar;
873 statusBar.setIconVisibility("ime", false);
874 updateImeWindowStatusLocked();
satokb858c732011-07-22 19:54:34 +0900875 mShowOngoingImeSwitcherForPhones = mRes.getBoolean(
876 com.android.internal.R.bool.show_ongoing_ime_switcher);
satok01038492012-04-09 21:08:27 +0900877 if (mShowOngoingImeSwitcherForPhones) {
878 mWindowManagerService.setOnHardKeyboardStatusChangeListener(
879 mHardKeyboardListener);
880 }
Satoshi Kataokaf1367b72013-01-25 17:20:12 +0900881 buildInputMethodListLocked(mMethodList, mMethodMap,
882 !mImeSelectedOnBoot /* resetDefaultEnabledIme */);
satok0a1bcf42012-05-16 19:26:31 +0900883 if (!mImeSelectedOnBoot) {
884 Slog.w(TAG, "Reset the default IME as \"Resource\" is ready here.");
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +0900885 resetStateIfCurrentLocaleChangedLocked();
886 InputMethodUtils.setNonSelectedSystemImesDisabledUntilUsed(
887 mContext.getPackageManager(),
888 mSettings.getEnabledInputMethodListLocked());
satok0a1bcf42012-05-16 19:26:31 +0900889 }
890 mLastSystemLocale = mRes.getConfiguration().locale;
Dianne Hackborncc278702009-09-02 23:07:23 -0700891 try {
892 startInputInnerLocked();
893 } catch (RuntimeException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800894 Slog.w(TAG, "Unexpected exception", e);
Dianne Hackborncc278702009-09-02 23:07:23 -0700895 }
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700896 }
897 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800898 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800899
satok15452a42011-10-28 17:58:28 +0900900 private void setImeWindowVisibilityStatusHiddenLocked() {
901 mImeWindowVis = 0;
902 updateImeWindowStatusLocked();
903 }
904
satok3afd6c02011-11-18 08:38:19 +0900905 private void refreshImeWindowVisibilityLocked() {
906 final Configuration conf = mRes.getConfiguration();
907 final boolean haveHardKeyboard = conf.keyboard
908 != Configuration.KEYBOARD_NOKEYS;
909 final boolean hardKeyShown = haveHardKeyboard
910 && conf.hardKeyboardHidden
911 != Configuration.HARDKEYBOARDHIDDEN_YES;
John Spurlocke0980502013-10-25 11:59:29 -0400912
913 final boolean isScreenLocked = isKeyguardLocked();
914 final boolean inputActive = !isScreenLocked && (mInputShown || hardKeyShown);
John Spurlock36439b42013-10-23 16:36:47 -0400915 // We assume the softkeyboard is shown when the input is active as long as the
916 // hard keyboard is not shown.
917 final boolean inputVisible = inputActive && !hardKeyShown;
918 mImeWindowVis = (inputActive ? InputMethodService.IME_ACTIVE : 0)
919 | (inputVisible ? InputMethodService.IME_VISIBLE : 0);
satok3afd6c02011-11-18 08:38:19 +0900920 updateImeWindowStatusLocked();
921 }
922
satok15452a42011-10-28 17:58:28 +0900923 private void updateImeWindowStatusLocked() {
satokdbf29502011-08-25 15:28:23 +0900924 setImeWindowStatus(mCurToken, mImeWindowVis, mBackDisposition);
Dianne Hackborn661cd522011-08-22 00:26:20 -0700925 }
926
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900927 // ---------------------------------------------------------------------------------------
928 // Check whether or not this is a valid IPC. Assumes an IPC is valid when either
929 // 1) it comes from the system process
930 // 2) the calling process' user id is identical to the current user id IMMS thinks.
931 private boolean calledFromValidUser() {
932 final int uid = Binder.getCallingUid();
933 final int userId = UserHandle.getUserId(uid);
934 if (DEBUG) {
935 Slog.d(TAG, "--- calledFromForegroundUserOrSystemProcess ? "
936 + "calling uid = " + uid + " system uid = " + Process.SYSTEM_UID
937 + " calling userId = " + userId + ", foreground user id = "
Satoshi Kataoka87c29142013-07-31 23:11:54 +0900938 + mSettings.getCurrentUserId() + ", calling pid = " + Binder.getCallingPid()
939 + InputMethodUtils.getApiCallStack());
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900940 }
Kenny Guy2a764942014-04-02 13:29:20 +0100941 if (uid == Process.SYSTEM_UID || mSettings.isCurrentProfile(userId)) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900942 return true;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900943 }
Satoshi Kataoka135e5fb2012-09-28 18:25:06 +0900944
945 // Caveat: A process which has INTERACT_ACROSS_USERS_FULL gets results for the
946 // foreground user, not for the user of that process. Accordingly InputMethodManagerService
947 // must not manage background users' states in any functions.
948 // Note that privacy-sensitive IPCs, such as setInputMethod, are still securely guarded
949 // by a token.
950 if (mContext.checkCallingOrSelfPermission(
951 android.Manifest.permission.INTERACT_ACROSS_USERS_FULL)
952 == PackageManager.PERMISSION_GRANTED) {
953 if (DEBUG) {
954 Slog.d(TAG, "--- Access granted because the calling process has "
955 + "the INTERACT_ACROSS_USERS_FULL permission");
956 }
957 return true;
958 }
Satoshi Kataoka0766eb02013-07-31 18:30:13 +0900959 Slog.w(TAG, "--- IPC called from background users. Ignore. \n"
960 + InputMethodUtils.getStackTrace());
Satoshi Kataoka135e5fb2012-09-28 18:25:06 +0900961 return false;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900962 }
963
Yohei Yukawa22c97be2014-06-04 19:43:36 +0900964
965 /**
966 * Returns true iff the caller is identified to be the current input method with the token.
967 * @param token The window token given to the input method when it was started.
968 * @return true if and only if non-null valid token is specified.
969 */
970 private boolean calledWithValidToken(IBinder token) {
971 if (token == null || mCurToken != token) {
972 return false;
973 }
974 return true;
975 }
976
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900977 private boolean bindCurrentInputMethodService(
978 Intent service, ServiceConnection conn, int flags) {
979 if (service == null || conn == null) {
980 Slog.e(TAG, "--- bind failed: service = " + service + ", conn = " + conn);
981 return false;
982 }
Amith Yamasani27b89e62013-01-16 12:30:11 -0800983 return mContext.bindServiceAsUser(service, conn, flags,
984 new UserHandle(mSettings.getCurrentUserId()));
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900985 }
986
satoke7c6998e2011-06-03 17:57:59 +0900987 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800988 public List<InputMethodInfo> getInputMethodList() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900989 // TODO: Make this work even for non-current users?
990 if (!calledFromValidUser()) {
991 return Collections.emptyList();
992 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800993 synchronized (mMethodMap) {
994 return new ArrayList<InputMethodInfo>(mMethodList);
995 }
996 }
997
satoke7c6998e2011-06-03 17:57:59 +0900998 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800999 public List<InputMethodInfo> getEnabledInputMethodList() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001000 // TODO: Make this work even for non-current users?
1001 if (!calledFromValidUser()) {
1002 return Collections.emptyList();
1003 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001004 synchronized (mMethodMap) {
satokd87c2592010-09-29 11:52:06 +09001005 return mSettings.getEnabledInputMethodListLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001006 }
1007 }
1008
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001009 /**
Satoshi Kataokab3c21ac2013-08-07 15:43:29 +09001010 * @param imiId if null, returns enabled subtypes for the current imi
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001011 * @return enabled subtypes of the specified imi
1012 */
satoke7c6998e2011-06-03 17:57:59 +09001013 @Override
Satoshi Kataokab3c21ac2013-08-07 15:43:29 +09001014 public List<InputMethodSubtype> getEnabledInputMethodSubtypeList(String imiId,
satok16331c82010-12-20 23:48:46 +09001015 boolean allowsImplicitlySelectedSubtypes) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001016 // TODO: Make this work even for non-current users?
1017 if (!calledFromValidUser()) {
Satoshi Kataokab3c21ac2013-08-07 15:43:29 +09001018 return Collections.<InputMethodSubtype>emptyList();
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001019 }
satok67ddf9c2010-11-17 09:45:54 +09001020 synchronized (mMethodMap) {
Satoshi Kataokab3c21ac2013-08-07 15:43:29 +09001021 final InputMethodInfo imi;
1022 if (imiId == null && mCurMethodId != null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001023 imi = mMethodMap.get(mCurMethodId);
Satoshi Kataokab3c21ac2013-08-07 15:43:29 +09001024 } else {
1025 imi = mMethodMap.get(imiId);
1026 }
1027 if (imi == null) {
1028 return Collections.<InputMethodSubtype>emptyList();
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001029 }
1030 return mSettings.getEnabledInputMethodSubtypeListLocked(
1031 mContext, imi, allowsImplicitlySelectedSubtypes);
satok67ddf9c2010-11-17 09:45:54 +09001032 }
1033 }
1034
satoke7c6998e2011-06-03 17:57:59 +09001035 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001036 public void addClient(IInputMethodClient client,
1037 IInputContext inputContext, int uid, int pid) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001038 if (!calledFromValidUser()) {
1039 return;
1040 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001041 synchronized (mMethodMap) {
1042 mClients.put(client.asBinder(), new ClientState(client,
1043 inputContext, uid, pid));
1044 }
1045 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001046
satoke7c6998e2011-06-03 17:57:59 +09001047 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001048 public void removeClient(IInputMethodClient client) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001049 if (!calledFromValidUser()) {
1050 return;
1051 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001052 synchronized (mMethodMap) {
Jeff Brownc28867a2013-03-26 15:42:39 -07001053 ClientState cs = mClients.remove(client.asBinder());
1054 if (cs != null) {
1055 clearClientSessionLocked(cs);
1056 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001057 }
1058 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001059
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001060 void executeOrSendMessage(IInterface target, Message msg) {
1061 if (target.asBinder() instanceof Binder) {
1062 mCaller.sendMessage(msg);
1063 } else {
1064 handleMessage(msg);
1065 msg.recycle();
1066 }
1067 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001068
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001069 void unbindCurrentClientLocked() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001070 if (mCurClient != null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001071 if (DEBUG) Slog.v(TAG, "unbindCurrentInputLocked: client = "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001072 + mCurClient.client.asBinder());
1073 if (mBoundToMethod) {
1074 mBoundToMethod = false;
1075 if (mCurMethod != null) {
1076 executeOrSendMessage(mCurMethod, mCaller.obtainMessageO(
1077 MSG_UNBIND_INPUT, mCurMethod));
1078 }
1079 }
Dianne Hackborna6e41342012-05-22 16:30:34 -07001080
1081 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
1082 MSG_SET_ACTIVE, 0, mCurClient));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001083 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
1084 MSG_UNBIND_METHOD, mCurSeq, mCurClient.client));
1085 mCurClient.sessionRequested = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001086 mCurClient = null;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001087
The Android Open Source Project10592532009-03-18 17:39:46 -07001088 hideInputMethodMenuLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001089 }
1090 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001091
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001092 private int getImeShowFlags() {
1093 int flags = 0;
1094 if (mShowForced) {
1095 flags |= InputMethod.SHOW_FORCED
1096 | InputMethod.SHOW_EXPLICIT;
1097 } else if (mShowExplicitlyRequested) {
1098 flags |= InputMethod.SHOW_EXPLICIT;
1099 }
1100 return flags;
1101 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001102
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001103 private int getAppShowFlags() {
1104 int flags = 0;
1105 if (mShowForced) {
1106 flags |= InputMethodManager.SHOW_FORCED;
1107 } else if (!mShowExplicitlyRequested) {
1108 flags |= InputMethodManager.SHOW_IMPLICIT;
1109 }
1110 return flags;
1111 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001112
Dianne Hackborn7663d802012-02-24 13:08:49 -08001113 InputBindResult attachNewInputLocked(boolean initial) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001114 if (!mBoundToMethod) {
1115 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
1116 MSG_BIND_INPUT, mCurMethod, mCurClient.binding));
1117 mBoundToMethod = true;
1118 }
1119 final SessionState session = mCurClient.curSession;
1120 if (initial) {
1121 executeOrSendMessage(session.method, mCaller.obtainMessageOOO(
1122 MSG_START_INPUT, session, mCurInputContext, mCurAttribute));
1123 } else {
1124 executeOrSendMessage(session.method, mCaller.obtainMessageOOO(
1125 MSG_RESTART_INPUT, session, mCurInputContext, mCurAttribute));
1126 }
1127 if (mShowRequested) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001128 if (DEBUG) Slog.v(TAG, "Attach new input asks to show input");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001129 showCurrentInputLocked(getAppShowFlags(), null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001130 }
Jeff Brown1951ce82013-04-04 22:45:12 -07001131 return new InputBindResult(session.session,
1132 session.channel != null ? session.channel.dup() : null, mCurId, mCurSeq);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001133 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001134
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001135 InputBindResult startInputLocked(IInputMethodClient client,
Dianne Hackborn7663d802012-02-24 13:08:49 -08001136 IInputContext inputContext, EditorInfo attribute, int controlFlags) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001137 // If no method is currently selected, do nothing.
1138 if (mCurMethodId == null) {
1139 return mNoBinding;
1140 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001141
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001142 ClientState cs = mClients.get(client.asBinder());
1143 if (cs == null) {
1144 throw new IllegalArgumentException("unknown client "
1145 + client.asBinder());
1146 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001147
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001148 try {
1149 if (!mIWindowManager.inputMethodClientHasFocus(cs.client)) {
1150 // Check with the window manager to make sure this client actually
1151 // has a window with focus. If not, reject. This is thread safe
1152 // because if the focus changes some time before or after, the
1153 // next client receiving focus that has any interest in input will
1154 // be calling through here after that change happens.
Joe Onorato8a9b2202010-02-26 18:56:32 -08001155 Slog.w(TAG, "Starting input on non-focused client " + cs.client
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001156 + " (uid=" + cs.uid + " pid=" + cs.pid + ")");
1157 return null;
1158 }
1159 } catch (RemoteException e) {
1160 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001161
Dianne Hackborn7663d802012-02-24 13:08:49 -08001162 return startInputUncheckedLocked(cs, inputContext, attribute, controlFlags);
1163 }
1164
1165 InputBindResult startInputUncheckedLocked(ClientState cs,
1166 IInputContext inputContext, EditorInfo attribute, int controlFlags) {
1167 // If no method is currently selected, do nothing.
1168 if (mCurMethodId == null) {
1169 return mNoBinding;
1170 }
1171
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001172 if (mCurClient != cs) {
John Spurlocke0980502013-10-25 11:59:29 -04001173 // Was the keyguard locked when switching over to the new client?
1174 mCurClientInKeyguard = isKeyguardLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001175 // If the client is changing, we need to switch over to the new
1176 // one.
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001177 unbindCurrentClientLocked();
Joe Onorato8a9b2202010-02-26 18:56:32 -08001178 if (DEBUG) Slog.v(TAG, "switching to client: client = "
John Spurlocke0980502013-10-25 11:59:29 -04001179 + cs.client.asBinder() + " keyguard=" + mCurClientInKeyguard);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001180
1181 // If the screen is on, inform the new client it is active
1182 if (mScreenOn) {
Dianne Hackborna6e41342012-05-22 16:30:34 -07001183 executeOrSendMessage(cs.client, mCaller.obtainMessageIO(
1184 MSG_SET_ACTIVE, mScreenOn ? 1 : 0, cs));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001185 }
1186 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001187
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001188 // Bump up the sequence for this client and attach it.
1189 mCurSeq++;
1190 if (mCurSeq <= 0) mCurSeq = 1;
1191 mCurClient = cs;
1192 mCurInputContext = inputContext;
1193 mCurAttribute = attribute;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001194
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001195 // Check if the input method is changing.
1196 if (mCurId != null && mCurId.equals(mCurMethodId)) {
1197 if (cs.curSession != null) {
1198 // Fast case: if we are already connected to the input method,
1199 // then just return it.
Dianne Hackborn7663d802012-02-24 13:08:49 -08001200 return attachNewInputLocked(
1201 (controlFlags&InputMethodManager.CONTROL_START_INITIAL) != 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001202 }
1203 if (mHaveConnection) {
1204 if (mCurMethod != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001205 // Return to client, and we will get back with it when
1206 // we have had a session made for it.
Jeff Brownc28867a2013-03-26 15:42:39 -07001207 requestClientSessionLocked(cs);
1208 return new InputBindResult(null, null, mCurId, mCurSeq);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001209 } else if (SystemClock.uptimeMillis()
1210 < (mLastBindTime+TIME_TO_RECONNECT)) {
1211 // In this case we have connected to the service, but
1212 // don't yet have its interface. If it hasn't been too
1213 // long since we did the connection, we'll return to
1214 // the client and wait to get the service interface so
1215 // we can report back. If it has been too long, we want
1216 // to fall through so we can try a disconnect/reconnect
1217 // to see if we can get back in touch with the service.
Jeff Brownc28867a2013-03-26 15:42:39 -07001218 return new InputBindResult(null, null, mCurId, mCurSeq);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001219 } else {
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001220 EventLog.writeEvent(EventLogTags.IMF_FORCE_RECONNECT_IME,
1221 mCurMethodId, SystemClock.uptimeMillis()-mLastBindTime, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001222 }
1223 }
1224 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001225
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001226 return startInputInnerLocked();
1227 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001228
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001229 InputBindResult startInputInnerLocked() {
1230 if (mCurMethodId == null) {
1231 return mNoBinding;
1232 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001233
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001234 if (!mSystemReady) {
1235 // If the system is not yet ready, we shouldn't be running third
1236 // party code.
Jeff Brownc28867a2013-03-26 15:42:39 -07001237 return new InputBindResult(null, null, mCurMethodId, mCurSeq);
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001238 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001239
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001240 InputMethodInfo info = mMethodMap.get(mCurMethodId);
1241 if (info == null) {
1242 throw new IllegalArgumentException("Unknown id: " + mCurMethodId);
1243 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001244
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07001245 unbindCurrentMethodLocked(false, true);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001246
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001247 mCurIntent = new Intent(InputMethod.SERVICE_INTERFACE);
1248 mCurIntent.setComponent(info.getComponent());
Dianne Hackborndd9b82c2009-09-03 00:18:47 -07001249 mCurIntent.putExtra(Intent.EXTRA_CLIENT_LABEL,
1250 com.android.internal.R.string.input_method_binding_label);
1251 mCurIntent.putExtra(Intent.EXTRA_CLIENT_INTENT, PendingIntent.getActivity(
1252 mContext, 0, new Intent(Settings.ACTION_INPUT_METHOD_SETTINGS), 0));
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001253 if (bindCurrentInputMethodService(mCurIntent, this, Context.BIND_AUTO_CREATE
Dianne Hackbornf0f94d12014-03-17 16:04:21 -07001254 | Context.BIND_NOT_VISIBLE | Context.BIND_NOT_FOREGROUND
1255 | Context.BIND_SHOWING_UI)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001256 mLastBindTime = SystemClock.uptimeMillis();
1257 mHaveConnection = true;
1258 mCurId = info.getId();
1259 mCurToken = new Binder();
1260 try {
Craig Mautnerca0ac712013-03-14 09:43:02 -07001261 if (true || DEBUG) Slog.v(TAG, "Adding window token: " + mCurToken);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001262 mIWindowManager.addWindowToken(mCurToken,
1263 WindowManager.LayoutParams.TYPE_INPUT_METHOD);
1264 } catch (RemoteException e) {
1265 }
Jeff Brownc28867a2013-03-26 15:42:39 -07001266 return new InputBindResult(null, null, mCurId, mCurSeq);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001267 } else {
1268 mCurIntent = null;
Joe Onorato8a9b2202010-02-26 18:56:32 -08001269 Slog.w(TAG, "Failure connecting to input method service: "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001270 + mCurIntent);
1271 }
1272 return null;
1273 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001274
satoke7c6998e2011-06-03 17:57:59 +09001275 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001276 public InputBindResult startInput(IInputMethodClient client,
Dianne Hackborn7663d802012-02-24 13:08:49 -08001277 IInputContext inputContext, EditorInfo attribute, int controlFlags) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001278 if (!calledFromValidUser()) {
1279 return null;
1280 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001281 synchronized (mMethodMap) {
1282 final long ident = Binder.clearCallingIdentity();
1283 try {
Dianne Hackborn7663d802012-02-24 13:08:49 -08001284 return startInputLocked(client, inputContext, attribute, controlFlags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001285 } finally {
1286 Binder.restoreCallingIdentity(ident);
1287 }
1288 }
1289 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001290
satoke7c6998e2011-06-03 17:57:59 +09001291 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001292 public void finishInput(IInputMethodClient client) {
1293 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001294
satoke7c6998e2011-06-03 17:57:59 +09001295 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001296 public void onServiceConnected(ComponentName name, IBinder service) {
1297 synchronized (mMethodMap) {
1298 if (mCurIntent != null && name.equals(mCurIntent.getComponent())) {
1299 mCurMethod = IInputMethod.Stub.asInterface(service);
Dianne Hackborncc278702009-09-02 23:07:23 -07001300 if (mCurToken == null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001301 Slog.w(TAG, "Service connected without a token!");
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07001302 unbindCurrentMethodLocked(false, false);
Dianne Hackborncc278702009-09-02 23:07:23 -07001303 return;
1304 }
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07001305 if (DEBUG) Slog.v(TAG, "Initiating attach with token: " + mCurToken);
Dianne Hackborncc278702009-09-02 23:07:23 -07001306 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
1307 MSG_ATTACH_TOKEN, mCurMethod, mCurToken));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001308 if (mCurClient != null) {
Jeff Brownc28867a2013-03-26 15:42:39 -07001309 clearClientSessionLocked(mCurClient);
1310 requestClientSessionLocked(mCurClient);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001311 }
1312 }
1313 }
1314 }
1315
Jeff Brownc28867a2013-03-26 15:42:39 -07001316 void onSessionCreated(IInputMethod method, IInputMethodSession session,
1317 InputChannel channel) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001318 synchronized (mMethodMap) {
1319 if (mCurMethod != null && method != null
1320 && mCurMethod.asBinder() == method.asBinder()) {
1321 if (mCurClient != null) {
Jeff Brownc28867a2013-03-26 15:42:39 -07001322 clearClientSessionLocked(mCurClient);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001323 mCurClient.curSession = new SessionState(mCurClient,
Jeff Brownc28867a2013-03-26 15:42:39 -07001324 method, session, channel);
Dianne Hackborn7663d802012-02-24 13:08:49 -08001325 InputBindResult res = attachNewInputLocked(true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001326 if (res.method != null) {
1327 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageOO(
1328 MSG_BIND_METHOD, mCurClient.client, res));
1329 }
Jeff Brownc28867a2013-03-26 15:42:39 -07001330 return;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001331 }
1332 }
1333 }
Jeff Brownc28867a2013-03-26 15:42:39 -07001334
1335 // Session abandoned. Close its associated input channel.
1336 channel.dispose();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001337 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001338
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07001339 void unbindCurrentMethodLocked(boolean reportToClient, boolean savePosition) {
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07001340 if (mVisibleBound) {
1341 mContext.unbindService(mVisibleConnection);
1342 mVisibleBound = false;
1343 }
1344
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001345 if (mHaveConnection) {
1346 mContext.unbindService(this);
1347 mHaveConnection = false;
1348 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001349
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001350 if (mCurToken != null) {
1351 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001352 if (DEBUG) Slog.v(TAG, "Removing window token: " + mCurToken);
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07001353 if ((mImeWindowVis & InputMethodService.IME_ACTIVE) != 0 && savePosition) {
satoke0a99412012-05-10 02:22:58 +09001354 // The current IME is shown. Hence an IME switch (transition) is happening.
1355 mWindowManagerService.saveLastInputMethodWindowForTransition();
1356 }
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001357 mIWindowManager.removeWindowToken(mCurToken);
1358 } catch (RemoteException e) {
1359 }
1360 mCurToken = null;
1361 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001362
The Android Open Source Project10592532009-03-18 17:39:46 -07001363 mCurId = null;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001364 clearCurMethodLocked();
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001365
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001366 if (reportToClient && mCurClient != null) {
1367 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
1368 MSG_UNBIND_METHOD, mCurSeq, mCurClient.client));
1369 }
1370 }
Jeff Brownc28867a2013-03-26 15:42:39 -07001371
1372 void requestClientSessionLocked(ClientState cs) {
1373 if (!cs.sessionRequested) {
1374 if (DEBUG) Slog.v(TAG, "Creating new session for client " + cs);
1375 InputChannel[] channels = InputChannel.openInputChannelPair(cs.toString());
1376 cs.sessionRequested = true;
1377 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOOO(
1378 MSG_CREATE_SESSION, mCurMethod, channels[1],
1379 new MethodCallback(this, mCurMethod, channels[0])));
1380 }
1381 }
1382
1383 void clearClientSessionLocked(ClientState cs) {
1384 finishSessionLocked(cs.curSession);
1385 cs.curSession = null;
1386 cs.sessionRequested = false;
1387 }
1388
1389 private void finishSessionLocked(SessionState sessionState) {
1390 if (sessionState != null) {
1391 if (sessionState.session != null) {
1392 try {
1393 sessionState.session.finishSession();
1394 } catch (RemoteException e) {
1395 Slog.w(TAG, "Session failed to close due to remote exception", e);
1396 setImeWindowVisibilityStatusHiddenLocked();
1397 }
1398 sessionState.session = null;
1399 }
1400 if (sessionState.channel != null) {
1401 sessionState.channel.dispose();
1402 sessionState.channel = null;
Devin Taylor0c33ed22010-02-23 13:26:46 -06001403 }
1404 }
1405 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001406
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001407 void clearCurMethodLocked() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001408 if (mCurMethod != null) {
1409 for (ClientState cs : mClients.values()) {
Jeff Brownc28867a2013-03-26 15:42:39 -07001410 clearClientSessionLocked(cs);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001411 }
Devin Taylor0c33ed22010-02-23 13:26:46 -06001412
Jeff Brownc28867a2013-03-26 15:42:39 -07001413 finishSessionLocked(mEnabledSession);
Devin Taylor0c33ed22010-02-23 13:26:46 -06001414 mEnabledSession = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001415 mCurMethod = null;
1416 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07001417 if (mStatusBar != null) {
1418 mStatusBar.setIconVisibility("ime", false);
1419 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001420 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001421
satoke7c6998e2011-06-03 17:57:59 +09001422 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001423 public void onServiceDisconnected(ComponentName name) {
1424 synchronized (mMethodMap) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001425 if (DEBUG) Slog.v(TAG, "Service disconnected: " + name
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001426 + " mCurIntent=" + mCurIntent);
1427 if (mCurMethod != null && mCurIntent != null
1428 && name.equals(mCurIntent.getComponent())) {
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001429 clearCurMethodLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001430 // We consider this to be a new bind attempt, since the system
1431 // should now try to restart the service for us.
1432 mLastBindTime = SystemClock.uptimeMillis();
1433 mShowRequested = mInputShown;
1434 mInputShown = false;
1435 if (mCurClient != null) {
1436 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
1437 MSG_UNBIND_METHOD, mCurSeq, mCurClient.client));
1438 }
1439 }
1440 }
1441 }
1442
satokf9f01002011-05-19 21:31:50 +09001443 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001444 public void updateStatusIcon(IBinder token, String packageName, int iconId) {
1445 long ident = Binder.clearCallingIdentity();
1446 try {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001447 synchronized (mMethodMap) {
Yohei Yukawaa0755742014-06-04 20:28:18 +09001448 if (!calledWithValidToken(token)) {
1449 final int uid = Binder.getCallingUid();
1450 Slog.e(TAG, "Ignoring updateStatusIcon due to an invalid token. uid:" + uid
1451 + " token:" + token);
1452 return;
1453 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001454 if (iconId == 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001455 if (DEBUG) Slog.d(TAG, "hide the small icon for the input method");
Dianne Hackborn661cd522011-08-22 00:26:20 -07001456 if (mStatusBar != null) {
1457 mStatusBar.setIconVisibility("ime", false);
1458 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001459 } else if (packageName != null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001460 if (DEBUG) Slog.d(TAG, "show a small icon for the input method");
Svetoslav Ganov6179ea32011-06-28 01:12:41 -07001461 CharSequence contentDescription = null;
1462 try {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001463 // Use PackageManager to load label
1464 final PackageManager packageManager = mContext.getPackageManager();
Svetoslav Ganov6179ea32011-06-28 01:12:41 -07001465 contentDescription = packageManager.getApplicationLabel(
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001466 mIPackageManager.getApplicationInfo(packageName, 0,
1467 mSettings.getCurrentUserId()));
1468 } catch (RemoteException e) {
Svetoslav Ganov6179ea32011-06-28 01:12:41 -07001469 /* ignore */
1470 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07001471 if (mStatusBar != null) {
1472 mStatusBar.setIcon("ime", packageName, iconId, 0,
1473 contentDescription != null
1474 ? contentDescription.toString() : null);
1475 mStatusBar.setIconVisibility("ime", true);
1476 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001477 }
1478 }
1479 } finally {
1480 Binder.restoreCallingIdentity(ident);
1481 }
1482 }
1483
satok7cfc0ed2011-06-20 21:29:36 +09001484 private boolean needsToShowImeSwitchOngoingNotification() {
1485 if (!mShowOngoingImeSwitcherForPhones) return false;
Jason Monk807ef762014-05-08 15:47:46 -04001486 if (mSwitchingDialog != null) return false;
satok2c93efc2012-04-02 19:33:47 +09001487 if (isScreenLocked()) return false;
satok7cfc0ed2011-06-20 21:29:36 +09001488 synchronized (mMethodMap) {
1489 List<InputMethodInfo> imis = mSettings.getEnabledInputMethodListLocked();
1490 final int N = imis.size();
satokb6359412011-06-28 17:47:41 +09001491 if (N > 2) return true;
1492 if (N < 1) return false;
1493 int nonAuxCount = 0;
1494 int auxCount = 0;
1495 InputMethodSubtype nonAuxSubtype = null;
1496 InputMethodSubtype auxSubtype = null;
satok7cfc0ed2011-06-20 21:29:36 +09001497 for(int i = 0; i < N; ++i) {
1498 final InputMethodInfo imi = imis.get(i);
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001499 final List<InputMethodSubtype> subtypes =
1500 mSettings.getEnabledInputMethodSubtypeListLocked(mContext, imi, true);
satok7cfc0ed2011-06-20 21:29:36 +09001501 final int subtypeCount = subtypes.size();
1502 if (subtypeCount == 0) {
satokb6359412011-06-28 17:47:41 +09001503 ++nonAuxCount;
satok7cfc0ed2011-06-20 21:29:36 +09001504 } else {
1505 for (int j = 0; j < subtypeCount; ++j) {
satokb6359412011-06-28 17:47:41 +09001506 final InputMethodSubtype subtype = subtypes.get(j);
1507 if (!subtype.isAuxiliary()) {
1508 ++nonAuxCount;
1509 nonAuxSubtype = subtype;
1510 } else {
1511 ++auxCount;
1512 auxSubtype = subtype;
satok7cfc0ed2011-06-20 21:29:36 +09001513 }
1514 }
1515 }
satok7cfc0ed2011-06-20 21:29:36 +09001516 }
satokb6359412011-06-28 17:47:41 +09001517 if (nonAuxCount > 1 || auxCount > 1) {
1518 return true;
1519 } else if (nonAuxCount == 1 && auxCount == 1) {
1520 if (nonAuxSubtype != null && auxSubtype != null
satok9747f892011-09-12 15:56:40 +09001521 && (nonAuxSubtype.getLocale().equals(auxSubtype.getLocale())
1522 || auxSubtype.overridesImplicitlyEnabledSubtype()
1523 || nonAuxSubtype.overridesImplicitlyEnabledSubtype())
satokb6359412011-06-28 17:47:41 +09001524 && nonAuxSubtype.containsExtraValueKey(TAG_TRY_SUPPRESSING_IME_SWITCHER)) {
1525 return false;
1526 }
1527 return true;
1528 }
1529 return false;
satok7cfc0ed2011-06-20 21:29:36 +09001530 }
satok7cfc0ed2011-06-20 21:29:36 +09001531 }
1532
John Spurlocke0980502013-10-25 11:59:29 -04001533 private boolean isKeyguardLocked() {
1534 return mKeyguardManager != null && mKeyguardManager.isKeyguardLocked();
1535 }
1536
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001537 // Caution! This method is called in this class. Handle multi-user carefully
satokdbf29502011-08-25 15:28:23 +09001538 @SuppressWarnings("deprecation")
satokf9f01002011-05-19 21:31:50 +09001539 @Override
Joe Onorato857fd9b2011-01-27 15:08:35 -08001540 public void setImeWindowStatus(IBinder token, int vis, int backDisposition) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001541 final long ident = Binder.clearCallingIdentity();
satok06487a52010-10-29 11:37:18 +09001542 try {
Yohei Yukawa22c97be2014-06-04 19:43:36 +09001543 if (!calledWithValidToken(token)) {
1544 final int uid = Binder.getCallingUid();
1545 Slog.e(TAG, "Ignoring setImeWindowStatus due to an invalid token. uid:" + uid
1546 + " token:" + token);
satok06487a52010-10-29 11:37:18 +09001547 return;
1548 }
satok06487a52010-10-29 11:37:18 +09001549 synchronized (mMethodMap) {
John Spurlocke0980502013-10-25 11:59:29 -04001550 // apply policy for binder calls
1551 if (vis != 0 && isKeyguardLocked() && !mCurClientInKeyguard) {
1552 vis = 0;
1553 }
Joe Onorato857fd9b2011-01-27 15:08:35 -08001554 mImeWindowVis = vis;
1555 mBackDisposition = backDisposition;
jungheang.lee217fd292013-02-26 16:53:22 +09001556 final boolean iconVisibility = ((vis & (InputMethodService.IME_ACTIVE)) != 0)
1557 && (mWindowManagerService.isHardKeyboardAvailable()
1558 || (vis & (InputMethodService.IME_VISIBLE)) != 0);
Jason Monkb605fec2014-05-02 17:04:10 -04001559 final boolean needsToShowImeSwitcher = iconVisibility
1560 && needsToShowImeSwitchOngoingNotification();
1561 if (mStatusBar != null) {
1562 mStatusBar.setImeWindowStatus(token, vis, backDisposition,
1563 needsToShowImeSwitcher);
1564 }
satok5bc8e732011-07-22 21:07:23 +09001565 final InputMethodInfo imi = mMethodMap.get(mCurMethodId);
Jason Monkb605fec2014-05-02 17:04:10 -04001566 if (imi != null && needsToShowImeSwitcher) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001567 // Used to load label
satok7cfc0ed2011-06-20 21:29:36 +09001568 final CharSequence title = mRes.getText(
1569 com.android.internal.R.string.select_input_method);
Satoshi Kataokab2827262013-07-04 19:43:14 +09001570 final CharSequence summary = InputMethodUtils.getImeAndSubtypeDisplayName(
1571 mContext, imi, mCurrentSubtype);
satok5bc8e732011-07-22 21:07:23 +09001572
satok7cfc0ed2011-06-20 21:29:36 +09001573 mImeSwitcherNotification.setLatestEventInfo(
satok5bc8e732011-07-22 21:07:23 +09001574 mContext, title, summary, mImeSwitchPendingIntent);
Jason Monke463c742014-05-02 12:31:45 -04001575 if ((mNotificationManager != null)
1576 && !mWindowManagerService.hasNavigationBar()) {
Satoshi Kataoka135e5fb2012-09-28 18:25:06 +09001577 if (DEBUG) {
Satoshi Kataokab2827262013-07-04 19:43:14 +09001578 Slog.d(TAG, "--- show notification: label = " + summary);
Satoshi Kataoka135e5fb2012-09-28 18:25:06 +09001579 }
1580 mNotificationManager.notifyAsUser(null,
Dianne Hackborn661cd522011-08-22 00:26:20 -07001581 com.android.internal.R.string.select_input_method,
Satoshi Kataoka135e5fb2012-09-28 18:25:06 +09001582 mImeSwitcherNotification, UserHandle.ALL);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001583 mNotificationShown = true;
1584 }
satok7cfc0ed2011-06-20 21:29:36 +09001585 } else {
Dianne Hackborn661cd522011-08-22 00:26:20 -07001586 if (mNotificationShown && mNotificationManager != null) {
Satoshi Kataoka135e5fb2012-09-28 18:25:06 +09001587 if (DEBUG) {
1588 Slog.d(TAG, "--- hide notification");
1589 }
1590 mNotificationManager.cancelAsUser(null,
1591 com.android.internal.R.string.select_input_method, UserHandle.ALL);
satok7cfc0ed2011-06-20 21:29:36 +09001592 mNotificationShown = false;
1593 }
1594 }
satok06487a52010-10-29 11:37:18 +09001595 }
1596 } finally {
1597 Binder.restoreCallingIdentity(ident);
1598 }
1599 }
1600
satoke7c6998e2011-06-03 17:57:59 +09001601 @Override
satokf9f01002011-05-19 21:31:50 +09001602 public void registerSuggestionSpansForNotification(SuggestionSpan[] spans) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001603 if (!calledFromValidUser()) {
1604 return;
1605 }
satokf9f01002011-05-19 21:31:50 +09001606 synchronized (mMethodMap) {
1607 final InputMethodInfo currentImi = mMethodMap.get(mCurMethodId);
1608 for (int i = 0; i < spans.length; ++i) {
1609 SuggestionSpan ss = spans[i];
satok42c5a162011-05-26 16:46:14 +09001610 if (!TextUtils.isEmpty(ss.getNotificationTargetClassName())) {
satokf9f01002011-05-19 21:31:50 +09001611 mSecureSuggestionSpans.put(ss, currentImi);
1612 }
1613 }
1614 }
1615 }
1616
satoke7c6998e2011-06-03 17:57:59 +09001617 @Override
satokf9f01002011-05-19 21:31:50 +09001618 public boolean notifySuggestionPicked(SuggestionSpan span, String originalString, int index) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001619 if (!calledFromValidUser()) {
1620 return false;
1621 }
satokf9f01002011-05-19 21:31:50 +09001622 synchronized (mMethodMap) {
1623 final InputMethodInfo targetImi = mSecureSuggestionSpans.get(span);
1624 // TODO: Do not send the intent if the process of the targetImi is already dead.
1625 if (targetImi != null) {
1626 final String[] suggestions = span.getSuggestions();
1627 if (index < 0 || index >= suggestions.length) return false;
satok42c5a162011-05-26 16:46:14 +09001628 final String className = span.getNotificationTargetClassName();
satokf9f01002011-05-19 21:31:50 +09001629 final Intent intent = new Intent();
1630 // Ensures that only a class in the original IME package will receive the
1631 // notification.
satok42c5a162011-05-26 16:46:14 +09001632 intent.setClassName(targetImi.getPackageName(), className);
satokf9f01002011-05-19 21:31:50 +09001633 intent.setAction(SuggestionSpan.ACTION_SUGGESTION_PICKED);
1634 intent.putExtra(SuggestionSpan.SUGGESTION_SPAN_PICKED_BEFORE, originalString);
1635 intent.putExtra(SuggestionSpan.SUGGESTION_SPAN_PICKED_AFTER, suggestions[index]);
1636 intent.putExtra(SuggestionSpan.SUGGESTION_SPAN_PICKED_HASHCODE, span.hashCode());
Amith Yamasanif043de92012-10-24 06:42:40 -07001637 final long ident = Binder.clearCallingIdentity();
1638 try {
1639 mContext.sendBroadcastAsUser(intent, UserHandle.CURRENT);
1640 } finally {
1641 Binder.restoreCallingIdentity(ident);
1642 }
satokf9f01002011-05-19 21:31:50 +09001643 return true;
1644 }
1645 }
1646 return false;
1647 }
1648
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001649 void updateFromSettingsLocked(boolean enabledMayChange) {
1650 if (enabledMayChange) {
1651 List<InputMethodInfo> enabled = mSettings.getEnabledInputMethodListLocked();
1652 for (int i=0; i<enabled.size(); i++) {
1653 // We allow the user to select "disabled until used" apps, so if they
1654 // are enabling one of those here we now need to make it enabled.
1655 InputMethodInfo imm = enabled.get(i);
1656 try {
1657 ApplicationInfo ai = mIPackageManager.getApplicationInfo(imm.getPackageName(),
1658 PackageManager.GET_DISABLED_UNTIL_USED_COMPONENTS,
1659 mSettings.getCurrentUserId());
Satoshi Kataoka7987a312013-04-17 18:59:33 +09001660 if (ai != null && ai.enabledSetting
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001661 == PackageManager.COMPONENT_ENABLED_STATE_DISABLED_UNTIL_USED) {
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +09001662 if (DEBUG) {
1663 Slog.d(TAG, "Update state(" + imm.getId()
1664 + "): DISABLED_UNTIL_USED -> DEFAULT");
1665 }
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001666 mIPackageManager.setApplicationEnabledSetting(imm.getPackageName(),
1667 PackageManager.COMPONENT_ENABLED_STATE_DEFAULT,
Dianne Hackborn3fa3c28a2013-03-26 16:15:41 -07001668 PackageManager.DONT_KILL_APP, mSettings.getCurrentUserId(),
1669 mContext.getBasePackageName());
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001670 }
1671 } catch (RemoteException e) {
1672 }
1673 }
1674 }
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001675 // We are assuming that whoever is changing DEFAULT_INPUT_METHOD and
1676 // ENABLED_INPUT_METHODS is taking care of keeping them correctly in
1677 // sync, so we will never have a DEFAULT_INPUT_METHOD that is not
1678 // enabled.
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001679 String id = mSettings.getSelectedInputMethod();
satok03eb319a2010-11-11 18:17:42 +09001680 // There is no input method selected, try to choose new applicable input method.
1681 if (TextUtils.isEmpty(id) && chooseNewDefaultIMELocked()) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001682 id = mSettings.getSelectedInputMethod();
satok03eb319a2010-11-11 18:17:42 +09001683 }
1684 if (!TextUtils.isEmpty(id)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001685 try {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001686 setInputMethodLocked(id, mSettings.getSelectedInputMethodSubtypeId(id));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001687 } catch (IllegalArgumentException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001688 Slog.w(TAG, "Unknown input method from prefs: " + id, e);
The Android Open Source Project10592532009-03-18 17:39:46 -07001689 mCurMethodId = null;
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07001690 unbindCurrentMethodLocked(true, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001691 }
satokf3db1af2010-11-23 13:34:33 +09001692 mShortcutInputMethodsAndSubtypes.clear();
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001693 } else {
1694 // There is no longer an input method set, so stop any current one.
The Android Open Source Project10592532009-03-18 17:39:46 -07001695 mCurMethodId = null;
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07001696 unbindCurrentMethodLocked(true, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001697 }
Yohei Yukawa3d46bab2014-05-30 18:10:18 +09001698 // Here is not the perfect place to reset the switching controller. Ideally
1699 // mSwitchingController and mSettings should be able to share the same state.
1700 // TODO: Make sure that mSwitchingController and mSettings are sharing the
1701 // the same enabled IMEs list.
1702 mSwitchingController.resetCircularListLocked(mContext);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001703 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001704
satokab751aa2010-09-14 19:17:36 +09001705 /* package */ void setInputMethodLocked(String id, int subtypeId) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001706 InputMethodInfo info = mMethodMap.get(id);
1707 if (info == null) {
satok913a8922010-08-26 21:53:41 +09001708 throw new IllegalArgumentException("Unknown id: " + id);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001709 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001710
satokd81e9502012-05-21 12:58:45 +09001711 // See if we need to notify a subtype change within the same IME.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001712 if (id.equals(mCurMethodId)) {
satokd81e9502012-05-21 12:58:45 +09001713 final int subtypeCount = info.getSubtypeCount();
1714 if (subtypeCount <= 0) {
1715 return;
satokcd7cd292010-11-20 15:46:23 +09001716 }
satokd81e9502012-05-21 12:58:45 +09001717 final InputMethodSubtype oldSubtype = mCurrentSubtype;
1718 final InputMethodSubtype newSubtype;
1719 if (subtypeId >= 0 && subtypeId < subtypeCount) {
1720 newSubtype = info.getSubtypeAt(subtypeId);
1721 } else {
1722 // If subtype is null, try to find the most applicable one from
1723 // getCurrentInputMethodSubtype.
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001724 newSubtype = getCurrentInputMethodSubtypeLocked();
satokd81e9502012-05-21 12:58:45 +09001725 }
1726 if (newSubtype == null || oldSubtype == null) {
1727 Slog.w(TAG, "Illegal subtype state: old subtype = " + oldSubtype
1728 + ", new subtype = " + newSubtype);
1729 return;
1730 }
1731 if (newSubtype != oldSubtype) {
1732 setSelectedInputMethodAndSubtypeLocked(info, subtypeId, true);
1733 if (mCurMethod != null) {
1734 try {
1735 refreshImeWindowVisibilityLocked();
1736 mCurMethod.changeInputMethodSubtype(newSubtype);
1737 } catch (RemoteException e) {
1738 Slog.w(TAG, "Failed to call changeInputMethodSubtype");
satokab751aa2010-09-14 19:17:36 +09001739 }
1740 }
1741 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001742 return;
1743 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001744
satokd81e9502012-05-21 12:58:45 +09001745 // Changing to a different IME.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001746 final long ident = Binder.clearCallingIdentity();
1747 try {
satokab751aa2010-09-14 19:17:36 +09001748 // Set a subtype to this input method.
1749 // subtypeId the name of a subtype which will be set.
satok723a27e2010-11-11 14:58:11 +09001750 setSelectedInputMethodAndSubtypeLocked(info, subtypeId, false);
1751 // mCurMethodId should be updated after setSelectedInputMethodAndSubtypeLocked()
1752 // because mCurMethodId is stored as a history in
1753 // setSelectedInputMethodAndSubtypeLocked().
1754 mCurMethodId = id;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001755
1756 if (ActivityManagerNative.isSystemReady()) {
1757 Intent intent = new Intent(Intent.ACTION_INPUT_METHOD_CHANGED);
Dianne Hackborn1c633fc2009-12-08 19:45:14 -08001758 intent.addFlags(Intent.FLAG_RECEIVER_REPLACE_PENDING);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001759 intent.putExtra("input_method_id", id);
Amith Yamasanicd757062012-10-19 18:23:52 -07001760 mContext.sendBroadcastAsUser(intent, UserHandle.CURRENT);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001761 }
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001762 unbindCurrentClientLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001763 } finally {
1764 Binder.restoreCallingIdentity(ident);
1765 }
1766 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001767
satok42c5a162011-05-26 16:46:14 +09001768 @Override
The Android Open Source Project4df24232009-03-05 14:34:35 -08001769 public boolean showSoftInput(IInputMethodClient client, int flags,
1770 ResultReceiver resultReceiver) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001771 if (!calledFromValidUser()) {
1772 return false;
1773 }
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001774 int uid = Binder.getCallingUid();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001775 long ident = Binder.clearCallingIdentity();
1776 try {
1777 synchronized (mMethodMap) {
1778 if (mCurClient == null || client == null
1779 || mCurClient.client.asBinder() != client.asBinder()) {
1780 try {
1781 // We need to check if this is the current client with
1782 // focus in the window manager, to allow this call to
1783 // be made before input is started in it.
1784 if (!mIWindowManager.inputMethodClientHasFocus(client)) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001785 Slog.w(TAG, "Ignoring showSoftInput of uid " + uid + ": " + client);
The Android Open Source Project4df24232009-03-05 14:34:35 -08001786 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001787 }
1788 } catch (RemoteException e) {
The Android Open Source Project4df24232009-03-05 14:34:35 -08001789 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001790 }
1791 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001792
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07001793 if (DEBUG) Slog.v(TAG, "Client requesting input be shown");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001794 return showCurrentInputLocked(flags, resultReceiver);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001795 }
1796 } finally {
1797 Binder.restoreCallingIdentity(ident);
1798 }
1799 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001800
The Android Open Source Project4df24232009-03-05 14:34:35 -08001801 boolean showCurrentInputLocked(int flags, ResultReceiver resultReceiver) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001802 mShowRequested = true;
1803 if ((flags&InputMethodManager.SHOW_IMPLICIT) == 0) {
1804 mShowExplicitlyRequested = true;
1805 }
1806 if ((flags&InputMethodManager.SHOW_FORCED) != 0) {
1807 mShowExplicitlyRequested = true;
1808 mShowForced = true;
1809 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001810
Dianne Hackborncc278702009-09-02 23:07:23 -07001811 if (!mSystemReady) {
1812 return false;
1813 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001814
The Android Open Source Project4df24232009-03-05 14:34:35 -08001815 boolean res = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001816 if (mCurMethod != null) {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07001817 if (DEBUG) Slog.d(TAG, "showCurrentInputLocked: mCurToken=" + mCurToken);
The Android Open Source Project4df24232009-03-05 14:34:35 -08001818 executeOrSendMessage(mCurMethod, mCaller.obtainMessageIOO(
1819 MSG_SHOW_SOFT_INPUT, getImeShowFlags(), mCurMethod,
1820 resultReceiver));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001821 mInputShown = true;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07001822 if (mHaveConnection && !mVisibleBound) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001823 bindCurrentInputMethodService(
Dianne Hackbornf0f94d12014-03-17 16:04:21 -07001824 mCurIntent, mVisibleConnection, Context.BIND_AUTO_CREATE
1825 | Context.BIND_TREAT_LIKE_ACTIVITY);
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07001826 mVisibleBound = true;
1827 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08001828 res = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001829 } else if (mHaveConnection && SystemClock.uptimeMillis()
satok59b424c2011-09-30 17:21:46 +09001830 >= (mLastBindTime+TIME_TO_RECONNECT)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001831 // The client has asked to have the input method shown, but
1832 // we have been sitting here too long with a connection to the
1833 // service and no interface received, so let's disconnect/connect
1834 // to try to prod things along.
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001835 EventLog.writeEvent(EventLogTags.IMF_FORCE_RECONNECT_IME, mCurMethodId,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001836 SystemClock.uptimeMillis()-mLastBindTime,1);
satok59b424c2011-09-30 17:21:46 +09001837 Slog.w(TAG, "Force disconnect/connect to the IME in showCurrentInputLocked()");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001838 mContext.unbindService(this);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001839 bindCurrentInputMethodService(mCurIntent, this, Context.BIND_AUTO_CREATE
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07001840 | Context.BIND_NOT_VISIBLE);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001841 } else {
1842 if (DEBUG) {
1843 Slog.d(TAG, "Can't show input: connection = " + mHaveConnection + ", time = "
1844 + ((mLastBindTime+TIME_TO_RECONNECT) - SystemClock.uptimeMillis()));
1845 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001846 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001847
The Android Open Source Project4df24232009-03-05 14:34:35 -08001848 return res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001849 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001850
satok42c5a162011-05-26 16:46:14 +09001851 @Override
The Android Open Source Project4df24232009-03-05 14:34:35 -08001852 public boolean hideSoftInput(IInputMethodClient client, int flags,
1853 ResultReceiver resultReceiver) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001854 if (!calledFromValidUser()) {
1855 return false;
1856 }
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001857 int uid = Binder.getCallingUid();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001858 long ident = Binder.clearCallingIdentity();
1859 try {
1860 synchronized (mMethodMap) {
1861 if (mCurClient == null || client == null
1862 || mCurClient.client.asBinder() != client.asBinder()) {
1863 try {
1864 // We need to check if this is the current client with
1865 // focus in the window manager, to allow this call to
1866 // be made before input is started in it.
1867 if (!mIWindowManager.inputMethodClientHasFocus(client)) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001868 if (DEBUG) Slog.w(TAG, "Ignoring hideSoftInput of uid "
1869 + uid + ": " + client);
satok15452a42011-10-28 17:58:28 +09001870 setImeWindowVisibilityStatusHiddenLocked();
The Android Open Source Project4df24232009-03-05 14:34:35 -08001871 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001872 }
1873 } catch (RemoteException e) {
satok15452a42011-10-28 17:58:28 +09001874 setImeWindowVisibilityStatusHiddenLocked();
The Android Open Source Project4df24232009-03-05 14:34:35 -08001875 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001876 }
1877 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001878
Joe Onorato8a9b2202010-02-26 18:56:32 -08001879 if (DEBUG) Slog.v(TAG, "Client requesting input be hidden");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001880 return hideCurrentInputLocked(flags, resultReceiver);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001881 }
1882 } finally {
1883 Binder.restoreCallingIdentity(ident);
1884 }
1885 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001886
The Android Open Source Project4df24232009-03-05 14:34:35 -08001887 boolean hideCurrentInputLocked(int flags, ResultReceiver resultReceiver) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001888 if ((flags&InputMethodManager.HIDE_IMPLICIT_ONLY) != 0
1889 && (mShowExplicitlyRequested || mShowForced)) {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07001890 if (DEBUG) Slog.v(TAG, "Not hiding: explicit show not cancelled by non-explicit hide");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001891 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001892 }
1893 if (mShowForced && (flags&InputMethodManager.HIDE_NOT_ALWAYS) != 0) {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07001894 if (DEBUG) Slog.v(TAG, "Not hiding: forced show not cancelled by not-always hide");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001895 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001896 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08001897 boolean res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001898 if (mInputShown && mCurMethod != null) {
The Android Open Source Project4df24232009-03-05 14:34:35 -08001899 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
1900 MSG_HIDE_SOFT_INPUT, mCurMethod, resultReceiver));
1901 res = true;
1902 } else {
1903 res = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001904 }
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07001905 if (mHaveConnection && mVisibleBound) {
1906 mContext.unbindService(mVisibleConnection);
1907 mVisibleBound = false;
1908 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001909 mInputShown = false;
1910 mShowRequested = false;
1911 mShowExplicitlyRequested = false;
1912 mShowForced = false;
The Android Open Source Project4df24232009-03-05 14:34:35 -08001913 return res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001914 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001915
satok42c5a162011-05-26 16:46:14 +09001916 @Override
Dianne Hackborn7663d802012-02-24 13:08:49 -08001917 public InputBindResult windowGainedFocus(IInputMethodClient client, IBinder windowToken,
1918 int controlFlags, int softInputMode, int windowFlags,
1919 EditorInfo attribute, IInputContext inputContext) {
Satoshi Kataoka8d033052012-11-19 17:30:40 +09001920 // Needs to check the validity before clearing calling identity
1921 final boolean calledFromValidUser = calledFromValidUser();
1922
Dianne Hackborn7663d802012-02-24 13:08:49 -08001923 InputBindResult res = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001924 long ident = Binder.clearCallingIdentity();
1925 try {
1926 synchronized (mMethodMap) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001927 if (DEBUG) Slog.v(TAG, "windowGainedFocus: " + client.asBinder()
Dianne Hackborn7663d802012-02-24 13:08:49 -08001928 + " controlFlags=#" + Integer.toHexString(controlFlags)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001929 + " softInputMode=#" + Integer.toHexString(softInputMode)
Dianne Hackborn7663d802012-02-24 13:08:49 -08001930 + " windowFlags=#" + Integer.toHexString(windowFlags));
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001931
Dianne Hackborn7663d802012-02-24 13:08:49 -08001932 ClientState cs = mClients.get(client.asBinder());
1933 if (cs == null) {
1934 throw new IllegalArgumentException("unknown client "
1935 + client.asBinder());
1936 }
1937
1938 try {
1939 if (!mIWindowManager.inputMethodClientHasFocus(cs.client)) {
1940 // Check with the window manager to make sure this client actually
1941 // has a window with focus. If not, reject. This is thread safe
1942 // because if the focus changes some time before or after, the
1943 // next client receiving focus that has any interest in input will
1944 // be calling through here after that change happens.
1945 Slog.w(TAG, "Focus gain on non-focused client " + cs.client
1946 + " (uid=" + cs.uid + " pid=" + cs.pid + ")");
1947 return null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001948 }
Dianne Hackborn7663d802012-02-24 13:08:49 -08001949 } catch (RemoteException e) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001950 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001951
Satoshi Kataoka8d033052012-11-19 17:30:40 +09001952 if (!calledFromValidUser) {
1953 Slog.w(TAG, "A background user is requesting window. Hiding IME.");
1954 Slog.w(TAG, "If you want to interect with IME, you need "
1955 + "android.permission.INTERACT_ACROSS_USERS_FULL");
1956 hideCurrentInputLocked(0, null);
1957 return null;
1958 }
1959
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001960 if (mCurFocusedWindow == windowToken) {
Dianne Hackbornac920872012-05-22 11:49:49 -07001961 Slog.w(TAG, "Window already focused, ignoring focus gain of: " + client
Satoshi Kataoka35739502012-10-02 19:00:26 +09001962 + " attribute=" + attribute + ", token = " + windowToken);
Dianne Hackborn7663d802012-02-24 13:08:49 -08001963 if (attribute != null) {
1964 return startInputUncheckedLocked(cs, inputContext, attribute,
1965 controlFlags);
1966 }
1967 return null;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001968 }
1969 mCurFocusedWindow = windowToken;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001970
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08001971 // Should we auto-show the IME even if the caller has not
1972 // specified what should be done with it?
1973 // We only do this automatically if the window can resize
1974 // to accommodate the IME (so what the user sees will give
1975 // them good context without input information being obscured
1976 // by the IME) or if running on a large screen where there
1977 // is more room for the target window + IME.
1978 final boolean doAutoShow =
1979 (softInputMode & WindowManager.LayoutParams.SOFT_INPUT_MASK_ADJUST)
1980 == WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE
1981 || mRes.getConfiguration().isLayoutSizeAtLeast(
1982 Configuration.SCREENLAYOUT_SIZE_LARGE);
Dianne Hackborn7663d802012-02-24 13:08:49 -08001983 final boolean isTextEditor =
1984 (controlFlags&InputMethodManager.CONTROL_WINDOW_IS_TEXT_EDITOR) != 0;
1985
1986 // We want to start input before showing the IME, but after closing
1987 // it. We want to do this after closing it to help the IME disappear
1988 // more quickly (not get stuck behind it initializing itself for the
1989 // new focused input, even if its window wants to hide the IME).
1990 boolean didStart = false;
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08001991
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001992 switch (softInputMode&WindowManager.LayoutParams.SOFT_INPUT_MASK_STATE) {
1993 case WindowManager.LayoutParams.SOFT_INPUT_STATE_UNSPECIFIED:
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08001994 if (!isTextEditor || !doAutoShow) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001995 if (WindowManager.LayoutParams.mayUseInputMethod(windowFlags)) {
1996 // There is no focus view, and this window will
1997 // be behind any soft input window, so hide the
1998 // soft input window if it is shown.
Joe Onorato8a9b2202010-02-26 18:56:32 -08001999 if (DEBUG) Slog.v(TAG, "Unspecified window will hide input");
The Android Open Source Project4df24232009-03-05 14:34:35 -08002000 hideCurrentInputLocked(InputMethodManager.HIDE_NOT_ALWAYS, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002001 }
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08002002 } else if (isTextEditor && doAutoShow && (softInputMode &
2003 WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002004 // There is a focus view, and we are navigating forward
2005 // into the window, so show the input window for the user.
Dianne Hackborn7663d802012-02-24 13:08:49 -08002006 // We only do this automatically if the window can resize
2007 // to accommodate the IME (so what the user sees will give
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08002008 // them good context without input information being obscured
2009 // by the IME) or if running on a large screen where there
2010 // is more room for the target window + IME.
Joe Onorato8a9b2202010-02-26 18:56:32 -08002011 if (DEBUG) Slog.v(TAG, "Unspecified window will show input");
Dianne Hackborn7663d802012-02-24 13:08:49 -08002012 if (attribute != null) {
2013 res = startInputUncheckedLocked(cs, inputContext, attribute,
2014 controlFlags);
2015 didStart = true;
2016 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002017 showCurrentInputLocked(InputMethodManager.SHOW_IMPLICIT, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002018 }
2019 break;
2020 case WindowManager.LayoutParams.SOFT_INPUT_STATE_UNCHANGED:
2021 // Do nothing.
2022 break;
2023 case WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN:
2024 if ((softInputMode &
2025 WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002026 if (DEBUG) Slog.v(TAG, "Window asks to hide input going forward");
The Android Open Source Project4df24232009-03-05 14:34:35 -08002027 hideCurrentInputLocked(0, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002028 }
2029 break;
2030 case WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN:
Joe Onorato8a9b2202010-02-26 18:56:32 -08002031 if (DEBUG) Slog.v(TAG, "Window asks to hide input");
The Android Open Source Project4df24232009-03-05 14:34:35 -08002032 hideCurrentInputLocked(0, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002033 break;
2034 case WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE:
2035 if ((softInputMode &
2036 WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002037 if (DEBUG) Slog.v(TAG, "Window asks to show input going forward");
Dianne Hackborn7663d802012-02-24 13:08:49 -08002038 if (attribute != null) {
2039 res = startInputUncheckedLocked(cs, inputContext, attribute,
2040 controlFlags);
2041 didStart = true;
2042 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002043 showCurrentInputLocked(InputMethodManager.SHOW_IMPLICIT, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002044 }
2045 break;
2046 case WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE:
Joe Onorato8a9b2202010-02-26 18:56:32 -08002047 if (DEBUG) Slog.v(TAG, "Window asks to always show input");
Dianne Hackborn7663d802012-02-24 13:08:49 -08002048 if (attribute != null) {
2049 res = startInputUncheckedLocked(cs, inputContext, attribute,
2050 controlFlags);
2051 didStart = true;
2052 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002053 showCurrentInputLocked(InputMethodManager.SHOW_IMPLICIT, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002054 break;
2055 }
Dianne Hackborn7663d802012-02-24 13:08:49 -08002056
2057 if (!didStart && attribute != null) {
2058 res = startInputUncheckedLocked(cs, inputContext, attribute,
2059 controlFlags);
2060 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002061 }
2062 } finally {
2063 Binder.restoreCallingIdentity(ident);
2064 }
Dianne Hackborn7663d802012-02-24 13:08:49 -08002065
2066 return res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002067 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002068
satok42c5a162011-05-26 16:46:14 +09002069 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002070 public void showInputMethodPickerFromClient(IInputMethodClient client) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002071 if (!calledFromValidUser()) {
2072 return;
2073 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002074 synchronized (mMethodMap) {
2075 if (mCurClient == null || client == null
2076 || mCurClient.client.asBinder() != client.asBinder()) {
satok47a44912010-10-06 16:03:58 +09002077 Slog.w(TAG, "Ignoring showInputMethodPickerFromClient of uid "
Dianne Hackborncef65ee2010-09-30 18:27:22 -07002078 + Binder.getCallingUid() + ": " + client);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002079 }
2080
satok440aab52010-11-25 09:43:11 +09002081 // Always call subtype picker, because subtype picker is a superset of input method
2082 // picker.
satokab751aa2010-09-14 19:17:36 +09002083 mHandler.sendEmptyMessage(MSG_SHOW_IM_SUBTYPE_PICKER);
2084 }
2085 }
2086
satok42c5a162011-05-26 16:46:14 +09002087 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002088 public void setInputMethod(IBinder token, String id) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002089 if (!calledFromValidUser()) {
2090 return;
2091 }
satok28203512010-11-24 11:06:49 +09002092 setInputMethodWithSubtypeId(token, id, NOT_A_SUBTYPE_ID);
2093 }
2094
satok42c5a162011-05-26 16:46:14 +09002095 @Override
satok28203512010-11-24 11:06:49 +09002096 public void setInputMethodAndSubtype(IBinder token, String id, InputMethodSubtype subtype) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002097 if (!calledFromValidUser()) {
2098 return;
2099 }
satok28203512010-11-24 11:06:49 +09002100 synchronized (mMethodMap) {
2101 if (subtype != null) {
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002102 setInputMethodWithSubtypeIdLocked(token, id,
2103 InputMethodUtils.getSubtypeIdFromHashCode(mMethodMap.get(id),
2104 subtype.hashCode()));
satok28203512010-11-24 11:06:49 +09002105 } else {
2106 setInputMethod(token, id);
2107 }
2108 }
satokab751aa2010-09-14 19:17:36 +09002109 }
2110
satok42c5a162011-05-26 16:46:14 +09002111 @Override
satokb416a712010-11-25 20:42:14 +09002112 public void showInputMethodAndSubtypeEnablerFromClient(
satok217f5482010-12-15 05:19:19 +09002113 IInputMethodClient client, String inputMethodId) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002114 if (!calledFromValidUser()) {
2115 return;
2116 }
satokb416a712010-11-25 20:42:14 +09002117 synchronized (mMethodMap) {
2118 if (mCurClient == null || client == null
2119 || mCurClient.client.asBinder() != client.asBinder()) {
2120 Slog.w(TAG, "Ignoring showInputMethodAndSubtypeEnablerFromClient of: " + client);
2121 }
satok7fee71f2010-12-17 18:54:26 +09002122 executeOrSendMessage(mCurMethod, mCaller.obtainMessageO(
2123 MSG_SHOW_IM_SUBTYPE_ENABLER, inputMethodId));
satokb416a712010-11-25 20:42:14 +09002124 }
2125 }
2126
satok4fc87d62011-05-20 16:13:43 +09002127 @Override
satok735cf382010-11-11 20:40:09 +09002128 public boolean switchToLastInputMethod(IBinder token) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002129 if (!calledFromValidUser()) {
2130 return false;
2131 }
satok735cf382010-11-11 20:40:09 +09002132 synchronized (mMethodMap) {
satokc445bcd2011-01-25 18:57:24 +09002133 final Pair<String, String> lastIme = mSettings.getLastInputMethodAndSubtypeLocked();
satok4fc87d62011-05-20 16:13:43 +09002134 final InputMethodInfo lastImi;
satok208d5632011-05-20 22:13:38 +09002135 if (lastIme != null) {
satok4fc87d62011-05-20 16:13:43 +09002136 lastImi = mMethodMap.get(lastIme.first);
2137 } else {
2138 lastImi = null;
satok735cf382010-11-11 20:40:09 +09002139 }
satok4fc87d62011-05-20 16:13:43 +09002140 String targetLastImiId = null;
2141 int subtypeId = NOT_A_SUBTYPE_ID;
2142 if (lastIme != null && lastImi != null) {
2143 final boolean imiIdIsSame = lastImi.getId().equals(mCurMethodId);
2144 final int lastSubtypeHash = Integer.valueOf(lastIme.second);
2145 final int currentSubtypeHash = mCurrentSubtype == null ? NOT_A_SUBTYPE_ID
2146 : mCurrentSubtype.hashCode();
2147 // If the last IME is the same as the current IME and the last subtype is not
2148 // defined, there is no need to switch to the last IME.
2149 if (!imiIdIsSame || lastSubtypeHash != currentSubtypeHash) {
2150 targetLastImiId = lastIme.first;
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002151 subtypeId = InputMethodUtils.getSubtypeIdFromHashCode(lastImi, lastSubtypeHash);
satok4fc87d62011-05-20 16:13:43 +09002152 }
2153 }
2154
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002155 if (TextUtils.isEmpty(targetLastImiId)
2156 && !InputMethodUtils.canAddToLastInputMethod(mCurrentSubtype)) {
satok4fc87d62011-05-20 16:13:43 +09002157 // This is a safety net. If the currentSubtype can't be added to the history
2158 // and the framework couldn't find the last ime, we will make the last ime be
2159 // the most applicable enabled keyboard subtype of the system imes.
2160 final List<InputMethodInfo> enabled = mSettings.getEnabledInputMethodListLocked();
2161 if (enabled != null) {
2162 final int N = enabled.size();
2163 final String locale = mCurrentSubtype == null
2164 ? mRes.getConfiguration().locale.toString()
2165 : mCurrentSubtype.getLocale();
2166 for (int i = 0; i < N; ++i) {
2167 final InputMethodInfo imi = enabled.get(i);
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002168 if (imi.getSubtypeCount() > 0 && InputMethodUtils.isSystemIme(imi)) {
satok4fc87d62011-05-20 16:13:43 +09002169 InputMethodSubtype keyboardSubtype =
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002170 InputMethodUtils.findLastResortApplicableSubtypeLocked(mRes,
2171 InputMethodUtils.getSubtypes(imi),
2172 InputMethodUtils.SUBTYPE_MODE_KEYBOARD, locale, true);
satok4fc87d62011-05-20 16:13:43 +09002173 if (keyboardSubtype != null) {
2174 targetLastImiId = imi.getId();
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002175 subtypeId = InputMethodUtils.getSubtypeIdFromHashCode(
satok4fc87d62011-05-20 16:13:43 +09002176 imi, keyboardSubtype.hashCode());
2177 if(keyboardSubtype.getLocale().equals(locale)) {
2178 break;
2179 }
2180 }
2181 }
2182 }
2183 }
2184 }
2185
2186 if (!TextUtils.isEmpty(targetLastImiId)) {
2187 if (DEBUG) {
2188 Slog.d(TAG, "Switch to: " + lastImi.getId() + ", " + lastIme.second
2189 + ", from: " + mCurMethodId + ", " + subtypeId);
2190 }
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002191 setInputMethodWithSubtypeIdLocked(token, targetLastImiId, subtypeId);
satok4fc87d62011-05-20 16:13:43 +09002192 return true;
2193 } else {
2194 return false;
2195 }
satok735cf382010-11-11 20:40:09 +09002196 }
2197 }
2198
satoke7c6998e2011-06-03 17:57:59 +09002199 @Override
satok688bd472012-02-09 20:09:17 +09002200 public boolean switchToNextInputMethod(IBinder token, boolean onlyCurrentIme) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002201 if (!calledFromValidUser()) {
2202 return false;
2203 }
satok688bd472012-02-09 20:09:17 +09002204 synchronized (mMethodMap) {
Yohei Yukawaa0755742014-06-04 20:28:18 +09002205 if (!calledWithValidToken(token)) {
2206 final int uid = Binder.getCallingUid();
2207 Slog.e(TAG, "Ignoring switchToNextInputMethod due to an invalid token. uid:" + uid
2208 + " token:" + token);
2209 return false;
2210 }
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002211 final ImeSubtypeListItem nextSubtype = mSwitchingController.getNextInputMethodLocked(
satok688bd472012-02-09 20:09:17 +09002212 onlyCurrentIme, mMethodMap.get(mCurMethodId), mCurrentSubtype);
2213 if (nextSubtype == null) {
2214 return false;
2215 }
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002216 setInputMethodWithSubtypeIdLocked(token, nextSubtype.mImi.getId(),
2217 nextSubtype.mSubtypeId);
satok688bd472012-02-09 20:09:17 +09002218 return true;
2219 }
2220 }
2221
2222 @Override
Satoshi Kataoka2b10b522013-08-21 20:39:12 +09002223 public boolean shouldOfferSwitchingToNextInputMethod(IBinder token) {
2224 if (!calledFromValidUser()) {
2225 return false;
2226 }
2227 synchronized (mMethodMap) {
Yohei Yukawaa0755742014-06-04 20:28:18 +09002228 if (!calledWithValidToken(token)) {
2229 final int uid = Binder.getCallingUid();
2230 Slog.e(TAG, "Ignoring shouldOfferSwitchingToNextInputMethod due to an invalid "
2231 + "token. uid:" + uid + " token:" + token);
2232 return false;
2233 }
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002234 final ImeSubtypeListItem nextSubtype = mSwitchingController.getNextInputMethodLocked(
Satoshi Kataoka2b10b522013-08-21 20:39:12 +09002235 false /* onlyCurrentIme */, mMethodMap.get(mCurMethodId), mCurrentSubtype);
2236 if (nextSubtype == null) {
2237 return false;
2238 }
2239 return true;
2240 }
2241 }
2242
2243 @Override
satok68f1b782011-04-11 14:26:04 +09002244 public InputMethodSubtype getLastInputMethodSubtype() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002245 if (!calledFromValidUser()) {
2246 return null;
2247 }
satok68f1b782011-04-11 14:26:04 +09002248 synchronized (mMethodMap) {
2249 final Pair<String, String> lastIme = mSettings.getLastInputMethodAndSubtypeLocked();
2250 // TODO: Handle the case of the last IME with no subtypes
2251 if (lastIme == null || TextUtils.isEmpty(lastIme.first)
2252 || TextUtils.isEmpty(lastIme.second)) return null;
2253 final InputMethodInfo lastImi = mMethodMap.get(lastIme.first);
2254 if (lastImi == null) return null;
2255 try {
2256 final int lastSubtypeHash = Integer.valueOf(lastIme.second);
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002257 final int lastSubtypeId =
2258 InputMethodUtils.getSubtypeIdFromHashCode(lastImi, lastSubtypeHash);
satok0e7d7d62011-07-05 13:28:06 +09002259 if (lastSubtypeId < 0 || lastSubtypeId >= lastImi.getSubtypeCount()) {
2260 return null;
2261 }
2262 return lastImi.getSubtypeAt(lastSubtypeId);
satok68f1b782011-04-11 14:26:04 +09002263 } catch (NumberFormatException e) {
2264 return null;
2265 }
2266 }
2267 }
2268
satoke7c6998e2011-06-03 17:57:59 +09002269 @Override
satokee5e77c2011-09-02 18:50:15 +09002270 public void setAdditionalInputMethodSubtypes(String imiId, InputMethodSubtype[] subtypes) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002271 if (!calledFromValidUser()) {
2272 return;
2273 }
satok91e88122011-07-18 11:11:42 +09002274 // By this IPC call, only a process which shares the same uid with the IME can add
2275 // additional input method subtypes to the IME.
satokee5e77c2011-09-02 18:50:15 +09002276 if (TextUtils.isEmpty(imiId) || subtypes == null || subtypes.length == 0) return;
satoke7c6998e2011-06-03 17:57:59 +09002277 synchronized (mMethodMap) {
satok91e88122011-07-18 11:11:42 +09002278 final InputMethodInfo imi = mMethodMap.get(imiId);
satokee5e77c2011-09-02 18:50:15 +09002279 if (imi == null) return;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002280 final String[] packageInfos;
2281 try {
2282 packageInfos = mIPackageManager.getPackagesForUid(Binder.getCallingUid());
2283 } catch (RemoteException e) {
2284 Slog.e(TAG, "Failed to get package infos");
2285 return;
2286 }
satok91e88122011-07-18 11:11:42 +09002287 if (packageInfos != null) {
2288 final int packageNum = packageInfos.length;
2289 for (int i = 0; i < packageNum; ++i) {
2290 if (packageInfos[i].equals(imi.getPackageName())) {
2291 mFileManager.addInputMethodSubtypes(imi, subtypes);
satokc5933802011-08-31 21:26:04 +09002292 final long ident = Binder.clearCallingIdentity();
2293 try {
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09002294 buildInputMethodListLocked(mMethodList, mMethodMap,
2295 false /* resetDefaultEnabledIme */);
satokc5933802011-08-31 21:26:04 +09002296 } finally {
2297 Binder.restoreCallingIdentity(ident);
2298 }
satokee5e77c2011-09-02 18:50:15 +09002299 return;
satok91e88122011-07-18 11:11:42 +09002300 }
2301 }
2302 }
satoke7c6998e2011-06-03 17:57:59 +09002303 }
satokee5e77c2011-09-02 18:50:15 +09002304 return;
satoke7c6998e2011-06-03 17:57:59 +09002305 }
2306
Satoshi Kataoka658c7b82013-10-10 17:03:51 +09002307 @Override
2308 public int getInputMethodWindowVisibleHeight() {
2309 return mWindowManagerService.getInputMethodWindowVisibleHeight();
2310 }
2311
Satoshi Kataokad7443c82013-10-15 17:45:43 +09002312 @Override
Yohei Yukawa02970512014-06-05 16:16:18 +09002313 public void notifyUserAction() {
Satoshi Kataokad7443c82013-10-15 17:45:43 +09002314 if (DEBUG) {
Yohei Yukawa02970512014-06-05 16:16:18 +09002315 Slog.d(TAG, "Got the notification of a user action");
Satoshi Kataokad7443c82013-10-15 17:45:43 +09002316 }
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002317 synchronized (mMethodMap) {
2318 final InputMethodInfo imi = mMethodMap.get(mCurMethodId);
2319 if (imi != null) {
Yohei Yukawa02970512014-06-05 16:16:18 +09002320 mSwitchingController.onUserActionLocked(imi, mCurrentSubtype);
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002321 }
Satoshi Kataokad7443c82013-10-15 17:45:43 +09002322 }
2323 }
2324
Yohei Yukawab7b79072014-03-25 11:02:00 +09002325 @Override
2326 public void setCursorAnchorMonitorMode(IBinder token, int monitorMode) {
2327 if (DEBUG) {
2328 Slog.d(TAG, "setCursorAnchorMonitorMode: monitorMode=" + monitorMode);
2329 }
2330 if (!calledFromValidUser()) {
2331 return;
2332 }
2333 synchronized (mMethodMap) {
Yohei Yukawa22c97be2014-06-04 19:43:36 +09002334 if (!calledWithValidToken(token)) {
2335 final int uid = Binder.getCallingUid();
2336 Slog.e(TAG, "Ignoring setCursorAnchorMonitorMode due to an invalid token. uid:"
2337 + uid + " token:" + token);
Yohei Yukawab7b79072014-03-25 11:02:00 +09002338 return;
2339 }
2340 executeOrSendMessage(mCurMethod, mCaller.obtainMessageIO(
2341 MSG_SET_CURSOR_ANCHOR_MONITOR_MODE, monitorMode, mCurClient));
2342 }
2343 }
2344
satok28203512010-11-24 11:06:49 +09002345 private void setInputMethodWithSubtypeId(IBinder token, String id, int subtypeId) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002346 synchronized (mMethodMap) {
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002347 setInputMethodWithSubtypeIdLocked(token, id, subtypeId);
2348 }
2349 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002350
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002351 private void setInputMethodWithSubtypeIdLocked(IBinder token, String id, int subtypeId) {
2352 if (token == null) {
2353 if (mContext.checkCallingOrSelfPermission(
2354 android.Manifest.permission.WRITE_SECURE_SETTINGS)
2355 != PackageManager.PERMISSION_GRANTED) {
2356 throw new SecurityException(
2357 "Using null token requires permission "
2358 + android.Manifest.permission.WRITE_SECURE_SETTINGS);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002359 }
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002360 } else if (mCurToken != token) {
2361 Slog.w(TAG, "Ignoring setInputMethod of uid " + Binder.getCallingUid()
2362 + " token: " + token);
2363 return;
2364 }
2365
2366 final long ident = Binder.clearCallingIdentity();
2367 try {
2368 setInputMethodLocked(id, subtypeId);
2369 } finally {
2370 Binder.restoreCallingIdentity(ident);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002371 }
2372 }
2373
satok42c5a162011-05-26 16:46:14 +09002374 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002375 public void hideMySoftInput(IBinder token, int flags) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002376 if (!calledFromValidUser()) {
2377 return;
2378 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002379 synchronized (mMethodMap) {
Yohei Yukawa22c97be2014-06-04 19:43:36 +09002380 if (!calledWithValidToken(token)) {
2381 final int uid = Binder.getCallingUid();
2382 Slog.e(TAG, "Ignoring hideInputMethod due to an invalid token. uid:"
2383 + uid + " token:" + token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002384 return;
2385 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002386 long ident = Binder.clearCallingIdentity();
2387 try {
The Android Open Source Project4df24232009-03-05 14:34:35 -08002388 hideCurrentInputLocked(flags, null);
2389 } finally {
2390 Binder.restoreCallingIdentity(ident);
2391 }
2392 }
2393 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002394
satok42c5a162011-05-26 16:46:14 +09002395 @Override
The Android Open Source Project4df24232009-03-05 14:34:35 -08002396 public void showMySoftInput(IBinder token, int flags) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002397 if (!calledFromValidUser()) {
2398 return;
2399 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002400 synchronized (mMethodMap) {
Yohei Yukawa22c97be2014-06-04 19:43:36 +09002401 if (!calledWithValidToken(token)) {
2402 final int uid = Binder.getCallingUid();
2403 Slog.e(TAG, "Ignoring showMySoftInput due to an invalid token. uid:"
2404 + uid + " token:" + token);
The Android Open Source Project4df24232009-03-05 14:34:35 -08002405 return;
2406 }
2407 long ident = Binder.clearCallingIdentity();
2408 try {
2409 showCurrentInputLocked(flags, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002410 } finally {
2411 Binder.restoreCallingIdentity(ident);
2412 }
2413 }
2414 }
2415
2416 void setEnabledSessionInMainThread(SessionState session) {
2417 if (mEnabledSession != session) {
Yohei Yukawa9d91b432014-05-19 16:03:24 +09002418 if (mEnabledSession != null && mEnabledSession.session != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002419 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002420 if (DEBUG) Slog.v(TAG, "Disabling: " + mEnabledSession);
Yohei Yukawa9d91b432014-05-19 16:03:24 +09002421 mEnabledSession.method.setSessionEnabled(mEnabledSession.session, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002422 } catch (RemoteException e) {
2423 }
2424 }
2425 mEnabledSession = session;
Yohei Yukawa9d91b432014-05-19 16:03:24 +09002426 if (mEnabledSession != null && mEnabledSession.session != null) {
2427 try {
2428 if (DEBUG) Slog.v(TAG, "Enabling: " + mEnabledSession);
2429 mEnabledSession.method.setSessionEnabled(mEnabledSession.session, true);
2430 } catch (RemoteException e) {
2431 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002432 }
2433 }
2434 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002435
satok42c5a162011-05-26 16:46:14 +09002436 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002437 public boolean handleMessage(Message msg) {
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002438 SomeArgs args;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002439 switch (msg.what) {
2440 case MSG_SHOW_IM_PICKER:
2441 showInputMethodMenu();
2442 return true;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002443
satokab751aa2010-09-14 19:17:36 +09002444 case MSG_SHOW_IM_SUBTYPE_PICKER:
2445 showInputMethodSubtypeMenu();
2446 return true;
2447
satok47a44912010-10-06 16:03:58 +09002448 case MSG_SHOW_IM_SUBTYPE_ENABLER:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002449 args = (SomeArgs)msg.obj;
satok7fee71f2010-12-17 18:54:26 +09002450 showInputMethodAndSubtypeEnabler((String)args.arg1);
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002451 args.recycle();
satok217f5482010-12-15 05:19:19 +09002452 return true;
2453
2454 case MSG_SHOW_IM_CONFIG:
2455 showConfigureInputMethods();
satok47a44912010-10-06 16:03:58 +09002456 return true;
2457
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002458 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002459
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002460 case MSG_UNBIND_INPUT:
2461 try {
2462 ((IInputMethod)msg.obj).unbindInput();
2463 } catch (RemoteException e) {
2464 // There is nothing interesting about the method dying.
2465 }
2466 return true;
2467 case MSG_BIND_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002468 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002469 try {
2470 ((IInputMethod)args.arg1).bindInput((InputBinding)args.arg2);
2471 } catch (RemoteException e) {
2472 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002473 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002474 return true;
2475 case MSG_SHOW_SOFT_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002476 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002477 try {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002478 if (DEBUG) Slog.v(TAG, "Calling " + args.arg1 + ".showSoftInput("
Craig Mautner6efb4c72013-03-13 10:17:41 -07002479 + msg.arg1 + ", " + args.arg2 + ")");
Craig Mautnerca0ac712013-03-14 09:43:02 -07002480 ((IInputMethod)args.arg1).showSoftInput(msg.arg1, (ResultReceiver)args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002481 } catch (RemoteException e) {
2482 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002483 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002484 return true;
2485 case MSG_HIDE_SOFT_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002486 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002487 try {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002488 if (DEBUG) Slog.v(TAG, "Calling " + args.arg1 + ".hideSoftInput(0, "
Craig Mautner6efb4c72013-03-13 10:17:41 -07002489 + args.arg2 + ")");
Craig Mautnerca0ac712013-03-14 09:43:02 -07002490 ((IInputMethod)args.arg1).hideSoftInput(0, (ResultReceiver)args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002491 } catch (RemoteException e) {
2492 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002493 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002494 return true;
2495 case MSG_ATTACH_TOKEN:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002496 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002497 try {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002498 if (DEBUG) Slog.v(TAG, "Sending attach of token: " + args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002499 ((IInputMethod)args.arg1).attachToken((IBinder)args.arg2);
2500 } catch (RemoteException e) {
2501 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002502 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002503 return true;
Jeff Brownc28867a2013-03-26 15:42:39 -07002504 case MSG_CREATE_SESSION: {
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002505 args = (SomeArgs)msg.obj;
Jeff Brown1951ce82013-04-04 22:45:12 -07002506 IInputMethod method = (IInputMethod)args.arg1;
Jeff Brownc28867a2013-03-26 15:42:39 -07002507 InputChannel channel = (InputChannel)args.arg2;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002508 try {
Jeff Brown1951ce82013-04-04 22:45:12 -07002509 method.createSession(channel, (IInputSessionCallback)args.arg3);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002510 } catch (RemoteException e) {
Jeff Brownc28867a2013-03-26 15:42:39 -07002511 } finally {
Jeff Brown1951ce82013-04-04 22:45:12 -07002512 // Dispose the channel if the input method is not local to this process
2513 // because the remote proxy will get its own copy when unparceled.
2514 if (channel != null && Binder.isProxy(method)) {
Jeff Brownc28867a2013-03-26 15:42:39 -07002515 channel.dispose();
2516 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002517 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002518 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002519 return true;
Jeff Brownc28867a2013-03-26 15:42:39 -07002520 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002521 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002522
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002523 case MSG_START_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002524 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002525 try {
2526 SessionState session = (SessionState)args.arg1;
2527 setEnabledSessionInMainThread(session);
2528 session.method.startInput((IInputContext)args.arg2,
2529 (EditorInfo)args.arg3);
2530 } catch (RemoteException e) {
2531 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002532 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002533 return true;
2534 case MSG_RESTART_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002535 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002536 try {
2537 SessionState session = (SessionState)args.arg1;
2538 setEnabledSessionInMainThread(session);
2539 session.method.restartInput((IInputContext)args.arg2,
2540 (EditorInfo)args.arg3);
2541 } catch (RemoteException e) {
2542 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002543 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002544 return true;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002545
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002546 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002547
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002548 case MSG_UNBIND_METHOD:
2549 try {
2550 ((IInputMethodClient)msg.obj).onUnbindMethod(msg.arg1);
2551 } catch (RemoteException e) {
2552 // There is nothing interesting about the last client dying.
2553 }
2554 return true;
Jeff Brown1951ce82013-04-04 22:45:12 -07002555 case MSG_BIND_METHOD: {
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002556 args = (SomeArgs)msg.obj;
Jeff Brown1951ce82013-04-04 22:45:12 -07002557 IInputMethodClient client = (IInputMethodClient)args.arg1;
2558 InputBindResult res = (InputBindResult)args.arg2;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002559 try {
Jeff Brown1951ce82013-04-04 22:45:12 -07002560 client.onBindMethod(res);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002561 } catch (RemoteException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002562 Slog.w(TAG, "Client died receiving input method " + args.arg2);
Jeff Brown1951ce82013-04-04 22:45:12 -07002563 } finally {
2564 // Dispose the channel if the input method is not local to this process
2565 // because the remote proxy will get its own copy when unparceled.
2566 if (res.channel != null && Binder.isProxy(client)) {
2567 res.channel.dispose();
2568 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002569 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002570 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002571 return true;
Jeff Brown1951ce82013-04-04 22:45:12 -07002572 }
Dianne Hackborna6e41342012-05-22 16:30:34 -07002573 case MSG_SET_ACTIVE:
2574 try {
2575 ((ClientState)msg.obj).client.setActive(msg.arg1 != 0);
2576 } catch (RemoteException e) {
2577 Slog.w(TAG, "Got RemoteException sending setActive(false) notification to pid "
2578 + ((ClientState)msg.obj).pid + " uid "
2579 + ((ClientState)msg.obj).uid);
2580 }
2581 return true;
Yohei Yukawab7b79072014-03-25 11:02:00 +09002582 case MSG_SET_CURSOR_ANCHOR_MONITOR_MODE:
2583 try {
2584 ((ClientState)msg.obj).client.setCursorAnchorMonitorMode(msg.arg1);
2585 } catch (RemoteException e) {
2586 Slog.w(TAG, "Got RemoteException sending setCursorAnchorMonitorMode "
2587 + "notification to pid " + ((ClientState)msg.obj).pid
2588 + " uid " + ((ClientState)msg.obj).uid);
2589 }
2590 return true;
satok01038492012-04-09 21:08:27 +09002591
2592 // --------------------------------------------------------------
2593 case MSG_HARD_KEYBOARD_SWITCH_CHANGED:
2594 mHardKeyboardListener.handleHardKeyboardStatusChange(
2595 msg.arg1 == 1, msg.arg2 == 1);
2596 return true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002597 }
2598 return false;
2599 }
2600
satokdc9ddae2011-10-06 12:22:36 +09002601 private boolean chooseNewDefaultIMELocked() {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002602 final InputMethodInfo imi = InputMethodUtils.getMostApplicableDefaultIME(
2603 mSettings.getEnabledInputMethodListLocked());
satokdc9ddae2011-10-06 12:22:36 +09002604 if (imi != null) {
satok03eb319a2010-11-11 18:17:42 +09002605 if (DEBUG) {
2606 Slog.d(TAG, "New default IME was selected: " + imi.getId());
2607 }
satok723a27e2010-11-11 14:58:11 +09002608 resetSelectedInputMethodAndSubtypeLocked(imi.getId());
Brandon Ballinger6da35a02009-10-21 00:38:13 -07002609 return true;
2610 }
2611
2612 return false;
2613 }
2614
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002615 void buildInputMethodListLocked(ArrayList<InputMethodInfo> list,
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09002616 HashMap<String, InputMethodInfo> map, boolean resetDefaultEnabledIme) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002617 if (DEBUG) {
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09002618 Slog.d(TAG, "--- re-buildInputMethodList reset = " + resetDefaultEnabledIme
Satoshi Kataoka0766eb02013-07-31 18:30:13 +09002619 + " \n ------ \n" + InputMethodUtils.getStackTrace());
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002620 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002621 list.clear();
2622 map.clear();
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002623
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002624 // Use for queryIntentServicesAsUser
2625 final PackageManager pm = mContext.getPackageManager();
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002626 String disabledSysImes = mSettings.getDisabledSystemInputMethods();
Amith Yamasanie861ec12010-03-24 21:39:27 -07002627 if (disabledSysImes == null) disabledSysImes = "";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002628
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002629 final List<ResolveInfo> services = pm.queryIntentServicesAsUser(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002630 new Intent(InputMethod.SERVICE_INTERFACE),
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08002631 PackageManager.GET_META_DATA | PackageManager.GET_DISABLED_UNTIL_USED_COMPONENTS,
2632 mSettings.getCurrentUserId());
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002633
satoke7c6998e2011-06-03 17:57:59 +09002634 final HashMap<String, List<InputMethodSubtype>> additionalSubtypes =
2635 mFileManager.getAllAdditionalInputMethodSubtypes();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002636 for (int i = 0; i < services.size(); ++i) {
2637 ResolveInfo ri = services.get(i);
2638 ServiceInfo si = ri.serviceInfo;
2639 ComponentName compName = new ComponentName(si.packageName, si.name);
2640 if (!android.Manifest.permission.BIND_INPUT_METHOD.equals(
2641 si.permission)) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002642 Slog.w(TAG, "Skipping input method " + compName
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002643 + ": it does not require the permission "
2644 + android.Manifest.permission.BIND_INPUT_METHOD);
2645 continue;
2646 }
2647
Joe Onorato8a9b2202010-02-26 18:56:32 -08002648 if (DEBUG) Slog.d(TAG, "Checking " + compName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002649
2650 try {
satoke7c6998e2011-06-03 17:57:59 +09002651 InputMethodInfo p = new InputMethodInfo(mContext, ri, additionalSubtypes);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002652 list.add(p);
Amith Yamasanie861ec12010-03-24 21:39:27 -07002653 final String id = p.getId();
2654 map.put(id, p);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002655
2656 if (DEBUG) {
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09002657 Slog.d(TAG, "Found an input method " + p);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002658 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002659
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002660 } catch (XmlPullParserException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002661 Slog.w(TAG, "Unable to load input method " + compName, e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002662 } catch (IOException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002663 Slog.w(TAG, "Unable to load input method " + compName, e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002664 }
2665 }
Brandon Ballinger6da35a02009-10-21 00:38:13 -07002666
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09002667 if (resetDefaultEnabledIme) {
2668 final ArrayList<InputMethodInfo> defaultEnabledIme =
2669 InputMethodUtils.getDefaultEnabledImes(mContext, mSystemReady, list);
2670 for (int i = 0; i < defaultEnabledIme.size(); ++i) {
2671 final InputMethodInfo imi = defaultEnabledIme.get(i);
2672 if (DEBUG) {
2673 Slog.d(TAG, "--- enable ime = " + imi);
2674 }
2675 setInputMethodEnabledLocked(imi.getId(), true);
2676 }
2677 }
2678
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002679 final String defaultImiId = mSettings.getSelectedInputMethod();
satok0a1bcf42012-05-16 19:26:31 +09002680 if (!TextUtils.isEmpty(defaultImiId)) {
2681 if (!map.containsKey(defaultImiId)) {
2682 Slog.w(TAG, "Default IME is uninstalled. Choose new default IME.");
2683 if (chooseNewDefaultIMELocked()) {
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08002684 updateFromSettingsLocked(true);
satok0a1bcf42012-05-16 19:26:31 +09002685 }
2686 } else {
2687 // Double check that the default IME is certainly enabled.
2688 setInputMethodEnabledLocked(defaultImiId, true);
Brandon Ballinger6da35a02009-10-21 00:38:13 -07002689 }
2690 }
Yohei Yukawa3d46bab2014-05-30 18:10:18 +09002691 // Here is not the perfect place to reset the switching controller. Ideally
2692 // mSwitchingController and mSettings should be able to share the same state.
2693 // TODO: Make sure that mSwitchingController and mSettings are sharing the
2694 // the same enabled IMEs list.
Yohei Yukawac834a252014-05-21 22:42:32 +09002695 mSwitchingController.resetCircularListLocked(mContext);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002696 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002697
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002698 // ----------------------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002699
satokab751aa2010-09-14 19:17:36 +09002700 private void showInputMethodMenu() {
2701 showInputMethodMenuInternal(false);
2702 }
2703
2704 private void showInputMethodSubtypeMenu() {
2705 showInputMethodMenuInternal(true);
2706 }
2707
satok217f5482010-12-15 05:19:19 +09002708 private void showInputMethodAndSubtypeEnabler(String inputMethodId) {
Tadashi G. Takaokaf49688f2011-01-20 17:56:13 +09002709 Intent intent = new Intent(Settings.ACTION_INPUT_METHOD_SUBTYPE_SETTINGS);
satok47a44912010-10-06 16:03:58 +09002710 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
satok86417ea2010-10-27 14:11:03 +09002711 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED
2712 | Intent.FLAG_ACTIVITY_CLEAR_TOP);
satok7fee71f2010-12-17 18:54:26 +09002713 if (!TextUtils.isEmpty(inputMethodId)) {
Tadashi G. Takaoka25480202011-01-20 23:13:02 +09002714 intent.putExtra(Settings.EXTRA_INPUT_METHOD_ID, inputMethodId);
satok7fee71f2010-12-17 18:54:26 +09002715 }
Satoshi Kataoka3ba439d2012-10-05 18:30:13 +09002716 mContext.startActivityAsUser(intent, null, UserHandle.CURRENT);
satok217f5482010-12-15 05:19:19 +09002717 }
2718
2719 private void showConfigureInputMethods() {
2720 Intent intent = new Intent(Settings.ACTION_INPUT_METHOD_SETTINGS);
2721 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
2722 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED
2723 | Intent.FLAG_ACTIVITY_CLEAR_TOP);
Satoshi Kataoka3ba439d2012-10-05 18:30:13 +09002724 mContext.startActivityAsUser(intent, null, UserHandle.CURRENT);
satok47a44912010-10-06 16:03:58 +09002725 }
2726
satok2c93efc2012-04-02 19:33:47 +09002727 private boolean isScreenLocked() {
2728 return mKeyguardManager != null
2729 && mKeyguardManager.isKeyguardLocked() && mKeyguardManager.isKeyguardSecure();
2730 }
satokab751aa2010-09-14 19:17:36 +09002731 private void showInputMethodMenuInternal(boolean showSubtypes) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002732 if (DEBUG) Slog.v(TAG, "Show switching menu");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002733
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002734 final Context context = mContext;
satok2c93efc2012-04-02 19:33:47 +09002735 final boolean isScreenLocked = isScreenLocked();
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002736
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002737 final String lastInputMethodId = mSettings.getSelectedInputMethod();
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002738 int lastInputMethodSubtypeId = mSettings.getSelectedInputMethodSubtypeId(lastInputMethodId);
Joe Onorato8a9b2202010-02-26 18:56:32 -08002739 if (DEBUG) Slog.v(TAG, "Current IME: " + lastInputMethodId);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002740
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002741 synchronized (mMethodMap) {
satokbb4aa062011-01-19 21:40:27 +09002742 final HashMap<InputMethodInfo, List<InputMethodSubtype>> immis =
Satoshi Kataokad787f692013-10-26 04:44:21 +09002743 mSettings.getExplicitlyOrImplicitlyEnabledInputMethodsAndSubtypeListLocked(
2744 mContext);
satok7f35c8c2010-10-07 21:13:11 +09002745 if (immis == null || immis.size() == 0) {
2746 return;
2747 }
2748
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002749 hideInputMethodMenuLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002750
satok688bd472012-02-09 20:09:17 +09002751 final List<ImeSubtypeListItem> imList =
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002752 mSwitchingController.getSortedInputMethodAndSubtypeListLocked(
satok688bd472012-02-09 20:09:17 +09002753 showSubtypes, mInputShown, isScreenLocked);
satok913a8922010-08-26 21:53:41 +09002754
satokc3690562012-01-10 20:14:43 +09002755 if (lastInputMethodSubtypeId == NOT_A_SUBTYPE_ID) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002756 final InputMethodSubtype currentSubtype = getCurrentInputMethodSubtypeLocked();
satokc3690562012-01-10 20:14:43 +09002757 if (currentSubtype != null) {
2758 final InputMethodInfo currentImi = mMethodMap.get(mCurMethodId);
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002759 lastInputMethodSubtypeId = InputMethodUtils.getSubtypeIdFromHashCode(
2760 currentImi, currentSubtype.hashCode());
satokc3690562012-01-10 20:14:43 +09002761 }
2762 }
2763
Ken Wakasa761eb372011-03-04 19:06:18 +09002764 final int N = imList.size();
satokab751aa2010-09-14 19:17:36 +09002765 mIms = new InputMethodInfo[N];
2766 mSubtypeIds = new int[N];
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002767 int checkedItem = 0;
2768 for (int i = 0; i < N; ++i) {
Ken Wakasa05dbb652011-08-22 15:22:43 +09002769 final ImeSubtypeListItem item = imList.get(i);
2770 mIms[i] = item.mImi;
2771 mSubtypeIds[i] = item.mSubtypeId;
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002772 if (mIms[i].getId().equals(lastInputMethodId)) {
satokab751aa2010-09-14 19:17:36 +09002773 int subtypeId = mSubtypeIds[i];
2774 if ((subtypeId == NOT_A_SUBTYPE_ID)
2775 || (lastInputMethodSubtypeId == NOT_A_SUBTYPE_ID && subtypeId == 0)
2776 || (subtypeId == lastInputMethodSubtypeId)) {
2777 checkedItem = i;
2778 }
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002779 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002780 }
Ken Wakasa05dbb652011-08-22 15:22:43 +09002781 final TypedArray a = context.obtainStyledAttributes(null,
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002782 com.android.internal.R.styleable.DialogPreference,
2783 com.android.internal.R.attr.alertDialogStyle, 0);
2784 mDialogBuilder = new AlertDialog.Builder(context)
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002785 .setOnCancelListener(new OnCancelListener() {
satok42c5a162011-05-26 16:46:14 +09002786 @Override
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002787 public void onCancel(DialogInterface dialog) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002788 hideInputMethodMenu();
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002789 }
2790 })
2791 .setIcon(a.getDrawable(
2792 com.android.internal.R.styleable.DialogPreference_dialogTitle));
2793 a.recycle();
satok01038492012-04-09 21:08:27 +09002794 final LayoutInflater inflater =
2795 (LayoutInflater)mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
2796 final View tv = inflater.inflate(
2797 com.android.internal.R.layout.input_method_switch_dialog_title, null);
2798 mDialogBuilder.setCustomTitle(tv);
2799
2800 // Setup layout for a toggle switch of the hardware keyboard
2801 mSwitchingDialogTitleView = tv;
2802 mSwitchingDialogTitleView.findViewById(
2803 com.android.internal.R.id.hard_keyboard_section).setVisibility(
2804 mWindowManagerService.isHardKeyboardAvailable() ?
2805 View.VISIBLE : View.GONE);
2806 final Switch hardKeySwitch = ((Switch)mSwitchingDialogTitleView.findViewById(
2807 com.android.internal.R.id.hard_keyboard_switch));
2808 hardKeySwitch.setChecked(mWindowManagerService.isHardKeyboardEnabled());
2809 hardKeySwitch.setOnCheckedChangeListener(
2810 new OnCheckedChangeListener() {
2811 @Override
2812 public void onCheckedChanged(
2813 CompoundButton buttonView, boolean isChecked) {
2814 mWindowManagerService.setHardKeyboardEnabled(isChecked);
Satoshi Kataoka04dd24d2013-01-18 13:44:37 +09002815 // Ensure that the input method dialog is dismissed when changing
2816 // the hardware keyboard state.
2817 hideInputMethodMenu();
satok01038492012-04-09 21:08:27 +09002818 }
2819 });
satokd87c2592010-09-29 11:52:06 +09002820
Ken Wakasa05dbb652011-08-22 15:22:43 +09002821 final ImeSubtypeListAdapter adapter = new ImeSubtypeListAdapter(context,
2822 com.android.internal.R.layout.simple_list_item_2_single_choice, imList,
2823 checkedItem);
2824
2825 mDialogBuilder.setSingleChoiceItems(adapter, checkedItem,
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002826 new AlertDialog.OnClickListener() {
satok42c5a162011-05-26 16:46:14 +09002827 @Override
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002828 public void onClick(DialogInterface dialog, int which) {
2829 synchronized (mMethodMap) {
satokab751aa2010-09-14 19:17:36 +09002830 if (mIms == null || mIms.length <= which
2831 || mSubtypeIds == null || mSubtypeIds.length <= which) {
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002832 return;
2833 }
2834 InputMethodInfo im = mIms[which];
satokab751aa2010-09-14 19:17:36 +09002835 int subtypeId = mSubtypeIds[which];
Satoshi Kataokad2142962012-11-12 18:43:06 +09002836 adapter.mCheckedItem = which;
2837 adapter.notifyDataSetChanged();
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002838 hideInputMethodMenu();
2839 if (im != null) {
satokab751aa2010-09-14 19:17:36 +09002840 if ((subtypeId < 0)
Ken Wakasa586f0512011-01-20 22:31:01 +09002841 || (subtypeId >= im.getSubtypeCount())) {
satokab751aa2010-09-14 19:17:36 +09002842 subtypeId = NOT_A_SUBTYPE_ID;
2843 }
2844 setInputMethodLocked(im.getId(), subtypeId);
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002845 }
Dianne Hackborn20cb56e2010-03-04 00:58:29 -08002846 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002847 }
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002848 });
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002849
satokbc81b692011-08-26 16:22:22 +09002850 if (showSubtypes && !isScreenLocked) {
satok82beadf2010-12-27 19:03:06 +09002851 mDialogBuilder.setPositiveButton(
2852 com.android.internal.R.string.configure_input_methods,
satok7f35c8c2010-10-07 21:13:11 +09002853 new DialogInterface.OnClickListener() {
satok42c5a162011-05-26 16:46:14 +09002854 @Override
satok7f35c8c2010-10-07 21:13:11 +09002855 public void onClick(DialogInterface dialog, int whichButton) {
satok217f5482010-12-15 05:19:19 +09002856 showConfigureInputMethods();
satok7f35c8c2010-10-07 21:13:11 +09002857 }
2858 });
2859 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002860 mSwitchingDialog = mDialogBuilder.create();
Dianne Hackborne3a7f622011-03-03 21:48:24 -08002861 mSwitchingDialog.setCanceledOnTouchOutside(true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002862 mSwitchingDialog.getWindow().setType(
2863 WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG);
Satoshi Kataokac86884c2012-10-09 15:20:29 +09002864 mSwitchingDialog.getWindow().getAttributes().privateFlags |=
2865 WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS;
Dianne Hackborne3a7f622011-03-03 21:48:24 -08002866 mSwitchingDialog.getWindow().getAttributes().setTitle("Select input method");
Jason Monk807ef762014-05-08 15:47:46 -04002867 updateImeWindowStatusLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002868 mSwitchingDialog.show();
2869 }
2870 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002871
Ken Wakasa05dbb652011-08-22 15:22:43 +09002872 private static class ImeSubtypeListAdapter extends ArrayAdapter<ImeSubtypeListItem> {
2873 private final LayoutInflater mInflater;
2874 private final int mTextViewResourceId;
2875 private final List<ImeSubtypeListItem> mItemsList;
Satoshi Kataokad2142962012-11-12 18:43:06 +09002876 public int mCheckedItem;
Ken Wakasa05dbb652011-08-22 15:22:43 +09002877 public ImeSubtypeListAdapter(Context context, int textViewResourceId,
2878 List<ImeSubtypeListItem> itemsList, int checkedItem) {
2879 super(context, textViewResourceId, itemsList);
2880 mTextViewResourceId = textViewResourceId;
2881 mItemsList = itemsList;
2882 mCheckedItem = checkedItem;
2883 mInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
2884 }
2885
2886 @Override
2887 public View getView(int position, View convertView, ViewGroup parent) {
2888 final View view = convertView != null ? convertView
2889 : mInflater.inflate(mTextViewResourceId, null);
2890 if (position < 0 || position >= mItemsList.size()) return view;
2891 final ImeSubtypeListItem item = mItemsList.get(position);
2892 final CharSequence imeName = item.mImeName;
2893 final CharSequence subtypeName = item.mSubtypeName;
2894 final TextView firstTextView = (TextView)view.findViewById(android.R.id.text1);
2895 final TextView secondTextView = (TextView)view.findViewById(android.R.id.text2);
2896 if (TextUtils.isEmpty(subtypeName)) {
2897 firstTextView.setText(imeName);
2898 secondTextView.setVisibility(View.GONE);
2899 } else {
2900 firstTextView.setText(subtypeName);
2901 secondTextView.setText(imeName);
2902 secondTextView.setVisibility(View.VISIBLE);
2903 }
2904 final RadioButton radioButton =
2905 (RadioButton)view.findViewById(com.android.internal.R.id.radio);
2906 radioButton.setChecked(position == mCheckedItem);
2907 return view;
2908 }
2909 }
2910
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002911 void hideInputMethodMenu() {
The Android Open Source Project10592532009-03-18 17:39:46 -07002912 synchronized (mMethodMap) {
2913 hideInputMethodMenuLocked();
2914 }
2915 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002916
The Android Open Source Project10592532009-03-18 17:39:46 -07002917 void hideInputMethodMenuLocked() {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002918 if (DEBUG) Slog.v(TAG, "Hide switching menu");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002919
The Android Open Source Project10592532009-03-18 17:39:46 -07002920 if (mSwitchingDialog != null) {
2921 mSwitchingDialog.dismiss();
2922 mSwitchingDialog = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002923 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002924
Jason Monk807ef762014-05-08 15:47:46 -04002925 updateImeWindowStatusLocked();
The Android Open Source Project10592532009-03-18 17:39:46 -07002926 mDialogBuilder = null;
The Android Open Source Project10592532009-03-18 17:39:46 -07002927 mIms = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002928 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002929
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002930 // ----------------------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002931
satok42c5a162011-05-26 16:46:14 +09002932 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002933 public boolean setInputMethodEnabled(String id, boolean enabled) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002934 // TODO: Make this work even for non-current users?
2935 if (!calledFromValidUser()) {
2936 return false;
2937 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002938 synchronized (mMethodMap) {
2939 if (mContext.checkCallingOrSelfPermission(
2940 android.Manifest.permission.WRITE_SECURE_SETTINGS)
2941 != PackageManager.PERMISSION_GRANTED) {
2942 throw new SecurityException(
2943 "Requires permission "
2944 + android.Manifest.permission.WRITE_SECURE_SETTINGS);
2945 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002946
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002947 long ident = Binder.clearCallingIdentity();
2948 try {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002949 return setInputMethodEnabledLocked(id, enabled);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002950 } finally {
2951 Binder.restoreCallingIdentity(ident);
2952 }
2953 }
2954 }
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002955
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002956 boolean setInputMethodEnabledLocked(String id, boolean enabled) {
2957 // Make sure this is a valid input method.
2958 InputMethodInfo imm = mMethodMap.get(id);
2959 if (imm == null) {
satokd87c2592010-09-29 11:52:06 +09002960 throw new IllegalArgumentException("Unknown id: " + mCurMethodId);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002961 }
2962
satokd87c2592010-09-29 11:52:06 +09002963 List<Pair<String, ArrayList<String>>> enabledInputMethodsList = mSettings
2964 .getEnabledInputMethodsAndSubtypeListLocked();
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002965
satokd87c2592010-09-29 11:52:06 +09002966 if (enabled) {
2967 for (Pair<String, ArrayList<String>> pair: enabledInputMethodsList) {
2968 if (pair.first.equals(id)) {
2969 // We are enabling this input method, but it is already enabled.
2970 // Nothing to do. The previous state was enabled.
2971 return true;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002972 }
2973 }
satokd87c2592010-09-29 11:52:06 +09002974 mSettings.appendAndPutEnabledInputMethodLocked(id, false);
2975 // Previous state was disabled.
2976 return false;
2977 } else {
2978 StringBuilder builder = new StringBuilder();
2979 if (mSettings.buildAndPutEnabledInputMethodsStrRemovingIdLocked(
2980 builder, enabledInputMethodsList, id)) {
2981 // Disabled input method is currently selected, switch to another one.
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002982 final String selId = mSettings.getSelectedInputMethod();
satok03eb319a2010-11-11 18:17:42 +09002983 if (id.equals(selId) && !chooseNewDefaultIMELocked()) {
2984 Slog.i(TAG, "Can't find new IME, unsetting the current input method.");
2985 resetSelectedInputMethodAndSubtypeLocked("");
satokd87c2592010-09-29 11:52:06 +09002986 }
2987 // Previous state was enabled.
2988 return true;
2989 } else {
2990 // We are disabling the input method but it is already disabled.
2991 // Nothing to do. The previous state was disabled.
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002992 return false;
2993 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002994 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002995 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002996
satok723a27e2010-11-11 14:58:11 +09002997 private void setSelectedInputMethodAndSubtypeLocked(InputMethodInfo imi, int subtypeId,
2998 boolean setSubtypeOnly) {
2999 // Update the history of InputMethod and Subtype
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003000 mSettings.saveCurrentInputMethodAndSubtypeToHistory(mCurMethodId, mCurrentSubtype);
satok723a27e2010-11-11 14:58:11 +09003001
3002 // Set Subtype here
3003 if (imi == null || subtypeId < 0) {
3004 mSettings.putSelectedSubtype(NOT_A_SUBTYPE_ID);
Tadashi G. Takaoka0ba75bb2010-11-09 12:19:32 -08003005 mCurrentSubtype = null;
satok723a27e2010-11-11 14:58:11 +09003006 } else {
Ken Wakasa586f0512011-01-20 22:31:01 +09003007 if (subtypeId < imi.getSubtypeCount()) {
3008 InputMethodSubtype subtype = imi.getSubtypeAt(subtypeId);
3009 mSettings.putSelectedSubtype(subtype.hashCode());
3010 mCurrentSubtype = subtype;
satok723a27e2010-11-11 14:58:11 +09003011 } else {
3012 mSettings.putSelectedSubtype(NOT_A_SUBTYPE_ID);
satokd81e9502012-05-21 12:58:45 +09003013 // If the subtype is not specified, choose the most applicable one
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003014 mCurrentSubtype = getCurrentInputMethodSubtypeLocked();
satok723a27e2010-11-11 14:58:11 +09003015 }
satokab751aa2010-09-14 19:17:36 +09003016 }
satok723a27e2010-11-11 14:58:11 +09003017
satok4c0e7152012-06-20 20:08:44 +09003018 // Workaround.
3019 // ASEC is not ready in the IMMS constructor. Accordingly, forward-locked
3020 // IMEs are not recognized and considered uninstalled.
3021 // Actually, we can't move everything after SystemReady because
3022 // IMMS needs to run in the encryption lock screen. So, we just skip changing
3023 // the default IME here and try cheking the default IME again in systemReady().
3024 // TODO: Do nothing before system ready and implement a separated logic for
3025 // the encryption lock screen.
3026 // TODO: ASEC should be ready before IMMS is instantiated.
3027 if (mSystemReady && !setSubtypeOnly) {
satok723a27e2010-11-11 14:58:11 +09003028 // Set InputMethod here
3029 mSettings.putSelectedInputMethod(imi != null ? imi.getId() : "");
3030 }
3031 }
3032
3033 private void resetSelectedInputMethodAndSubtypeLocked(String newDefaultIme) {
3034 InputMethodInfo imi = mMethodMap.get(newDefaultIme);
3035 int lastSubtypeId = NOT_A_SUBTYPE_ID;
3036 // newDefaultIme is empty when there is no candidate for the selected IME.
3037 if (imi != null && !TextUtils.isEmpty(newDefaultIme)) {
3038 String subtypeHashCode = mSettings.getLastSubtypeForInputMethodLocked(newDefaultIme);
3039 if (subtypeHashCode != null) {
3040 try {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003041 lastSubtypeId = InputMethodUtils.getSubtypeIdFromHashCode(
satok723a27e2010-11-11 14:58:11 +09003042 imi, Integer.valueOf(subtypeHashCode));
3043 } catch (NumberFormatException e) {
3044 Slog.w(TAG, "HashCode for subtype looks broken: " + subtypeHashCode, e);
3045 }
3046 }
3047 }
3048 setSelectedInputMethodAndSubtypeLocked(imi, lastSubtypeId, false);
satokab751aa2010-09-14 19:17:36 +09003049 }
3050
satok4e4569d2010-11-19 18:45:53 +09003051 // If there are no selected shortcuts, tries finding the most applicable ones.
3052 private Pair<InputMethodInfo, InputMethodSubtype>
3053 findLastResortApplicableShortcutInputMethodAndSubtypeLocked(String mode) {
3054 List<InputMethodInfo> imis = mSettings.getEnabledInputMethodListLocked();
3055 InputMethodInfo mostApplicableIMI = null;
satokcd7cd292010-11-20 15:46:23 +09003056 InputMethodSubtype mostApplicableSubtype = null;
satok4e4569d2010-11-19 18:45:53 +09003057 boolean foundInSystemIME = false;
3058
3059 // Search applicable subtype for each InputMethodInfo
3060 for (InputMethodInfo imi: imis) {
satok7599a7f2010-12-22 13:45:23 +09003061 final String imiId = imi.getId();
3062 if (foundInSystemIME && !imiId.equals(mCurMethodId)) {
3063 continue;
3064 }
satokcd7cd292010-11-20 15:46:23 +09003065 InputMethodSubtype subtype = null;
satokdf31ae62011-01-15 06:19:44 +09003066 final List<InputMethodSubtype> enabledSubtypes =
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003067 mSettings.getEnabledInputMethodSubtypeListLocked(mContext, imi, true);
satokdf31ae62011-01-15 06:19:44 +09003068 // 1. Search by the current subtype's locale from enabledSubtypes.
satok4e4569d2010-11-19 18:45:53 +09003069 if (mCurrentSubtype != null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003070 subtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
satokdf31ae62011-01-15 06:19:44 +09003071 mRes, enabledSubtypes, mode, mCurrentSubtype.getLocale(), false);
satok4e4569d2010-11-19 18:45:53 +09003072 }
satokdf31ae62011-01-15 06:19:44 +09003073 // 2. Search by the system locale from enabledSubtypes.
3074 // 3. Search the first enabled subtype matched with mode from enabledSubtypes.
satokcd7cd292010-11-20 15:46:23 +09003075 if (subtype == null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003076 subtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
satokdf31ae62011-01-15 06:19:44 +09003077 mRes, enabledSubtypes, mode, null, true);
satok4e4569d2010-11-19 18:45:53 +09003078 }
satoka86f5e42011-09-02 17:12:42 +09003079 final ArrayList<InputMethodSubtype> overridingImplicitlyEnabledSubtypes =
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003080 InputMethodUtils.getOverridingImplicitlyEnabledSubtypes(imi, mode);
satoka86f5e42011-09-02 17:12:42 +09003081 final ArrayList<InputMethodSubtype> subtypesForSearch =
3082 overridingImplicitlyEnabledSubtypes.isEmpty()
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003083 ? InputMethodUtils.getSubtypes(imi)
3084 : overridingImplicitlyEnabledSubtypes;
satok7599a7f2010-12-22 13:45:23 +09003085 // 4. Search by the current subtype's locale from all subtypes.
3086 if (subtype == null && mCurrentSubtype != null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003087 subtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
satoka86f5e42011-09-02 17:12:42 +09003088 mRes, subtypesForSearch, mode, mCurrentSubtype.getLocale(), false);
satok7599a7f2010-12-22 13:45:23 +09003089 }
3090 // 5. Search by the system locale from all subtypes.
3091 // 6. Search the first enabled subtype matched with mode from all subtypes.
satokcd7cd292010-11-20 15:46:23 +09003092 if (subtype == null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003093 subtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
satoka86f5e42011-09-02 17:12:42 +09003094 mRes, subtypesForSearch, mode, null, true);
satok4e4569d2010-11-19 18:45:53 +09003095 }
satokcd7cd292010-11-20 15:46:23 +09003096 if (subtype != null) {
satok7599a7f2010-12-22 13:45:23 +09003097 if (imiId.equals(mCurMethodId)) {
satok4e4569d2010-11-19 18:45:53 +09003098 // The current input method is the most applicable IME.
3099 mostApplicableIMI = imi;
satokcd7cd292010-11-20 15:46:23 +09003100 mostApplicableSubtype = subtype;
satok4e4569d2010-11-19 18:45:53 +09003101 break;
satok7599a7f2010-12-22 13:45:23 +09003102 } else if (!foundInSystemIME) {
satok4e4569d2010-11-19 18:45:53 +09003103 // The system input method is 2nd applicable IME.
3104 mostApplicableIMI = imi;
satokcd7cd292010-11-20 15:46:23 +09003105 mostApplicableSubtype = subtype;
satok7599a7f2010-12-22 13:45:23 +09003106 if ((imi.getServiceInfo().applicationInfo.flags
3107 & ApplicationInfo.FLAG_SYSTEM) != 0) {
3108 foundInSystemIME = true;
3109 }
satok4e4569d2010-11-19 18:45:53 +09003110 }
3111 }
3112 }
3113 if (DEBUG) {
satokcd7cd292010-11-20 15:46:23 +09003114 if (mostApplicableIMI != null) {
3115 Slog.w(TAG, "Most applicable shortcut input method was:"
3116 + mostApplicableIMI.getId());
3117 if (mostApplicableSubtype != null) {
3118 Slog.w(TAG, "Most applicable shortcut input method subtype was:"
3119 + "," + mostApplicableSubtype.getMode() + ","
3120 + mostApplicableSubtype.getLocale());
3121 }
3122 }
satok4e4569d2010-11-19 18:45:53 +09003123 }
satokcd7cd292010-11-20 15:46:23 +09003124 if (mostApplicableIMI != null) {
satok4e4569d2010-11-19 18:45:53 +09003125 return new Pair<InputMethodInfo, InputMethodSubtype> (mostApplicableIMI,
satokcd7cd292010-11-20 15:46:23 +09003126 mostApplicableSubtype);
satok4e4569d2010-11-19 18:45:53 +09003127 } else {
3128 return null;
3129 }
3130 }
3131
satokab751aa2010-09-14 19:17:36 +09003132 /**
3133 * @return Return the current subtype of this input method.
3134 */
satok42c5a162011-05-26 16:46:14 +09003135 @Override
satokab751aa2010-09-14 19:17:36 +09003136 public InputMethodSubtype getCurrentInputMethodSubtype() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003137 // TODO: Make this work even for non-current users?
3138 if (!calledFromValidUser()) {
3139 return null;
3140 }
3141 synchronized (mMethodMap) {
3142 return getCurrentInputMethodSubtypeLocked();
3143 }
3144 }
3145
3146 private InputMethodSubtype getCurrentInputMethodSubtypeLocked() {
satokfdf419e2012-05-08 16:52:08 +09003147 if (mCurMethodId == null) {
3148 return null;
3149 }
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003150 final boolean subtypeIsSelected = mSettings.isSubtypeSelected();
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003151 final InputMethodInfo imi = mMethodMap.get(mCurMethodId);
3152 if (imi == null || imi.getSubtypeCount() == 0) {
3153 return null;
satok4e4569d2010-11-19 18:45:53 +09003154 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003155 if (!subtypeIsSelected || mCurrentSubtype == null
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003156 || !InputMethodUtils.isValidSubtypeId(imi, mCurrentSubtype.hashCode())) {
3157 int subtypeId = mSettings.getSelectedInputMethodSubtypeId(mCurMethodId);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003158 if (subtypeId == NOT_A_SUBTYPE_ID) {
3159 // If there are no selected subtypes, the framework will try to find
3160 // the most applicable subtype from explicitly or implicitly enabled
3161 // subtypes.
3162 List<InputMethodSubtype> explicitlyOrImplicitlyEnabledSubtypes =
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003163 mSettings.getEnabledInputMethodSubtypeListLocked(mContext, imi, true);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003164 // If there is only one explicitly or implicitly enabled subtype,
3165 // just returns it.
3166 if (explicitlyOrImplicitlyEnabledSubtypes.size() == 1) {
3167 mCurrentSubtype = explicitlyOrImplicitlyEnabledSubtypes.get(0);
3168 } else if (explicitlyOrImplicitlyEnabledSubtypes.size() > 1) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003169 mCurrentSubtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003170 mRes, explicitlyOrImplicitlyEnabledSubtypes,
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003171 InputMethodUtils.SUBTYPE_MODE_KEYBOARD, null, true);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003172 if (mCurrentSubtype == null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003173 mCurrentSubtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003174 mRes, explicitlyOrImplicitlyEnabledSubtypes, null, null,
3175 true);
satok4e4569d2010-11-19 18:45:53 +09003176 }
satok3ef8b292010-11-23 06:06:29 +09003177 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003178 } else {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003179 mCurrentSubtype = InputMethodUtils.getSubtypes(imi).get(subtypeId);
satok8fbb1e82010-11-02 23:15:58 +09003180 }
3181 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003182 return mCurrentSubtype;
satokab751aa2010-09-14 19:17:36 +09003183 }
3184
satokf3db1af2010-11-23 13:34:33 +09003185 private void addShortcutInputMethodAndSubtypes(InputMethodInfo imi,
3186 InputMethodSubtype subtype) {
3187 if (mShortcutInputMethodsAndSubtypes.containsKey(imi)) {
3188 mShortcutInputMethodsAndSubtypes.get(imi).add(subtype);
3189 } else {
3190 ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>();
3191 subtypes.add(subtype);
3192 mShortcutInputMethodsAndSubtypes.put(imi, subtypes);
3193 }
3194 }
3195
satok4e4569d2010-11-19 18:45:53 +09003196 // TODO: We should change the return type from List to List<Parcelable>
satokdbf29502011-08-25 15:28:23 +09003197 @SuppressWarnings("rawtypes")
satoke7c6998e2011-06-03 17:57:59 +09003198 @Override
satok4e4569d2010-11-19 18:45:53 +09003199 public List getShortcutInputMethodsAndSubtypes() {
3200 synchronized (mMethodMap) {
satok3da92232011-01-11 22:46:30 +09003201 ArrayList<Object> ret = new ArrayList<Object>();
satokf3db1af2010-11-23 13:34:33 +09003202 if (mShortcutInputMethodsAndSubtypes.size() == 0) {
satok4e4569d2010-11-19 18:45:53 +09003203 // If there are no selected shortcut subtypes, the framework will try to find
3204 // the most applicable subtype from all subtypes whose mode is
3205 // SUBTYPE_MODE_VOICE. This is an exceptional case, so we will hardcode the mode.
satokf3db1af2010-11-23 13:34:33 +09003206 Pair<InputMethodInfo, InputMethodSubtype> info =
3207 findLastResortApplicableShortcutInputMethodAndSubtypeLocked(
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003208 InputMethodUtils.SUBTYPE_MODE_VOICE);
satok7599a7f2010-12-22 13:45:23 +09003209 if (info != null) {
satok3da92232011-01-11 22:46:30 +09003210 ret.add(info.first);
3211 ret.add(info.second);
satok7599a7f2010-12-22 13:45:23 +09003212 }
satok3da92232011-01-11 22:46:30 +09003213 return ret;
satokf3db1af2010-11-23 13:34:33 +09003214 }
satokf3db1af2010-11-23 13:34:33 +09003215 for (InputMethodInfo imi: mShortcutInputMethodsAndSubtypes.keySet()) {
3216 ret.add(imi);
3217 for (InputMethodSubtype subtype: mShortcutInputMethodsAndSubtypes.get(imi)) {
3218 ret.add(subtype);
satok4e4569d2010-11-19 18:45:53 +09003219 }
3220 }
satokf3db1af2010-11-23 13:34:33 +09003221 return ret;
satok4e4569d2010-11-19 18:45:53 +09003222 }
3223 }
3224
satok42c5a162011-05-26 16:46:14 +09003225 @Override
satokb66d2872010-11-10 01:04:04 +09003226 public boolean setCurrentInputMethodSubtype(InputMethodSubtype subtype) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003227 // TODO: Make this work even for non-current users?
3228 if (!calledFromValidUser()) {
3229 return false;
3230 }
satokb66d2872010-11-10 01:04:04 +09003231 synchronized (mMethodMap) {
3232 if (subtype != null && mCurMethodId != null) {
3233 InputMethodInfo imi = mMethodMap.get(mCurMethodId);
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003234 int subtypeId = InputMethodUtils.getSubtypeIdFromHashCode(imi, subtype.hashCode());
satokb66d2872010-11-10 01:04:04 +09003235 if (subtypeId != NOT_A_SUBTYPE_ID) {
3236 setInputMethodLocked(mCurMethodId, subtypeId);
3237 return true;
3238 }
3239 }
3240 return false;
3241 }
3242 }
3243
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +09003244 // TODO: Cache the state for each user and reset when the cached user is removed.
satoke7c6998e2011-06-03 17:57:59 +09003245 private static class InputMethodFileManager {
3246 private static final String SYSTEM_PATH = "system";
3247 private static final String INPUT_METHOD_PATH = "inputmethod";
3248 private static final String ADDITIONAL_SUBTYPES_FILE_NAME = "subtypes.xml";
3249 private static final String NODE_SUBTYPES = "subtypes";
3250 private static final String NODE_SUBTYPE = "subtype";
3251 private static final String NODE_IMI = "imi";
3252 private static final String ATTR_ID = "id";
3253 private static final String ATTR_LABEL = "label";
3254 private static final String ATTR_ICON = "icon";
3255 private static final String ATTR_IME_SUBTYPE_LOCALE = "imeSubtypeLocale";
3256 private static final String ATTR_IME_SUBTYPE_MODE = "imeSubtypeMode";
3257 private static final String ATTR_IME_SUBTYPE_EXTRA_VALUE = "imeSubtypeExtraValue";
3258 private static final String ATTR_IS_AUXILIARY = "isAuxiliary";
3259 private final AtomicFile mAdditionalInputMethodSubtypeFile;
3260 private final HashMap<String, InputMethodInfo> mMethodMap;
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003261 private final HashMap<String, List<InputMethodSubtype>> mAdditionalSubtypesMap =
satoke7c6998e2011-06-03 17:57:59 +09003262 new HashMap<String, List<InputMethodSubtype>>();
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +09003263 public InputMethodFileManager(HashMap<String, InputMethodInfo> methodMap, int userId) {
satoke7c6998e2011-06-03 17:57:59 +09003264 if (methodMap == null) {
3265 throw new NullPointerException("methodMap is null");
3266 }
3267 mMethodMap = methodMap;
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +09003268 final File systemDir = userId == UserHandle.USER_OWNER
3269 ? new File(Environment.getDataDirectory(), SYSTEM_PATH)
3270 : Environment.getUserSystemDirectory(userId);
satoke7c6998e2011-06-03 17:57:59 +09003271 final File inputMethodDir = new File(systemDir, INPUT_METHOD_PATH);
3272 if (!inputMethodDir.mkdirs()) {
3273 Slog.w(TAG, "Couldn't create dir.: " + inputMethodDir.getAbsolutePath());
3274 }
3275 final File subtypeFile = new File(inputMethodDir, ADDITIONAL_SUBTYPES_FILE_NAME);
3276 mAdditionalInputMethodSubtypeFile = new AtomicFile(subtypeFile);
3277 if (!subtypeFile.exists()) {
3278 // If "subtypes.xml" doesn't exist, create a blank file.
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003279 writeAdditionalInputMethodSubtypes(
3280 mAdditionalSubtypesMap, mAdditionalInputMethodSubtypeFile, methodMap);
satoke7c6998e2011-06-03 17:57:59 +09003281 } else {
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003282 readAdditionalInputMethodSubtypes(
3283 mAdditionalSubtypesMap, mAdditionalInputMethodSubtypeFile);
satoke7c6998e2011-06-03 17:57:59 +09003284 }
3285 }
3286
3287 private void deleteAllInputMethodSubtypes(String imiId) {
3288 synchronized (mMethodMap) {
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003289 mAdditionalSubtypesMap.remove(imiId);
3290 writeAdditionalInputMethodSubtypes(
3291 mAdditionalSubtypesMap, mAdditionalInputMethodSubtypeFile, mMethodMap);
satoke7c6998e2011-06-03 17:57:59 +09003292 }
3293 }
3294
3295 public void addInputMethodSubtypes(
satok4a28bde2011-06-29 21:03:40 +09003296 InputMethodInfo imi, InputMethodSubtype[] additionalSubtypes) {
satoke7c6998e2011-06-03 17:57:59 +09003297 synchronized (mMethodMap) {
3298 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>();
3299 final int N = additionalSubtypes.length;
3300 for (int i = 0; i < N; ++i) {
3301 final InputMethodSubtype subtype = additionalSubtypes[i];
satoked2b24e2011-08-31 18:03:21 +09003302 if (!subtypes.contains(subtype)) {
satoke7c6998e2011-06-03 17:57:59 +09003303 subtypes.add(subtype);
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003304 } else {
3305 Slog.w(TAG, "Duplicated subtype definition found: "
3306 + subtype.getLocale() + ", " + subtype.getMode());
satoke7c6998e2011-06-03 17:57:59 +09003307 }
3308 }
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003309 mAdditionalSubtypesMap.put(imi.getId(), subtypes);
3310 writeAdditionalInputMethodSubtypes(
3311 mAdditionalSubtypesMap, mAdditionalInputMethodSubtypeFile, mMethodMap);
satoke7c6998e2011-06-03 17:57:59 +09003312 }
3313 }
3314
3315 public HashMap<String, List<InputMethodSubtype>> getAllAdditionalInputMethodSubtypes() {
3316 synchronized (mMethodMap) {
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003317 return mAdditionalSubtypesMap;
satoke7c6998e2011-06-03 17:57:59 +09003318 }
3319 }
3320
3321 private static void writeAdditionalInputMethodSubtypes(
3322 HashMap<String, List<InputMethodSubtype>> allSubtypes, AtomicFile subtypesFile,
3323 HashMap<String, InputMethodInfo> methodMap) {
3324 // Safety net for the case that this function is called before methodMap is set.
3325 final boolean isSetMethodMap = methodMap != null && methodMap.size() > 0;
3326 FileOutputStream fos = null;
3327 try {
3328 fos = subtypesFile.startWrite();
3329 final XmlSerializer out = new FastXmlSerializer();
3330 out.setOutput(fos, "utf-8");
3331 out.startDocument(null, true);
3332 out.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
3333 out.startTag(null, NODE_SUBTYPES);
3334 for (String imiId : allSubtypes.keySet()) {
3335 if (isSetMethodMap && !methodMap.containsKey(imiId)) {
3336 Slog.w(TAG, "IME uninstalled or not valid.: " + imiId);
3337 continue;
3338 }
3339 out.startTag(null, NODE_IMI);
3340 out.attribute(null, ATTR_ID, imiId);
3341 final List<InputMethodSubtype> subtypesList = allSubtypes.get(imiId);
3342 final int N = subtypesList.size();
3343 for (int i = 0; i < N; ++i) {
3344 final InputMethodSubtype subtype = subtypesList.get(i);
3345 out.startTag(null, NODE_SUBTYPE);
3346 out.attribute(null, ATTR_ICON, String.valueOf(subtype.getIconResId()));
3347 out.attribute(null, ATTR_LABEL, String.valueOf(subtype.getNameResId()));
3348 out.attribute(null, ATTR_IME_SUBTYPE_LOCALE, subtype.getLocale());
3349 out.attribute(null, ATTR_IME_SUBTYPE_MODE, subtype.getMode());
3350 out.attribute(null, ATTR_IME_SUBTYPE_EXTRA_VALUE, subtype.getExtraValue());
3351 out.attribute(null, ATTR_IS_AUXILIARY,
3352 String.valueOf(subtype.isAuxiliary() ? 1 : 0));
3353 out.endTag(null, NODE_SUBTYPE);
3354 }
3355 out.endTag(null, NODE_IMI);
3356 }
3357 out.endTag(null, NODE_SUBTYPES);
3358 out.endDocument();
3359 subtypesFile.finishWrite(fos);
3360 } catch (java.io.IOException e) {
3361 Slog.w(TAG, "Error writing subtypes", e);
3362 if (fos != null) {
3363 subtypesFile.failWrite(fos);
3364 }
3365 }
3366 }
3367
3368 private static void readAdditionalInputMethodSubtypes(
3369 HashMap<String, List<InputMethodSubtype>> allSubtypes, AtomicFile subtypesFile) {
3370 if (allSubtypes == null || subtypesFile == null) return;
3371 allSubtypes.clear();
3372 FileInputStream fis = null;
3373 try {
3374 fis = subtypesFile.openRead();
3375 final XmlPullParser parser = Xml.newPullParser();
3376 parser.setInput(fis, null);
3377 int type = parser.getEventType();
3378 // Skip parsing until START_TAG
3379 while ((type = parser.next()) != XmlPullParser.START_TAG
3380 && type != XmlPullParser.END_DOCUMENT) {}
3381 String firstNodeName = parser.getName();
3382 if (!NODE_SUBTYPES.equals(firstNodeName)) {
3383 throw new XmlPullParserException("Xml doesn't start with subtypes");
3384 }
3385 final int depth =parser.getDepth();
3386 String currentImiId = null;
3387 ArrayList<InputMethodSubtype> tempSubtypesArray = null;
3388 while (((type = parser.next()) != XmlPullParser.END_TAG
3389 || parser.getDepth() > depth) && type != XmlPullParser.END_DOCUMENT) {
3390 if (type != XmlPullParser.START_TAG)
3391 continue;
3392 final String nodeName = parser.getName();
3393 if (NODE_IMI.equals(nodeName)) {
3394 currentImiId = parser.getAttributeValue(null, ATTR_ID);
3395 if (TextUtils.isEmpty(currentImiId)) {
3396 Slog.w(TAG, "Invalid imi id found in subtypes.xml");
3397 continue;
3398 }
3399 tempSubtypesArray = new ArrayList<InputMethodSubtype>();
3400 allSubtypes.put(currentImiId, tempSubtypesArray);
3401 } else if (NODE_SUBTYPE.equals(nodeName)) {
3402 if (TextUtils.isEmpty(currentImiId) || tempSubtypesArray == null) {
3403 Slog.w(TAG, "IME uninstalled or not valid.: " + currentImiId);
3404 continue;
3405 }
3406 final int icon = Integer.valueOf(
3407 parser.getAttributeValue(null, ATTR_ICON));
3408 final int label = Integer.valueOf(
3409 parser.getAttributeValue(null, ATTR_LABEL));
3410 final String imeSubtypeLocale =
3411 parser.getAttributeValue(null, ATTR_IME_SUBTYPE_LOCALE);
3412 final String imeSubtypeMode =
3413 parser.getAttributeValue(null, ATTR_IME_SUBTYPE_MODE);
3414 final String imeSubtypeExtraValue =
3415 parser.getAttributeValue(null, ATTR_IME_SUBTYPE_EXTRA_VALUE);
satok4a28bde2011-06-29 21:03:40 +09003416 final boolean isAuxiliary = "1".equals(String.valueOf(
3417 parser.getAttributeValue(null, ATTR_IS_AUXILIARY)));
satoke7c6998e2011-06-03 17:57:59 +09003418 final InputMethodSubtype subtype =
3419 new InputMethodSubtype(label, icon, imeSubtypeLocale,
3420 imeSubtypeMode, imeSubtypeExtraValue, isAuxiliary);
3421 tempSubtypesArray.add(subtype);
3422 }
3423 }
3424 } catch (XmlPullParserException e) {
3425 Slog.w(TAG, "Error reading subtypes: " + e);
3426 return;
3427 } catch (java.io.IOException e) {
3428 Slog.w(TAG, "Error reading subtypes: " + e);
3429 return;
3430 } catch (NumberFormatException e) {
3431 Slog.w(TAG, "Error reading subtypes: " + e);
3432 return;
3433 } finally {
3434 if (fis != null) {
3435 try {
3436 fis.close();
3437 } catch (java.io.IOException e1) {
3438 Slog.w(TAG, "Failed to close.");
3439 }
3440 }
3441 }
3442 }
3443 }
3444
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003445 @Override
3446 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
3447 if (mContext.checkCallingOrSelfPermission(android.Manifest.permission.DUMP)
3448 != PackageManager.PERMISSION_GRANTED) {
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003449
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003450 pw.println("Permission Denial: can't dump InputMethodManager from from pid="
3451 + Binder.getCallingPid()
3452 + ", uid=" + Binder.getCallingUid());
3453 return;
3454 }
3455
3456 IInputMethod method;
3457 ClientState client;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003458
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003459 final Printer p = new PrintWriterPrinter(pw);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003460
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003461 synchronized (mMethodMap) {
3462 p.println("Current Input Method Manager state:");
3463 int N = mMethodList.size();
3464 p.println(" Input Methods:");
3465 for (int i=0; i<N; i++) {
3466 InputMethodInfo info = mMethodList.get(i);
3467 p.println(" InputMethod #" + i + ":");
3468 info.dump(p, " ");
3469 }
3470 p.println(" Clients:");
3471 for (ClientState ci : mClients.values()) {
3472 p.println(" Client " + ci + ":");
3473 p.println(" client=" + ci.client);
3474 p.println(" inputContext=" + ci.inputContext);
3475 p.println(" sessionRequested=" + ci.sessionRequested);
3476 p.println(" curSession=" + ci.curSession);
3477 }
The Android Open Source Project10592532009-03-18 17:39:46 -07003478 p.println(" mCurMethodId=" + mCurMethodId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003479 client = mCurClient;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07003480 p.println(" mCurClient=" + client + " mCurSeq=" + mCurSeq);
3481 p.println(" mCurFocusedWindow=" + mCurFocusedWindow);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003482 p.println(" mCurId=" + mCurId + " mHaveConnect=" + mHaveConnection
3483 + " mBoundToMethod=" + mBoundToMethod);
3484 p.println(" mCurToken=" + mCurToken);
3485 p.println(" mCurIntent=" + mCurIntent);
3486 method = mCurMethod;
3487 p.println(" mCurMethod=" + mCurMethod);
3488 p.println(" mEnabledSession=" + mEnabledSession);
3489 p.println(" mShowRequested=" + mShowRequested
3490 + " mShowExplicitlyRequested=" + mShowExplicitlyRequested
3491 + " mShowForced=" + mShowForced
3492 + " mInputShown=" + mInputShown);
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07003493 p.println(" mSystemReady=" + mSystemReady + " mInteractive=" + mScreenOn);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003494 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003495
Jeff Brownb88102f2010-09-08 11:49:43 -07003496 p.println(" ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003497 if (client != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003498 pw.flush();
3499 try {
3500 client.client.asBinder().dump(fd, args);
3501 } catch (RemoteException e) {
3502 p.println("Input method client dead: " + e);
3503 }
Jeff Brownb88102f2010-09-08 11:49:43 -07003504 } else {
3505 p.println("No input method client.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003506 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003507
Jeff Brownb88102f2010-09-08 11:49:43 -07003508 p.println(" ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003509 if (method != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003510 pw.flush();
3511 try {
3512 method.asBinder().dump(fd, args);
3513 } catch (RemoteException e) {
3514 p.println("Input method service dead: " + e);
3515 }
Jeff Brownb88102f2010-09-08 11:49:43 -07003516 } else {
3517 p.println("No input method service.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003518 }
3519 }
3520}