blob: d1de7e57ef45e4f74436d549cb41cfc65437dbe1 [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;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080028import com.android.internal.view.IInputMethodClient;
29import com.android.internal.view.IInputMethodManager;
30import com.android.internal.view.IInputMethodSession;
Yohei Yukawa6ab1a822015-08-25 14:01:28 -070031import com.android.internal.view.IInputSessionCallback;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080032import com.android.internal.view.InputBindResult;
Yohei Yukawa33e81792015-11-17 21:14:42 -080033import com.android.internal.view.InputMethodClient;
Adam Lesinskief2ea1f2013-12-05 16:48:06 -080034import com.android.server.statusbar.StatusBarManagerService;
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
Yohei Yukawa6ab1a822015-08-25 14:01:28 -070040import android.annotation.NonNull;
Yohei Yukawae13a20fa2015-09-30 19:11:32 -070041import android.annotation.Nullable;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080042import android.app.ActivityManagerNative;
43import android.app.AlertDialog;
Yohei Yukawa6ab1a822015-08-25 14:01:28 -070044import android.app.AppGlobals;
Yohei Yukawae63b5fa2014-09-19 13:14:55 +090045import android.app.AppOpsManager;
satokf90a33e2011-07-19 11:55:52 +090046import android.app.KeyguardManager;
satok7cfc0ed2011-06-20 21:29:36 +090047import android.app.Notification;
48import android.app.NotificationManager;
Dianne Hackborndd9b82c2009-09-03 00:18:47 -070049import android.app.PendingIntent;
Fyodor Kupolov6005b3f2015-11-23 17:41:50 -080050import android.app.SynchronousUserSwitchObserver;
satok5b927c432012-05-01 20:09:34 +090051import android.content.BroadcastReceiver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080052import android.content.ComponentName;
53import android.content.ContentResolver;
54import android.content.Context;
55import android.content.DialogInterface;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080056import android.content.DialogInterface.OnCancelListener;
Tadashi G. Takaokad130b802014-08-01 14:05:47 +090057import android.content.DialogInterface.OnClickListener;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080058import android.content.Intent;
satoke7c6998e2011-06-03 17:57:59 +090059import android.content.IntentFilter;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080060import android.content.ServiceConnection;
Brandon Ballinger6da35a02009-10-21 00:38:13 -070061import android.content.pm.ApplicationInfo;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +090062import android.content.pm.IPackageManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080063import android.content.pm.PackageManager;
64import android.content.pm.ResolveInfo;
65import android.content.pm.ServiceInfo;
Amith Yamasani734983f2014-03-04 16:48:05 -080066import android.content.pm.UserInfo;
Amith Yamasanie861ec12010-03-24 21:39:27 -070067import android.content.res.Configuration;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080068import android.content.res.Resources;
69import android.content.res.TypedArray;
70import android.database.ContentObserver;
Alan Viverette505e3ab2014-11-24 15:22:11 -080071import android.graphics.drawable.Drawable;
Yohei Yukawab097b822015-12-01 10:43:08 -080072import android.hardware.input.InputManagerInternal;
Joe Onorato857fd9b2011-01-27 15:08:35 -080073import android.inputmethodservice.InputMethodService;
Michael Wright7b5a96b2014-08-09 19:28:42 -070074import android.net.Uri;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080075import android.os.Binder;
Chris Wren1ce4b6d2015-06-11 10:19:43 -040076import android.os.Bundle;
Seigo Nonakae27dc2b2015-08-14 18:21:27 -070077import android.os.Debug;
satoke7c6998e2011-06-03 17:57:59 +090078import android.os.Environment;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080079import android.os.Handler;
80import android.os.IBinder;
81import android.os.IInterface;
82import android.os.Message;
83import android.os.Parcel;
Yohei Yukawa6ab1a822015-08-25 14:01:28 -070084import android.os.Process;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080085import android.os.RemoteException;
The Android Open Source Project4df24232009-03-05 14:34:35 -080086import android.os.ResultReceiver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080087import android.os.ServiceManager;
88import android.os.SystemClock;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +090089import android.os.UserHandle;
Amith Yamasani734983f2014-03-04 16:48:05 -080090import android.os.UserManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080091import android.provider.Settings;
92import android.text.TextUtils;
satokf9f01002011-05-19 21:31:50 +090093import android.text.style.SuggestionSpan;
Christopher Tate7b9a28c2015-03-18 13:06:16 -070094import android.util.ArrayMap;
95import android.util.ArraySet;
Dianne Hackborn39606a02012-07-31 17:54:35 -070096import android.util.AtomicFile;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080097import android.util.EventLog;
satokf9f01002011-05-19 21:31:50 +090098import android.util.LruCache;
satokab751aa2010-09-14 19:17:36 +090099import android.util.Pair;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800100import android.util.PrintWriterPrinter;
101import android.util.Printer;
satoke7c6998e2011-06-03 17:57:59 +0900102import android.util.Slog;
103import android.util.Xml;
Tadashi G. Takaokad130b802014-08-01 14:05:47 +0900104import android.view.ContextThemeWrapper;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800105import android.view.IWindowManager;
Jeff Brownc28867a2013-03-26 15:42:39 -0700106import android.view.InputChannel;
Ken Wakasa05dbb652011-08-22 15:22:43 +0900107import android.view.LayoutInflater;
108import android.view.View;
109import android.view.ViewGroup;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800110import android.view.WindowManager;
Seigo Nonaka7309b122015-08-17 18:34:13 -0700111import android.view.WindowManagerInternal;
satokab751aa2010-09-14 19:17:36 +0900112import android.view.inputmethod.EditorInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800113import android.view.inputmethod.InputBinding;
114import android.view.inputmethod.InputMethod;
115import android.view.inputmethod.InputMethodInfo;
116import android.view.inputmethod.InputMethodManager;
Yohei Yukawafa6e0a82015-07-23 15:08:59 -0700117import android.view.inputmethod.InputMethodManagerInternal;
satokab751aa2010-09-14 19:17:36 +0900118import android.view.inputmethod.InputMethodSubtype;
Yohei Yukawa443c2ba2014-09-10 14:10:30 +0900119import android.view.inputmethod.InputMethodSubtype.InputMethodSubtypeBuilder;
Ken Wakasa05dbb652011-08-22 15:22:43 +0900120import android.widget.ArrayAdapter;
satok01038492012-04-09 21:08:27 +0900121import android.widget.CompoundButton;
122import android.widget.CompoundButton.OnCheckedChangeListener;
Ken Wakasa05dbb652011-08-22 15:22:43 +0900123import android.widget.RadioButton;
satok01038492012-04-09 21:08:27 +0900124import android.widget.Switch;
Ken Wakasa05dbb652011-08-22 15:22:43 +0900125import android.widget.TextView;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800126
satoke7c6998e2011-06-03 17:57:59 +0900127import java.io.File;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800128import java.io.FileDescriptor;
satoke7c6998e2011-06-03 17:57:59 +0900129import java.io.FileInputStream;
130import java.io.FileOutputStream;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800131import java.io.IOException;
132import java.io.PrintWriter;
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +0100133import java.nio.charset.StandardCharsets;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800134import java.util.ArrayList;
satok688bd472012-02-09 20:09:17 +0900135import java.util.Collections;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800136import java.util.HashMap;
137import java.util.List;
satok5b927c432012-05-01 20:09:34 +0900138import java.util.Locale;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800139
140/**
141 * This class provides a system service that manages input methods.
142 */
143public class InputMethodManagerService extends IInputMethodManager.Stub
144 implements ServiceConnection, Handler.Callback {
145 static final boolean DEBUG = false;
Christopher Tate7b9a28c2015-03-18 13:06:16 -0700146 static final boolean DEBUG_RESTORE = DEBUG || false;
Jeff Brown6ec6f792012-04-17 16:52:41 -0700147 static final String TAG = "InputMethodManagerService";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800148
Seigo Nonakad4474cb2015-05-04 16:53:24 -0700149 static final int MSG_SHOW_IM_SUBTYPE_PICKER = 1;
150 static final int MSG_SHOW_IM_SUBTYPE_ENABLER = 2;
151 static final int MSG_SHOW_IM_CONFIG = 3;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800152
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800153 static final int MSG_UNBIND_INPUT = 1000;
154 static final int MSG_BIND_INPUT = 1010;
155 static final int MSG_SHOW_SOFT_INPUT = 1020;
156 static final int MSG_HIDE_SOFT_INPUT = 1030;
157 static final int MSG_ATTACH_TOKEN = 1040;
158 static final int MSG_CREATE_SESSION = 1050;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800159
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800160 static final int MSG_START_INPUT = 2000;
161 static final int MSG_RESTART_INPUT = 2010;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800162
Yohei Yukawa33e81792015-11-17 21:14:42 -0800163 static final int MSG_UNBIND_CLIENT = 3000;
164 static final int MSG_BIND_CLIENT = 3010;
Dianne Hackborna6e41342012-05-22 16:30:34 -0700165 static final int MSG_SET_ACTIVE = 3020;
Yohei Yukawafa6e0a82015-07-23 15:08:59 -0700166 static final int MSG_SET_INTERACTIVE = 3030;
Yohei Yukawa3d1e8122014-06-06 19:12:47 +0900167 static final int MSG_SET_USER_ACTION_NOTIFICATION_SEQUENCE_NUMBER = 3040;
Yohei Yukawaae61f712015-12-09 13:00:10 -0800168 static final int MSG_SWITCH_IME = 3050;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800169
satok01038492012-04-09 21:08:27 +0900170 static final int MSG_HARD_KEYBOARD_SWITCH_CHANGED = 4000;
171
Satoshi Kataokabcacc322013-10-21 17:57:27 -0700172 static final long TIME_TO_RECONNECT = 3 * 1000;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800173
satokf9f01002011-05-19 21:31:50 +0900174 static final int SECURE_SUGGESTION_SPANS_MAX_SIZE = 20;
175
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +0900176 private static final int NOT_A_SUBTYPE_ID = InputMethodUtils.NOT_A_SUBTYPE_ID;
satokb6359412011-06-28 17:47:41 +0900177 private static final String TAG_TRY_SUPPRESSING_IME_SWITCHER = "TrySuppressingImeSwitcher";
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +0900178
satok4e4569d2010-11-19 18:45:53 +0900179
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800180 final Context mContext;
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -0800181 final Resources mRes;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800182 final Handler mHandler;
satokd87c2592010-09-29 11:52:06 +0900183 final InputMethodSettings mSettings;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800184 final SettingsObserver mSettingsObserver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800185 final IWindowManager mIWindowManager;
Seigo Nonaka7309b122015-08-17 18:34:13 -0700186 final WindowManagerInternal mWindowManagerInternal;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800187 final HandlerCaller mCaller;
Dianne Hackborn119bbc32013-03-22 17:27:25 -0700188 final boolean mHasFeature;
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +0900189 private InputMethodFileManager mFileManager;
satok01038492012-04-09 21:08:27 +0900190 private final HardKeyboardListener mHardKeyboardListener;
Yohei Yukawae63b5fa2014-09-19 13:14:55 +0900191 private final AppOpsManager mAppOpsManager;
Yohei Yukawaed4952a2016-02-17 07:57:25 -0800192 private final UserManager mUserManager;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800193
Yohei Yukawa3d1e8122014-06-06 19:12:47 +0900194 final InputBindResult mNoBinding = new InputBindResult(null, null, null, -1, -1);
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800195
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800196 // All known input methods. mMethodMap also serves as the global
197 // lock for this class.
Yohei Yukawab0377bb2015-08-10 21:06:30 -0700198 final ArrayList<InputMethodInfo> mMethodList = new ArrayList<>();
199 final HashMap<String, InputMethodInfo> mMethodMap = new HashMap<>();
satokf9f01002011-05-19 21:31:50 +0900200 private final LruCache<SuggestionSpan, InputMethodInfo> mSecureSuggestionSpans =
Yohei Yukawab0377bb2015-08-10 21:06:30 -0700201 new LruCache<>(SECURE_SUGGESTION_SPANS_MAX_SIZE);
Satoshi Kataokad787f692013-10-26 04:44:21 +0900202 private final InputMethodSubtypeSwitchingController mSwitchingController;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800203
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700204 // Used to bring IME service up to visible adjustment while it is being shown.
205 final ServiceConnection mVisibleConnection = new ServiceConnection() {
206 @Override public void onServiceConnected(ComponentName name, IBinder service) {
207 }
208
209 @Override public void onServiceDisconnected(ComponentName name) {
210 }
211 };
212 boolean mVisibleBound = false;
213
satok7cfc0ed2011-06-20 21:29:36 +0900214 // Ongoing notification
Dianne Hackborn661cd522011-08-22 00:26:20 -0700215 private NotificationManager mNotificationManager;
216 private KeyguardManager mKeyguardManager;
217 private StatusBarManagerService mStatusBar;
Chris Wren1ce4b6d2015-06-11 10:19:43 -0400218 private Notification.Builder mImeSwitcherNotification;
Dianne Hackborn661cd522011-08-22 00:26:20 -0700219 private PendingIntent mImeSwitchPendingIntent;
satokb858c732011-07-22 19:54:34 +0900220 private boolean mShowOngoingImeSwitcherForPhones;
satok7cfc0ed2011-06-20 21:29:36 +0900221 private boolean mNotificationShown;
satok0a1bcf42012-05-16 19:26:31 +0900222 private final boolean mImeSelectedOnBoot;
satok7cfc0ed2011-06-20 21:29:36 +0900223
Tadashi G. Takaoka8c6d4772014-08-05 15:29:17 +0900224 static class SessionState {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800225 final ClientState client;
226 final IInputMethod method;
Jeff Brownc28867a2013-03-26 15:42:39 -0700227
228 IInputMethodSession session;
229 InputChannel channel;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800230
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800231 @Override
232 public String toString() {
233 return "SessionState{uid " + client.uid + " pid " + client.pid
234 + " method " + Integer.toHexString(
235 System.identityHashCode(method))
236 + " session " + Integer.toHexString(
237 System.identityHashCode(session))
Jeff Brownc28867a2013-03-26 15:42:39 -0700238 + " channel " + channel
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800239 + "}";
240 }
241
242 SessionState(ClientState _client, IInputMethod _method,
Jeff Brownc28867a2013-03-26 15:42:39 -0700243 IInputMethodSession _session, InputChannel _channel) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800244 client = _client;
245 method = _method;
246 session = _session;
Jeff Brownc28867a2013-03-26 15:42:39 -0700247 channel = _channel;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800248 }
249 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800250
Jeff Brownc28867a2013-03-26 15:42:39 -0700251 static final class ClientState {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800252 final IInputMethodClient client;
253 final IInputContext inputContext;
254 final int uid;
255 final int pid;
256 final InputBinding binding;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800257
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800258 boolean sessionRequested;
259 SessionState curSession;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800260
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800261 @Override
262 public String toString() {
263 return "ClientState{" + Integer.toHexString(
264 System.identityHashCode(this)) + " uid " + uid
265 + " pid " + pid + "}";
266 }
267
268 ClientState(IInputMethodClient _client, IInputContext _inputContext,
269 int _uid, int _pid) {
270 client = _client;
271 inputContext = _inputContext;
272 uid = _uid;
273 pid = _pid;
274 binding = new InputBinding(null, inputContext.asBinder(), uid, pid);
275 }
276 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800277
Yohei Yukawab0377bb2015-08-10 21:06:30 -0700278 final HashMap<IBinder, ClientState> mClients = new HashMap<>();
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800279
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800280 /**
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700281 * Set once the system is ready to run third party code.
282 */
283 boolean mSystemReady;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800284
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700285 /**
Yohei Yukawae13a20fa2015-09-30 19:11:32 -0700286 * Id obtained with {@link InputMethodInfo#getId()} for the currently selected input method.
287 * method. This is to be synchronized with the secure settings keyed with
288 * {@link Settings.Secure#DEFAULT_INPUT_METHOD}.
289 *
290 * <p>This can be transiently {@code null} when the system is re-initializing input method
291 * settings, e.g., the system locale is just changed.</p>
292 *
293 * <p>Note that {@link #mCurId} is used to track which IME is being connected to
294 * {@link InputMethodManagerService}.</p>
295 *
296 * @see #mCurId
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800297 */
Yohei Yukawae13a20fa2015-09-30 19:11:32 -0700298 @Nullable
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800299 String mCurMethodId;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800300
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800301 /**
302 * The current binding sequence number, incremented every time there is
303 * a new bind performed.
304 */
305 int mCurSeq;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800306
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800307 /**
308 * The client that is currently bound to an input method.
309 */
310 ClientState mCurClient;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800311
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800312 /**
Yohei Yukawae39d4ed2015-11-19 03:38:49 -0800313 * The last window token that we confirmed to be focused. This is always updated upon reports
314 * from the input method client. If the window state is already changed before the report is
315 * handled, this field just keeps the last value.
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700316 */
317 IBinder mCurFocusedWindow;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800318
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700319 /**
Yohei Yukawae39d4ed2015-11-19 03:38:49 -0800320 * The client by which {@link #mCurFocusedWindow} was reported. Used only for debugging.
321 */
322 ClientState mCurFocusedWindowClient;
323
324 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800325 * The input context last provided by the current client.
326 */
327 IInputContext mCurInputContext;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800328
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800329 /**
330 * The attributes last provided by the current client.
331 */
332 EditorInfo mCurAttribute;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800333
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800334 /**
Yohei Yukawae13a20fa2015-09-30 19:11:32 -0700335 * Id obtained with {@link InputMethodInfo#getId()} for the input method that we are currently
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800336 * connected to or in the process of connecting to.
Yohei Yukawae13a20fa2015-09-30 19:11:32 -0700337 *
338 * <p>This can be {@code null} when no input method is connected.</p>
339 *
340 * @see #mCurMethodId
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800341 */
Yohei Yukawae13a20fa2015-09-30 19:11:32 -0700342 @Nullable
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800343 String mCurId;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800344
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800345 /**
satokab751aa2010-09-14 19:17:36 +0900346 * The current subtype of the current input method.
347 */
348 private InputMethodSubtype mCurrentSubtype;
349
satok4e4569d2010-11-19 18:45:53 +0900350 // This list contains the pairs of InputMethodInfo and InputMethodSubtype.
satokf3db1af2010-11-23 13:34:33 +0900351 private final HashMap<InputMethodInfo, ArrayList<InputMethodSubtype>>
Yohei Yukawab0377bb2015-08-10 21:06:30 -0700352 mShortcutInputMethodsAndSubtypes = new HashMap<>();
satokab751aa2010-09-14 19:17:36 +0900353
John Spurlocke0980502013-10-25 11:59:29 -0400354 // Was the keyguard locked when this client became current?
355 private boolean mCurClientInKeyguard;
356
satokab751aa2010-09-14 19:17:36 +0900357 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800358 * Set to true if our ServiceConnection is currently actively bound to
359 * a service (whether or not we have gotten its IBinder back yet).
360 */
361 boolean mHaveConnection;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800362
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800363 /**
364 * Set if the client has asked for the input method to be shown.
365 */
366 boolean mShowRequested;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800367
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800368 /**
369 * Set if we were explicitly told to show the input method.
370 */
371 boolean mShowExplicitlyRequested;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800372
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800373 /**
374 * Set if we were forced to be shown.
375 */
376 boolean mShowForced;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800377
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800378 /**
379 * Set if we last told the input method to show itself.
380 */
381 boolean mInputShown;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800382
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800383 /**
384 * The Intent used to connect to the current input method.
385 */
386 Intent mCurIntent;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800387
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800388 /**
389 * The token we have made for the currently active input method, to
390 * identify it in the future.
391 */
392 IBinder mCurToken;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800393
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800394 /**
395 * If non-null, this is the input method service we are currently connected
396 * to.
397 */
398 IInputMethod mCurMethod;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800399
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800400 /**
401 * Time that we last initiated a bind to the input method, to determine
402 * if we should try to disconnect and reconnect to it.
403 */
404 long mLastBindTime;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800405
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800406 /**
407 * Have we called mCurMethod.bindInput()?
408 */
409 boolean mBoundToMethod;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800410
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800411 /**
412 * Currently enabled session. Only touched by service thread, not
413 * protected by a lock.
414 */
415 SessionState mEnabledSession;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800416
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800417 /**
Yohei Yukawafa6e0a82015-07-23 15:08:59 -0700418 * True if the device is currently interactive with user. The value is true initially.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800419 */
Yohei Yukawafa6e0a82015-07-23 15:08:59 -0700420 boolean mIsInteractive = true;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800421
Yohei Yukawa3d1e8122014-06-06 19:12:47 +0900422 int mCurUserActionNotificationSequenceNumber = 0;
423
Joe Onorato857fd9b2011-01-27 15:08:35 -0800424 int mBackDisposition = InputMethodService.BACK_DISPOSITION_DEFAULT;
Seigo Nonakad9eb9112015-05-26 20:54:43 +0900425
426 /**
427 * A set of status bits regarding the active IME.
428 *
429 * <p>This value is a combination of following two bits:</p>
430 * <dl>
431 * <dt>{@link InputMethodService#IME_ACTIVE}</dt>
432 * <dd>
433 * If this bit is ON, connected IME is ready to accept touch/key events.
434 * </dd>
435 * <dt>{@link InputMethodService#IME_VISIBLE}</dt>
436 * <dd>
437 * If this bit is ON, some of IME view, e.g. software input, candidate view, is visible.
438 * </dd>
439 * </dl>
440 * <em>Do not update this value outside of setImeWindowStatus.</em>
441 */
Joe Onorato857fd9b2011-01-27 15:08:35 -0800442 int mImeWindowVis;
443
Ken Wakasa05dbb652011-08-22 15:22:43 +0900444 private AlertDialog.Builder mDialogBuilder;
445 private AlertDialog mSwitchingDialog;
satok01038492012-04-09 21:08:27 +0900446 private View mSwitchingDialogTitleView;
Ken Wakasa05dbb652011-08-22 15:22:43 +0900447 private InputMethodInfo[] mIms;
448 private int[] mSubtypeIds;
satok5b927c432012-05-01 20:09:34 +0900449 private Locale mLastSystemLocale;
Michael Wright7b5a96b2014-08-09 19:28:42 -0700450 private boolean mShowImeWithHardKeyboard;
Anna Galusza9b278112016-01-04 11:37:37 -0800451 private boolean mAccessibilityRequestingNoSoftKeyboard;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900452 private final MyPackageMonitor mMyPackageMonitor = new MyPackageMonitor();
453 private final IPackageManager mIPackageManager;
Jason Monk3e189872016-01-12 09:10:34 -0500454 private final String mSlotIme;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800455
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800456 class SettingsObserver extends ContentObserver {
Yohei Yukawa81482972015-06-04 00:58:59 -0700457 int mUserId;
458 boolean mRegistered = false;
Dianne Hackbornfd7aded2013-01-22 17:10:23 -0800459 String mLastEnabled = "";
460
Yohei Yukawa81482972015-06-04 00:58:59 -0700461 /**
462 * <em>This constructor must be called within the lock.</em>
463 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800464 SettingsObserver(Handler handler) {
465 super(handler);
Yohei Yukawa81482972015-06-04 00:58:59 -0700466 }
467
468 public void registerContentObserverLocked(int userId) {
469 if (mRegistered && mUserId == userId) {
470 return;
471 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800472 ContentResolver resolver = mContext.getContentResolver();
Yohei Yukawa81482972015-06-04 00:58:59 -0700473 if (mRegistered) {
474 mContext.getContentResolver().unregisterContentObserver(this);
475 mRegistered = false;
476 }
477 if (mUserId != userId) {
478 mLastEnabled = "";
479 mUserId = userId;
480 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800481 resolver.registerContentObserver(Settings.Secure.getUriFor(
Yohei Yukawa81482972015-06-04 00:58:59 -0700482 Settings.Secure.DEFAULT_INPUT_METHOD), false, this, userId);
satokab751aa2010-09-14 19:17:36 +0900483 resolver.registerContentObserver(Settings.Secure.getUriFor(
Yohei Yukawa81482972015-06-04 00:58:59 -0700484 Settings.Secure.ENABLED_INPUT_METHODS), false, this, userId);
satokb6109bb2011-02-03 22:24:54 +0900485 resolver.registerContentObserver(Settings.Secure.getUriFor(
Yohei Yukawa81482972015-06-04 00:58:59 -0700486 Settings.Secure.SELECTED_INPUT_METHOD_SUBTYPE), false, this, userId);
Michael Wright7b5a96b2014-08-09 19:28:42 -0700487 resolver.registerContentObserver(Settings.Secure.getUriFor(
Yohei Yukawa81482972015-06-04 00:58:59 -0700488 Settings.Secure.SHOW_IME_WITH_HARD_KEYBOARD), false, this, userId);
Anna Galusza9b278112016-01-04 11:37:37 -0800489 resolver.registerContentObserver(Settings.Secure.getUriFor(
490 Settings.Secure.ACCESSIBILITY_SOFT_KEYBOARD_MODE), false, this, userId);
Yohei Yukawa81482972015-06-04 00:58:59 -0700491 mRegistered = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800492 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800493
Michael Wright7b5a96b2014-08-09 19:28:42 -0700494 @Override public void onChange(boolean selfChange, Uri uri) {
Anna Galusza9b278112016-01-04 11:37:37 -0800495 final Uri showImeUri = Settings.Secure.getUriFor(
496 Settings.Secure.SHOW_IME_WITH_HARD_KEYBOARD);
497 final Uri accessibilityRequestingNoImeUri = Settings.Secure.getUriFor(
498 Settings.Secure.ACCESSIBILITY_SOFT_KEYBOARD_MODE);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800499 synchronized (mMethodMap) {
Michael Wright7b5a96b2014-08-09 19:28:42 -0700500 if (showImeUri.equals(uri)) {
501 updateKeyboardFromSettingsLocked();
Anna Galusza9b278112016-01-04 11:37:37 -0800502 } else if (accessibilityRequestingNoImeUri.equals(uri)) {
503 mAccessibilityRequestingNoSoftKeyboard = Settings.Secure.getIntForUser(
504 mContext.getContentResolver(),
505 Settings.Secure.ACCESSIBILITY_SOFT_KEYBOARD_MODE,
506 0, mUserId) == 1;
507 if (mAccessibilityRequestingNoSoftKeyboard) {
508 final boolean showRequested = mShowRequested;
509 hideCurrentInputLocked(0, null);
510 mShowRequested = showRequested;
511 } else if (mShowRequested) {
512 showCurrentInputLocked(InputMethodManager.SHOW_IMPLICIT, null);
513 }
Michael Wright7b5a96b2014-08-09 19:28:42 -0700514 } else {
515 boolean enabledChanged = false;
516 String newEnabled = mSettings.getEnabledInputMethodsStr();
517 if (!mLastEnabled.equals(newEnabled)) {
518 mLastEnabled = newEnabled;
519 enabledChanged = true;
520 }
521 updateInputMethodsFromSettingsLocked(enabledChanged);
Dianne Hackbornfd7aded2013-01-22 17:10:23 -0800522 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800523 }
524 }
Yohei Yukawa81482972015-06-04 00:58:59 -0700525
526 @Override
527 public String toString() {
528 return "SettingsObserver{mUserId=" + mUserId + " mRegistered=" + mRegistered
529 + " mLastEnabled=" + mLastEnabled + "}";
530 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800531 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800532
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900533 class ImmsBroadcastReceiver extends android.content.BroadcastReceiver {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900534 @Override
535 public void onReceive(Context context, Intent intent) {
536 final String action = intent.getAction();
Yohei Yukawafa6e0a82015-07-23 15:08:59 -0700537 if (Intent.ACTION_CLOSE_SYSTEM_DIALOGS.equals(action)) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900538 hideInputMethodMenu();
Yohei Yukawafa6e0a82015-07-23 15:08:59 -0700539 // No need to update mIsInteractive
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900540 return;
Amith Yamasani734983f2014-03-04 16:48:05 -0800541 } else if (Intent.ACTION_USER_ADDED.equals(action)
542 || Intent.ACTION_USER_REMOVED.equals(action)) {
Kenny Guy2a764942014-04-02 13:29:20 +0100543 updateCurrentProfileIds();
Amith Yamasani734983f2014-03-04 16:48:05 -0800544 return;
Christopher Tate7b9a28c2015-03-18 13:06:16 -0700545 } else if (Intent.ACTION_SETTING_RESTORED.equals(action)) {
546 final String name = intent.getStringExtra(Intent.EXTRA_SETTING_NAME);
547 if (Settings.Secure.ENABLED_INPUT_METHODS.equals(name)) {
548 final String prevValue = intent.getStringExtra(
549 Intent.EXTRA_SETTING_PREVIOUS_VALUE);
550 final String newValue = intent.getStringExtra(
551 Intent.EXTRA_SETTING_NEW_VALUE);
552 restoreEnabledInputMethods(mContext, prevValue, newValue);
553 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900554 } else {
555 Slog.w(TAG, "Unexpected intent " + intent);
556 }
557 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800558 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800559
Christopher Tate7b9a28c2015-03-18 13:06:16 -0700560 // Apply the results of a restore operation to the set of enabled IMEs. Note that this
561 // does not attempt to validate on the fly with any installed device policy, so must only
562 // be run in the context of initial device setup.
563 //
564 // TODO: Move this method to InputMethodUtils with adding unit tests.
565 static void restoreEnabledInputMethods(Context context, String prevValue, String newValue) {
566 if (DEBUG_RESTORE) {
567 Slog.i(TAG, "Restoring enabled input methods:");
568 Slog.i(TAG, "prev=" + prevValue);
569 Slog.i(TAG, " new=" + newValue);
570 }
571 // 'new' is the just-restored state, 'prev' is what was in settings prior to the restore
Seigo Nonaka2028dda2015-07-06 17:41:24 +0900572 ArrayMap<String, ArraySet<String>> prevMap =
573 InputMethodUtils.parseInputMethodsAndSubtypesString(prevValue);
574 ArrayMap<String, ArraySet<String>> newMap =
575 InputMethodUtils.parseInputMethodsAndSubtypesString(newValue);
Christopher Tate7b9a28c2015-03-18 13:06:16 -0700576
577 // Merge the restored ime+subtype enabled states into the live state
578 for (ArrayMap.Entry<String, ArraySet<String>> entry : newMap.entrySet()) {
579 final String imeId = entry.getKey();
580 ArraySet<String> prevSubtypes = prevMap.get(imeId);
581 if (prevSubtypes == null) {
Yohei Yukawab0377bb2015-08-10 21:06:30 -0700582 prevSubtypes = new ArraySet<>(2);
Christopher Tate7b9a28c2015-03-18 13:06:16 -0700583 prevMap.put(imeId, prevSubtypes);
584 }
585 prevSubtypes.addAll(entry.getValue());
586 }
587
Seigo Nonaka2a099bc2015-08-14 19:29:45 -0700588 final String mergedImesAndSubtypesString =
589 InputMethodUtils.buildInputMethodsAndSubtypesString(prevMap);
Christopher Tate7b9a28c2015-03-18 13:06:16 -0700590 if (DEBUG_RESTORE) {
591 Slog.i(TAG, "Merged IME string:");
592 Slog.i(TAG, " " + mergedImesAndSubtypesString);
593 }
594 Settings.Secure.putString(context.getContentResolver(),
595 Settings.Secure.ENABLED_INPUT_METHODS, mergedImesAndSubtypesString);
596 }
597
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800598 class MyPackageMonitor extends PackageMonitor {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900599 private boolean isChangingPackagesOfCurrentUser() {
600 final int userId = getChangingUserId();
601 final boolean retval = userId == mSettings.getCurrentUserId();
602 if (DEBUG) {
satok81f8b7c2012-12-04 20:42:56 +0900603 if (!retval) {
604 Slog.d(TAG, "--- ignore this call back from a background user: " + userId);
605 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900606 }
607 return retval;
608 }
609
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800610 @Override
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800611 public boolean onHandleForceStop(Intent intent, String[] packages, int uid, boolean doit) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900612 if (!isChangingPackagesOfCurrentUser()) {
613 return false;
614 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800615 synchronized (mMethodMap) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900616 String curInputMethodId = mSettings.getSelectedInputMethod();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800617 final int N = mMethodList.size();
618 if (curInputMethodId != null) {
619 for (int i=0; i<N; i++) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800620 InputMethodInfo imi = mMethodList.get(i);
621 if (imi.getId().equals(curInputMethodId)) {
622 for (String pkg : packages) {
623 if (imi.getPackageName().equals(pkg)) {
624 if (!doit) {
625 return true;
626 }
satok723a27e2010-11-11 14:58:11 +0900627 resetSelectedInputMethodAndSubtypeLocked("");
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800628 chooseNewDefaultIMELocked();
629 return true;
630 }
631 }
632 }
633 }
634 }
635 }
636 return false;
637 }
638
639 @Override
640 public void onSomePackagesChanged() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900641 if (!isChangingPackagesOfCurrentUser()) {
642 return;
643 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800644 synchronized (mMethodMap) {
645 InputMethodInfo curIm = null;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900646 String curInputMethodId = mSettings.getSelectedInputMethod();
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800647 final int N = mMethodList.size();
648 if (curInputMethodId != null) {
649 for (int i=0; i<N; i++) {
650 InputMethodInfo imi = mMethodList.get(i);
satoke7c6998e2011-06-03 17:57:59 +0900651 final String imiId = imi.getId();
652 if (imiId.equals(curInputMethodId)) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800653 curIm = imi;
654 }
satoke7c6998e2011-06-03 17:57:59 +0900655
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800656 int change = isPackageDisappearing(imi.getPackageName());
satoke7c6998e2011-06-03 17:57:59 +0900657 if (isPackageModified(imi.getPackageName())) {
658 mFileManager.deleteAllInputMethodSubtypes(imiId);
659 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800660 if (change == PACKAGE_TEMPORARY_CHANGE
661 || change == PACKAGE_PERMANENT_CHANGE) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800662 Slog.i(TAG, "Input method uninstalled, disabling: "
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800663 + imi.getComponent());
664 setInputMethodEnabledLocked(imi.getId(), false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800665 }
666 }
667 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800668
Yohei Yukawa94e33302016-02-12 19:37:03 -0800669 buildInputMethodListLocked(false /* resetDefaultEnabledIme */);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800670
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800671 boolean changed = false;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800672
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800673 if (curIm != null) {
Anna Galusza9b278112016-01-04 11:37:37 -0800674 int change = isPackageDisappearing(curIm.getPackageName());
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800675 if (change == PACKAGE_TEMPORARY_CHANGE
676 || change == PACKAGE_PERMANENT_CHANGE) {
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800677 ServiceInfo si = null;
678 try {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900679 si = mIPackageManager.getServiceInfo(
680 curIm.getComponent(), 0, mSettings.getCurrentUserId());
681 } catch (RemoteException ex) {
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800682 }
683 if (si == null) {
684 // Uh oh, current input method is no longer around!
685 // Pick another one...
Joe Onorato8a9b2202010-02-26 18:56:32 -0800686 Slog.i(TAG, "Current input method removed: " + curInputMethodId);
Seigo Nonakad9eb9112015-05-26 20:54:43 +0900687 updateSystemUiLocked(mCurToken, 0 /* vis */, mBackDisposition);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800688 if (!chooseNewDefaultIMELocked()) {
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800689 changed = true;
690 curIm = null;
Joe Onorato8a9b2202010-02-26 18:56:32 -0800691 Slog.i(TAG, "Unsetting current input method");
satok723a27e2010-11-11 14:58:11 +0900692 resetSelectedInputMethodAndSubtypeLocked("");
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800693 }
694 }
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800695 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800696 }
satokab751aa2010-09-14 19:17:36 +0900697
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800698 if (curIm == null) {
699 // We currently don't have a default input method... is
700 // one now available?
701 changed = chooseNewDefaultIMELocked();
Yohei Yukawa54d512c2015-05-19 22:15:02 -0700702 } else if (!changed && isPackageModified(curIm.getPackageName())) {
703 // Even if the current input method is still available, mCurrentSubtype could
704 // be obsolete when the package is modified in practice.
705 changed = true;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800706 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800707
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800708 if (changed) {
Dianne Hackbornfd7aded2013-01-22 17:10:23 -0800709 updateFromSettingsLocked(false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800710 }
711 }
712 }
713 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800714
Jeff Brownc28867a2013-03-26 15:42:39 -0700715 private static final class MethodCallback extends IInputSessionCallback.Stub {
Jean Chalarde0d32a62011-10-20 20:36:07 +0900716 private final InputMethodManagerService mParentIMMS;
Jeff Brownc28867a2013-03-26 15:42:39 -0700717 private final IInputMethod mMethod;
718 private final InputChannel mChannel;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800719
Jeff Brownc28867a2013-03-26 15:42:39 -0700720 MethodCallback(InputMethodManagerService imms, IInputMethod method,
721 InputChannel channel) {
Jean Chalarde0d32a62011-10-20 20:36:07 +0900722 mParentIMMS = imms;
Jeff Brownc28867a2013-03-26 15:42:39 -0700723 mMethod = method;
724 mChannel = channel;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800725 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800726
satoke7c6998e2011-06-03 17:57:59 +0900727 @Override
Jeff Brownc28867a2013-03-26 15:42:39 -0700728 public void sessionCreated(IInputMethodSession session) {
Dianne Hackborn6b6b3fd2014-03-24 11:27:18 -0700729 long ident = Binder.clearCallingIdentity();
730 try {
731 mParentIMMS.onSessionCreated(mMethod, session, mChannel);
732 } finally {
733 Binder.restoreCallingIdentity(ident);
734 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800735 }
736 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800737
satok01038492012-04-09 21:08:27 +0900738 private class HardKeyboardListener
Seigo Nonaka7309b122015-08-17 18:34:13 -0700739 implements WindowManagerInternal.OnHardKeyboardStatusChangeListener {
satok01038492012-04-09 21:08:27 +0900740 @Override
Michael Wright7b5a96b2014-08-09 19:28:42 -0700741 public void onHardKeyboardStatusChange(boolean available) {
742 mHandler.sendMessage(mHandler.obtainMessage(MSG_HARD_KEYBOARD_SWITCH_CHANGED,
743 available ? 1 : 0));
satok01038492012-04-09 21:08:27 +0900744 }
745
Michael Wright7b5a96b2014-08-09 19:28:42 -0700746 public void handleHardKeyboardStatusChange(boolean available) {
satok01038492012-04-09 21:08:27 +0900747 if (DEBUG) {
Michael Wright7b5a96b2014-08-09 19:28:42 -0700748 Slog.w(TAG, "HardKeyboardStatusChanged: available=" + available);
satok01038492012-04-09 21:08:27 +0900749 }
750 synchronized(mMethodMap) {
751 if (mSwitchingDialog != null && mSwitchingDialogTitleView != null
752 && mSwitchingDialog.isShowing()) {
753 mSwitchingDialogTitleView.findViewById(
754 com.android.internal.R.id.hard_keyboard_section).setVisibility(
755 available ? View.VISIBLE : View.GONE);
756 }
757 }
758 }
759 }
760
Fyodor Kupolov1e33dc82016-01-21 12:02:58 -0800761 public static final class Lifecycle extends SystemService {
762 private InputMethodManagerService mService;
763
764 public Lifecycle(Context context) {
765 super(context);
766 mService = new InputMethodManagerService(context);
767 }
768
769 @Override
770 public void onStart() {
771 LocalServices.addService(InputMethodManagerInternal.class,
772 new LocalServiceImpl(mService.mHandler));
773 publishBinderService(Context.INPUT_METHOD_SERVICE, mService);
774 }
775
776 @Override
777 public void onBootPhase(int phase) {
778 if (phase == SystemService.PHASE_ACTIVITY_MANAGER_READY) {
779 StatusBarManagerService statusBarService = (StatusBarManagerService) ServiceManager
780 .getService(Context.STATUS_BAR_SERVICE);
781 mService.systemRunning(statusBarService);
782 }
783 }
Yohei Yukawaed4952a2016-02-17 07:57:25 -0800784
785 @Override
786 public void onUnlockUser(int userHandle) {
787 mService.onUnlockUser(userHandle);
788 }
789 }
790
791 public void onUnlockUser(int userId) {
792 synchronized(mMethodMap) {
793 final int currentUserId = mSettings.getCurrentUserId();
794 if (DEBUG) {
795 Slog.d(TAG, "onUnlockUser: userId=" + userId + " curUserId=" + currentUserId);
796 }
797 if (userId != currentUserId) {
798 return;
799 }
800 mSettings.switchCurrentUser(currentUserId, !mSystemReady);
801 // We need to rebuild IMEs.
802 buildInputMethodListLocked(false /* resetDefaultEnabledIme */);
803 updateInputMethodsFromSettingsLocked(true /* enabledChanged */);
804 }
Fyodor Kupolov1e33dc82016-01-21 12:02:58 -0800805 }
806
Seigo Nonaka7309b122015-08-17 18:34:13 -0700807 public InputMethodManagerService(Context context) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900808 mIPackageManager = AppGlobals.getPackageManager();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800809 mContext = context;
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -0800810 mRes = context.getResources();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800811 mHandler = new Handler(this);
Yohei Yukawa81482972015-06-04 00:58:59 -0700812 // Note: SettingsObserver doesn't register observers in its constructor.
813 mSettingsObserver = new SettingsObserver(mHandler);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800814 mIWindowManager = IWindowManager.Stub.asInterface(
815 ServiceManager.getService(Context.WINDOW_SERVICE));
Seigo Nonaka7309b122015-08-17 18:34:13 -0700816 mWindowManagerInternal = LocalServices.getService(WindowManagerInternal.class);
Mita Yuned218c72012-12-06 17:18:25 -0800817 mCaller = new HandlerCaller(context, null, new HandlerCaller.Callback() {
satoke7c6998e2011-06-03 17:57:59 +0900818 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800819 public void executeMessage(Message msg) {
820 handleMessage(msg);
821 }
Mita Yuned218c72012-12-06 17:18:25 -0800822 }, true /*asyncHandler*/);
Yohei Yukawad34e1482016-02-11 08:03:52 -0800823 mAppOpsManager = mContext.getSystemService(AppOpsManager.class);
Yohei Yukawaed4952a2016-02-17 07:57:25 -0800824 mUserManager = mContext.getSystemService(UserManager.class);
satok01038492012-04-09 21:08:27 +0900825 mHardKeyboardListener = new HardKeyboardListener();
Dianne Hackborn119bbc32013-03-22 17:27:25 -0700826 mHasFeature = context.getPackageManager().hasSystemFeature(
827 PackageManager.FEATURE_INPUT_METHODS);
Jason Monk3e189872016-01-12 09:10:34 -0500828 mSlotIme = mContext.getString(com.android.internal.R.string.status_bar_ime);
satok7cfc0ed2011-06-20 21:29:36 +0900829
Chris Wren1ce4b6d2015-06-11 10:19:43 -0400830 Bundle extras = new Bundle();
831 extras.putBoolean(Notification.EXTRA_ALLOW_DURING_SETUP, true);
832 mImeSwitcherNotification = new Notification.Builder(mContext)
833 .setSmallIcon(com.android.internal.R.drawable.ic_notification_ime_default)
834 .setWhen(0)
835 .setOngoing(true)
836 .addExtras(extras)
837 .setCategory(Notification.CATEGORY_SYSTEM)
838 .setColor(com.android.internal.R.color.system_notification_accent_color);
Daniel Sandler590d5152012-06-14 16:10:13 -0400839
satok7cfc0ed2011-06-20 21:29:36 +0900840 Intent intent = new Intent(Settings.ACTION_SHOW_INPUT_METHOD_PICKER);
satok683e2382011-07-12 08:28:52 +0900841 mImeSwitchPendingIntent = PendingIntent.getBroadcast(mContext, 0, intent, 0);
satokb858c732011-07-22 19:54:34 +0900842
843 mShowOngoingImeSwitcherForPhones = false;
satok7cfc0ed2011-06-20 21:29:36 +0900844
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900845 final IntentFilter broadcastFilter = new IntentFilter();
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900846 broadcastFilter.addAction(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
Amith Yamasani734983f2014-03-04 16:48:05 -0800847 broadcastFilter.addAction(Intent.ACTION_USER_ADDED);
848 broadcastFilter.addAction(Intent.ACTION_USER_REMOVED);
Christopher Tate7b9a28c2015-03-18 13:06:16 -0700849 broadcastFilter.addAction(Intent.ACTION_SETTING_RESTORED);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900850 mContext.registerReceiver(new ImmsBroadcastReceiver(), broadcastFilter);
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800851
satok7cfc0ed2011-06-20 21:29:36 +0900852 mNotificationShown = false;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900853 int userId = 0;
854 try {
855 ActivityManagerNative.getDefault().registerUserSwitchObserver(
Fyodor Kupolov6005b3f2015-11-23 17:41:50 -0800856 new SynchronousUserSwitchObserver() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900857 @Override
Fyodor Kupolov6005b3f2015-11-23 17:41:50 -0800858 public void onUserSwitching(int newUserId)
859 throws RemoteException {
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +0900860 synchronized(mMethodMap) {
861 switchUserLocked(newUserId);
862 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900863 }
864
865 @Override
866 public void onUserSwitchComplete(int newUserId) throws RemoteException {
867 }
Kenny Guy42979622015-04-13 18:03:05 +0000868
869 @Override
870 public void onForegroundProfileSwitch(int newProfileId) {
871 // Ignore.
872 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900873 });
874 userId = ActivityManagerNative.getDefault().getCurrentUser().id;
875 } catch (RemoteException e) {
876 Slog.w(TAG, "Couldn't get current user ID; guessing it's 0", e);
877 }
satok81f8b7c2012-12-04 20:42:56 +0900878 mMyPackageMonitor.register(mContext, null, UserHandle.ALL, true);
satok913a8922010-08-26 21:53:41 +0900879
satokd87c2592010-09-29 11:52:06 +0900880 // mSettings should be created before buildInputMethodListLocked
satokdf31ae62011-01-15 06:19:44 +0900881 mSettings = new InputMethodSettings(
Yohei Yukawa68645a62016-02-17 07:54:20 -0800882 mRes, context.getContentResolver(), mMethodMap, mMethodList, userId, !mSystemReady);
Svet Ganovadc1cf42015-06-15 16:36:24 -0700883
Kenny Guy2a764942014-04-02 13:29:20 +0100884 updateCurrentProfileIds();
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +0900885 mFileManager = new InputMethodFileManager(mMethodMap, userId);
Yohei Yukawa5a647b692014-05-22 12:49:00 +0900886 synchronized (mMethodMap) {
887 mSwitchingController = InputMethodSubtypeSwitchingController.createInstanceLocked(
888 mSettings, context);
889 }
satok0a1bcf42012-05-16 19:26:31 +0900890
891 // Just checking if defaultImiId is empty or not
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900892 final String defaultImiId = mSettings.getSelectedInputMethod();
Satoshi Kataokaf1367b72013-01-25 17:20:12 +0900893 if (DEBUG) {
894 Slog.d(TAG, "Initial default ime = " + defaultImiId);
895 }
satok0a1bcf42012-05-16 19:26:31 +0900896 mImeSelectedOnBoot = !TextUtils.isEmpty(defaultImiId);
897
Yohei Yukawa5a647b692014-05-22 12:49:00 +0900898 synchronized (mMethodMap) {
Yohei Yukawa94e33302016-02-12 19:37:03 -0800899 buildInputMethodListLocked(!mImeSelectedOnBoot /* resetDefaultEnabledIme */);
Yohei Yukawa5a647b692014-05-22 12:49:00 +0900900 }
satokd87c2592010-09-29 11:52:06 +0900901 mSettings.enableAllIMEsIfThereIsNoEnabledIME();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800902
satok0a1bcf42012-05-16 19:26:31 +0900903 if (!mImeSelectedOnBoot) {
904 Slog.w(TAG, "No IME selected. Choose the most applicable IME.");
Yohei Yukawa5a647b692014-05-22 12:49:00 +0900905 synchronized (mMethodMap) {
906 resetDefaultImeLocked(context);
907 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800908 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800909
Yohei Yukawa5a647b692014-05-22 12:49:00 +0900910 synchronized (mMethodMap) {
Yohei Yukawa81482972015-06-04 00:58:59 -0700911 mSettingsObserver.registerContentObserverLocked(userId);
Yohei Yukawa5a647b692014-05-22 12:49:00 +0900912 updateFromSettingsLocked(true);
913 }
satok5b927c432012-05-01 20:09:34 +0900914
915 // IMMS wants to receive Intent.ACTION_LOCALE_CHANGED in order to update the current IME
916 // according to the new system locale.
917 final IntentFilter filter = new IntentFilter();
918 filter.addAction(Intent.ACTION_LOCALE_CHANGED);
919 mContext.registerReceiver(
920 new BroadcastReceiver() {
921 @Override
922 public void onReceive(Context context, Intent intent) {
923 synchronized(mMethodMap) {
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +0900924 resetStateIfCurrentLocaleChangedLocked();
satok5b927c432012-05-01 20:09:34 +0900925 }
926 }
927 }, filter);
928 }
929
satok5b927c432012-05-01 20:09:34 +0900930 private void resetDefaultImeLocked(Context context) {
931 // Do not reset the default (current) IME when it is a 3rd-party IME
Yohei Yukawac2393ac2016-02-18 00:30:45 -0800932 if (mCurMethodId != null && !InputMethodUtils.isSystemIme(mMethodMap.get(mCurMethodId))) {
satok5b927c432012-05-01 20:09:34 +0900933 return;
934 }
Yohei Yukawac2393ac2016-02-18 00:30:45 -0800935 final List<InputMethodInfo> suitableImes = InputMethodUtils.getDefaultEnabledImes(
936 context, mSystemReady, mSettings.getEnabledInputMethodListLocked());
937 if (suitableImes.isEmpty()) {
938 Slog.i(TAG, "No default found");
939 return;
satok5b927c432012-05-01 20:09:34 +0900940 }
Yohei Yukawac2393ac2016-02-18 00:30:45 -0800941 final InputMethodInfo defIm = suitableImes.get(0);
942 Slog.i(TAG, "Default found, using " + defIm.getId());
943 setSelectedInputMethodAndSubtypeLocked(defIm, NOT_A_SUBTYPE_ID, false);
satok5b927c432012-05-01 20:09:34 +0900944 }
945
Satoshi Kataoka7f7535f2013-02-18 12:54:16 +0900946 private void resetAllInternalStateLocked(final boolean updateOnlyWhenLocaleChanged,
947 final boolean resetDefaultEnabledIme) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900948 if (!mSystemReady) {
949 // not system ready
950 return;
951 }
952 final Locale newLocale = mRes.getConfiguration().locale;
953 if (!updateOnlyWhenLocaleChanged
954 || (newLocale != null && !newLocale.equals(mLastSystemLocale))) {
955 if (!updateOnlyWhenLocaleChanged) {
956 hideCurrentInputLocked(0, null);
Yohei Yukawa33e81792015-11-17 21:14:42 -0800957 resetCurrentMethodAndClient(InputMethodClient.UNBIND_REASON_RESET_IME);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900958 }
959 if (DEBUG) {
960 Slog.i(TAG, "Locale has been changed to " + newLocale);
961 }
Yohei Yukawa94e33302016-02-12 19:37:03 -0800962 buildInputMethodListLocked(resetDefaultEnabledIme);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900963 if (!updateOnlyWhenLocaleChanged) {
964 final String selectedImiId = mSettings.getSelectedInputMethod();
965 if (TextUtils.isEmpty(selectedImiId)) {
966 // This is the first time of the user switch and
967 // set the current ime to the proper one.
968 resetDefaultImeLocked(mContext);
969 }
Satoshi Kataokad08a9232012-09-28 15:59:58 +0900970 } else {
971 // If the locale is changed, needs to reset the default ime
972 resetDefaultImeLocked(mContext);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900973 }
Dianne Hackbornfd7aded2013-01-22 17:10:23 -0800974 updateFromSettingsLocked(true);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900975 mLastSystemLocale = newLocale;
976 if (!updateOnlyWhenLocaleChanged) {
977 try {
978 startInputInnerLocked();
979 } catch (RuntimeException e) {
980 Slog.w(TAG, "Unexpected exception", e);
981 }
982 }
983 }
984 }
985
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +0900986 private void resetStateIfCurrentLocaleChangedLocked() {
Satoshi Kataoka7f7535f2013-02-18 12:54:16 +0900987 resetAllInternalStateLocked(true /* updateOnlyWhenLocaleChanged */,
988 true /* resetDefaultImeLocked */);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900989 }
990
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +0900991 private void switchUserLocked(int newUserId) {
Yohei Yukawa90bf7082015-06-03 23:50:27 -0700992 if (DEBUG) Slog.d(TAG, "Switching user stage 1/3. newUserId=" + newUserId
993 + " currentUserId=" + mSettings.getCurrentUserId());
994
Yohei Yukawa81482972015-06-04 00:58:59 -0700995 // ContentObserver should be registered again when the user is changed
996 mSettingsObserver.registerContentObserverLocked(newUserId);
Yohei Yukawa68645a62016-02-17 07:54:20 -0800997
Yohei Yukawaed4952a2016-02-17 07:57:25 -0800998 // If the system is not ready or the device is not yed unlocked by the user, then we use
999 // copy-on-write settings.
1000 final boolean useCopyOnWriteSettings =
1001 !mSystemReady || !mUserManager.isUserUnlocked(newUserId);
Yohei Yukawa68645a62016-02-17 07:54:20 -08001002 mSettings.switchCurrentUser(newUserId, useCopyOnWriteSettings);
Kenny Guy2a764942014-04-02 13:29:20 +01001003 updateCurrentProfileIds();
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +09001004 // InputMethodFileManager should be reset when the user is changed
1005 mFileManager = new InputMethodFileManager(mMethodMap, newUserId);
Satoshi Kataoka7f7535f2013-02-18 12:54:16 +09001006 final String defaultImiId = mSettings.getSelectedInputMethod();
Yohei Yukawa90bf7082015-06-03 23:50:27 -07001007
1008 if (DEBUG) Slog.d(TAG, "Switching user stage 2/3. newUserId=" + newUserId
1009 + " defaultImiId=" + defaultImiId);
1010
Satoshi Kataoka7c4a2a12013-02-25 15:25:43 +09001011 // For secondary users, the list of enabled IMEs may not have been updated since the
1012 // callbacks to PackageMonitor are ignored for the secondary user. Here, defaultImiId may
1013 // not be empty even if the IME has been uninstalled by the primary user.
1014 // Even in such cases, IMMS works fine because it will find the most applicable
1015 // IME for that user.
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +09001016 final boolean initialUserSwitch = TextUtils.isEmpty(defaultImiId);
Satoshi Kataoka7f7535f2013-02-18 12:54:16 +09001017 resetAllInternalStateLocked(false /* updateOnlyWhenLocaleChanged */,
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +09001018 initialUserSwitch /* needsToResetDefaultIme */);
1019 if (initialUserSwitch) {
Yohei Yukawa094c71f2015-06-20 00:41:31 -07001020 InputMethodUtils.setNonSelectedSystemImesDisabledUntilUsed(mIPackageManager,
1021 mSettings.getEnabledInputMethodListLocked(), newUserId,
1022 mContext.getBasePackageName());
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +09001023 }
Yohei Yukawa90bf7082015-06-03 23:50:27 -07001024
1025 if (DEBUG) Slog.d(TAG, "Switching user stage 3/3. newUserId=" + newUserId
1026 + " selectedIme=" + mSettings.getSelectedInputMethod());
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001027 }
1028
Kenny Guy2a764942014-04-02 13:29:20 +01001029 void updateCurrentProfileIds() {
Yohei Yukawaed4952a2016-02-17 07:57:25 -08001030 List<UserInfo> profiles = mUserManager.getProfiles(mSettings.getCurrentUserId());
Kenny Guy2a764942014-04-02 13:29:20 +01001031 int[] currentProfileIds = new int[profiles.size()]; // profiles will not be null
1032 for (int i = 0; i < currentProfileIds.length; i++) {
1033 currentProfileIds[i] = profiles.get(i).id;
Amith Yamasani734983f2014-03-04 16:48:05 -08001034 }
Kenny Guy2a764942014-04-02 13:29:20 +01001035 mSettings.setCurrentProfileIds(currentProfileIds);
Amith Yamasani734983f2014-03-04 16:48:05 -08001036 }
1037
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001038 @Override
1039 public boolean onTransact(int code, Parcel data, Parcel reply, int flags)
1040 throws RemoteException {
1041 try {
1042 return super.onTransact(code, data, reply, flags);
1043 } catch (RuntimeException e) {
1044 // The input method manager only throws security exceptions, so let's
1045 // log all others.
1046 if (!(e instanceof SecurityException)) {
Dianne Hackborn164371f2013-10-01 19:10:13 -07001047 Slog.wtf(TAG, "Input Method Manager Crash", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001048 }
1049 throw e;
1050 }
1051 }
1052
Svetoslav Ganova0027152013-06-25 14:59:53 -07001053 public void systemRunning(StatusBarManagerService statusBar) {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001054 synchronized (mMethodMap) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001055 if (DEBUG) {
1056 Slog.d(TAG, "--- systemReady");
1057 }
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001058 if (!mSystemReady) {
1059 mSystemReady = true;
Yohei Yukawa68645a62016-02-17 07:54:20 -08001060 final int currentUserId = mSettings.getCurrentUserId();
Yohei Yukawaed4952a2016-02-17 07:57:25 -08001061 mSettings.switchCurrentUser(currentUserId,
1062 !mUserManager.isUserUnlocked(currentUserId));
Yohei Yukawad34e1482016-02-11 08:03:52 -08001063 mKeyguardManager = mContext.getSystemService(KeyguardManager.class);
1064 mNotificationManager = mContext.getSystemService(NotificationManager.class);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001065 mStatusBar = statusBar;
Jason Monk3e189872016-01-12 09:10:34 -05001066 statusBar.setIconVisibility(mSlotIme, false);
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001067 updateSystemUiLocked(mCurToken, mImeWindowVis, mBackDisposition);
satokb858c732011-07-22 19:54:34 +09001068 mShowOngoingImeSwitcherForPhones = mRes.getBoolean(
1069 com.android.internal.R.bool.show_ongoing_ime_switcher);
satok01038492012-04-09 21:08:27 +09001070 if (mShowOngoingImeSwitcherForPhones) {
Seigo Nonaka7309b122015-08-17 18:34:13 -07001071 mWindowManagerInternal.setOnHardKeyboardStatusChangeListener(
satok01038492012-04-09 21:08:27 +09001072 mHardKeyboardListener);
1073 }
Yohei Yukawa94e33302016-02-12 19:37:03 -08001074 buildInputMethodListLocked(!mImeSelectedOnBoot /* resetDefaultEnabledIme */);
satok0a1bcf42012-05-16 19:26:31 +09001075 if (!mImeSelectedOnBoot) {
1076 Slog.w(TAG, "Reset the default IME as \"Resource\" is ready here.");
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +09001077 resetStateIfCurrentLocaleChangedLocked();
Yohei Yukawa094c71f2015-06-20 00:41:31 -07001078 InputMethodUtils.setNonSelectedSystemImesDisabledUntilUsed(mIPackageManager,
1079 mSettings.getEnabledInputMethodListLocked(),
1080 mSettings.getCurrentUserId(), mContext.getBasePackageName());
satok0a1bcf42012-05-16 19:26:31 +09001081 }
1082 mLastSystemLocale = mRes.getConfiguration().locale;
Dianne Hackborncc278702009-09-02 23:07:23 -07001083 try {
1084 startInputInnerLocked();
1085 } catch (RuntimeException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001086 Slog.w(TAG, "Unexpected exception", e);
Dianne Hackborncc278702009-09-02 23:07:23 -07001087 }
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001088 }
1089 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001090 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001091
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001092 // ---------------------------------------------------------------------------------------
1093 // Check whether or not this is a valid IPC. Assumes an IPC is valid when either
1094 // 1) it comes from the system process
1095 // 2) the calling process' user id is identical to the current user id IMMS thinks.
1096 private boolean calledFromValidUser() {
1097 final int uid = Binder.getCallingUid();
1098 final int userId = UserHandle.getUserId(uid);
1099 if (DEBUG) {
1100 Slog.d(TAG, "--- calledFromForegroundUserOrSystemProcess ? "
1101 + "calling uid = " + uid + " system uid = " + Process.SYSTEM_UID
1102 + " calling userId = " + userId + ", foreground user id = "
Satoshi Kataoka87c29142013-07-31 23:11:54 +09001103 + mSettings.getCurrentUserId() + ", calling pid = " + Binder.getCallingPid()
1104 + InputMethodUtils.getApiCallStack());
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001105 }
Kenny Guy2a764942014-04-02 13:29:20 +01001106 if (uid == Process.SYSTEM_UID || mSettings.isCurrentProfile(userId)) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001107 return true;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001108 }
Satoshi Kataoka135e5fb2012-09-28 18:25:06 +09001109
1110 // Caveat: A process which has INTERACT_ACROSS_USERS_FULL gets results for the
1111 // foreground user, not for the user of that process. Accordingly InputMethodManagerService
1112 // must not manage background users' states in any functions.
1113 // Note that privacy-sensitive IPCs, such as setInputMethod, are still securely guarded
1114 // by a token.
1115 if (mContext.checkCallingOrSelfPermission(
1116 android.Manifest.permission.INTERACT_ACROSS_USERS_FULL)
1117 == PackageManager.PERMISSION_GRANTED) {
1118 if (DEBUG) {
1119 Slog.d(TAG, "--- Access granted because the calling process has "
1120 + "the INTERACT_ACROSS_USERS_FULL permission");
1121 }
1122 return true;
1123 }
Seigo Nonakae27dc2b2015-08-14 18:21:27 -07001124 Slog.w(TAG, "--- IPC called from background users. Ignore. callers="
1125 + Debug.getCallers(10));
Satoshi Kataoka135e5fb2012-09-28 18:25:06 +09001126 return false;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001127 }
1128
Yohei Yukawa22c97be2014-06-04 19:43:36 +09001129
1130 /**
1131 * Returns true iff the caller is identified to be the current input method with the token.
1132 * @param token The window token given to the input method when it was started.
1133 * @return true if and only if non-null valid token is specified.
1134 */
1135 private boolean calledWithValidToken(IBinder token) {
1136 if (token == null || mCurToken != token) {
1137 return false;
1138 }
1139 return true;
1140 }
1141
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001142 private boolean bindCurrentInputMethodService(
1143 Intent service, ServiceConnection conn, int flags) {
1144 if (service == null || conn == null) {
1145 Slog.e(TAG, "--- bind failed: service = " + service + ", conn = " + conn);
1146 return false;
1147 }
Amith Yamasani27b89e62013-01-16 12:30:11 -08001148 return mContext.bindServiceAsUser(service, conn, flags,
1149 new UserHandle(mSettings.getCurrentUserId()));
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001150 }
1151
satoke7c6998e2011-06-03 17:57:59 +09001152 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001153 public List<InputMethodInfo> getInputMethodList() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001154 // TODO: Make this work even for non-current users?
1155 if (!calledFromValidUser()) {
1156 return Collections.emptyList();
1157 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001158 synchronized (mMethodMap) {
Yohei Yukawab0377bb2015-08-10 21:06:30 -07001159 return new ArrayList<>(mMethodList);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001160 }
1161 }
1162
satoke7c6998e2011-06-03 17:57:59 +09001163 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001164 public List<InputMethodInfo> getEnabledInputMethodList() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001165 // TODO: Make this work even for non-current users?
1166 if (!calledFromValidUser()) {
1167 return Collections.emptyList();
1168 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001169 synchronized (mMethodMap) {
satokd87c2592010-09-29 11:52:06 +09001170 return mSettings.getEnabledInputMethodListLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001171 }
1172 }
1173
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001174 /**
Satoshi Kataokab3c21ac2013-08-07 15:43:29 +09001175 * @param imiId if null, returns enabled subtypes for the current imi
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001176 * @return enabled subtypes of the specified imi
1177 */
satoke7c6998e2011-06-03 17:57:59 +09001178 @Override
Satoshi Kataokab3c21ac2013-08-07 15:43:29 +09001179 public List<InputMethodSubtype> getEnabledInputMethodSubtypeList(String imiId,
satok16331c82010-12-20 23:48:46 +09001180 boolean allowsImplicitlySelectedSubtypes) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001181 // TODO: Make this work even for non-current users?
1182 if (!calledFromValidUser()) {
Yohei Yukawab0377bb2015-08-10 21:06:30 -07001183 return Collections.emptyList();
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001184 }
satok67ddf9c2010-11-17 09:45:54 +09001185 synchronized (mMethodMap) {
Satoshi Kataokab3c21ac2013-08-07 15:43:29 +09001186 final InputMethodInfo imi;
1187 if (imiId == null && mCurMethodId != null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001188 imi = mMethodMap.get(mCurMethodId);
Satoshi Kataokab3c21ac2013-08-07 15:43:29 +09001189 } else {
1190 imi = mMethodMap.get(imiId);
1191 }
1192 if (imi == null) {
Yohei Yukawab0377bb2015-08-10 21:06:30 -07001193 return Collections.emptyList();
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001194 }
1195 return mSettings.getEnabledInputMethodSubtypeListLocked(
1196 mContext, imi, allowsImplicitlySelectedSubtypes);
satok67ddf9c2010-11-17 09:45:54 +09001197 }
1198 }
1199
satoke7c6998e2011-06-03 17:57:59 +09001200 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001201 public void addClient(IInputMethodClient client,
1202 IInputContext inputContext, int uid, int pid) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001203 if (!calledFromValidUser()) {
1204 return;
1205 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001206 synchronized (mMethodMap) {
1207 mClients.put(client.asBinder(), new ClientState(client,
1208 inputContext, uid, pid));
1209 }
1210 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001211
satoke7c6998e2011-06-03 17:57:59 +09001212 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001213 public void removeClient(IInputMethodClient client) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001214 if (!calledFromValidUser()) {
1215 return;
1216 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001217 synchronized (mMethodMap) {
Jeff Brownc28867a2013-03-26 15:42:39 -07001218 ClientState cs = mClients.remove(client.asBinder());
1219 if (cs != null) {
1220 clearClientSessionLocked(cs);
Yohei Yukawa072b1b52015-11-18 15:54:34 -08001221 if (mCurClient == cs) {
1222 mCurClient = null;
1223 }
Yohei Yukawae39d4ed2015-11-19 03:38:49 -08001224 if (mCurFocusedWindowClient == cs) {
1225 mCurFocusedWindowClient = null;
1226 }
Jeff Brownc28867a2013-03-26 15:42:39 -07001227 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001228 }
1229 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001230
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001231 void executeOrSendMessage(IInterface target, Message msg) {
1232 if (target.asBinder() instanceof Binder) {
1233 mCaller.sendMessage(msg);
1234 } else {
1235 handleMessage(msg);
1236 msg.recycle();
1237 }
1238 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001239
Yohei Yukawa33e81792015-11-17 21:14:42 -08001240 void unbindCurrentClientLocked(
1241 /* @InputMethodClient.UnbindReason */ final int unbindClientReason) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001242 if (mCurClient != null) {
Yohei Yukawa35d3f372015-11-25 11:07:19 -08001243 if (DEBUG) Slog.v(TAG, "unbindCurrentInputLocked: client="
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001244 + mCurClient.client.asBinder());
1245 if (mBoundToMethod) {
1246 mBoundToMethod = false;
1247 if (mCurMethod != null) {
1248 executeOrSendMessage(mCurMethod, mCaller.obtainMessageO(
1249 MSG_UNBIND_INPUT, mCurMethod));
1250 }
1251 }
Dianne Hackborna6e41342012-05-22 16:30:34 -07001252
1253 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
1254 MSG_SET_ACTIVE, 0, mCurClient));
Yohei Yukawa33e81792015-11-17 21:14:42 -08001255 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIIO(
1256 MSG_UNBIND_CLIENT, mCurSeq, unbindClientReason, mCurClient.client));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001257 mCurClient.sessionRequested = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001258 mCurClient = null;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001259
The Android Open Source Project10592532009-03-18 17:39:46 -07001260 hideInputMethodMenuLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001261 }
1262 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001263
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001264 private int getImeShowFlags() {
1265 int flags = 0;
1266 if (mShowForced) {
1267 flags |= InputMethod.SHOW_FORCED
1268 | InputMethod.SHOW_EXPLICIT;
1269 } else if (mShowExplicitlyRequested) {
1270 flags |= InputMethod.SHOW_EXPLICIT;
1271 }
1272 return flags;
1273 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001274
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001275 private int getAppShowFlags() {
1276 int flags = 0;
1277 if (mShowForced) {
1278 flags |= InputMethodManager.SHOW_FORCED;
1279 } else if (!mShowExplicitlyRequested) {
1280 flags |= InputMethodManager.SHOW_IMPLICIT;
1281 }
1282 return flags;
1283 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001284
Dianne Hackborn7663d802012-02-24 13:08:49 -08001285 InputBindResult attachNewInputLocked(boolean initial) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001286 if (!mBoundToMethod) {
1287 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
1288 MSG_BIND_INPUT, mCurMethod, mCurClient.binding));
1289 mBoundToMethod = true;
1290 }
1291 final SessionState session = mCurClient.curSession;
1292 if (initial) {
1293 executeOrSendMessage(session.method, mCaller.obtainMessageOOO(
1294 MSG_START_INPUT, session, mCurInputContext, mCurAttribute));
1295 } else {
1296 executeOrSendMessage(session.method, mCaller.obtainMessageOOO(
1297 MSG_RESTART_INPUT, session, mCurInputContext, mCurAttribute));
1298 }
1299 if (mShowRequested) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001300 if (DEBUG) Slog.v(TAG, "Attach new input asks to show input");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001301 showCurrentInputLocked(getAppShowFlags(), null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001302 }
Jeff Brown1951ce82013-04-04 22:45:12 -07001303 return new InputBindResult(session.session,
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09001304 (session.channel != null ? session.channel.dup() : null),
1305 mCurId, mCurSeq, mCurUserActionNotificationSequenceNumber);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001306 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001307
Yohei Yukawa35d3f372015-11-25 11:07:19 -08001308 InputBindResult startInputLocked(
1309 /* @InputMethodClient.StartInputReason */ final int startInputReason,
1310 IInputMethodClient client, IInputContext inputContext, EditorInfo attribute,
1311 int controlFlags) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001312 // If no method is currently selected, do nothing.
1313 if (mCurMethodId == null) {
1314 return mNoBinding;
1315 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001316
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001317 ClientState cs = mClients.get(client.asBinder());
1318 if (cs == null) {
1319 throw new IllegalArgumentException("unknown client "
1320 + client.asBinder());
1321 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001322
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001323 try {
1324 if (!mIWindowManager.inputMethodClientHasFocus(cs.client)) {
1325 // Check with the window manager to make sure this client actually
1326 // has a window with focus. If not, reject. This is thread safe
1327 // because if the focus changes some time before or after, the
1328 // next client receiving focus that has any interest in input will
1329 // be calling through here after that change happens.
Joe Onorato8a9b2202010-02-26 18:56:32 -08001330 Slog.w(TAG, "Starting input on non-focused client " + cs.client
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001331 + " (uid=" + cs.uid + " pid=" + cs.pid + ")");
1332 return null;
1333 }
1334 } catch (RemoteException e) {
1335 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001336
Dianne Hackborn7663d802012-02-24 13:08:49 -08001337 return startInputUncheckedLocked(cs, inputContext, attribute, controlFlags);
1338 }
1339
Yohei Yukawa35d3f372015-11-25 11:07:19 -08001340 InputBindResult startInputUncheckedLocked(@NonNull ClientState cs, IInputContext inputContext,
1341 @NonNull EditorInfo attribute, int controlFlags) {
Dianne Hackborn7663d802012-02-24 13:08:49 -08001342 // If no method is currently selected, do nothing.
1343 if (mCurMethodId == null) {
1344 return mNoBinding;
1345 }
1346
Yohei Yukawad57ba672015-06-08 16:39:46 -07001347 if (!InputMethodUtils.checkIfPackageBelongsToUid(mAppOpsManager, cs.uid,
1348 attribute.packageName)) {
1349 Slog.e(TAG, "Rejecting this client as it reported an invalid package name."
1350 + " uid=" + cs.uid + " package=" + attribute.packageName);
1351 return mNoBinding;
Yohei Yukawa0f3ad12015-04-06 16:48:24 -07001352 }
1353
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001354 if (mCurClient != cs) {
John Spurlocke0980502013-10-25 11:59:29 -04001355 // Was the keyguard locked when switching over to the new client?
1356 mCurClientInKeyguard = isKeyguardLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001357 // If the client is changing, we need to switch over to the new
1358 // one.
Yohei Yukawa33e81792015-11-17 21:14:42 -08001359 unbindCurrentClientLocked(InputMethodClient.UNBIND_REASON_SWITCH_CLIENT);
Yohei Yukawa35d3f372015-11-25 11:07:19 -08001360 if (DEBUG) Slog.v(TAG, "switching to client: client="
John Spurlocke0980502013-10-25 11:59:29 -04001361 + cs.client.asBinder() + " keyguard=" + mCurClientInKeyguard);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001362
1363 // If the screen is on, inform the new client it is active
Yohei Yukawafa6e0a82015-07-23 15:08:59 -07001364 if (mIsInteractive) {
Dianne Hackborna6e41342012-05-22 16:30:34 -07001365 executeOrSendMessage(cs.client, mCaller.obtainMessageIO(
Yohei Yukawafa6e0a82015-07-23 15:08:59 -07001366 MSG_SET_ACTIVE, mIsInteractive ? 1 : 0, cs));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001367 }
1368 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001369
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001370 // Bump up the sequence for this client and attach it.
1371 mCurSeq++;
1372 if (mCurSeq <= 0) mCurSeq = 1;
1373 mCurClient = cs;
1374 mCurInputContext = inputContext;
1375 mCurAttribute = attribute;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001376
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001377 // Check if the input method is changing.
1378 if (mCurId != null && mCurId.equals(mCurMethodId)) {
1379 if (cs.curSession != null) {
1380 // Fast case: if we are already connected to the input method,
1381 // then just return it.
Dianne Hackborn7663d802012-02-24 13:08:49 -08001382 return attachNewInputLocked(
1383 (controlFlags&InputMethodManager.CONTROL_START_INITIAL) != 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001384 }
1385 if (mHaveConnection) {
1386 if (mCurMethod != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001387 // Return to client, and we will get back with it when
1388 // we have had a session made for it.
Jeff Brownc28867a2013-03-26 15:42:39 -07001389 requestClientSessionLocked(cs);
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09001390 return new InputBindResult(null, null, mCurId, mCurSeq,
1391 mCurUserActionNotificationSequenceNumber);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001392 } else if (SystemClock.uptimeMillis()
1393 < (mLastBindTime+TIME_TO_RECONNECT)) {
1394 // In this case we have connected to the service, but
1395 // don't yet have its interface. If it hasn't been too
1396 // long since we did the connection, we'll return to
1397 // the client and wait to get the service interface so
1398 // we can report back. If it has been too long, we want
1399 // to fall through so we can try a disconnect/reconnect
1400 // to see if we can get back in touch with the service.
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09001401 return new InputBindResult(null, null, mCurId, mCurSeq,
1402 mCurUserActionNotificationSequenceNumber);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001403 } else {
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001404 EventLog.writeEvent(EventLogTags.IMF_FORCE_RECONNECT_IME,
1405 mCurMethodId, SystemClock.uptimeMillis()-mLastBindTime, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001406 }
1407 }
1408 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001409
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001410 return startInputInnerLocked();
1411 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001412
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001413 InputBindResult startInputInnerLocked() {
1414 if (mCurMethodId == null) {
1415 return mNoBinding;
1416 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001417
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001418 if (!mSystemReady) {
1419 // If the system is not yet ready, we shouldn't be running third
1420 // party code.
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09001421 return new InputBindResult(null, null, mCurMethodId, mCurSeq,
1422 mCurUserActionNotificationSequenceNumber);
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001423 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001424
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001425 InputMethodInfo info = mMethodMap.get(mCurMethodId);
1426 if (info == null) {
1427 throw new IllegalArgumentException("Unknown id: " + mCurMethodId);
1428 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001429
Yohei Yukawabc7b5262015-11-17 17:38:41 -08001430 unbindCurrentMethodLocked(true);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001431
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001432 mCurIntent = new Intent(InputMethod.SERVICE_INTERFACE);
1433 mCurIntent.setComponent(info.getComponent());
Dianne Hackborndd9b82c2009-09-03 00:18:47 -07001434 mCurIntent.putExtra(Intent.EXTRA_CLIENT_LABEL,
1435 com.android.internal.R.string.input_method_binding_label);
1436 mCurIntent.putExtra(Intent.EXTRA_CLIENT_INTENT, PendingIntent.getActivity(
1437 mContext, 0, new Intent(Settings.ACTION_INPUT_METHOD_SETTINGS), 0));
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001438 if (bindCurrentInputMethodService(mCurIntent, this, Context.BIND_AUTO_CREATE
Dianne Hackbornf0f94d12014-03-17 16:04:21 -07001439 | Context.BIND_NOT_VISIBLE | Context.BIND_NOT_FOREGROUND
1440 | Context.BIND_SHOWING_UI)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001441 mLastBindTime = SystemClock.uptimeMillis();
1442 mHaveConnection = true;
1443 mCurId = info.getId();
1444 mCurToken = new Binder();
1445 try {
Craig Mautnerca0ac712013-03-14 09:43:02 -07001446 if (true || DEBUG) Slog.v(TAG, "Adding window token: " + mCurToken);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001447 mIWindowManager.addWindowToken(mCurToken,
1448 WindowManager.LayoutParams.TYPE_INPUT_METHOD);
1449 } catch (RemoteException e) {
1450 }
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09001451 return new InputBindResult(null, null, mCurId, mCurSeq,
1452 mCurUserActionNotificationSequenceNumber);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001453 } else {
1454 mCurIntent = null;
Joe Onorato8a9b2202010-02-26 18:56:32 -08001455 Slog.w(TAG, "Failure connecting to input method service: "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001456 + mCurIntent);
1457 }
1458 return null;
1459 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001460
satoke7c6998e2011-06-03 17:57:59 +09001461 @Override
Yohei Yukawa35d3f372015-11-25 11:07:19 -08001462 public InputBindResult startInput(
1463 /* @InputMethodClient.StartInputReason */ final int startInputReason,
1464 IInputMethodClient client, IInputContext inputContext, EditorInfo attribute,
1465 int controlFlags) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001466 if (!calledFromValidUser()) {
1467 return null;
1468 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001469 synchronized (mMethodMap) {
Yohei Yukawa35d3f372015-11-25 11:07:19 -08001470 if (DEBUG) {
1471 Slog.v(TAG, "startInput: reason="
1472 + InputMethodClient.getStartInputReason(startInputReason)
1473 + " client = " + client.asBinder()
1474 + " inputContext=" + inputContext
1475 + " attribute=" + attribute
1476 + " controlFlags=#" + Integer.toHexString(controlFlags));
1477 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001478 final long ident = Binder.clearCallingIdentity();
1479 try {
Yohei Yukawa35d3f372015-11-25 11:07:19 -08001480 return startInputLocked(startInputReason, client, inputContext, attribute,
1481 controlFlags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001482 } finally {
1483 Binder.restoreCallingIdentity(ident);
1484 }
1485 }
1486 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001487
satoke7c6998e2011-06-03 17:57:59 +09001488 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001489 public void finishInput(IInputMethodClient client) {
1490 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001491
satoke7c6998e2011-06-03 17:57:59 +09001492 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001493 public void onServiceConnected(ComponentName name, IBinder service) {
1494 synchronized (mMethodMap) {
1495 if (mCurIntent != null && name.equals(mCurIntent.getComponent())) {
1496 mCurMethod = IInputMethod.Stub.asInterface(service);
Dianne Hackborncc278702009-09-02 23:07:23 -07001497 if (mCurToken == null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001498 Slog.w(TAG, "Service connected without a token!");
Yohei Yukawabc7b5262015-11-17 17:38:41 -08001499 unbindCurrentMethodLocked(false);
Dianne Hackborncc278702009-09-02 23:07:23 -07001500 return;
1501 }
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07001502 if (DEBUG) Slog.v(TAG, "Initiating attach with token: " + mCurToken);
Dianne Hackborncc278702009-09-02 23:07:23 -07001503 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
1504 MSG_ATTACH_TOKEN, mCurMethod, mCurToken));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001505 if (mCurClient != null) {
Jeff Brownc28867a2013-03-26 15:42:39 -07001506 clearClientSessionLocked(mCurClient);
1507 requestClientSessionLocked(mCurClient);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001508 }
1509 }
1510 }
1511 }
1512
Jeff Brownc28867a2013-03-26 15:42:39 -07001513 void onSessionCreated(IInputMethod method, IInputMethodSession session,
1514 InputChannel channel) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001515 synchronized (mMethodMap) {
1516 if (mCurMethod != null && method != null
1517 && mCurMethod.asBinder() == method.asBinder()) {
1518 if (mCurClient != null) {
Jeff Brownc28867a2013-03-26 15:42:39 -07001519 clearClientSessionLocked(mCurClient);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001520 mCurClient.curSession = new SessionState(mCurClient,
Jeff Brownc28867a2013-03-26 15:42:39 -07001521 method, session, channel);
Dianne Hackborn7663d802012-02-24 13:08:49 -08001522 InputBindResult res = attachNewInputLocked(true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001523 if (res.method != null) {
1524 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageOO(
Yohei Yukawa33e81792015-11-17 21:14:42 -08001525 MSG_BIND_CLIENT, mCurClient.client, res));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001526 }
Jeff Brownc28867a2013-03-26 15:42:39 -07001527 return;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001528 }
1529 }
1530 }
Jeff Brownc28867a2013-03-26 15:42:39 -07001531
1532 // Session abandoned. Close its associated input channel.
1533 channel.dispose();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001534 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001535
Yohei Yukawabc7b5262015-11-17 17:38:41 -08001536 void unbindCurrentMethodLocked(boolean savePosition) {
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07001537 if (mVisibleBound) {
1538 mContext.unbindService(mVisibleConnection);
1539 mVisibleBound = false;
1540 }
1541
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001542 if (mHaveConnection) {
1543 mContext.unbindService(this);
1544 mHaveConnection = false;
1545 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001546
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001547 if (mCurToken != null) {
1548 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001549 if (DEBUG) Slog.v(TAG, "Removing window token: " + mCurToken);
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07001550 if ((mImeWindowVis & InputMethodService.IME_ACTIVE) != 0 && savePosition) {
satoke0a99412012-05-10 02:22:58 +09001551 // The current IME is shown. Hence an IME switch (transition) is happening.
Seigo Nonaka7309b122015-08-17 18:34:13 -07001552 mWindowManagerInternal.saveLastInputMethodWindowForTransition();
satoke0a99412012-05-10 02:22:58 +09001553 }
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001554 mIWindowManager.removeWindowToken(mCurToken);
1555 } catch (RemoteException e) {
1556 }
1557 mCurToken = null;
1558 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001559
The Android Open Source Project10592532009-03-18 17:39:46 -07001560 mCurId = null;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001561 clearCurMethodLocked();
Yohei Yukawabc7b5262015-11-17 17:38:41 -08001562 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001563
Yohei Yukawa33e81792015-11-17 21:14:42 -08001564 void resetCurrentMethodAndClient(
1565 /* @InputMethodClient.UnbindReason */ final int unbindClientReason) {
Yohei Yukawabc7b5262015-11-17 17:38:41 -08001566 mCurMethodId = null;
1567 unbindCurrentMethodLocked(false);
Yohei Yukawa33e81792015-11-17 21:14:42 -08001568 unbindCurrentClientLocked(unbindClientReason);
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001569 }
Jeff Brownc28867a2013-03-26 15:42:39 -07001570
1571 void requestClientSessionLocked(ClientState cs) {
1572 if (!cs.sessionRequested) {
1573 if (DEBUG) Slog.v(TAG, "Creating new session for client " + cs);
1574 InputChannel[] channels = InputChannel.openInputChannelPair(cs.toString());
1575 cs.sessionRequested = true;
1576 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOOO(
1577 MSG_CREATE_SESSION, mCurMethod, channels[1],
1578 new MethodCallback(this, mCurMethod, channels[0])));
1579 }
1580 }
1581
1582 void clearClientSessionLocked(ClientState cs) {
1583 finishSessionLocked(cs.curSession);
1584 cs.curSession = null;
1585 cs.sessionRequested = false;
1586 }
1587
1588 private void finishSessionLocked(SessionState sessionState) {
1589 if (sessionState != null) {
1590 if (sessionState.session != null) {
1591 try {
1592 sessionState.session.finishSession();
1593 } catch (RemoteException e) {
1594 Slog.w(TAG, "Session failed to close due to remote exception", e);
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001595 updateSystemUiLocked(mCurToken, 0 /* vis */, mBackDisposition);
Jeff Brownc28867a2013-03-26 15:42:39 -07001596 }
1597 sessionState.session = null;
1598 }
1599 if (sessionState.channel != null) {
1600 sessionState.channel.dispose();
1601 sessionState.channel = null;
Devin Taylor0c33ed22010-02-23 13:26:46 -06001602 }
1603 }
1604 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001605
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001606 void clearCurMethodLocked() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001607 if (mCurMethod != null) {
1608 for (ClientState cs : mClients.values()) {
Jeff Brownc28867a2013-03-26 15:42:39 -07001609 clearClientSessionLocked(cs);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001610 }
Devin Taylor0c33ed22010-02-23 13:26:46 -06001611
Jeff Brownc28867a2013-03-26 15:42:39 -07001612 finishSessionLocked(mEnabledSession);
Devin Taylor0c33ed22010-02-23 13:26:46 -06001613 mEnabledSession = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001614 mCurMethod = null;
1615 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07001616 if (mStatusBar != null) {
Jason Monk3e189872016-01-12 09:10:34 -05001617 mStatusBar.setIconVisibility(mSlotIme, false);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001618 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001619 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001620
satoke7c6998e2011-06-03 17:57:59 +09001621 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001622 public void onServiceDisconnected(ComponentName name) {
1623 synchronized (mMethodMap) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001624 if (DEBUG) Slog.v(TAG, "Service disconnected: " + name
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001625 + " mCurIntent=" + mCurIntent);
1626 if (mCurMethod != null && mCurIntent != null
1627 && name.equals(mCurIntent.getComponent())) {
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001628 clearCurMethodLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001629 // We consider this to be a new bind attempt, since the system
1630 // should now try to restart the service for us.
1631 mLastBindTime = SystemClock.uptimeMillis();
1632 mShowRequested = mInputShown;
1633 mInputShown = false;
1634 if (mCurClient != null) {
Yohei Yukawa33e81792015-11-17 21:14:42 -08001635 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIIO(
1636 MSG_UNBIND_CLIENT, InputMethodClient.UNBIND_REASON_DISCONNECT_IME,
1637 mCurSeq, mCurClient.client));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001638 }
1639 }
1640 }
1641 }
1642
satokf9f01002011-05-19 21:31:50 +09001643 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001644 public void updateStatusIcon(IBinder token, String packageName, int iconId) {
1645 long ident = Binder.clearCallingIdentity();
1646 try {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001647 synchronized (mMethodMap) {
Yohei Yukawaa0755742014-06-04 20:28:18 +09001648 if (!calledWithValidToken(token)) {
1649 final int uid = Binder.getCallingUid();
1650 Slog.e(TAG, "Ignoring updateStatusIcon due to an invalid token. uid:" + uid
1651 + " token:" + token);
1652 return;
1653 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001654 if (iconId == 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001655 if (DEBUG) Slog.d(TAG, "hide the small icon for the input method");
Dianne Hackborn661cd522011-08-22 00:26:20 -07001656 if (mStatusBar != null) {
Jason Monk3e189872016-01-12 09:10:34 -05001657 mStatusBar.setIconVisibility(mSlotIme, false);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001658 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001659 } else if (packageName != null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001660 if (DEBUG) Slog.d(TAG, "show a small icon for the input method");
Svetoslav Ganov6179ea32011-06-28 01:12:41 -07001661 CharSequence contentDescription = null;
1662 try {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001663 // Use PackageManager to load label
1664 final PackageManager packageManager = mContext.getPackageManager();
Svetoslav Ganov6179ea32011-06-28 01:12:41 -07001665 contentDescription = packageManager.getApplicationLabel(
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001666 mIPackageManager.getApplicationInfo(packageName, 0,
1667 mSettings.getCurrentUserId()));
1668 } catch (RemoteException e) {
Svetoslav Ganov6179ea32011-06-28 01:12:41 -07001669 /* ignore */
1670 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07001671 if (mStatusBar != null) {
Jason Monk3e189872016-01-12 09:10:34 -05001672 mStatusBar.setIcon(mSlotIme, packageName, iconId, 0,
Dianne Hackborn661cd522011-08-22 00:26:20 -07001673 contentDescription != null
1674 ? contentDescription.toString() : null);
Jason Monk3e189872016-01-12 09:10:34 -05001675 mStatusBar.setIconVisibility(mSlotIme, true);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001676 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001677 }
1678 }
1679 } finally {
1680 Binder.restoreCallingIdentity(ident);
1681 }
1682 }
1683
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001684 private boolean shouldShowImeSwitcherLocked(int visibility) {
satok7cfc0ed2011-06-20 21:29:36 +09001685 if (!mShowOngoingImeSwitcherForPhones) return false;
Jason Monk807ef762014-05-08 15:47:46 -04001686 if (mSwitchingDialog != null) return false;
satok2c93efc2012-04-02 19:33:47 +09001687 if (isScreenLocked()) return false;
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001688 if ((visibility & InputMethodService.IME_ACTIVE) == 0) return false;
Seigo Nonaka7309b122015-08-17 18:34:13 -07001689 if (mWindowManagerInternal.isHardKeyboardAvailable()) {
Yohei Yukawac6c7cd22015-05-12 15:00:33 -07001690 // When physical keyboard is attached, we show the ime switcher (or notification if
1691 // NavBar is not available) because SHOW_IME_WITH_HARD_KEYBOARD settings currently
1692 // exists in the IME switcher dialog. Might be OK to remove this condition once
1693 // SHOW_IME_WITH_HARD_KEYBOARD settings finds a good place to live.
1694 return true;
1695 }
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001696 if ((visibility & InputMethodService.IME_VISIBLE) == 0) return false;
Yohei Yukawac6c7cd22015-05-12 15:00:33 -07001697
1698 List<InputMethodInfo> imis = mSettings.getEnabledInputMethodListLocked();
1699 final int N = imis.size();
1700 if (N > 2) return true;
1701 if (N < 1) return false;
1702 int nonAuxCount = 0;
1703 int auxCount = 0;
1704 InputMethodSubtype nonAuxSubtype = null;
1705 InputMethodSubtype auxSubtype = null;
1706 for(int i = 0; i < N; ++i) {
1707 final InputMethodInfo imi = imis.get(i);
1708 final List<InputMethodSubtype> subtypes =
1709 mSettings.getEnabledInputMethodSubtypeListLocked(mContext, imi, true);
1710 final int subtypeCount = subtypes.size();
1711 if (subtypeCount == 0) {
1712 ++nonAuxCount;
1713 } else {
1714 for (int j = 0; j < subtypeCount; ++j) {
1715 final InputMethodSubtype subtype = subtypes.get(j);
1716 if (!subtype.isAuxiliary()) {
1717 ++nonAuxCount;
1718 nonAuxSubtype = subtype;
1719 } else {
1720 ++auxCount;
1721 auxSubtype = subtype;
satok7cfc0ed2011-06-20 21:29:36 +09001722 }
1723 }
satok7cfc0ed2011-06-20 21:29:36 +09001724 }
1725 }
Yohei Yukawac6c7cd22015-05-12 15:00:33 -07001726 if (nonAuxCount > 1 || auxCount > 1) {
1727 return true;
1728 } else if (nonAuxCount == 1 && auxCount == 1) {
1729 if (nonAuxSubtype != null && auxSubtype != null
1730 && (nonAuxSubtype.getLocale().equals(auxSubtype.getLocale())
1731 || auxSubtype.overridesImplicitlyEnabledSubtype()
1732 || nonAuxSubtype.overridesImplicitlyEnabledSubtype())
1733 && nonAuxSubtype.containsExtraValueKey(TAG_TRY_SUPPRESSING_IME_SWITCHER)) {
1734 return false;
1735 }
1736 return true;
1737 }
1738 return false;
satok7cfc0ed2011-06-20 21:29:36 +09001739 }
1740
John Spurlocke0980502013-10-25 11:59:29 -04001741 private boolean isKeyguardLocked() {
1742 return mKeyguardManager != null && mKeyguardManager.isKeyguardLocked();
1743 }
1744
satokdbf29502011-08-25 15:28:23 +09001745 @SuppressWarnings("deprecation")
satokf9f01002011-05-19 21:31:50 +09001746 @Override
Joe Onorato857fd9b2011-01-27 15:08:35 -08001747 public void setImeWindowStatus(IBinder token, int vis, int backDisposition) {
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001748 if (!calledWithValidToken(token)) {
1749 final int uid = Binder.getCallingUid();
1750 Slog.e(TAG, "Ignoring setImeWindowStatus due to an invalid token. uid:" + uid
1751 + " token:" + token);
1752 return;
1753 }
1754
1755 synchronized (mMethodMap) {
1756 mImeWindowVis = vis;
1757 mBackDisposition = backDisposition;
1758 updateSystemUiLocked(token, vis, backDisposition);
1759 }
1760 }
1761
1762 private void updateSystemUi(IBinder token, int vis, int backDisposition) {
1763 synchronized (mMethodMap) {
1764 updateSystemUiLocked(token, vis, backDisposition);
1765 }
1766 }
1767
1768 // Caution! This method is called in this class. Handle multi-user carefully
1769 private void updateSystemUiLocked(IBinder token, int vis, int backDisposition) {
1770 if (!calledWithValidToken(token)) {
1771 final int uid = Binder.getCallingUid();
1772 Slog.e(TAG, "Ignoring updateSystemUiLocked due to an invalid token. uid:" + uid
1773 + " token:" + token);
1774 return;
1775 }
1776
1777 // TODO: Move this clearing calling identity block to setImeWindowStatus after making sure
1778 // all updateSystemUi happens on system previlege.
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001779 final long ident = Binder.clearCallingIdentity();
satok06487a52010-10-29 11:37:18 +09001780 try {
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001781 // apply policy for binder calls
1782 if (vis != 0 && isKeyguardLocked() && !mCurClientInKeyguard) {
1783 vis = 0;
satok06487a52010-10-29 11:37:18 +09001784 }
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001785 // mImeWindowVis should be updated before calling shouldShowImeSwitcherLocked().
1786 final boolean needsToShowImeSwitcher = shouldShowImeSwitcherLocked(vis);
1787 if (mStatusBar != null) {
1788 mStatusBar.setImeWindowStatus(token, vis, backDisposition,
1789 needsToShowImeSwitcher);
1790 }
1791 final InputMethodInfo imi = mMethodMap.get(mCurMethodId);
1792 if (imi != null && needsToShowImeSwitcher) {
1793 // Used to load label
1794 final CharSequence title = mRes.getText(
1795 com.android.internal.R.string.select_input_method);
1796 final CharSequence summary = InputMethodUtils.getImeAndSubtypeDisplayName(
1797 mContext, imi, mCurrentSubtype);
Chris Wren1ce4b6d2015-06-11 10:19:43 -04001798 mImeSwitcherNotification.setContentTitle(title)
1799 .setContentText(summary)
1800 .setContentIntent(mImeSwitchPendingIntent);
Seigo Nonaka7309b122015-08-17 18:34:13 -07001801 try {
1802 if ((mNotificationManager != null)
1803 && !mIWindowManager.hasNavigationBar()) {
1804 if (DEBUG) {
1805 Slog.d(TAG, "--- show notification: label = " + summary);
1806 }
1807 mNotificationManager.notifyAsUser(null,
1808 com.android.internal.R.string.select_input_method,
1809 mImeSwitcherNotification.build(), UserHandle.ALL);
1810 mNotificationShown = true;
Dianne Hackborn661cd522011-08-22 00:26:20 -07001811 }
Seigo Nonaka7309b122015-08-17 18:34:13 -07001812 } catch (RemoteException e) {
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001813 }
1814 } else {
1815 if (mNotificationShown && mNotificationManager != null) {
1816 if (DEBUG) {
1817 Slog.d(TAG, "--- hide notification");
satok7cfc0ed2011-06-20 21:29:36 +09001818 }
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001819 mNotificationManager.cancelAsUser(null,
1820 com.android.internal.R.string.select_input_method, UserHandle.ALL);
1821 mNotificationShown = false;
satok7cfc0ed2011-06-20 21:29:36 +09001822 }
satok06487a52010-10-29 11:37:18 +09001823 }
1824 } finally {
1825 Binder.restoreCallingIdentity(ident);
1826 }
1827 }
1828
satoke7c6998e2011-06-03 17:57:59 +09001829 @Override
satokf9f01002011-05-19 21:31:50 +09001830 public void registerSuggestionSpansForNotification(SuggestionSpan[] spans) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001831 if (!calledFromValidUser()) {
1832 return;
1833 }
satokf9f01002011-05-19 21:31:50 +09001834 synchronized (mMethodMap) {
1835 final InputMethodInfo currentImi = mMethodMap.get(mCurMethodId);
1836 for (int i = 0; i < spans.length; ++i) {
1837 SuggestionSpan ss = spans[i];
satok42c5a162011-05-26 16:46:14 +09001838 if (!TextUtils.isEmpty(ss.getNotificationTargetClassName())) {
satokf9f01002011-05-19 21:31:50 +09001839 mSecureSuggestionSpans.put(ss, currentImi);
1840 }
1841 }
1842 }
1843 }
1844
satoke7c6998e2011-06-03 17:57:59 +09001845 @Override
satokf9f01002011-05-19 21:31:50 +09001846 public boolean notifySuggestionPicked(SuggestionSpan span, String originalString, int index) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001847 if (!calledFromValidUser()) {
1848 return false;
1849 }
satokf9f01002011-05-19 21:31:50 +09001850 synchronized (mMethodMap) {
1851 final InputMethodInfo targetImi = mSecureSuggestionSpans.get(span);
1852 // TODO: Do not send the intent if the process of the targetImi is already dead.
1853 if (targetImi != null) {
1854 final String[] suggestions = span.getSuggestions();
1855 if (index < 0 || index >= suggestions.length) return false;
satok42c5a162011-05-26 16:46:14 +09001856 final String className = span.getNotificationTargetClassName();
satokf9f01002011-05-19 21:31:50 +09001857 final Intent intent = new Intent();
1858 // Ensures that only a class in the original IME package will receive the
1859 // notification.
satok42c5a162011-05-26 16:46:14 +09001860 intent.setClassName(targetImi.getPackageName(), className);
satokf9f01002011-05-19 21:31:50 +09001861 intent.setAction(SuggestionSpan.ACTION_SUGGESTION_PICKED);
1862 intent.putExtra(SuggestionSpan.SUGGESTION_SPAN_PICKED_BEFORE, originalString);
1863 intent.putExtra(SuggestionSpan.SUGGESTION_SPAN_PICKED_AFTER, suggestions[index]);
1864 intent.putExtra(SuggestionSpan.SUGGESTION_SPAN_PICKED_HASHCODE, span.hashCode());
Amith Yamasanif043de92012-10-24 06:42:40 -07001865 final long ident = Binder.clearCallingIdentity();
1866 try {
1867 mContext.sendBroadcastAsUser(intent, UserHandle.CURRENT);
1868 } finally {
1869 Binder.restoreCallingIdentity(ident);
1870 }
satokf9f01002011-05-19 21:31:50 +09001871 return true;
1872 }
1873 }
1874 return false;
1875 }
1876
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001877 void updateFromSettingsLocked(boolean enabledMayChange) {
Michael Wright7b5a96b2014-08-09 19:28:42 -07001878 updateInputMethodsFromSettingsLocked(enabledMayChange);
1879 updateKeyboardFromSettingsLocked();
1880 }
1881
1882 void updateInputMethodsFromSettingsLocked(boolean enabledMayChange) {
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001883 if (enabledMayChange) {
1884 List<InputMethodInfo> enabled = mSettings.getEnabledInputMethodListLocked();
1885 for (int i=0; i<enabled.size(); i++) {
1886 // We allow the user to select "disabled until used" apps, so if they
1887 // are enabling one of those here we now need to make it enabled.
1888 InputMethodInfo imm = enabled.get(i);
1889 try {
1890 ApplicationInfo ai = mIPackageManager.getApplicationInfo(imm.getPackageName(),
1891 PackageManager.GET_DISABLED_UNTIL_USED_COMPONENTS,
1892 mSettings.getCurrentUserId());
Satoshi Kataoka7987a312013-04-17 18:59:33 +09001893 if (ai != null && ai.enabledSetting
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001894 == PackageManager.COMPONENT_ENABLED_STATE_DISABLED_UNTIL_USED) {
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +09001895 if (DEBUG) {
1896 Slog.d(TAG, "Update state(" + imm.getId()
1897 + "): DISABLED_UNTIL_USED -> DEFAULT");
1898 }
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001899 mIPackageManager.setApplicationEnabledSetting(imm.getPackageName(),
1900 PackageManager.COMPONENT_ENABLED_STATE_DEFAULT,
Dianne Hackborn3fa3c28a2013-03-26 16:15:41 -07001901 PackageManager.DONT_KILL_APP, mSettings.getCurrentUserId(),
1902 mContext.getBasePackageName());
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001903 }
1904 } catch (RemoteException e) {
1905 }
1906 }
1907 }
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001908 // We are assuming that whoever is changing DEFAULT_INPUT_METHOD and
1909 // ENABLED_INPUT_METHODS is taking care of keeping them correctly in
1910 // sync, so we will never have a DEFAULT_INPUT_METHOD that is not
1911 // enabled.
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001912 String id = mSettings.getSelectedInputMethod();
satok03eb319a2010-11-11 18:17:42 +09001913 // There is no input method selected, try to choose new applicable input method.
1914 if (TextUtils.isEmpty(id) && chooseNewDefaultIMELocked()) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001915 id = mSettings.getSelectedInputMethod();
satok03eb319a2010-11-11 18:17:42 +09001916 }
1917 if (!TextUtils.isEmpty(id)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001918 try {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001919 setInputMethodLocked(id, mSettings.getSelectedInputMethodSubtypeId(id));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001920 } catch (IllegalArgumentException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001921 Slog.w(TAG, "Unknown input method from prefs: " + id, e);
Yohei Yukawa33e81792015-11-17 21:14:42 -08001922 resetCurrentMethodAndClient(InputMethodClient.UNBIND_REASON_SWITCH_IME_FAILED);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001923 }
satokf3db1af2010-11-23 13:34:33 +09001924 mShortcutInputMethodsAndSubtypes.clear();
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001925 } else {
1926 // There is no longer an input method set, so stop any current one.
Yohei Yukawa33e81792015-11-17 21:14:42 -08001927 resetCurrentMethodAndClient(InputMethodClient.UNBIND_REASON_NO_IME);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001928 }
Yohei Yukawa3d46bab2014-05-30 18:10:18 +09001929 // Here is not the perfect place to reset the switching controller. Ideally
1930 // mSwitchingController and mSettings should be able to share the same state.
1931 // TODO: Make sure that mSwitchingController and mSettings are sharing the
1932 // the same enabled IMEs list.
1933 mSwitchingController.resetCircularListLocked(mContext);
Michael Wright7b5a96b2014-08-09 19:28:42 -07001934
1935 }
1936
1937 public void updateKeyboardFromSettingsLocked() {
1938 mShowImeWithHardKeyboard = mSettings.isShowImeWithHardKeyboardEnabled();
1939 if (mSwitchingDialog != null
1940 && mSwitchingDialogTitleView != null
1941 && mSwitchingDialog.isShowing()) {
1942 final Switch hardKeySwitch = (Switch)mSwitchingDialogTitleView.findViewById(
1943 com.android.internal.R.id.hard_keyboard_switch);
1944 hardKeySwitch.setChecked(mShowImeWithHardKeyboard);
1945 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001946 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001947
Yohei Yukawab097b822015-12-01 10:43:08 -08001948 private void notifyInputMethodSubtypeChanged(final int userId,
1949 @Nullable final InputMethodInfo inputMethodInfo,
1950 @Nullable final InputMethodSubtype subtype) {
1951 final InputManagerInternal inputManagerInternal =
1952 LocalServices.getService(InputManagerInternal.class);
1953 if (inputManagerInternal != null) {
1954 inputManagerInternal.onInputMethodSubtypeChanged(userId, inputMethodInfo, subtype);
1955 }
1956 }
1957
satokab751aa2010-09-14 19:17:36 +09001958 /* package */ void setInputMethodLocked(String id, int subtypeId) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001959 InputMethodInfo info = mMethodMap.get(id);
1960 if (info == null) {
satok913a8922010-08-26 21:53:41 +09001961 throw new IllegalArgumentException("Unknown id: " + id);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001962 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001963
Yohei Yukawae63b5fa2014-09-19 13:14:55 +09001964 if (mCurClient != null && mCurAttribute != null) {
Yohei Yukawa0f3ad12015-04-06 16:48:24 -07001965 // We have already made sure that the package name belongs to the application's UID.
1966 // No further UID check is required.
1967 if (SystemConfig.getInstance().getFixedImeApps().contains(mCurAttribute.packageName)) {
1968 return;
Yohei Yukawae63b5fa2014-09-19 13:14:55 +09001969 }
1970 }
1971
satokd81e9502012-05-21 12:58:45 +09001972 // See if we need to notify a subtype change within the same IME.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001973 if (id.equals(mCurMethodId)) {
satokd81e9502012-05-21 12:58:45 +09001974 final int subtypeCount = info.getSubtypeCount();
1975 if (subtypeCount <= 0) {
1976 return;
satokcd7cd292010-11-20 15:46:23 +09001977 }
satokd81e9502012-05-21 12:58:45 +09001978 final InputMethodSubtype oldSubtype = mCurrentSubtype;
1979 final InputMethodSubtype newSubtype;
1980 if (subtypeId >= 0 && subtypeId < subtypeCount) {
1981 newSubtype = info.getSubtypeAt(subtypeId);
1982 } else {
1983 // If subtype is null, try to find the most applicable one from
1984 // getCurrentInputMethodSubtype.
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001985 newSubtype = getCurrentInputMethodSubtypeLocked();
satokd81e9502012-05-21 12:58:45 +09001986 }
1987 if (newSubtype == null || oldSubtype == null) {
1988 Slog.w(TAG, "Illegal subtype state: old subtype = " + oldSubtype
1989 + ", new subtype = " + newSubtype);
1990 return;
1991 }
1992 if (newSubtype != oldSubtype) {
1993 setSelectedInputMethodAndSubtypeLocked(info, subtypeId, true);
1994 if (mCurMethod != null) {
1995 try {
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001996 updateSystemUiLocked(mCurToken, mImeWindowVis, mBackDisposition);
satokd81e9502012-05-21 12:58:45 +09001997 mCurMethod.changeInputMethodSubtype(newSubtype);
1998 } catch (RemoteException e) {
1999 Slog.w(TAG, "Failed to call changeInputMethodSubtype");
Yohei Yukawab097b822015-12-01 10:43:08 -08002000 return;
satokab751aa2010-09-14 19:17:36 +09002001 }
2002 }
Yohei Yukawab097b822015-12-01 10:43:08 -08002003 notifyInputMethodSubtypeChanged(mSettings.getCurrentUserId(), info, newSubtype);
satokab751aa2010-09-14 19:17:36 +09002004 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002005 return;
2006 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002007
satokd81e9502012-05-21 12:58:45 +09002008 // Changing to a different IME.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002009 final long ident = Binder.clearCallingIdentity();
2010 try {
satokab751aa2010-09-14 19:17:36 +09002011 // Set a subtype to this input method.
2012 // subtypeId the name of a subtype which will be set.
satok723a27e2010-11-11 14:58:11 +09002013 setSelectedInputMethodAndSubtypeLocked(info, subtypeId, false);
2014 // mCurMethodId should be updated after setSelectedInputMethodAndSubtypeLocked()
2015 // because mCurMethodId is stored as a history in
2016 // setSelectedInputMethodAndSubtypeLocked().
2017 mCurMethodId = id;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002018
2019 if (ActivityManagerNative.isSystemReady()) {
2020 Intent intent = new Intent(Intent.ACTION_INPUT_METHOD_CHANGED);
Dianne Hackborn1c633fc2009-12-08 19:45:14 -08002021 intent.addFlags(Intent.FLAG_RECEIVER_REPLACE_PENDING);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002022 intent.putExtra("input_method_id", id);
Amith Yamasanicd757062012-10-19 18:23:52 -07002023 mContext.sendBroadcastAsUser(intent, UserHandle.CURRENT);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002024 }
Yohei Yukawa33e81792015-11-17 21:14:42 -08002025 unbindCurrentClientLocked(InputMethodClient.UNBIND_REASON_SWITCH_IME);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002026 } finally {
2027 Binder.restoreCallingIdentity(ident);
2028 }
Yohei Yukawab097b822015-12-01 10:43:08 -08002029
2030 notifyInputMethodSubtypeChanged(mSettings.getCurrentUserId(), info,
2031 getCurrentInputMethodSubtypeLocked());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002032 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002033
satok42c5a162011-05-26 16:46:14 +09002034 @Override
The Android Open Source Project4df24232009-03-05 14:34:35 -08002035 public boolean showSoftInput(IInputMethodClient client, int flags,
2036 ResultReceiver resultReceiver) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002037 if (!calledFromValidUser()) {
2038 return false;
2039 }
Dianne Hackborncef65ee2010-09-30 18:27:22 -07002040 int uid = Binder.getCallingUid();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002041 long ident = Binder.clearCallingIdentity();
2042 try {
2043 synchronized (mMethodMap) {
2044 if (mCurClient == null || client == null
2045 || mCurClient.client.asBinder() != client.asBinder()) {
2046 try {
2047 // We need to check if this is the current client with
2048 // focus in the window manager, to allow this call to
2049 // be made before input is started in it.
2050 if (!mIWindowManager.inputMethodClientHasFocus(client)) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07002051 Slog.w(TAG, "Ignoring showSoftInput of uid " + uid + ": " + client);
The Android Open Source Project4df24232009-03-05 14:34:35 -08002052 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002053 }
2054 } catch (RemoteException e) {
The Android Open Source Project4df24232009-03-05 14:34:35 -08002055 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002056 }
2057 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002058
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002059 if (DEBUG) Slog.v(TAG, "Client requesting input be shown");
The Android Open Source Project4df24232009-03-05 14:34:35 -08002060 return showCurrentInputLocked(flags, resultReceiver);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002061 }
2062 } finally {
2063 Binder.restoreCallingIdentity(ident);
2064 }
2065 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002066
The Android Open Source Project4df24232009-03-05 14:34:35 -08002067 boolean showCurrentInputLocked(int flags, ResultReceiver resultReceiver) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002068 mShowRequested = true;
Anna Galusza9b278112016-01-04 11:37:37 -08002069 if (mAccessibilityRequestingNoSoftKeyboard) {
2070 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002071 }
Anna Galusza9b278112016-01-04 11:37:37 -08002072
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002073 if ((flags&InputMethodManager.SHOW_FORCED) != 0) {
2074 mShowExplicitlyRequested = true;
2075 mShowForced = true;
Anna Galusza9b278112016-01-04 11:37:37 -08002076 } else if ((flags&InputMethodManager.SHOW_IMPLICIT) == 0) {
2077 mShowExplicitlyRequested = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002078 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002079
Dianne Hackborncc278702009-09-02 23:07:23 -07002080 if (!mSystemReady) {
2081 return false;
2082 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002083
The Android Open Source Project4df24232009-03-05 14:34:35 -08002084 boolean res = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002085 if (mCurMethod != null) {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002086 if (DEBUG) Slog.d(TAG, "showCurrentInputLocked: mCurToken=" + mCurToken);
The Android Open Source Project4df24232009-03-05 14:34:35 -08002087 executeOrSendMessage(mCurMethod, mCaller.obtainMessageIOO(
2088 MSG_SHOW_SOFT_INPUT, getImeShowFlags(), mCurMethod,
2089 resultReceiver));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002090 mInputShown = true;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07002091 if (mHaveConnection && !mVisibleBound) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002092 bindCurrentInputMethodService(
Dianne Hackbornf0f94d12014-03-17 16:04:21 -07002093 mCurIntent, mVisibleConnection, Context.BIND_AUTO_CREATE
Dianne Hackbornd69e4c12015-04-24 09:54:54 -07002094 | Context.BIND_TREAT_LIKE_ACTIVITY
2095 | Context.BIND_FOREGROUND_SERVICE);
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07002096 mVisibleBound = true;
2097 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002098 res = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002099 } else if (mHaveConnection && SystemClock.uptimeMillis()
satok59b424c2011-09-30 17:21:46 +09002100 >= (mLastBindTime+TIME_TO_RECONNECT)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002101 // The client has asked to have the input method shown, but
2102 // we have been sitting here too long with a connection to the
2103 // service and no interface received, so let's disconnect/connect
2104 // to try to prod things along.
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002105 EventLog.writeEvent(EventLogTags.IMF_FORCE_RECONNECT_IME, mCurMethodId,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002106 SystemClock.uptimeMillis()-mLastBindTime,1);
satok59b424c2011-09-30 17:21:46 +09002107 Slog.w(TAG, "Force disconnect/connect to the IME in showCurrentInputLocked()");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002108 mContext.unbindService(this);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002109 bindCurrentInputMethodService(mCurIntent, this, Context.BIND_AUTO_CREATE
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07002110 | Context.BIND_NOT_VISIBLE);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002111 } else {
2112 if (DEBUG) {
2113 Slog.d(TAG, "Can't show input: connection = " + mHaveConnection + ", time = "
2114 + ((mLastBindTime+TIME_TO_RECONNECT) - SystemClock.uptimeMillis()));
2115 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002116 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002117
The Android Open Source Project4df24232009-03-05 14:34:35 -08002118 return res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002119 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002120
satok42c5a162011-05-26 16:46:14 +09002121 @Override
The Android Open Source Project4df24232009-03-05 14:34:35 -08002122 public boolean hideSoftInput(IInputMethodClient client, int flags,
2123 ResultReceiver resultReceiver) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002124 if (!calledFromValidUser()) {
2125 return false;
2126 }
Dianne Hackborncef65ee2010-09-30 18:27:22 -07002127 int uid = Binder.getCallingUid();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002128 long ident = Binder.clearCallingIdentity();
2129 try {
2130 synchronized (mMethodMap) {
2131 if (mCurClient == null || client == null
2132 || mCurClient.client.asBinder() != client.asBinder()) {
2133 try {
2134 // We need to check if this is the current client with
2135 // focus in the window manager, to allow this call to
2136 // be made before input is started in it.
2137 if (!mIWindowManager.inputMethodClientHasFocus(client)) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07002138 if (DEBUG) Slog.w(TAG, "Ignoring hideSoftInput of uid "
2139 + uid + ": " + client);
The Android Open Source Project4df24232009-03-05 14:34:35 -08002140 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002141 }
2142 } catch (RemoteException e) {
The Android Open Source Project4df24232009-03-05 14:34:35 -08002143 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002144 }
2145 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002146
Joe Onorato8a9b2202010-02-26 18:56:32 -08002147 if (DEBUG) Slog.v(TAG, "Client requesting input be hidden");
The Android Open Source Project4df24232009-03-05 14:34:35 -08002148 return hideCurrentInputLocked(flags, resultReceiver);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002149 }
2150 } finally {
2151 Binder.restoreCallingIdentity(ident);
2152 }
2153 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002154
The Android Open Source Project4df24232009-03-05 14:34:35 -08002155 boolean hideCurrentInputLocked(int flags, ResultReceiver resultReceiver) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002156 if ((flags&InputMethodManager.HIDE_IMPLICIT_ONLY) != 0
2157 && (mShowExplicitlyRequested || mShowForced)) {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002158 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 -08002159 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002160 }
2161 if (mShowForced && (flags&InputMethodManager.HIDE_NOT_ALWAYS) != 0) {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002162 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 -08002163 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002164 }
Seigo Nonakaec928652015-06-10 15:31:20 +09002165
2166 // There is a chance that IMM#hideSoftInput() is called in a transient state where
2167 // IMMS#InputShown is already updated to be true whereas IMMS#mImeWindowVis is still waiting
2168 // to be updated with the new value sent from IME process. Even in such a transient state
2169 // historically we have accepted an incoming call of IMM#hideSoftInput() from the
2170 // application process as a valid request, and have even promised such a behavior with CTS
2171 // since Android Eclair. That's why we need to accept IMM#hideSoftInput() even when only
2172 // IMMS#InputShown indicates that the software keyboard is shown.
2173 // TODO: Clean up, IMMS#mInputShown, IMMS#mImeWindowVis and mShowRequested.
2174 final boolean shouldHideSoftInput = (mCurMethod != null) && (mInputShown ||
2175 (mImeWindowVis & InputMethodService.IME_ACTIVE) != 0);
The Android Open Source Project4df24232009-03-05 14:34:35 -08002176 boolean res;
Seigo Nonakaec928652015-06-10 15:31:20 +09002177 if (shouldHideSoftInput) {
2178 // The IME will report its visible state again after the following message finally
2179 // delivered to the IME process as an IPC. Hence the inconsistency between
2180 // IMMS#mInputShown and IMMS#mImeWindowVis should be resolved spontaneously in
2181 // the final state.
The Android Open Source Project4df24232009-03-05 14:34:35 -08002182 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
2183 MSG_HIDE_SOFT_INPUT, mCurMethod, resultReceiver));
2184 res = true;
2185 } else {
2186 res = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002187 }
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07002188 if (mHaveConnection && mVisibleBound) {
2189 mContext.unbindService(mVisibleConnection);
2190 mVisibleBound = false;
2191 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002192 mInputShown = false;
2193 mShowRequested = false;
2194 mShowExplicitlyRequested = false;
2195 mShowForced = false;
The Android Open Source Project4df24232009-03-05 14:34:35 -08002196 return res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002197 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002198
satok42c5a162011-05-26 16:46:14 +09002199 @Override
Yohei Yukawa35d3f372015-11-25 11:07:19 -08002200 public InputBindResult windowGainedFocus(
2201 /* @InputMethodClient.StartInputReason */ final int startInputReason,
2202 IInputMethodClient client, IBinder windowToken, int controlFlags, int softInputMode,
2203 int windowFlags, EditorInfo attribute, IInputContext inputContext) {
Satoshi Kataoka8d033052012-11-19 17:30:40 +09002204 // Needs to check the validity before clearing calling identity
2205 final boolean calledFromValidUser = calledFromValidUser();
Dianne Hackborn7663d802012-02-24 13:08:49 -08002206 InputBindResult res = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002207 long ident = Binder.clearCallingIdentity();
2208 try {
2209 synchronized (mMethodMap) {
Yohei Yukawa35d3f372015-11-25 11:07:19 -08002210 if (DEBUG) Slog.v(TAG, "windowGainedFocus: reason="
2211 + InputMethodClient.getStartInputReason(startInputReason)
2212 + " client=" + client.asBinder()
2213 + " inputContext=" + inputContext
2214 + " attribute=" + attribute
Dianne Hackborn7663d802012-02-24 13:08:49 -08002215 + " controlFlags=#" + Integer.toHexString(controlFlags)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002216 + " softInputMode=#" + Integer.toHexString(softInputMode)
Dianne Hackborn7663d802012-02-24 13:08:49 -08002217 + " windowFlags=#" + Integer.toHexString(windowFlags));
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002218
Dianne Hackborn7663d802012-02-24 13:08:49 -08002219 ClientState cs = mClients.get(client.asBinder());
2220 if (cs == null) {
2221 throw new IllegalArgumentException("unknown client "
2222 + client.asBinder());
2223 }
2224
2225 try {
2226 if (!mIWindowManager.inputMethodClientHasFocus(cs.client)) {
2227 // Check with the window manager to make sure this client actually
2228 // has a window with focus. If not, reject. This is thread safe
2229 // because if the focus changes some time before or after, the
2230 // next client receiving focus that has any interest in input will
2231 // be calling through here after that change happens.
2232 Slog.w(TAG, "Focus gain on non-focused client " + cs.client
2233 + " (uid=" + cs.uid + " pid=" + cs.pid + ")");
2234 return null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002235 }
Dianne Hackborn7663d802012-02-24 13:08:49 -08002236 } catch (RemoteException e) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002237 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002238
Satoshi Kataoka8d033052012-11-19 17:30:40 +09002239 if (!calledFromValidUser) {
2240 Slog.w(TAG, "A background user is requesting window. Hiding IME.");
2241 Slog.w(TAG, "If you want to interect with IME, you need "
2242 + "android.permission.INTERACT_ACROSS_USERS_FULL");
2243 hideCurrentInputLocked(0, null);
2244 return null;
2245 }
2246
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07002247 if (mCurFocusedWindow == windowToken) {
Dianne Hackbornac920872012-05-22 11:49:49 -07002248 Slog.w(TAG, "Window already focused, ignoring focus gain of: " + client
Satoshi Kataoka35739502012-10-02 19:00:26 +09002249 + " attribute=" + attribute + ", token = " + windowToken);
Dianne Hackborn7663d802012-02-24 13:08:49 -08002250 if (attribute != null) {
2251 return startInputUncheckedLocked(cs, inputContext, attribute,
2252 controlFlags);
2253 }
2254 return null;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07002255 }
2256 mCurFocusedWindow = windowToken;
Yohei Yukawae39d4ed2015-11-19 03:38:49 -08002257 mCurFocusedWindowClient = cs;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002258
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08002259 // Should we auto-show the IME even if the caller has not
2260 // specified what should be done with it?
2261 // We only do this automatically if the window can resize
2262 // to accommodate the IME (so what the user sees will give
2263 // them good context without input information being obscured
2264 // by the IME) or if running on a large screen where there
2265 // is more room for the target window + IME.
2266 final boolean doAutoShow =
2267 (softInputMode & WindowManager.LayoutParams.SOFT_INPUT_MASK_ADJUST)
2268 == WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE
2269 || mRes.getConfiguration().isLayoutSizeAtLeast(
2270 Configuration.SCREENLAYOUT_SIZE_LARGE);
Dianne Hackborn7663d802012-02-24 13:08:49 -08002271 final boolean isTextEditor =
2272 (controlFlags&InputMethodManager.CONTROL_WINDOW_IS_TEXT_EDITOR) != 0;
2273
2274 // We want to start input before showing the IME, but after closing
2275 // it. We want to do this after closing it to help the IME disappear
2276 // more quickly (not get stuck behind it initializing itself for the
2277 // new focused input, even if its window wants to hide the IME).
2278 boolean didStart = false;
Yohei Yukawa0f3ad12015-04-06 16:48:24 -07002279
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002280 switch (softInputMode&WindowManager.LayoutParams.SOFT_INPUT_MASK_STATE) {
2281 case WindowManager.LayoutParams.SOFT_INPUT_STATE_UNSPECIFIED:
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08002282 if (!isTextEditor || !doAutoShow) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002283 if (WindowManager.LayoutParams.mayUseInputMethod(windowFlags)) {
2284 // There is no focus view, and this window will
2285 // be behind any soft input window, so hide the
2286 // soft input window if it is shown.
Joe Onorato8a9b2202010-02-26 18:56:32 -08002287 if (DEBUG) Slog.v(TAG, "Unspecified window will hide input");
The Android Open Source Project4df24232009-03-05 14:34:35 -08002288 hideCurrentInputLocked(InputMethodManager.HIDE_NOT_ALWAYS, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002289 }
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08002290 } else if (isTextEditor && doAutoShow && (softInputMode &
2291 WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002292 // There is a focus view, and we are navigating forward
2293 // into the window, so show the input window for the user.
Dianne Hackborn7663d802012-02-24 13:08:49 -08002294 // We only do this automatically if the window can resize
2295 // to accommodate the IME (so what the user sees will give
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08002296 // them good context without input information being obscured
2297 // by the IME) or if running on a large screen where there
2298 // is more room for the target window + IME.
Joe Onorato8a9b2202010-02-26 18:56:32 -08002299 if (DEBUG) Slog.v(TAG, "Unspecified window will show input");
Dianne Hackborn7663d802012-02-24 13:08:49 -08002300 if (attribute != null) {
2301 res = startInputUncheckedLocked(cs, inputContext, attribute,
2302 controlFlags);
2303 didStart = true;
2304 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002305 showCurrentInputLocked(InputMethodManager.SHOW_IMPLICIT, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002306 }
2307 break;
2308 case WindowManager.LayoutParams.SOFT_INPUT_STATE_UNCHANGED:
2309 // Do nothing.
2310 break;
2311 case WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN:
2312 if ((softInputMode &
2313 WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002314 if (DEBUG) Slog.v(TAG, "Window asks to hide input going forward");
The Android Open Source Project4df24232009-03-05 14:34:35 -08002315 hideCurrentInputLocked(0, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002316 }
2317 break;
2318 case WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN:
Joe Onorato8a9b2202010-02-26 18:56:32 -08002319 if (DEBUG) Slog.v(TAG, "Window asks to hide input");
The Android Open Source Project4df24232009-03-05 14:34:35 -08002320 hideCurrentInputLocked(0, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002321 break;
2322 case WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE:
2323 if ((softInputMode &
2324 WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002325 if (DEBUG) Slog.v(TAG, "Window asks to show input going forward");
Dianne Hackborn7663d802012-02-24 13:08:49 -08002326 if (attribute != null) {
2327 res = startInputUncheckedLocked(cs, inputContext, attribute,
2328 controlFlags);
2329 didStart = true;
2330 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002331 showCurrentInputLocked(InputMethodManager.SHOW_IMPLICIT, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002332 }
2333 break;
2334 case WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE:
Joe Onorato8a9b2202010-02-26 18:56:32 -08002335 if (DEBUG) Slog.v(TAG, "Window asks to always show input");
Dianne Hackborn7663d802012-02-24 13:08:49 -08002336 if (attribute != null) {
2337 res = startInputUncheckedLocked(cs, inputContext, attribute,
2338 controlFlags);
2339 didStart = true;
2340 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002341 showCurrentInputLocked(InputMethodManager.SHOW_IMPLICIT, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002342 break;
2343 }
Dianne Hackborn7663d802012-02-24 13:08:49 -08002344
2345 if (!didStart && attribute != null) {
2346 res = startInputUncheckedLocked(cs, inputContext, attribute,
2347 controlFlags);
2348 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002349 }
2350 } finally {
2351 Binder.restoreCallingIdentity(ident);
2352 }
Dianne Hackborn7663d802012-02-24 13:08:49 -08002353
2354 return res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002355 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002356
satok42c5a162011-05-26 16:46:14 +09002357 @Override
Seigo Nonaka14e13912015-05-06 21:04:13 -07002358 public void showInputMethodPickerFromClient(
2359 IInputMethodClient client, int auxiliarySubtypeMode) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002360 if (!calledFromValidUser()) {
2361 return;
2362 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002363 synchronized (mMethodMap) {
2364 if (mCurClient == null || client == null
2365 || mCurClient.client.asBinder() != client.asBinder()) {
satok47a44912010-10-06 16:03:58 +09002366 Slog.w(TAG, "Ignoring showInputMethodPickerFromClient of uid "
Dianne Hackborncef65ee2010-09-30 18:27:22 -07002367 + Binder.getCallingUid() + ": " + client);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002368 }
2369
satok440aab52010-11-25 09:43:11 +09002370 // Always call subtype picker, because subtype picker is a superset of input method
2371 // picker.
Seigo Nonaka14e13912015-05-06 21:04:13 -07002372 mHandler.sendMessage(mCaller.obtainMessageI(
2373 MSG_SHOW_IM_SUBTYPE_PICKER, auxiliarySubtypeMode));
satokab751aa2010-09-14 19:17:36 +09002374 }
2375 }
2376
satok42c5a162011-05-26 16:46:14 +09002377 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002378 public void setInputMethod(IBinder token, String id) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002379 if (!calledFromValidUser()) {
2380 return;
2381 }
satok28203512010-11-24 11:06:49 +09002382 setInputMethodWithSubtypeId(token, id, NOT_A_SUBTYPE_ID);
2383 }
2384
satok42c5a162011-05-26 16:46:14 +09002385 @Override
satok28203512010-11-24 11:06:49 +09002386 public void setInputMethodAndSubtype(IBinder token, String id, InputMethodSubtype subtype) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002387 if (!calledFromValidUser()) {
2388 return;
2389 }
satok28203512010-11-24 11:06:49 +09002390 synchronized (mMethodMap) {
2391 if (subtype != null) {
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002392 setInputMethodWithSubtypeIdLocked(token, id,
2393 InputMethodUtils.getSubtypeIdFromHashCode(mMethodMap.get(id),
2394 subtype.hashCode()));
satok28203512010-11-24 11:06:49 +09002395 } else {
2396 setInputMethod(token, id);
2397 }
2398 }
satokab751aa2010-09-14 19:17:36 +09002399 }
2400
satok42c5a162011-05-26 16:46:14 +09002401 @Override
satokb416a712010-11-25 20:42:14 +09002402 public void showInputMethodAndSubtypeEnablerFromClient(
satok217f5482010-12-15 05:19:19 +09002403 IInputMethodClient client, String inputMethodId) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002404 if (!calledFromValidUser()) {
2405 return;
2406 }
satokb416a712010-11-25 20:42:14 +09002407 synchronized (mMethodMap) {
satok7fee71f2010-12-17 18:54:26 +09002408 executeOrSendMessage(mCurMethod, mCaller.obtainMessageO(
2409 MSG_SHOW_IM_SUBTYPE_ENABLER, inputMethodId));
satokb416a712010-11-25 20:42:14 +09002410 }
2411 }
2412
satok4fc87d62011-05-20 16:13:43 +09002413 @Override
satok735cf382010-11-11 20:40:09 +09002414 public boolean switchToLastInputMethod(IBinder token) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002415 if (!calledFromValidUser()) {
2416 return false;
2417 }
satok735cf382010-11-11 20:40:09 +09002418 synchronized (mMethodMap) {
satokc445bcd2011-01-25 18:57:24 +09002419 final Pair<String, String> lastIme = mSettings.getLastInputMethodAndSubtypeLocked();
satok4fc87d62011-05-20 16:13:43 +09002420 final InputMethodInfo lastImi;
satok208d5632011-05-20 22:13:38 +09002421 if (lastIme != null) {
satok4fc87d62011-05-20 16:13:43 +09002422 lastImi = mMethodMap.get(lastIme.first);
2423 } else {
2424 lastImi = null;
satok735cf382010-11-11 20:40:09 +09002425 }
satok4fc87d62011-05-20 16:13:43 +09002426 String targetLastImiId = null;
2427 int subtypeId = NOT_A_SUBTYPE_ID;
2428 if (lastIme != null && lastImi != null) {
2429 final boolean imiIdIsSame = lastImi.getId().equals(mCurMethodId);
2430 final int lastSubtypeHash = Integer.valueOf(lastIme.second);
2431 final int currentSubtypeHash = mCurrentSubtype == null ? NOT_A_SUBTYPE_ID
2432 : mCurrentSubtype.hashCode();
2433 // If the last IME is the same as the current IME and the last subtype is not
2434 // defined, there is no need to switch to the last IME.
2435 if (!imiIdIsSame || lastSubtypeHash != currentSubtypeHash) {
2436 targetLastImiId = lastIme.first;
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002437 subtypeId = InputMethodUtils.getSubtypeIdFromHashCode(lastImi, lastSubtypeHash);
satok4fc87d62011-05-20 16:13:43 +09002438 }
2439 }
2440
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002441 if (TextUtils.isEmpty(targetLastImiId)
2442 && !InputMethodUtils.canAddToLastInputMethod(mCurrentSubtype)) {
satok4fc87d62011-05-20 16:13:43 +09002443 // This is a safety net. If the currentSubtype can't be added to the history
2444 // and the framework couldn't find the last ime, we will make the last ime be
2445 // the most applicable enabled keyboard subtype of the system imes.
2446 final List<InputMethodInfo> enabled = mSettings.getEnabledInputMethodListLocked();
2447 if (enabled != null) {
2448 final int N = enabled.size();
2449 final String locale = mCurrentSubtype == null
2450 ? mRes.getConfiguration().locale.toString()
2451 : mCurrentSubtype.getLocale();
2452 for (int i = 0; i < N; ++i) {
2453 final InputMethodInfo imi = enabled.get(i);
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002454 if (imi.getSubtypeCount() > 0 && InputMethodUtils.isSystemIme(imi)) {
satok4fc87d62011-05-20 16:13:43 +09002455 InputMethodSubtype keyboardSubtype =
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002456 InputMethodUtils.findLastResortApplicableSubtypeLocked(mRes,
2457 InputMethodUtils.getSubtypes(imi),
2458 InputMethodUtils.SUBTYPE_MODE_KEYBOARD, locale, true);
satok4fc87d62011-05-20 16:13:43 +09002459 if (keyboardSubtype != null) {
2460 targetLastImiId = imi.getId();
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002461 subtypeId = InputMethodUtils.getSubtypeIdFromHashCode(
satok4fc87d62011-05-20 16:13:43 +09002462 imi, keyboardSubtype.hashCode());
2463 if(keyboardSubtype.getLocale().equals(locale)) {
2464 break;
2465 }
2466 }
2467 }
2468 }
2469 }
2470 }
2471
2472 if (!TextUtils.isEmpty(targetLastImiId)) {
2473 if (DEBUG) {
2474 Slog.d(TAG, "Switch to: " + lastImi.getId() + ", " + lastIme.second
2475 + ", from: " + mCurMethodId + ", " + subtypeId);
2476 }
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002477 setInputMethodWithSubtypeIdLocked(token, targetLastImiId, subtypeId);
satok4fc87d62011-05-20 16:13:43 +09002478 return true;
2479 } else {
2480 return false;
2481 }
satok735cf382010-11-11 20:40:09 +09002482 }
2483 }
2484
satoke7c6998e2011-06-03 17:57:59 +09002485 @Override
satok688bd472012-02-09 20:09:17 +09002486 public boolean switchToNextInputMethod(IBinder token, boolean onlyCurrentIme) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002487 if (!calledFromValidUser()) {
2488 return false;
2489 }
satok688bd472012-02-09 20:09:17 +09002490 synchronized (mMethodMap) {
Yohei Yukawaa0755742014-06-04 20:28:18 +09002491 if (!calledWithValidToken(token)) {
2492 final int uid = Binder.getCallingUid();
2493 Slog.e(TAG, "Ignoring switchToNextInputMethod due to an invalid token. uid:" + uid
2494 + " token:" + token);
2495 return false;
2496 }
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002497 final ImeSubtypeListItem nextSubtype = mSwitchingController.getNextInputMethodLocked(
satok688bd472012-02-09 20:09:17 +09002498 onlyCurrentIme, mMethodMap.get(mCurMethodId), mCurrentSubtype);
2499 if (nextSubtype == null) {
2500 return false;
2501 }
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002502 setInputMethodWithSubtypeIdLocked(token, nextSubtype.mImi.getId(),
2503 nextSubtype.mSubtypeId);
satok688bd472012-02-09 20:09:17 +09002504 return true;
2505 }
2506 }
2507
2508 @Override
Satoshi Kataoka2b10b522013-08-21 20:39:12 +09002509 public boolean shouldOfferSwitchingToNextInputMethod(IBinder token) {
2510 if (!calledFromValidUser()) {
2511 return false;
2512 }
2513 synchronized (mMethodMap) {
Yohei Yukawaa0755742014-06-04 20:28:18 +09002514 if (!calledWithValidToken(token)) {
2515 final int uid = Binder.getCallingUid();
2516 Slog.e(TAG, "Ignoring shouldOfferSwitchingToNextInputMethod due to an invalid "
2517 + "token. uid:" + uid + " token:" + token);
2518 return false;
2519 }
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002520 final ImeSubtypeListItem nextSubtype = mSwitchingController.getNextInputMethodLocked(
Satoshi Kataoka2b10b522013-08-21 20:39:12 +09002521 false /* onlyCurrentIme */, mMethodMap.get(mCurMethodId), mCurrentSubtype);
2522 if (nextSubtype == null) {
2523 return false;
2524 }
2525 return true;
2526 }
2527 }
2528
2529 @Override
satok68f1b782011-04-11 14:26:04 +09002530 public InputMethodSubtype getLastInputMethodSubtype() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002531 if (!calledFromValidUser()) {
2532 return null;
2533 }
satok68f1b782011-04-11 14:26:04 +09002534 synchronized (mMethodMap) {
2535 final Pair<String, String> lastIme = mSettings.getLastInputMethodAndSubtypeLocked();
2536 // TODO: Handle the case of the last IME with no subtypes
2537 if (lastIme == null || TextUtils.isEmpty(lastIme.first)
2538 || TextUtils.isEmpty(lastIme.second)) return null;
2539 final InputMethodInfo lastImi = mMethodMap.get(lastIme.first);
2540 if (lastImi == null) return null;
2541 try {
2542 final int lastSubtypeHash = Integer.valueOf(lastIme.second);
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002543 final int lastSubtypeId =
2544 InputMethodUtils.getSubtypeIdFromHashCode(lastImi, lastSubtypeHash);
satok0e7d7d62011-07-05 13:28:06 +09002545 if (lastSubtypeId < 0 || lastSubtypeId >= lastImi.getSubtypeCount()) {
2546 return null;
2547 }
2548 return lastImi.getSubtypeAt(lastSubtypeId);
satok68f1b782011-04-11 14:26:04 +09002549 } catch (NumberFormatException e) {
2550 return null;
2551 }
2552 }
2553 }
2554
satoke7c6998e2011-06-03 17:57:59 +09002555 @Override
satokee5e77c2011-09-02 18:50:15 +09002556 public void setAdditionalInputMethodSubtypes(String imiId, InputMethodSubtype[] subtypes) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002557 if (!calledFromValidUser()) {
2558 return;
2559 }
satok91e88122011-07-18 11:11:42 +09002560 // By this IPC call, only a process which shares the same uid with the IME can add
2561 // additional input method subtypes to the IME.
Yohei Yukawa70f5c482016-01-04 19:42:36 -08002562 if (TextUtils.isEmpty(imiId) || subtypes == null) return;
satoke7c6998e2011-06-03 17:57:59 +09002563 synchronized (mMethodMap) {
satok91e88122011-07-18 11:11:42 +09002564 final InputMethodInfo imi = mMethodMap.get(imiId);
satokee5e77c2011-09-02 18:50:15 +09002565 if (imi == null) return;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002566 final String[] packageInfos;
2567 try {
2568 packageInfos = mIPackageManager.getPackagesForUid(Binder.getCallingUid());
2569 } catch (RemoteException e) {
2570 Slog.e(TAG, "Failed to get package infos");
2571 return;
2572 }
satok91e88122011-07-18 11:11:42 +09002573 if (packageInfos != null) {
2574 final int packageNum = packageInfos.length;
2575 for (int i = 0; i < packageNum; ++i) {
2576 if (packageInfos[i].equals(imi.getPackageName())) {
2577 mFileManager.addInputMethodSubtypes(imi, subtypes);
satokc5933802011-08-31 21:26:04 +09002578 final long ident = Binder.clearCallingIdentity();
2579 try {
Yohei Yukawa94e33302016-02-12 19:37:03 -08002580 buildInputMethodListLocked(false /* resetDefaultEnabledIme */);
satokc5933802011-08-31 21:26:04 +09002581 } finally {
2582 Binder.restoreCallingIdentity(ident);
2583 }
satokee5e77c2011-09-02 18:50:15 +09002584 return;
satok91e88122011-07-18 11:11:42 +09002585 }
2586 }
2587 }
satoke7c6998e2011-06-03 17:57:59 +09002588 }
satokee5e77c2011-09-02 18:50:15 +09002589 return;
satoke7c6998e2011-06-03 17:57:59 +09002590 }
2591
Satoshi Kataoka658c7b82013-10-10 17:03:51 +09002592 @Override
2593 public int getInputMethodWindowVisibleHeight() {
Seigo Nonaka7309b122015-08-17 18:34:13 -07002594 return mWindowManagerInternal.getInputMethodWindowVisibleHeight();
Satoshi Kataoka658c7b82013-10-10 17:03:51 +09002595 }
2596
Satoshi Kataokad7443c82013-10-15 17:45:43 +09002597 @Override
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002598 public void notifyUserAction(int sequenceNumber) {
Satoshi Kataokad7443c82013-10-15 17:45:43 +09002599 if (DEBUG) {
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002600 Slog.d(TAG, "Got the notification of a user action. sequenceNumber:" + sequenceNumber);
Satoshi Kataokad7443c82013-10-15 17:45:43 +09002601 }
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002602 synchronized (mMethodMap) {
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002603 if (mCurUserActionNotificationSequenceNumber != sequenceNumber) {
2604 if (DEBUG) {
2605 Slog.d(TAG, "Ignoring the user action notification due to the sequence number "
2606 + "mismatch. expected:" + mCurUserActionNotificationSequenceNumber
2607 + " actual: " + sequenceNumber);
2608 }
2609 return;
2610 }
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002611 final InputMethodInfo imi = mMethodMap.get(mCurMethodId);
2612 if (imi != null) {
Yohei Yukawa02970512014-06-05 16:16:18 +09002613 mSwitchingController.onUserActionLocked(imi, mCurrentSubtype);
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002614 }
Satoshi Kataokad7443c82013-10-15 17:45:43 +09002615 }
2616 }
2617
satok28203512010-11-24 11:06:49 +09002618 private void setInputMethodWithSubtypeId(IBinder token, String id, int subtypeId) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002619 synchronized (mMethodMap) {
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002620 setInputMethodWithSubtypeIdLocked(token, id, subtypeId);
2621 }
2622 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002623
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002624 private void setInputMethodWithSubtypeIdLocked(IBinder token, String id, int subtypeId) {
2625 if (token == null) {
2626 if (mContext.checkCallingOrSelfPermission(
2627 android.Manifest.permission.WRITE_SECURE_SETTINGS)
2628 != PackageManager.PERMISSION_GRANTED) {
2629 throw new SecurityException(
2630 "Using null token requires permission "
2631 + android.Manifest.permission.WRITE_SECURE_SETTINGS);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002632 }
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002633 } else if (mCurToken != token) {
2634 Slog.w(TAG, "Ignoring setInputMethod of uid " + Binder.getCallingUid()
2635 + " token: " + token);
2636 return;
2637 }
2638
2639 final long ident = Binder.clearCallingIdentity();
2640 try {
2641 setInputMethodLocked(id, subtypeId);
2642 } finally {
2643 Binder.restoreCallingIdentity(ident);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002644 }
2645 }
2646
satok42c5a162011-05-26 16:46:14 +09002647 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002648 public void hideMySoftInput(IBinder token, int flags) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002649 if (!calledFromValidUser()) {
2650 return;
2651 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002652 synchronized (mMethodMap) {
Yohei Yukawa22c97be2014-06-04 19:43:36 +09002653 if (!calledWithValidToken(token)) {
2654 final int uid = Binder.getCallingUid();
2655 Slog.e(TAG, "Ignoring hideInputMethod due to an invalid token. uid:"
2656 + uid + " token:" + token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002657 return;
2658 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002659 long ident = Binder.clearCallingIdentity();
2660 try {
The Android Open Source Project4df24232009-03-05 14:34:35 -08002661 hideCurrentInputLocked(flags, null);
2662 } finally {
2663 Binder.restoreCallingIdentity(ident);
2664 }
2665 }
2666 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002667
satok42c5a162011-05-26 16:46:14 +09002668 @Override
The Android Open Source Project4df24232009-03-05 14:34:35 -08002669 public void showMySoftInput(IBinder token, int flags) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002670 if (!calledFromValidUser()) {
2671 return;
2672 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002673 synchronized (mMethodMap) {
Yohei Yukawa22c97be2014-06-04 19:43:36 +09002674 if (!calledWithValidToken(token)) {
2675 final int uid = Binder.getCallingUid();
2676 Slog.e(TAG, "Ignoring showMySoftInput due to an invalid token. uid:"
2677 + uid + " token:" + token);
The Android Open Source Project4df24232009-03-05 14:34:35 -08002678 return;
2679 }
2680 long ident = Binder.clearCallingIdentity();
2681 try {
2682 showCurrentInputLocked(flags, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002683 } finally {
2684 Binder.restoreCallingIdentity(ident);
2685 }
2686 }
2687 }
2688
2689 void setEnabledSessionInMainThread(SessionState session) {
2690 if (mEnabledSession != session) {
Yohei Yukawa9d91b432014-05-19 16:03:24 +09002691 if (mEnabledSession != null && mEnabledSession.session != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002692 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002693 if (DEBUG) Slog.v(TAG, "Disabling: " + mEnabledSession);
Yohei Yukawa9d91b432014-05-19 16:03:24 +09002694 mEnabledSession.method.setSessionEnabled(mEnabledSession.session, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002695 } catch (RemoteException e) {
2696 }
2697 }
2698 mEnabledSession = session;
Yohei Yukawa9d91b432014-05-19 16:03:24 +09002699 if (mEnabledSession != null && mEnabledSession.session != null) {
2700 try {
2701 if (DEBUG) Slog.v(TAG, "Enabling: " + mEnabledSession);
2702 mEnabledSession.method.setSessionEnabled(mEnabledSession.session, true);
2703 } catch (RemoteException e) {
2704 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002705 }
2706 }
2707 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002708
satok42c5a162011-05-26 16:46:14 +09002709 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002710 public boolean handleMessage(Message msg) {
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002711 SomeArgs args;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002712 switch (msg.what) {
satokab751aa2010-09-14 19:17:36 +09002713 case MSG_SHOW_IM_SUBTYPE_PICKER:
Seigo Nonaka14e13912015-05-06 21:04:13 -07002714 final boolean showAuxSubtypes;
2715 switch (msg.arg1) {
2716 case InputMethodManager.SHOW_IM_PICKER_MODE_AUTO:
2717 // This is undocumented so far, but IMM#showInputMethodPicker() has been
2718 // implemented so that auxiliary subtypes will be excluded when the soft
2719 // keyboard is invisible.
2720 showAuxSubtypes = mInputShown;
2721 break;
2722 case InputMethodManager.SHOW_IM_PICKER_MODE_INCLUDE_AUXILIARY_SUBTYPES:
2723 showAuxSubtypes = true;
2724 break;
2725 case InputMethodManager.SHOW_IM_PICKER_MODE_EXCLUDE_AUXILIARY_SUBTYPES:
2726 showAuxSubtypes = false;
2727 break;
2728 default:
2729 Slog.e(TAG, "Unknown subtype picker mode = " + msg.arg1);
2730 return false;
2731 }
2732 showInputMethodMenu(showAuxSubtypes);
satokab751aa2010-09-14 19:17:36 +09002733 return true;
2734
satok47a44912010-10-06 16:03:58 +09002735 case MSG_SHOW_IM_SUBTYPE_ENABLER:
Yohei Yukawa41f34272015-12-14 15:41:52 -08002736 showInputMethodAndSubtypeEnabler((String)msg.obj);
satok217f5482010-12-15 05:19:19 +09002737 return true;
2738
2739 case MSG_SHOW_IM_CONFIG:
2740 showConfigureInputMethods();
satok47a44912010-10-06 16:03:58 +09002741 return true;
2742
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002743 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002744
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002745 case MSG_UNBIND_INPUT:
2746 try {
2747 ((IInputMethod)msg.obj).unbindInput();
2748 } catch (RemoteException e) {
2749 // There is nothing interesting about the method dying.
2750 }
2751 return true;
2752 case MSG_BIND_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002753 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002754 try {
2755 ((IInputMethod)args.arg1).bindInput((InputBinding)args.arg2);
2756 } catch (RemoteException e) {
2757 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002758 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002759 return true;
2760 case MSG_SHOW_SOFT_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002761 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002762 try {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002763 if (DEBUG) Slog.v(TAG, "Calling " + args.arg1 + ".showSoftInput("
Craig Mautner6efb4c72013-03-13 10:17:41 -07002764 + msg.arg1 + ", " + args.arg2 + ")");
Craig Mautnerca0ac712013-03-14 09:43:02 -07002765 ((IInputMethod)args.arg1).showSoftInput(msg.arg1, (ResultReceiver)args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002766 } catch (RemoteException e) {
2767 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002768 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002769 return true;
2770 case MSG_HIDE_SOFT_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002771 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002772 try {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002773 if (DEBUG) Slog.v(TAG, "Calling " + args.arg1 + ".hideSoftInput(0, "
Craig Mautner6efb4c72013-03-13 10:17:41 -07002774 + args.arg2 + ")");
Craig Mautnerca0ac712013-03-14 09:43:02 -07002775 ((IInputMethod)args.arg1).hideSoftInput(0, (ResultReceiver)args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002776 } catch (RemoteException e) {
2777 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002778 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002779 return true;
2780 case MSG_ATTACH_TOKEN:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002781 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002782 try {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002783 if (DEBUG) Slog.v(TAG, "Sending attach of token: " + args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002784 ((IInputMethod)args.arg1).attachToken((IBinder)args.arg2);
2785 } catch (RemoteException e) {
2786 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002787 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002788 return true;
Jeff Brownc28867a2013-03-26 15:42:39 -07002789 case MSG_CREATE_SESSION: {
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002790 args = (SomeArgs)msg.obj;
Jeff Brown1951ce82013-04-04 22:45:12 -07002791 IInputMethod method = (IInputMethod)args.arg1;
Jeff Brownc28867a2013-03-26 15:42:39 -07002792 InputChannel channel = (InputChannel)args.arg2;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002793 try {
Jeff Brown1951ce82013-04-04 22:45:12 -07002794 method.createSession(channel, (IInputSessionCallback)args.arg3);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002795 } catch (RemoteException e) {
Jeff Brownc28867a2013-03-26 15:42:39 -07002796 } finally {
Jeff Brown1951ce82013-04-04 22:45:12 -07002797 // Dispose the channel if the input method is not local to this process
2798 // because the remote proxy will get its own copy when unparceled.
2799 if (channel != null && Binder.isProxy(method)) {
Jeff Brownc28867a2013-03-26 15:42:39 -07002800 channel.dispose();
2801 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002802 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002803 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002804 return true;
Jeff Brownc28867a2013-03-26 15:42:39 -07002805 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002806 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002807
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002808 case MSG_START_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002809 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002810 try {
2811 SessionState session = (SessionState)args.arg1;
2812 setEnabledSessionInMainThread(session);
2813 session.method.startInput((IInputContext)args.arg2,
2814 (EditorInfo)args.arg3);
2815 } catch (RemoteException e) {
2816 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002817 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002818 return true;
2819 case MSG_RESTART_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002820 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002821 try {
2822 SessionState session = (SessionState)args.arg1;
2823 setEnabledSessionInMainThread(session);
2824 session.method.restartInput((IInputContext)args.arg2,
2825 (EditorInfo)args.arg3);
2826 } catch (RemoteException e) {
2827 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002828 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002829 return true;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002830
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002831 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002832
Yohei Yukawa33e81792015-11-17 21:14:42 -08002833 case MSG_UNBIND_CLIENT:
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002834 try {
Yohei Yukawa33e81792015-11-17 21:14:42 -08002835 ((IInputMethodClient)msg.obj).onUnbindMethod(msg.arg1, msg.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002836 } catch (RemoteException e) {
2837 // There is nothing interesting about the last client dying.
2838 }
2839 return true;
Yohei Yukawa33e81792015-11-17 21:14:42 -08002840 case MSG_BIND_CLIENT: {
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002841 args = (SomeArgs)msg.obj;
Jeff Brown1951ce82013-04-04 22:45:12 -07002842 IInputMethodClient client = (IInputMethodClient)args.arg1;
2843 InputBindResult res = (InputBindResult)args.arg2;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002844 try {
Jeff Brown1951ce82013-04-04 22:45:12 -07002845 client.onBindMethod(res);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002846 } catch (RemoteException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002847 Slog.w(TAG, "Client died receiving input method " + args.arg2);
Jeff Brown1951ce82013-04-04 22:45:12 -07002848 } finally {
2849 // Dispose the channel if the input method is not local to this process
2850 // because the remote proxy will get its own copy when unparceled.
2851 if (res.channel != null && Binder.isProxy(client)) {
2852 res.channel.dispose();
2853 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002854 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002855 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002856 return true;
Jeff Brown1951ce82013-04-04 22:45:12 -07002857 }
Dianne Hackborna6e41342012-05-22 16:30:34 -07002858 case MSG_SET_ACTIVE:
2859 try {
2860 ((ClientState)msg.obj).client.setActive(msg.arg1 != 0);
2861 } catch (RemoteException e) {
2862 Slog.w(TAG, "Got RemoteException sending setActive(false) notification to pid "
2863 + ((ClientState)msg.obj).pid + " uid "
2864 + ((ClientState)msg.obj).uid);
2865 }
2866 return true;
Yohei Yukawafa6e0a82015-07-23 15:08:59 -07002867 case MSG_SET_INTERACTIVE:
2868 handleSetInteractive(msg.arg1 != 0);
2869 return true;
Yohei Yukawaae61f712015-12-09 13:00:10 -08002870 case MSG_SWITCH_IME:
2871 handleSwitchInputMethod(msg.arg1 != 0);
2872 return true;
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002873 case MSG_SET_USER_ACTION_NOTIFICATION_SEQUENCE_NUMBER: {
2874 final int sequenceNumber = msg.arg1;
Yohei Yukawa080fa342014-08-31 16:10:05 -07002875 final ClientState clientState = (ClientState)msg.obj;
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002876 try {
Yohei Yukawa080fa342014-08-31 16:10:05 -07002877 clientState.client.setUserActionNotificationSequenceNumber(sequenceNumber);
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002878 } catch (RemoteException e) {
2879 Slog.w(TAG, "Got RemoteException sending "
2880 + "setUserActionNotificationSequenceNumber("
2881 + sequenceNumber + ") notification to pid "
Yohei Yukawa080fa342014-08-31 16:10:05 -07002882 + clientState.pid + " uid "
2883 + clientState.uid);
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002884 }
2885 return true;
2886 }
satok01038492012-04-09 21:08:27 +09002887
2888 // --------------------------------------------------------------
2889 case MSG_HARD_KEYBOARD_SWITCH_CHANGED:
Michael Wright7b5a96b2014-08-09 19:28:42 -07002890 mHardKeyboardListener.handleHardKeyboardStatusChange(msg.arg1 == 1);
satok01038492012-04-09 21:08:27 +09002891 return true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002892 }
2893 return false;
2894 }
2895
Yohei Yukawafa6e0a82015-07-23 15:08:59 -07002896 private void handleSetInteractive(final boolean interactive) {
2897 synchronized (mMethodMap) {
2898 mIsInteractive = interactive;
2899 updateSystemUiLocked(mCurToken, interactive ? mImeWindowVis : 0, mBackDisposition);
2900
2901 // Inform the current client of the change in active status
2902 if (mCurClient != null && mCurClient.client != null) {
2903 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
2904 MSG_SET_ACTIVE, mIsInteractive ? 1 : 0, mCurClient));
2905 }
2906 }
2907 }
2908
Yohei Yukawaae61f712015-12-09 13:00:10 -08002909 private void handleSwitchInputMethod(final boolean forwardDirection) {
2910 synchronized (mMethodMap) {
2911 // TODO: Support forwardDirection.
2912 final ImeSubtypeListItem nextSubtype = mSwitchingController.getNextInputMethodLocked(
2913 false, mMethodMap.get(mCurMethodId), mCurrentSubtype);
2914 if (nextSubtype == null) {
2915 return;
2916 }
2917 setInputMethodLocked(nextSubtype.mImi.getId(), nextSubtype.mSubtypeId);
2918 }
2919 }
2920
satokdc9ddae2011-10-06 12:22:36 +09002921 private boolean chooseNewDefaultIMELocked() {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002922 final InputMethodInfo imi = InputMethodUtils.getMostApplicableDefaultIME(
2923 mSettings.getEnabledInputMethodListLocked());
satokdc9ddae2011-10-06 12:22:36 +09002924 if (imi != null) {
satok03eb319a2010-11-11 18:17:42 +09002925 if (DEBUG) {
2926 Slog.d(TAG, "New default IME was selected: " + imi.getId());
2927 }
satok723a27e2010-11-11 14:58:11 +09002928 resetSelectedInputMethodAndSubtypeLocked(imi.getId());
Brandon Ballinger6da35a02009-10-21 00:38:13 -07002929 return true;
2930 }
2931
2932 return false;
2933 }
2934
Yohei Yukawa94e33302016-02-12 19:37:03 -08002935 void buildInputMethodListLocked(boolean resetDefaultEnabledIme) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002936 if (DEBUG) {
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09002937 Slog.d(TAG, "--- re-buildInputMethodList reset = " + resetDefaultEnabledIme
Seigo Nonakae27dc2b2015-08-14 18:21:27 -07002938 + " \n ------ caller=" + Debug.getCallers(10));
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002939 }
Yohei Yukawa94e33302016-02-12 19:37:03 -08002940 mMethodList.clear();
2941 mMethodMap.clear();
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002942
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002943 // Use for queryIntentServicesAsUser
2944 final PackageManager pm = mContext.getPackageManager();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002945
Yohei Yukawaed4952a2016-02-17 07:57:25 -08002946 // Note: We do not specify PackageManager.MATCH_ENCRYPTION_* flags here because the default
2947 // behavior of PackageManager is exactly what we want. It by default picks up appropriate
2948 // services depending on the unlock state for the specified user.
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002949 final List<ResolveInfo> services = pm.queryIntentServicesAsUser(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002950 new Intent(InputMethod.SERVICE_INTERFACE),
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08002951 PackageManager.GET_META_DATA | PackageManager.GET_DISABLED_UNTIL_USED_COMPONENTS,
2952 mSettings.getCurrentUserId());
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002953
satoke7c6998e2011-06-03 17:57:59 +09002954 final HashMap<String, List<InputMethodSubtype>> additionalSubtypes =
2955 mFileManager.getAllAdditionalInputMethodSubtypes();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002956 for (int i = 0; i < services.size(); ++i) {
2957 ResolveInfo ri = services.get(i);
2958 ServiceInfo si = ri.serviceInfo;
2959 ComponentName compName = new ComponentName(si.packageName, si.name);
2960 if (!android.Manifest.permission.BIND_INPUT_METHOD.equals(
2961 si.permission)) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002962 Slog.w(TAG, "Skipping input method " + compName
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002963 + ": it does not require the permission "
2964 + android.Manifest.permission.BIND_INPUT_METHOD);
2965 continue;
2966 }
2967
Joe Onorato8a9b2202010-02-26 18:56:32 -08002968 if (DEBUG) Slog.d(TAG, "Checking " + compName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002969
2970 try {
satoke7c6998e2011-06-03 17:57:59 +09002971 InputMethodInfo p = new InputMethodInfo(mContext, ri, additionalSubtypes);
Yohei Yukawa94e33302016-02-12 19:37:03 -08002972 mMethodList.add(p);
Amith Yamasanie861ec12010-03-24 21:39:27 -07002973 final String id = p.getId();
Yohei Yukawa94e33302016-02-12 19:37:03 -08002974 mMethodMap.put(id, p);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002975
2976 if (DEBUG) {
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09002977 Slog.d(TAG, "Found an input method " + p);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002978 }
Yohei Yukawa5894b432015-08-11 13:29:24 -07002979 } catch (XmlPullParserException | IOException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002980 Slog.w(TAG, "Unable to load input method " + compName, e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002981 }
2982 }
Brandon Ballinger6da35a02009-10-21 00:38:13 -07002983
Yohei Yukawa859df052016-02-17 07:56:46 -08002984 // TODO: The following code should find better place to live.
2985 if (!resetDefaultEnabledIme) {
2986 boolean enabledImeFound = false;
2987 final List<InputMethodInfo> enabledImes = mSettings.getEnabledInputMethodListLocked();
2988 final int N = enabledImes.size();
2989 for (int i = 0; i < N; ++i) {
2990 final InputMethodInfo imi = enabledImes.get(i);
2991 if (mMethodList.contains(imi)) {
2992 enabledImeFound = true;
2993 break;
2994 }
2995 }
2996 if (!enabledImeFound) {
2997 Slog.i(TAG, "All the enabled IMEs are gone. Reset default enabled IMEs.");
2998 resetDefaultEnabledIme = true;
2999 resetSelectedInputMethodAndSubtypeLocked("");
3000 }
3001 }
3002
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09003003 if (resetDefaultEnabledIme) {
3004 final ArrayList<InputMethodInfo> defaultEnabledIme =
Yohei Yukawa94e33302016-02-12 19:37:03 -08003005 InputMethodUtils.getDefaultEnabledImes(mContext, mSystemReady, mMethodList);
Yohei Yukawa68645a62016-02-17 07:54:20 -08003006 final int N = defaultEnabledIme.size();
3007 for (int i = 0; i < N; ++i) {
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09003008 final InputMethodInfo imi = defaultEnabledIme.get(i);
3009 if (DEBUG) {
3010 Slog.d(TAG, "--- enable ime = " + imi);
3011 }
3012 setInputMethodEnabledLocked(imi.getId(), true);
3013 }
3014 }
3015
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003016 final String defaultImiId = mSettings.getSelectedInputMethod();
satok0a1bcf42012-05-16 19:26:31 +09003017 if (!TextUtils.isEmpty(defaultImiId)) {
Yohei Yukawa94e33302016-02-12 19:37:03 -08003018 if (!mMethodMap.containsKey(defaultImiId)) {
satok0a1bcf42012-05-16 19:26:31 +09003019 Slog.w(TAG, "Default IME is uninstalled. Choose new default IME.");
3020 if (chooseNewDefaultIMELocked()) {
Michael Wright7b5a96b2014-08-09 19:28:42 -07003021 updateInputMethodsFromSettingsLocked(true);
satok0a1bcf42012-05-16 19:26:31 +09003022 }
3023 } else {
3024 // Double check that the default IME is certainly enabled.
3025 setInputMethodEnabledLocked(defaultImiId, true);
Brandon Ballinger6da35a02009-10-21 00:38:13 -07003026 }
3027 }
Yohei Yukawa3d46bab2014-05-30 18:10:18 +09003028 // Here is not the perfect place to reset the switching controller. Ideally
3029 // mSwitchingController and mSettings should be able to share the same state.
3030 // TODO: Make sure that mSwitchingController and mSettings are sharing the
3031 // the same enabled IMEs list.
Yohei Yukawac834a252014-05-21 22:42:32 +09003032 mSwitchingController.resetCircularListLocked(mContext);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003033 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003034
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003035 // ----------------------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003036
satok217f5482010-12-15 05:19:19 +09003037 private void showInputMethodAndSubtypeEnabler(String inputMethodId) {
Tadashi G. Takaokaf49688f2011-01-20 17:56:13 +09003038 Intent intent = new Intent(Settings.ACTION_INPUT_METHOD_SUBTYPE_SETTINGS);
satok47a44912010-10-06 16:03:58 +09003039 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
satok86417ea2010-10-27 14:11:03 +09003040 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED
3041 | Intent.FLAG_ACTIVITY_CLEAR_TOP);
satok7fee71f2010-12-17 18:54:26 +09003042 if (!TextUtils.isEmpty(inputMethodId)) {
Tadashi G. Takaoka25480202011-01-20 23:13:02 +09003043 intent.putExtra(Settings.EXTRA_INPUT_METHOD_ID, inputMethodId);
satok7fee71f2010-12-17 18:54:26 +09003044 }
Yohei Yukawa41f34272015-12-14 15:41:52 -08003045 final int userId;
3046 synchronized (mMethodMap) {
3047 userId = mSettings.getCurrentUserId();
3048 }
3049 mContext.startActivityAsUser(intent, null, UserHandle.of(userId));
satok217f5482010-12-15 05:19:19 +09003050 }
3051
3052 private void showConfigureInputMethods() {
3053 Intent intent = new Intent(Settings.ACTION_INPUT_METHOD_SETTINGS);
3054 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
3055 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED
3056 | Intent.FLAG_ACTIVITY_CLEAR_TOP);
Satoshi Kataoka3ba439d2012-10-05 18:30:13 +09003057 mContext.startActivityAsUser(intent, null, UserHandle.CURRENT);
satok47a44912010-10-06 16:03:58 +09003058 }
3059
satok2c93efc2012-04-02 19:33:47 +09003060 private boolean isScreenLocked() {
3061 return mKeyguardManager != null
3062 && mKeyguardManager.isKeyguardLocked() && mKeyguardManager.isKeyguardSecure();
3063 }
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003064
Seigo Nonaka14e13912015-05-06 21:04:13 -07003065 private void showInputMethodMenu(boolean showAuxSubtypes) {
3066 if (DEBUG) Slog.v(TAG, "Show switching menu. showAuxSubtypes=" + showAuxSubtypes);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003067
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003068 final Context context = mContext;
satok2c93efc2012-04-02 19:33:47 +09003069 final boolean isScreenLocked = isScreenLocked();
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003070
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003071 final String lastInputMethodId = mSettings.getSelectedInputMethod();
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003072 int lastInputMethodSubtypeId = mSettings.getSelectedInputMethodSubtypeId(lastInputMethodId);
Joe Onorato8a9b2202010-02-26 18:56:32 -08003073 if (DEBUG) Slog.v(TAG, "Current IME: " + lastInputMethodId);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003074
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07003075 synchronized (mMethodMap) {
satokbb4aa062011-01-19 21:40:27 +09003076 final HashMap<InputMethodInfo, List<InputMethodSubtype>> immis =
Satoshi Kataokad787f692013-10-26 04:44:21 +09003077 mSettings.getExplicitlyOrImplicitlyEnabledInputMethodsAndSubtypeListLocked(
3078 mContext);
satok7f35c8c2010-10-07 21:13:11 +09003079 if (immis == null || immis.size() == 0) {
3080 return;
3081 }
3082
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07003083 hideInputMethodMenuLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003084
satok688bd472012-02-09 20:09:17 +09003085 final List<ImeSubtypeListItem> imList =
Yohei Yukawa5a647b692014-05-22 12:49:00 +09003086 mSwitchingController.getSortedInputMethodAndSubtypeListLocked(
Yohei Yukawa5f8e7312015-12-10 00:58:55 -08003087 showAuxSubtypes, isScreenLocked);
satok913a8922010-08-26 21:53:41 +09003088
satokc3690562012-01-10 20:14:43 +09003089 if (lastInputMethodSubtypeId == NOT_A_SUBTYPE_ID) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003090 final InputMethodSubtype currentSubtype = getCurrentInputMethodSubtypeLocked();
satokc3690562012-01-10 20:14:43 +09003091 if (currentSubtype != null) {
3092 final InputMethodInfo currentImi = mMethodMap.get(mCurMethodId);
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003093 lastInputMethodSubtypeId = InputMethodUtils.getSubtypeIdFromHashCode(
3094 currentImi, currentSubtype.hashCode());
satokc3690562012-01-10 20:14:43 +09003095 }
3096 }
3097
Ken Wakasa761eb372011-03-04 19:06:18 +09003098 final int N = imList.size();
satokab751aa2010-09-14 19:17:36 +09003099 mIms = new InputMethodInfo[N];
3100 mSubtypeIds = new int[N];
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07003101 int checkedItem = 0;
3102 for (int i = 0; i < N; ++i) {
Ken Wakasa05dbb652011-08-22 15:22:43 +09003103 final ImeSubtypeListItem item = imList.get(i);
3104 mIms[i] = item.mImi;
3105 mSubtypeIds[i] = item.mSubtypeId;
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07003106 if (mIms[i].getId().equals(lastInputMethodId)) {
satokab751aa2010-09-14 19:17:36 +09003107 int subtypeId = mSubtypeIds[i];
3108 if ((subtypeId == NOT_A_SUBTYPE_ID)
3109 || (lastInputMethodSubtypeId == NOT_A_SUBTYPE_ID && subtypeId == 0)
3110 || (subtypeId == lastInputMethodSubtypeId)) {
3111 checkedItem = i;
3112 }
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07003113 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003114 }
Alan Viverette505e3ab2014-11-24 15:22:11 -08003115
3116 final Context settingsContext = new ContextThemeWrapper(context,
3117 com.android.internal.R.style.Theme_DeviceDefault_Settings);
3118
3119 mDialogBuilder = new AlertDialog.Builder(settingsContext);
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003120 mDialogBuilder.setOnCancelListener(new OnCancelListener() {
3121 @Override
3122 public void onCancel(DialogInterface dialog) {
3123 hideInputMethodMenu();
3124 }
3125 });
Alan Viverette505e3ab2014-11-24 15:22:11 -08003126
3127 final Context dialogContext = mDialogBuilder.getContext();
3128 final TypedArray a = dialogContext.obtainStyledAttributes(null,
3129 com.android.internal.R.styleable.DialogPreference,
3130 com.android.internal.R.attr.alertDialogStyle, 0);
3131 final Drawable dialogIcon = a.getDrawable(
3132 com.android.internal.R.styleable.DialogPreference_dialogIcon);
3133 a.recycle();
3134
3135 mDialogBuilder.setIcon(dialogIcon);
3136
Yohei Yukawad34e1482016-02-11 08:03:52 -08003137 final LayoutInflater inflater = dialogContext.getSystemService(LayoutInflater.class);
satok01038492012-04-09 21:08:27 +09003138 final View tv = inflater.inflate(
3139 com.android.internal.R.layout.input_method_switch_dialog_title, null);
3140 mDialogBuilder.setCustomTitle(tv);
3141
3142 // Setup layout for a toggle switch of the hardware keyboard
3143 mSwitchingDialogTitleView = tv;
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003144 mSwitchingDialogTitleView
3145 .findViewById(com.android.internal.R.id.hard_keyboard_section)
Seigo Nonaka7309b122015-08-17 18:34:13 -07003146 .setVisibility(mWindowManagerInternal.isHardKeyboardAvailable()
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003147 ? View.VISIBLE : View.GONE);
Alan Viverette505e3ab2014-11-24 15:22:11 -08003148 final Switch hardKeySwitch = (Switch) mSwitchingDialogTitleView.findViewById(
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003149 com.android.internal.R.id.hard_keyboard_switch);
Michael Wright7b5a96b2014-08-09 19:28:42 -07003150 hardKeySwitch.setChecked(mShowImeWithHardKeyboard);
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003151 hardKeySwitch.setOnCheckedChangeListener(new OnCheckedChangeListener() {
3152 @Override
3153 public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
Michael Wright7b5a96b2014-08-09 19:28:42 -07003154 mSettings.setShowImeWithHardKeyboard(isChecked);
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003155 // Ensure that the input method dialog is dismissed when changing
3156 // the hardware keyboard state.
3157 hideInputMethodMenu();
3158 }
3159 });
3160
Alan Viverette505e3ab2014-11-24 15:22:11 -08003161 final ImeSubtypeListAdapter adapter = new ImeSubtypeListAdapter(dialogContext,
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003162 com.android.internal.R.layout.input_method_switch_item, imList, checkedItem);
3163 final OnClickListener choiceListener = new OnClickListener() {
3164 @Override
3165 public void onClick(final DialogInterface dialog, final int which) {
3166 synchronized (mMethodMap) {
3167 if (mIms == null || mIms.length <= which || mSubtypeIds == null
3168 || mSubtypeIds.length <= which) {
3169 return;
satok01038492012-04-09 21:08:27 +09003170 }
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003171 final InputMethodInfo im = mIms[which];
3172 int subtypeId = mSubtypeIds[which];
3173 adapter.mCheckedItem = which;
3174 adapter.notifyDataSetChanged();
3175 hideInputMethodMenu();
3176 if (im != null) {
3177 if (subtypeId < 0 || subtypeId >= im.getSubtypeCount()) {
3178 subtypeId = NOT_A_SUBTYPE_ID;
Dianne Hackborn20cb56e2010-03-04 00:58:29 -08003179 }
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003180 setInputMethodLocked(im.getId(), subtypeId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003181 }
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003182 }
3183 }
3184 };
3185 mDialogBuilder.setSingleChoiceItems(adapter, checkedItem, choiceListener);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003186
Seigo Nonakad4474cb2015-05-04 16:53:24 -07003187 if (!isScreenLocked) {
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003188 final OnClickListener positiveListener = new OnClickListener() {
3189 @Override
3190 public void onClick(DialogInterface dialog, int whichButton) {
3191 showConfigureInputMethods();
3192 }
3193 };
satok82beadf2010-12-27 19:03:06 +09003194 mDialogBuilder.setPositiveButton(
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003195 com.android.internal.R.string.configure_input_methods, positiveListener);
satok7f35c8c2010-10-07 21:13:11 +09003196 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003197 mSwitchingDialog = mDialogBuilder.create();
Dianne Hackborne3a7f622011-03-03 21:48:24 -08003198 mSwitchingDialog.setCanceledOnTouchOutside(true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003199 mSwitchingDialog.getWindow().setType(
3200 WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG);
Satoshi Kataokac86884c2012-10-09 15:20:29 +09003201 mSwitchingDialog.getWindow().getAttributes().privateFlags |=
3202 WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS;
Dianne Hackborne3a7f622011-03-03 21:48:24 -08003203 mSwitchingDialog.getWindow().getAttributes().setTitle("Select input method");
Seigo Nonakad9eb9112015-05-26 20:54:43 +09003204 updateSystemUi(mCurToken, mImeWindowVis, mBackDisposition);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003205 mSwitchingDialog.show();
3206 }
3207 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003208
Ken Wakasa05dbb652011-08-22 15:22:43 +09003209 private static class ImeSubtypeListAdapter extends ArrayAdapter<ImeSubtypeListItem> {
3210 private final LayoutInflater mInflater;
3211 private final int mTextViewResourceId;
3212 private final List<ImeSubtypeListItem> mItemsList;
Satoshi Kataokad2142962012-11-12 18:43:06 +09003213 public int mCheckedItem;
Ken Wakasa05dbb652011-08-22 15:22:43 +09003214 public ImeSubtypeListAdapter(Context context, int textViewResourceId,
3215 List<ImeSubtypeListItem> itemsList, int checkedItem) {
3216 super(context, textViewResourceId, itemsList);
Alan Viverette505e3ab2014-11-24 15:22:11 -08003217
Ken Wakasa05dbb652011-08-22 15:22:43 +09003218 mTextViewResourceId = textViewResourceId;
3219 mItemsList = itemsList;
3220 mCheckedItem = checkedItem;
Yohei Yukawad34e1482016-02-11 08:03:52 -08003221 mInflater = context.getSystemService(LayoutInflater.class);
Ken Wakasa05dbb652011-08-22 15:22:43 +09003222 }
3223
3224 @Override
3225 public View getView(int position, View convertView, ViewGroup parent) {
3226 final View view = convertView != null ? convertView
3227 : mInflater.inflate(mTextViewResourceId, null);
3228 if (position < 0 || position >= mItemsList.size()) return view;
3229 final ImeSubtypeListItem item = mItemsList.get(position);
3230 final CharSequence imeName = item.mImeName;
3231 final CharSequence subtypeName = item.mSubtypeName;
3232 final TextView firstTextView = (TextView)view.findViewById(android.R.id.text1);
3233 final TextView secondTextView = (TextView)view.findViewById(android.R.id.text2);
3234 if (TextUtils.isEmpty(subtypeName)) {
3235 firstTextView.setText(imeName);
3236 secondTextView.setVisibility(View.GONE);
3237 } else {
3238 firstTextView.setText(subtypeName);
3239 secondTextView.setText(imeName);
3240 secondTextView.setVisibility(View.VISIBLE);
3241 }
3242 final RadioButton radioButton =
3243 (RadioButton)view.findViewById(com.android.internal.R.id.radio);
3244 radioButton.setChecked(position == mCheckedItem);
3245 return view;
3246 }
3247 }
3248
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003249 void hideInputMethodMenu() {
The Android Open Source Project10592532009-03-18 17:39:46 -07003250 synchronized (mMethodMap) {
3251 hideInputMethodMenuLocked();
3252 }
3253 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003254
The Android Open Source Project10592532009-03-18 17:39:46 -07003255 void hideInputMethodMenuLocked() {
Joe Onorato8a9b2202010-02-26 18:56:32 -08003256 if (DEBUG) Slog.v(TAG, "Hide switching menu");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003257
The Android Open Source Project10592532009-03-18 17:39:46 -07003258 if (mSwitchingDialog != null) {
3259 mSwitchingDialog.dismiss();
3260 mSwitchingDialog = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003261 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003262
Seigo Nonakad9eb9112015-05-26 20:54:43 +09003263 updateSystemUiLocked(mCurToken, mImeWindowVis, mBackDisposition);
The Android Open Source Project10592532009-03-18 17:39:46 -07003264 mDialogBuilder = null;
The Android Open Source Project10592532009-03-18 17:39:46 -07003265 mIms = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003266 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003267
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003268 // ----------------------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003269
satok42c5a162011-05-26 16:46:14 +09003270 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003271 public boolean setInputMethodEnabled(String id, boolean enabled) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003272 // TODO: Make this work even for non-current users?
3273 if (!calledFromValidUser()) {
3274 return false;
3275 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003276 synchronized (mMethodMap) {
3277 if (mContext.checkCallingOrSelfPermission(
3278 android.Manifest.permission.WRITE_SECURE_SETTINGS)
3279 != PackageManager.PERMISSION_GRANTED) {
3280 throw new SecurityException(
3281 "Requires permission "
3282 + android.Manifest.permission.WRITE_SECURE_SETTINGS);
3283 }
Anna Galusza9b278112016-01-04 11:37:37 -08003284
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003285 long ident = Binder.clearCallingIdentity();
3286 try {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003287 return setInputMethodEnabledLocked(id, enabled);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003288 } finally {
3289 Binder.restoreCallingIdentity(ident);
3290 }
3291 }
3292 }
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003293
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003294 boolean setInputMethodEnabledLocked(String id, boolean enabled) {
3295 // Make sure this is a valid input method.
3296 InputMethodInfo imm = mMethodMap.get(id);
3297 if (imm == null) {
satokd87c2592010-09-29 11:52:06 +09003298 throw new IllegalArgumentException("Unknown id: " + mCurMethodId);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003299 }
3300
satokd87c2592010-09-29 11:52:06 +09003301 List<Pair<String, ArrayList<String>>> enabledInputMethodsList = mSettings
3302 .getEnabledInputMethodsAndSubtypeListLocked();
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003303
satokd87c2592010-09-29 11:52:06 +09003304 if (enabled) {
3305 for (Pair<String, ArrayList<String>> pair: enabledInputMethodsList) {
3306 if (pair.first.equals(id)) {
3307 // We are enabling this input method, but it is already enabled.
3308 // Nothing to do. The previous state was enabled.
3309 return true;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003310 }
3311 }
satokd87c2592010-09-29 11:52:06 +09003312 mSettings.appendAndPutEnabledInputMethodLocked(id, false);
3313 // Previous state was disabled.
3314 return false;
3315 } else {
3316 StringBuilder builder = new StringBuilder();
3317 if (mSettings.buildAndPutEnabledInputMethodsStrRemovingIdLocked(
3318 builder, enabledInputMethodsList, id)) {
3319 // Disabled input method is currently selected, switch to another one.
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003320 final String selId = mSettings.getSelectedInputMethod();
satok03eb319a2010-11-11 18:17:42 +09003321 if (id.equals(selId) && !chooseNewDefaultIMELocked()) {
3322 Slog.i(TAG, "Can't find new IME, unsetting the current input method.");
3323 resetSelectedInputMethodAndSubtypeLocked("");
satokd87c2592010-09-29 11:52:06 +09003324 }
3325 // Previous state was enabled.
3326 return true;
3327 } else {
3328 // We are disabling the input method but it is already disabled.
3329 // Nothing to do. The previous state was disabled.
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003330 return false;
3331 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003332 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003333 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08003334
satok723a27e2010-11-11 14:58:11 +09003335 private void setSelectedInputMethodAndSubtypeLocked(InputMethodInfo imi, int subtypeId,
3336 boolean setSubtypeOnly) {
3337 // Update the history of InputMethod and Subtype
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003338 mSettings.saveCurrentInputMethodAndSubtypeToHistory(mCurMethodId, mCurrentSubtype);
satok723a27e2010-11-11 14:58:11 +09003339
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09003340 mCurUserActionNotificationSequenceNumber =
3341 Math.max(mCurUserActionNotificationSequenceNumber + 1, 1);
3342 if (DEBUG) {
3343 Slog.d(TAG, "Bump mCurUserActionNotificationSequenceNumber:"
3344 + mCurUserActionNotificationSequenceNumber);
3345 }
3346
3347 if (mCurClient != null && mCurClient.client != null) {
3348 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
3349 MSG_SET_USER_ACTION_NOTIFICATION_SEQUENCE_NUMBER,
Yohei Yukawa080fa342014-08-31 16:10:05 -07003350 mCurUserActionNotificationSequenceNumber, mCurClient));
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09003351 }
3352
satok723a27e2010-11-11 14:58:11 +09003353 // Set Subtype here
3354 if (imi == null || subtypeId < 0) {
3355 mSettings.putSelectedSubtype(NOT_A_SUBTYPE_ID);
Tadashi G. Takaoka0ba75bb2010-11-09 12:19:32 -08003356 mCurrentSubtype = null;
satok723a27e2010-11-11 14:58:11 +09003357 } else {
Ken Wakasa586f0512011-01-20 22:31:01 +09003358 if (subtypeId < imi.getSubtypeCount()) {
3359 InputMethodSubtype subtype = imi.getSubtypeAt(subtypeId);
3360 mSettings.putSelectedSubtype(subtype.hashCode());
3361 mCurrentSubtype = subtype;
satok723a27e2010-11-11 14:58:11 +09003362 } else {
3363 mSettings.putSelectedSubtype(NOT_A_SUBTYPE_ID);
satokd81e9502012-05-21 12:58:45 +09003364 // If the subtype is not specified, choose the most applicable one
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003365 mCurrentSubtype = getCurrentInputMethodSubtypeLocked();
satok723a27e2010-11-11 14:58:11 +09003366 }
satokab751aa2010-09-14 19:17:36 +09003367 }
satok723a27e2010-11-11 14:58:11 +09003368
Yohei Yukawa68645a62016-02-17 07:54:20 -08003369 if (!setSubtypeOnly) {
satok723a27e2010-11-11 14:58:11 +09003370 // Set InputMethod here
3371 mSettings.putSelectedInputMethod(imi != null ? imi.getId() : "");
3372 }
3373 }
3374
3375 private void resetSelectedInputMethodAndSubtypeLocked(String newDefaultIme) {
3376 InputMethodInfo imi = mMethodMap.get(newDefaultIme);
3377 int lastSubtypeId = NOT_A_SUBTYPE_ID;
3378 // newDefaultIme is empty when there is no candidate for the selected IME.
3379 if (imi != null && !TextUtils.isEmpty(newDefaultIme)) {
3380 String subtypeHashCode = mSettings.getLastSubtypeForInputMethodLocked(newDefaultIme);
3381 if (subtypeHashCode != null) {
3382 try {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003383 lastSubtypeId = InputMethodUtils.getSubtypeIdFromHashCode(
satok723a27e2010-11-11 14:58:11 +09003384 imi, Integer.valueOf(subtypeHashCode));
3385 } catch (NumberFormatException e) {
3386 Slog.w(TAG, "HashCode for subtype looks broken: " + subtypeHashCode, e);
3387 }
3388 }
3389 }
3390 setSelectedInputMethodAndSubtypeLocked(imi, lastSubtypeId, false);
satokab751aa2010-09-14 19:17:36 +09003391 }
3392
satok4e4569d2010-11-19 18:45:53 +09003393 // If there are no selected shortcuts, tries finding the most applicable ones.
3394 private Pair<InputMethodInfo, InputMethodSubtype>
3395 findLastResortApplicableShortcutInputMethodAndSubtypeLocked(String mode) {
3396 List<InputMethodInfo> imis = mSettings.getEnabledInputMethodListLocked();
3397 InputMethodInfo mostApplicableIMI = null;
satokcd7cd292010-11-20 15:46:23 +09003398 InputMethodSubtype mostApplicableSubtype = null;
satok4e4569d2010-11-19 18:45:53 +09003399 boolean foundInSystemIME = false;
3400
3401 // Search applicable subtype for each InputMethodInfo
3402 for (InputMethodInfo imi: imis) {
satok7599a7f2010-12-22 13:45:23 +09003403 final String imiId = imi.getId();
3404 if (foundInSystemIME && !imiId.equals(mCurMethodId)) {
3405 continue;
3406 }
satokcd7cd292010-11-20 15:46:23 +09003407 InputMethodSubtype subtype = null;
satokdf31ae62011-01-15 06:19:44 +09003408 final List<InputMethodSubtype> enabledSubtypes =
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003409 mSettings.getEnabledInputMethodSubtypeListLocked(mContext, imi, true);
satokdf31ae62011-01-15 06:19:44 +09003410 // 1. Search by the current subtype's locale from enabledSubtypes.
satok4e4569d2010-11-19 18:45:53 +09003411 if (mCurrentSubtype != null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003412 subtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
satokdf31ae62011-01-15 06:19:44 +09003413 mRes, enabledSubtypes, mode, mCurrentSubtype.getLocale(), false);
satok4e4569d2010-11-19 18:45:53 +09003414 }
satokdf31ae62011-01-15 06:19:44 +09003415 // 2. Search by the system locale from enabledSubtypes.
3416 // 3. Search the first enabled subtype matched with mode from enabledSubtypes.
satokcd7cd292010-11-20 15:46:23 +09003417 if (subtype == null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003418 subtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
satokdf31ae62011-01-15 06:19:44 +09003419 mRes, enabledSubtypes, mode, null, true);
satok4e4569d2010-11-19 18:45:53 +09003420 }
satoka86f5e42011-09-02 17:12:42 +09003421 final ArrayList<InputMethodSubtype> overridingImplicitlyEnabledSubtypes =
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003422 InputMethodUtils.getOverridingImplicitlyEnabledSubtypes(imi, mode);
satoka86f5e42011-09-02 17:12:42 +09003423 final ArrayList<InputMethodSubtype> subtypesForSearch =
3424 overridingImplicitlyEnabledSubtypes.isEmpty()
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003425 ? InputMethodUtils.getSubtypes(imi)
3426 : overridingImplicitlyEnabledSubtypes;
satok7599a7f2010-12-22 13:45:23 +09003427 // 4. Search by the current subtype's locale from all subtypes.
3428 if (subtype == null && mCurrentSubtype != null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003429 subtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
satoka86f5e42011-09-02 17:12:42 +09003430 mRes, subtypesForSearch, mode, mCurrentSubtype.getLocale(), false);
satok7599a7f2010-12-22 13:45:23 +09003431 }
3432 // 5. Search by the system locale from all subtypes.
3433 // 6. Search the first enabled subtype matched with mode from all subtypes.
satokcd7cd292010-11-20 15:46:23 +09003434 if (subtype == null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003435 subtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
satoka86f5e42011-09-02 17:12:42 +09003436 mRes, subtypesForSearch, mode, null, true);
satok4e4569d2010-11-19 18:45:53 +09003437 }
satokcd7cd292010-11-20 15:46:23 +09003438 if (subtype != null) {
satok7599a7f2010-12-22 13:45:23 +09003439 if (imiId.equals(mCurMethodId)) {
satok4e4569d2010-11-19 18:45:53 +09003440 // The current input method is the most applicable IME.
3441 mostApplicableIMI = imi;
satokcd7cd292010-11-20 15:46:23 +09003442 mostApplicableSubtype = subtype;
satok4e4569d2010-11-19 18:45:53 +09003443 break;
satok7599a7f2010-12-22 13:45:23 +09003444 } else if (!foundInSystemIME) {
satok4e4569d2010-11-19 18:45:53 +09003445 // The system input method is 2nd applicable IME.
3446 mostApplicableIMI = imi;
satokcd7cd292010-11-20 15:46:23 +09003447 mostApplicableSubtype = subtype;
satok7599a7f2010-12-22 13:45:23 +09003448 if ((imi.getServiceInfo().applicationInfo.flags
3449 & ApplicationInfo.FLAG_SYSTEM) != 0) {
3450 foundInSystemIME = true;
3451 }
satok4e4569d2010-11-19 18:45:53 +09003452 }
3453 }
3454 }
3455 if (DEBUG) {
satokcd7cd292010-11-20 15:46:23 +09003456 if (mostApplicableIMI != null) {
3457 Slog.w(TAG, "Most applicable shortcut input method was:"
3458 + mostApplicableIMI.getId());
3459 if (mostApplicableSubtype != null) {
3460 Slog.w(TAG, "Most applicable shortcut input method subtype was:"
3461 + "," + mostApplicableSubtype.getMode() + ","
3462 + mostApplicableSubtype.getLocale());
3463 }
3464 }
satok4e4569d2010-11-19 18:45:53 +09003465 }
satokcd7cd292010-11-20 15:46:23 +09003466 if (mostApplicableIMI != null) {
Yohei Yukawab0377bb2015-08-10 21:06:30 -07003467 return new Pair<> (mostApplicableIMI, mostApplicableSubtype);
satok4e4569d2010-11-19 18:45:53 +09003468 } else {
3469 return null;
3470 }
3471 }
3472
satokab751aa2010-09-14 19:17:36 +09003473 /**
3474 * @return Return the current subtype of this input method.
3475 */
satok42c5a162011-05-26 16:46:14 +09003476 @Override
satokab751aa2010-09-14 19:17:36 +09003477 public InputMethodSubtype getCurrentInputMethodSubtype() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003478 // TODO: Make this work even for non-current users?
3479 if (!calledFromValidUser()) {
3480 return null;
3481 }
3482 synchronized (mMethodMap) {
3483 return getCurrentInputMethodSubtypeLocked();
3484 }
3485 }
3486
3487 private InputMethodSubtype getCurrentInputMethodSubtypeLocked() {
satokfdf419e2012-05-08 16:52:08 +09003488 if (mCurMethodId == null) {
3489 return null;
3490 }
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003491 final boolean subtypeIsSelected = mSettings.isSubtypeSelected();
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003492 final InputMethodInfo imi = mMethodMap.get(mCurMethodId);
3493 if (imi == null || imi.getSubtypeCount() == 0) {
3494 return null;
satok4e4569d2010-11-19 18:45:53 +09003495 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003496 if (!subtypeIsSelected || mCurrentSubtype == null
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003497 || !InputMethodUtils.isValidSubtypeId(imi, mCurrentSubtype.hashCode())) {
3498 int subtypeId = mSettings.getSelectedInputMethodSubtypeId(mCurMethodId);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003499 if (subtypeId == NOT_A_SUBTYPE_ID) {
3500 // If there are no selected subtypes, the framework will try to find
3501 // the most applicable subtype from explicitly or implicitly enabled
3502 // subtypes.
3503 List<InputMethodSubtype> explicitlyOrImplicitlyEnabledSubtypes =
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003504 mSettings.getEnabledInputMethodSubtypeListLocked(mContext, imi, true);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003505 // If there is only one explicitly or implicitly enabled subtype,
3506 // just returns it.
3507 if (explicitlyOrImplicitlyEnabledSubtypes.size() == 1) {
3508 mCurrentSubtype = explicitlyOrImplicitlyEnabledSubtypes.get(0);
3509 } else if (explicitlyOrImplicitlyEnabledSubtypes.size() > 1) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003510 mCurrentSubtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003511 mRes, explicitlyOrImplicitlyEnabledSubtypes,
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003512 InputMethodUtils.SUBTYPE_MODE_KEYBOARD, null, true);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003513 if (mCurrentSubtype == null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003514 mCurrentSubtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003515 mRes, explicitlyOrImplicitlyEnabledSubtypes, null, null,
3516 true);
satok4e4569d2010-11-19 18:45:53 +09003517 }
satok3ef8b292010-11-23 06:06:29 +09003518 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003519 } else {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003520 mCurrentSubtype = InputMethodUtils.getSubtypes(imi).get(subtypeId);
satok8fbb1e82010-11-02 23:15:58 +09003521 }
3522 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003523 return mCurrentSubtype;
satokab751aa2010-09-14 19:17:36 +09003524 }
3525
satok4e4569d2010-11-19 18:45:53 +09003526 // TODO: We should change the return type from List to List<Parcelable>
satokdbf29502011-08-25 15:28:23 +09003527 @SuppressWarnings("rawtypes")
satoke7c6998e2011-06-03 17:57:59 +09003528 @Override
satok4e4569d2010-11-19 18:45:53 +09003529 public List getShortcutInputMethodsAndSubtypes() {
3530 synchronized (mMethodMap) {
Yohei Yukawab0377bb2015-08-10 21:06:30 -07003531 ArrayList<Object> ret = new ArrayList<>();
satokf3db1af2010-11-23 13:34:33 +09003532 if (mShortcutInputMethodsAndSubtypes.size() == 0) {
satok4e4569d2010-11-19 18:45:53 +09003533 // If there are no selected shortcut subtypes, the framework will try to find
3534 // the most applicable subtype from all subtypes whose mode is
3535 // SUBTYPE_MODE_VOICE. This is an exceptional case, so we will hardcode the mode.
satokf3db1af2010-11-23 13:34:33 +09003536 Pair<InputMethodInfo, InputMethodSubtype> info =
3537 findLastResortApplicableShortcutInputMethodAndSubtypeLocked(
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003538 InputMethodUtils.SUBTYPE_MODE_VOICE);
satok7599a7f2010-12-22 13:45:23 +09003539 if (info != null) {
satok3da92232011-01-11 22:46:30 +09003540 ret.add(info.first);
3541 ret.add(info.second);
satok7599a7f2010-12-22 13:45:23 +09003542 }
satok3da92232011-01-11 22:46:30 +09003543 return ret;
satokf3db1af2010-11-23 13:34:33 +09003544 }
satokf3db1af2010-11-23 13:34:33 +09003545 for (InputMethodInfo imi: mShortcutInputMethodsAndSubtypes.keySet()) {
3546 ret.add(imi);
3547 for (InputMethodSubtype subtype: mShortcutInputMethodsAndSubtypes.get(imi)) {
3548 ret.add(subtype);
satok4e4569d2010-11-19 18:45:53 +09003549 }
3550 }
satokf3db1af2010-11-23 13:34:33 +09003551 return ret;
satok4e4569d2010-11-19 18:45:53 +09003552 }
3553 }
3554
satok42c5a162011-05-26 16:46:14 +09003555 @Override
satokb66d2872010-11-10 01:04:04 +09003556 public boolean setCurrentInputMethodSubtype(InputMethodSubtype subtype) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003557 // TODO: Make this work even for non-current users?
3558 if (!calledFromValidUser()) {
3559 return false;
3560 }
satokb66d2872010-11-10 01:04:04 +09003561 synchronized (mMethodMap) {
3562 if (subtype != null && mCurMethodId != null) {
3563 InputMethodInfo imi = mMethodMap.get(mCurMethodId);
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003564 int subtypeId = InputMethodUtils.getSubtypeIdFromHashCode(imi, subtype.hashCode());
satokb66d2872010-11-10 01:04:04 +09003565 if (subtypeId != NOT_A_SUBTYPE_ID) {
3566 setInputMethodLocked(mCurMethodId, subtypeId);
3567 return true;
3568 }
3569 }
3570 return false;
3571 }
3572 }
3573
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +09003574 // TODO: Cache the state for each user and reset when the cached user is removed.
satoke7c6998e2011-06-03 17:57:59 +09003575 private static class InputMethodFileManager {
3576 private static final String SYSTEM_PATH = "system";
3577 private static final String INPUT_METHOD_PATH = "inputmethod";
3578 private static final String ADDITIONAL_SUBTYPES_FILE_NAME = "subtypes.xml";
3579 private static final String NODE_SUBTYPES = "subtypes";
3580 private static final String NODE_SUBTYPE = "subtype";
3581 private static final String NODE_IMI = "imi";
3582 private static final String ATTR_ID = "id";
3583 private static final String ATTR_LABEL = "label";
3584 private static final String ATTR_ICON = "icon";
3585 private static final String ATTR_IME_SUBTYPE_LOCALE = "imeSubtypeLocale";
Yohei Yukawa868d19b2015-12-07 15:58:57 -08003586 private static final String ATTR_IME_SUBTYPE_LANGUAGE_TAG = "languageTag";
satoke7c6998e2011-06-03 17:57:59 +09003587 private static final String ATTR_IME_SUBTYPE_MODE = "imeSubtypeMode";
3588 private static final String ATTR_IME_SUBTYPE_EXTRA_VALUE = "imeSubtypeExtraValue";
3589 private static final String ATTR_IS_AUXILIARY = "isAuxiliary";
3590 private final AtomicFile mAdditionalInputMethodSubtypeFile;
3591 private final HashMap<String, InputMethodInfo> mMethodMap;
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003592 private final HashMap<String, List<InputMethodSubtype>> mAdditionalSubtypesMap =
Yohei Yukawab0377bb2015-08-10 21:06:30 -07003593 new HashMap<>();
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +09003594 public InputMethodFileManager(HashMap<String, InputMethodInfo> methodMap, int userId) {
satoke7c6998e2011-06-03 17:57:59 +09003595 if (methodMap == null) {
3596 throw new NullPointerException("methodMap is null");
3597 }
3598 mMethodMap = methodMap;
Xiaohui Chen7c696362015-09-16 09:56:14 -07003599 final File systemDir = userId == UserHandle.USER_SYSTEM
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +09003600 ? new File(Environment.getDataDirectory(), SYSTEM_PATH)
3601 : Environment.getUserSystemDirectory(userId);
satoke7c6998e2011-06-03 17:57:59 +09003602 final File inputMethodDir = new File(systemDir, INPUT_METHOD_PATH);
Yohei Yukawadf5af482015-08-04 22:11:11 -07003603 if (!inputMethodDir.exists() && !inputMethodDir.mkdirs()) {
satoke7c6998e2011-06-03 17:57:59 +09003604 Slog.w(TAG, "Couldn't create dir.: " + inputMethodDir.getAbsolutePath());
3605 }
3606 final File subtypeFile = new File(inputMethodDir, ADDITIONAL_SUBTYPES_FILE_NAME);
3607 mAdditionalInputMethodSubtypeFile = new AtomicFile(subtypeFile);
3608 if (!subtypeFile.exists()) {
3609 // If "subtypes.xml" doesn't exist, create a blank file.
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003610 writeAdditionalInputMethodSubtypes(
3611 mAdditionalSubtypesMap, mAdditionalInputMethodSubtypeFile, methodMap);
satoke7c6998e2011-06-03 17:57:59 +09003612 } else {
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003613 readAdditionalInputMethodSubtypes(
3614 mAdditionalSubtypesMap, mAdditionalInputMethodSubtypeFile);
satoke7c6998e2011-06-03 17:57:59 +09003615 }
3616 }
3617
3618 private void deleteAllInputMethodSubtypes(String imiId) {
3619 synchronized (mMethodMap) {
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003620 mAdditionalSubtypesMap.remove(imiId);
3621 writeAdditionalInputMethodSubtypes(
3622 mAdditionalSubtypesMap, mAdditionalInputMethodSubtypeFile, mMethodMap);
satoke7c6998e2011-06-03 17:57:59 +09003623 }
3624 }
3625
3626 public void addInputMethodSubtypes(
satok4a28bde2011-06-29 21:03:40 +09003627 InputMethodInfo imi, InputMethodSubtype[] additionalSubtypes) {
satoke7c6998e2011-06-03 17:57:59 +09003628 synchronized (mMethodMap) {
Yohei Yukawab0377bb2015-08-10 21:06:30 -07003629 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>();
satoke7c6998e2011-06-03 17:57:59 +09003630 final int N = additionalSubtypes.length;
3631 for (int i = 0; i < N; ++i) {
3632 final InputMethodSubtype subtype = additionalSubtypes[i];
satoked2b24e2011-08-31 18:03:21 +09003633 if (!subtypes.contains(subtype)) {
satoke7c6998e2011-06-03 17:57:59 +09003634 subtypes.add(subtype);
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003635 } else {
3636 Slog.w(TAG, "Duplicated subtype definition found: "
3637 + subtype.getLocale() + ", " + subtype.getMode());
satoke7c6998e2011-06-03 17:57:59 +09003638 }
3639 }
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003640 mAdditionalSubtypesMap.put(imi.getId(), subtypes);
3641 writeAdditionalInputMethodSubtypes(
3642 mAdditionalSubtypesMap, mAdditionalInputMethodSubtypeFile, mMethodMap);
satoke7c6998e2011-06-03 17:57:59 +09003643 }
3644 }
3645
3646 public HashMap<String, List<InputMethodSubtype>> getAllAdditionalInputMethodSubtypes() {
3647 synchronized (mMethodMap) {
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003648 return mAdditionalSubtypesMap;
satoke7c6998e2011-06-03 17:57:59 +09003649 }
3650 }
3651
3652 private static void writeAdditionalInputMethodSubtypes(
3653 HashMap<String, List<InputMethodSubtype>> allSubtypes, AtomicFile subtypesFile,
3654 HashMap<String, InputMethodInfo> methodMap) {
3655 // Safety net for the case that this function is called before methodMap is set.
3656 final boolean isSetMethodMap = methodMap != null && methodMap.size() > 0;
3657 FileOutputStream fos = null;
3658 try {
3659 fos = subtypesFile.startWrite();
3660 final XmlSerializer out = new FastXmlSerializer();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01003661 out.setOutput(fos, StandardCharsets.UTF_8.name());
satoke7c6998e2011-06-03 17:57:59 +09003662 out.startDocument(null, true);
3663 out.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
3664 out.startTag(null, NODE_SUBTYPES);
3665 for (String imiId : allSubtypes.keySet()) {
3666 if (isSetMethodMap && !methodMap.containsKey(imiId)) {
3667 Slog.w(TAG, "IME uninstalled or not valid.: " + imiId);
3668 continue;
3669 }
3670 out.startTag(null, NODE_IMI);
3671 out.attribute(null, ATTR_ID, imiId);
3672 final List<InputMethodSubtype> subtypesList = allSubtypes.get(imiId);
3673 final int N = subtypesList.size();
3674 for (int i = 0; i < N; ++i) {
3675 final InputMethodSubtype subtype = subtypesList.get(i);
3676 out.startTag(null, NODE_SUBTYPE);
3677 out.attribute(null, ATTR_ICON, String.valueOf(subtype.getIconResId()));
3678 out.attribute(null, ATTR_LABEL, String.valueOf(subtype.getNameResId()));
3679 out.attribute(null, ATTR_IME_SUBTYPE_LOCALE, subtype.getLocale());
Yohei Yukawa868d19b2015-12-07 15:58:57 -08003680 out.attribute(null, ATTR_IME_SUBTYPE_LANGUAGE_TAG,
3681 subtype.getLanguageTag());
satoke7c6998e2011-06-03 17:57:59 +09003682 out.attribute(null, ATTR_IME_SUBTYPE_MODE, subtype.getMode());
3683 out.attribute(null, ATTR_IME_SUBTYPE_EXTRA_VALUE, subtype.getExtraValue());
3684 out.attribute(null, ATTR_IS_AUXILIARY,
3685 String.valueOf(subtype.isAuxiliary() ? 1 : 0));
3686 out.endTag(null, NODE_SUBTYPE);
3687 }
3688 out.endTag(null, NODE_IMI);
3689 }
3690 out.endTag(null, NODE_SUBTYPES);
3691 out.endDocument();
3692 subtypesFile.finishWrite(fos);
3693 } catch (java.io.IOException e) {
3694 Slog.w(TAG, "Error writing subtypes", e);
3695 if (fos != null) {
3696 subtypesFile.failWrite(fos);
3697 }
3698 }
3699 }
3700
3701 private static void readAdditionalInputMethodSubtypes(
3702 HashMap<String, List<InputMethodSubtype>> allSubtypes, AtomicFile subtypesFile) {
3703 if (allSubtypes == null || subtypesFile == null) return;
3704 allSubtypes.clear();
Yohei Yukawa5894b432015-08-11 13:29:24 -07003705 try (final FileInputStream fis = subtypesFile.openRead()) {
satoke7c6998e2011-06-03 17:57:59 +09003706 final XmlPullParser parser = Xml.newPullParser();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01003707 parser.setInput(fis, StandardCharsets.UTF_8.name());
satoke7c6998e2011-06-03 17:57:59 +09003708 int type = parser.getEventType();
3709 // Skip parsing until START_TAG
3710 while ((type = parser.next()) != XmlPullParser.START_TAG
3711 && type != XmlPullParser.END_DOCUMENT) {}
3712 String firstNodeName = parser.getName();
3713 if (!NODE_SUBTYPES.equals(firstNodeName)) {
3714 throw new XmlPullParserException("Xml doesn't start with subtypes");
3715 }
3716 final int depth =parser.getDepth();
3717 String currentImiId = null;
3718 ArrayList<InputMethodSubtype> tempSubtypesArray = null;
3719 while (((type = parser.next()) != XmlPullParser.END_TAG
3720 || parser.getDepth() > depth) && type != XmlPullParser.END_DOCUMENT) {
3721 if (type != XmlPullParser.START_TAG)
3722 continue;
3723 final String nodeName = parser.getName();
3724 if (NODE_IMI.equals(nodeName)) {
3725 currentImiId = parser.getAttributeValue(null, ATTR_ID);
3726 if (TextUtils.isEmpty(currentImiId)) {
3727 Slog.w(TAG, "Invalid imi id found in subtypes.xml");
3728 continue;
3729 }
Yohei Yukawab0377bb2015-08-10 21:06:30 -07003730 tempSubtypesArray = new ArrayList<>();
satoke7c6998e2011-06-03 17:57:59 +09003731 allSubtypes.put(currentImiId, tempSubtypesArray);
3732 } else if (NODE_SUBTYPE.equals(nodeName)) {
3733 if (TextUtils.isEmpty(currentImiId) || tempSubtypesArray == null) {
3734 Slog.w(TAG, "IME uninstalled or not valid.: " + currentImiId);
3735 continue;
3736 }
3737 final int icon = Integer.valueOf(
3738 parser.getAttributeValue(null, ATTR_ICON));
3739 final int label = Integer.valueOf(
3740 parser.getAttributeValue(null, ATTR_LABEL));
3741 final String imeSubtypeLocale =
3742 parser.getAttributeValue(null, ATTR_IME_SUBTYPE_LOCALE);
Yohei Yukawa868d19b2015-12-07 15:58:57 -08003743 final String languageTag =
3744 parser.getAttributeValue(null, ATTR_IME_SUBTYPE_LANGUAGE_TAG);
satoke7c6998e2011-06-03 17:57:59 +09003745 final String imeSubtypeMode =
3746 parser.getAttributeValue(null, ATTR_IME_SUBTYPE_MODE);
3747 final String imeSubtypeExtraValue =
3748 parser.getAttributeValue(null, ATTR_IME_SUBTYPE_EXTRA_VALUE);
satok4a28bde2011-06-29 21:03:40 +09003749 final boolean isAuxiliary = "1".equals(String.valueOf(
3750 parser.getAttributeValue(null, ATTR_IS_AUXILIARY)));
Yohei Yukawa443c2ba2014-09-10 14:10:30 +09003751 final InputMethodSubtype subtype = new InputMethodSubtypeBuilder()
3752 .setSubtypeNameResId(label)
3753 .setSubtypeIconResId(icon)
3754 .setSubtypeLocale(imeSubtypeLocale)
Yohei Yukawa868d19b2015-12-07 15:58:57 -08003755 .setLanguageTag(languageTag)
Yohei Yukawa443c2ba2014-09-10 14:10:30 +09003756 .setSubtypeMode(imeSubtypeMode)
3757 .setSubtypeExtraValue(imeSubtypeExtraValue)
3758 .setIsAuxiliary(isAuxiliary)
3759 .build();
satoke7c6998e2011-06-03 17:57:59 +09003760 tempSubtypesArray.add(subtype);
3761 }
3762 }
Yohei Yukawa5894b432015-08-11 13:29:24 -07003763 } catch (XmlPullParserException | IOException | NumberFormatException e) {
3764 Slog.w(TAG, "Error reading subtypes", e);
satoke7c6998e2011-06-03 17:57:59 +09003765 return;
satoke7c6998e2011-06-03 17:57:59 +09003766 }
3767 }
3768 }
3769
Yohei Yukawafa6e0a82015-07-23 15:08:59 -07003770 private static final class LocalServiceImpl implements InputMethodManagerInternal {
3771 @NonNull
3772 private final Handler mHandler;
3773
3774 LocalServiceImpl(@NonNull final Handler handler) {
3775 mHandler = handler;
3776 }
3777
3778 @Override
3779 public void setInteractive(boolean interactive) {
3780 // Do everything in handler so as not to block the caller.
3781 mHandler.sendMessage(mHandler.obtainMessage(MSG_SET_INTERACTIVE,
3782 interactive ? 1 : 0, 0));
3783 }
Yohei Yukawaae61f712015-12-09 13:00:10 -08003784
3785 @Override
3786 public void switchInputMethod(boolean forwardDirection) {
3787 // Do everything in handler so as not to block the caller.
3788 mHandler.sendMessage(mHandler.obtainMessage(MSG_SWITCH_IME,
3789 forwardDirection ? 1 : 0, 0));
3790 }
Yohei Yukawafa6e0a82015-07-23 15:08:59 -07003791 }
3792
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003793 @Override
3794 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
3795 if (mContext.checkCallingOrSelfPermission(android.Manifest.permission.DUMP)
3796 != PackageManager.PERMISSION_GRANTED) {
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003797
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003798 pw.println("Permission Denial: can't dump InputMethodManager from from pid="
3799 + Binder.getCallingPid()
3800 + ", uid=" + Binder.getCallingUid());
3801 return;
3802 }
3803
3804 IInputMethod method;
3805 ClientState client;
Yohei Yukawae39d4ed2015-11-19 03:38:49 -08003806 ClientState focusedWindowClient;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003807
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003808 final Printer p = new PrintWriterPrinter(pw);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003809
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003810 synchronized (mMethodMap) {
3811 p.println("Current Input Method Manager state:");
3812 int N = mMethodList.size();
3813 p.println(" Input Methods:");
3814 for (int i=0; i<N; i++) {
3815 InputMethodInfo info = mMethodList.get(i);
3816 p.println(" InputMethod #" + i + ":");
3817 info.dump(p, " ");
3818 }
3819 p.println(" Clients:");
3820 for (ClientState ci : mClients.values()) {
3821 p.println(" Client " + ci + ":");
3822 p.println(" client=" + ci.client);
3823 p.println(" inputContext=" + ci.inputContext);
3824 p.println(" sessionRequested=" + ci.sessionRequested);
3825 p.println(" curSession=" + ci.curSession);
3826 }
The Android Open Source Project10592532009-03-18 17:39:46 -07003827 p.println(" mCurMethodId=" + mCurMethodId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003828 client = mCurClient;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07003829 p.println(" mCurClient=" + client + " mCurSeq=" + mCurSeq);
3830 p.println(" mCurFocusedWindow=" + mCurFocusedWindow);
Yohei Yukawae39d4ed2015-11-19 03:38:49 -08003831 focusedWindowClient = mCurFocusedWindowClient;
3832 p.println(" mCurFocusedWindowClient=" + focusedWindowClient);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003833 p.println(" mCurId=" + mCurId + " mHaveConnect=" + mHaveConnection
3834 + " mBoundToMethod=" + mBoundToMethod);
3835 p.println(" mCurToken=" + mCurToken);
3836 p.println(" mCurIntent=" + mCurIntent);
3837 method = mCurMethod;
3838 p.println(" mCurMethod=" + mCurMethod);
3839 p.println(" mEnabledSession=" + mEnabledSession);
3840 p.println(" mShowRequested=" + mShowRequested
3841 + " mShowExplicitlyRequested=" + mShowExplicitlyRequested
3842 + " mShowForced=" + mShowForced
3843 + " mInputShown=" + mInputShown);
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09003844 p.println(" mCurUserActionNotificationSequenceNumber="
3845 + mCurUserActionNotificationSequenceNumber);
Yohei Yukawafa6e0a82015-07-23 15:08:59 -07003846 p.println(" mSystemReady=" + mSystemReady + " mInteractive=" + mIsInteractive);
Yohei Yukawa81482972015-06-04 00:58:59 -07003847 p.println(" mSettingsObserver=" + mSettingsObserver);
Yohei Yukawad7248862015-06-03 23:56:12 -07003848 p.println(" mSwitchingController:");
3849 mSwitchingController.dump(p);
Yohei Yukawa68645a62016-02-17 07:54:20 -08003850 p.println(" mSettings:");
3851 mSettings.dumpLocked(p, " ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003852 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003853
Jeff Brownb88102f2010-09-08 11:49:43 -07003854 p.println(" ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003855 if (client != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003856 pw.flush();
3857 try {
3858 client.client.asBinder().dump(fd, args);
3859 } catch (RemoteException e) {
3860 p.println("Input method client dead: " + e);
3861 }
Jeff Brownb88102f2010-09-08 11:49:43 -07003862 } else {
3863 p.println("No input method client.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003864 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003865
Yohei Yukawae39d4ed2015-11-19 03:38:49 -08003866 if (focusedWindowClient != null && client != focusedWindowClient) {
3867 p.println(" ");
3868 p.println("Warning: Current input method client doesn't match the last focused. "
3869 + "window.");
3870 p.println("Dumping input method client in the last focused window just in case.");
3871 p.println(" ");
3872 pw.flush();
3873 try {
3874 focusedWindowClient.client.asBinder().dump(fd, args);
3875 } catch (RemoteException e) {
3876 p.println("Input method client in focused window dead: " + e);
3877 }
3878 }
3879
Jeff Brownb88102f2010-09-08 11:49:43 -07003880 p.println(" ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003881 if (method != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003882 pw.flush();
3883 try {
3884 method.asBinder().dump(fd, args);
3885 } catch (RemoteException e) {
3886 p.println("Input method service dead: " + e);
3887 }
Jeff Brownb88102f2010-09-08 11:49:43 -07003888 } else {
3889 p.println("No input method service.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003890 }
3891 }
3892}