blob: 00a49bdb727317ab14b9999f0eaebe8dd29cc656 [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;
Yohei Yukawa7b18aec2016-03-07 13:04:32 -080042import android.annotation.UserIdInt;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080043import android.app.ActivityManagerNative;
44import android.app.AlertDialog;
Yohei Yukawa6ab1a822015-08-25 14:01:28 -070045import android.app.AppGlobals;
Yohei Yukawae63b5fa2014-09-19 13:14:55 +090046import android.app.AppOpsManager;
satokf90a33e2011-07-19 11:55:52 +090047import android.app.KeyguardManager;
satok7cfc0ed2011-06-20 21:29:36 +090048import android.app.Notification;
49import android.app.NotificationManager;
Dianne Hackborndd9b82c2009-09-03 00:18:47 -070050import android.app.PendingIntent;
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;
Yohei Yukawae985c242016-02-24 18:27:04 -080098import android.util.LocaleList;
satokf9f01002011-05-19 21:31:50 +090099import android.util.LruCache;
satokab751aa2010-09-14 19:17:36 +0900100import android.util.Pair;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800101import android.util.PrintWriterPrinter;
102import android.util.Printer;
satoke7c6998e2011-06-03 17:57:59 +0900103import android.util.Slog;
104import android.util.Xml;
Tadashi G. Takaokad130b802014-08-01 14:05:47 +0900105import android.view.ContextThemeWrapper;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800106import android.view.IWindowManager;
Jeff Brownc28867a2013-03-26 15:42:39 -0700107import android.view.InputChannel;
Ken Wakasa05dbb652011-08-22 15:22:43 +0900108import android.view.LayoutInflater;
109import android.view.View;
110import android.view.ViewGroup;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800111import android.view.WindowManager;
Seigo Nonaka7309b122015-08-17 18:34:13 -0700112import android.view.WindowManagerInternal;
satokab751aa2010-09-14 19:17:36 +0900113import android.view.inputmethod.EditorInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800114import android.view.inputmethod.InputBinding;
115import android.view.inputmethod.InputMethod;
116import android.view.inputmethod.InputMethodInfo;
117import android.view.inputmethod.InputMethodManager;
Yohei Yukawafa6e0a82015-07-23 15:08:59 -0700118import android.view.inputmethod.InputMethodManagerInternal;
satokab751aa2010-09-14 19:17:36 +0900119import android.view.inputmethod.InputMethodSubtype;
Yohei Yukawa443c2ba2014-09-10 14:10:30 +0900120import android.view.inputmethod.InputMethodSubtype.InputMethodSubtypeBuilder;
Ken Wakasa05dbb652011-08-22 15:22:43 +0900121import android.widget.ArrayAdapter;
satok01038492012-04-09 21:08:27 +0900122import android.widget.CompoundButton;
123import android.widget.CompoundButton.OnCheckedChangeListener;
Ken Wakasa05dbb652011-08-22 15:22:43 +0900124import android.widget.RadioButton;
satok01038492012-04-09 21:08:27 +0900125import android.widget.Switch;
Ken Wakasa05dbb652011-08-22 15:22:43 +0900126import android.widget.TextView;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800127
satoke7c6998e2011-06-03 17:57:59 +0900128import java.io.File;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800129import java.io.FileDescriptor;
satoke7c6998e2011-06-03 17:57:59 +0900130import java.io.FileInputStream;
131import java.io.FileOutputStream;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800132import java.io.IOException;
133import java.io.PrintWriter;
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +0100134import java.nio.charset.StandardCharsets;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800135import java.util.ArrayList;
satok688bd472012-02-09 20:09:17 +0900136import java.util.Collections;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800137import java.util.HashMap;
138import java.util.List;
139
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;
Yohei Yukawae985c242016-02-24 18:27:04 -0800449 private LocaleList mLastSystemLocales;
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;
Yohei Yukawa7b574cb2016-03-16 17:22:22 -0700459 @NonNull
Dianne Hackbornfd7aded2013-01-22 17:10:23 -0800460 String mLastEnabled = "";
461
Yohei Yukawa81482972015-06-04 00:58:59 -0700462 /**
463 * <em>This constructor must be called within the lock.</em>
464 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800465 SettingsObserver(Handler handler) {
466 super(handler);
Yohei Yukawa81482972015-06-04 00:58:59 -0700467 }
468
Yohei Yukawa7b18aec2016-03-07 13:04:32 -0800469 public void registerContentObserverLocked(@UserIdInt int userId) {
Yohei Yukawa81482972015-06-04 00:58:59 -0700470 if (mRegistered && mUserId == userId) {
471 return;
472 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800473 ContentResolver resolver = mContext.getContentResolver();
Yohei Yukawa81482972015-06-04 00:58:59 -0700474 if (mRegistered) {
475 mContext.getContentResolver().unregisterContentObserver(this);
476 mRegistered = false;
477 }
478 if (mUserId != userId) {
479 mLastEnabled = "";
480 mUserId = userId;
481 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800482 resolver.registerContentObserver(Settings.Secure.getUriFor(
Yohei Yukawa81482972015-06-04 00:58:59 -0700483 Settings.Secure.DEFAULT_INPUT_METHOD), false, this, userId);
satokab751aa2010-09-14 19:17:36 +0900484 resolver.registerContentObserver(Settings.Secure.getUriFor(
Yohei Yukawa81482972015-06-04 00:58:59 -0700485 Settings.Secure.ENABLED_INPUT_METHODS), false, this, userId);
satokb6109bb2011-02-03 22:24:54 +0900486 resolver.registerContentObserver(Settings.Secure.getUriFor(
Yohei Yukawa81482972015-06-04 00:58:59 -0700487 Settings.Secure.SELECTED_INPUT_METHOD_SUBTYPE), false, this, userId);
Michael Wright7b5a96b2014-08-09 19:28:42 -0700488 resolver.registerContentObserver(Settings.Secure.getUriFor(
Yohei Yukawa81482972015-06-04 00:58:59 -0700489 Settings.Secure.SHOW_IME_WITH_HARD_KEYBOARD), false, this, userId);
Anna Galusza9b278112016-01-04 11:37:37 -0800490 resolver.registerContentObserver(Settings.Secure.getUriFor(
491 Settings.Secure.ACCESSIBILITY_SOFT_KEYBOARD_MODE), false, this, userId);
Yohei Yukawa81482972015-06-04 00:58:59 -0700492 mRegistered = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800493 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800494
Michael Wright7b5a96b2014-08-09 19:28:42 -0700495 @Override public void onChange(boolean selfChange, Uri uri) {
Anna Galusza9b278112016-01-04 11:37:37 -0800496 final Uri showImeUri = Settings.Secure.getUriFor(
497 Settings.Secure.SHOW_IME_WITH_HARD_KEYBOARD);
498 final Uri accessibilityRequestingNoImeUri = Settings.Secure.getUriFor(
499 Settings.Secure.ACCESSIBILITY_SOFT_KEYBOARD_MODE);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800500 synchronized (mMethodMap) {
Michael Wright7b5a96b2014-08-09 19:28:42 -0700501 if (showImeUri.equals(uri)) {
502 updateKeyboardFromSettingsLocked();
Anna Galusza9b278112016-01-04 11:37:37 -0800503 } else if (accessibilityRequestingNoImeUri.equals(uri)) {
504 mAccessibilityRequestingNoSoftKeyboard = Settings.Secure.getIntForUser(
505 mContext.getContentResolver(),
506 Settings.Secure.ACCESSIBILITY_SOFT_KEYBOARD_MODE,
507 0, mUserId) == 1;
508 if (mAccessibilityRequestingNoSoftKeyboard) {
509 final boolean showRequested = mShowRequested;
510 hideCurrentInputLocked(0, null);
511 mShowRequested = showRequested;
512 } else if (mShowRequested) {
513 showCurrentInputLocked(InputMethodManager.SHOW_IMPLICIT, null);
514 }
Michael Wright7b5a96b2014-08-09 19:28:42 -0700515 } else {
516 boolean enabledChanged = false;
517 String newEnabled = mSettings.getEnabledInputMethodsStr();
518 if (!mLastEnabled.equals(newEnabled)) {
519 mLastEnabled = newEnabled;
520 enabledChanged = true;
521 }
522 updateInputMethodsFromSettingsLocked(enabledChanged);
Dianne Hackbornfd7aded2013-01-22 17:10:23 -0800523 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800524 }
525 }
Yohei Yukawa81482972015-06-04 00:58:59 -0700526
527 @Override
528 public String toString() {
529 return "SettingsObserver{mUserId=" + mUserId + " mRegistered=" + mRegistered
530 + " mLastEnabled=" + mLastEnabled + "}";
531 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800532 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800533
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900534 class ImmsBroadcastReceiver extends android.content.BroadcastReceiver {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900535 @Override
536 public void onReceive(Context context, Intent intent) {
537 final String action = intent.getAction();
Yohei Yukawafa6e0a82015-07-23 15:08:59 -0700538 if (Intent.ACTION_CLOSE_SYSTEM_DIALOGS.equals(action)) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900539 hideInputMethodMenu();
Yohei Yukawafa6e0a82015-07-23 15:08:59 -0700540 // No need to update mIsInteractive
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900541 return;
Amith Yamasani734983f2014-03-04 16:48:05 -0800542 } else if (Intent.ACTION_USER_ADDED.equals(action)
543 || Intent.ACTION_USER_REMOVED.equals(action)) {
Kenny Guy2a764942014-04-02 13:29:20 +0100544 updateCurrentProfileIds();
Amith Yamasani734983f2014-03-04 16:48:05 -0800545 return;
Christopher Tate7b9a28c2015-03-18 13:06:16 -0700546 } else if (Intent.ACTION_SETTING_RESTORED.equals(action)) {
547 final String name = intent.getStringExtra(Intent.EXTRA_SETTING_NAME);
548 if (Settings.Secure.ENABLED_INPUT_METHODS.equals(name)) {
549 final String prevValue = intent.getStringExtra(
550 Intent.EXTRA_SETTING_PREVIOUS_VALUE);
551 final String newValue = intent.getStringExtra(
552 Intent.EXTRA_SETTING_NEW_VALUE);
553 restoreEnabledInputMethods(mContext, prevValue, newValue);
554 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900555 } else {
556 Slog.w(TAG, "Unexpected intent " + intent);
557 }
558 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800559 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800560
Christopher Tate7b9a28c2015-03-18 13:06:16 -0700561 // Apply the results of a restore operation to the set of enabled IMEs. Note that this
562 // does not attempt to validate on the fly with any installed device policy, so must only
563 // be run in the context of initial device setup.
564 //
565 // TODO: Move this method to InputMethodUtils with adding unit tests.
566 static void restoreEnabledInputMethods(Context context, String prevValue, String newValue) {
567 if (DEBUG_RESTORE) {
568 Slog.i(TAG, "Restoring enabled input methods:");
569 Slog.i(TAG, "prev=" + prevValue);
570 Slog.i(TAG, " new=" + newValue);
571 }
572 // 'new' is the just-restored state, 'prev' is what was in settings prior to the restore
Seigo Nonaka2028dda2015-07-06 17:41:24 +0900573 ArrayMap<String, ArraySet<String>> prevMap =
574 InputMethodUtils.parseInputMethodsAndSubtypesString(prevValue);
575 ArrayMap<String, ArraySet<String>> newMap =
576 InputMethodUtils.parseInputMethodsAndSubtypesString(newValue);
Christopher Tate7b9a28c2015-03-18 13:06:16 -0700577
578 // Merge the restored ime+subtype enabled states into the live state
579 for (ArrayMap.Entry<String, ArraySet<String>> entry : newMap.entrySet()) {
580 final String imeId = entry.getKey();
581 ArraySet<String> prevSubtypes = prevMap.get(imeId);
582 if (prevSubtypes == null) {
Yohei Yukawab0377bb2015-08-10 21:06:30 -0700583 prevSubtypes = new ArraySet<>(2);
Christopher Tate7b9a28c2015-03-18 13:06:16 -0700584 prevMap.put(imeId, prevSubtypes);
585 }
586 prevSubtypes.addAll(entry.getValue());
587 }
588
Seigo Nonaka2a099bc2015-08-14 19:29:45 -0700589 final String mergedImesAndSubtypesString =
590 InputMethodUtils.buildInputMethodsAndSubtypesString(prevMap);
Christopher Tate7b9a28c2015-03-18 13:06:16 -0700591 if (DEBUG_RESTORE) {
592 Slog.i(TAG, "Merged IME string:");
593 Slog.i(TAG, " " + mergedImesAndSubtypesString);
594 }
595 Settings.Secure.putString(context.getContentResolver(),
596 Settings.Secure.ENABLED_INPUT_METHODS, mergedImesAndSubtypesString);
597 }
598
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800599 class MyPackageMonitor extends PackageMonitor {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900600 private boolean isChangingPackagesOfCurrentUser() {
601 final int userId = getChangingUserId();
602 final boolean retval = userId == mSettings.getCurrentUserId();
603 if (DEBUG) {
satok81f8b7c2012-12-04 20:42:56 +0900604 if (!retval) {
605 Slog.d(TAG, "--- ignore this call back from a background user: " + userId);
606 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900607 }
608 return retval;
609 }
610
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800611 @Override
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800612 public boolean onHandleForceStop(Intent intent, String[] packages, int uid, boolean doit) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900613 if (!isChangingPackagesOfCurrentUser()) {
614 return false;
615 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800616 synchronized (mMethodMap) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900617 String curInputMethodId = mSettings.getSelectedInputMethod();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800618 final int N = mMethodList.size();
619 if (curInputMethodId != null) {
620 for (int i=0; i<N; i++) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800621 InputMethodInfo imi = mMethodList.get(i);
622 if (imi.getId().equals(curInputMethodId)) {
623 for (String pkg : packages) {
624 if (imi.getPackageName().equals(pkg)) {
625 if (!doit) {
626 return true;
627 }
satok723a27e2010-11-11 14:58:11 +0900628 resetSelectedInputMethodAndSubtypeLocked("");
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800629 chooseNewDefaultIMELocked();
630 return true;
631 }
632 }
633 }
634 }
635 }
636 }
637 return false;
638 }
639
640 @Override
641 public void onSomePackagesChanged() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900642 if (!isChangingPackagesOfCurrentUser()) {
643 return;
644 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800645 synchronized (mMethodMap) {
646 InputMethodInfo curIm = null;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900647 String curInputMethodId = mSettings.getSelectedInputMethod();
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800648 final int N = mMethodList.size();
649 if (curInputMethodId != null) {
650 for (int i=0; i<N; i++) {
651 InputMethodInfo imi = mMethodList.get(i);
satoke7c6998e2011-06-03 17:57:59 +0900652 final String imiId = imi.getId();
653 if (imiId.equals(curInputMethodId)) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800654 curIm = imi;
655 }
satoke7c6998e2011-06-03 17:57:59 +0900656
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800657 int change = isPackageDisappearing(imi.getPackageName());
satoke7c6998e2011-06-03 17:57:59 +0900658 if (isPackageModified(imi.getPackageName())) {
659 mFileManager.deleteAllInputMethodSubtypes(imiId);
660 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800661 if (change == PACKAGE_TEMPORARY_CHANGE
662 || change == PACKAGE_PERMANENT_CHANGE) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800663 Slog.i(TAG, "Input method uninstalled, disabling: "
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800664 + imi.getComponent());
665 setInputMethodEnabledLocked(imi.getId(), false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800666 }
667 }
668 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800669
Yohei Yukawa94e33302016-02-12 19:37:03 -0800670 buildInputMethodListLocked(false /* resetDefaultEnabledIme */);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800671
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800672 boolean changed = false;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800673
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800674 if (curIm != null) {
Anna Galusza9b278112016-01-04 11:37:37 -0800675 int change = isPackageDisappearing(curIm.getPackageName());
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800676 if (change == PACKAGE_TEMPORARY_CHANGE
677 || change == PACKAGE_PERMANENT_CHANGE) {
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800678 ServiceInfo si = null;
679 try {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900680 si = mIPackageManager.getServiceInfo(
681 curIm.getComponent(), 0, mSettings.getCurrentUserId());
682 } catch (RemoteException ex) {
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800683 }
684 if (si == null) {
685 // Uh oh, current input method is no longer around!
686 // Pick another one...
Joe Onorato8a9b2202010-02-26 18:56:32 -0800687 Slog.i(TAG, "Current input method removed: " + curInputMethodId);
Seigo Nonakad9eb9112015-05-26 20:54:43 +0900688 updateSystemUiLocked(mCurToken, 0 /* vis */, mBackDisposition);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800689 if (!chooseNewDefaultIMELocked()) {
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800690 changed = true;
691 curIm = null;
Joe Onorato8a9b2202010-02-26 18:56:32 -0800692 Slog.i(TAG, "Unsetting current input method");
satok723a27e2010-11-11 14:58:11 +0900693 resetSelectedInputMethodAndSubtypeLocked("");
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800694 }
695 }
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800696 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800697 }
satokab751aa2010-09-14 19:17:36 +0900698
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800699 if (curIm == null) {
700 // We currently don't have a default input method... is
701 // one now available?
702 changed = chooseNewDefaultIMELocked();
Yohei Yukawa54d512c2015-05-19 22:15:02 -0700703 } else if (!changed && isPackageModified(curIm.getPackageName())) {
704 // Even if the current input method is still available, mCurrentSubtype could
705 // be obsolete when the package is modified in practice.
706 changed = true;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800707 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800708
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800709 if (changed) {
Dianne Hackbornfd7aded2013-01-22 17:10:23 -0800710 updateFromSettingsLocked(false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800711 }
712 }
713 }
714 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800715
Jeff Brownc28867a2013-03-26 15:42:39 -0700716 private static final class MethodCallback extends IInputSessionCallback.Stub {
Jean Chalarde0d32a62011-10-20 20:36:07 +0900717 private final InputMethodManagerService mParentIMMS;
Jeff Brownc28867a2013-03-26 15:42:39 -0700718 private final IInputMethod mMethod;
719 private final InputChannel mChannel;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800720
Jeff Brownc28867a2013-03-26 15:42:39 -0700721 MethodCallback(InputMethodManagerService imms, IInputMethod method,
722 InputChannel channel) {
Jean Chalarde0d32a62011-10-20 20:36:07 +0900723 mParentIMMS = imms;
Jeff Brownc28867a2013-03-26 15:42:39 -0700724 mMethod = method;
725 mChannel = channel;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800726 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800727
satoke7c6998e2011-06-03 17:57:59 +0900728 @Override
Jeff Brownc28867a2013-03-26 15:42:39 -0700729 public void sessionCreated(IInputMethodSession session) {
Dianne Hackborn6b6b3fd2014-03-24 11:27:18 -0700730 long ident = Binder.clearCallingIdentity();
731 try {
732 mParentIMMS.onSessionCreated(mMethod, session, mChannel);
733 } finally {
734 Binder.restoreCallingIdentity(ident);
735 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800736 }
737 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800738
satok01038492012-04-09 21:08:27 +0900739 private class HardKeyboardListener
Seigo Nonaka7309b122015-08-17 18:34:13 -0700740 implements WindowManagerInternal.OnHardKeyboardStatusChangeListener {
satok01038492012-04-09 21:08:27 +0900741 @Override
Michael Wright7b5a96b2014-08-09 19:28:42 -0700742 public void onHardKeyboardStatusChange(boolean available) {
743 mHandler.sendMessage(mHandler.obtainMessage(MSG_HARD_KEYBOARD_SWITCH_CHANGED,
744 available ? 1 : 0));
satok01038492012-04-09 21:08:27 +0900745 }
746
Michael Wright7b5a96b2014-08-09 19:28:42 -0700747 public void handleHardKeyboardStatusChange(boolean available) {
satok01038492012-04-09 21:08:27 +0900748 if (DEBUG) {
Michael Wright7b5a96b2014-08-09 19:28:42 -0700749 Slog.w(TAG, "HardKeyboardStatusChanged: available=" + available);
satok01038492012-04-09 21:08:27 +0900750 }
751 synchronized(mMethodMap) {
752 if (mSwitchingDialog != null && mSwitchingDialogTitleView != null
753 && mSwitchingDialog.isShowing()) {
754 mSwitchingDialogTitleView.findViewById(
755 com.android.internal.R.id.hard_keyboard_section).setVisibility(
756 available ? View.VISIBLE : View.GONE);
757 }
758 }
759 }
760 }
761
Fyodor Kupolov1e33dc82016-01-21 12:02:58 -0800762 public static final class Lifecycle extends SystemService {
763 private InputMethodManagerService mService;
764
765 public Lifecycle(Context context) {
766 super(context);
767 mService = new InputMethodManagerService(context);
768 }
769
770 @Override
771 public void onStart() {
772 LocalServices.addService(InputMethodManagerInternal.class,
773 new LocalServiceImpl(mService.mHandler));
774 publishBinderService(Context.INPUT_METHOD_SERVICE, mService);
775 }
776
777 @Override
Yohei Yukawa7b18aec2016-03-07 13:04:32 -0800778 public void onSwitchUser(@UserIdInt int userHandle) {
779 // Called on the system server's main looper thread.
780 // TODO: Dispatch this to a worker thread as needed.
781 mService.onSwitchUser(userHandle);
782 }
783
784 @Override
Fyodor Kupolov1e33dc82016-01-21 12:02:58 -0800785 public void onBootPhase(int phase) {
Yohei Yukawa7b18aec2016-03-07 13:04:32 -0800786 // Called on the system server's main looper thread.
787 // TODO: Dispatch this to a worker thread as needed.
Fyodor Kupolov1e33dc82016-01-21 12:02:58 -0800788 if (phase == SystemService.PHASE_ACTIVITY_MANAGER_READY) {
789 StatusBarManagerService statusBarService = (StatusBarManagerService) ServiceManager
790 .getService(Context.STATUS_BAR_SERVICE);
791 mService.systemRunning(statusBarService);
792 }
793 }
Yohei Yukawaed4952a2016-02-17 07:57:25 -0800794
795 @Override
Yohei Yukawa7b18aec2016-03-07 13:04:32 -0800796 public void onUnlockUser(@UserIdInt int userHandle) {
797 // Called on the system server's main looper thread.
798 // TODO: Dispatch this to a worker thread as needed.
Yohei Yukawaed4952a2016-02-17 07:57:25 -0800799 mService.onUnlockUser(userHandle);
800 }
801 }
802
Yohei Yukawa7b18aec2016-03-07 13:04:32 -0800803 void onUnlockUser(@UserIdInt int userId) {
Yohei Yukawaed4952a2016-02-17 07:57:25 -0800804 synchronized(mMethodMap) {
805 final int currentUserId = mSettings.getCurrentUserId();
806 if (DEBUG) {
807 Slog.d(TAG, "onUnlockUser: userId=" + userId + " curUserId=" + currentUserId);
808 }
809 if (userId != currentUserId) {
810 return;
811 }
812 mSettings.switchCurrentUser(currentUserId, !mSystemReady);
813 // We need to rebuild IMEs.
814 buildInputMethodListLocked(false /* resetDefaultEnabledIme */);
815 updateInputMethodsFromSettingsLocked(true /* enabledChanged */);
816 }
Fyodor Kupolov1e33dc82016-01-21 12:02:58 -0800817 }
818
Yohei Yukawa7b18aec2016-03-07 13:04:32 -0800819 void onSwitchUser(@UserIdInt int userId) {
820 synchronized (mMethodMap) {
821 switchUserLocked(userId);
822 }
823 }
824
Seigo Nonaka7309b122015-08-17 18:34:13 -0700825 public InputMethodManagerService(Context context) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900826 mIPackageManager = AppGlobals.getPackageManager();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800827 mContext = context;
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -0800828 mRes = context.getResources();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800829 mHandler = new Handler(this);
Yohei Yukawa81482972015-06-04 00:58:59 -0700830 // Note: SettingsObserver doesn't register observers in its constructor.
831 mSettingsObserver = new SettingsObserver(mHandler);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800832 mIWindowManager = IWindowManager.Stub.asInterface(
833 ServiceManager.getService(Context.WINDOW_SERVICE));
Seigo Nonaka7309b122015-08-17 18:34:13 -0700834 mWindowManagerInternal = LocalServices.getService(WindowManagerInternal.class);
Mita Yuned218c72012-12-06 17:18:25 -0800835 mCaller = new HandlerCaller(context, null, new HandlerCaller.Callback() {
satoke7c6998e2011-06-03 17:57:59 +0900836 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800837 public void executeMessage(Message msg) {
838 handleMessage(msg);
839 }
Mita Yuned218c72012-12-06 17:18:25 -0800840 }, true /*asyncHandler*/);
Yohei Yukawad34e1482016-02-11 08:03:52 -0800841 mAppOpsManager = mContext.getSystemService(AppOpsManager.class);
Yohei Yukawaed4952a2016-02-17 07:57:25 -0800842 mUserManager = mContext.getSystemService(UserManager.class);
satok01038492012-04-09 21:08:27 +0900843 mHardKeyboardListener = new HardKeyboardListener();
Dianne Hackborn119bbc32013-03-22 17:27:25 -0700844 mHasFeature = context.getPackageManager().hasSystemFeature(
845 PackageManager.FEATURE_INPUT_METHODS);
Jason Monk3e189872016-01-12 09:10:34 -0500846 mSlotIme = mContext.getString(com.android.internal.R.string.status_bar_ime);
satok7cfc0ed2011-06-20 21:29:36 +0900847
Chris Wren1ce4b6d2015-06-11 10:19:43 -0400848 Bundle extras = new Bundle();
849 extras.putBoolean(Notification.EXTRA_ALLOW_DURING_SETUP, true);
850 mImeSwitcherNotification = new Notification.Builder(mContext)
851 .setSmallIcon(com.android.internal.R.drawable.ic_notification_ime_default)
852 .setWhen(0)
853 .setOngoing(true)
854 .addExtras(extras)
855 .setCategory(Notification.CATEGORY_SYSTEM)
856 .setColor(com.android.internal.R.color.system_notification_accent_color);
Daniel Sandler590d5152012-06-14 16:10:13 -0400857
satok7cfc0ed2011-06-20 21:29:36 +0900858 Intent intent = new Intent(Settings.ACTION_SHOW_INPUT_METHOD_PICKER);
satok683e2382011-07-12 08:28:52 +0900859 mImeSwitchPendingIntent = PendingIntent.getBroadcast(mContext, 0, intent, 0);
satokb858c732011-07-22 19:54:34 +0900860
861 mShowOngoingImeSwitcherForPhones = false;
satok7cfc0ed2011-06-20 21:29:36 +0900862
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900863 final IntentFilter broadcastFilter = new IntentFilter();
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900864 broadcastFilter.addAction(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
Amith Yamasani734983f2014-03-04 16:48:05 -0800865 broadcastFilter.addAction(Intent.ACTION_USER_ADDED);
866 broadcastFilter.addAction(Intent.ACTION_USER_REMOVED);
Christopher Tate7b9a28c2015-03-18 13:06:16 -0700867 broadcastFilter.addAction(Intent.ACTION_SETTING_RESTORED);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900868 mContext.registerReceiver(new ImmsBroadcastReceiver(), broadcastFilter);
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800869
satok7cfc0ed2011-06-20 21:29:36 +0900870 mNotificationShown = false;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900871 int userId = 0;
872 try {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900873 userId = ActivityManagerNative.getDefault().getCurrentUser().id;
874 } catch (RemoteException e) {
875 Slog.w(TAG, "Couldn't get current user ID; guessing it's 0", e);
876 }
satok81f8b7c2012-12-04 20:42:56 +0900877 mMyPackageMonitor.register(mContext, null, UserHandle.ALL, true);
satok913a8922010-08-26 21:53:41 +0900878
satokd87c2592010-09-29 11:52:06 +0900879 // mSettings should be created before buildInputMethodListLocked
satokdf31ae62011-01-15 06:19:44 +0900880 mSettings = new InputMethodSettings(
Yohei Yukawa68645a62016-02-17 07:54:20 -0800881 mRes, context.getContentResolver(), mMethodMap, mMethodList, userId, !mSystemReady);
Svet Ganovadc1cf42015-06-15 16:36:24 -0700882
Kenny Guy2a764942014-04-02 13:29:20 +0100883 updateCurrentProfileIds();
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +0900884 mFileManager = new InputMethodFileManager(mMethodMap, userId);
Yohei Yukawa5a647b692014-05-22 12:49:00 +0900885 synchronized (mMethodMap) {
886 mSwitchingController = InputMethodSubtypeSwitchingController.createInstanceLocked(
887 mSettings, context);
888 }
satok0a1bcf42012-05-16 19:26:31 +0900889
890 // Just checking if defaultImiId is empty or not
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900891 final String defaultImiId = mSettings.getSelectedInputMethod();
Satoshi Kataokaf1367b72013-01-25 17:20:12 +0900892 if (DEBUG) {
893 Slog.d(TAG, "Initial default ime = " + defaultImiId);
894 }
satok0a1bcf42012-05-16 19:26:31 +0900895 mImeSelectedOnBoot = !TextUtils.isEmpty(defaultImiId);
896
Yohei Yukawa5a647b692014-05-22 12:49:00 +0900897 synchronized (mMethodMap) {
Yohei Yukawa94e33302016-02-12 19:37:03 -0800898 buildInputMethodListLocked(!mImeSelectedOnBoot /* resetDefaultEnabledIme */);
Yohei Yukawa5a647b692014-05-22 12:49:00 +0900899 }
satokd87c2592010-09-29 11:52:06 +0900900 mSettings.enableAllIMEsIfThereIsNoEnabledIME();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800901
satok0a1bcf42012-05-16 19:26:31 +0900902 if (!mImeSelectedOnBoot) {
903 Slog.w(TAG, "No IME selected. Choose the most applicable IME.");
Yohei Yukawa5a647b692014-05-22 12:49:00 +0900904 synchronized (mMethodMap) {
905 resetDefaultImeLocked(context);
906 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800907 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800908
Yohei Yukawa5a647b692014-05-22 12:49:00 +0900909 synchronized (mMethodMap) {
Yohei Yukawa81482972015-06-04 00:58:59 -0700910 mSettingsObserver.registerContentObserverLocked(userId);
Yohei Yukawa5a647b692014-05-22 12:49:00 +0900911 updateFromSettingsLocked(true);
912 }
satok5b927c432012-05-01 20:09:34 +0900913
914 // IMMS wants to receive Intent.ACTION_LOCALE_CHANGED in order to update the current IME
915 // according to the new system locale.
916 final IntentFilter filter = new IntentFilter();
917 filter.addAction(Intent.ACTION_LOCALE_CHANGED);
918 mContext.registerReceiver(
919 new BroadcastReceiver() {
920 @Override
921 public void onReceive(Context context, Intent intent) {
922 synchronized(mMethodMap) {
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +0900923 resetStateIfCurrentLocaleChangedLocked();
satok5b927c432012-05-01 20:09:34 +0900924 }
925 }
926 }, filter);
927 }
928
satok5b927c432012-05-01 20:09:34 +0900929 private void resetDefaultImeLocked(Context context) {
930 // Do not reset the default (current) IME when it is a 3rd-party IME
Yohei Yukawac2393ac2016-02-18 00:30:45 -0800931 if (mCurMethodId != null && !InputMethodUtils.isSystemIme(mMethodMap.get(mCurMethodId))) {
satok5b927c432012-05-01 20:09:34 +0900932 return;
933 }
Yohei Yukawac2393ac2016-02-18 00:30:45 -0800934 final List<InputMethodInfo> suitableImes = InputMethodUtils.getDefaultEnabledImes(
935 context, mSystemReady, mSettings.getEnabledInputMethodListLocked());
936 if (suitableImes.isEmpty()) {
937 Slog.i(TAG, "No default found");
938 return;
satok5b927c432012-05-01 20:09:34 +0900939 }
Yohei Yukawac2393ac2016-02-18 00:30:45 -0800940 final InputMethodInfo defIm = suitableImes.get(0);
941 Slog.i(TAG, "Default found, using " + defIm.getId());
942 setSelectedInputMethodAndSubtypeLocked(defIm, NOT_A_SUBTYPE_ID, false);
satok5b927c432012-05-01 20:09:34 +0900943 }
944
Satoshi Kataoka7f7535f2013-02-18 12:54:16 +0900945 private void resetAllInternalStateLocked(final boolean updateOnlyWhenLocaleChanged,
946 final boolean resetDefaultEnabledIme) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900947 if (!mSystemReady) {
948 // not system ready
949 return;
950 }
Yohei Yukawae985c242016-02-24 18:27:04 -0800951 final LocaleList newLocales = mRes.getConfiguration().getLocales();
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900952 if (!updateOnlyWhenLocaleChanged
Yohei Yukawae985c242016-02-24 18:27:04 -0800953 || (newLocales != null && !newLocales.equals(mLastSystemLocales))) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900954 if (!updateOnlyWhenLocaleChanged) {
955 hideCurrentInputLocked(0, null);
Yohei Yukawa33e81792015-11-17 21:14:42 -0800956 resetCurrentMethodAndClient(InputMethodClient.UNBIND_REASON_RESET_IME);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900957 }
958 if (DEBUG) {
Yohei Yukawae985c242016-02-24 18:27:04 -0800959 Slog.i(TAG, "LocaleList has been changed to " + newLocales);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900960 }
Yohei Yukawa94e33302016-02-12 19:37:03 -0800961 buildInputMethodListLocked(resetDefaultEnabledIme);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900962 if (!updateOnlyWhenLocaleChanged) {
963 final String selectedImiId = mSettings.getSelectedInputMethod();
964 if (TextUtils.isEmpty(selectedImiId)) {
965 // This is the first time of the user switch and
966 // set the current ime to the proper one.
967 resetDefaultImeLocked(mContext);
968 }
Satoshi Kataokad08a9232012-09-28 15:59:58 +0900969 } else {
970 // If the locale is changed, needs to reset the default ime
971 resetDefaultImeLocked(mContext);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900972 }
Dianne Hackbornfd7aded2013-01-22 17:10:23 -0800973 updateFromSettingsLocked(true);
Yohei Yukawae985c242016-02-24 18:27:04 -0800974 mLastSystemLocales = newLocales;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900975 if (!updateOnlyWhenLocaleChanged) {
976 try {
977 startInputInnerLocked();
978 } catch (RuntimeException e) {
979 Slog.w(TAG, "Unexpected exception", e);
980 }
981 }
982 }
983 }
984
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +0900985 private void resetStateIfCurrentLocaleChangedLocked() {
Satoshi Kataoka7f7535f2013-02-18 12:54:16 +0900986 resetAllInternalStateLocked(true /* updateOnlyWhenLocaleChanged */,
987 true /* resetDefaultImeLocked */);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900988 }
989
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +0900990 private void switchUserLocked(int newUserId) {
Yohei Yukawa90bf7082015-06-03 23:50:27 -0700991 if (DEBUG) Slog.d(TAG, "Switching user stage 1/3. newUserId=" + newUserId
992 + " currentUserId=" + mSettings.getCurrentUserId());
993
Yohei Yukawa81482972015-06-04 00:58:59 -0700994 // ContentObserver should be registered again when the user is changed
995 mSettingsObserver.registerContentObserverLocked(newUserId);
Yohei Yukawa68645a62016-02-17 07:54:20 -0800996
Yohei Yukawaed4952a2016-02-17 07:57:25 -0800997 // If the system is not ready or the device is not yed unlocked by the user, then we use
998 // copy-on-write settings.
999 final boolean useCopyOnWriteSettings =
1000 !mSystemReady || !mUserManager.isUserUnlocked(newUserId);
Yohei Yukawa68645a62016-02-17 07:54:20 -08001001 mSettings.switchCurrentUser(newUserId, useCopyOnWriteSettings);
Kenny Guy2a764942014-04-02 13:29:20 +01001002 updateCurrentProfileIds();
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +09001003 // InputMethodFileManager should be reset when the user is changed
1004 mFileManager = new InputMethodFileManager(mMethodMap, newUserId);
Satoshi Kataoka7f7535f2013-02-18 12:54:16 +09001005 final String defaultImiId = mSettings.getSelectedInputMethod();
Yohei Yukawa90bf7082015-06-03 23:50:27 -07001006
1007 if (DEBUG) Slog.d(TAG, "Switching user stage 2/3. newUserId=" + newUserId
1008 + " defaultImiId=" + defaultImiId);
1009
Satoshi Kataoka7c4a2a12013-02-25 15:25:43 +09001010 // For secondary users, the list of enabled IMEs may not have been updated since the
1011 // callbacks to PackageMonitor are ignored for the secondary user. Here, defaultImiId may
1012 // not be empty even if the IME has been uninstalled by the primary user.
1013 // Even in such cases, IMMS works fine because it will find the most applicable
1014 // IME for that user.
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +09001015 final boolean initialUserSwitch = TextUtils.isEmpty(defaultImiId);
Satoshi Kataoka7f7535f2013-02-18 12:54:16 +09001016 resetAllInternalStateLocked(false /* updateOnlyWhenLocaleChanged */,
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +09001017 initialUserSwitch /* needsToResetDefaultIme */);
1018 if (initialUserSwitch) {
Yohei Yukawa094c71f2015-06-20 00:41:31 -07001019 InputMethodUtils.setNonSelectedSystemImesDisabledUntilUsed(mIPackageManager,
1020 mSettings.getEnabledInputMethodListLocked(), newUserId,
1021 mContext.getBasePackageName());
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +09001022 }
Yohei Yukawa90bf7082015-06-03 23:50:27 -07001023
1024 if (DEBUG) Slog.d(TAG, "Switching user stage 3/3. newUserId=" + newUserId
1025 + " selectedIme=" + mSettings.getSelectedInputMethod());
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001026 }
1027
Kenny Guy2a764942014-04-02 13:29:20 +01001028 void updateCurrentProfileIds() {
Yohei Yukawaed4952a2016-02-17 07:57:25 -08001029 List<UserInfo> profiles = mUserManager.getProfiles(mSettings.getCurrentUserId());
Kenny Guy2a764942014-04-02 13:29:20 +01001030 int[] currentProfileIds = new int[profiles.size()]; // profiles will not be null
1031 for (int i = 0; i < currentProfileIds.length; i++) {
1032 currentProfileIds[i] = profiles.get(i).id;
Amith Yamasani734983f2014-03-04 16:48:05 -08001033 }
Kenny Guy2a764942014-04-02 13:29:20 +01001034 mSettings.setCurrentProfileIds(currentProfileIds);
Amith Yamasani734983f2014-03-04 16:48:05 -08001035 }
1036
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001037 @Override
1038 public boolean onTransact(int code, Parcel data, Parcel reply, int flags)
1039 throws RemoteException {
1040 try {
1041 return super.onTransact(code, data, reply, flags);
1042 } catch (RuntimeException e) {
1043 // The input method manager only throws security exceptions, so let's
1044 // log all others.
1045 if (!(e instanceof SecurityException)) {
Dianne Hackborn164371f2013-10-01 19:10:13 -07001046 Slog.wtf(TAG, "Input Method Manager Crash", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001047 }
1048 throw e;
1049 }
1050 }
1051
Svetoslav Ganova0027152013-06-25 14:59:53 -07001052 public void systemRunning(StatusBarManagerService statusBar) {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001053 synchronized (mMethodMap) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001054 if (DEBUG) {
1055 Slog.d(TAG, "--- systemReady");
1056 }
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001057 if (!mSystemReady) {
1058 mSystemReady = true;
Yohei Yukawa68645a62016-02-17 07:54:20 -08001059 final int currentUserId = mSettings.getCurrentUserId();
Yohei Yukawaed4952a2016-02-17 07:57:25 -08001060 mSettings.switchCurrentUser(currentUserId,
1061 !mUserManager.isUserUnlocked(currentUserId));
Yohei Yukawad34e1482016-02-11 08:03:52 -08001062 mKeyguardManager = mContext.getSystemService(KeyguardManager.class);
1063 mNotificationManager = mContext.getSystemService(NotificationManager.class);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001064 mStatusBar = statusBar;
Jason Monk3e189872016-01-12 09:10:34 -05001065 statusBar.setIconVisibility(mSlotIme, false);
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001066 updateSystemUiLocked(mCurToken, mImeWindowVis, mBackDisposition);
satokb858c732011-07-22 19:54:34 +09001067 mShowOngoingImeSwitcherForPhones = mRes.getBoolean(
1068 com.android.internal.R.bool.show_ongoing_ime_switcher);
satok01038492012-04-09 21:08:27 +09001069 if (mShowOngoingImeSwitcherForPhones) {
Seigo Nonaka7309b122015-08-17 18:34:13 -07001070 mWindowManagerInternal.setOnHardKeyboardStatusChangeListener(
satok01038492012-04-09 21:08:27 +09001071 mHardKeyboardListener);
1072 }
Yohei Yukawa94e33302016-02-12 19:37:03 -08001073 buildInputMethodListLocked(!mImeSelectedOnBoot /* resetDefaultEnabledIme */);
satok0a1bcf42012-05-16 19:26:31 +09001074 if (!mImeSelectedOnBoot) {
1075 Slog.w(TAG, "Reset the default IME as \"Resource\" is ready here.");
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +09001076 resetStateIfCurrentLocaleChangedLocked();
Yohei Yukawa094c71f2015-06-20 00:41:31 -07001077 InputMethodUtils.setNonSelectedSystemImesDisabledUntilUsed(mIPackageManager,
1078 mSettings.getEnabledInputMethodListLocked(),
1079 mSettings.getCurrentUserId(), mContext.getBasePackageName());
satok0a1bcf42012-05-16 19:26:31 +09001080 }
Yohei Yukawae985c242016-02-24 18:27:04 -08001081 mLastSystemLocales = mRes.getConfiguration().getLocales();
Dianne Hackborncc278702009-09-02 23:07:23 -07001082 try {
1083 startInputInnerLocked();
1084 } catch (RuntimeException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001085 Slog.w(TAG, "Unexpected exception", e);
Dianne Hackborncc278702009-09-02 23:07:23 -07001086 }
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001087 }
1088 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001089 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001090
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001091 // ---------------------------------------------------------------------------------------
1092 // Check whether or not this is a valid IPC. Assumes an IPC is valid when either
1093 // 1) it comes from the system process
1094 // 2) the calling process' user id is identical to the current user id IMMS thinks.
1095 private boolean calledFromValidUser() {
1096 final int uid = Binder.getCallingUid();
1097 final int userId = UserHandle.getUserId(uid);
1098 if (DEBUG) {
1099 Slog.d(TAG, "--- calledFromForegroundUserOrSystemProcess ? "
1100 + "calling uid = " + uid + " system uid = " + Process.SYSTEM_UID
1101 + " calling userId = " + userId + ", foreground user id = "
Satoshi Kataoka87c29142013-07-31 23:11:54 +09001102 + mSettings.getCurrentUserId() + ", calling pid = " + Binder.getCallingPid()
1103 + InputMethodUtils.getApiCallStack());
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001104 }
Kenny Guy2a764942014-04-02 13:29:20 +01001105 if (uid == Process.SYSTEM_UID || mSettings.isCurrentProfile(userId)) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001106 return true;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001107 }
Satoshi Kataoka135e5fb2012-09-28 18:25:06 +09001108
1109 // Caveat: A process which has INTERACT_ACROSS_USERS_FULL gets results for the
1110 // foreground user, not for the user of that process. Accordingly InputMethodManagerService
1111 // must not manage background users' states in any functions.
1112 // Note that privacy-sensitive IPCs, such as setInputMethod, are still securely guarded
1113 // by a token.
1114 if (mContext.checkCallingOrSelfPermission(
1115 android.Manifest.permission.INTERACT_ACROSS_USERS_FULL)
1116 == PackageManager.PERMISSION_GRANTED) {
1117 if (DEBUG) {
1118 Slog.d(TAG, "--- Access granted because the calling process has "
1119 + "the INTERACT_ACROSS_USERS_FULL permission");
1120 }
1121 return true;
1122 }
Seigo Nonakae27dc2b2015-08-14 18:21:27 -07001123 Slog.w(TAG, "--- IPC called from background users. Ignore. callers="
1124 + Debug.getCallers(10));
Satoshi Kataoka135e5fb2012-09-28 18:25:06 +09001125 return false;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001126 }
1127
Yohei Yukawa22c97be2014-06-04 19:43:36 +09001128
1129 /**
1130 * Returns true iff the caller is identified to be the current input method with the token.
1131 * @param token The window token given to the input method when it was started.
1132 * @return true if and only if non-null valid token is specified.
1133 */
1134 private boolean calledWithValidToken(IBinder token) {
1135 if (token == null || mCurToken != token) {
1136 return false;
1137 }
1138 return true;
1139 }
1140
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001141 private boolean bindCurrentInputMethodService(
1142 Intent service, ServiceConnection conn, int flags) {
1143 if (service == null || conn == null) {
1144 Slog.e(TAG, "--- bind failed: service = " + service + ", conn = " + conn);
1145 return false;
1146 }
Amith Yamasani27b89e62013-01-16 12:30:11 -08001147 return mContext.bindServiceAsUser(service, conn, flags,
1148 new UserHandle(mSettings.getCurrentUserId()));
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001149 }
1150
satoke7c6998e2011-06-03 17:57:59 +09001151 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001152 public List<InputMethodInfo> getInputMethodList() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001153 // TODO: Make this work even for non-current users?
1154 if (!calledFromValidUser()) {
1155 return Collections.emptyList();
1156 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001157 synchronized (mMethodMap) {
Yohei Yukawab0377bb2015-08-10 21:06:30 -07001158 return new ArrayList<>(mMethodList);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001159 }
1160 }
1161
satoke7c6998e2011-06-03 17:57:59 +09001162 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001163 public List<InputMethodInfo> getEnabledInputMethodList() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001164 // TODO: Make this work even for non-current users?
1165 if (!calledFromValidUser()) {
1166 return Collections.emptyList();
1167 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001168 synchronized (mMethodMap) {
satokd87c2592010-09-29 11:52:06 +09001169 return mSettings.getEnabledInputMethodListLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001170 }
1171 }
1172
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001173 /**
Satoshi Kataokab3c21ac2013-08-07 15:43:29 +09001174 * @param imiId if null, returns enabled subtypes for the current imi
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001175 * @return enabled subtypes of the specified imi
1176 */
satoke7c6998e2011-06-03 17:57:59 +09001177 @Override
Satoshi Kataokab3c21ac2013-08-07 15:43:29 +09001178 public List<InputMethodSubtype> getEnabledInputMethodSubtypeList(String imiId,
satok16331c82010-12-20 23:48:46 +09001179 boolean allowsImplicitlySelectedSubtypes) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001180 // TODO: Make this work even for non-current users?
1181 if (!calledFromValidUser()) {
Yohei Yukawab0377bb2015-08-10 21:06:30 -07001182 return Collections.emptyList();
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001183 }
satok67ddf9c2010-11-17 09:45:54 +09001184 synchronized (mMethodMap) {
Satoshi Kataokab3c21ac2013-08-07 15:43:29 +09001185 final InputMethodInfo imi;
1186 if (imiId == null && mCurMethodId != null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001187 imi = mMethodMap.get(mCurMethodId);
Satoshi Kataokab3c21ac2013-08-07 15:43:29 +09001188 } else {
1189 imi = mMethodMap.get(imiId);
1190 }
1191 if (imi == null) {
Yohei Yukawab0377bb2015-08-10 21:06:30 -07001192 return Collections.emptyList();
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001193 }
1194 return mSettings.getEnabledInputMethodSubtypeListLocked(
1195 mContext, imi, allowsImplicitlySelectedSubtypes);
satok67ddf9c2010-11-17 09:45:54 +09001196 }
1197 }
1198
satoke7c6998e2011-06-03 17:57:59 +09001199 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001200 public void addClient(IInputMethodClient client,
1201 IInputContext inputContext, int uid, int pid) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001202 if (!calledFromValidUser()) {
1203 return;
1204 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001205 synchronized (mMethodMap) {
1206 mClients.put(client.asBinder(), new ClientState(client,
1207 inputContext, uid, pid));
1208 }
1209 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001210
satoke7c6998e2011-06-03 17:57:59 +09001211 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001212 public void removeClient(IInputMethodClient client) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001213 if (!calledFromValidUser()) {
1214 return;
1215 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001216 synchronized (mMethodMap) {
Jeff Brownc28867a2013-03-26 15:42:39 -07001217 ClientState cs = mClients.remove(client.asBinder());
1218 if (cs != null) {
1219 clearClientSessionLocked(cs);
Yohei Yukawa072b1b52015-11-18 15:54:34 -08001220 if (mCurClient == cs) {
1221 mCurClient = null;
1222 }
Yohei Yukawae39d4ed2015-11-19 03:38:49 -08001223 if (mCurFocusedWindowClient == cs) {
1224 mCurFocusedWindowClient = null;
1225 }
Jeff Brownc28867a2013-03-26 15:42:39 -07001226 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001227 }
1228 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001229
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001230 void executeOrSendMessage(IInterface target, Message msg) {
1231 if (target.asBinder() instanceof Binder) {
1232 mCaller.sendMessage(msg);
1233 } else {
1234 handleMessage(msg);
1235 msg.recycle();
1236 }
1237 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001238
Yohei Yukawa33e81792015-11-17 21:14:42 -08001239 void unbindCurrentClientLocked(
1240 /* @InputMethodClient.UnbindReason */ final int unbindClientReason) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001241 if (mCurClient != null) {
Yohei Yukawa35d3f372015-11-25 11:07:19 -08001242 if (DEBUG) Slog.v(TAG, "unbindCurrentInputLocked: client="
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001243 + mCurClient.client.asBinder());
1244 if (mBoundToMethod) {
1245 mBoundToMethod = false;
1246 if (mCurMethod != null) {
1247 executeOrSendMessage(mCurMethod, mCaller.obtainMessageO(
1248 MSG_UNBIND_INPUT, mCurMethod));
1249 }
1250 }
Dianne Hackborna6e41342012-05-22 16:30:34 -07001251
1252 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
1253 MSG_SET_ACTIVE, 0, mCurClient));
Yohei Yukawa33e81792015-11-17 21:14:42 -08001254 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIIO(
1255 MSG_UNBIND_CLIENT, mCurSeq, unbindClientReason, mCurClient.client));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001256 mCurClient.sessionRequested = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001257 mCurClient = null;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001258
The Android Open Source Project10592532009-03-18 17:39:46 -07001259 hideInputMethodMenuLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001260 }
1261 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001262
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001263 private int getImeShowFlags() {
1264 int flags = 0;
1265 if (mShowForced) {
1266 flags |= InputMethod.SHOW_FORCED
1267 | InputMethod.SHOW_EXPLICIT;
1268 } else if (mShowExplicitlyRequested) {
1269 flags |= InputMethod.SHOW_EXPLICIT;
1270 }
1271 return flags;
1272 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001273
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001274 private int getAppShowFlags() {
1275 int flags = 0;
1276 if (mShowForced) {
1277 flags |= InputMethodManager.SHOW_FORCED;
1278 } else if (!mShowExplicitlyRequested) {
1279 flags |= InputMethodManager.SHOW_IMPLICIT;
1280 }
1281 return flags;
1282 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001283
Dianne Hackborn7663d802012-02-24 13:08:49 -08001284 InputBindResult attachNewInputLocked(boolean initial) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001285 if (!mBoundToMethod) {
1286 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
1287 MSG_BIND_INPUT, mCurMethod, mCurClient.binding));
1288 mBoundToMethod = true;
1289 }
1290 final SessionState session = mCurClient.curSession;
1291 if (initial) {
1292 executeOrSendMessage(session.method, mCaller.obtainMessageOOO(
1293 MSG_START_INPUT, session, mCurInputContext, mCurAttribute));
1294 } else {
1295 executeOrSendMessage(session.method, mCaller.obtainMessageOOO(
1296 MSG_RESTART_INPUT, session, mCurInputContext, mCurAttribute));
1297 }
1298 if (mShowRequested) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001299 if (DEBUG) Slog.v(TAG, "Attach new input asks to show input");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001300 showCurrentInputLocked(getAppShowFlags(), null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001301 }
Jeff Brown1951ce82013-04-04 22:45:12 -07001302 return new InputBindResult(session.session,
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09001303 (session.channel != null ? session.channel.dup() : null),
1304 mCurId, mCurSeq, mCurUserActionNotificationSequenceNumber);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001305 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001306
Yohei Yukawa35d3f372015-11-25 11:07:19 -08001307 InputBindResult startInputLocked(
1308 /* @InputMethodClient.StartInputReason */ final int startInputReason,
1309 IInputMethodClient client, IInputContext inputContext, EditorInfo attribute,
1310 int controlFlags) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001311 // If no method is currently selected, do nothing.
1312 if (mCurMethodId == null) {
1313 return mNoBinding;
1314 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001315
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001316 ClientState cs = mClients.get(client.asBinder());
1317 if (cs == null) {
1318 throw new IllegalArgumentException("unknown client "
1319 + client.asBinder());
1320 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001321
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001322 try {
1323 if (!mIWindowManager.inputMethodClientHasFocus(cs.client)) {
1324 // Check with the window manager to make sure this client actually
1325 // has a window with focus. If not, reject. This is thread safe
1326 // because if the focus changes some time before or after, the
1327 // next client receiving focus that has any interest in input will
1328 // be calling through here after that change happens.
Joe Onorato8a9b2202010-02-26 18:56:32 -08001329 Slog.w(TAG, "Starting input on non-focused client " + cs.client
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001330 + " (uid=" + cs.uid + " pid=" + cs.pid + ")");
1331 return null;
1332 }
1333 } catch (RemoteException e) {
1334 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001335
Dianne Hackborn7663d802012-02-24 13:08:49 -08001336 return startInputUncheckedLocked(cs, inputContext, attribute, controlFlags);
1337 }
1338
Yohei Yukawa35d3f372015-11-25 11:07:19 -08001339 InputBindResult startInputUncheckedLocked(@NonNull ClientState cs, IInputContext inputContext,
1340 @NonNull EditorInfo attribute, int controlFlags) {
Dianne Hackborn7663d802012-02-24 13:08:49 -08001341 // If no method is currently selected, do nothing.
1342 if (mCurMethodId == null) {
1343 return mNoBinding;
1344 }
1345
Yohei Yukawad57ba672015-06-08 16:39:46 -07001346 if (!InputMethodUtils.checkIfPackageBelongsToUid(mAppOpsManager, cs.uid,
1347 attribute.packageName)) {
1348 Slog.e(TAG, "Rejecting this client as it reported an invalid package name."
1349 + " uid=" + cs.uid + " package=" + attribute.packageName);
1350 return mNoBinding;
Yohei Yukawa0f3ad12015-04-06 16:48:24 -07001351 }
1352
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001353 if (mCurClient != cs) {
John Spurlocke0980502013-10-25 11:59:29 -04001354 // Was the keyguard locked when switching over to the new client?
1355 mCurClientInKeyguard = isKeyguardLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001356 // If the client is changing, we need to switch over to the new
1357 // one.
Yohei Yukawa33e81792015-11-17 21:14:42 -08001358 unbindCurrentClientLocked(InputMethodClient.UNBIND_REASON_SWITCH_CLIENT);
Yohei Yukawa35d3f372015-11-25 11:07:19 -08001359 if (DEBUG) Slog.v(TAG, "switching to client: client="
John Spurlocke0980502013-10-25 11:59:29 -04001360 + cs.client.asBinder() + " keyguard=" + mCurClientInKeyguard);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001361
1362 // If the screen is on, inform the new client it is active
Yohei Yukawafa6e0a82015-07-23 15:08:59 -07001363 if (mIsInteractive) {
Dianne Hackborna6e41342012-05-22 16:30:34 -07001364 executeOrSendMessage(cs.client, mCaller.obtainMessageIO(
Yohei Yukawafa6e0a82015-07-23 15:08:59 -07001365 MSG_SET_ACTIVE, mIsInteractive ? 1 : 0, cs));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001366 }
1367 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001368
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001369 // Bump up the sequence for this client and attach it.
1370 mCurSeq++;
1371 if (mCurSeq <= 0) mCurSeq = 1;
1372 mCurClient = cs;
1373 mCurInputContext = inputContext;
1374 mCurAttribute = attribute;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001375
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001376 // Check if the input method is changing.
1377 if (mCurId != null && mCurId.equals(mCurMethodId)) {
1378 if (cs.curSession != null) {
1379 // Fast case: if we are already connected to the input method,
1380 // then just return it.
Dianne Hackborn7663d802012-02-24 13:08:49 -08001381 return attachNewInputLocked(
1382 (controlFlags&InputMethodManager.CONTROL_START_INITIAL) != 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001383 }
1384 if (mHaveConnection) {
1385 if (mCurMethod != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001386 // Return to client, and we will get back with it when
1387 // we have had a session made for it.
Jeff Brownc28867a2013-03-26 15:42:39 -07001388 requestClientSessionLocked(cs);
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09001389 return new InputBindResult(null, null, mCurId, mCurSeq,
1390 mCurUserActionNotificationSequenceNumber);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001391 } else if (SystemClock.uptimeMillis()
1392 < (mLastBindTime+TIME_TO_RECONNECT)) {
1393 // In this case we have connected to the service, but
1394 // don't yet have its interface. If it hasn't been too
1395 // long since we did the connection, we'll return to
1396 // the client and wait to get the service interface so
1397 // we can report back. If it has been too long, we want
1398 // to fall through so we can try a disconnect/reconnect
1399 // to see if we can get back in touch with the service.
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09001400 return new InputBindResult(null, null, mCurId, mCurSeq,
1401 mCurUserActionNotificationSequenceNumber);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001402 } else {
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001403 EventLog.writeEvent(EventLogTags.IMF_FORCE_RECONNECT_IME,
1404 mCurMethodId, SystemClock.uptimeMillis()-mLastBindTime, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001405 }
1406 }
1407 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001408
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001409 return startInputInnerLocked();
1410 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001411
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001412 InputBindResult startInputInnerLocked() {
1413 if (mCurMethodId == null) {
1414 return mNoBinding;
1415 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001416
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001417 if (!mSystemReady) {
1418 // If the system is not yet ready, we shouldn't be running third
1419 // party code.
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09001420 return new InputBindResult(null, null, mCurMethodId, mCurSeq,
1421 mCurUserActionNotificationSequenceNumber);
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001422 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001423
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001424 InputMethodInfo info = mMethodMap.get(mCurMethodId);
1425 if (info == null) {
1426 throw new IllegalArgumentException("Unknown id: " + mCurMethodId);
1427 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001428
Yohei Yukawabc7b5262015-11-17 17:38:41 -08001429 unbindCurrentMethodLocked(true);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001430
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001431 mCurIntent = new Intent(InputMethod.SERVICE_INTERFACE);
1432 mCurIntent.setComponent(info.getComponent());
Dianne Hackborndd9b82c2009-09-03 00:18:47 -07001433 mCurIntent.putExtra(Intent.EXTRA_CLIENT_LABEL,
1434 com.android.internal.R.string.input_method_binding_label);
1435 mCurIntent.putExtra(Intent.EXTRA_CLIENT_INTENT, PendingIntent.getActivity(
1436 mContext, 0, new Intent(Settings.ACTION_INPUT_METHOD_SETTINGS), 0));
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001437 if (bindCurrentInputMethodService(mCurIntent, this, Context.BIND_AUTO_CREATE
Dianne Hackbornf0f94d12014-03-17 16:04:21 -07001438 | Context.BIND_NOT_VISIBLE | Context.BIND_NOT_FOREGROUND
1439 | Context.BIND_SHOWING_UI)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001440 mLastBindTime = SystemClock.uptimeMillis();
1441 mHaveConnection = true;
1442 mCurId = info.getId();
1443 mCurToken = new Binder();
1444 try {
Craig Mautnerca0ac712013-03-14 09:43:02 -07001445 if (true || DEBUG) Slog.v(TAG, "Adding window token: " + mCurToken);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001446 mIWindowManager.addWindowToken(mCurToken,
1447 WindowManager.LayoutParams.TYPE_INPUT_METHOD);
1448 } catch (RemoteException e) {
1449 }
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09001450 return new InputBindResult(null, null, mCurId, mCurSeq,
1451 mCurUserActionNotificationSequenceNumber);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001452 } else {
1453 mCurIntent = null;
Joe Onorato8a9b2202010-02-26 18:56:32 -08001454 Slog.w(TAG, "Failure connecting to input method service: "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001455 + mCurIntent);
1456 }
1457 return null;
1458 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001459
Yohei Yukawa05c25f82016-02-22 12:41:17 -08001460 private InputBindResult startInput(
Yohei Yukawa35d3f372015-11-25 11:07:19 -08001461 /* @InputMethodClient.StartInputReason */ final int startInputReason,
1462 IInputMethodClient client, IInputContext inputContext, EditorInfo attribute,
1463 int controlFlags) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001464 if (!calledFromValidUser()) {
1465 return null;
1466 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001467 synchronized (mMethodMap) {
Yohei Yukawa35d3f372015-11-25 11:07:19 -08001468 if (DEBUG) {
1469 Slog.v(TAG, "startInput: reason="
1470 + InputMethodClient.getStartInputReason(startInputReason)
1471 + " client = " + client.asBinder()
1472 + " inputContext=" + inputContext
1473 + " attribute=" + attribute
1474 + " controlFlags=#" + Integer.toHexString(controlFlags));
1475 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001476 final long ident = Binder.clearCallingIdentity();
1477 try {
Yohei Yukawa35d3f372015-11-25 11:07:19 -08001478 return startInputLocked(startInputReason, client, inputContext, attribute,
1479 controlFlags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001480 } finally {
1481 Binder.restoreCallingIdentity(ident);
1482 }
1483 }
1484 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001485
satoke7c6998e2011-06-03 17:57:59 +09001486 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001487 public void finishInput(IInputMethodClient client) {
1488 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001489
satoke7c6998e2011-06-03 17:57:59 +09001490 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001491 public void onServiceConnected(ComponentName name, IBinder service) {
1492 synchronized (mMethodMap) {
1493 if (mCurIntent != null && name.equals(mCurIntent.getComponent())) {
1494 mCurMethod = IInputMethod.Stub.asInterface(service);
Dianne Hackborncc278702009-09-02 23:07:23 -07001495 if (mCurToken == null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001496 Slog.w(TAG, "Service connected without a token!");
Yohei Yukawabc7b5262015-11-17 17:38:41 -08001497 unbindCurrentMethodLocked(false);
Dianne Hackborncc278702009-09-02 23:07:23 -07001498 return;
1499 }
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07001500 if (DEBUG) Slog.v(TAG, "Initiating attach with token: " + mCurToken);
Dianne Hackborncc278702009-09-02 23:07:23 -07001501 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
1502 MSG_ATTACH_TOKEN, mCurMethod, mCurToken));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001503 if (mCurClient != null) {
Jeff Brownc28867a2013-03-26 15:42:39 -07001504 clearClientSessionLocked(mCurClient);
1505 requestClientSessionLocked(mCurClient);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001506 }
1507 }
1508 }
1509 }
1510
Jeff Brownc28867a2013-03-26 15:42:39 -07001511 void onSessionCreated(IInputMethod method, IInputMethodSession session,
1512 InputChannel channel) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001513 synchronized (mMethodMap) {
1514 if (mCurMethod != null && method != null
1515 && mCurMethod.asBinder() == method.asBinder()) {
1516 if (mCurClient != null) {
Jeff Brownc28867a2013-03-26 15:42:39 -07001517 clearClientSessionLocked(mCurClient);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001518 mCurClient.curSession = new SessionState(mCurClient,
Jeff Brownc28867a2013-03-26 15:42:39 -07001519 method, session, channel);
Dianne Hackborn7663d802012-02-24 13:08:49 -08001520 InputBindResult res = attachNewInputLocked(true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001521 if (res.method != null) {
1522 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageOO(
Yohei Yukawa33e81792015-11-17 21:14:42 -08001523 MSG_BIND_CLIENT, mCurClient.client, res));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001524 }
Jeff Brownc28867a2013-03-26 15:42:39 -07001525 return;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001526 }
1527 }
1528 }
Jeff Brownc28867a2013-03-26 15:42:39 -07001529
1530 // Session abandoned. Close its associated input channel.
1531 channel.dispose();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001532 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001533
Yohei Yukawabc7b5262015-11-17 17:38:41 -08001534 void unbindCurrentMethodLocked(boolean savePosition) {
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07001535 if (mVisibleBound) {
1536 mContext.unbindService(mVisibleConnection);
1537 mVisibleBound = false;
1538 }
1539
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001540 if (mHaveConnection) {
1541 mContext.unbindService(this);
1542 mHaveConnection = false;
1543 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001544
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001545 if (mCurToken != null) {
1546 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001547 if (DEBUG) Slog.v(TAG, "Removing window token: " + mCurToken);
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07001548 if ((mImeWindowVis & InputMethodService.IME_ACTIVE) != 0 && savePosition) {
satoke0a99412012-05-10 02:22:58 +09001549 // The current IME is shown. Hence an IME switch (transition) is happening.
Seigo Nonaka7309b122015-08-17 18:34:13 -07001550 mWindowManagerInternal.saveLastInputMethodWindowForTransition();
satoke0a99412012-05-10 02:22:58 +09001551 }
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001552 mIWindowManager.removeWindowToken(mCurToken);
1553 } catch (RemoteException e) {
1554 }
1555 mCurToken = null;
1556 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001557
The Android Open Source Project10592532009-03-18 17:39:46 -07001558 mCurId = null;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001559 clearCurMethodLocked();
Yohei Yukawabc7b5262015-11-17 17:38:41 -08001560 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001561
Yohei Yukawa33e81792015-11-17 21:14:42 -08001562 void resetCurrentMethodAndClient(
1563 /* @InputMethodClient.UnbindReason */ final int unbindClientReason) {
Yohei Yukawabc7b5262015-11-17 17:38:41 -08001564 mCurMethodId = null;
1565 unbindCurrentMethodLocked(false);
Yohei Yukawa33e81792015-11-17 21:14:42 -08001566 unbindCurrentClientLocked(unbindClientReason);
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001567 }
Jeff Brownc28867a2013-03-26 15:42:39 -07001568
1569 void requestClientSessionLocked(ClientState cs) {
1570 if (!cs.sessionRequested) {
1571 if (DEBUG) Slog.v(TAG, "Creating new session for client " + cs);
1572 InputChannel[] channels = InputChannel.openInputChannelPair(cs.toString());
1573 cs.sessionRequested = true;
1574 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOOO(
1575 MSG_CREATE_SESSION, mCurMethod, channels[1],
1576 new MethodCallback(this, mCurMethod, channels[0])));
1577 }
1578 }
1579
1580 void clearClientSessionLocked(ClientState cs) {
1581 finishSessionLocked(cs.curSession);
1582 cs.curSession = null;
1583 cs.sessionRequested = false;
1584 }
1585
1586 private void finishSessionLocked(SessionState sessionState) {
1587 if (sessionState != null) {
1588 if (sessionState.session != null) {
1589 try {
1590 sessionState.session.finishSession();
1591 } catch (RemoteException e) {
1592 Slog.w(TAG, "Session failed to close due to remote exception", e);
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001593 updateSystemUiLocked(mCurToken, 0 /* vis */, mBackDisposition);
Jeff Brownc28867a2013-03-26 15:42:39 -07001594 }
1595 sessionState.session = null;
1596 }
1597 if (sessionState.channel != null) {
1598 sessionState.channel.dispose();
1599 sessionState.channel = null;
Devin Taylor0c33ed22010-02-23 13:26:46 -06001600 }
1601 }
1602 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001603
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001604 void clearCurMethodLocked() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001605 if (mCurMethod != null) {
1606 for (ClientState cs : mClients.values()) {
Jeff Brownc28867a2013-03-26 15:42:39 -07001607 clearClientSessionLocked(cs);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001608 }
Devin Taylor0c33ed22010-02-23 13:26:46 -06001609
Jeff Brownc28867a2013-03-26 15:42:39 -07001610 finishSessionLocked(mEnabledSession);
Devin Taylor0c33ed22010-02-23 13:26:46 -06001611 mEnabledSession = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001612 mCurMethod = null;
1613 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07001614 if (mStatusBar != null) {
Jason Monk3e189872016-01-12 09:10:34 -05001615 mStatusBar.setIconVisibility(mSlotIme, false);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001616 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001617 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001618
satoke7c6998e2011-06-03 17:57:59 +09001619 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001620 public void onServiceDisconnected(ComponentName name) {
1621 synchronized (mMethodMap) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001622 if (DEBUG) Slog.v(TAG, "Service disconnected: " + name
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001623 + " mCurIntent=" + mCurIntent);
1624 if (mCurMethod != null && mCurIntent != null
1625 && name.equals(mCurIntent.getComponent())) {
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001626 clearCurMethodLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001627 // We consider this to be a new bind attempt, since the system
1628 // should now try to restart the service for us.
1629 mLastBindTime = SystemClock.uptimeMillis();
1630 mShowRequested = mInputShown;
1631 mInputShown = false;
1632 if (mCurClient != null) {
Yohei Yukawa33e81792015-11-17 21:14:42 -08001633 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIIO(
1634 MSG_UNBIND_CLIENT, InputMethodClient.UNBIND_REASON_DISCONNECT_IME,
1635 mCurSeq, mCurClient.client));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001636 }
1637 }
1638 }
1639 }
1640
satokf9f01002011-05-19 21:31:50 +09001641 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001642 public void updateStatusIcon(IBinder token, String packageName, int iconId) {
1643 long ident = Binder.clearCallingIdentity();
1644 try {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001645 synchronized (mMethodMap) {
Yohei Yukawaa0755742014-06-04 20:28:18 +09001646 if (!calledWithValidToken(token)) {
1647 final int uid = Binder.getCallingUid();
1648 Slog.e(TAG, "Ignoring updateStatusIcon due to an invalid token. uid:" + uid
1649 + " token:" + token);
1650 return;
1651 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001652 if (iconId == 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001653 if (DEBUG) Slog.d(TAG, "hide the small icon for the input method");
Dianne Hackborn661cd522011-08-22 00:26:20 -07001654 if (mStatusBar != null) {
Jason Monk3e189872016-01-12 09:10:34 -05001655 mStatusBar.setIconVisibility(mSlotIme, false);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001656 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001657 } else if (packageName != null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001658 if (DEBUG) Slog.d(TAG, "show a small icon for the input method");
Svetoslav Ganov6179ea32011-06-28 01:12:41 -07001659 CharSequence contentDescription = null;
1660 try {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001661 // Use PackageManager to load label
1662 final PackageManager packageManager = mContext.getPackageManager();
Svetoslav Ganov6179ea32011-06-28 01:12:41 -07001663 contentDescription = packageManager.getApplicationLabel(
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001664 mIPackageManager.getApplicationInfo(packageName, 0,
1665 mSettings.getCurrentUserId()));
1666 } catch (RemoteException e) {
Svetoslav Ganov6179ea32011-06-28 01:12:41 -07001667 /* ignore */
1668 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07001669 if (mStatusBar != null) {
Jason Monk3e189872016-01-12 09:10:34 -05001670 mStatusBar.setIcon(mSlotIme, packageName, iconId, 0,
Dianne Hackborn661cd522011-08-22 00:26:20 -07001671 contentDescription != null
1672 ? contentDescription.toString() : null);
Jason Monk3e189872016-01-12 09:10:34 -05001673 mStatusBar.setIconVisibility(mSlotIme, true);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001674 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001675 }
1676 }
1677 } finally {
1678 Binder.restoreCallingIdentity(ident);
1679 }
1680 }
1681
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001682 private boolean shouldShowImeSwitcherLocked(int visibility) {
satok7cfc0ed2011-06-20 21:29:36 +09001683 if (!mShowOngoingImeSwitcherForPhones) return false;
Jason Monk807ef762014-05-08 15:47:46 -04001684 if (mSwitchingDialog != null) return false;
satok2c93efc2012-04-02 19:33:47 +09001685 if (isScreenLocked()) return false;
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001686 if ((visibility & InputMethodService.IME_ACTIVE) == 0) return false;
Seigo Nonaka7309b122015-08-17 18:34:13 -07001687 if (mWindowManagerInternal.isHardKeyboardAvailable()) {
Yohei Yukawac6c7cd22015-05-12 15:00:33 -07001688 // When physical keyboard is attached, we show the ime switcher (or notification if
1689 // NavBar is not available) because SHOW_IME_WITH_HARD_KEYBOARD settings currently
1690 // exists in the IME switcher dialog. Might be OK to remove this condition once
1691 // SHOW_IME_WITH_HARD_KEYBOARD settings finds a good place to live.
1692 return true;
1693 }
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001694 if ((visibility & InputMethodService.IME_VISIBLE) == 0) return false;
Yohei Yukawac6c7cd22015-05-12 15:00:33 -07001695
1696 List<InputMethodInfo> imis = mSettings.getEnabledInputMethodListLocked();
1697 final int N = imis.size();
1698 if (N > 2) return true;
1699 if (N < 1) return false;
1700 int nonAuxCount = 0;
1701 int auxCount = 0;
1702 InputMethodSubtype nonAuxSubtype = null;
1703 InputMethodSubtype auxSubtype = null;
1704 for(int i = 0; i < N; ++i) {
1705 final InputMethodInfo imi = imis.get(i);
1706 final List<InputMethodSubtype> subtypes =
1707 mSettings.getEnabledInputMethodSubtypeListLocked(mContext, imi, true);
1708 final int subtypeCount = subtypes.size();
1709 if (subtypeCount == 0) {
1710 ++nonAuxCount;
1711 } else {
1712 for (int j = 0; j < subtypeCount; ++j) {
1713 final InputMethodSubtype subtype = subtypes.get(j);
1714 if (!subtype.isAuxiliary()) {
1715 ++nonAuxCount;
1716 nonAuxSubtype = subtype;
1717 } else {
1718 ++auxCount;
1719 auxSubtype = subtype;
satok7cfc0ed2011-06-20 21:29:36 +09001720 }
1721 }
satok7cfc0ed2011-06-20 21:29:36 +09001722 }
1723 }
Yohei Yukawac6c7cd22015-05-12 15:00:33 -07001724 if (nonAuxCount > 1 || auxCount > 1) {
1725 return true;
1726 } else if (nonAuxCount == 1 && auxCount == 1) {
1727 if (nonAuxSubtype != null && auxSubtype != null
1728 && (nonAuxSubtype.getLocale().equals(auxSubtype.getLocale())
1729 || auxSubtype.overridesImplicitlyEnabledSubtype()
1730 || nonAuxSubtype.overridesImplicitlyEnabledSubtype())
1731 && nonAuxSubtype.containsExtraValueKey(TAG_TRY_SUPPRESSING_IME_SWITCHER)) {
1732 return false;
1733 }
1734 return true;
1735 }
1736 return false;
satok7cfc0ed2011-06-20 21:29:36 +09001737 }
1738
John Spurlocke0980502013-10-25 11:59:29 -04001739 private boolean isKeyguardLocked() {
1740 return mKeyguardManager != null && mKeyguardManager.isKeyguardLocked();
1741 }
1742
satokdbf29502011-08-25 15:28:23 +09001743 @SuppressWarnings("deprecation")
satokf9f01002011-05-19 21:31:50 +09001744 @Override
Joe Onorato857fd9b2011-01-27 15:08:35 -08001745 public void setImeWindowStatus(IBinder token, int vis, int backDisposition) {
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001746 if (!calledWithValidToken(token)) {
1747 final int uid = Binder.getCallingUid();
1748 Slog.e(TAG, "Ignoring setImeWindowStatus due to an invalid token. uid:" + uid
1749 + " token:" + token);
1750 return;
1751 }
1752
1753 synchronized (mMethodMap) {
1754 mImeWindowVis = vis;
1755 mBackDisposition = backDisposition;
1756 updateSystemUiLocked(token, vis, backDisposition);
1757 }
1758 }
1759
1760 private void updateSystemUi(IBinder token, int vis, int backDisposition) {
1761 synchronized (mMethodMap) {
1762 updateSystemUiLocked(token, vis, backDisposition);
1763 }
1764 }
1765
1766 // Caution! This method is called in this class. Handle multi-user carefully
1767 private void updateSystemUiLocked(IBinder token, int vis, int backDisposition) {
1768 if (!calledWithValidToken(token)) {
1769 final int uid = Binder.getCallingUid();
1770 Slog.e(TAG, "Ignoring updateSystemUiLocked due to an invalid token. uid:" + uid
1771 + " token:" + token);
1772 return;
1773 }
1774
1775 // TODO: Move this clearing calling identity block to setImeWindowStatus after making sure
1776 // all updateSystemUi happens on system previlege.
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001777 final long ident = Binder.clearCallingIdentity();
satok06487a52010-10-29 11:37:18 +09001778 try {
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001779 // apply policy for binder calls
1780 if (vis != 0 && isKeyguardLocked() && !mCurClientInKeyguard) {
1781 vis = 0;
satok06487a52010-10-29 11:37:18 +09001782 }
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001783 // mImeWindowVis should be updated before calling shouldShowImeSwitcherLocked().
1784 final boolean needsToShowImeSwitcher = shouldShowImeSwitcherLocked(vis);
1785 if (mStatusBar != null) {
1786 mStatusBar.setImeWindowStatus(token, vis, backDisposition,
1787 needsToShowImeSwitcher);
1788 }
1789 final InputMethodInfo imi = mMethodMap.get(mCurMethodId);
1790 if (imi != null && needsToShowImeSwitcher) {
1791 // Used to load label
1792 final CharSequence title = mRes.getText(
1793 com.android.internal.R.string.select_input_method);
1794 final CharSequence summary = InputMethodUtils.getImeAndSubtypeDisplayName(
1795 mContext, imi, mCurrentSubtype);
Chris Wren1ce4b6d2015-06-11 10:19:43 -04001796 mImeSwitcherNotification.setContentTitle(title)
1797 .setContentText(summary)
1798 .setContentIntent(mImeSwitchPendingIntent);
Seigo Nonaka7309b122015-08-17 18:34:13 -07001799 try {
1800 if ((mNotificationManager != null)
1801 && !mIWindowManager.hasNavigationBar()) {
1802 if (DEBUG) {
1803 Slog.d(TAG, "--- show notification: label = " + summary);
1804 }
1805 mNotificationManager.notifyAsUser(null,
1806 com.android.internal.R.string.select_input_method,
1807 mImeSwitcherNotification.build(), UserHandle.ALL);
1808 mNotificationShown = true;
Dianne Hackborn661cd522011-08-22 00:26:20 -07001809 }
Seigo Nonaka7309b122015-08-17 18:34:13 -07001810 } catch (RemoteException e) {
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001811 }
1812 } else {
1813 if (mNotificationShown && mNotificationManager != null) {
1814 if (DEBUG) {
1815 Slog.d(TAG, "--- hide notification");
satok7cfc0ed2011-06-20 21:29:36 +09001816 }
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001817 mNotificationManager.cancelAsUser(null,
1818 com.android.internal.R.string.select_input_method, UserHandle.ALL);
1819 mNotificationShown = false;
satok7cfc0ed2011-06-20 21:29:36 +09001820 }
satok06487a52010-10-29 11:37:18 +09001821 }
1822 } finally {
1823 Binder.restoreCallingIdentity(ident);
1824 }
1825 }
1826
satoke7c6998e2011-06-03 17:57:59 +09001827 @Override
satokf9f01002011-05-19 21:31:50 +09001828 public void registerSuggestionSpansForNotification(SuggestionSpan[] spans) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001829 if (!calledFromValidUser()) {
1830 return;
1831 }
satokf9f01002011-05-19 21:31:50 +09001832 synchronized (mMethodMap) {
1833 final InputMethodInfo currentImi = mMethodMap.get(mCurMethodId);
1834 for (int i = 0; i < spans.length; ++i) {
1835 SuggestionSpan ss = spans[i];
satok42c5a162011-05-26 16:46:14 +09001836 if (!TextUtils.isEmpty(ss.getNotificationTargetClassName())) {
satokf9f01002011-05-19 21:31:50 +09001837 mSecureSuggestionSpans.put(ss, currentImi);
1838 }
1839 }
1840 }
1841 }
1842
satoke7c6998e2011-06-03 17:57:59 +09001843 @Override
satokf9f01002011-05-19 21:31:50 +09001844 public boolean notifySuggestionPicked(SuggestionSpan span, String originalString, int index) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001845 if (!calledFromValidUser()) {
1846 return false;
1847 }
satokf9f01002011-05-19 21:31:50 +09001848 synchronized (mMethodMap) {
1849 final InputMethodInfo targetImi = mSecureSuggestionSpans.get(span);
1850 // TODO: Do not send the intent if the process of the targetImi is already dead.
1851 if (targetImi != null) {
1852 final String[] suggestions = span.getSuggestions();
1853 if (index < 0 || index >= suggestions.length) return false;
satok42c5a162011-05-26 16:46:14 +09001854 final String className = span.getNotificationTargetClassName();
satokf9f01002011-05-19 21:31:50 +09001855 final Intent intent = new Intent();
1856 // Ensures that only a class in the original IME package will receive the
1857 // notification.
satok42c5a162011-05-26 16:46:14 +09001858 intent.setClassName(targetImi.getPackageName(), className);
satokf9f01002011-05-19 21:31:50 +09001859 intent.setAction(SuggestionSpan.ACTION_SUGGESTION_PICKED);
1860 intent.putExtra(SuggestionSpan.SUGGESTION_SPAN_PICKED_BEFORE, originalString);
1861 intent.putExtra(SuggestionSpan.SUGGESTION_SPAN_PICKED_AFTER, suggestions[index]);
1862 intent.putExtra(SuggestionSpan.SUGGESTION_SPAN_PICKED_HASHCODE, span.hashCode());
Amith Yamasanif043de92012-10-24 06:42:40 -07001863 final long ident = Binder.clearCallingIdentity();
1864 try {
1865 mContext.sendBroadcastAsUser(intent, UserHandle.CURRENT);
1866 } finally {
1867 Binder.restoreCallingIdentity(ident);
1868 }
satokf9f01002011-05-19 21:31:50 +09001869 return true;
1870 }
1871 }
1872 return false;
1873 }
1874
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001875 void updateFromSettingsLocked(boolean enabledMayChange) {
Michael Wright7b5a96b2014-08-09 19:28:42 -07001876 updateInputMethodsFromSettingsLocked(enabledMayChange);
1877 updateKeyboardFromSettingsLocked();
1878 }
1879
1880 void updateInputMethodsFromSettingsLocked(boolean enabledMayChange) {
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001881 if (enabledMayChange) {
1882 List<InputMethodInfo> enabled = mSettings.getEnabledInputMethodListLocked();
1883 for (int i=0; i<enabled.size(); i++) {
1884 // We allow the user to select "disabled until used" apps, so if they
1885 // are enabling one of those here we now need to make it enabled.
1886 InputMethodInfo imm = enabled.get(i);
1887 try {
1888 ApplicationInfo ai = mIPackageManager.getApplicationInfo(imm.getPackageName(),
1889 PackageManager.GET_DISABLED_UNTIL_USED_COMPONENTS,
1890 mSettings.getCurrentUserId());
Satoshi Kataoka7987a312013-04-17 18:59:33 +09001891 if (ai != null && ai.enabledSetting
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001892 == PackageManager.COMPONENT_ENABLED_STATE_DISABLED_UNTIL_USED) {
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +09001893 if (DEBUG) {
1894 Slog.d(TAG, "Update state(" + imm.getId()
1895 + "): DISABLED_UNTIL_USED -> DEFAULT");
1896 }
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001897 mIPackageManager.setApplicationEnabledSetting(imm.getPackageName(),
1898 PackageManager.COMPONENT_ENABLED_STATE_DEFAULT,
Dianne Hackborn3fa3c28a2013-03-26 16:15:41 -07001899 PackageManager.DONT_KILL_APP, mSettings.getCurrentUserId(),
1900 mContext.getBasePackageName());
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001901 }
1902 } catch (RemoteException e) {
1903 }
1904 }
1905 }
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001906 // We are assuming that whoever is changing DEFAULT_INPUT_METHOD and
1907 // ENABLED_INPUT_METHODS is taking care of keeping them correctly in
1908 // sync, so we will never have a DEFAULT_INPUT_METHOD that is not
1909 // enabled.
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001910 String id = mSettings.getSelectedInputMethod();
satok03eb319a2010-11-11 18:17:42 +09001911 // There is no input method selected, try to choose new applicable input method.
1912 if (TextUtils.isEmpty(id) && chooseNewDefaultIMELocked()) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001913 id = mSettings.getSelectedInputMethod();
satok03eb319a2010-11-11 18:17:42 +09001914 }
1915 if (!TextUtils.isEmpty(id)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001916 try {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001917 setInputMethodLocked(id, mSettings.getSelectedInputMethodSubtypeId(id));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001918 } catch (IllegalArgumentException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001919 Slog.w(TAG, "Unknown input method from prefs: " + id, e);
Yohei Yukawa33e81792015-11-17 21:14:42 -08001920 resetCurrentMethodAndClient(InputMethodClient.UNBIND_REASON_SWITCH_IME_FAILED);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001921 }
satokf3db1af2010-11-23 13:34:33 +09001922 mShortcutInputMethodsAndSubtypes.clear();
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001923 } else {
1924 // There is no longer an input method set, so stop any current one.
Yohei Yukawa33e81792015-11-17 21:14:42 -08001925 resetCurrentMethodAndClient(InputMethodClient.UNBIND_REASON_NO_IME);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001926 }
Yohei Yukawa3d46bab2014-05-30 18:10:18 +09001927 // Here is not the perfect place to reset the switching controller. Ideally
1928 // mSwitchingController and mSettings should be able to share the same state.
1929 // TODO: Make sure that mSwitchingController and mSettings are sharing the
1930 // the same enabled IMEs list.
1931 mSwitchingController.resetCircularListLocked(mContext);
Michael Wright7b5a96b2014-08-09 19:28:42 -07001932
1933 }
1934
1935 public void updateKeyboardFromSettingsLocked() {
1936 mShowImeWithHardKeyboard = mSettings.isShowImeWithHardKeyboardEnabled();
1937 if (mSwitchingDialog != null
1938 && mSwitchingDialogTitleView != null
1939 && mSwitchingDialog.isShowing()) {
1940 final Switch hardKeySwitch = (Switch)mSwitchingDialogTitleView.findViewById(
1941 com.android.internal.R.id.hard_keyboard_switch);
1942 hardKeySwitch.setChecked(mShowImeWithHardKeyboard);
1943 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001944 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001945
Yohei Yukawab097b822015-12-01 10:43:08 -08001946 private void notifyInputMethodSubtypeChanged(final int userId,
1947 @Nullable final InputMethodInfo inputMethodInfo,
1948 @Nullable final InputMethodSubtype subtype) {
1949 final InputManagerInternal inputManagerInternal =
1950 LocalServices.getService(InputManagerInternal.class);
1951 if (inputManagerInternal != null) {
1952 inputManagerInternal.onInputMethodSubtypeChanged(userId, inputMethodInfo, subtype);
1953 }
1954 }
1955
satokab751aa2010-09-14 19:17:36 +09001956 /* package */ void setInputMethodLocked(String id, int subtypeId) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001957 InputMethodInfo info = mMethodMap.get(id);
1958 if (info == null) {
satok913a8922010-08-26 21:53:41 +09001959 throw new IllegalArgumentException("Unknown id: " + id);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001960 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001961
satokd81e9502012-05-21 12:58:45 +09001962 // See if we need to notify a subtype change within the same IME.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001963 if (id.equals(mCurMethodId)) {
satokd81e9502012-05-21 12:58:45 +09001964 final int subtypeCount = info.getSubtypeCount();
1965 if (subtypeCount <= 0) {
1966 return;
satokcd7cd292010-11-20 15:46:23 +09001967 }
satokd81e9502012-05-21 12:58:45 +09001968 final InputMethodSubtype oldSubtype = mCurrentSubtype;
1969 final InputMethodSubtype newSubtype;
1970 if (subtypeId >= 0 && subtypeId < subtypeCount) {
1971 newSubtype = info.getSubtypeAt(subtypeId);
1972 } else {
1973 // If subtype is null, try to find the most applicable one from
1974 // getCurrentInputMethodSubtype.
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001975 newSubtype = getCurrentInputMethodSubtypeLocked();
satokd81e9502012-05-21 12:58:45 +09001976 }
1977 if (newSubtype == null || oldSubtype == null) {
1978 Slog.w(TAG, "Illegal subtype state: old subtype = " + oldSubtype
1979 + ", new subtype = " + newSubtype);
1980 return;
1981 }
1982 if (newSubtype != oldSubtype) {
1983 setSelectedInputMethodAndSubtypeLocked(info, subtypeId, true);
1984 if (mCurMethod != null) {
1985 try {
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001986 updateSystemUiLocked(mCurToken, mImeWindowVis, mBackDisposition);
satokd81e9502012-05-21 12:58:45 +09001987 mCurMethod.changeInputMethodSubtype(newSubtype);
1988 } catch (RemoteException e) {
1989 Slog.w(TAG, "Failed to call changeInputMethodSubtype");
Yohei Yukawab097b822015-12-01 10:43:08 -08001990 return;
satokab751aa2010-09-14 19:17:36 +09001991 }
1992 }
Yohei Yukawab097b822015-12-01 10:43:08 -08001993 notifyInputMethodSubtypeChanged(mSettings.getCurrentUserId(), info, newSubtype);
satokab751aa2010-09-14 19:17:36 +09001994 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001995 return;
1996 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001997
satokd81e9502012-05-21 12:58:45 +09001998 // Changing to a different IME.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001999 final long ident = Binder.clearCallingIdentity();
2000 try {
satokab751aa2010-09-14 19:17:36 +09002001 // Set a subtype to this input method.
2002 // subtypeId the name of a subtype which will be set.
satok723a27e2010-11-11 14:58:11 +09002003 setSelectedInputMethodAndSubtypeLocked(info, subtypeId, false);
2004 // mCurMethodId should be updated after setSelectedInputMethodAndSubtypeLocked()
2005 // because mCurMethodId is stored as a history in
2006 // setSelectedInputMethodAndSubtypeLocked().
2007 mCurMethodId = id;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002008
2009 if (ActivityManagerNative.isSystemReady()) {
2010 Intent intent = new Intent(Intent.ACTION_INPUT_METHOD_CHANGED);
Dianne Hackborn1c633fc2009-12-08 19:45:14 -08002011 intent.addFlags(Intent.FLAG_RECEIVER_REPLACE_PENDING);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002012 intent.putExtra("input_method_id", id);
Amith Yamasanicd757062012-10-19 18:23:52 -07002013 mContext.sendBroadcastAsUser(intent, UserHandle.CURRENT);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002014 }
Yohei Yukawa33e81792015-11-17 21:14:42 -08002015 unbindCurrentClientLocked(InputMethodClient.UNBIND_REASON_SWITCH_IME);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002016 } finally {
2017 Binder.restoreCallingIdentity(ident);
2018 }
Yohei Yukawab097b822015-12-01 10:43:08 -08002019
2020 notifyInputMethodSubtypeChanged(mSettings.getCurrentUserId(), info,
2021 getCurrentInputMethodSubtypeLocked());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002022 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002023
satok42c5a162011-05-26 16:46:14 +09002024 @Override
The Android Open Source Project4df24232009-03-05 14:34:35 -08002025 public boolean showSoftInput(IInputMethodClient client, int flags,
2026 ResultReceiver resultReceiver) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002027 if (!calledFromValidUser()) {
2028 return false;
2029 }
Dianne Hackborncef65ee2010-09-30 18:27:22 -07002030 int uid = Binder.getCallingUid();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002031 long ident = Binder.clearCallingIdentity();
2032 try {
2033 synchronized (mMethodMap) {
2034 if (mCurClient == null || client == null
2035 || mCurClient.client.asBinder() != client.asBinder()) {
2036 try {
2037 // We need to check if this is the current client with
2038 // focus in the window manager, to allow this call to
2039 // be made before input is started in it.
2040 if (!mIWindowManager.inputMethodClientHasFocus(client)) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07002041 Slog.w(TAG, "Ignoring showSoftInput of uid " + uid + ": " + client);
The Android Open Source Project4df24232009-03-05 14:34:35 -08002042 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002043 }
2044 } catch (RemoteException e) {
The Android Open Source Project4df24232009-03-05 14:34:35 -08002045 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002046 }
2047 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002048
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002049 if (DEBUG) Slog.v(TAG, "Client requesting input be shown");
The Android Open Source Project4df24232009-03-05 14:34:35 -08002050 return showCurrentInputLocked(flags, resultReceiver);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002051 }
2052 } finally {
2053 Binder.restoreCallingIdentity(ident);
2054 }
2055 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002056
The Android Open Source Project4df24232009-03-05 14:34:35 -08002057 boolean showCurrentInputLocked(int flags, ResultReceiver resultReceiver) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002058 mShowRequested = true;
Anna Galusza9b278112016-01-04 11:37:37 -08002059 if (mAccessibilityRequestingNoSoftKeyboard) {
2060 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002061 }
Anna Galusza9b278112016-01-04 11:37:37 -08002062
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002063 if ((flags&InputMethodManager.SHOW_FORCED) != 0) {
2064 mShowExplicitlyRequested = true;
2065 mShowForced = true;
Anna Galusza9b278112016-01-04 11:37:37 -08002066 } else if ((flags&InputMethodManager.SHOW_IMPLICIT) == 0) {
2067 mShowExplicitlyRequested = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002068 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002069
Dianne Hackborncc278702009-09-02 23:07:23 -07002070 if (!mSystemReady) {
2071 return false;
2072 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002073
The Android Open Source Project4df24232009-03-05 14:34:35 -08002074 boolean res = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002075 if (mCurMethod != null) {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002076 if (DEBUG) Slog.d(TAG, "showCurrentInputLocked: mCurToken=" + mCurToken);
The Android Open Source Project4df24232009-03-05 14:34:35 -08002077 executeOrSendMessage(mCurMethod, mCaller.obtainMessageIOO(
2078 MSG_SHOW_SOFT_INPUT, getImeShowFlags(), mCurMethod,
2079 resultReceiver));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002080 mInputShown = true;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07002081 if (mHaveConnection && !mVisibleBound) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002082 bindCurrentInputMethodService(
Dianne Hackbornf0f94d12014-03-17 16:04:21 -07002083 mCurIntent, mVisibleConnection, Context.BIND_AUTO_CREATE
Dianne Hackbornd69e4c12015-04-24 09:54:54 -07002084 | Context.BIND_TREAT_LIKE_ACTIVITY
2085 | Context.BIND_FOREGROUND_SERVICE);
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07002086 mVisibleBound = true;
2087 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002088 res = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002089 } else if (mHaveConnection && SystemClock.uptimeMillis()
satok59b424c2011-09-30 17:21:46 +09002090 >= (mLastBindTime+TIME_TO_RECONNECT)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002091 // The client has asked to have the input method shown, but
2092 // we have been sitting here too long with a connection to the
2093 // service and no interface received, so let's disconnect/connect
2094 // to try to prod things along.
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002095 EventLog.writeEvent(EventLogTags.IMF_FORCE_RECONNECT_IME, mCurMethodId,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002096 SystemClock.uptimeMillis()-mLastBindTime,1);
satok59b424c2011-09-30 17:21:46 +09002097 Slog.w(TAG, "Force disconnect/connect to the IME in showCurrentInputLocked()");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002098 mContext.unbindService(this);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002099 bindCurrentInputMethodService(mCurIntent, this, Context.BIND_AUTO_CREATE
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07002100 | Context.BIND_NOT_VISIBLE);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002101 } else {
2102 if (DEBUG) {
2103 Slog.d(TAG, "Can't show input: connection = " + mHaveConnection + ", time = "
2104 + ((mLastBindTime+TIME_TO_RECONNECT) - SystemClock.uptimeMillis()));
2105 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002106 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002107
The Android Open Source Project4df24232009-03-05 14:34:35 -08002108 return res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002109 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002110
satok42c5a162011-05-26 16:46:14 +09002111 @Override
The Android Open Source Project4df24232009-03-05 14:34:35 -08002112 public boolean hideSoftInput(IInputMethodClient client, int flags,
2113 ResultReceiver resultReceiver) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002114 if (!calledFromValidUser()) {
2115 return false;
2116 }
Dianne Hackborncef65ee2010-09-30 18:27:22 -07002117 int uid = Binder.getCallingUid();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002118 long ident = Binder.clearCallingIdentity();
2119 try {
2120 synchronized (mMethodMap) {
2121 if (mCurClient == null || client == null
2122 || mCurClient.client.asBinder() != client.asBinder()) {
2123 try {
2124 // We need to check if this is the current client with
2125 // focus in the window manager, to allow this call to
2126 // be made before input is started in it.
2127 if (!mIWindowManager.inputMethodClientHasFocus(client)) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07002128 if (DEBUG) Slog.w(TAG, "Ignoring hideSoftInput of uid "
2129 + uid + ": " + client);
The Android Open Source Project4df24232009-03-05 14:34:35 -08002130 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002131 }
2132 } catch (RemoteException e) {
The Android Open Source Project4df24232009-03-05 14:34:35 -08002133 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002134 }
2135 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002136
Joe Onorato8a9b2202010-02-26 18:56:32 -08002137 if (DEBUG) Slog.v(TAG, "Client requesting input be hidden");
The Android Open Source Project4df24232009-03-05 14:34:35 -08002138 return hideCurrentInputLocked(flags, resultReceiver);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002139 }
2140 } finally {
2141 Binder.restoreCallingIdentity(ident);
2142 }
2143 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002144
The Android Open Source Project4df24232009-03-05 14:34:35 -08002145 boolean hideCurrentInputLocked(int flags, ResultReceiver resultReceiver) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002146 if ((flags&InputMethodManager.HIDE_IMPLICIT_ONLY) != 0
2147 && (mShowExplicitlyRequested || mShowForced)) {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002148 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 -08002149 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002150 }
2151 if (mShowForced && (flags&InputMethodManager.HIDE_NOT_ALWAYS) != 0) {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002152 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 -08002153 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002154 }
Seigo Nonakaec928652015-06-10 15:31:20 +09002155
2156 // There is a chance that IMM#hideSoftInput() is called in a transient state where
2157 // IMMS#InputShown is already updated to be true whereas IMMS#mImeWindowVis is still waiting
2158 // to be updated with the new value sent from IME process. Even in such a transient state
2159 // historically we have accepted an incoming call of IMM#hideSoftInput() from the
2160 // application process as a valid request, and have even promised such a behavior with CTS
2161 // since Android Eclair. That's why we need to accept IMM#hideSoftInput() even when only
2162 // IMMS#InputShown indicates that the software keyboard is shown.
2163 // TODO: Clean up, IMMS#mInputShown, IMMS#mImeWindowVis and mShowRequested.
2164 final boolean shouldHideSoftInput = (mCurMethod != null) && (mInputShown ||
2165 (mImeWindowVis & InputMethodService.IME_ACTIVE) != 0);
The Android Open Source Project4df24232009-03-05 14:34:35 -08002166 boolean res;
Seigo Nonakaec928652015-06-10 15:31:20 +09002167 if (shouldHideSoftInput) {
2168 // The IME will report its visible state again after the following message finally
2169 // delivered to the IME process as an IPC. Hence the inconsistency between
2170 // IMMS#mInputShown and IMMS#mImeWindowVis should be resolved spontaneously in
2171 // the final state.
The Android Open Source Project4df24232009-03-05 14:34:35 -08002172 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
2173 MSG_HIDE_SOFT_INPUT, mCurMethod, resultReceiver));
2174 res = true;
2175 } else {
2176 res = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002177 }
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07002178 if (mHaveConnection && mVisibleBound) {
2179 mContext.unbindService(mVisibleConnection);
2180 mVisibleBound = false;
2181 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002182 mInputShown = false;
2183 mShowRequested = false;
2184 mShowExplicitlyRequested = false;
2185 mShowForced = false;
The Android Open Source Project4df24232009-03-05 14:34:35 -08002186 return res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002187 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002188
satok42c5a162011-05-26 16:46:14 +09002189 @Override
Yohei Yukawa05c25f82016-02-22 12:41:17 -08002190 public InputBindResult startInputOrWindowGainedFocus(
2191 /* @InputMethodClient.StartInputReason */ final int startInputReason,
2192 IInputMethodClient client, IBinder windowToken, int controlFlags, int softInputMode,
2193 int windowFlags, EditorInfo attribute, IInputContext inputContext) {
2194 if (windowToken != null) {
2195 return windowGainedFocus(startInputReason, client, windowToken, controlFlags,
2196 softInputMode, windowFlags, attribute, inputContext);
2197 } else {
2198 return startInput(startInputReason, client, inputContext, attribute, controlFlags);
2199 }
2200 }
2201
2202 private InputBindResult windowGainedFocus(
Yohei Yukawa35d3f372015-11-25 11:07:19 -08002203 /* @InputMethodClient.StartInputReason */ final int startInputReason,
2204 IInputMethodClient client, IBinder windowToken, int controlFlags, int softInputMode,
2205 int windowFlags, EditorInfo attribute, IInputContext inputContext) {
Satoshi Kataoka8d033052012-11-19 17:30:40 +09002206 // Needs to check the validity before clearing calling identity
2207 final boolean calledFromValidUser = calledFromValidUser();
Dianne Hackborn7663d802012-02-24 13:08:49 -08002208 InputBindResult res = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002209 long ident = Binder.clearCallingIdentity();
2210 try {
2211 synchronized (mMethodMap) {
Yohei Yukawa35d3f372015-11-25 11:07:19 -08002212 if (DEBUG) Slog.v(TAG, "windowGainedFocus: reason="
2213 + InputMethodClient.getStartInputReason(startInputReason)
2214 + " client=" + client.asBinder()
2215 + " inputContext=" + inputContext
2216 + " attribute=" + attribute
Dianne Hackborn7663d802012-02-24 13:08:49 -08002217 + " controlFlags=#" + Integer.toHexString(controlFlags)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002218 + " softInputMode=#" + Integer.toHexString(softInputMode)
Dianne Hackborn7663d802012-02-24 13:08:49 -08002219 + " windowFlags=#" + Integer.toHexString(windowFlags));
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002220
Dianne Hackborn7663d802012-02-24 13:08:49 -08002221 ClientState cs = mClients.get(client.asBinder());
2222 if (cs == null) {
2223 throw new IllegalArgumentException("unknown client "
2224 + client.asBinder());
2225 }
2226
2227 try {
2228 if (!mIWindowManager.inputMethodClientHasFocus(cs.client)) {
2229 // Check with the window manager to make sure this client actually
2230 // has a window with focus. If not, reject. This is thread safe
2231 // because if the focus changes some time before or after, the
2232 // next client receiving focus that has any interest in input will
2233 // be calling through here after that change happens.
2234 Slog.w(TAG, "Focus gain on non-focused client " + cs.client
2235 + " (uid=" + cs.uid + " pid=" + cs.pid + ")");
2236 return null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002237 }
Dianne Hackborn7663d802012-02-24 13:08:49 -08002238 } catch (RemoteException e) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002239 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002240
Satoshi Kataoka8d033052012-11-19 17:30:40 +09002241 if (!calledFromValidUser) {
2242 Slog.w(TAG, "A background user is requesting window. Hiding IME.");
2243 Slog.w(TAG, "If you want to interect with IME, you need "
2244 + "android.permission.INTERACT_ACROSS_USERS_FULL");
2245 hideCurrentInputLocked(0, null);
2246 return null;
2247 }
2248
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07002249 if (mCurFocusedWindow == windowToken) {
Dianne Hackbornac920872012-05-22 11:49:49 -07002250 Slog.w(TAG, "Window already focused, ignoring focus gain of: " + client
Satoshi Kataoka35739502012-10-02 19:00:26 +09002251 + " attribute=" + attribute + ", token = " + windowToken);
Dianne Hackborn7663d802012-02-24 13:08:49 -08002252 if (attribute != null) {
2253 return startInputUncheckedLocked(cs, inputContext, attribute,
2254 controlFlags);
2255 }
2256 return null;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07002257 }
2258 mCurFocusedWindow = windowToken;
Yohei Yukawae39d4ed2015-11-19 03:38:49 -08002259 mCurFocusedWindowClient = cs;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002260
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08002261 // Should we auto-show the IME even if the caller has not
2262 // specified what should be done with it?
2263 // We only do this automatically if the window can resize
2264 // to accommodate the IME (so what the user sees will give
2265 // them good context without input information being obscured
2266 // by the IME) or if running on a large screen where there
2267 // is more room for the target window + IME.
2268 final boolean doAutoShow =
2269 (softInputMode & WindowManager.LayoutParams.SOFT_INPUT_MASK_ADJUST)
2270 == WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE
2271 || mRes.getConfiguration().isLayoutSizeAtLeast(
2272 Configuration.SCREENLAYOUT_SIZE_LARGE);
Dianne Hackborn7663d802012-02-24 13:08:49 -08002273 final boolean isTextEditor =
2274 (controlFlags&InputMethodManager.CONTROL_WINDOW_IS_TEXT_EDITOR) != 0;
2275
2276 // We want to start input before showing the IME, but after closing
2277 // it. We want to do this after closing it to help the IME disappear
2278 // more quickly (not get stuck behind it initializing itself for the
2279 // new focused input, even if its window wants to hide the IME).
2280 boolean didStart = false;
Yohei Yukawa0f3ad12015-04-06 16:48:24 -07002281
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002282 switch (softInputMode&WindowManager.LayoutParams.SOFT_INPUT_MASK_STATE) {
2283 case WindowManager.LayoutParams.SOFT_INPUT_STATE_UNSPECIFIED:
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08002284 if (!isTextEditor || !doAutoShow) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002285 if (WindowManager.LayoutParams.mayUseInputMethod(windowFlags)) {
2286 // There is no focus view, and this window will
2287 // be behind any soft input window, so hide the
2288 // soft input window if it is shown.
Joe Onorato8a9b2202010-02-26 18:56:32 -08002289 if (DEBUG) Slog.v(TAG, "Unspecified window will hide input");
The Android Open Source Project4df24232009-03-05 14:34:35 -08002290 hideCurrentInputLocked(InputMethodManager.HIDE_NOT_ALWAYS, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002291 }
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08002292 } else if (isTextEditor && doAutoShow && (softInputMode &
2293 WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002294 // There is a focus view, and we are navigating forward
2295 // into the window, so show the input window for the user.
Dianne Hackborn7663d802012-02-24 13:08:49 -08002296 // We only do this automatically if the window can resize
2297 // to accommodate the IME (so what the user sees will give
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08002298 // them good context without input information being obscured
2299 // by the IME) or if running on a large screen where there
2300 // is more room for the target window + IME.
Joe Onorato8a9b2202010-02-26 18:56:32 -08002301 if (DEBUG) Slog.v(TAG, "Unspecified window will show input");
Dianne Hackborn7663d802012-02-24 13:08:49 -08002302 if (attribute != null) {
2303 res = startInputUncheckedLocked(cs, inputContext, attribute,
2304 controlFlags);
2305 didStart = true;
2306 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002307 showCurrentInputLocked(InputMethodManager.SHOW_IMPLICIT, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002308 }
2309 break;
2310 case WindowManager.LayoutParams.SOFT_INPUT_STATE_UNCHANGED:
2311 // Do nothing.
2312 break;
2313 case WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN:
2314 if ((softInputMode &
2315 WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002316 if (DEBUG) Slog.v(TAG, "Window asks to hide input going forward");
The Android Open Source Project4df24232009-03-05 14:34:35 -08002317 hideCurrentInputLocked(0, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002318 }
2319 break;
2320 case WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN:
Joe Onorato8a9b2202010-02-26 18:56:32 -08002321 if (DEBUG) Slog.v(TAG, "Window asks to hide input");
The Android Open Source Project4df24232009-03-05 14:34:35 -08002322 hideCurrentInputLocked(0, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002323 break;
2324 case WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE:
2325 if ((softInputMode &
2326 WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002327 if (DEBUG) Slog.v(TAG, "Window asks to show input going forward");
Dianne Hackborn7663d802012-02-24 13:08:49 -08002328 if (attribute != null) {
2329 res = startInputUncheckedLocked(cs, inputContext, attribute,
2330 controlFlags);
2331 didStart = true;
2332 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002333 showCurrentInputLocked(InputMethodManager.SHOW_IMPLICIT, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002334 }
2335 break;
2336 case WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE:
Joe Onorato8a9b2202010-02-26 18:56:32 -08002337 if (DEBUG) Slog.v(TAG, "Window asks to always show input");
Dianne Hackborn7663d802012-02-24 13:08:49 -08002338 if (attribute != null) {
2339 res = startInputUncheckedLocked(cs, inputContext, attribute,
2340 controlFlags);
2341 didStart = true;
2342 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002343 showCurrentInputLocked(InputMethodManager.SHOW_IMPLICIT, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002344 break;
2345 }
Dianne Hackborn7663d802012-02-24 13:08:49 -08002346
2347 if (!didStart && attribute != null) {
2348 res = startInputUncheckedLocked(cs, inputContext, attribute,
2349 controlFlags);
2350 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002351 }
2352 } finally {
2353 Binder.restoreCallingIdentity(ident);
2354 }
Dianne Hackborn7663d802012-02-24 13:08:49 -08002355
2356 return res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002357 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002358
satok42c5a162011-05-26 16:46:14 +09002359 @Override
Seigo Nonaka14e13912015-05-06 21:04:13 -07002360 public void showInputMethodPickerFromClient(
2361 IInputMethodClient client, int auxiliarySubtypeMode) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002362 if (!calledFromValidUser()) {
2363 return;
2364 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002365 synchronized (mMethodMap) {
2366 if (mCurClient == null || client == null
2367 || mCurClient.client.asBinder() != client.asBinder()) {
satok47a44912010-10-06 16:03:58 +09002368 Slog.w(TAG, "Ignoring showInputMethodPickerFromClient of uid "
Dianne Hackborncef65ee2010-09-30 18:27:22 -07002369 + Binder.getCallingUid() + ": " + client);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002370 }
2371
satok440aab52010-11-25 09:43:11 +09002372 // Always call subtype picker, because subtype picker is a superset of input method
2373 // picker.
Seigo Nonaka14e13912015-05-06 21:04:13 -07002374 mHandler.sendMessage(mCaller.obtainMessageI(
2375 MSG_SHOW_IM_SUBTYPE_PICKER, auxiliarySubtypeMode));
satokab751aa2010-09-14 19:17:36 +09002376 }
2377 }
2378
satok42c5a162011-05-26 16:46:14 +09002379 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002380 public void setInputMethod(IBinder token, String id) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002381 if (!calledFromValidUser()) {
2382 return;
2383 }
satok28203512010-11-24 11:06:49 +09002384 setInputMethodWithSubtypeId(token, id, NOT_A_SUBTYPE_ID);
2385 }
2386
satok42c5a162011-05-26 16:46:14 +09002387 @Override
satok28203512010-11-24 11:06:49 +09002388 public void setInputMethodAndSubtype(IBinder token, String id, InputMethodSubtype subtype) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002389 if (!calledFromValidUser()) {
2390 return;
2391 }
satok28203512010-11-24 11:06:49 +09002392 synchronized (mMethodMap) {
2393 if (subtype != null) {
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002394 setInputMethodWithSubtypeIdLocked(token, id,
2395 InputMethodUtils.getSubtypeIdFromHashCode(mMethodMap.get(id),
2396 subtype.hashCode()));
satok28203512010-11-24 11:06:49 +09002397 } else {
2398 setInputMethod(token, id);
2399 }
2400 }
satokab751aa2010-09-14 19:17:36 +09002401 }
2402
satok42c5a162011-05-26 16:46:14 +09002403 @Override
satokb416a712010-11-25 20:42:14 +09002404 public void showInputMethodAndSubtypeEnablerFromClient(
satok217f5482010-12-15 05:19:19 +09002405 IInputMethodClient client, String inputMethodId) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002406 if (!calledFromValidUser()) {
2407 return;
2408 }
satokb416a712010-11-25 20:42:14 +09002409 synchronized (mMethodMap) {
satok7fee71f2010-12-17 18:54:26 +09002410 executeOrSendMessage(mCurMethod, mCaller.obtainMessageO(
2411 MSG_SHOW_IM_SUBTYPE_ENABLER, inputMethodId));
satokb416a712010-11-25 20:42:14 +09002412 }
2413 }
2414
satok4fc87d62011-05-20 16:13:43 +09002415 @Override
satok735cf382010-11-11 20:40:09 +09002416 public boolean switchToLastInputMethod(IBinder token) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002417 if (!calledFromValidUser()) {
2418 return false;
2419 }
satok735cf382010-11-11 20:40:09 +09002420 synchronized (mMethodMap) {
satokc445bcd2011-01-25 18:57:24 +09002421 final Pair<String, String> lastIme = mSettings.getLastInputMethodAndSubtypeLocked();
satok4fc87d62011-05-20 16:13:43 +09002422 final InputMethodInfo lastImi;
satok208d5632011-05-20 22:13:38 +09002423 if (lastIme != null) {
satok4fc87d62011-05-20 16:13:43 +09002424 lastImi = mMethodMap.get(lastIme.first);
2425 } else {
2426 lastImi = null;
satok735cf382010-11-11 20:40:09 +09002427 }
satok4fc87d62011-05-20 16:13:43 +09002428 String targetLastImiId = null;
2429 int subtypeId = NOT_A_SUBTYPE_ID;
2430 if (lastIme != null && lastImi != null) {
2431 final boolean imiIdIsSame = lastImi.getId().equals(mCurMethodId);
2432 final int lastSubtypeHash = Integer.valueOf(lastIme.second);
2433 final int currentSubtypeHash = mCurrentSubtype == null ? NOT_A_SUBTYPE_ID
2434 : mCurrentSubtype.hashCode();
2435 // If the last IME is the same as the current IME and the last subtype is not
2436 // defined, there is no need to switch to the last IME.
2437 if (!imiIdIsSame || lastSubtypeHash != currentSubtypeHash) {
2438 targetLastImiId = lastIme.first;
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002439 subtypeId = InputMethodUtils.getSubtypeIdFromHashCode(lastImi, lastSubtypeHash);
satok4fc87d62011-05-20 16:13:43 +09002440 }
2441 }
2442
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002443 if (TextUtils.isEmpty(targetLastImiId)
2444 && !InputMethodUtils.canAddToLastInputMethod(mCurrentSubtype)) {
satok4fc87d62011-05-20 16:13:43 +09002445 // This is a safety net. If the currentSubtype can't be added to the history
2446 // and the framework couldn't find the last ime, we will make the last ime be
2447 // the most applicable enabled keyboard subtype of the system imes.
2448 final List<InputMethodInfo> enabled = mSettings.getEnabledInputMethodListLocked();
2449 if (enabled != null) {
2450 final int N = enabled.size();
2451 final String locale = mCurrentSubtype == null
2452 ? mRes.getConfiguration().locale.toString()
2453 : mCurrentSubtype.getLocale();
2454 for (int i = 0; i < N; ++i) {
2455 final InputMethodInfo imi = enabled.get(i);
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002456 if (imi.getSubtypeCount() > 0 && InputMethodUtils.isSystemIme(imi)) {
satok4fc87d62011-05-20 16:13:43 +09002457 InputMethodSubtype keyboardSubtype =
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002458 InputMethodUtils.findLastResortApplicableSubtypeLocked(mRes,
2459 InputMethodUtils.getSubtypes(imi),
2460 InputMethodUtils.SUBTYPE_MODE_KEYBOARD, locale, true);
satok4fc87d62011-05-20 16:13:43 +09002461 if (keyboardSubtype != null) {
2462 targetLastImiId = imi.getId();
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002463 subtypeId = InputMethodUtils.getSubtypeIdFromHashCode(
satok4fc87d62011-05-20 16:13:43 +09002464 imi, keyboardSubtype.hashCode());
2465 if(keyboardSubtype.getLocale().equals(locale)) {
2466 break;
2467 }
2468 }
2469 }
2470 }
2471 }
2472 }
2473
2474 if (!TextUtils.isEmpty(targetLastImiId)) {
2475 if (DEBUG) {
2476 Slog.d(TAG, "Switch to: " + lastImi.getId() + ", " + lastIme.second
2477 + ", from: " + mCurMethodId + ", " + subtypeId);
2478 }
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002479 setInputMethodWithSubtypeIdLocked(token, targetLastImiId, subtypeId);
satok4fc87d62011-05-20 16:13:43 +09002480 return true;
2481 } else {
2482 return false;
2483 }
satok735cf382010-11-11 20:40:09 +09002484 }
2485 }
2486
satoke7c6998e2011-06-03 17:57:59 +09002487 @Override
satok688bd472012-02-09 20:09:17 +09002488 public boolean switchToNextInputMethod(IBinder token, boolean onlyCurrentIme) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002489 if (!calledFromValidUser()) {
2490 return false;
2491 }
satok688bd472012-02-09 20:09:17 +09002492 synchronized (mMethodMap) {
Yohei Yukawaa0755742014-06-04 20:28:18 +09002493 if (!calledWithValidToken(token)) {
2494 final int uid = Binder.getCallingUid();
2495 Slog.e(TAG, "Ignoring switchToNextInputMethod due to an invalid token. uid:" + uid
2496 + " token:" + token);
2497 return false;
2498 }
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002499 final ImeSubtypeListItem nextSubtype = mSwitchingController.getNextInputMethodLocked(
satok688bd472012-02-09 20:09:17 +09002500 onlyCurrentIme, mMethodMap.get(mCurMethodId), mCurrentSubtype);
2501 if (nextSubtype == null) {
2502 return false;
2503 }
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002504 setInputMethodWithSubtypeIdLocked(token, nextSubtype.mImi.getId(),
2505 nextSubtype.mSubtypeId);
satok688bd472012-02-09 20:09:17 +09002506 return true;
2507 }
2508 }
2509
2510 @Override
Satoshi Kataoka2b10b522013-08-21 20:39:12 +09002511 public boolean shouldOfferSwitchingToNextInputMethod(IBinder token) {
2512 if (!calledFromValidUser()) {
2513 return false;
2514 }
2515 synchronized (mMethodMap) {
Yohei Yukawaa0755742014-06-04 20:28:18 +09002516 if (!calledWithValidToken(token)) {
2517 final int uid = Binder.getCallingUid();
2518 Slog.e(TAG, "Ignoring shouldOfferSwitchingToNextInputMethod due to an invalid "
2519 + "token. uid:" + uid + " token:" + token);
2520 return false;
2521 }
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002522 final ImeSubtypeListItem nextSubtype = mSwitchingController.getNextInputMethodLocked(
Satoshi Kataoka2b10b522013-08-21 20:39:12 +09002523 false /* onlyCurrentIme */, mMethodMap.get(mCurMethodId), mCurrentSubtype);
2524 if (nextSubtype == null) {
2525 return false;
2526 }
2527 return true;
2528 }
2529 }
2530
2531 @Override
satok68f1b782011-04-11 14:26:04 +09002532 public InputMethodSubtype getLastInputMethodSubtype() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002533 if (!calledFromValidUser()) {
2534 return null;
2535 }
satok68f1b782011-04-11 14:26:04 +09002536 synchronized (mMethodMap) {
2537 final Pair<String, String> lastIme = mSettings.getLastInputMethodAndSubtypeLocked();
2538 // TODO: Handle the case of the last IME with no subtypes
2539 if (lastIme == null || TextUtils.isEmpty(lastIme.first)
2540 || TextUtils.isEmpty(lastIme.second)) return null;
2541 final InputMethodInfo lastImi = mMethodMap.get(lastIme.first);
2542 if (lastImi == null) return null;
2543 try {
2544 final int lastSubtypeHash = Integer.valueOf(lastIme.second);
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002545 final int lastSubtypeId =
2546 InputMethodUtils.getSubtypeIdFromHashCode(lastImi, lastSubtypeHash);
satok0e7d7d62011-07-05 13:28:06 +09002547 if (lastSubtypeId < 0 || lastSubtypeId >= lastImi.getSubtypeCount()) {
2548 return null;
2549 }
2550 return lastImi.getSubtypeAt(lastSubtypeId);
satok68f1b782011-04-11 14:26:04 +09002551 } catch (NumberFormatException e) {
2552 return null;
2553 }
2554 }
2555 }
2556
satoke7c6998e2011-06-03 17:57:59 +09002557 @Override
satokee5e77c2011-09-02 18:50:15 +09002558 public void setAdditionalInputMethodSubtypes(String imiId, InputMethodSubtype[] subtypes) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002559 if (!calledFromValidUser()) {
2560 return;
2561 }
satok91e88122011-07-18 11:11:42 +09002562 // By this IPC call, only a process which shares the same uid with the IME can add
2563 // additional input method subtypes to the IME.
Yohei Yukawa70f5c482016-01-04 19:42:36 -08002564 if (TextUtils.isEmpty(imiId) || subtypes == null) return;
satoke7c6998e2011-06-03 17:57:59 +09002565 synchronized (mMethodMap) {
satok91e88122011-07-18 11:11:42 +09002566 final InputMethodInfo imi = mMethodMap.get(imiId);
satokee5e77c2011-09-02 18:50:15 +09002567 if (imi == null) return;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002568 final String[] packageInfos;
2569 try {
2570 packageInfos = mIPackageManager.getPackagesForUid(Binder.getCallingUid());
2571 } catch (RemoteException e) {
2572 Slog.e(TAG, "Failed to get package infos");
2573 return;
2574 }
satok91e88122011-07-18 11:11:42 +09002575 if (packageInfos != null) {
2576 final int packageNum = packageInfos.length;
2577 for (int i = 0; i < packageNum; ++i) {
2578 if (packageInfos[i].equals(imi.getPackageName())) {
2579 mFileManager.addInputMethodSubtypes(imi, subtypes);
satokc5933802011-08-31 21:26:04 +09002580 final long ident = Binder.clearCallingIdentity();
2581 try {
Yohei Yukawa94e33302016-02-12 19:37:03 -08002582 buildInputMethodListLocked(false /* resetDefaultEnabledIme */);
satokc5933802011-08-31 21:26:04 +09002583 } finally {
2584 Binder.restoreCallingIdentity(ident);
2585 }
satokee5e77c2011-09-02 18:50:15 +09002586 return;
satok91e88122011-07-18 11:11:42 +09002587 }
2588 }
2589 }
satoke7c6998e2011-06-03 17:57:59 +09002590 }
satokee5e77c2011-09-02 18:50:15 +09002591 return;
satoke7c6998e2011-06-03 17:57:59 +09002592 }
2593
Satoshi Kataoka658c7b82013-10-10 17:03:51 +09002594 @Override
2595 public int getInputMethodWindowVisibleHeight() {
Seigo Nonaka7309b122015-08-17 18:34:13 -07002596 return mWindowManagerInternal.getInputMethodWindowVisibleHeight();
Satoshi Kataoka658c7b82013-10-10 17:03:51 +09002597 }
2598
Satoshi Kataokad7443c82013-10-15 17:45:43 +09002599 @Override
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002600 public void notifyUserAction(int sequenceNumber) {
Satoshi Kataokad7443c82013-10-15 17:45:43 +09002601 if (DEBUG) {
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002602 Slog.d(TAG, "Got the notification of a user action. sequenceNumber:" + sequenceNumber);
Satoshi Kataokad7443c82013-10-15 17:45:43 +09002603 }
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002604 synchronized (mMethodMap) {
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002605 if (mCurUserActionNotificationSequenceNumber != sequenceNumber) {
2606 if (DEBUG) {
2607 Slog.d(TAG, "Ignoring the user action notification due to the sequence number "
2608 + "mismatch. expected:" + mCurUserActionNotificationSequenceNumber
2609 + " actual: " + sequenceNumber);
2610 }
2611 return;
2612 }
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002613 final InputMethodInfo imi = mMethodMap.get(mCurMethodId);
2614 if (imi != null) {
Yohei Yukawa02970512014-06-05 16:16:18 +09002615 mSwitchingController.onUserActionLocked(imi, mCurrentSubtype);
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002616 }
Satoshi Kataokad7443c82013-10-15 17:45:43 +09002617 }
2618 }
2619
satok28203512010-11-24 11:06:49 +09002620 private void setInputMethodWithSubtypeId(IBinder token, String id, int subtypeId) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002621 synchronized (mMethodMap) {
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002622 setInputMethodWithSubtypeIdLocked(token, id, subtypeId);
2623 }
2624 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002625
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002626 private void setInputMethodWithSubtypeIdLocked(IBinder token, String id, int subtypeId) {
2627 if (token == null) {
2628 if (mContext.checkCallingOrSelfPermission(
2629 android.Manifest.permission.WRITE_SECURE_SETTINGS)
2630 != PackageManager.PERMISSION_GRANTED) {
2631 throw new SecurityException(
2632 "Using null token requires permission "
2633 + android.Manifest.permission.WRITE_SECURE_SETTINGS);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002634 }
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002635 } else if (mCurToken != token) {
2636 Slog.w(TAG, "Ignoring setInputMethod of uid " + Binder.getCallingUid()
2637 + " token: " + token);
2638 return;
2639 }
2640
2641 final long ident = Binder.clearCallingIdentity();
2642 try {
2643 setInputMethodLocked(id, subtypeId);
2644 } finally {
2645 Binder.restoreCallingIdentity(ident);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002646 }
2647 }
2648
satok42c5a162011-05-26 16:46:14 +09002649 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002650 public void hideMySoftInput(IBinder token, int flags) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002651 if (!calledFromValidUser()) {
2652 return;
2653 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002654 synchronized (mMethodMap) {
Yohei Yukawa22c97be2014-06-04 19:43:36 +09002655 if (!calledWithValidToken(token)) {
2656 final int uid = Binder.getCallingUid();
2657 Slog.e(TAG, "Ignoring hideInputMethod due to an invalid token. uid:"
2658 + uid + " token:" + token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002659 return;
2660 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002661 long ident = Binder.clearCallingIdentity();
2662 try {
The Android Open Source Project4df24232009-03-05 14:34:35 -08002663 hideCurrentInputLocked(flags, null);
2664 } finally {
2665 Binder.restoreCallingIdentity(ident);
2666 }
2667 }
2668 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002669
satok42c5a162011-05-26 16:46:14 +09002670 @Override
The Android Open Source Project4df24232009-03-05 14:34:35 -08002671 public void showMySoftInput(IBinder token, int flags) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002672 if (!calledFromValidUser()) {
2673 return;
2674 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002675 synchronized (mMethodMap) {
Yohei Yukawa22c97be2014-06-04 19:43:36 +09002676 if (!calledWithValidToken(token)) {
2677 final int uid = Binder.getCallingUid();
2678 Slog.e(TAG, "Ignoring showMySoftInput due to an invalid token. uid:"
2679 + uid + " token:" + token);
The Android Open Source Project4df24232009-03-05 14:34:35 -08002680 return;
2681 }
2682 long ident = Binder.clearCallingIdentity();
2683 try {
2684 showCurrentInputLocked(flags, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002685 } finally {
2686 Binder.restoreCallingIdentity(ident);
2687 }
2688 }
2689 }
2690
2691 void setEnabledSessionInMainThread(SessionState session) {
2692 if (mEnabledSession != session) {
Yohei Yukawa9d91b432014-05-19 16:03:24 +09002693 if (mEnabledSession != null && mEnabledSession.session != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002694 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002695 if (DEBUG) Slog.v(TAG, "Disabling: " + mEnabledSession);
Yohei Yukawa9d91b432014-05-19 16:03:24 +09002696 mEnabledSession.method.setSessionEnabled(mEnabledSession.session, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002697 } catch (RemoteException e) {
2698 }
2699 }
2700 mEnabledSession = session;
Yohei Yukawa9d91b432014-05-19 16:03:24 +09002701 if (mEnabledSession != null && mEnabledSession.session != null) {
2702 try {
2703 if (DEBUG) Slog.v(TAG, "Enabling: " + mEnabledSession);
2704 mEnabledSession.method.setSessionEnabled(mEnabledSession.session, true);
2705 } catch (RemoteException e) {
2706 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002707 }
2708 }
2709 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002710
satok42c5a162011-05-26 16:46:14 +09002711 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002712 public boolean handleMessage(Message msg) {
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002713 SomeArgs args;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002714 switch (msg.what) {
satokab751aa2010-09-14 19:17:36 +09002715 case MSG_SHOW_IM_SUBTYPE_PICKER:
Seigo Nonaka14e13912015-05-06 21:04:13 -07002716 final boolean showAuxSubtypes;
2717 switch (msg.arg1) {
2718 case InputMethodManager.SHOW_IM_PICKER_MODE_AUTO:
2719 // This is undocumented so far, but IMM#showInputMethodPicker() has been
2720 // implemented so that auxiliary subtypes will be excluded when the soft
2721 // keyboard is invisible.
2722 showAuxSubtypes = mInputShown;
2723 break;
2724 case InputMethodManager.SHOW_IM_PICKER_MODE_INCLUDE_AUXILIARY_SUBTYPES:
2725 showAuxSubtypes = true;
2726 break;
2727 case InputMethodManager.SHOW_IM_PICKER_MODE_EXCLUDE_AUXILIARY_SUBTYPES:
2728 showAuxSubtypes = false;
2729 break;
2730 default:
2731 Slog.e(TAG, "Unknown subtype picker mode = " + msg.arg1);
2732 return false;
2733 }
2734 showInputMethodMenu(showAuxSubtypes);
satokab751aa2010-09-14 19:17:36 +09002735 return true;
2736
satok47a44912010-10-06 16:03:58 +09002737 case MSG_SHOW_IM_SUBTYPE_ENABLER:
Yohei Yukawa41f34272015-12-14 15:41:52 -08002738 showInputMethodAndSubtypeEnabler((String)msg.obj);
satok217f5482010-12-15 05:19:19 +09002739 return true;
2740
2741 case MSG_SHOW_IM_CONFIG:
2742 showConfigureInputMethods();
satok47a44912010-10-06 16:03:58 +09002743 return true;
2744
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002745 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002746
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002747 case MSG_UNBIND_INPUT:
2748 try {
2749 ((IInputMethod)msg.obj).unbindInput();
2750 } catch (RemoteException e) {
2751 // There is nothing interesting about the method dying.
2752 }
2753 return true;
2754 case MSG_BIND_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002755 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002756 try {
2757 ((IInputMethod)args.arg1).bindInput((InputBinding)args.arg2);
2758 } catch (RemoteException e) {
2759 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002760 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002761 return true;
2762 case MSG_SHOW_SOFT_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002763 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002764 try {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002765 if (DEBUG) Slog.v(TAG, "Calling " + args.arg1 + ".showSoftInput("
Craig Mautner6efb4c72013-03-13 10:17:41 -07002766 + msg.arg1 + ", " + args.arg2 + ")");
Craig Mautnerca0ac712013-03-14 09:43:02 -07002767 ((IInputMethod)args.arg1).showSoftInput(msg.arg1, (ResultReceiver)args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002768 } catch (RemoteException e) {
2769 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002770 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002771 return true;
2772 case MSG_HIDE_SOFT_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002773 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002774 try {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002775 if (DEBUG) Slog.v(TAG, "Calling " + args.arg1 + ".hideSoftInput(0, "
Craig Mautner6efb4c72013-03-13 10:17:41 -07002776 + args.arg2 + ")");
Craig Mautnerca0ac712013-03-14 09:43:02 -07002777 ((IInputMethod)args.arg1).hideSoftInput(0, (ResultReceiver)args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002778 } catch (RemoteException e) {
2779 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002780 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002781 return true;
2782 case MSG_ATTACH_TOKEN:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002783 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002784 try {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002785 if (DEBUG) Slog.v(TAG, "Sending attach of token: " + args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002786 ((IInputMethod)args.arg1).attachToken((IBinder)args.arg2);
2787 } catch (RemoteException e) {
2788 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002789 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002790 return true;
Jeff Brownc28867a2013-03-26 15:42:39 -07002791 case MSG_CREATE_SESSION: {
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002792 args = (SomeArgs)msg.obj;
Jeff Brown1951ce82013-04-04 22:45:12 -07002793 IInputMethod method = (IInputMethod)args.arg1;
Jeff Brownc28867a2013-03-26 15:42:39 -07002794 InputChannel channel = (InputChannel)args.arg2;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002795 try {
Jeff Brown1951ce82013-04-04 22:45:12 -07002796 method.createSession(channel, (IInputSessionCallback)args.arg3);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002797 } catch (RemoteException e) {
Jeff Brownc28867a2013-03-26 15:42:39 -07002798 } finally {
Jeff Brown1951ce82013-04-04 22:45:12 -07002799 // Dispose the channel if the input method is not local to this process
2800 // because the remote proxy will get its own copy when unparceled.
2801 if (channel != null && Binder.isProxy(method)) {
Jeff Brownc28867a2013-03-26 15:42:39 -07002802 channel.dispose();
2803 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002804 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002805 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002806 return true;
Jeff Brownc28867a2013-03-26 15:42:39 -07002807 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002808 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002809
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002810 case MSG_START_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002811 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002812 try {
2813 SessionState session = (SessionState)args.arg1;
2814 setEnabledSessionInMainThread(session);
2815 session.method.startInput((IInputContext)args.arg2,
2816 (EditorInfo)args.arg3);
2817 } catch (RemoteException e) {
2818 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002819 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002820 return true;
2821 case MSG_RESTART_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002822 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002823 try {
2824 SessionState session = (SessionState)args.arg1;
2825 setEnabledSessionInMainThread(session);
2826 session.method.restartInput((IInputContext)args.arg2,
2827 (EditorInfo)args.arg3);
2828 } catch (RemoteException e) {
2829 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002830 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002831 return true;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002832
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002833 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002834
Yohei Yukawa33e81792015-11-17 21:14:42 -08002835 case MSG_UNBIND_CLIENT:
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002836 try {
Yohei Yukawa33e81792015-11-17 21:14:42 -08002837 ((IInputMethodClient)msg.obj).onUnbindMethod(msg.arg1, msg.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002838 } catch (RemoteException e) {
2839 // There is nothing interesting about the last client dying.
2840 }
2841 return true;
Yohei Yukawa33e81792015-11-17 21:14:42 -08002842 case MSG_BIND_CLIENT: {
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002843 args = (SomeArgs)msg.obj;
Jeff Brown1951ce82013-04-04 22:45:12 -07002844 IInputMethodClient client = (IInputMethodClient)args.arg1;
2845 InputBindResult res = (InputBindResult)args.arg2;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002846 try {
Jeff Brown1951ce82013-04-04 22:45:12 -07002847 client.onBindMethod(res);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002848 } catch (RemoteException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002849 Slog.w(TAG, "Client died receiving input method " + args.arg2);
Jeff Brown1951ce82013-04-04 22:45:12 -07002850 } finally {
2851 // Dispose the channel if the input method is not local to this process
2852 // because the remote proxy will get its own copy when unparceled.
2853 if (res.channel != null && Binder.isProxy(client)) {
2854 res.channel.dispose();
2855 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002856 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002857 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002858 return true;
Jeff Brown1951ce82013-04-04 22:45:12 -07002859 }
Dianne Hackborna6e41342012-05-22 16:30:34 -07002860 case MSG_SET_ACTIVE:
2861 try {
2862 ((ClientState)msg.obj).client.setActive(msg.arg1 != 0);
2863 } catch (RemoteException e) {
2864 Slog.w(TAG, "Got RemoteException sending setActive(false) notification to pid "
2865 + ((ClientState)msg.obj).pid + " uid "
2866 + ((ClientState)msg.obj).uid);
2867 }
2868 return true;
Yohei Yukawafa6e0a82015-07-23 15:08:59 -07002869 case MSG_SET_INTERACTIVE:
2870 handleSetInteractive(msg.arg1 != 0);
2871 return true;
Yohei Yukawaae61f712015-12-09 13:00:10 -08002872 case MSG_SWITCH_IME:
2873 handleSwitchInputMethod(msg.arg1 != 0);
2874 return true;
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002875 case MSG_SET_USER_ACTION_NOTIFICATION_SEQUENCE_NUMBER: {
2876 final int sequenceNumber = msg.arg1;
Yohei Yukawa080fa342014-08-31 16:10:05 -07002877 final ClientState clientState = (ClientState)msg.obj;
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002878 try {
Yohei Yukawa080fa342014-08-31 16:10:05 -07002879 clientState.client.setUserActionNotificationSequenceNumber(sequenceNumber);
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002880 } catch (RemoteException e) {
2881 Slog.w(TAG, "Got RemoteException sending "
2882 + "setUserActionNotificationSequenceNumber("
2883 + sequenceNumber + ") notification to pid "
Yohei Yukawa080fa342014-08-31 16:10:05 -07002884 + clientState.pid + " uid "
2885 + clientState.uid);
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002886 }
2887 return true;
2888 }
satok01038492012-04-09 21:08:27 +09002889
2890 // --------------------------------------------------------------
2891 case MSG_HARD_KEYBOARD_SWITCH_CHANGED:
Michael Wright7b5a96b2014-08-09 19:28:42 -07002892 mHardKeyboardListener.handleHardKeyboardStatusChange(msg.arg1 == 1);
satok01038492012-04-09 21:08:27 +09002893 return true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002894 }
2895 return false;
2896 }
2897
Yohei Yukawafa6e0a82015-07-23 15:08:59 -07002898 private void handleSetInteractive(final boolean interactive) {
2899 synchronized (mMethodMap) {
2900 mIsInteractive = interactive;
2901 updateSystemUiLocked(mCurToken, interactive ? mImeWindowVis : 0, mBackDisposition);
2902
2903 // Inform the current client of the change in active status
2904 if (mCurClient != null && mCurClient.client != null) {
2905 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
2906 MSG_SET_ACTIVE, mIsInteractive ? 1 : 0, mCurClient));
2907 }
2908 }
2909 }
2910
Yohei Yukawaae61f712015-12-09 13:00:10 -08002911 private void handleSwitchInputMethod(final boolean forwardDirection) {
2912 synchronized (mMethodMap) {
2913 // TODO: Support forwardDirection.
2914 final ImeSubtypeListItem nextSubtype = mSwitchingController.getNextInputMethodLocked(
2915 false, mMethodMap.get(mCurMethodId), mCurrentSubtype);
2916 if (nextSubtype == null) {
2917 return;
2918 }
2919 setInputMethodLocked(nextSubtype.mImi.getId(), nextSubtype.mSubtypeId);
2920 }
2921 }
2922
satokdc9ddae2011-10-06 12:22:36 +09002923 private boolean chooseNewDefaultIMELocked() {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002924 final InputMethodInfo imi = InputMethodUtils.getMostApplicableDefaultIME(
2925 mSettings.getEnabledInputMethodListLocked());
satokdc9ddae2011-10-06 12:22:36 +09002926 if (imi != null) {
satok03eb319a2010-11-11 18:17:42 +09002927 if (DEBUG) {
2928 Slog.d(TAG, "New default IME was selected: " + imi.getId());
2929 }
satok723a27e2010-11-11 14:58:11 +09002930 resetSelectedInputMethodAndSubtypeLocked(imi.getId());
Brandon Ballinger6da35a02009-10-21 00:38:13 -07002931 return true;
2932 }
2933
2934 return false;
2935 }
2936
Yohei Yukawa94e33302016-02-12 19:37:03 -08002937 void buildInputMethodListLocked(boolean resetDefaultEnabledIme) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002938 if (DEBUG) {
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09002939 Slog.d(TAG, "--- re-buildInputMethodList reset = " + resetDefaultEnabledIme
Seigo Nonakae27dc2b2015-08-14 18:21:27 -07002940 + " \n ------ caller=" + Debug.getCallers(10));
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002941 }
Yohei Yukawa94e33302016-02-12 19:37:03 -08002942 mMethodList.clear();
2943 mMethodMap.clear();
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002944
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002945 // Use for queryIntentServicesAsUser
2946 final PackageManager pm = mContext.getPackageManager();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002947
Yohei Yukawaed4952a2016-02-17 07:57:25 -08002948 // Note: We do not specify PackageManager.MATCH_ENCRYPTION_* flags here because the default
2949 // behavior of PackageManager is exactly what we want. It by default picks up appropriate
2950 // services depending on the unlock state for the specified user.
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002951 final List<ResolveInfo> services = pm.queryIntentServicesAsUser(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002952 new Intent(InputMethod.SERVICE_INTERFACE),
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08002953 PackageManager.GET_META_DATA | PackageManager.GET_DISABLED_UNTIL_USED_COMPONENTS,
2954 mSettings.getCurrentUserId());
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002955
satoke7c6998e2011-06-03 17:57:59 +09002956 final HashMap<String, List<InputMethodSubtype>> additionalSubtypes =
2957 mFileManager.getAllAdditionalInputMethodSubtypes();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002958 for (int i = 0; i < services.size(); ++i) {
2959 ResolveInfo ri = services.get(i);
2960 ServiceInfo si = ri.serviceInfo;
2961 ComponentName compName = new ComponentName(si.packageName, si.name);
2962 if (!android.Manifest.permission.BIND_INPUT_METHOD.equals(
2963 si.permission)) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002964 Slog.w(TAG, "Skipping input method " + compName
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002965 + ": it does not require the permission "
2966 + android.Manifest.permission.BIND_INPUT_METHOD);
2967 continue;
2968 }
2969
Joe Onorato8a9b2202010-02-26 18:56:32 -08002970 if (DEBUG) Slog.d(TAG, "Checking " + compName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002971
2972 try {
satoke7c6998e2011-06-03 17:57:59 +09002973 InputMethodInfo p = new InputMethodInfo(mContext, ri, additionalSubtypes);
Yohei Yukawa94e33302016-02-12 19:37:03 -08002974 mMethodList.add(p);
Amith Yamasanie861ec12010-03-24 21:39:27 -07002975 final String id = p.getId();
Yohei Yukawa94e33302016-02-12 19:37:03 -08002976 mMethodMap.put(id, p);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002977
2978 if (DEBUG) {
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09002979 Slog.d(TAG, "Found an input method " + p);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002980 }
Yohei Yukawa5894b432015-08-11 13:29:24 -07002981 } catch (XmlPullParserException | IOException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002982 Slog.w(TAG, "Unable to load input method " + compName, e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002983 }
2984 }
Brandon Ballinger6da35a02009-10-21 00:38:13 -07002985
Yohei Yukawa859df052016-02-17 07:56:46 -08002986 // TODO: The following code should find better place to live.
2987 if (!resetDefaultEnabledIme) {
2988 boolean enabledImeFound = false;
2989 final List<InputMethodInfo> enabledImes = mSettings.getEnabledInputMethodListLocked();
2990 final int N = enabledImes.size();
2991 for (int i = 0; i < N; ++i) {
2992 final InputMethodInfo imi = enabledImes.get(i);
2993 if (mMethodList.contains(imi)) {
2994 enabledImeFound = true;
2995 break;
2996 }
2997 }
2998 if (!enabledImeFound) {
2999 Slog.i(TAG, "All the enabled IMEs are gone. Reset default enabled IMEs.");
3000 resetDefaultEnabledIme = true;
3001 resetSelectedInputMethodAndSubtypeLocked("");
3002 }
3003 }
3004
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09003005 if (resetDefaultEnabledIme) {
3006 final ArrayList<InputMethodInfo> defaultEnabledIme =
Yohei Yukawa94e33302016-02-12 19:37:03 -08003007 InputMethodUtils.getDefaultEnabledImes(mContext, mSystemReady, mMethodList);
Yohei Yukawa68645a62016-02-17 07:54:20 -08003008 final int N = defaultEnabledIme.size();
3009 for (int i = 0; i < N; ++i) {
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09003010 final InputMethodInfo imi = defaultEnabledIme.get(i);
3011 if (DEBUG) {
3012 Slog.d(TAG, "--- enable ime = " + imi);
3013 }
3014 setInputMethodEnabledLocked(imi.getId(), true);
3015 }
3016 }
3017
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003018 final String defaultImiId = mSettings.getSelectedInputMethod();
satok0a1bcf42012-05-16 19:26:31 +09003019 if (!TextUtils.isEmpty(defaultImiId)) {
Yohei Yukawa94e33302016-02-12 19:37:03 -08003020 if (!mMethodMap.containsKey(defaultImiId)) {
satok0a1bcf42012-05-16 19:26:31 +09003021 Slog.w(TAG, "Default IME is uninstalled. Choose new default IME.");
3022 if (chooseNewDefaultIMELocked()) {
Michael Wright7b5a96b2014-08-09 19:28:42 -07003023 updateInputMethodsFromSettingsLocked(true);
satok0a1bcf42012-05-16 19:26:31 +09003024 }
3025 } else {
3026 // Double check that the default IME is certainly enabled.
3027 setInputMethodEnabledLocked(defaultImiId, true);
Brandon Ballinger6da35a02009-10-21 00:38:13 -07003028 }
3029 }
Yohei Yukawa3d46bab2014-05-30 18:10:18 +09003030 // Here is not the perfect place to reset the switching controller. Ideally
3031 // mSwitchingController and mSettings should be able to share the same state.
3032 // TODO: Make sure that mSwitchingController and mSettings are sharing the
3033 // the same enabled IMEs list.
Yohei Yukawac834a252014-05-21 22:42:32 +09003034 mSwitchingController.resetCircularListLocked(mContext);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003035 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003036
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003037 // ----------------------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003038
satok217f5482010-12-15 05:19:19 +09003039 private void showInputMethodAndSubtypeEnabler(String inputMethodId) {
Tadashi G. Takaokaf49688f2011-01-20 17:56:13 +09003040 Intent intent = new Intent(Settings.ACTION_INPUT_METHOD_SUBTYPE_SETTINGS);
satok47a44912010-10-06 16:03:58 +09003041 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
satok86417ea2010-10-27 14:11:03 +09003042 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED
3043 | Intent.FLAG_ACTIVITY_CLEAR_TOP);
satok7fee71f2010-12-17 18:54:26 +09003044 if (!TextUtils.isEmpty(inputMethodId)) {
Tadashi G. Takaoka25480202011-01-20 23:13:02 +09003045 intent.putExtra(Settings.EXTRA_INPUT_METHOD_ID, inputMethodId);
satok7fee71f2010-12-17 18:54:26 +09003046 }
Yohei Yukawa41f34272015-12-14 15:41:52 -08003047 final int userId;
3048 synchronized (mMethodMap) {
3049 userId = mSettings.getCurrentUserId();
3050 }
3051 mContext.startActivityAsUser(intent, null, UserHandle.of(userId));
satok217f5482010-12-15 05:19:19 +09003052 }
3053
3054 private void showConfigureInputMethods() {
3055 Intent intent = new Intent(Settings.ACTION_INPUT_METHOD_SETTINGS);
3056 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
3057 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED
3058 | Intent.FLAG_ACTIVITY_CLEAR_TOP);
Satoshi Kataoka3ba439d2012-10-05 18:30:13 +09003059 mContext.startActivityAsUser(intent, null, UserHandle.CURRENT);
satok47a44912010-10-06 16:03:58 +09003060 }
3061
satok2c93efc2012-04-02 19:33:47 +09003062 private boolean isScreenLocked() {
3063 return mKeyguardManager != null
3064 && mKeyguardManager.isKeyguardLocked() && mKeyguardManager.isKeyguardSecure();
3065 }
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003066
Seigo Nonaka14e13912015-05-06 21:04:13 -07003067 private void showInputMethodMenu(boolean showAuxSubtypes) {
3068 if (DEBUG) Slog.v(TAG, "Show switching menu. showAuxSubtypes=" + showAuxSubtypes);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003069
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003070 final Context context = mContext;
satok2c93efc2012-04-02 19:33:47 +09003071 final boolean isScreenLocked = isScreenLocked();
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003072
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003073 final String lastInputMethodId = mSettings.getSelectedInputMethod();
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003074 int lastInputMethodSubtypeId = mSettings.getSelectedInputMethodSubtypeId(lastInputMethodId);
Joe Onorato8a9b2202010-02-26 18:56:32 -08003075 if (DEBUG) Slog.v(TAG, "Current IME: " + lastInputMethodId);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003076
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07003077 synchronized (mMethodMap) {
satokbb4aa062011-01-19 21:40:27 +09003078 final HashMap<InputMethodInfo, List<InputMethodSubtype>> immis =
Satoshi Kataokad787f692013-10-26 04:44:21 +09003079 mSettings.getExplicitlyOrImplicitlyEnabledInputMethodsAndSubtypeListLocked(
3080 mContext);
satok7f35c8c2010-10-07 21:13:11 +09003081 if (immis == null || immis.size() == 0) {
3082 return;
3083 }
3084
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07003085 hideInputMethodMenuLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003086
satok688bd472012-02-09 20:09:17 +09003087 final List<ImeSubtypeListItem> imList =
Yohei Yukawa5a647b692014-05-22 12:49:00 +09003088 mSwitchingController.getSortedInputMethodAndSubtypeListLocked(
Yohei Yukawa5f8e7312015-12-10 00:58:55 -08003089 showAuxSubtypes, isScreenLocked);
satok913a8922010-08-26 21:53:41 +09003090
satokc3690562012-01-10 20:14:43 +09003091 if (lastInputMethodSubtypeId == NOT_A_SUBTYPE_ID) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003092 final InputMethodSubtype currentSubtype = getCurrentInputMethodSubtypeLocked();
satokc3690562012-01-10 20:14:43 +09003093 if (currentSubtype != null) {
3094 final InputMethodInfo currentImi = mMethodMap.get(mCurMethodId);
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003095 lastInputMethodSubtypeId = InputMethodUtils.getSubtypeIdFromHashCode(
3096 currentImi, currentSubtype.hashCode());
satokc3690562012-01-10 20:14:43 +09003097 }
3098 }
3099
Ken Wakasa761eb372011-03-04 19:06:18 +09003100 final int N = imList.size();
satokab751aa2010-09-14 19:17:36 +09003101 mIms = new InputMethodInfo[N];
3102 mSubtypeIds = new int[N];
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07003103 int checkedItem = 0;
3104 for (int i = 0; i < N; ++i) {
Ken Wakasa05dbb652011-08-22 15:22:43 +09003105 final ImeSubtypeListItem item = imList.get(i);
3106 mIms[i] = item.mImi;
3107 mSubtypeIds[i] = item.mSubtypeId;
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07003108 if (mIms[i].getId().equals(lastInputMethodId)) {
satokab751aa2010-09-14 19:17:36 +09003109 int subtypeId = mSubtypeIds[i];
3110 if ((subtypeId == NOT_A_SUBTYPE_ID)
3111 || (lastInputMethodSubtypeId == NOT_A_SUBTYPE_ID && subtypeId == 0)
3112 || (subtypeId == lastInputMethodSubtypeId)) {
3113 checkedItem = i;
3114 }
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07003115 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003116 }
Alan Viverette505e3ab2014-11-24 15:22:11 -08003117
3118 final Context settingsContext = new ContextThemeWrapper(context,
3119 com.android.internal.R.style.Theme_DeviceDefault_Settings);
3120
3121 mDialogBuilder = new AlertDialog.Builder(settingsContext);
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003122 mDialogBuilder.setOnCancelListener(new OnCancelListener() {
3123 @Override
3124 public void onCancel(DialogInterface dialog) {
3125 hideInputMethodMenu();
3126 }
3127 });
Alan Viverette505e3ab2014-11-24 15:22:11 -08003128
3129 final Context dialogContext = mDialogBuilder.getContext();
3130 final TypedArray a = dialogContext.obtainStyledAttributes(null,
3131 com.android.internal.R.styleable.DialogPreference,
3132 com.android.internal.R.attr.alertDialogStyle, 0);
3133 final Drawable dialogIcon = a.getDrawable(
3134 com.android.internal.R.styleable.DialogPreference_dialogIcon);
3135 a.recycle();
3136
3137 mDialogBuilder.setIcon(dialogIcon);
3138
Yohei Yukawad34e1482016-02-11 08:03:52 -08003139 final LayoutInflater inflater = dialogContext.getSystemService(LayoutInflater.class);
satok01038492012-04-09 21:08:27 +09003140 final View tv = inflater.inflate(
3141 com.android.internal.R.layout.input_method_switch_dialog_title, null);
3142 mDialogBuilder.setCustomTitle(tv);
3143
3144 // Setup layout for a toggle switch of the hardware keyboard
3145 mSwitchingDialogTitleView = tv;
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003146 mSwitchingDialogTitleView
3147 .findViewById(com.android.internal.R.id.hard_keyboard_section)
Seigo Nonaka7309b122015-08-17 18:34:13 -07003148 .setVisibility(mWindowManagerInternal.isHardKeyboardAvailable()
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003149 ? View.VISIBLE : View.GONE);
Alan Viverette505e3ab2014-11-24 15:22:11 -08003150 final Switch hardKeySwitch = (Switch) mSwitchingDialogTitleView.findViewById(
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003151 com.android.internal.R.id.hard_keyboard_switch);
Michael Wright7b5a96b2014-08-09 19:28:42 -07003152 hardKeySwitch.setChecked(mShowImeWithHardKeyboard);
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003153 hardKeySwitch.setOnCheckedChangeListener(new OnCheckedChangeListener() {
3154 @Override
3155 public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
Michael Wright7b5a96b2014-08-09 19:28:42 -07003156 mSettings.setShowImeWithHardKeyboard(isChecked);
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003157 // Ensure that the input method dialog is dismissed when changing
3158 // the hardware keyboard state.
3159 hideInputMethodMenu();
3160 }
3161 });
3162
Alan Viverette505e3ab2014-11-24 15:22:11 -08003163 final ImeSubtypeListAdapter adapter = new ImeSubtypeListAdapter(dialogContext,
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003164 com.android.internal.R.layout.input_method_switch_item, imList, checkedItem);
3165 final OnClickListener choiceListener = new OnClickListener() {
3166 @Override
3167 public void onClick(final DialogInterface dialog, final int which) {
3168 synchronized (mMethodMap) {
3169 if (mIms == null || mIms.length <= which || mSubtypeIds == null
3170 || mSubtypeIds.length <= which) {
3171 return;
satok01038492012-04-09 21:08:27 +09003172 }
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003173 final InputMethodInfo im = mIms[which];
3174 int subtypeId = mSubtypeIds[which];
3175 adapter.mCheckedItem = which;
3176 adapter.notifyDataSetChanged();
3177 hideInputMethodMenu();
3178 if (im != null) {
3179 if (subtypeId < 0 || subtypeId >= im.getSubtypeCount()) {
3180 subtypeId = NOT_A_SUBTYPE_ID;
Dianne Hackborn20cb56e2010-03-04 00:58:29 -08003181 }
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003182 setInputMethodLocked(im.getId(), subtypeId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003183 }
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003184 }
3185 }
3186 };
3187 mDialogBuilder.setSingleChoiceItems(adapter, checkedItem, choiceListener);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003188
Seigo Nonakad4474cb2015-05-04 16:53:24 -07003189 if (!isScreenLocked) {
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003190 final OnClickListener positiveListener = new OnClickListener() {
3191 @Override
3192 public void onClick(DialogInterface dialog, int whichButton) {
3193 showConfigureInputMethods();
3194 }
3195 };
satok82beadf2010-12-27 19:03:06 +09003196 mDialogBuilder.setPositiveButton(
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003197 com.android.internal.R.string.configure_input_methods, positiveListener);
satok7f35c8c2010-10-07 21:13:11 +09003198 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003199 mSwitchingDialog = mDialogBuilder.create();
Dianne Hackborne3a7f622011-03-03 21:48:24 -08003200 mSwitchingDialog.setCanceledOnTouchOutside(true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003201 mSwitchingDialog.getWindow().setType(
3202 WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG);
Satoshi Kataokac86884c2012-10-09 15:20:29 +09003203 mSwitchingDialog.getWindow().getAttributes().privateFlags |=
3204 WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS;
Dianne Hackborne3a7f622011-03-03 21:48:24 -08003205 mSwitchingDialog.getWindow().getAttributes().setTitle("Select input method");
Seigo Nonakad9eb9112015-05-26 20:54:43 +09003206 updateSystemUi(mCurToken, mImeWindowVis, mBackDisposition);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003207 mSwitchingDialog.show();
3208 }
3209 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003210
Ken Wakasa05dbb652011-08-22 15:22:43 +09003211 private static class ImeSubtypeListAdapter extends ArrayAdapter<ImeSubtypeListItem> {
3212 private final LayoutInflater mInflater;
3213 private final int mTextViewResourceId;
3214 private final List<ImeSubtypeListItem> mItemsList;
Satoshi Kataokad2142962012-11-12 18:43:06 +09003215 public int mCheckedItem;
Ken Wakasa05dbb652011-08-22 15:22:43 +09003216 public ImeSubtypeListAdapter(Context context, int textViewResourceId,
3217 List<ImeSubtypeListItem> itemsList, int checkedItem) {
3218 super(context, textViewResourceId, itemsList);
Alan Viverette505e3ab2014-11-24 15:22:11 -08003219
Ken Wakasa05dbb652011-08-22 15:22:43 +09003220 mTextViewResourceId = textViewResourceId;
3221 mItemsList = itemsList;
3222 mCheckedItem = checkedItem;
Yohei Yukawad34e1482016-02-11 08:03:52 -08003223 mInflater = context.getSystemService(LayoutInflater.class);
Ken Wakasa05dbb652011-08-22 15:22:43 +09003224 }
3225
3226 @Override
3227 public View getView(int position, View convertView, ViewGroup parent) {
3228 final View view = convertView != null ? convertView
3229 : mInflater.inflate(mTextViewResourceId, null);
3230 if (position < 0 || position >= mItemsList.size()) return view;
3231 final ImeSubtypeListItem item = mItemsList.get(position);
3232 final CharSequence imeName = item.mImeName;
3233 final CharSequence subtypeName = item.mSubtypeName;
3234 final TextView firstTextView = (TextView)view.findViewById(android.R.id.text1);
3235 final TextView secondTextView = (TextView)view.findViewById(android.R.id.text2);
3236 if (TextUtils.isEmpty(subtypeName)) {
3237 firstTextView.setText(imeName);
3238 secondTextView.setVisibility(View.GONE);
3239 } else {
3240 firstTextView.setText(subtypeName);
3241 secondTextView.setText(imeName);
3242 secondTextView.setVisibility(View.VISIBLE);
3243 }
3244 final RadioButton radioButton =
3245 (RadioButton)view.findViewById(com.android.internal.R.id.radio);
3246 radioButton.setChecked(position == mCheckedItem);
3247 return view;
3248 }
3249 }
3250
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003251 void hideInputMethodMenu() {
The Android Open Source Project10592532009-03-18 17:39:46 -07003252 synchronized (mMethodMap) {
3253 hideInputMethodMenuLocked();
3254 }
3255 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003256
The Android Open Source Project10592532009-03-18 17:39:46 -07003257 void hideInputMethodMenuLocked() {
Joe Onorato8a9b2202010-02-26 18:56:32 -08003258 if (DEBUG) Slog.v(TAG, "Hide switching menu");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003259
The Android Open Source Project10592532009-03-18 17:39:46 -07003260 if (mSwitchingDialog != null) {
3261 mSwitchingDialog.dismiss();
3262 mSwitchingDialog = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003263 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003264
Seigo Nonakad9eb9112015-05-26 20:54:43 +09003265 updateSystemUiLocked(mCurToken, mImeWindowVis, mBackDisposition);
The Android Open Source Project10592532009-03-18 17:39:46 -07003266 mDialogBuilder = null;
The Android Open Source Project10592532009-03-18 17:39:46 -07003267 mIms = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003268 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003269
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003270 // ----------------------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003271
satok42c5a162011-05-26 16:46:14 +09003272 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003273 public boolean setInputMethodEnabled(String id, boolean enabled) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003274 // TODO: Make this work even for non-current users?
3275 if (!calledFromValidUser()) {
3276 return false;
3277 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003278 synchronized (mMethodMap) {
3279 if (mContext.checkCallingOrSelfPermission(
3280 android.Manifest.permission.WRITE_SECURE_SETTINGS)
3281 != PackageManager.PERMISSION_GRANTED) {
3282 throw new SecurityException(
3283 "Requires permission "
3284 + android.Manifest.permission.WRITE_SECURE_SETTINGS);
3285 }
Anna Galusza9b278112016-01-04 11:37:37 -08003286
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003287 long ident = Binder.clearCallingIdentity();
3288 try {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003289 return setInputMethodEnabledLocked(id, enabled);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003290 } finally {
3291 Binder.restoreCallingIdentity(ident);
3292 }
3293 }
3294 }
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003295
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003296 boolean setInputMethodEnabledLocked(String id, boolean enabled) {
3297 // Make sure this is a valid input method.
3298 InputMethodInfo imm = mMethodMap.get(id);
3299 if (imm == null) {
satokd87c2592010-09-29 11:52:06 +09003300 throw new IllegalArgumentException("Unknown id: " + mCurMethodId);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003301 }
3302
satokd87c2592010-09-29 11:52:06 +09003303 List<Pair<String, ArrayList<String>>> enabledInputMethodsList = mSettings
3304 .getEnabledInputMethodsAndSubtypeListLocked();
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003305
satokd87c2592010-09-29 11:52:06 +09003306 if (enabled) {
3307 for (Pair<String, ArrayList<String>> pair: enabledInputMethodsList) {
3308 if (pair.first.equals(id)) {
3309 // We are enabling this input method, but it is already enabled.
3310 // Nothing to do. The previous state was enabled.
3311 return true;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003312 }
3313 }
satokd87c2592010-09-29 11:52:06 +09003314 mSettings.appendAndPutEnabledInputMethodLocked(id, false);
3315 // Previous state was disabled.
3316 return false;
3317 } else {
3318 StringBuilder builder = new StringBuilder();
3319 if (mSettings.buildAndPutEnabledInputMethodsStrRemovingIdLocked(
3320 builder, enabledInputMethodsList, id)) {
3321 // Disabled input method is currently selected, switch to another one.
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003322 final String selId = mSettings.getSelectedInputMethod();
satok03eb319a2010-11-11 18:17:42 +09003323 if (id.equals(selId) && !chooseNewDefaultIMELocked()) {
3324 Slog.i(TAG, "Can't find new IME, unsetting the current input method.");
3325 resetSelectedInputMethodAndSubtypeLocked("");
satokd87c2592010-09-29 11:52:06 +09003326 }
3327 // Previous state was enabled.
3328 return true;
3329 } else {
3330 // We are disabling the input method but it is already disabled.
3331 // Nothing to do. The previous state was disabled.
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003332 return false;
3333 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003334 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003335 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08003336
satok723a27e2010-11-11 14:58:11 +09003337 private void setSelectedInputMethodAndSubtypeLocked(InputMethodInfo imi, int subtypeId,
3338 boolean setSubtypeOnly) {
3339 // Update the history of InputMethod and Subtype
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003340 mSettings.saveCurrentInputMethodAndSubtypeToHistory(mCurMethodId, mCurrentSubtype);
satok723a27e2010-11-11 14:58:11 +09003341
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09003342 mCurUserActionNotificationSequenceNumber =
3343 Math.max(mCurUserActionNotificationSequenceNumber + 1, 1);
3344 if (DEBUG) {
3345 Slog.d(TAG, "Bump mCurUserActionNotificationSequenceNumber:"
3346 + mCurUserActionNotificationSequenceNumber);
3347 }
3348
3349 if (mCurClient != null && mCurClient.client != null) {
3350 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
3351 MSG_SET_USER_ACTION_NOTIFICATION_SEQUENCE_NUMBER,
Yohei Yukawa080fa342014-08-31 16:10:05 -07003352 mCurUserActionNotificationSequenceNumber, mCurClient));
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09003353 }
3354
satok723a27e2010-11-11 14:58:11 +09003355 // Set Subtype here
3356 if (imi == null || subtypeId < 0) {
3357 mSettings.putSelectedSubtype(NOT_A_SUBTYPE_ID);
Tadashi G. Takaoka0ba75bb2010-11-09 12:19:32 -08003358 mCurrentSubtype = null;
satok723a27e2010-11-11 14:58:11 +09003359 } else {
Ken Wakasa586f0512011-01-20 22:31:01 +09003360 if (subtypeId < imi.getSubtypeCount()) {
3361 InputMethodSubtype subtype = imi.getSubtypeAt(subtypeId);
3362 mSettings.putSelectedSubtype(subtype.hashCode());
3363 mCurrentSubtype = subtype;
satok723a27e2010-11-11 14:58:11 +09003364 } else {
3365 mSettings.putSelectedSubtype(NOT_A_SUBTYPE_ID);
satokd81e9502012-05-21 12:58:45 +09003366 // If the subtype is not specified, choose the most applicable one
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003367 mCurrentSubtype = getCurrentInputMethodSubtypeLocked();
satok723a27e2010-11-11 14:58:11 +09003368 }
satokab751aa2010-09-14 19:17:36 +09003369 }
satok723a27e2010-11-11 14:58:11 +09003370
Yohei Yukawa68645a62016-02-17 07:54:20 -08003371 if (!setSubtypeOnly) {
satok723a27e2010-11-11 14:58:11 +09003372 // Set InputMethod here
3373 mSettings.putSelectedInputMethod(imi != null ? imi.getId() : "");
3374 }
3375 }
3376
3377 private void resetSelectedInputMethodAndSubtypeLocked(String newDefaultIme) {
3378 InputMethodInfo imi = mMethodMap.get(newDefaultIme);
3379 int lastSubtypeId = NOT_A_SUBTYPE_ID;
3380 // newDefaultIme is empty when there is no candidate for the selected IME.
3381 if (imi != null && !TextUtils.isEmpty(newDefaultIme)) {
3382 String subtypeHashCode = mSettings.getLastSubtypeForInputMethodLocked(newDefaultIme);
3383 if (subtypeHashCode != null) {
3384 try {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003385 lastSubtypeId = InputMethodUtils.getSubtypeIdFromHashCode(
satok723a27e2010-11-11 14:58:11 +09003386 imi, Integer.valueOf(subtypeHashCode));
3387 } catch (NumberFormatException e) {
3388 Slog.w(TAG, "HashCode for subtype looks broken: " + subtypeHashCode, e);
3389 }
3390 }
3391 }
3392 setSelectedInputMethodAndSubtypeLocked(imi, lastSubtypeId, false);
satokab751aa2010-09-14 19:17:36 +09003393 }
3394
satok4e4569d2010-11-19 18:45:53 +09003395 // If there are no selected shortcuts, tries finding the most applicable ones.
3396 private Pair<InputMethodInfo, InputMethodSubtype>
3397 findLastResortApplicableShortcutInputMethodAndSubtypeLocked(String mode) {
3398 List<InputMethodInfo> imis = mSettings.getEnabledInputMethodListLocked();
3399 InputMethodInfo mostApplicableIMI = null;
satokcd7cd292010-11-20 15:46:23 +09003400 InputMethodSubtype mostApplicableSubtype = null;
satok4e4569d2010-11-19 18:45:53 +09003401 boolean foundInSystemIME = false;
3402
3403 // Search applicable subtype for each InputMethodInfo
3404 for (InputMethodInfo imi: imis) {
satok7599a7f2010-12-22 13:45:23 +09003405 final String imiId = imi.getId();
3406 if (foundInSystemIME && !imiId.equals(mCurMethodId)) {
3407 continue;
3408 }
satokcd7cd292010-11-20 15:46:23 +09003409 InputMethodSubtype subtype = null;
satokdf31ae62011-01-15 06:19:44 +09003410 final List<InputMethodSubtype> enabledSubtypes =
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003411 mSettings.getEnabledInputMethodSubtypeListLocked(mContext, imi, true);
satokdf31ae62011-01-15 06:19:44 +09003412 // 1. Search by the current subtype's locale from enabledSubtypes.
satok4e4569d2010-11-19 18:45:53 +09003413 if (mCurrentSubtype != null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003414 subtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
satokdf31ae62011-01-15 06:19:44 +09003415 mRes, enabledSubtypes, mode, mCurrentSubtype.getLocale(), false);
satok4e4569d2010-11-19 18:45:53 +09003416 }
satokdf31ae62011-01-15 06:19:44 +09003417 // 2. Search by the system locale from enabledSubtypes.
3418 // 3. Search the first enabled subtype matched with mode from enabledSubtypes.
satokcd7cd292010-11-20 15:46:23 +09003419 if (subtype == null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003420 subtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
satokdf31ae62011-01-15 06:19:44 +09003421 mRes, enabledSubtypes, mode, null, true);
satok4e4569d2010-11-19 18:45:53 +09003422 }
satoka86f5e42011-09-02 17:12:42 +09003423 final ArrayList<InputMethodSubtype> overridingImplicitlyEnabledSubtypes =
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003424 InputMethodUtils.getOverridingImplicitlyEnabledSubtypes(imi, mode);
satoka86f5e42011-09-02 17:12:42 +09003425 final ArrayList<InputMethodSubtype> subtypesForSearch =
3426 overridingImplicitlyEnabledSubtypes.isEmpty()
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003427 ? InputMethodUtils.getSubtypes(imi)
3428 : overridingImplicitlyEnabledSubtypes;
satok7599a7f2010-12-22 13:45:23 +09003429 // 4. Search by the current subtype's locale from all subtypes.
3430 if (subtype == null && mCurrentSubtype != null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003431 subtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
satoka86f5e42011-09-02 17:12:42 +09003432 mRes, subtypesForSearch, mode, mCurrentSubtype.getLocale(), false);
satok7599a7f2010-12-22 13:45:23 +09003433 }
3434 // 5. Search by the system locale from all subtypes.
3435 // 6. Search the first enabled subtype matched with mode from all subtypes.
satokcd7cd292010-11-20 15:46:23 +09003436 if (subtype == null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003437 subtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
satoka86f5e42011-09-02 17:12:42 +09003438 mRes, subtypesForSearch, mode, null, true);
satok4e4569d2010-11-19 18:45:53 +09003439 }
satokcd7cd292010-11-20 15:46:23 +09003440 if (subtype != null) {
satok7599a7f2010-12-22 13:45:23 +09003441 if (imiId.equals(mCurMethodId)) {
satok4e4569d2010-11-19 18:45:53 +09003442 // The current input method is the most applicable IME.
3443 mostApplicableIMI = imi;
satokcd7cd292010-11-20 15:46:23 +09003444 mostApplicableSubtype = subtype;
satok4e4569d2010-11-19 18:45:53 +09003445 break;
satok7599a7f2010-12-22 13:45:23 +09003446 } else if (!foundInSystemIME) {
satok4e4569d2010-11-19 18:45:53 +09003447 // The system input method is 2nd applicable IME.
3448 mostApplicableIMI = imi;
satokcd7cd292010-11-20 15:46:23 +09003449 mostApplicableSubtype = subtype;
satok7599a7f2010-12-22 13:45:23 +09003450 if ((imi.getServiceInfo().applicationInfo.flags
3451 & ApplicationInfo.FLAG_SYSTEM) != 0) {
3452 foundInSystemIME = true;
3453 }
satok4e4569d2010-11-19 18:45:53 +09003454 }
3455 }
3456 }
3457 if (DEBUG) {
satokcd7cd292010-11-20 15:46:23 +09003458 if (mostApplicableIMI != null) {
3459 Slog.w(TAG, "Most applicable shortcut input method was:"
3460 + mostApplicableIMI.getId());
3461 if (mostApplicableSubtype != null) {
3462 Slog.w(TAG, "Most applicable shortcut input method subtype was:"
3463 + "," + mostApplicableSubtype.getMode() + ","
3464 + mostApplicableSubtype.getLocale());
3465 }
3466 }
satok4e4569d2010-11-19 18:45:53 +09003467 }
satokcd7cd292010-11-20 15:46:23 +09003468 if (mostApplicableIMI != null) {
Yohei Yukawab0377bb2015-08-10 21:06:30 -07003469 return new Pair<> (mostApplicableIMI, mostApplicableSubtype);
satok4e4569d2010-11-19 18:45:53 +09003470 } else {
3471 return null;
3472 }
3473 }
3474
satokab751aa2010-09-14 19:17:36 +09003475 /**
3476 * @return Return the current subtype of this input method.
3477 */
satok42c5a162011-05-26 16:46:14 +09003478 @Override
satokab751aa2010-09-14 19:17:36 +09003479 public InputMethodSubtype getCurrentInputMethodSubtype() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003480 // TODO: Make this work even for non-current users?
3481 if (!calledFromValidUser()) {
3482 return null;
3483 }
3484 synchronized (mMethodMap) {
3485 return getCurrentInputMethodSubtypeLocked();
3486 }
3487 }
3488
3489 private InputMethodSubtype getCurrentInputMethodSubtypeLocked() {
satokfdf419e2012-05-08 16:52:08 +09003490 if (mCurMethodId == null) {
3491 return null;
3492 }
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003493 final boolean subtypeIsSelected = mSettings.isSubtypeSelected();
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003494 final InputMethodInfo imi = mMethodMap.get(mCurMethodId);
3495 if (imi == null || imi.getSubtypeCount() == 0) {
3496 return null;
satok4e4569d2010-11-19 18:45:53 +09003497 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003498 if (!subtypeIsSelected || mCurrentSubtype == null
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003499 || !InputMethodUtils.isValidSubtypeId(imi, mCurrentSubtype.hashCode())) {
3500 int subtypeId = mSettings.getSelectedInputMethodSubtypeId(mCurMethodId);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003501 if (subtypeId == NOT_A_SUBTYPE_ID) {
3502 // If there are no selected subtypes, the framework will try to find
3503 // the most applicable subtype from explicitly or implicitly enabled
3504 // subtypes.
3505 List<InputMethodSubtype> explicitlyOrImplicitlyEnabledSubtypes =
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003506 mSettings.getEnabledInputMethodSubtypeListLocked(mContext, imi, true);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003507 // If there is only one explicitly or implicitly enabled subtype,
3508 // just returns it.
3509 if (explicitlyOrImplicitlyEnabledSubtypes.size() == 1) {
3510 mCurrentSubtype = explicitlyOrImplicitlyEnabledSubtypes.get(0);
3511 } else if (explicitlyOrImplicitlyEnabledSubtypes.size() > 1) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003512 mCurrentSubtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003513 mRes, explicitlyOrImplicitlyEnabledSubtypes,
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003514 InputMethodUtils.SUBTYPE_MODE_KEYBOARD, null, true);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003515 if (mCurrentSubtype == null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003516 mCurrentSubtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003517 mRes, explicitlyOrImplicitlyEnabledSubtypes, null, null,
3518 true);
satok4e4569d2010-11-19 18:45:53 +09003519 }
satok3ef8b292010-11-23 06:06:29 +09003520 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003521 } else {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003522 mCurrentSubtype = InputMethodUtils.getSubtypes(imi).get(subtypeId);
satok8fbb1e82010-11-02 23:15:58 +09003523 }
3524 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003525 return mCurrentSubtype;
satokab751aa2010-09-14 19:17:36 +09003526 }
3527
satok4e4569d2010-11-19 18:45:53 +09003528 // TODO: We should change the return type from List to List<Parcelable>
satokdbf29502011-08-25 15:28:23 +09003529 @SuppressWarnings("rawtypes")
satoke7c6998e2011-06-03 17:57:59 +09003530 @Override
satok4e4569d2010-11-19 18:45:53 +09003531 public List getShortcutInputMethodsAndSubtypes() {
3532 synchronized (mMethodMap) {
Yohei Yukawab0377bb2015-08-10 21:06:30 -07003533 ArrayList<Object> ret = new ArrayList<>();
satokf3db1af2010-11-23 13:34:33 +09003534 if (mShortcutInputMethodsAndSubtypes.size() == 0) {
satok4e4569d2010-11-19 18:45:53 +09003535 // If there are no selected shortcut subtypes, the framework will try to find
3536 // the most applicable subtype from all subtypes whose mode is
3537 // SUBTYPE_MODE_VOICE. This is an exceptional case, so we will hardcode the mode.
satokf3db1af2010-11-23 13:34:33 +09003538 Pair<InputMethodInfo, InputMethodSubtype> info =
3539 findLastResortApplicableShortcutInputMethodAndSubtypeLocked(
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003540 InputMethodUtils.SUBTYPE_MODE_VOICE);
satok7599a7f2010-12-22 13:45:23 +09003541 if (info != null) {
satok3da92232011-01-11 22:46:30 +09003542 ret.add(info.first);
3543 ret.add(info.second);
satok7599a7f2010-12-22 13:45:23 +09003544 }
satok3da92232011-01-11 22:46:30 +09003545 return ret;
satokf3db1af2010-11-23 13:34:33 +09003546 }
satokf3db1af2010-11-23 13:34:33 +09003547 for (InputMethodInfo imi: mShortcutInputMethodsAndSubtypes.keySet()) {
3548 ret.add(imi);
3549 for (InputMethodSubtype subtype: mShortcutInputMethodsAndSubtypes.get(imi)) {
3550 ret.add(subtype);
satok4e4569d2010-11-19 18:45:53 +09003551 }
3552 }
satokf3db1af2010-11-23 13:34:33 +09003553 return ret;
satok4e4569d2010-11-19 18:45:53 +09003554 }
3555 }
3556
satok42c5a162011-05-26 16:46:14 +09003557 @Override
satokb66d2872010-11-10 01:04:04 +09003558 public boolean setCurrentInputMethodSubtype(InputMethodSubtype subtype) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003559 // TODO: Make this work even for non-current users?
3560 if (!calledFromValidUser()) {
3561 return false;
3562 }
satokb66d2872010-11-10 01:04:04 +09003563 synchronized (mMethodMap) {
3564 if (subtype != null && mCurMethodId != null) {
3565 InputMethodInfo imi = mMethodMap.get(mCurMethodId);
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003566 int subtypeId = InputMethodUtils.getSubtypeIdFromHashCode(imi, subtype.hashCode());
satokb66d2872010-11-10 01:04:04 +09003567 if (subtypeId != NOT_A_SUBTYPE_ID) {
3568 setInputMethodLocked(mCurMethodId, subtypeId);
3569 return true;
3570 }
3571 }
3572 return false;
3573 }
3574 }
3575
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +09003576 // TODO: Cache the state for each user and reset when the cached user is removed.
satoke7c6998e2011-06-03 17:57:59 +09003577 private static class InputMethodFileManager {
3578 private static final String SYSTEM_PATH = "system";
3579 private static final String INPUT_METHOD_PATH = "inputmethod";
3580 private static final String ADDITIONAL_SUBTYPES_FILE_NAME = "subtypes.xml";
3581 private static final String NODE_SUBTYPES = "subtypes";
3582 private static final String NODE_SUBTYPE = "subtype";
3583 private static final String NODE_IMI = "imi";
3584 private static final String ATTR_ID = "id";
3585 private static final String ATTR_LABEL = "label";
3586 private static final String ATTR_ICON = "icon";
3587 private static final String ATTR_IME_SUBTYPE_LOCALE = "imeSubtypeLocale";
Yohei Yukawa868d19b2015-12-07 15:58:57 -08003588 private static final String ATTR_IME_SUBTYPE_LANGUAGE_TAG = "languageTag";
satoke7c6998e2011-06-03 17:57:59 +09003589 private static final String ATTR_IME_SUBTYPE_MODE = "imeSubtypeMode";
3590 private static final String ATTR_IME_SUBTYPE_EXTRA_VALUE = "imeSubtypeExtraValue";
3591 private static final String ATTR_IS_AUXILIARY = "isAuxiliary";
Yohei Yukawa1e1a4472016-03-10 23:46:07 -08003592 private static final String ATTR_IS_ASCII_CAPABLE = "isAsciiCapable";
satoke7c6998e2011-06-03 17:57:59 +09003593 private final AtomicFile mAdditionalInputMethodSubtypeFile;
3594 private final HashMap<String, InputMethodInfo> mMethodMap;
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003595 private final HashMap<String, List<InputMethodSubtype>> mAdditionalSubtypesMap =
Yohei Yukawab0377bb2015-08-10 21:06:30 -07003596 new HashMap<>();
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +09003597 public InputMethodFileManager(HashMap<String, InputMethodInfo> methodMap, int userId) {
satoke7c6998e2011-06-03 17:57:59 +09003598 if (methodMap == null) {
3599 throw new NullPointerException("methodMap is null");
3600 }
3601 mMethodMap = methodMap;
Xiaohui Chen7c696362015-09-16 09:56:14 -07003602 final File systemDir = userId == UserHandle.USER_SYSTEM
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +09003603 ? new File(Environment.getDataDirectory(), SYSTEM_PATH)
3604 : Environment.getUserSystemDirectory(userId);
satoke7c6998e2011-06-03 17:57:59 +09003605 final File inputMethodDir = new File(systemDir, INPUT_METHOD_PATH);
Yohei Yukawadf5af482015-08-04 22:11:11 -07003606 if (!inputMethodDir.exists() && !inputMethodDir.mkdirs()) {
satoke7c6998e2011-06-03 17:57:59 +09003607 Slog.w(TAG, "Couldn't create dir.: " + inputMethodDir.getAbsolutePath());
3608 }
3609 final File subtypeFile = new File(inputMethodDir, ADDITIONAL_SUBTYPES_FILE_NAME);
3610 mAdditionalInputMethodSubtypeFile = new AtomicFile(subtypeFile);
3611 if (!subtypeFile.exists()) {
3612 // If "subtypes.xml" doesn't exist, create a blank file.
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003613 writeAdditionalInputMethodSubtypes(
3614 mAdditionalSubtypesMap, mAdditionalInputMethodSubtypeFile, methodMap);
satoke7c6998e2011-06-03 17:57:59 +09003615 } else {
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003616 readAdditionalInputMethodSubtypes(
3617 mAdditionalSubtypesMap, mAdditionalInputMethodSubtypeFile);
satoke7c6998e2011-06-03 17:57:59 +09003618 }
3619 }
3620
3621 private void deleteAllInputMethodSubtypes(String imiId) {
3622 synchronized (mMethodMap) {
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003623 mAdditionalSubtypesMap.remove(imiId);
3624 writeAdditionalInputMethodSubtypes(
3625 mAdditionalSubtypesMap, mAdditionalInputMethodSubtypeFile, mMethodMap);
satoke7c6998e2011-06-03 17:57:59 +09003626 }
3627 }
3628
3629 public void addInputMethodSubtypes(
satok4a28bde2011-06-29 21:03:40 +09003630 InputMethodInfo imi, InputMethodSubtype[] additionalSubtypes) {
satoke7c6998e2011-06-03 17:57:59 +09003631 synchronized (mMethodMap) {
Yohei Yukawab0377bb2015-08-10 21:06:30 -07003632 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>();
satoke7c6998e2011-06-03 17:57:59 +09003633 final int N = additionalSubtypes.length;
3634 for (int i = 0; i < N; ++i) {
3635 final InputMethodSubtype subtype = additionalSubtypes[i];
satoked2b24e2011-08-31 18:03:21 +09003636 if (!subtypes.contains(subtype)) {
satoke7c6998e2011-06-03 17:57:59 +09003637 subtypes.add(subtype);
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003638 } else {
3639 Slog.w(TAG, "Duplicated subtype definition found: "
3640 + subtype.getLocale() + ", " + subtype.getMode());
satoke7c6998e2011-06-03 17:57:59 +09003641 }
3642 }
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003643 mAdditionalSubtypesMap.put(imi.getId(), subtypes);
3644 writeAdditionalInputMethodSubtypes(
3645 mAdditionalSubtypesMap, mAdditionalInputMethodSubtypeFile, mMethodMap);
satoke7c6998e2011-06-03 17:57:59 +09003646 }
3647 }
3648
3649 public HashMap<String, List<InputMethodSubtype>> getAllAdditionalInputMethodSubtypes() {
3650 synchronized (mMethodMap) {
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003651 return mAdditionalSubtypesMap;
satoke7c6998e2011-06-03 17:57:59 +09003652 }
3653 }
3654
3655 private static void writeAdditionalInputMethodSubtypes(
3656 HashMap<String, List<InputMethodSubtype>> allSubtypes, AtomicFile subtypesFile,
3657 HashMap<String, InputMethodInfo> methodMap) {
3658 // Safety net for the case that this function is called before methodMap is set.
3659 final boolean isSetMethodMap = methodMap != null && methodMap.size() > 0;
3660 FileOutputStream fos = null;
3661 try {
3662 fos = subtypesFile.startWrite();
3663 final XmlSerializer out = new FastXmlSerializer();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01003664 out.setOutput(fos, StandardCharsets.UTF_8.name());
satoke7c6998e2011-06-03 17:57:59 +09003665 out.startDocument(null, true);
3666 out.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
3667 out.startTag(null, NODE_SUBTYPES);
3668 for (String imiId : allSubtypes.keySet()) {
3669 if (isSetMethodMap && !methodMap.containsKey(imiId)) {
3670 Slog.w(TAG, "IME uninstalled or not valid.: " + imiId);
3671 continue;
3672 }
3673 out.startTag(null, NODE_IMI);
3674 out.attribute(null, ATTR_ID, imiId);
3675 final List<InputMethodSubtype> subtypesList = allSubtypes.get(imiId);
3676 final int N = subtypesList.size();
3677 for (int i = 0; i < N; ++i) {
3678 final InputMethodSubtype subtype = subtypesList.get(i);
3679 out.startTag(null, NODE_SUBTYPE);
3680 out.attribute(null, ATTR_ICON, String.valueOf(subtype.getIconResId()));
3681 out.attribute(null, ATTR_LABEL, String.valueOf(subtype.getNameResId()));
3682 out.attribute(null, ATTR_IME_SUBTYPE_LOCALE, subtype.getLocale());
Yohei Yukawa868d19b2015-12-07 15:58:57 -08003683 out.attribute(null, ATTR_IME_SUBTYPE_LANGUAGE_TAG,
3684 subtype.getLanguageTag());
satoke7c6998e2011-06-03 17:57:59 +09003685 out.attribute(null, ATTR_IME_SUBTYPE_MODE, subtype.getMode());
3686 out.attribute(null, ATTR_IME_SUBTYPE_EXTRA_VALUE, subtype.getExtraValue());
3687 out.attribute(null, ATTR_IS_AUXILIARY,
3688 String.valueOf(subtype.isAuxiliary() ? 1 : 0));
Yohei Yukawa1e1a4472016-03-10 23:46:07 -08003689 out.attribute(null, ATTR_IS_ASCII_CAPABLE,
3690 String.valueOf(subtype.isAsciiCapable() ? 1 : 0));
satoke7c6998e2011-06-03 17:57:59 +09003691 out.endTag(null, NODE_SUBTYPE);
3692 }
3693 out.endTag(null, NODE_IMI);
3694 }
3695 out.endTag(null, NODE_SUBTYPES);
3696 out.endDocument();
3697 subtypesFile.finishWrite(fos);
3698 } catch (java.io.IOException e) {
3699 Slog.w(TAG, "Error writing subtypes", e);
3700 if (fos != null) {
3701 subtypesFile.failWrite(fos);
3702 }
3703 }
3704 }
3705
3706 private static void readAdditionalInputMethodSubtypes(
3707 HashMap<String, List<InputMethodSubtype>> allSubtypes, AtomicFile subtypesFile) {
3708 if (allSubtypes == null || subtypesFile == null) return;
3709 allSubtypes.clear();
Yohei Yukawa5894b432015-08-11 13:29:24 -07003710 try (final FileInputStream fis = subtypesFile.openRead()) {
satoke7c6998e2011-06-03 17:57:59 +09003711 final XmlPullParser parser = Xml.newPullParser();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01003712 parser.setInput(fis, StandardCharsets.UTF_8.name());
satoke7c6998e2011-06-03 17:57:59 +09003713 int type = parser.getEventType();
3714 // Skip parsing until START_TAG
3715 while ((type = parser.next()) != XmlPullParser.START_TAG
3716 && type != XmlPullParser.END_DOCUMENT) {}
3717 String firstNodeName = parser.getName();
3718 if (!NODE_SUBTYPES.equals(firstNodeName)) {
3719 throw new XmlPullParserException("Xml doesn't start with subtypes");
3720 }
3721 final int depth =parser.getDepth();
3722 String currentImiId = null;
3723 ArrayList<InputMethodSubtype> tempSubtypesArray = null;
3724 while (((type = parser.next()) != XmlPullParser.END_TAG
3725 || parser.getDepth() > depth) && type != XmlPullParser.END_DOCUMENT) {
3726 if (type != XmlPullParser.START_TAG)
3727 continue;
3728 final String nodeName = parser.getName();
3729 if (NODE_IMI.equals(nodeName)) {
3730 currentImiId = parser.getAttributeValue(null, ATTR_ID);
3731 if (TextUtils.isEmpty(currentImiId)) {
3732 Slog.w(TAG, "Invalid imi id found in subtypes.xml");
3733 continue;
3734 }
Yohei Yukawab0377bb2015-08-10 21:06:30 -07003735 tempSubtypesArray = new ArrayList<>();
satoke7c6998e2011-06-03 17:57:59 +09003736 allSubtypes.put(currentImiId, tempSubtypesArray);
3737 } else if (NODE_SUBTYPE.equals(nodeName)) {
3738 if (TextUtils.isEmpty(currentImiId) || tempSubtypesArray == null) {
3739 Slog.w(TAG, "IME uninstalled or not valid.: " + currentImiId);
3740 continue;
3741 }
3742 final int icon = Integer.valueOf(
3743 parser.getAttributeValue(null, ATTR_ICON));
3744 final int label = Integer.valueOf(
3745 parser.getAttributeValue(null, ATTR_LABEL));
3746 final String imeSubtypeLocale =
3747 parser.getAttributeValue(null, ATTR_IME_SUBTYPE_LOCALE);
Yohei Yukawa868d19b2015-12-07 15:58:57 -08003748 final String languageTag =
3749 parser.getAttributeValue(null, ATTR_IME_SUBTYPE_LANGUAGE_TAG);
satoke7c6998e2011-06-03 17:57:59 +09003750 final String imeSubtypeMode =
3751 parser.getAttributeValue(null, ATTR_IME_SUBTYPE_MODE);
3752 final String imeSubtypeExtraValue =
3753 parser.getAttributeValue(null, ATTR_IME_SUBTYPE_EXTRA_VALUE);
satok4a28bde2011-06-29 21:03:40 +09003754 final boolean isAuxiliary = "1".equals(String.valueOf(
3755 parser.getAttributeValue(null, ATTR_IS_AUXILIARY)));
Yohei Yukawa1e1a4472016-03-10 23:46:07 -08003756 final boolean isAsciiCapable = "1".equals(String.valueOf(
3757 parser.getAttributeValue(null, ATTR_IS_ASCII_CAPABLE)));
Yohei Yukawa443c2ba2014-09-10 14:10:30 +09003758 final InputMethodSubtype subtype = new InputMethodSubtypeBuilder()
3759 .setSubtypeNameResId(label)
3760 .setSubtypeIconResId(icon)
3761 .setSubtypeLocale(imeSubtypeLocale)
Yohei Yukawa868d19b2015-12-07 15:58:57 -08003762 .setLanguageTag(languageTag)
Yohei Yukawa443c2ba2014-09-10 14:10:30 +09003763 .setSubtypeMode(imeSubtypeMode)
3764 .setSubtypeExtraValue(imeSubtypeExtraValue)
3765 .setIsAuxiliary(isAuxiliary)
Yohei Yukawa1e1a4472016-03-10 23:46:07 -08003766 .setIsAsciiCapable(isAsciiCapable)
Yohei Yukawa443c2ba2014-09-10 14:10:30 +09003767 .build();
satoke7c6998e2011-06-03 17:57:59 +09003768 tempSubtypesArray.add(subtype);
3769 }
3770 }
Yohei Yukawa5894b432015-08-11 13:29:24 -07003771 } catch (XmlPullParserException | IOException | NumberFormatException e) {
3772 Slog.w(TAG, "Error reading subtypes", e);
satoke7c6998e2011-06-03 17:57:59 +09003773 return;
satoke7c6998e2011-06-03 17:57:59 +09003774 }
3775 }
3776 }
3777
Yohei Yukawafa6e0a82015-07-23 15:08:59 -07003778 private static final class LocalServiceImpl implements InputMethodManagerInternal {
3779 @NonNull
3780 private final Handler mHandler;
3781
3782 LocalServiceImpl(@NonNull final Handler handler) {
3783 mHandler = handler;
3784 }
3785
3786 @Override
3787 public void setInteractive(boolean interactive) {
3788 // Do everything in handler so as not to block the caller.
3789 mHandler.sendMessage(mHandler.obtainMessage(MSG_SET_INTERACTIVE,
3790 interactive ? 1 : 0, 0));
3791 }
Yohei Yukawaae61f712015-12-09 13:00:10 -08003792
3793 @Override
3794 public void switchInputMethod(boolean forwardDirection) {
3795 // Do everything in handler so as not to block the caller.
3796 mHandler.sendMessage(mHandler.obtainMessage(MSG_SWITCH_IME,
3797 forwardDirection ? 1 : 0, 0));
3798 }
Yohei Yukawafa6e0a82015-07-23 15:08:59 -07003799 }
3800
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003801 @Override
3802 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
3803 if (mContext.checkCallingOrSelfPermission(android.Manifest.permission.DUMP)
3804 != PackageManager.PERMISSION_GRANTED) {
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003805
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003806 pw.println("Permission Denial: can't dump InputMethodManager from from pid="
3807 + Binder.getCallingPid()
3808 + ", uid=" + Binder.getCallingUid());
3809 return;
3810 }
3811
3812 IInputMethod method;
3813 ClientState client;
Yohei Yukawae39d4ed2015-11-19 03:38:49 -08003814 ClientState focusedWindowClient;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003815
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003816 final Printer p = new PrintWriterPrinter(pw);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003817
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003818 synchronized (mMethodMap) {
3819 p.println("Current Input Method Manager state:");
3820 int N = mMethodList.size();
3821 p.println(" Input Methods:");
3822 for (int i=0; i<N; i++) {
3823 InputMethodInfo info = mMethodList.get(i);
3824 p.println(" InputMethod #" + i + ":");
3825 info.dump(p, " ");
3826 }
3827 p.println(" Clients:");
3828 for (ClientState ci : mClients.values()) {
3829 p.println(" Client " + ci + ":");
3830 p.println(" client=" + ci.client);
3831 p.println(" inputContext=" + ci.inputContext);
3832 p.println(" sessionRequested=" + ci.sessionRequested);
3833 p.println(" curSession=" + ci.curSession);
3834 }
The Android Open Source Project10592532009-03-18 17:39:46 -07003835 p.println(" mCurMethodId=" + mCurMethodId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003836 client = mCurClient;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07003837 p.println(" mCurClient=" + client + " mCurSeq=" + mCurSeq);
3838 p.println(" mCurFocusedWindow=" + mCurFocusedWindow);
Yohei Yukawae39d4ed2015-11-19 03:38:49 -08003839 focusedWindowClient = mCurFocusedWindowClient;
3840 p.println(" mCurFocusedWindowClient=" + focusedWindowClient);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003841 p.println(" mCurId=" + mCurId + " mHaveConnect=" + mHaveConnection
3842 + " mBoundToMethod=" + mBoundToMethod);
3843 p.println(" mCurToken=" + mCurToken);
3844 p.println(" mCurIntent=" + mCurIntent);
3845 method = mCurMethod;
3846 p.println(" mCurMethod=" + mCurMethod);
3847 p.println(" mEnabledSession=" + mEnabledSession);
3848 p.println(" mShowRequested=" + mShowRequested
3849 + " mShowExplicitlyRequested=" + mShowExplicitlyRequested
3850 + " mShowForced=" + mShowForced
3851 + " mInputShown=" + mInputShown);
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09003852 p.println(" mCurUserActionNotificationSequenceNumber="
3853 + mCurUserActionNotificationSequenceNumber);
Yohei Yukawafa6e0a82015-07-23 15:08:59 -07003854 p.println(" mSystemReady=" + mSystemReady + " mInteractive=" + mIsInteractive);
Yohei Yukawa81482972015-06-04 00:58:59 -07003855 p.println(" mSettingsObserver=" + mSettingsObserver);
Yohei Yukawad7248862015-06-03 23:56:12 -07003856 p.println(" mSwitchingController:");
3857 mSwitchingController.dump(p);
Yohei Yukawa68645a62016-02-17 07:54:20 -08003858 p.println(" mSettings:");
3859 mSettings.dumpLocked(p, " ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003860 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003861
Jeff Brownb88102f2010-09-08 11:49:43 -07003862 p.println(" ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003863 if (client != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003864 pw.flush();
3865 try {
3866 client.client.asBinder().dump(fd, args);
3867 } catch (RemoteException e) {
3868 p.println("Input method client dead: " + e);
3869 }
Jeff Brownb88102f2010-09-08 11:49:43 -07003870 } else {
3871 p.println("No input method client.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003872 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003873
Yohei Yukawae39d4ed2015-11-19 03:38:49 -08003874 if (focusedWindowClient != null && client != focusedWindowClient) {
3875 p.println(" ");
3876 p.println("Warning: Current input method client doesn't match the last focused. "
3877 + "window.");
3878 p.println("Dumping input method client in the last focused window just in case.");
3879 p.println(" ");
3880 pw.flush();
3881 try {
3882 focusedWindowClient.client.asBinder().dump(fd, args);
3883 } catch (RemoteException e) {
3884 p.println("Input method client in focused window dead: " + e);
3885 }
3886 }
3887
Jeff Brownb88102f2010-09-08 11:49:43 -07003888 p.println(" ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003889 if (method != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003890 pw.flush();
3891 try {
3892 method.asBinder().dump(fd, args);
3893 } catch (RemoteException e) {
3894 p.println("Input method service dead: " + e);
3895 }
Jeff Brownb88102f2010-09-08 11:49:43 -07003896 } else {
3897 p.println("No input method service.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003898 }
3899 }
3900}