blob: 4a123df9972055d1ea8cd2789f7f746ef2649ce4 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
4 * use this file except in compliance with the License. You may obtain a copy of
5 * the License at
Doug Zongkerab5c49c2009-12-04 10:31:43 -08006 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007 * http://www.apache.org/licenses/LICENSE-2.0
Doug Zongkerab5c49c2009-12-04 10:31:43 -08008 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12 * License for the specific language governing permissions and limitations under
13 * the License.
14 */
15
16package com.android.server;
17
Dianne Hackborn21f1bd12010-02-19 17:02:21 -080018import com.android.internal.content.PackageMonitor;
Satoshi Kataokad7443c82013-10-15 17:45:43 +090019import com.android.internal.inputmethod.InputMethodSubtypeSwitchingController;
Satoshi Kataokad787f692013-10-26 04:44:21 +090020import com.android.internal.inputmethod.InputMethodSubtypeSwitchingController.ImeSubtypeListItem;
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +090021import com.android.internal.inputmethod.InputMethodUtils;
22import com.android.internal.inputmethod.InputMethodUtils.InputMethodSettings;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080023import com.android.internal.os.HandlerCaller;
Svetoslav Ganov758143e2012-08-06 16:40:27 -070024import com.android.internal.os.SomeArgs;
satoke7c6998e2011-06-03 17:57:59 +090025import com.android.internal.util.FastXmlSerializer;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080026import com.android.internal.view.IInputContext;
27import com.android.internal.view.IInputMethod;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080028import com.android.internal.view.IInputMethodClient;
29import com.android.internal.view.IInputMethodManager;
30import com.android.internal.view.IInputMethodSession;
Yohei Yukawa6ab1a822015-08-25 14:01:28 -070031import com.android.internal.view.IInputSessionCallback;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080032import com.android.internal.view.InputBindResult;
Yohei Yukawa33e81792015-11-17 21:14:42 -080033import com.android.internal.view.InputMethodClient;
Adam Lesinskief2ea1f2013-12-05 16:48:06 -080034import com.android.server.statusbar.StatusBarManagerService;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080035
satoke7c6998e2011-06-03 17:57:59 +090036import org.xmlpull.v1.XmlPullParser;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080037import org.xmlpull.v1.XmlPullParserException;
satoke7c6998e2011-06-03 17:57:59 +090038import org.xmlpull.v1.XmlSerializer;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080039
Yohei Yukawa6ab1a822015-08-25 14:01:28 -070040import android.annotation.NonNull;
Yohei Yukawae13a20fa2015-09-30 19:11:32 -070041import android.annotation.Nullable;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080042import android.app.ActivityManagerNative;
43import android.app.AlertDialog;
Yohei Yukawa6ab1a822015-08-25 14:01:28 -070044import android.app.AppGlobals;
Yohei Yukawae63b5fa2014-09-19 13:14:55 +090045import android.app.AppOpsManager;
satokf90a33e2011-07-19 11:55:52 +090046import android.app.KeyguardManager;
satok7cfc0ed2011-06-20 21:29:36 +090047import android.app.Notification;
48import android.app.NotificationManager;
Dianne Hackborndd9b82c2009-09-03 00:18:47 -070049import android.app.PendingIntent;
Fyodor Kupolov6005b3f2015-11-23 17:41:50 -080050import android.app.SynchronousUserSwitchObserver;
satok5b927c432012-05-01 20:09:34 +090051import android.content.BroadcastReceiver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080052import android.content.ComponentName;
53import android.content.ContentResolver;
54import android.content.Context;
55import android.content.DialogInterface;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080056import android.content.DialogInterface.OnCancelListener;
Tadashi G. Takaokad130b802014-08-01 14:05:47 +090057import android.content.DialogInterface.OnClickListener;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080058import android.content.Intent;
satoke7c6998e2011-06-03 17:57:59 +090059import android.content.IntentFilter;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080060import android.content.ServiceConnection;
Brandon Ballinger6da35a02009-10-21 00:38:13 -070061import android.content.pm.ApplicationInfo;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +090062import android.content.pm.IPackageManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080063import android.content.pm.PackageManager;
Yohei Yukawa6ab1a822015-08-25 14:01:28 -070064import android.content.pm.PackageManagerInternal;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080065import android.content.pm.ResolveInfo;
66import android.content.pm.ServiceInfo;
Amith Yamasani734983f2014-03-04 16:48:05 -080067import android.content.pm.UserInfo;
Amith Yamasanie861ec12010-03-24 21:39:27 -070068import android.content.res.Configuration;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080069import android.content.res.Resources;
70import android.content.res.TypedArray;
71import android.database.ContentObserver;
Alan Viverette505e3ab2014-11-24 15:22:11 -080072import android.graphics.drawable.Drawable;
Yohei Yukawab097b822015-12-01 10:43:08 -080073import android.hardware.input.InputManagerInternal;
Joe Onorato857fd9b2011-01-27 15:08:35 -080074import android.inputmethodservice.InputMethodService;
Michael Wright7b5a96b2014-08-09 19:28:42 -070075import android.net.Uri;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080076import android.os.Binder;
Chris Wren1ce4b6d2015-06-11 10:19:43 -040077import android.os.Bundle;
Seigo Nonakae27dc2b2015-08-14 18:21:27 -070078import android.os.Debug;
satoke7c6998e2011-06-03 17:57:59 +090079import android.os.Environment;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080080import android.os.Handler;
81import android.os.IBinder;
82import android.os.IInterface;
83import android.os.Message;
84import android.os.Parcel;
Yohei Yukawa6ab1a822015-08-25 14:01:28 -070085import android.os.Process;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080086import android.os.RemoteException;
The Android Open Source Project4df24232009-03-05 14:34:35 -080087import android.os.ResultReceiver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080088import android.os.ServiceManager;
89import android.os.SystemClock;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +090090import android.os.UserHandle;
Amith Yamasani734983f2014-03-04 16:48:05 -080091import android.os.UserManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080092import android.provider.Settings;
93import android.text.TextUtils;
satokf9f01002011-05-19 21:31:50 +090094import android.text.style.SuggestionSpan;
Christopher Tate7b9a28c2015-03-18 13:06:16 -070095import android.util.ArrayMap;
96import android.util.ArraySet;
Dianne Hackborn39606a02012-07-31 17:54:35 -070097import android.util.AtomicFile;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080098import android.util.EventLog;
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;
satok5b927c432012-05-01 20:09:34 +0900139import java.util.Locale;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800140
141/**
142 * This class provides a system service that manages input methods.
143 */
144public class InputMethodManagerService extends IInputMethodManager.Stub
145 implements ServiceConnection, Handler.Callback {
146 static final boolean DEBUG = false;
Christopher Tate7b9a28c2015-03-18 13:06:16 -0700147 static final boolean DEBUG_RESTORE = DEBUG || false;
Jeff Brown6ec6f792012-04-17 16:52:41 -0700148 static final String TAG = "InputMethodManagerService";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800149
Seigo Nonakad4474cb2015-05-04 16:53:24 -0700150 static final int MSG_SHOW_IM_SUBTYPE_PICKER = 1;
151 static final int MSG_SHOW_IM_SUBTYPE_ENABLER = 2;
152 static final int MSG_SHOW_IM_CONFIG = 3;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800153
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800154 static final int MSG_UNBIND_INPUT = 1000;
155 static final int MSG_BIND_INPUT = 1010;
156 static final int MSG_SHOW_SOFT_INPUT = 1020;
157 static final int MSG_HIDE_SOFT_INPUT = 1030;
158 static final int MSG_ATTACH_TOKEN = 1040;
159 static final int MSG_CREATE_SESSION = 1050;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800160
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800161 static final int MSG_START_INPUT = 2000;
162 static final int MSG_RESTART_INPUT = 2010;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800163
Yohei Yukawa33e81792015-11-17 21:14:42 -0800164 static final int MSG_UNBIND_CLIENT = 3000;
165 static final int MSG_BIND_CLIENT = 3010;
Dianne Hackborna6e41342012-05-22 16:30:34 -0700166 static final int MSG_SET_ACTIVE = 3020;
Yohei Yukawafa6e0a82015-07-23 15:08:59 -0700167 static final int MSG_SET_INTERACTIVE = 3030;
Yohei Yukawa3d1e8122014-06-06 19:12:47 +0900168 static final int MSG_SET_USER_ACTION_NOTIFICATION_SEQUENCE_NUMBER = 3040;
Yohei Yukawaae61f712015-12-09 13:00:10 -0800169 static final int MSG_SWITCH_IME = 3050;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800170
satok01038492012-04-09 21:08:27 +0900171 static final int MSG_HARD_KEYBOARD_SWITCH_CHANGED = 4000;
172
Satoshi Kataokabcacc322013-10-21 17:57:27 -0700173 static final long TIME_TO_RECONNECT = 3 * 1000;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800174
satokf9f01002011-05-19 21:31:50 +0900175 static final int SECURE_SUGGESTION_SPANS_MAX_SIZE = 20;
176
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +0900177 private static final int NOT_A_SUBTYPE_ID = InputMethodUtils.NOT_A_SUBTYPE_ID;
satokb6359412011-06-28 17:47:41 +0900178 private static final String TAG_TRY_SUPPRESSING_IME_SWITCHER = "TrySuppressingImeSwitcher";
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +0900179
satok4e4569d2010-11-19 18:45:53 +0900180
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800181 final Context mContext;
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -0800182 final Resources mRes;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800183 final Handler mHandler;
satokd87c2592010-09-29 11:52:06 +0900184 final InputMethodSettings mSettings;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800185 final SettingsObserver mSettingsObserver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800186 final IWindowManager mIWindowManager;
Seigo Nonaka7309b122015-08-17 18:34:13 -0700187 final WindowManagerInternal mWindowManagerInternal;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800188 final HandlerCaller mCaller;
Dianne Hackborn119bbc32013-03-22 17:27:25 -0700189 final boolean mHasFeature;
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +0900190 private InputMethodFileManager mFileManager;
satok01038492012-04-09 21:08:27 +0900191 private final HardKeyboardListener mHardKeyboardListener;
Yohei Yukawae63b5fa2014-09-19 13:14:55 +0900192 private final AppOpsManager mAppOpsManager;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800193
Yohei Yukawa3d1e8122014-06-06 19:12:47 +0900194 final InputBindResult mNoBinding = new InputBindResult(null, null, null, -1, -1);
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800195
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800196 // All known input methods. mMethodMap also serves as the global
197 // lock for this class.
Yohei Yukawab0377bb2015-08-10 21:06:30 -0700198 final ArrayList<InputMethodInfo> mMethodList = new ArrayList<>();
199 final HashMap<String, InputMethodInfo> mMethodMap = new HashMap<>();
satokf9f01002011-05-19 21:31:50 +0900200 private final LruCache<SuggestionSpan, InputMethodInfo> mSecureSuggestionSpans =
Yohei Yukawab0377bb2015-08-10 21:06:30 -0700201 new LruCache<>(SECURE_SUGGESTION_SPANS_MAX_SIZE);
Satoshi Kataokad787f692013-10-26 04:44:21 +0900202 private final InputMethodSubtypeSwitchingController mSwitchingController;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800203
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700204 // Used to bring IME service up to visible adjustment while it is being shown.
205 final ServiceConnection mVisibleConnection = new ServiceConnection() {
206 @Override public void onServiceConnected(ComponentName name, IBinder service) {
207 }
208
209 @Override public void onServiceDisconnected(ComponentName name) {
210 }
211 };
212 boolean mVisibleBound = false;
213
satok7cfc0ed2011-06-20 21:29:36 +0900214 // Ongoing notification
Dianne Hackborn661cd522011-08-22 00:26:20 -0700215 private NotificationManager mNotificationManager;
216 private KeyguardManager mKeyguardManager;
217 private StatusBarManagerService mStatusBar;
Chris Wren1ce4b6d2015-06-11 10:19:43 -0400218 private Notification.Builder mImeSwitcherNotification;
Dianne Hackborn661cd522011-08-22 00:26:20 -0700219 private PendingIntent mImeSwitchPendingIntent;
satokb858c732011-07-22 19:54:34 +0900220 private boolean mShowOngoingImeSwitcherForPhones;
satok7cfc0ed2011-06-20 21:29:36 +0900221 private boolean mNotificationShown;
satok0a1bcf42012-05-16 19:26:31 +0900222 private final boolean mImeSelectedOnBoot;
satok7cfc0ed2011-06-20 21:29:36 +0900223
Tadashi G. Takaoka8c6d4772014-08-05 15:29:17 +0900224 static class SessionState {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800225 final ClientState client;
226 final IInputMethod method;
Jeff Brownc28867a2013-03-26 15:42:39 -0700227
228 IInputMethodSession session;
229 InputChannel channel;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800230
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800231 @Override
232 public String toString() {
233 return "SessionState{uid " + client.uid + " pid " + client.pid
234 + " method " + Integer.toHexString(
235 System.identityHashCode(method))
236 + " session " + Integer.toHexString(
237 System.identityHashCode(session))
Jeff Brownc28867a2013-03-26 15:42:39 -0700238 + " channel " + channel
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800239 + "}";
240 }
241
242 SessionState(ClientState _client, IInputMethod _method,
Jeff Brownc28867a2013-03-26 15:42:39 -0700243 IInputMethodSession _session, InputChannel _channel) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800244 client = _client;
245 method = _method;
246 session = _session;
Jeff Brownc28867a2013-03-26 15:42:39 -0700247 channel = _channel;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800248 }
249 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800250
Jeff Brownc28867a2013-03-26 15:42:39 -0700251 static final class ClientState {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800252 final IInputMethodClient client;
253 final IInputContext inputContext;
254 final int uid;
255 final int pid;
256 final InputBinding binding;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800257
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800258 boolean sessionRequested;
259 SessionState curSession;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800260
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800261 @Override
262 public String toString() {
263 return "ClientState{" + Integer.toHexString(
264 System.identityHashCode(this)) + " uid " + uid
265 + " pid " + pid + "}";
266 }
267
268 ClientState(IInputMethodClient _client, IInputContext _inputContext,
269 int _uid, int _pid) {
270 client = _client;
271 inputContext = _inputContext;
272 uid = _uid;
273 pid = _pid;
274 binding = new InputBinding(null, inputContext.asBinder(), uid, pid);
275 }
276 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800277
Yohei Yukawab0377bb2015-08-10 21:06:30 -0700278 final HashMap<IBinder, ClientState> mClients = new HashMap<>();
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800279
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800280 /**
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700281 * Set once the system is ready to run third party code.
282 */
283 boolean mSystemReady;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800284
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700285 /**
Yohei Yukawae13a20fa2015-09-30 19:11:32 -0700286 * Id obtained with {@link InputMethodInfo#getId()} for the currently selected input method.
287 * method. This is to be synchronized with the secure settings keyed with
288 * {@link Settings.Secure#DEFAULT_INPUT_METHOD}.
289 *
290 * <p>This can be transiently {@code null} when the system is re-initializing input method
291 * settings, e.g., the system locale is just changed.</p>
292 *
293 * <p>Note that {@link #mCurId} is used to track which IME is being connected to
294 * {@link InputMethodManagerService}.</p>
295 *
296 * @see #mCurId
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800297 */
Yohei Yukawae13a20fa2015-09-30 19:11:32 -0700298 @Nullable
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800299 String mCurMethodId;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800300
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800301 /**
302 * The current binding sequence number, incremented every time there is
303 * a new bind performed.
304 */
305 int mCurSeq;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800306
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800307 /**
308 * The client that is currently bound to an input method.
309 */
310 ClientState mCurClient;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800311
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800312 /**
Yohei Yukawae39d4ed2015-11-19 03:38:49 -0800313 * The last window token that we confirmed to be focused. This is always updated upon reports
314 * from the input method client. If the window state is already changed before the report is
315 * handled, this field just keeps the last value.
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700316 */
317 IBinder mCurFocusedWindow;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800318
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700319 /**
Yohei Yukawae39d4ed2015-11-19 03:38:49 -0800320 * The client by which {@link #mCurFocusedWindow} was reported. Used only for debugging.
321 */
322 ClientState mCurFocusedWindowClient;
323
324 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800325 * The input context last provided by the current client.
326 */
327 IInputContext mCurInputContext;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800328
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800329 /**
330 * The attributes last provided by the current client.
331 */
332 EditorInfo mCurAttribute;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800333
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800334 /**
Yohei Yukawae13a20fa2015-09-30 19:11:32 -0700335 * Id obtained with {@link InputMethodInfo#getId()} for the input method that we are currently
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800336 * connected to or in the process of connecting to.
Yohei Yukawae13a20fa2015-09-30 19:11:32 -0700337 *
338 * <p>This can be {@code null} when no input method is connected.</p>
339 *
340 * @see #mCurMethodId
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800341 */
Yohei Yukawae13a20fa2015-09-30 19:11:32 -0700342 @Nullable
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800343 String mCurId;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800344
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800345 /**
satokab751aa2010-09-14 19:17:36 +0900346 * The current subtype of the current input method.
347 */
348 private InputMethodSubtype mCurrentSubtype;
349
satok4e4569d2010-11-19 18:45:53 +0900350 // This list contains the pairs of InputMethodInfo and InputMethodSubtype.
satokf3db1af2010-11-23 13:34:33 +0900351 private final HashMap<InputMethodInfo, ArrayList<InputMethodSubtype>>
Yohei Yukawab0377bb2015-08-10 21:06:30 -0700352 mShortcutInputMethodsAndSubtypes = new HashMap<>();
satokab751aa2010-09-14 19:17:36 +0900353
John Spurlocke0980502013-10-25 11:59:29 -0400354 // Was the keyguard locked when this client became current?
355 private boolean mCurClientInKeyguard;
356
satokab751aa2010-09-14 19:17:36 +0900357 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800358 * Set to true if our ServiceConnection is currently actively bound to
359 * a service (whether or not we have gotten its IBinder back yet).
360 */
361 boolean mHaveConnection;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800362
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800363 /**
364 * Set if the client has asked for the input method to be shown.
365 */
366 boolean mShowRequested;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800367
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800368 /**
369 * Set if we were explicitly told to show the input method.
370 */
371 boolean mShowExplicitlyRequested;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800372
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800373 /**
374 * Set if we were forced to be shown.
375 */
376 boolean mShowForced;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800377
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800378 /**
379 * Set if we last told the input method to show itself.
380 */
381 boolean mInputShown;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800382
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800383 /**
384 * The Intent used to connect to the current input method.
385 */
386 Intent mCurIntent;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800387
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800388 /**
389 * The token we have made for the currently active input method, to
390 * identify it in the future.
391 */
392 IBinder mCurToken;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800393
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800394 /**
395 * If non-null, this is the input method service we are currently connected
396 * to.
397 */
398 IInputMethod mCurMethod;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800399
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800400 /**
401 * Time that we last initiated a bind to the input method, to determine
402 * if we should try to disconnect and reconnect to it.
403 */
404 long mLastBindTime;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800405
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800406 /**
407 * Have we called mCurMethod.bindInput()?
408 */
409 boolean mBoundToMethod;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800410
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800411 /**
412 * Currently enabled session. Only touched by service thread, not
413 * protected by a lock.
414 */
415 SessionState mEnabledSession;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800416
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800417 /**
Yohei Yukawafa6e0a82015-07-23 15:08:59 -0700418 * True if the device is currently interactive with user. The value is true initially.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800419 */
Yohei Yukawafa6e0a82015-07-23 15:08:59 -0700420 boolean mIsInteractive = true;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800421
Yohei Yukawa3d1e8122014-06-06 19:12:47 +0900422 int mCurUserActionNotificationSequenceNumber = 0;
423
Joe Onorato857fd9b2011-01-27 15:08:35 -0800424 int mBackDisposition = InputMethodService.BACK_DISPOSITION_DEFAULT;
Seigo Nonakad9eb9112015-05-26 20:54:43 +0900425
426 /**
427 * A set of status bits regarding the active IME.
428 *
429 * <p>This value is a combination of following two bits:</p>
430 * <dl>
431 * <dt>{@link InputMethodService#IME_ACTIVE}</dt>
432 * <dd>
433 * If this bit is ON, connected IME is ready to accept touch/key events.
434 * </dd>
435 * <dt>{@link InputMethodService#IME_VISIBLE}</dt>
436 * <dd>
437 * If this bit is ON, some of IME view, e.g. software input, candidate view, is visible.
438 * </dd>
439 * </dl>
440 * <em>Do not update this value outside of setImeWindowStatus.</em>
441 */
Joe Onorato857fd9b2011-01-27 15:08:35 -0800442 int mImeWindowVis;
443
Ken Wakasa05dbb652011-08-22 15:22:43 +0900444 private AlertDialog.Builder mDialogBuilder;
445 private AlertDialog mSwitchingDialog;
satok01038492012-04-09 21:08:27 +0900446 private View mSwitchingDialogTitleView;
Ken Wakasa05dbb652011-08-22 15:22:43 +0900447 private InputMethodInfo[] mIms;
448 private int[] mSubtypeIds;
satok5b927c432012-05-01 20:09:34 +0900449 private Locale mLastSystemLocale;
Michael Wright7b5a96b2014-08-09 19:28:42 -0700450 private boolean mShowImeWithHardKeyboard;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900451 private final MyPackageMonitor mMyPackageMonitor = new MyPackageMonitor();
452 private final IPackageManager mIPackageManager;
Jason Monk3e189872016-01-12 09:10:34 -0500453 private final String mSlotIme;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800454
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800455 class SettingsObserver extends ContentObserver {
Yohei Yukawa81482972015-06-04 00:58:59 -0700456 int mUserId;
457 boolean mRegistered = false;
Dianne Hackbornfd7aded2013-01-22 17:10:23 -0800458 String mLastEnabled = "";
459
Yohei Yukawa81482972015-06-04 00:58:59 -0700460 /**
461 * <em>This constructor must be called within the lock.</em>
462 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800463 SettingsObserver(Handler handler) {
464 super(handler);
Yohei Yukawa81482972015-06-04 00:58:59 -0700465 }
466
467 public void registerContentObserverLocked(int userId) {
468 if (mRegistered && mUserId == userId) {
469 return;
470 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800471 ContentResolver resolver = mContext.getContentResolver();
Yohei Yukawa81482972015-06-04 00:58:59 -0700472 if (mRegistered) {
473 mContext.getContentResolver().unregisterContentObserver(this);
474 mRegistered = false;
475 }
476 if (mUserId != userId) {
477 mLastEnabled = "";
478 mUserId = userId;
479 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800480 resolver.registerContentObserver(Settings.Secure.getUriFor(
Yohei Yukawa81482972015-06-04 00:58:59 -0700481 Settings.Secure.DEFAULT_INPUT_METHOD), false, this, userId);
satokab751aa2010-09-14 19:17:36 +0900482 resolver.registerContentObserver(Settings.Secure.getUriFor(
Yohei Yukawa81482972015-06-04 00:58:59 -0700483 Settings.Secure.ENABLED_INPUT_METHODS), false, this, userId);
satokb6109bb2011-02-03 22:24:54 +0900484 resolver.registerContentObserver(Settings.Secure.getUriFor(
Yohei Yukawa81482972015-06-04 00:58:59 -0700485 Settings.Secure.SELECTED_INPUT_METHOD_SUBTYPE), false, this, userId);
Michael Wright7b5a96b2014-08-09 19:28:42 -0700486 resolver.registerContentObserver(Settings.Secure.getUriFor(
Yohei Yukawa81482972015-06-04 00:58:59 -0700487 Settings.Secure.SHOW_IME_WITH_HARD_KEYBOARD), false, this, userId);
488 mRegistered = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800489 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800490
Michael Wright7b5a96b2014-08-09 19:28:42 -0700491 @Override public void onChange(boolean selfChange, Uri uri) {
492 final Uri showImeUri =
493 Settings.Secure.getUriFor(Settings.Secure.SHOW_IME_WITH_HARD_KEYBOARD);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800494 synchronized (mMethodMap) {
Michael Wright7b5a96b2014-08-09 19:28:42 -0700495 if (showImeUri.equals(uri)) {
496 updateKeyboardFromSettingsLocked();
497 } else {
498 boolean enabledChanged = false;
499 String newEnabled = mSettings.getEnabledInputMethodsStr();
500 if (!mLastEnabled.equals(newEnabled)) {
501 mLastEnabled = newEnabled;
502 enabledChanged = true;
503 }
504 updateInputMethodsFromSettingsLocked(enabledChanged);
Dianne Hackbornfd7aded2013-01-22 17:10:23 -0800505 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800506 }
507 }
Yohei Yukawa81482972015-06-04 00:58:59 -0700508
509 @Override
510 public String toString() {
511 return "SettingsObserver{mUserId=" + mUserId + " mRegistered=" + mRegistered
512 + " mLastEnabled=" + mLastEnabled + "}";
513 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800514 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800515
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900516 class ImmsBroadcastReceiver extends android.content.BroadcastReceiver {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900517 @Override
518 public void onReceive(Context context, Intent intent) {
519 final String action = intent.getAction();
Yohei Yukawafa6e0a82015-07-23 15:08:59 -0700520 if (Intent.ACTION_CLOSE_SYSTEM_DIALOGS.equals(action)) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900521 hideInputMethodMenu();
Yohei Yukawafa6e0a82015-07-23 15:08:59 -0700522 // No need to update mIsInteractive
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900523 return;
Amith Yamasani734983f2014-03-04 16:48:05 -0800524 } else if (Intent.ACTION_USER_ADDED.equals(action)
525 || Intent.ACTION_USER_REMOVED.equals(action)) {
Kenny Guy2a764942014-04-02 13:29:20 +0100526 updateCurrentProfileIds();
Amith Yamasani734983f2014-03-04 16:48:05 -0800527 return;
Christopher Tate7b9a28c2015-03-18 13:06:16 -0700528 } else if (Intent.ACTION_SETTING_RESTORED.equals(action)) {
529 final String name = intent.getStringExtra(Intent.EXTRA_SETTING_NAME);
530 if (Settings.Secure.ENABLED_INPUT_METHODS.equals(name)) {
531 final String prevValue = intent.getStringExtra(
532 Intent.EXTRA_SETTING_PREVIOUS_VALUE);
533 final String newValue = intent.getStringExtra(
534 Intent.EXTRA_SETTING_NEW_VALUE);
535 restoreEnabledInputMethods(mContext, prevValue, newValue);
536 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900537 } else {
538 Slog.w(TAG, "Unexpected intent " + intent);
539 }
540 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800541 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800542
Christopher Tate7b9a28c2015-03-18 13:06:16 -0700543 // Apply the results of a restore operation to the set of enabled IMEs. Note that this
544 // does not attempt to validate on the fly with any installed device policy, so must only
545 // be run in the context of initial device setup.
546 //
547 // TODO: Move this method to InputMethodUtils with adding unit tests.
548 static void restoreEnabledInputMethods(Context context, String prevValue, String newValue) {
549 if (DEBUG_RESTORE) {
550 Slog.i(TAG, "Restoring enabled input methods:");
551 Slog.i(TAG, "prev=" + prevValue);
552 Slog.i(TAG, " new=" + newValue);
553 }
554 // 'new' is the just-restored state, 'prev' is what was in settings prior to the restore
Seigo Nonaka2028dda2015-07-06 17:41:24 +0900555 ArrayMap<String, ArraySet<String>> prevMap =
556 InputMethodUtils.parseInputMethodsAndSubtypesString(prevValue);
557 ArrayMap<String, ArraySet<String>> newMap =
558 InputMethodUtils.parseInputMethodsAndSubtypesString(newValue);
Christopher Tate7b9a28c2015-03-18 13:06:16 -0700559
560 // Merge the restored ime+subtype enabled states into the live state
561 for (ArrayMap.Entry<String, ArraySet<String>> entry : newMap.entrySet()) {
562 final String imeId = entry.getKey();
563 ArraySet<String> prevSubtypes = prevMap.get(imeId);
564 if (prevSubtypes == null) {
Yohei Yukawab0377bb2015-08-10 21:06:30 -0700565 prevSubtypes = new ArraySet<>(2);
Christopher Tate7b9a28c2015-03-18 13:06:16 -0700566 prevMap.put(imeId, prevSubtypes);
567 }
568 prevSubtypes.addAll(entry.getValue());
569 }
570
Seigo Nonaka2a099bc2015-08-14 19:29:45 -0700571 final String mergedImesAndSubtypesString =
572 InputMethodUtils.buildInputMethodsAndSubtypesString(prevMap);
Christopher Tate7b9a28c2015-03-18 13:06:16 -0700573 if (DEBUG_RESTORE) {
574 Slog.i(TAG, "Merged IME string:");
575 Slog.i(TAG, " " + mergedImesAndSubtypesString);
576 }
577 Settings.Secure.putString(context.getContentResolver(),
578 Settings.Secure.ENABLED_INPUT_METHODS, mergedImesAndSubtypesString);
579 }
580
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800581 class MyPackageMonitor extends PackageMonitor {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900582 private boolean isChangingPackagesOfCurrentUser() {
583 final int userId = getChangingUserId();
584 final boolean retval = userId == mSettings.getCurrentUserId();
585 if (DEBUG) {
satok81f8b7c2012-12-04 20:42:56 +0900586 if (!retval) {
587 Slog.d(TAG, "--- ignore this call back from a background user: " + userId);
588 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900589 }
590 return retval;
591 }
592
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800593 @Override
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800594 public boolean onHandleForceStop(Intent intent, String[] packages, int uid, boolean doit) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900595 if (!isChangingPackagesOfCurrentUser()) {
596 return false;
597 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800598 synchronized (mMethodMap) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900599 String curInputMethodId = mSettings.getSelectedInputMethod();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800600 final int N = mMethodList.size();
601 if (curInputMethodId != null) {
602 for (int i=0; i<N; i++) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800603 InputMethodInfo imi = mMethodList.get(i);
604 if (imi.getId().equals(curInputMethodId)) {
605 for (String pkg : packages) {
606 if (imi.getPackageName().equals(pkg)) {
607 if (!doit) {
608 return true;
609 }
satok723a27e2010-11-11 14:58:11 +0900610 resetSelectedInputMethodAndSubtypeLocked("");
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800611 chooseNewDefaultIMELocked();
612 return true;
613 }
614 }
615 }
616 }
617 }
618 }
619 return false;
620 }
621
622 @Override
623 public void onSomePackagesChanged() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900624 if (!isChangingPackagesOfCurrentUser()) {
625 return;
626 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800627 synchronized (mMethodMap) {
628 InputMethodInfo curIm = null;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900629 String curInputMethodId = mSettings.getSelectedInputMethod();
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800630 final int N = mMethodList.size();
631 if (curInputMethodId != null) {
632 for (int i=0; i<N; i++) {
633 InputMethodInfo imi = mMethodList.get(i);
satoke7c6998e2011-06-03 17:57:59 +0900634 final String imiId = imi.getId();
635 if (imiId.equals(curInputMethodId)) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800636 curIm = imi;
637 }
satoke7c6998e2011-06-03 17:57:59 +0900638
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800639 int change = isPackageDisappearing(imi.getPackageName());
satoke7c6998e2011-06-03 17:57:59 +0900640 if (isPackageModified(imi.getPackageName())) {
641 mFileManager.deleteAllInputMethodSubtypes(imiId);
642 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800643 if (change == PACKAGE_TEMPORARY_CHANGE
644 || change == PACKAGE_PERMANENT_CHANGE) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800645 Slog.i(TAG, "Input method uninstalled, disabling: "
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800646 + imi.getComponent());
647 setInputMethodEnabledLocked(imi.getId(), false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800648 }
649 }
650 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800651
Satoshi Kataokaf1367b72013-01-25 17:20:12 +0900652 buildInputMethodListLocked(
653 mMethodList, mMethodMap, false /* resetDefaultEnabledIme */);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800654
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800655 boolean changed = false;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800656
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800657 if (curIm != null) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800658 int change = isPackageDisappearing(curIm.getPackageName());
659 if (change == PACKAGE_TEMPORARY_CHANGE
660 || change == PACKAGE_PERMANENT_CHANGE) {
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800661 ServiceInfo si = null;
662 try {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900663 si = mIPackageManager.getServiceInfo(
664 curIm.getComponent(), 0, mSettings.getCurrentUserId());
665 } catch (RemoteException ex) {
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800666 }
667 if (si == null) {
668 // Uh oh, current input method is no longer around!
669 // Pick another one...
Joe Onorato8a9b2202010-02-26 18:56:32 -0800670 Slog.i(TAG, "Current input method removed: " + curInputMethodId);
Seigo Nonakad9eb9112015-05-26 20:54:43 +0900671 updateSystemUiLocked(mCurToken, 0 /* vis */, mBackDisposition);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800672 if (!chooseNewDefaultIMELocked()) {
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800673 changed = true;
674 curIm = null;
Joe Onorato8a9b2202010-02-26 18:56:32 -0800675 Slog.i(TAG, "Unsetting current input method");
satok723a27e2010-11-11 14:58:11 +0900676 resetSelectedInputMethodAndSubtypeLocked("");
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800677 }
678 }
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800679 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800680 }
satokab751aa2010-09-14 19:17:36 +0900681
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800682 if (curIm == null) {
683 // We currently don't have a default input method... is
684 // one now available?
685 changed = chooseNewDefaultIMELocked();
Yohei Yukawa54d512c2015-05-19 22:15:02 -0700686 } else if (!changed && isPackageModified(curIm.getPackageName())) {
687 // Even if the current input method is still available, mCurrentSubtype could
688 // be obsolete when the package is modified in practice.
689 changed = true;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800690 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800691
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800692 if (changed) {
Dianne Hackbornfd7aded2013-01-22 17:10:23 -0800693 updateFromSettingsLocked(false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800694 }
695 }
696 }
697 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800698
Jeff Brownc28867a2013-03-26 15:42:39 -0700699 private static final class MethodCallback extends IInputSessionCallback.Stub {
Jean Chalarde0d32a62011-10-20 20:36:07 +0900700 private final InputMethodManagerService mParentIMMS;
Jeff Brownc28867a2013-03-26 15:42:39 -0700701 private final IInputMethod mMethod;
702 private final InputChannel mChannel;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800703
Jeff Brownc28867a2013-03-26 15:42:39 -0700704 MethodCallback(InputMethodManagerService imms, IInputMethod method,
705 InputChannel channel) {
Jean Chalarde0d32a62011-10-20 20:36:07 +0900706 mParentIMMS = imms;
Jeff Brownc28867a2013-03-26 15:42:39 -0700707 mMethod = method;
708 mChannel = channel;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800709 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800710
satoke7c6998e2011-06-03 17:57:59 +0900711 @Override
Jeff Brownc28867a2013-03-26 15:42:39 -0700712 public void sessionCreated(IInputMethodSession session) {
Dianne Hackborn6b6b3fd2014-03-24 11:27:18 -0700713 long ident = Binder.clearCallingIdentity();
714 try {
715 mParentIMMS.onSessionCreated(mMethod, session, mChannel);
716 } finally {
717 Binder.restoreCallingIdentity(ident);
718 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800719 }
720 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800721
satok01038492012-04-09 21:08:27 +0900722 private class HardKeyboardListener
Seigo Nonaka7309b122015-08-17 18:34:13 -0700723 implements WindowManagerInternal.OnHardKeyboardStatusChangeListener {
satok01038492012-04-09 21:08:27 +0900724 @Override
Michael Wright7b5a96b2014-08-09 19:28:42 -0700725 public void onHardKeyboardStatusChange(boolean available) {
726 mHandler.sendMessage(mHandler.obtainMessage(MSG_HARD_KEYBOARD_SWITCH_CHANGED,
727 available ? 1 : 0));
satok01038492012-04-09 21:08:27 +0900728 }
729
Michael Wright7b5a96b2014-08-09 19:28:42 -0700730 public void handleHardKeyboardStatusChange(boolean available) {
satok01038492012-04-09 21:08:27 +0900731 if (DEBUG) {
Michael Wright7b5a96b2014-08-09 19:28:42 -0700732 Slog.w(TAG, "HardKeyboardStatusChanged: available=" + available);
satok01038492012-04-09 21:08:27 +0900733 }
734 synchronized(mMethodMap) {
735 if (mSwitchingDialog != null && mSwitchingDialogTitleView != null
736 && mSwitchingDialog.isShowing()) {
737 mSwitchingDialogTitleView.findViewById(
738 com.android.internal.R.id.hard_keyboard_section).setVisibility(
739 available ? View.VISIBLE : View.GONE);
740 }
741 }
742 }
743 }
744
Fyodor Kupolov1e33dc82016-01-21 12:02:58 -0800745 public static final class Lifecycle extends SystemService {
746 private InputMethodManagerService mService;
747
748 public Lifecycle(Context context) {
749 super(context);
750 mService = new InputMethodManagerService(context);
751 }
752
753 @Override
754 public void onStart() {
755 LocalServices.addService(InputMethodManagerInternal.class,
756 new LocalServiceImpl(mService.mHandler));
757 publishBinderService(Context.INPUT_METHOD_SERVICE, mService);
758 }
759
760 @Override
761 public void onBootPhase(int phase) {
762 if (phase == SystemService.PHASE_ACTIVITY_MANAGER_READY) {
763 StatusBarManagerService statusBarService = (StatusBarManagerService) ServiceManager
764 .getService(Context.STATUS_BAR_SERVICE);
765 mService.systemRunning(statusBarService);
766 }
767 }
768 }
769
Seigo Nonaka7309b122015-08-17 18:34:13 -0700770 public InputMethodManagerService(Context context) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900771 mIPackageManager = AppGlobals.getPackageManager();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800772 mContext = context;
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -0800773 mRes = context.getResources();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800774 mHandler = new Handler(this);
Yohei Yukawa81482972015-06-04 00:58:59 -0700775 // Note: SettingsObserver doesn't register observers in its constructor.
776 mSettingsObserver = new SettingsObserver(mHandler);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800777 mIWindowManager = IWindowManager.Stub.asInterface(
778 ServiceManager.getService(Context.WINDOW_SERVICE));
Seigo Nonaka7309b122015-08-17 18:34:13 -0700779 mWindowManagerInternal = LocalServices.getService(WindowManagerInternal.class);
Mita Yuned218c72012-12-06 17:18:25 -0800780 mCaller = new HandlerCaller(context, null, new HandlerCaller.Callback() {
satoke7c6998e2011-06-03 17:57:59 +0900781 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800782 public void executeMessage(Message msg) {
783 handleMessage(msg);
784 }
Mita Yuned218c72012-12-06 17:18:25 -0800785 }, true /*asyncHandler*/);
Yohei Yukawae63b5fa2014-09-19 13:14:55 +0900786 mAppOpsManager = (AppOpsManager) mContext.getSystemService(Context.APP_OPS_SERVICE);
satok01038492012-04-09 21:08:27 +0900787 mHardKeyboardListener = new HardKeyboardListener();
Dianne Hackborn119bbc32013-03-22 17:27:25 -0700788 mHasFeature = context.getPackageManager().hasSystemFeature(
789 PackageManager.FEATURE_INPUT_METHODS);
Jason Monk3e189872016-01-12 09:10:34 -0500790 mSlotIme = mContext.getString(com.android.internal.R.string.status_bar_ime);
satok7cfc0ed2011-06-20 21:29:36 +0900791
Chris Wren1ce4b6d2015-06-11 10:19:43 -0400792 Bundle extras = new Bundle();
793 extras.putBoolean(Notification.EXTRA_ALLOW_DURING_SETUP, true);
794 mImeSwitcherNotification = new Notification.Builder(mContext)
795 .setSmallIcon(com.android.internal.R.drawable.ic_notification_ime_default)
796 .setWhen(0)
797 .setOngoing(true)
798 .addExtras(extras)
799 .setCategory(Notification.CATEGORY_SYSTEM)
800 .setColor(com.android.internal.R.color.system_notification_accent_color);
Daniel Sandler590d5152012-06-14 16:10:13 -0400801
satok7cfc0ed2011-06-20 21:29:36 +0900802 Intent intent = new Intent(Settings.ACTION_SHOW_INPUT_METHOD_PICKER);
satok683e2382011-07-12 08:28:52 +0900803 mImeSwitchPendingIntent = PendingIntent.getBroadcast(mContext, 0, intent, 0);
satokb858c732011-07-22 19:54:34 +0900804
805 mShowOngoingImeSwitcherForPhones = false;
satok7cfc0ed2011-06-20 21:29:36 +0900806
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900807 final IntentFilter broadcastFilter = new IntentFilter();
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900808 broadcastFilter.addAction(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
Amith Yamasani734983f2014-03-04 16:48:05 -0800809 broadcastFilter.addAction(Intent.ACTION_USER_ADDED);
810 broadcastFilter.addAction(Intent.ACTION_USER_REMOVED);
Christopher Tate7b9a28c2015-03-18 13:06:16 -0700811 broadcastFilter.addAction(Intent.ACTION_SETTING_RESTORED);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900812 mContext.registerReceiver(new ImmsBroadcastReceiver(), broadcastFilter);
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800813
satok7cfc0ed2011-06-20 21:29:36 +0900814 mNotificationShown = false;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900815 int userId = 0;
816 try {
817 ActivityManagerNative.getDefault().registerUserSwitchObserver(
Fyodor Kupolov6005b3f2015-11-23 17:41:50 -0800818 new SynchronousUserSwitchObserver() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900819 @Override
Fyodor Kupolov6005b3f2015-11-23 17:41:50 -0800820 public void onUserSwitching(int newUserId)
821 throws RemoteException {
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +0900822 synchronized(mMethodMap) {
823 switchUserLocked(newUserId);
824 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900825 }
826
827 @Override
828 public void onUserSwitchComplete(int newUserId) throws RemoteException {
829 }
Kenny Guy42979622015-04-13 18:03:05 +0000830
831 @Override
832 public void onForegroundProfileSwitch(int newProfileId) {
833 // Ignore.
834 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900835 });
836 userId = ActivityManagerNative.getDefault().getCurrentUser().id;
837 } catch (RemoteException e) {
838 Slog.w(TAG, "Couldn't get current user ID; guessing it's 0", e);
839 }
satok81f8b7c2012-12-04 20:42:56 +0900840 mMyPackageMonitor.register(mContext, null, UserHandle.ALL, true);
satok913a8922010-08-26 21:53:41 +0900841
satokd87c2592010-09-29 11:52:06 +0900842 // mSettings should be created before buildInputMethodListLocked
satokdf31ae62011-01-15 06:19:44 +0900843 mSettings = new InputMethodSettings(
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900844 mRes, context.getContentResolver(), mMethodMap, mMethodList, userId);
Svet Ganovadc1cf42015-06-15 16:36:24 -0700845
846 // Let the package manager query which are the default imes
847 // as they get certain permissions granted by default.
848 PackageManagerInternal packageManagerInternal = LocalServices.getService(
849 PackageManagerInternal.class);
850 packageManagerInternal.setImePackagesProvider(
851 new PackageManagerInternal.PackagesProvider() {
852 @Override
853 public String[] getPackages(int userId) {
854 synchronized (mMethodMap) {
855 final int currentUserId = mSettings.getCurrentUserId();
856 // TODO: We are switching the current user id in the settings
857 // object to query it and then revert the user id. Ideally, we
858 // should call a API in settings with the user id as an argument.
859 mSettings.setCurrentUserId(userId);
860 List<InputMethodInfo> imes = mSettings
861 .getEnabledInputMethodListLocked();
862 String[] packageNames = null;
863 if (imes != null) {
864 final int imeCount = imes.size();
865 packageNames = new String[imeCount];
866 for (int i = 0; i < imeCount; i++) {
867 InputMethodInfo ime = imes.get(i);
868 packageNames[i] = ime.getPackageName();
869 }
870 }
871 mSettings.setCurrentUserId(currentUserId);
872 return packageNames;
873 }
874 }
875 });
876
Kenny Guy2a764942014-04-02 13:29:20 +0100877 updateCurrentProfileIds();
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +0900878 mFileManager = new InputMethodFileManager(mMethodMap, userId);
Yohei Yukawa5a647b692014-05-22 12:49:00 +0900879 synchronized (mMethodMap) {
880 mSwitchingController = InputMethodSubtypeSwitchingController.createInstanceLocked(
881 mSettings, context);
882 }
satok0a1bcf42012-05-16 19:26:31 +0900883
884 // Just checking if defaultImiId is empty or not
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900885 final String defaultImiId = mSettings.getSelectedInputMethod();
Satoshi Kataokaf1367b72013-01-25 17:20:12 +0900886 if (DEBUG) {
887 Slog.d(TAG, "Initial default ime = " + defaultImiId);
888 }
satok0a1bcf42012-05-16 19:26:31 +0900889 mImeSelectedOnBoot = !TextUtils.isEmpty(defaultImiId);
890
Yohei Yukawa5a647b692014-05-22 12:49:00 +0900891 synchronized (mMethodMap) {
892 buildInputMethodListLocked(mMethodList, mMethodMap,
893 !mImeSelectedOnBoot /* resetDefaultEnabledIme */);
894 }
satokd87c2592010-09-29 11:52:06 +0900895 mSettings.enableAllIMEsIfThereIsNoEnabledIME();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800896
satok0a1bcf42012-05-16 19:26:31 +0900897 if (!mImeSelectedOnBoot) {
898 Slog.w(TAG, "No IME selected. Choose the most applicable IME.");
Yohei Yukawa5a647b692014-05-22 12:49:00 +0900899 synchronized (mMethodMap) {
900 resetDefaultImeLocked(context);
901 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800902 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800903
Yohei Yukawa5a647b692014-05-22 12:49:00 +0900904 synchronized (mMethodMap) {
Yohei Yukawa81482972015-06-04 00:58:59 -0700905 mSettingsObserver.registerContentObserverLocked(userId);
Yohei Yukawa5a647b692014-05-22 12:49:00 +0900906 updateFromSettingsLocked(true);
907 }
satok5b927c432012-05-01 20:09:34 +0900908
909 // IMMS wants to receive Intent.ACTION_LOCALE_CHANGED in order to update the current IME
910 // according to the new system locale.
911 final IntentFilter filter = new IntentFilter();
912 filter.addAction(Intent.ACTION_LOCALE_CHANGED);
913 mContext.registerReceiver(
914 new BroadcastReceiver() {
915 @Override
916 public void onReceive(Context context, Intent intent) {
917 synchronized(mMethodMap) {
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +0900918 resetStateIfCurrentLocaleChangedLocked();
satok5b927c432012-05-01 20:09:34 +0900919 }
920 }
921 }, filter);
922 }
923
satok5b927c432012-05-01 20:09:34 +0900924 private void resetDefaultImeLocked(Context context) {
925 // Do not reset the default (current) IME when it is a 3rd-party IME
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +0900926 if (mCurMethodId != null
927 && !InputMethodUtils.isSystemIme(mMethodMap.get(mCurMethodId))) {
satok5b927c432012-05-01 20:09:34 +0900928 return;
929 }
930
931 InputMethodInfo defIm = null;
932 for (InputMethodInfo imi : mMethodList) {
Yohei Yukawa6aa03782015-02-21 03:00:22 +0900933 if (defIm == null && mSystemReady) {
934 final Locale systemLocale = context.getResources().getConfiguration().locale;
935 if (InputMethodUtils.isSystemImeThatHasSubtypeOf(imi, context,
936 true /* checkDefaultAttribute */, systemLocale, false /* checkCountry */,
937 InputMethodUtils.SUBTYPE_MODE_ANY)) {
satok5b927c432012-05-01 20:09:34 +0900938 defIm = imi;
939 Slog.i(TAG, "Selected default: " + imi.getId());
940 }
941 }
942 }
943 if (defIm == null && mMethodList.size() > 0) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +0900944 defIm = InputMethodUtils.getMostApplicableDefaultIME(
945 mSettings.getEnabledInputMethodListLocked());
Hyejin Kim5baaaac2014-10-27 17:17:06 +0900946 if (defIm != null) {
947 Slog.i(TAG, "Default found, using " + defIm.getId());
948 } else {
949 Slog.i(TAG, "No default found");
950 }
satok5b927c432012-05-01 20:09:34 +0900951 }
952 if (defIm != null) {
953 setSelectedInputMethodAndSubtypeLocked(defIm, NOT_A_SUBTYPE_ID, false);
954 }
955 }
956
Satoshi Kataoka7f7535f2013-02-18 12:54:16 +0900957 private void resetAllInternalStateLocked(final boolean updateOnlyWhenLocaleChanged,
958 final boolean resetDefaultEnabledIme) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900959 if (!mSystemReady) {
960 // not system ready
961 return;
962 }
963 final Locale newLocale = mRes.getConfiguration().locale;
964 if (!updateOnlyWhenLocaleChanged
965 || (newLocale != null && !newLocale.equals(mLastSystemLocale))) {
966 if (!updateOnlyWhenLocaleChanged) {
967 hideCurrentInputLocked(0, null);
Yohei Yukawa33e81792015-11-17 21:14:42 -0800968 resetCurrentMethodAndClient(InputMethodClient.UNBIND_REASON_RESET_IME);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900969 }
970 if (DEBUG) {
971 Slog.i(TAG, "Locale has been changed to " + newLocale);
972 }
Satoshi Kataoka7f7535f2013-02-18 12:54:16 +0900973 buildInputMethodListLocked(mMethodList, mMethodMap, resetDefaultEnabledIme);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900974 if (!updateOnlyWhenLocaleChanged) {
975 final String selectedImiId = mSettings.getSelectedInputMethod();
976 if (TextUtils.isEmpty(selectedImiId)) {
977 // This is the first time of the user switch and
978 // set the current ime to the proper one.
979 resetDefaultImeLocked(mContext);
980 }
Satoshi Kataokad08a9232012-09-28 15:59:58 +0900981 } else {
982 // If the locale is changed, needs to reset the default ime
983 resetDefaultImeLocked(mContext);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900984 }
Dianne Hackbornfd7aded2013-01-22 17:10:23 -0800985 updateFromSettingsLocked(true);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900986 mLastSystemLocale = newLocale;
987 if (!updateOnlyWhenLocaleChanged) {
988 try {
989 startInputInnerLocked();
990 } catch (RuntimeException e) {
991 Slog.w(TAG, "Unexpected exception", e);
992 }
993 }
994 }
995 }
996
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +0900997 private void resetStateIfCurrentLocaleChangedLocked() {
Satoshi Kataoka7f7535f2013-02-18 12:54:16 +0900998 resetAllInternalStateLocked(true /* updateOnlyWhenLocaleChanged */,
999 true /* resetDefaultImeLocked */);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001000 }
1001
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +09001002 private void switchUserLocked(int newUserId) {
Yohei Yukawa90bf7082015-06-03 23:50:27 -07001003 if (DEBUG) Slog.d(TAG, "Switching user stage 1/3. newUserId=" + newUserId
1004 + " currentUserId=" + mSettings.getCurrentUserId());
1005
Yohei Yukawa81482972015-06-04 00:58:59 -07001006 // ContentObserver should be registered again when the user is changed
1007 mSettingsObserver.registerContentObserverLocked(newUserId);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001008 mSettings.setCurrentUserId(newUserId);
Kenny Guy2a764942014-04-02 13:29:20 +01001009 updateCurrentProfileIds();
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +09001010 // InputMethodFileManager should be reset when the user is changed
1011 mFileManager = new InputMethodFileManager(mMethodMap, newUserId);
Satoshi Kataoka7f7535f2013-02-18 12:54:16 +09001012 final String defaultImiId = mSettings.getSelectedInputMethod();
Yohei Yukawa90bf7082015-06-03 23:50:27 -07001013
1014 if (DEBUG) Slog.d(TAG, "Switching user stage 2/3. newUserId=" + newUserId
1015 + " defaultImiId=" + defaultImiId);
1016
Satoshi Kataoka7c4a2a12013-02-25 15:25:43 +09001017 // For secondary users, the list of enabled IMEs may not have been updated since the
1018 // callbacks to PackageMonitor are ignored for the secondary user. Here, defaultImiId may
1019 // not be empty even if the IME has been uninstalled by the primary user.
1020 // Even in such cases, IMMS works fine because it will find the most applicable
1021 // IME for that user.
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +09001022 final boolean initialUserSwitch = TextUtils.isEmpty(defaultImiId);
Satoshi Kataoka7f7535f2013-02-18 12:54:16 +09001023 resetAllInternalStateLocked(false /* updateOnlyWhenLocaleChanged */,
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +09001024 initialUserSwitch /* needsToResetDefaultIme */);
1025 if (initialUserSwitch) {
Yohei Yukawa094c71f2015-06-20 00:41:31 -07001026 InputMethodUtils.setNonSelectedSystemImesDisabledUntilUsed(mIPackageManager,
1027 mSettings.getEnabledInputMethodListLocked(), newUserId,
1028 mContext.getBasePackageName());
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +09001029 }
Yohei Yukawa90bf7082015-06-03 23:50:27 -07001030
1031 if (DEBUG) Slog.d(TAG, "Switching user stage 3/3. newUserId=" + newUserId
1032 + " selectedIme=" + mSettings.getSelectedInputMethod());
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001033 }
1034
Kenny Guy2a764942014-04-02 13:29:20 +01001035 void updateCurrentProfileIds() {
1036 List<UserInfo> profiles =
1037 UserManager.get(mContext).getProfiles(mSettings.getCurrentUserId());
1038 int[] currentProfileIds = new int[profiles.size()]; // profiles will not be null
1039 for (int i = 0; i < currentProfileIds.length; i++) {
1040 currentProfileIds[i] = profiles.get(i).id;
Amith Yamasani734983f2014-03-04 16:48:05 -08001041 }
Kenny Guy2a764942014-04-02 13:29:20 +01001042 mSettings.setCurrentProfileIds(currentProfileIds);
Amith Yamasani734983f2014-03-04 16:48:05 -08001043 }
1044
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001045 @Override
1046 public boolean onTransact(int code, Parcel data, Parcel reply, int flags)
1047 throws RemoteException {
1048 try {
1049 return super.onTransact(code, data, reply, flags);
1050 } catch (RuntimeException e) {
1051 // The input method manager only throws security exceptions, so let's
1052 // log all others.
1053 if (!(e instanceof SecurityException)) {
Dianne Hackborn164371f2013-10-01 19:10:13 -07001054 Slog.wtf(TAG, "Input Method Manager Crash", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001055 }
1056 throw e;
1057 }
1058 }
1059
Svetoslav Ganova0027152013-06-25 14:59:53 -07001060 public void systemRunning(StatusBarManagerService statusBar) {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001061 synchronized (mMethodMap) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001062 if (DEBUG) {
1063 Slog.d(TAG, "--- systemReady");
1064 }
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001065 if (!mSystemReady) {
1066 mSystemReady = true;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001067 mKeyguardManager =
1068 (KeyguardManager) mContext.getSystemService(Context.KEYGUARD_SERVICE);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001069 mNotificationManager = (NotificationManager)
1070 mContext.getSystemService(Context.NOTIFICATION_SERVICE);
1071 mStatusBar = statusBar;
Jason Monk3e189872016-01-12 09:10:34 -05001072 statusBar.setIconVisibility(mSlotIme, false);
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001073 updateSystemUiLocked(mCurToken, mImeWindowVis, mBackDisposition);
satokb858c732011-07-22 19:54:34 +09001074 mShowOngoingImeSwitcherForPhones = mRes.getBoolean(
1075 com.android.internal.R.bool.show_ongoing_ime_switcher);
satok01038492012-04-09 21:08:27 +09001076 if (mShowOngoingImeSwitcherForPhones) {
Seigo Nonaka7309b122015-08-17 18:34:13 -07001077 mWindowManagerInternal.setOnHardKeyboardStatusChangeListener(
satok01038492012-04-09 21:08:27 +09001078 mHardKeyboardListener);
1079 }
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09001080 buildInputMethodListLocked(mMethodList, mMethodMap,
1081 !mImeSelectedOnBoot /* resetDefaultEnabledIme */);
satok0a1bcf42012-05-16 19:26:31 +09001082 if (!mImeSelectedOnBoot) {
1083 Slog.w(TAG, "Reset the default IME as \"Resource\" is ready here.");
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +09001084 resetStateIfCurrentLocaleChangedLocked();
Yohei Yukawa094c71f2015-06-20 00:41:31 -07001085 InputMethodUtils.setNonSelectedSystemImesDisabledUntilUsed(mIPackageManager,
1086 mSettings.getEnabledInputMethodListLocked(),
1087 mSettings.getCurrentUserId(), mContext.getBasePackageName());
satok0a1bcf42012-05-16 19:26:31 +09001088 }
1089 mLastSystemLocale = mRes.getConfiguration().locale;
Dianne Hackborncc278702009-09-02 23:07:23 -07001090 try {
1091 startInputInnerLocked();
1092 } catch (RuntimeException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001093 Slog.w(TAG, "Unexpected exception", e);
Dianne Hackborncc278702009-09-02 23:07:23 -07001094 }
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001095 }
1096 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001097 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001098
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001099 // ---------------------------------------------------------------------------------------
1100 // Check whether or not this is a valid IPC. Assumes an IPC is valid when either
1101 // 1) it comes from the system process
1102 // 2) the calling process' user id is identical to the current user id IMMS thinks.
1103 private boolean calledFromValidUser() {
1104 final int uid = Binder.getCallingUid();
1105 final int userId = UserHandle.getUserId(uid);
1106 if (DEBUG) {
1107 Slog.d(TAG, "--- calledFromForegroundUserOrSystemProcess ? "
1108 + "calling uid = " + uid + " system uid = " + Process.SYSTEM_UID
1109 + " calling userId = " + userId + ", foreground user id = "
Satoshi Kataoka87c29142013-07-31 23:11:54 +09001110 + mSettings.getCurrentUserId() + ", calling pid = " + Binder.getCallingPid()
1111 + InputMethodUtils.getApiCallStack());
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001112 }
Kenny Guy2a764942014-04-02 13:29:20 +01001113 if (uid == Process.SYSTEM_UID || mSettings.isCurrentProfile(userId)) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001114 return true;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001115 }
Satoshi Kataoka135e5fb2012-09-28 18:25:06 +09001116
1117 // Caveat: A process which has INTERACT_ACROSS_USERS_FULL gets results for the
1118 // foreground user, not for the user of that process. Accordingly InputMethodManagerService
1119 // must not manage background users' states in any functions.
1120 // Note that privacy-sensitive IPCs, such as setInputMethod, are still securely guarded
1121 // by a token.
1122 if (mContext.checkCallingOrSelfPermission(
1123 android.Manifest.permission.INTERACT_ACROSS_USERS_FULL)
1124 == PackageManager.PERMISSION_GRANTED) {
1125 if (DEBUG) {
1126 Slog.d(TAG, "--- Access granted because the calling process has "
1127 + "the INTERACT_ACROSS_USERS_FULL permission");
1128 }
1129 return true;
1130 }
Seigo Nonakae27dc2b2015-08-14 18:21:27 -07001131 Slog.w(TAG, "--- IPC called from background users. Ignore. callers="
1132 + Debug.getCallers(10));
Satoshi Kataoka135e5fb2012-09-28 18:25:06 +09001133 return false;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001134 }
1135
Yohei Yukawa22c97be2014-06-04 19:43:36 +09001136
1137 /**
1138 * Returns true iff the caller is identified to be the current input method with the token.
1139 * @param token The window token given to the input method when it was started.
1140 * @return true if and only if non-null valid token is specified.
1141 */
1142 private boolean calledWithValidToken(IBinder token) {
1143 if (token == null || mCurToken != token) {
1144 return false;
1145 }
1146 return true;
1147 }
1148
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001149 private boolean bindCurrentInputMethodService(
1150 Intent service, ServiceConnection conn, int flags) {
1151 if (service == null || conn == null) {
1152 Slog.e(TAG, "--- bind failed: service = " + service + ", conn = " + conn);
1153 return false;
1154 }
Amith Yamasani27b89e62013-01-16 12:30:11 -08001155 return mContext.bindServiceAsUser(service, conn, flags,
1156 new UserHandle(mSettings.getCurrentUserId()));
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001157 }
1158
satoke7c6998e2011-06-03 17:57:59 +09001159 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001160 public List<InputMethodInfo> getInputMethodList() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001161 // TODO: Make this work even for non-current users?
1162 if (!calledFromValidUser()) {
1163 return Collections.emptyList();
1164 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001165 synchronized (mMethodMap) {
Yohei Yukawab0377bb2015-08-10 21:06:30 -07001166 return new ArrayList<>(mMethodList);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001167 }
1168 }
1169
satoke7c6998e2011-06-03 17:57:59 +09001170 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001171 public List<InputMethodInfo> getEnabledInputMethodList() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001172 // TODO: Make this work even for non-current users?
1173 if (!calledFromValidUser()) {
1174 return Collections.emptyList();
1175 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001176 synchronized (mMethodMap) {
satokd87c2592010-09-29 11:52:06 +09001177 return mSettings.getEnabledInputMethodListLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001178 }
1179 }
1180
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001181 /**
Satoshi Kataokab3c21ac2013-08-07 15:43:29 +09001182 * @param imiId if null, returns enabled subtypes for the current imi
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001183 * @return enabled subtypes of the specified imi
1184 */
satoke7c6998e2011-06-03 17:57:59 +09001185 @Override
Satoshi Kataokab3c21ac2013-08-07 15:43:29 +09001186 public List<InputMethodSubtype> getEnabledInputMethodSubtypeList(String imiId,
satok16331c82010-12-20 23:48:46 +09001187 boolean allowsImplicitlySelectedSubtypes) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001188 // TODO: Make this work even for non-current users?
1189 if (!calledFromValidUser()) {
Yohei Yukawab0377bb2015-08-10 21:06:30 -07001190 return Collections.emptyList();
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001191 }
satok67ddf9c2010-11-17 09:45:54 +09001192 synchronized (mMethodMap) {
Satoshi Kataokab3c21ac2013-08-07 15:43:29 +09001193 final InputMethodInfo imi;
1194 if (imiId == null && mCurMethodId != null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001195 imi = mMethodMap.get(mCurMethodId);
Satoshi Kataokab3c21ac2013-08-07 15:43:29 +09001196 } else {
1197 imi = mMethodMap.get(imiId);
1198 }
1199 if (imi == null) {
Yohei Yukawab0377bb2015-08-10 21:06:30 -07001200 return Collections.emptyList();
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001201 }
1202 return mSettings.getEnabledInputMethodSubtypeListLocked(
1203 mContext, imi, allowsImplicitlySelectedSubtypes);
satok67ddf9c2010-11-17 09:45:54 +09001204 }
1205 }
1206
satoke7c6998e2011-06-03 17:57:59 +09001207 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001208 public void addClient(IInputMethodClient client,
1209 IInputContext inputContext, int uid, int pid) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001210 if (!calledFromValidUser()) {
1211 return;
1212 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001213 synchronized (mMethodMap) {
1214 mClients.put(client.asBinder(), new ClientState(client,
1215 inputContext, uid, pid));
1216 }
1217 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001218
satoke7c6998e2011-06-03 17:57:59 +09001219 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001220 public void removeClient(IInputMethodClient client) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001221 if (!calledFromValidUser()) {
1222 return;
1223 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001224 synchronized (mMethodMap) {
Jeff Brownc28867a2013-03-26 15:42:39 -07001225 ClientState cs = mClients.remove(client.asBinder());
1226 if (cs != null) {
1227 clearClientSessionLocked(cs);
Yohei Yukawa072b1b52015-11-18 15:54:34 -08001228 if (mCurClient == cs) {
1229 mCurClient = null;
1230 }
Yohei Yukawae39d4ed2015-11-19 03:38:49 -08001231 if (mCurFocusedWindowClient == cs) {
1232 mCurFocusedWindowClient = null;
1233 }
Jeff Brownc28867a2013-03-26 15:42:39 -07001234 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001235 }
1236 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001237
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001238 void executeOrSendMessage(IInterface target, Message msg) {
1239 if (target.asBinder() instanceof Binder) {
1240 mCaller.sendMessage(msg);
1241 } else {
1242 handleMessage(msg);
1243 msg.recycle();
1244 }
1245 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001246
Yohei Yukawa33e81792015-11-17 21:14:42 -08001247 void unbindCurrentClientLocked(
1248 /* @InputMethodClient.UnbindReason */ final int unbindClientReason) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001249 if (mCurClient != null) {
Yohei Yukawa35d3f372015-11-25 11:07:19 -08001250 if (DEBUG) Slog.v(TAG, "unbindCurrentInputLocked: client="
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001251 + mCurClient.client.asBinder());
1252 if (mBoundToMethod) {
1253 mBoundToMethod = false;
1254 if (mCurMethod != null) {
1255 executeOrSendMessage(mCurMethod, mCaller.obtainMessageO(
1256 MSG_UNBIND_INPUT, mCurMethod));
1257 }
1258 }
Dianne Hackborna6e41342012-05-22 16:30:34 -07001259
1260 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
1261 MSG_SET_ACTIVE, 0, mCurClient));
Yohei Yukawa33e81792015-11-17 21:14:42 -08001262 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIIO(
1263 MSG_UNBIND_CLIENT, mCurSeq, unbindClientReason, mCurClient.client));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001264 mCurClient.sessionRequested = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001265 mCurClient = null;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001266
The Android Open Source Project10592532009-03-18 17:39:46 -07001267 hideInputMethodMenuLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001268 }
1269 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001270
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001271 private int getImeShowFlags() {
1272 int flags = 0;
1273 if (mShowForced) {
1274 flags |= InputMethod.SHOW_FORCED
1275 | InputMethod.SHOW_EXPLICIT;
1276 } else if (mShowExplicitlyRequested) {
1277 flags |= InputMethod.SHOW_EXPLICIT;
1278 }
1279 return flags;
1280 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001281
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001282 private int getAppShowFlags() {
1283 int flags = 0;
1284 if (mShowForced) {
1285 flags |= InputMethodManager.SHOW_FORCED;
1286 } else if (!mShowExplicitlyRequested) {
1287 flags |= InputMethodManager.SHOW_IMPLICIT;
1288 }
1289 return flags;
1290 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001291
Dianne Hackborn7663d802012-02-24 13:08:49 -08001292 InputBindResult attachNewInputLocked(boolean initial) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001293 if (!mBoundToMethod) {
1294 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
1295 MSG_BIND_INPUT, mCurMethod, mCurClient.binding));
1296 mBoundToMethod = true;
1297 }
1298 final SessionState session = mCurClient.curSession;
1299 if (initial) {
1300 executeOrSendMessage(session.method, mCaller.obtainMessageOOO(
1301 MSG_START_INPUT, session, mCurInputContext, mCurAttribute));
1302 } else {
1303 executeOrSendMessage(session.method, mCaller.obtainMessageOOO(
1304 MSG_RESTART_INPUT, session, mCurInputContext, mCurAttribute));
1305 }
1306 if (mShowRequested) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001307 if (DEBUG) Slog.v(TAG, "Attach new input asks to show input");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001308 showCurrentInputLocked(getAppShowFlags(), null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001309 }
Jeff Brown1951ce82013-04-04 22:45:12 -07001310 return new InputBindResult(session.session,
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09001311 (session.channel != null ? session.channel.dup() : null),
1312 mCurId, mCurSeq, mCurUserActionNotificationSequenceNumber);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001313 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001314
Yohei Yukawa35d3f372015-11-25 11:07:19 -08001315 InputBindResult startInputLocked(
1316 /* @InputMethodClient.StartInputReason */ final int startInputReason,
1317 IInputMethodClient client, IInputContext inputContext, EditorInfo attribute,
1318 int controlFlags) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001319 // If no method is currently selected, do nothing.
1320 if (mCurMethodId == null) {
1321 return mNoBinding;
1322 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001323
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001324 ClientState cs = mClients.get(client.asBinder());
1325 if (cs == null) {
1326 throw new IllegalArgumentException("unknown client "
1327 + client.asBinder());
1328 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001329
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001330 try {
1331 if (!mIWindowManager.inputMethodClientHasFocus(cs.client)) {
1332 // Check with the window manager to make sure this client actually
1333 // has a window with focus. If not, reject. This is thread safe
1334 // because if the focus changes some time before or after, the
1335 // next client receiving focus that has any interest in input will
1336 // be calling through here after that change happens.
Joe Onorato8a9b2202010-02-26 18:56:32 -08001337 Slog.w(TAG, "Starting input on non-focused client " + cs.client
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001338 + " (uid=" + cs.uid + " pid=" + cs.pid + ")");
1339 return null;
1340 }
1341 } catch (RemoteException e) {
1342 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001343
Dianne Hackborn7663d802012-02-24 13:08:49 -08001344 return startInputUncheckedLocked(cs, inputContext, attribute, controlFlags);
1345 }
1346
Yohei Yukawa35d3f372015-11-25 11:07:19 -08001347 InputBindResult startInputUncheckedLocked(@NonNull ClientState cs, IInputContext inputContext,
1348 @NonNull EditorInfo attribute, int controlFlags) {
Dianne Hackborn7663d802012-02-24 13:08:49 -08001349 // If no method is currently selected, do nothing.
1350 if (mCurMethodId == null) {
1351 return mNoBinding;
1352 }
1353
Yohei Yukawad57ba672015-06-08 16:39:46 -07001354 if (!InputMethodUtils.checkIfPackageBelongsToUid(mAppOpsManager, cs.uid,
1355 attribute.packageName)) {
1356 Slog.e(TAG, "Rejecting this client as it reported an invalid package name."
1357 + " uid=" + cs.uid + " package=" + attribute.packageName);
1358 return mNoBinding;
Yohei Yukawa0f3ad12015-04-06 16:48:24 -07001359 }
1360
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001361 if (mCurClient != cs) {
John Spurlocke0980502013-10-25 11:59:29 -04001362 // Was the keyguard locked when switching over to the new client?
1363 mCurClientInKeyguard = isKeyguardLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001364 // If the client is changing, we need to switch over to the new
1365 // one.
Yohei Yukawa33e81792015-11-17 21:14:42 -08001366 unbindCurrentClientLocked(InputMethodClient.UNBIND_REASON_SWITCH_CLIENT);
Yohei Yukawa35d3f372015-11-25 11:07:19 -08001367 if (DEBUG) Slog.v(TAG, "switching to client: client="
John Spurlocke0980502013-10-25 11:59:29 -04001368 + cs.client.asBinder() + " keyguard=" + mCurClientInKeyguard);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001369
1370 // If the screen is on, inform the new client it is active
Yohei Yukawafa6e0a82015-07-23 15:08:59 -07001371 if (mIsInteractive) {
Dianne Hackborna6e41342012-05-22 16:30:34 -07001372 executeOrSendMessage(cs.client, mCaller.obtainMessageIO(
Yohei Yukawafa6e0a82015-07-23 15:08:59 -07001373 MSG_SET_ACTIVE, mIsInteractive ? 1 : 0, cs));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001374 }
1375 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001376
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001377 // Bump up the sequence for this client and attach it.
1378 mCurSeq++;
1379 if (mCurSeq <= 0) mCurSeq = 1;
1380 mCurClient = cs;
1381 mCurInputContext = inputContext;
1382 mCurAttribute = attribute;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001383
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001384 // Check if the input method is changing.
1385 if (mCurId != null && mCurId.equals(mCurMethodId)) {
1386 if (cs.curSession != null) {
1387 // Fast case: if we are already connected to the input method,
1388 // then just return it.
Dianne Hackborn7663d802012-02-24 13:08:49 -08001389 return attachNewInputLocked(
1390 (controlFlags&InputMethodManager.CONTROL_START_INITIAL) != 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001391 }
1392 if (mHaveConnection) {
1393 if (mCurMethod != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001394 // Return to client, and we will get back with it when
1395 // we have had a session made for it.
Jeff Brownc28867a2013-03-26 15:42:39 -07001396 requestClientSessionLocked(cs);
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09001397 return new InputBindResult(null, null, mCurId, mCurSeq,
1398 mCurUserActionNotificationSequenceNumber);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001399 } else if (SystemClock.uptimeMillis()
1400 < (mLastBindTime+TIME_TO_RECONNECT)) {
1401 // In this case we have connected to the service, but
1402 // don't yet have its interface. If it hasn't been too
1403 // long since we did the connection, we'll return to
1404 // the client and wait to get the service interface so
1405 // we can report back. If it has been too long, we want
1406 // to fall through so we can try a disconnect/reconnect
1407 // to see if we can get back in touch with the service.
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09001408 return new InputBindResult(null, null, mCurId, mCurSeq,
1409 mCurUserActionNotificationSequenceNumber);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001410 } else {
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001411 EventLog.writeEvent(EventLogTags.IMF_FORCE_RECONNECT_IME,
1412 mCurMethodId, SystemClock.uptimeMillis()-mLastBindTime, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001413 }
1414 }
1415 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001416
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001417 return startInputInnerLocked();
1418 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001419
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001420 InputBindResult startInputInnerLocked() {
1421 if (mCurMethodId == null) {
1422 return mNoBinding;
1423 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001424
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001425 if (!mSystemReady) {
1426 // If the system is not yet ready, we shouldn't be running third
1427 // party code.
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09001428 return new InputBindResult(null, null, mCurMethodId, mCurSeq,
1429 mCurUserActionNotificationSequenceNumber);
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001430 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001431
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001432 InputMethodInfo info = mMethodMap.get(mCurMethodId);
1433 if (info == null) {
1434 throw new IllegalArgumentException("Unknown id: " + mCurMethodId);
1435 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001436
Yohei Yukawabc7b5262015-11-17 17:38:41 -08001437 unbindCurrentMethodLocked(true);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001438
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001439 mCurIntent = new Intent(InputMethod.SERVICE_INTERFACE);
1440 mCurIntent.setComponent(info.getComponent());
Dianne Hackborndd9b82c2009-09-03 00:18:47 -07001441 mCurIntent.putExtra(Intent.EXTRA_CLIENT_LABEL,
1442 com.android.internal.R.string.input_method_binding_label);
1443 mCurIntent.putExtra(Intent.EXTRA_CLIENT_INTENT, PendingIntent.getActivity(
1444 mContext, 0, new Intent(Settings.ACTION_INPUT_METHOD_SETTINGS), 0));
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001445 if (bindCurrentInputMethodService(mCurIntent, this, Context.BIND_AUTO_CREATE
Dianne Hackbornf0f94d12014-03-17 16:04:21 -07001446 | Context.BIND_NOT_VISIBLE | Context.BIND_NOT_FOREGROUND
1447 | Context.BIND_SHOWING_UI)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001448 mLastBindTime = SystemClock.uptimeMillis();
1449 mHaveConnection = true;
1450 mCurId = info.getId();
1451 mCurToken = new Binder();
1452 try {
Craig Mautnerca0ac712013-03-14 09:43:02 -07001453 if (true || DEBUG) Slog.v(TAG, "Adding window token: " + mCurToken);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001454 mIWindowManager.addWindowToken(mCurToken,
1455 WindowManager.LayoutParams.TYPE_INPUT_METHOD);
1456 } catch (RemoteException e) {
1457 }
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09001458 return new InputBindResult(null, null, mCurId, mCurSeq,
1459 mCurUserActionNotificationSequenceNumber);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001460 } else {
1461 mCurIntent = null;
Joe Onorato8a9b2202010-02-26 18:56:32 -08001462 Slog.w(TAG, "Failure connecting to input method service: "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001463 + mCurIntent);
1464 }
1465 return null;
1466 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001467
satoke7c6998e2011-06-03 17:57:59 +09001468 @Override
Yohei Yukawa35d3f372015-11-25 11:07:19 -08001469 public InputBindResult startInput(
1470 /* @InputMethodClient.StartInputReason */ final int startInputReason,
1471 IInputMethodClient client, IInputContext inputContext, EditorInfo attribute,
1472 int controlFlags) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001473 if (!calledFromValidUser()) {
1474 return null;
1475 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001476 synchronized (mMethodMap) {
Yohei Yukawa35d3f372015-11-25 11:07:19 -08001477 if (DEBUG) {
1478 Slog.v(TAG, "startInput: reason="
1479 + InputMethodClient.getStartInputReason(startInputReason)
1480 + " client = " + client.asBinder()
1481 + " inputContext=" + inputContext
1482 + " attribute=" + attribute
1483 + " controlFlags=#" + Integer.toHexString(controlFlags));
1484 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001485 final long ident = Binder.clearCallingIdentity();
1486 try {
Yohei Yukawa35d3f372015-11-25 11:07:19 -08001487 return startInputLocked(startInputReason, client, inputContext, attribute,
1488 controlFlags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001489 } finally {
1490 Binder.restoreCallingIdentity(ident);
1491 }
1492 }
1493 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001494
satoke7c6998e2011-06-03 17:57:59 +09001495 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001496 public void finishInput(IInputMethodClient client) {
1497 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001498
satoke7c6998e2011-06-03 17:57:59 +09001499 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001500 public void onServiceConnected(ComponentName name, IBinder service) {
1501 synchronized (mMethodMap) {
1502 if (mCurIntent != null && name.equals(mCurIntent.getComponent())) {
1503 mCurMethod = IInputMethod.Stub.asInterface(service);
Dianne Hackborncc278702009-09-02 23:07:23 -07001504 if (mCurToken == null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001505 Slog.w(TAG, "Service connected without a token!");
Yohei Yukawabc7b5262015-11-17 17:38:41 -08001506 unbindCurrentMethodLocked(false);
Dianne Hackborncc278702009-09-02 23:07:23 -07001507 return;
1508 }
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07001509 if (DEBUG) Slog.v(TAG, "Initiating attach with token: " + mCurToken);
Dianne Hackborncc278702009-09-02 23:07:23 -07001510 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
1511 MSG_ATTACH_TOKEN, mCurMethod, mCurToken));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001512 if (mCurClient != null) {
Jeff Brownc28867a2013-03-26 15:42:39 -07001513 clearClientSessionLocked(mCurClient);
1514 requestClientSessionLocked(mCurClient);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001515 }
1516 }
1517 }
1518 }
1519
Jeff Brownc28867a2013-03-26 15:42:39 -07001520 void onSessionCreated(IInputMethod method, IInputMethodSession session,
1521 InputChannel channel) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001522 synchronized (mMethodMap) {
1523 if (mCurMethod != null && method != null
1524 && mCurMethod.asBinder() == method.asBinder()) {
1525 if (mCurClient != null) {
Jeff Brownc28867a2013-03-26 15:42:39 -07001526 clearClientSessionLocked(mCurClient);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001527 mCurClient.curSession = new SessionState(mCurClient,
Jeff Brownc28867a2013-03-26 15:42:39 -07001528 method, session, channel);
Dianne Hackborn7663d802012-02-24 13:08:49 -08001529 InputBindResult res = attachNewInputLocked(true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001530 if (res.method != null) {
1531 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageOO(
Yohei Yukawa33e81792015-11-17 21:14:42 -08001532 MSG_BIND_CLIENT, mCurClient.client, res));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001533 }
Jeff Brownc28867a2013-03-26 15:42:39 -07001534 return;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001535 }
1536 }
1537 }
Jeff Brownc28867a2013-03-26 15:42:39 -07001538
1539 // Session abandoned. Close its associated input channel.
1540 channel.dispose();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001541 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001542
Yohei Yukawabc7b5262015-11-17 17:38:41 -08001543 void unbindCurrentMethodLocked(boolean savePosition) {
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07001544 if (mVisibleBound) {
1545 mContext.unbindService(mVisibleConnection);
1546 mVisibleBound = false;
1547 }
1548
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001549 if (mHaveConnection) {
1550 mContext.unbindService(this);
1551 mHaveConnection = false;
1552 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001553
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001554 if (mCurToken != null) {
1555 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001556 if (DEBUG) Slog.v(TAG, "Removing window token: " + mCurToken);
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07001557 if ((mImeWindowVis & InputMethodService.IME_ACTIVE) != 0 && savePosition) {
satoke0a99412012-05-10 02:22:58 +09001558 // The current IME is shown. Hence an IME switch (transition) is happening.
Seigo Nonaka7309b122015-08-17 18:34:13 -07001559 mWindowManagerInternal.saveLastInputMethodWindowForTransition();
satoke0a99412012-05-10 02:22:58 +09001560 }
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001561 mIWindowManager.removeWindowToken(mCurToken);
1562 } catch (RemoteException e) {
1563 }
1564 mCurToken = null;
1565 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001566
The Android Open Source Project10592532009-03-18 17:39:46 -07001567 mCurId = null;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001568 clearCurMethodLocked();
Yohei Yukawabc7b5262015-11-17 17:38:41 -08001569 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001570
Yohei Yukawa33e81792015-11-17 21:14:42 -08001571 void resetCurrentMethodAndClient(
1572 /* @InputMethodClient.UnbindReason */ final int unbindClientReason) {
Yohei Yukawabc7b5262015-11-17 17:38:41 -08001573 mCurMethodId = null;
1574 unbindCurrentMethodLocked(false);
Yohei Yukawa33e81792015-11-17 21:14:42 -08001575 unbindCurrentClientLocked(unbindClientReason);
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001576 }
Jeff Brownc28867a2013-03-26 15:42:39 -07001577
1578 void requestClientSessionLocked(ClientState cs) {
1579 if (!cs.sessionRequested) {
1580 if (DEBUG) Slog.v(TAG, "Creating new session for client " + cs);
1581 InputChannel[] channels = InputChannel.openInputChannelPair(cs.toString());
1582 cs.sessionRequested = true;
1583 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOOO(
1584 MSG_CREATE_SESSION, mCurMethod, channels[1],
1585 new MethodCallback(this, mCurMethod, channels[0])));
1586 }
1587 }
1588
1589 void clearClientSessionLocked(ClientState cs) {
1590 finishSessionLocked(cs.curSession);
1591 cs.curSession = null;
1592 cs.sessionRequested = false;
1593 }
1594
1595 private void finishSessionLocked(SessionState sessionState) {
1596 if (sessionState != null) {
1597 if (sessionState.session != null) {
1598 try {
1599 sessionState.session.finishSession();
1600 } catch (RemoteException e) {
1601 Slog.w(TAG, "Session failed to close due to remote exception", e);
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001602 updateSystemUiLocked(mCurToken, 0 /* vis */, mBackDisposition);
Jeff Brownc28867a2013-03-26 15:42:39 -07001603 }
1604 sessionState.session = null;
1605 }
1606 if (sessionState.channel != null) {
1607 sessionState.channel.dispose();
1608 sessionState.channel = null;
Devin Taylor0c33ed22010-02-23 13:26:46 -06001609 }
1610 }
1611 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001612
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001613 void clearCurMethodLocked() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001614 if (mCurMethod != null) {
1615 for (ClientState cs : mClients.values()) {
Jeff Brownc28867a2013-03-26 15:42:39 -07001616 clearClientSessionLocked(cs);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001617 }
Devin Taylor0c33ed22010-02-23 13:26:46 -06001618
Jeff Brownc28867a2013-03-26 15:42:39 -07001619 finishSessionLocked(mEnabledSession);
Devin Taylor0c33ed22010-02-23 13:26:46 -06001620 mEnabledSession = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001621 mCurMethod = null;
1622 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07001623 if (mStatusBar != null) {
Jason Monk3e189872016-01-12 09:10:34 -05001624 mStatusBar.setIconVisibility(mSlotIme, false);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001625 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001626 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001627
satoke7c6998e2011-06-03 17:57:59 +09001628 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001629 public void onServiceDisconnected(ComponentName name) {
1630 synchronized (mMethodMap) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001631 if (DEBUG) Slog.v(TAG, "Service disconnected: " + name
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001632 + " mCurIntent=" + mCurIntent);
1633 if (mCurMethod != null && mCurIntent != null
1634 && name.equals(mCurIntent.getComponent())) {
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001635 clearCurMethodLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001636 // We consider this to be a new bind attempt, since the system
1637 // should now try to restart the service for us.
1638 mLastBindTime = SystemClock.uptimeMillis();
1639 mShowRequested = mInputShown;
1640 mInputShown = false;
1641 if (mCurClient != null) {
Yohei Yukawa33e81792015-11-17 21:14:42 -08001642 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIIO(
1643 MSG_UNBIND_CLIENT, InputMethodClient.UNBIND_REASON_DISCONNECT_IME,
1644 mCurSeq, mCurClient.client));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001645 }
1646 }
1647 }
1648 }
1649
satokf9f01002011-05-19 21:31:50 +09001650 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001651 public void updateStatusIcon(IBinder token, String packageName, int iconId) {
1652 long ident = Binder.clearCallingIdentity();
1653 try {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001654 synchronized (mMethodMap) {
Yohei Yukawaa0755742014-06-04 20:28:18 +09001655 if (!calledWithValidToken(token)) {
1656 final int uid = Binder.getCallingUid();
1657 Slog.e(TAG, "Ignoring updateStatusIcon due to an invalid token. uid:" + uid
1658 + " token:" + token);
1659 return;
1660 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001661 if (iconId == 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001662 if (DEBUG) Slog.d(TAG, "hide the small icon for the input method");
Dianne Hackborn661cd522011-08-22 00:26:20 -07001663 if (mStatusBar != null) {
Jason Monk3e189872016-01-12 09:10:34 -05001664 mStatusBar.setIconVisibility(mSlotIme, false);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001665 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001666 } else if (packageName != null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001667 if (DEBUG) Slog.d(TAG, "show a small icon for the input method");
Svetoslav Ganov6179ea32011-06-28 01:12:41 -07001668 CharSequence contentDescription = null;
1669 try {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001670 // Use PackageManager to load label
1671 final PackageManager packageManager = mContext.getPackageManager();
Svetoslav Ganov6179ea32011-06-28 01:12:41 -07001672 contentDescription = packageManager.getApplicationLabel(
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001673 mIPackageManager.getApplicationInfo(packageName, 0,
1674 mSettings.getCurrentUserId()));
1675 } catch (RemoteException e) {
Svetoslav Ganov6179ea32011-06-28 01:12:41 -07001676 /* ignore */
1677 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07001678 if (mStatusBar != null) {
Jason Monk3e189872016-01-12 09:10:34 -05001679 mStatusBar.setIcon(mSlotIme, packageName, iconId, 0,
Dianne Hackborn661cd522011-08-22 00:26:20 -07001680 contentDescription != null
1681 ? contentDescription.toString() : null);
Jason Monk3e189872016-01-12 09:10:34 -05001682 mStatusBar.setIconVisibility(mSlotIme, true);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001683 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001684 }
1685 }
1686 } finally {
1687 Binder.restoreCallingIdentity(ident);
1688 }
1689 }
1690
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001691 private boolean shouldShowImeSwitcherLocked(int visibility) {
satok7cfc0ed2011-06-20 21:29:36 +09001692 if (!mShowOngoingImeSwitcherForPhones) return false;
Jason Monk807ef762014-05-08 15:47:46 -04001693 if (mSwitchingDialog != null) return false;
satok2c93efc2012-04-02 19:33:47 +09001694 if (isScreenLocked()) return false;
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001695 if ((visibility & InputMethodService.IME_ACTIVE) == 0) return false;
Seigo Nonaka7309b122015-08-17 18:34:13 -07001696 if (mWindowManagerInternal.isHardKeyboardAvailable()) {
Yohei Yukawac6c7cd22015-05-12 15:00:33 -07001697 // When physical keyboard is attached, we show the ime switcher (or notification if
1698 // NavBar is not available) because SHOW_IME_WITH_HARD_KEYBOARD settings currently
1699 // exists in the IME switcher dialog. Might be OK to remove this condition once
1700 // SHOW_IME_WITH_HARD_KEYBOARD settings finds a good place to live.
1701 return true;
1702 }
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001703 if ((visibility & InputMethodService.IME_VISIBLE) == 0) return false;
Yohei Yukawac6c7cd22015-05-12 15:00:33 -07001704
1705 List<InputMethodInfo> imis = mSettings.getEnabledInputMethodListLocked();
1706 final int N = imis.size();
1707 if (N > 2) return true;
1708 if (N < 1) return false;
1709 int nonAuxCount = 0;
1710 int auxCount = 0;
1711 InputMethodSubtype nonAuxSubtype = null;
1712 InputMethodSubtype auxSubtype = null;
1713 for(int i = 0; i < N; ++i) {
1714 final InputMethodInfo imi = imis.get(i);
1715 final List<InputMethodSubtype> subtypes =
1716 mSettings.getEnabledInputMethodSubtypeListLocked(mContext, imi, true);
1717 final int subtypeCount = subtypes.size();
1718 if (subtypeCount == 0) {
1719 ++nonAuxCount;
1720 } else {
1721 for (int j = 0; j < subtypeCount; ++j) {
1722 final InputMethodSubtype subtype = subtypes.get(j);
1723 if (!subtype.isAuxiliary()) {
1724 ++nonAuxCount;
1725 nonAuxSubtype = subtype;
1726 } else {
1727 ++auxCount;
1728 auxSubtype = subtype;
satok7cfc0ed2011-06-20 21:29:36 +09001729 }
1730 }
satok7cfc0ed2011-06-20 21:29:36 +09001731 }
1732 }
Yohei Yukawac6c7cd22015-05-12 15:00:33 -07001733 if (nonAuxCount > 1 || auxCount > 1) {
1734 return true;
1735 } else if (nonAuxCount == 1 && auxCount == 1) {
1736 if (nonAuxSubtype != null && auxSubtype != null
1737 && (nonAuxSubtype.getLocale().equals(auxSubtype.getLocale())
1738 || auxSubtype.overridesImplicitlyEnabledSubtype()
1739 || nonAuxSubtype.overridesImplicitlyEnabledSubtype())
1740 && nonAuxSubtype.containsExtraValueKey(TAG_TRY_SUPPRESSING_IME_SWITCHER)) {
1741 return false;
1742 }
1743 return true;
1744 }
1745 return false;
satok7cfc0ed2011-06-20 21:29:36 +09001746 }
1747
John Spurlocke0980502013-10-25 11:59:29 -04001748 private boolean isKeyguardLocked() {
1749 return mKeyguardManager != null && mKeyguardManager.isKeyguardLocked();
1750 }
1751
satokdbf29502011-08-25 15:28:23 +09001752 @SuppressWarnings("deprecation")
satokf9f01002011-05-19 21:31:50 +09001753 @Override
Joe Onorato857fd9b2011-01-27 15:08:35 -08001754 public void setImeWindowStatus(IBinder token, int vis, int backDisposition) {
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001755 if (!calledWithValidToken(token)) {
1756 final int uid = Binder.getCallingUid();
1757 Slog.e(TAG, "Ignoring setImeWindowStatus due to an invalid token. uid:" + uid
1758 + " token:" + token);
1759 return;
1760 }
1761
1762 synchronized (mMethodMap) {
1763 mImeWindowVis = vis;
1764 mBackDisposition = backDisposition;
1765 updateSystemUiLocked(token, vis, backDisposition);
1766 }
1767 }
1768
1769 private void updateSystemUi(IBinder token, int vis, int backDisposition) {
1770 synchronized (mMethodMap) {
1771 updateSystemUiLocked(token, vis, backDisposition);
1772 }
1773 }
1774
1775 // Caution! This method is called in this class. Handle multi-user carefully
1776 private void updateSystemUiLocked(IBinder token, int vis, int backDisposition) {
1777 if (!calledWithValidToken(token)) {
1778 final int uid = Binder.getCallingUid();
1779 Slog.e(TAG, "Ignoring updateSystemUiLocked due to an invalid token. uid:" + uid
1780 + " token:" + token);
1781 return;
1782 }
1783
1784 // TODO: Move this clearing calling identity block to setImeWindowStatus after making sure
1785 // all updateSystemUi happens on system previlege.
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001786 final long ident = Binder.clearCallingIdentity();
satok06487a52010-10-29 11:37:18 +09001787 try {
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001788 // apply policy for binder calls
1789 if (vis != 0 && isKeyguardLocked() && !mCurClientInKeyguard) {
1790 vis = 0;
satok06487a52010-10-29 11:37:18 +09001791 }
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001792 // mImeWindowVis should be updated before calling shouldShowImeSwitcherLocked().
1793 final boolean needsToShowImeSwitcher = shouldShowImeSwitcherLocked(vis);
1794 if (mStatusBar != null) {
1795 mStatusBar.setImeWindowStatus(token, vis, backDisposition,
1796 needsToShowImeSwitcher);
1797 }
1798 final InputMethodInfo imi = mMethodMap.get(mCurMethodId);
1799 if (imi != null && needsToShowImeSwitcher) {
1800 // Used to load label
1801 final CharSequence title = mRes.getText(
1802 com.android.internal.R.string.select_input_method);
1803 final CharSequence summary = InputMethodUtils.getImeAndSubtypeDisplayName(
1804 mContext, imi, mCurrentSubtype);
Chris Wren1ce4b6d2015-06-11 10:19:43 -04001805 mImeSwitcherNotification.setContentTitle(title)
1806 .setContentText(summary)
1807 .setContentIntent(mImeSwitchPendingIntent);
Seigo Nonaka7309b122015-08-17 18:34:13 -07001808 try {
1809 if ((mNotificationManager != null)
1810 && !mIWindowManager.hasNavigationBar()) {
1811 if (DEBUG) {
1812 Slog.d(TAG, "--- show notification: label = " + summary);
1813 }
1814 mNotificationManager.notifyAsUser(null,
1815 com.android.internal.R.string.select_input_method,
1816 mImeSwitcherNotification.build(), UserHandle.ALL);
1817 mNotificationShown = true;
Dianne Hackborn661cd522011-08-22 00:26:20 -07001818 }
Seigo Nonaka7309b122015-08-17 18:34:13 -07001819 } catch (RemoteException e) {
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001820 }
1821 } else {
1822 if (mNotificationShown && mNotificationManager != null) {
1823 if (DEBUG) {
1824 Slog.d(TAG, "--- hide notification");
satok7cfc0ed2011-06-20 21:29:36 +09001825 }
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001826 mNotificationManager.cancelAsUser(null,
1827 com.android.internal.R.string.select_input_method, UserHandle.ALL);
1828 mNotificationShown = false;
satok7cfc0ed2011-06-20 21:29:36 +09001829 }
satok06487a52010-10-29 11:37:18 +09001830 }
1831 } finally {
1832 Binder.restoreCallingIdentity(ident);
1833 }
1834 }
1835
satoke7c6998e2011-06-03 17:57:59 +09001836 @Override
satokf9f01002011-05-19 21:31:50 +09001837 public void registerSuggestionSpansForNotification(SuggestionSpan[] spans) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001838 if (!calledFromValidUser()) {
1839 return;
1840 }
satokf9f01002011-05-19 21:31:50 +09001841 synchronized (mMethodMap) {
1842 final InputMethodInfo currentImi = mMethodMap.get(mCurMethodId);
1843 for (int i = 0; i < spans.length; ++i) {
1844 SuggestionSpan ss = spans[i];
satok42c5a162011-05-26 16:46:14 +09001845 if (!TextUtils.isEmpty(ss.getNotificationTargetClassName())) {
satokf9f01002011-05-19 21:31:50 +09001846 mSecureSuggestionSpans.put(ss, currentImi);
1847 }
1848 }
1849 }
1850 }
1851
satoke7c6998e2011-06-03 17:57:59 +09001852 @Override
satokf9f01002011-05-19 21:31:50 +09001853 public boolean notifySuggestionPicked(SuggestionSpan span, String originalString, int index) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001854 if (!calledFromValidUser()) {
1855 return false;
1856 }
satokf9f01002011-05-19 21:31:50 +09001857 synchronized (mMethodMap) {
1858 final InputMethodInfo targetImi = mSecureSuggestionSpans.get(span);
1859 // TODO: Do not send the intent if the process of the targetImi is already dead.
1860 if (targetImi != null) {
1861 final String[] suggestions = span.getSuggestions();
1862 if (index < 0 || index >= suggestions.length) return false;
satok42c5a162011-05-26 16:46:14 +09001863 final String className = span.getNotificationTargetClassName();
satokf9f01002011-05-19 21:31:50 +09001864 final Intent intent = new Intent();
1865 // Ensures that only a class in the original IME package will receive the
1866 // notification.
satok42c5a162011-05-26 16:46:14 +09001867 intent.setClassName(targetImi.getPackageName(), className);
satokf9f01002011-05-19 21:31:50 +09001868 intent.setAction(SuggestionSpan.ACTION_SUGGESTION_PICKED);
1869 intent.putExtra(SuggestionSpan.SUGGESTION_SPAN_PICKED_BEFORE, originalString);
1870 intent.putExtra(SuggestionSpan.SUGGESTION_SPAN_PICKED_AFTER, suggestions[index]);
1871 intent.putExtra(SuggestionSpan.SUGGESTION_SPAN_PICKED_HASHCODE, span.hashCode());
Amith Yamasanif043de92012-10-24 06:42:40 -07001872 final long ident = Binder.clearCallingIdentity();
1873 try {
1874 mContext.sendBroadcastAsUser(intent, UserHandle.CURRENT);
1875 } finally {
1876 Binder.restoreCallingIdentity(ident);
1877 }
satokf9f01002011-05-19 21:31:50 +09001878 return true;
1879 }
1880 }
1881 return false;
1882 }
1883
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001884 void updateFromSettingsLocked(boolean enabledMayChange) {
Michael Wright7b5a96b2014-08-09 19:28:42 -07001885 updateInputMethodsFromSettingsLocked(enabledMayChange);
1886 updateKeyboardFromSettingsLocked();
1887 }
1888
1889 void updateInputMethodsFromSettingsLocked(boolean enabledMayChange) {
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001890 if (enabledMayChange) {
1891 List<InputMethodInfo> enabled = mSettings.getEnabledInputMethodListLocked();
1892 for (int i=0; i<enabled.size(); i++) {
1893 // We allow the user to select "disabled until used" apps, so if they
1894 // are enabling one of those here we now need to make it enabled.
1895 InputMethodInfo imm = enabled.get(i);
1896 try {
1897 ApplicationInfo ai = mIPackageManager.getApplicationInfo(imm.getPackageName(),
1898 PackageManager.GET_DISABLED_UNTIL_USED_COMPONENTS,
1899 mSettings.getCurrentUserId());
Satoshi Kataoka7987a312013-04-17 18:59:33 +09001900 if (ai != null && ai.enabledSetting
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001901 == PackageManager.COMPONENT_ENABLED_STATE_DISABLED_UNTIL_USED) {
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +09001902 if (DEBUG) {
1903 Slog.d(TAG, "Update state(" + imm.getId()
1904 + "): DISABLED_UNTIL_USED -> DEFAULT");
1905 }
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001906 mIPackageManager.setApplicationEnabledSetting(imm.getPackageName(),
1907 PackageManager.COMPONENT_ENABLED_STATE_DEFAULT,
Dianne Hackborn3fa3c28a2013-03-26 16:15:41 -07001908 PackageManager.DONT_KILL_APP, mSettings.getCurrentUserId(),
1909 mContext.getBasePackageName());
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001910 }
1911 } catch (RemoteException e) {
1912 }
1913 }
1914 }
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001915 // We are assuming that whoever is changing DEFAULT_INPUT_METHOD and
1916 // ENABLED_INPUT_METHODS is taking care of keeping them correctly in
1917 // sync, so we will never have a DEFAULT_INPUT_METHOD that is not
1918 // enabled.
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001919 String id = mSettings.getSelectedInputMethod();
satok03eb319a2010-11-11 18:17:42 +09001920 // There is no input method selected, try to choose new applicable input method.
1921 if (TextUtils.isEmpty(id) && chooseNewDefaultIMELocked()) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001922 id = mSettings.getSelectedInputMethod();
satok03eb319a2010-11-11 18:17:42 +09001923 }
1924 if (!TextUtils.isEmpty(id)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001925 try {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001926 setInputMethodLocked(id, mSettings.getSelectedInputMethodSubtypeId(id));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001927 } catch (IllegalArgumentException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001928 Slog.w(TAG, "Unknown input method from prefs: " + id, e);
Yohei Yukawa33e81792015-11-17 21:14:42 -08001929 resetCurrentMethodAndClient(InputMethodClient.UNBIND_REASON_SWITCH_IME_FAILED);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001930 }
satokf3db1af2010-11-23 13:34:33 +09001931 mShortcutInputMethodsAndSubtypes.clear();
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001932 } else {
1933 // There is no longer an input method set, so stop any current one.
Yohei Yukawa33e81792015-11-17 21:14:42 -08001934 resetCurrentMethodAndClient(InputMethodClient.UNBIND_REASON_NO_IME);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001935 }
Yohei Yukawa3d46bab2014-05-30 18:10:18 +09001936 // Here is not the perfect place to reset the switching controller. Ideally
1937 // mSwitchingController and mSettings should be able to share the same state.
1938 // TODO: Make sure that mSwitchingController and mSettings are sharing the
1939 // the same enabled IMEs list.
1940 mSwitchingController.resetCircularListLocked(mContext);
Michael Wright7b5a96b2014-08-09 19:28:42 -07001941
1942 }
1943
1944 public void updateKeyboardFromSettingsLocked() {
1945 mShowImeWithHardKeyboard = mSettings.isShowImeWithHardKeyboardEnabled();
1946 if (mSwitchingDialog != null
1947 && mSwitchingDialogTitleView != null
1948 && mSwitchingDialog.isShowing()) {
1949 final Switch hardKeySwitch = (Switch)mSwitchingDialogTitleView.findViewById(
1950 com.android.internal.R.id.hard_keyboard_switch);
1951 hardKeySwitch.setChecked(mShowImeWithHardKeyboard);
1952 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001953 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001954
Yohei Yukawab097b822015-12-01 10:43:08 -08001955 private void notifyInputMethodSubtypeChanged(final int userId,
1956 @Nullable final InputMethodInfo inputMethodInfo,
1957 @Nullable final InputMethodSubtype subtype) {
1958 final InputManagerInternal inputManagerInternal =
1959 LocalServices.getService(InputManagerInternal.class);
1960 if (inputManagerInternal != null) {
1961 inputManagerInternal.onInputMethodSubtypeChanged(userId, inputMethodInfo, subtype);
1962 }
1963 }
1964
satokab751aa2010-09-14 19:17:36 +09001965 /* package */ void setInputMethodLocked(String id, int subtypeId) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001966 InputMethodInfo info = mMethodMap.get(id);
1967 if (info == null) {
satok913a8922010-08-26 21:53:41 +09001968 throw new IllegalArgumentException("Unknown id: " + id);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001969 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001970
Yohei Yukawae63b5fa2014-09-19 13:14:55 +09001971 if (mCurClient != null && mCurAttribute != null) {
Yohei Yukawa0f3ad12015-04-06 16:48:24 -07001972 // We have already made sure that the package name belongs to the application's UID.
1973 // No further UID check is required.
1974 if (SystemConfig.getInstance().getFixedImeApps().contains(mCurAttribute.packageName)) {
1975 return;
Yohei Yukawae63b5fa2014-09-19 13:14:55 +09001976 }
1977 }
1978
satokd81e9502012-05-21 12:58:45 +09001979 // See if we need to notify a subtype change within the same IME.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001980 if (id.equals(mCurMethodId)) {
satokd81e9502012-05-21 12:58:45 +09001981 final int subtypeCount = info.getSubtypeCount();
1982 if (subtypeCount <= 0) {
1983 return;
satokcd7cd292010-11-20 15:46:23 +09001984 }
satokd81e9502012-05-21 12:58:45 +09001985 final InputMethodSubtype oldSubtype = mCurrentSubtype;
1986 final InputMethodSubtype newSubtype;
1987 if (subtypeId >= 0 && subtypeId < subtypeCount) {
1988 newSubtype = info.getSubtypeAt(subtypeId);
1989 } else {
1990 // If subtype is null, try to find the most applicable one from
1991 // getCurrentInputMethodSubtype.
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001992 newSubtype = getCurrentInputMethodSubtypeLocked();
satokd81e9502012-05-21 12:58:45 +09001993 }
1994 if (newSubtype == null || oldSubtype == null) {
1995 Slog.w(TAG, "Illegal subtype state: old subtype = " + oldSubtype
1996 + ", new subtype = " + newSubtype);
1997 return;
1998 }
1999 if (newSubtype != oldSubtype) {
2000 setSelectedInputMethodAndSubtypeLocked(info, subtypeId, true);
2001 if (mCurMethod != null) {
2002 try {
Seigo Nonakad9eb9112015-05-26 20:54:43 +09002003 updateSystemUiLocked(mCurToken, mImeWindowVis, mBackDisposition);
satokd81e9502012-05-21 12:58:45 +09002004 mCurMethod.changeInputMethodSubtype(newSubtype);
2005 } catch (RemoteException e) {
2006 Slog.w(TAG, "Failed to call changeInputMethodSubtype");
Yohei Yukawab097b822015-12-01 10:43:08 -08002007 return;
satokab751aa2010-09-14 19:17:36 +09002008 }
2009 }
Yohei Yukawab097b822015-12-01 10:43:08 -08002010 notifyInputMethodSubtypeChanged(mSettings.getCurrentUserId(), info, newSubtype);
satokab751aa2010-09-14 19:17:36 +09002011 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002012 return;
2013 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002014
satokd81e9502012-05-21 12:58:45 +09002015 // Changing to a different IME.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002016 final long ident = Binder.clearCallingIdentity();
2017 try {
satokab751aa2010-09-14 19:17:36 +09002018 // Set a subtype to this input method.
2019 // subtypeId the name of a subtype which will be set.
satok723a27e2010-11-11 14:58:11 +09002020 setSelectedInputMethodAndSubtypeLocked(info, subtypeId, false);
2021 // mCurMethodId should be updated after setSelectedInputMethodAndSubtypeLocked()
2022 // because mCurMethodId is stored as a history in
2023 // setSelectedInputMethodAndSubtypeLocked().
2024 mCurMethodId = id;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002025
2026 if (ActivityManagerNative.isSystemReady()) {
2027 Intent intent = new Intent(Intent.ACTION_INPUT_METHOD_CHANGED);
Dianne Hackborn1c633fc2009-12-08 19:45:14 -08002028 intent.addFlags(Intent.FLAG_RECEIVER_REPLACE_PENDING);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002029 intent.putExtra("input_method_id", id);
Amith Yamasanicd757062012-10-19 18:23:52 -07002030 mContext.sendBroadcastAsUser(intent, UserHandle.CURRENT);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002031 }
Yohei Yukawa33e81792015-11-17 21:14:42 -08002032 unbindCurrentClientLocked(InputMethodClient.UNBIND_REASON_SWITCH_IME);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002033 } finally {
2034 Binder.restoreCallingIdentity(ident);
2035 }
Yohei Yukawab097b822015-12-01 10:43:08 -08002036
2037 notifyInputMethodSubtypeChanged(mSettings.getCurrentUserId(), info,
2038 getCurrentInputMethodSubtypeLocked());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002039 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002040
satok42c5a162011-05-26 16:46:14 +09002041 @Override
The Android Open Source Project4df24232009-03-05 14:34:35 -08002042 public boolean showSoftInput(IInputMethodClient client, int flags,
2043 ResultReceiver resultReceiver) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002044 if (!calledFromValidUser()) {
2045 return false;
2046 }
Dianne Hackborncef65ee2010-09-30 18:27:22 -07002047 int uid = Binder.getCallingUid();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002048 long ident = Binder.clearCallingIdentity();
2049 try {
2050 synchronized (mMethodMap) {
2051 if (mCurClient == null || client == null
2052 || mCurClient.client.asBinder() != client.asBinder()) {
2053 try {
2054 // We need to check if this is the current client with
2055 // focus in the window manager, to allow this call to
2056 // be made before input is started in it.
2057 if (!mIWindowManager.inputMethodClientHasFocus(client)) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07002058 Slog.w(TAG, "Ignoring showSoftInput of uid " + uid + ": " + client);
The Android Open Source Project4df24232009-03-05 14:34:35 -08002059 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002060 }
2061 } catch (RemoteException e) {
The Android Open Source Project4df24232009-03-05 14:34:35 -08002062 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002063 }
2064 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002065
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002066 if (DEBUG) Slog.v(TAG, "Client requesting input be shown");
The Android Open Source Project4df24232009-03-05 14:34:35 -08002067 return showCurrentInputLocked(flags, resultReceiver);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002068 }
2069 } finally {
2070 Binder.restoreCallingIdentity(ident);
2071 }
2072 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002073
The Android Open Source Project4df24232009-03-05 14:34:35 -08002074 boolean showCurrentInputLocked(int flags, ResultReceiver resultReceiver) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002075 mShowRequested = true;
2076 if ((flags&InputMethodManager.SHOW_IMPLICIT) == 0) {
2077 mShowExplicitlyRequested = true;
2078 }
2079 if ((flags&InputMethodManager.SHOW_FORCED) != 0) {
2080 mShowExplicitlyRequested = true;
2081 mShowForced = true;
2082 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002083
Dianne Hackborncc278702009-09-02 23:07:23 -07002084 if (!mSystemReady) {
2085 return false;
2086 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002087
The Android Open Source Project4df24232009-03-05 14:34:35 -08002088 boolean res = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002089 if (mCurMethod != null) {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002090 if (DEBUG) Slog.d(TAG, "showCurrentInputLocked: mCurToken=" + mCurToken);
The Android Open Source Project4df24232009-03-05 14:34:35 -08002091 executeOrSendMessage(mCurMethod, mCaller.obtainMessageIOO(
2092 MSG_SHOW_SOFT_INPUT, getImeShowFlags(), mCurMethod,
2093 resultReceiver));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002094 mInputShown = true;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07002095 if (mHaveConnection && !mVisibleBound) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002096 bindCurrentInputMethodService(
Dianne Hackbornf0f94d12014-03-17 16:04:21 -07002097 mCurIntent, mVisibleConnection, Context.BIND_AUTO_CREATE
Dianne Hackbornd69e4c12015-04-24 09:54:54 -07002098 | Context.BIND_TREAT_LIKE_ACTIVITY
2099 | Context.BIND_FOREGROUND_SERVICE);
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07002100 mVisibleBound = true;
2101 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002102 res = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002103 } else if (mHaveConnection && SystemClock.uptimeMillis()
satok59b424c2011-09-30 17:21:46 +09002104 >= (mLastBindTime+TIME_TO_RECONNECT)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002105 // The client has asked to have the input method shown, but
2106 // we have been sitting here too long with a connection to the
2107 // service and no interface received, so let's disconnect/connect
2108 // to try to prod things along.
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002109 EventLog.writeEvent(EventLogTags.IMF_FORCE_RECONNECT_IME, mCurMethodId,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002110 SystemClock.uptimeMillis()-mLastBindTime,1);
satok59b424c2011-09-30 17:21:46 +09002111 Slog.w(TAG, "Force disconnect/connect to the IME in showCurrentInputLocked()");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002112 mContext.unbindService(this);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002113 bindCurrentInputMethodService(mCurIntent, this, Context.BIND_AUTO_CREATE
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07002114 | Context.BIND_NOT_VISIBLE);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002115 } else {
2116 if (DEBUG) {
2117 Slog.d(TAG, "Can't show input: connection = " + mHaveConnection + ", time = "
2118 + ((mLastBindTime+TIME_TO_RECONNECT) - SystemClock.uptimeMillis()));
2119 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002120 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002121
The Android Open Source Project4df24232009-03-05 14:34:35 -08002122 return res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002123 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002124
satok42c5a162011-05-26 16:46:14 +09002125 @Override
The Android Open Source Project4df24232009-03-05 14:34:35 -08002126 public boolean hideSoftInput(IInputMethodClient client, int flags,
2127 ResultReceiver resultReceiver) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002128 if (!calledFromValidUser()) {
2129 return false;
2130 }
Dianne Hackborncef65ee2010-09-30 18:27:22 -07002131 int uid = Binder.getCallingUid();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002132 long ident = Binder.clearCallingIdentity();
2133 try {
2134 synchronized (mMethodMap) {
2135 if (mCurClient == null || client == null
2136 || mCurClient.client.asBinder() != client.asBinder()) {
2137 try {
2138 // We need to check if this is the current client with
2139 // focus in the window manager, to allow this call to
2140 // be made before input is started in it.
2141 if (!mIWindowManager.inputMethodClientHasFocus(client)) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07002142 if (DEBUG) Slog.w(TAG, "Ignoring hideSoftInput of uid "
2143 + uid + ": " + client);
The Android Open Source Project4df24232009-03-05 14:34:35 -08002144 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002145 }
2146 } catch (RemoteException e) {
The Android Open Source Project4df24232009-03-05 14:34:35 -08002147 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002148 }
2149 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002150
Joe Onorato8a9b2202010-02-26 18:56:32 -08002151 if (DEBUG) Slog.v(TAG, "Client requesting input be hidden");
The Android Open Source Project4df24232009-03-05 14:34:35 -08002152 return hideCurrentInputLocked(flags, resultReceiver);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002153 }
2154 } finally {
2155 Binder.restoreCallingIdentity(ident);
2156 }
2157 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002158
The Android Open Source Project4df24232009-03-05 14:34:35 -08002159 boolean hideCurrentInputLocked(int flags, ResultReceiver resultReceiver) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002160 if ((flags&InputMethodManager.HIDE_IMPLICIT_ONLY) != 0
2161 && (mShowExplicitlyRequested || mShowForced)) {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002162 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 -08002163 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002164 }
2165 if (mShowForced && (flags&InputMethodManager.HIDE_NOT_ALWAYS) != 0) {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002166 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 -08002167 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002168 }
Seigo Nonakaec928652015-06-10 15:31:20 +09002169
2170 // There is a chance that IMM#hideSoftInput() is called in a transient state where
2171 // IMMS#InputShown is already updated to be true whereas IMMS#mImeWindowVis is still waiting
2172 // to be updated with the new value sent from IME process. Even in such a transient state
2173 // historically we have accepted an incoming call of IMM#hideSoftInput() from the
2174 // application process as a valid request, and have even promised such a behavior with CTS
2175 // since Android Eclair. That's why we need to accept IMM#hideSoftInput() even when only
2176 // IMMS#InputShown indicates that the software keyboard is shown.
2177 // TODO: Clean up, IMMS#mInputShown, IMMS#mImeWindowVis and mShowRequested.
2178 final boolean shouldHideSoftInput = (mCurMethod != null) && (mInputShown ||
2179 (mImeWindowVis & InputMethodService.IME_ACTIVE) != 0);
The Android Open Source Project4df24232009-03-05 14:34:35 -08002180 boolean res;
Seigo Nonakaec928652015-06-10 15:31:20 +09002181 if (shouldHideSoftInput) {
2182 // The IME will report its visible state again after the following message finally
2183 // delivered to the IME process as an IPC. Hence the inconsistency between
2184 // IMMS#mInputShown and IMMS#mImeWindowVis should be resolved spontaneously in
2185 // the final state.
The Android Open Source Project4df24232009-03-05 14:34:35 -08002186 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
2187 MSG_HIDE_SOFT_INPUT, mCurMethod, resultReceiver));
2188 res = true;
2189 } else {
2190 res = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002191 }
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07002192 if (mHaveConnection && mVisibleBound) {
2193 mContext.unbindService(mVisibleConnection);
2194 mVisibleBound = false;
2195 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002196 mInputShown = false;
2197 mShowRequested = false;
2198 mShowExplicitlyRequested = false;
2199 mShowForced = false;
The Android Open Source Project4df24232009-03-05 14:34:35 -08002200 return res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002201 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002202
satok42c5a162011-05-26 16:46:14 +09002203 @Override
Yohei Yukawa35d3f372015-11-25 11:07:19 -08002204 public InputBindResult windowGainedFocus(
2205 /* @InputMethodClient.StartInputReason */ final int startInputReason,
2206 IInputMethodClient client, IBinder windowToken, int controlFlags, int softInputMode,
2207 int windowFlags, EditorInfo attribute, IInputContext inputContext) {
Satoshi Kataoka8d033052012-11-19 17:30:40 +09002208 // Needs to check the validity before clearing calling identity
2209 final boolean calledFromValidUser = calledFromValidUser();
Dianne Hackborn7663d802012-02-24 13:08:49 -08002210 InputBindResult res = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002211 long ident = Binder.clearCallingIdentity();
2212 try {
2213 synchronized (mMethodMap) {
Yohei Yukawa35d3f372015-11-25 11:07:19 -08002214 if (DEBUG) Slog.v(TAG, "windowGainedFocus: reason="
2215 + InputMethodClient.getStartInputReason(startInputReason)
2216 + " client=" + client.asBinder()
2217 + " inputContext=" + inputContext
2218 + " attribute=" + attribute
Dianne Hackborn7663d802012-02-24 13:08:49 -08002219 + " controlFlags=#" + Integer.toHexString(controlFlags)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002220 + " softInputMode=#" + Integer.toHexString(softInputMode)
Dianne Hackborn7663d802012-02-24 13:08:49 -08002221 + " windowFlags=#" + Integer.toHexString(windowFlags));
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002222
Dianne Hackborn7663d802012-02-24 13:08:49 -08002223 ClientState cs = mClients.get(client.asBinder());
2224 if (cs == null) {
2225 throw new IllegalArgumentException("unknown client "
2226 + client.asBinder());
2227 }
2228
2229 try {
2230 if (!mIWindowManager.inputMethodClientHasFocus(cs.client)) {
2231 // Check with the window manager to make sure this client actually
2232 // has a window with focus. If not, reject. This is thread safe
2233 // because if the focus changes some time before or after, the
2234 // next client receiving focus that has any interest in input will
2235 // be calling through here after that change happens.
2236 Slog.w(TAG, "Focus gain on non-focused client " + cs.client
2237 + " (uid=" + cs.uid + " pid=" + cs.pid + ")");
2238 return null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002239 }
Dianne Hackborn7663d802012-02-24 13:08:49 -08002240 } catch (RemoteException e) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002241 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002242
Satoshi Kataoka8d033052012-11-19 17:30:40 +09002243 if (!calledFromValidUser) {
2244 Slog.w(TAG, "A background user is requesting window. Hiding IME.");
2245 Slog.w(TAG, "If you want to interect with IME, you need "
2246 + "android.permission.INTERACT_ACROSS_USERS_FULL");
2247 hideCurrentInputLocked(0, null);
2248 return null;
2249 }
2250
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07002251 if (mCurFocusedWindow == windowToken) {
Dianne Hackbornac920872012-05-22 11:49:49 -07002252 Slog.w(TAG, "Window already focused, ignoring focus gain of: " + client
Satoshi Kataoka35739502012-10-02 19:00:26 +09002253 + " attribute=" + attribute + ", token = " + windowToken);
Dianne Hackborn7663d802012-02-24 13:08:49 -08002254 if (attribute != null) {
2255 return startInputUncheckedLocked(cs, inputContext, attribute,
2256 controlFlags);
2257 }
2258 return null;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07002259 }
2260 mCurFocusedWindow = windowToken;
Yohei Yukawae39d4ed2015-11-19 03:38:49 -08002261 mCurFocusedWindowClient = cs;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002262
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08002263 // Should we auto-show the IME even if the caller has not
2264 // specified what should be done with it?
2265 // We only do this automatically if the window can resize
2266 // to accommodate the IME (so what the user sees will give
2267 // them good context without input information being obscured
2268 // by the IME) or if running on a large screen where there
2269 // is more room for the target window + IME.
2270 final boolean doAutoShow =
2271 (softInputMode & WindowManager.LayoutParams.SOFT_INPUT_MASK_ADJUST)
2272 == WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE
2273 || mRes.getConfiguration().isLayoutSizeAtLeast(
2274 Configuration.SCREENLAYOUT_SIZE_LARGE);
Dianne Hackborn7663d802012-02-24 13:08:49 -08002275 final boolean isTextEditor =
2276 (controlFlags&InputMethodManager.CONTROL_WINDOW_IS_TEXT_EDITOR) != 0;
2277
2278 // We want to start input before showing the IME, but after closing
2279 // it. We want to do this after closing it to help the IME disappear
2280 // more quickly (not get stuck behind it initializing itself for the
2281 // new focused input, even if its window wants to hide the IME).
2282 boolean didStart = false;
Yohei Yukawa0f3ad12015-04-06 16:48:24 -07002283
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002284 switch (softInputMode&WindowManager.LayoutParams.SOFT_INPUT_MASK_STATE) {
2285 case WindowManager.LayoutParams.SOFT_INPUT_STATE_UNSPECIFIED:
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08002286 if (!isTextEditor || !doAutoShow) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002287 if (WindowManager.LayoutParams.mayUseInputMethod(windowFlags)) {
2288 // There is no focus view, and this window will
2289 // be behind any soft input window, so hide the
2290 // soft input window if it is shown.
Joe Onorato8a9b2202010-02-26 18:56:32 -08002291 if (DEBUG) Slog.v(TAG, "Unspecified window will hide input");
The Android Open Source Project4df24232009-03-05 14:34:35 -08002292 hideCurrentInputLocked(InputMethodManager.HIDE_NOT_ALWAYS, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002293 }
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08002294 } else if (isTextEditor && doAutoShow && (softInputMode &
2295 WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002296 // There is a focus view, and we are navigating forward
2297 // into the window, so show the input window for the user.
Dianne Hackborn7663d802012-02-24 13:08:49 -08002298 // We only do this automatically if the window can resize
2299 // to accommodate the IME (so what the user sees will give
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08002300 // them good context without input information being obscured
2301 // by the IME) or if running on a large screen where there
2302 // is more room for the target window + IME.
Joe Onorato8a9b2202010-02-26 18:56:32 -08002303 if (DEBUG) Slog.v(TAG, "Unspecified window will show input");
Dianne Hackborn7663d802012-02-24 13:08:49 -08002304 if (attribute != null) {
2305 res = startInputUncheckedLocked(cs, inputContext, attribute,
2306 controlFlags);
2307 didStart = true;
2308 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002309 showCurrentInputLocked(InputMethodManager.SHOW_IMPLICIT, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002310 }
2311 break;
2312 case WindowManager.LayoutParams.SOFT_INPUT_STATE_UNCHANGED:
2313 // Do nothing.
2314 break;
2315 case WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN:
2316 if ((softInputMode &
2317 WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002318 if (DEBUG) Slog.v(TAG, "Window asks to hide input going forward");
The Android Open Source Project4df24232009-03-05 14:34:35 -08002319 hideCurrentInputLocked(0, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002320 }
2321 break;
2322 case WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN:
Joe Onorato8a9b2202010-02-26 18:56:32 -08002323 if (DEBUG) Slog.v(TAG, "Window asks to hide input");
The Android Open Source Project4df24232009-03-05 14:34:35 -08002324 hideCurrentInputLocked(0, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002325 break;
2326 case WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE:
2327 if ((softInputMode &
2328 WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002329 if (DEBUG) Slog.v(TAG, "Window asks to show input going forward");
Dianne Hackborn7663d802012-02-24 13:08:49 -08002330 if (attribute != null) {
2331 res = startInputUncheckedLocked(cs, inputContext, attribute,
2332 controlFlags);
2333 didStart = true;
2334 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002335 showCurrentInputLocked(InputMethodManager.SHOW_IMPLICIT, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002336 }
2337 break;
2338 case WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE:
Joe Onorato8a9b2202010-02-26 18:56:32 -08002339 if (DEBUG) Slog.v(TAG, "Window asks to always show input");
Dianne Hackborn7663d802012-02-24 13:08:49 -08002340 if (attribute != null) {
2341 res = startInputUncheckedLocked(cs, inputContext, attribute,
2342 controlFlags);
2343 didStart = true;
2344 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002345 showCurrentInputLocked(InputMethodManager.SHOW_IMPLICIT, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002346 break;
2347 }
Dianne Hackborn7663d802012-02-24 13:08:49 -08002348
2349 if (!didStart && attribute != null) {
2350 res = startInputUncheckedLocked(cs, inputContext, attribute,
2351 controlFlags);
2352 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002353 }
2354 } finally {
2355 Binder.restoreCallingIdentity(ident);
2356 }
Dianne Hackborn7663d802012-02-24 13:08:49 -08002357
2358 return res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002359 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002360
satok42c5a162011-05-26 16:46:14 +09002361 @Override
Seigo Nonaka14e13912015-05-06 21:04:13 -07002362 public void showInputMethodPickerFromClient(
2363 IInputMethodClient client, int auxiliarySubtypeMode) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002364 if (!calledFromValidUser()) {
2365 return;
2366 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002367 synchronized (mMethodMap) {
2368 if (mCurClient == null || client == null
2369 || mCurClient.client.asBinder() != client.asBinder()) {
satok47a44912010-10-06 16:03:58 +09002370 Slog.w(TAG, "Ignoring showInputMethodPickerFromClient of uid "
Dianne Hackborncef65ee2010-09-30 18:27:22 -07002371 + Binder.getCallingUid() + ": " + client);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002372 }
2373
satok440aab52010-11-25 09:43:11 +09002374 // Always call subtype picker, because subtype picker is a superset of input method
2375 // picker.
Seigo Nonaka14e13912015-05-06 21:04:13 -07002376 mHandler.sendMessage(mCaller.obtainMessageI(
2377 MSG_SHOW_IM_SUBTYPE_PICKER, auxiliarySubtypeMode));
satokab751aa2010-09-14 19:17:36 +09002378 }
2379 }
2380
satok42c5a162011-05-26 16:46:14 +09002381 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002382 public void setInputMethod(IBinder token, String id) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002383 if (!calledFromValidUser()) {
2384 return;
2385 }
satok28203512010-11-24 11:06:49 +09002386 setInputMethodWithSubtypeId(token, id, NOT_A_SUBTYPE_ID);
2387 }
2388
satok42c5a162011-05-26 16:46:14 +09002389 @Override
satok28203512010-11-24 11:06:49 +09002390 public void setInputMethodAndSubtype(IBinder token, String id, InputMethodSubtype subtype) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002391 if (!calledFromValidUser()) {
2392 return;
2393 }
satok28203512010-11-24 11:06:49 +09002394 synchronized (mMethodMap) {
2395 if (subtype != null) {
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002396 setInputMethodWithSubtypeIdLocked(token, id,
2397 InputMethodUtils.getSubtypeIdFromHashCode(mMethodMap.get(id),
2398 subtype.hashCode()));
satok28203512010-11-24 11:06:49 +09002399 } else {
2400 setInputMethod(token, id);
2401 }
2402 }
satokab751aa2010-09-14 19:17:36 +09002403 }
2404
satok42c5a162011-05-26 16:46:14 +09002405 @Override
satokb416a712010-11-25 20:42:14 +09002406 public void showInputMethodAndSubtypeEnablerFromClient(
satok217f5482010-12-15 05:19:19 +09002407 IInputMethodClient client, String inputMethodId) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002408 if (!calledFromValidUser()) {
2409 return;
2410 }
satokb416a712010-11-25 20:42:14 +09002411 synchronized (mMethodMap) {
satok7fee71f2010-12-17 18:54:26 +09002412 executeOrSendMessage(mCurMethod, mCaller.obtainMessageO(
2413 MSG_SHOW_IM_SUBTYPE_ENABLER, inputMethodId));
satokb416a712010-11-25 20:42:14 +09002414 }
2415 }
2416
satok4fc87d62011-05-20 16:13:43 +09002417 @Override
satok735cf382010-11-11 20:40:09 +09002418 public boolean switchToLastInputMethod(IBinder token) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002419 if (!calledFromValidUser()) {
2420 return false;
2421 }
satok735cf382010-11-11 20:40:09 +09002422 synchronized (mMethodMap) {
satokc445bcd2011-01-25 18:57:24 +09002423 final Pair<String, String> lastIme = mSettings.getLastInputMethodAndSubtypeLocked();
satok4fc87d62011-05-20 16:13:43 +09002424 final InputMethodInfo lastImi;
satok208d5632011-05-20 22:13:38 +09002425 if (lastIme != null) {
satok4fc87d62011-05-20 16:13:43 +09002426 lastImi = mMethodMap.get(lastIme.first);
2427 } else {
2428 lastImi = null;
satok735cf382010-11-11 20:40:09 +09002429 }
satok4fc87d62011-05-20 16:13:43 +09002430 String targetLastImiId = null;
2431 int subtypeId = NOT_A_SUBTYPE_ID;
2432 if (lastIme != null && lastImi != null) {
2433 final boolean imiIdIsSame = lastImi.getId().equals(mCurMethodId);
2434 final int lastSubtypeHash = Integer.valueOf(lastIme.second);
2435 final int currentSubtypeHash = mCurrentSubtype == null ? NOT_A_SUBTYPE_ID
2436 : mCurrentSubtype.hashCode();
2437 // If the last IME is the same as the current IME and the last subtype is not
2438 // defined, there is no need to switch to the last IME.
2439 if (!imiIdIsSame || lastSubtypeHash != currentSubtypeHash) {
2440 targetLastImiId = lastIme.first;
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002441 subtypeId = InputMethodUtils.getSubtypeIdFromHashCode(lastImi, lastSubtypeHash);
satok4fc87d62011-05-20 16:13:43 +09002442 }
2443 }
2444
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002445 if (TextUtils.isEmpty(targetLastImiId)
2446 && !InputMethodUtils.canAddToLastInputMethod(mCurrentSubtype)) {
satok4fc87d62011-05-20 16:13:43 +09002447 // This is a safety net. If the currentSubtype can't be added to the history
2448 // and the framework couldn't find the last ime, we will make the last ime be
2449 // the most applicable enabled keyboard subtype of the system imes.
2450 final List<InputMethodInfo> enabled = mSettings.getEnabledInputMethodListLocked();
2451 if (enabled != null) {
2452 final int N = enabled.size();
2453 final String locale = mCurrentSubtype == null
2454 ? mRes.getConfiguration().locale.toString()
2455 : mCurrentSubtype.getLocale();
2456 for (int i = 0; i < N; ++i) {
2457 final InputMethodInfo imi = enabled.get(i);
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002458 if (imi.getSubtypeCount() > 0 && InputMethodUtils.isSystemIme(imi)) {
satok4fc87d62011-05-20 16:13:43 +09002459 InputMethodSubtype keyboardSubtype =
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002460 InputMethodUtils.findLastResortApplicableSubtypeLocked(mRes,
2461 InputMethodUtils.getSubtypes(imi),
2462 InputMethodUtils.SUBTYPE_MODE_KEYBOARD, locale, true);
satok4fc87d62011-05-20 16:13:43 +09002463 if (keyboardSubtype != null) {
2464 targetLastImiId = imi.getId();
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002465 subtypeId = InputMethodUtils.getSubtypeIdFromHashCode(
satok4fc87d62011-05-20 16:13:43 +09002466 imi, keyboardSubtype.hashCode());
2467 if(keyboardSubtype.getLocale().equals(locale)) {
2468 break;
2469 }
2470 }
2471 }
2472 }
2473 }
2474 }
2475
2476 if (!TextUtils.isEmpty(targetLastImiId)) {
2477 if (DEBUG) {
2478 Slog.d(TAG, "Switch to: " + lastImi.getId() + ", " + lastIme.second
2479 + ", from: " + mCurMethodId + ", " + subtypeId);
2480 }
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002481 setInputMethodWithSubtypeIdLocked(token, targetLastImiId, subtypeId);
satok4fc87d62011-05-20 16:13:43 +09002482 return true;
2483 } else {
2484 return false;
2485 }
satok735cf382010-11-11 20:40:09 +09002486 }
2487 }
2488
satoke7c6998e2011-06-03 17:57:59 +09002489 @Override
satok688bd472012-02-09 20:09:17 +09002490 public boolean switchToNextInputMethod(IBinder token, boolean onlyCurrentIme) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002491 if (!calledFromValidUser()) {
2492 return false;
2493 }
satok688bd472012-02-09 20:09:17 +09002494 synchronized (mMethodMap) {
Yohei Yukawaa0755742014-06-04 20:28:18 +09002495 if (!calledWithValidToken(token)) {
2496 final int uid = Binder.getCallingUid();
2497 Slog.e(TAG, "Ignoring switchToNextInputMethod due to an invalid token. uid:" + uid
2498 + " token:" + token);
2499 return false;
2500 }
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002501 final ImeSubtypeListItem nextSubtype = mSwitchingController.getNextInputMethodLocked(
satok688bd472012-02-09 20:09:17 +09002502 onlyCurrentIme, mMethodMap.get(mCurMethodId), mCurrentSubtype);
2503 if (nextSubtype == null) {
2504 return false;
2505 }
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002506 setInputMethodWithSubtypeIdLocked(token, nextSubtype.mImi.getId(),
2507 nextSubtype.mSubtypeId);
satok688bd472012-02-09 20:09:17 +09002508 return true;
2509 }
2510 }
2511
2512 @Override
Satoshi Kataoka2b10b522013-08-21 20:39:12 +09002513 public boolean shouldOfferSwitchingToNextInputMethod(IBinder token) {
2514 if (!calledFromValidUser()) {
2515 return false;
2516 }
2517 synchronized (mMethodMap) {
Yohei Yukawaa0755742014-06-04 20:28:18 +09002518 if (!calledWithValidToken(token)) {
2519 final int uid = Binder.getCallingUid();
2520 Slog.e(TAG, "Ignoring shouldOfferSwitchingToNextInputMethod due to an invalid "
2521 + "token. uid:" + uid + " token:" + token);
2522 return false;
2523 }
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002524 final ImeSubtypeListItem nextSubtype = mSwitchingController.getNextInputMethodLocked(
Satoshi Kataoka2b10b522013-08-21 20:39:12 +09002525 false /* onlyCurrentIme */, mMethodMap.get(mCurMethodId), mCurrentSubtype);
2526 if (nextSubtype == null) {
2527 return false;
2528 }
2529 return true;
2530 }
2531 }
2532
2533 @Override
satok68f1b782011-04-11 14:26:04 +09002534 public InputMethodSubtype getLastInputMethodSubtype() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002535 if (!calledFromValidUser()) {
2536 return null;
2537 }
satok68f1b782011-04-11 14:26:04 +09002538 synchronized (mMethodMap) {
2539 final Pair<String, String> lastIme = mSettings.getLastInputMethodAndSubtypeLocked();
2540 // TODO: Handle the case of the last IME with no subtypes
2541 if (lastIme == null || TextUtils.isEmpty(lastIme.first)
2542 || TextUtils.isEmpty(lastIme.second)) return null;
2543 final InputMethodInfo lastImi = mMethodMap.get(lastIme.first);
2544 if (lastImi == null) return null;
2545 try {
2546 final int lastSubtypeHash = Integer.valueOf(lastIme.second);
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002547 final int lastSubtypeId =
2548 InputMethodUtils.getSubtypeIdFromHashCode(lastImi, lastSubtypeHash);
satok0e7d7d62011-07-05 13:28:06 +09002549 if (lastSubtypeId < 0 || lastSubtypeId >= lastImi.getSubtypeCount()) {
2550 return null;
2551 }
2552 return lastImi.getSubtypeAt(lastSubtypeId);
satok68f1b782011-04-11 14:26:04 +09002553 } catch (NumberFormatException e) {
2554 return null;
2555 }
2556 }
2557 }
2558
satoke7c6998e2011-06-03 17:57:59 +09002559 @Override
satokee5e77c2011-09-02 18:50:15 +09002560 public void setAdditionalInputMethodSubtypes(String imiId, InputMethodSubtype[] subtypes) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002561 if (!calledFromValidUser()) {
2562 return;
2563 }
satok91e88122011-07-18 11:11:42 +09002564 // By this IPC call, only a process which shares the same uid with the IME can add
2565 // additional input method subtypes to the IME.
Yohei Yukawa70f5c482016-01-04 19:42:36 -08002566 if (TextUtils.isEmpty(imiId) || subtypes == null) return;
satoke7c6998e2011-06-03 17:57:59 +09002567 synchronized (mMethodMap) {
satok91e88122011-07-18 11:11:42 +09002568 final InputMethodInfo imi = mMethodMap.get(imiId);
satokee5e77c2011-09-02 18:50:15 +09002569 if (imi == null) return;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002570 final String[] packageInfos;
2571 try {
2572 packageInfos = mIPackageManager.getPackagesForUid(Binder.getCallingUid());
2573 } catch (RemoteException e) {
2574 Slog.e(TAG, "Failed to get package infos");
2575 return;
2576 }
satok91e88122011-07-18 11:11:42 +09002577 if (packageInfos != null) {
2578 final int packageNum = packageInfos.length;
2579 for (int i = 0; i < packageNum; ++i) {
2580 if (packageInfos[i].equals(imi.getPackageName())) {
2581 mFileManager.addInputMethodSubtypes(imi, subtypes);
satokc5933802011-08-31 21:26:04 +09002582 final long ident = Binder.clearCallingIdentity();
2583 try {
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09002584 buildInputMethodListLocked(mMethodList, mMethodMap,
2585 false /* resetDefaultEnabledIme */);
satokc5933802011-08-31 21:26:04 +09002586 } finally {
2587 Binder.restoreCallingIdentity(ident);
2588 }
satokee5e77c2011-09-02 18:50:15 +09002589 return;
satok91e88122011-07-18 11:11:42 +09002590 }
2591 }
2592 }
satoke7c6998e2011-06-03 17:57:59 +09002593 }
satokee5e77c2011-09-02 18:50:15 +09002594 return;
satoke7c6998e2011-06-03 17:57:59 +09002595 }
2596
Satoshi Kataoka658c7b82013-10-10 17:03:51 +09002597 @Override
2598 public int getInputMethodWindowVisibleHeight() {
Seigo Nonaka7309b122015-08-17 18:34:13 -07002599 return mWindowManagerInternal.getInputMethodWindowVisibleHeight();
Satoshi Kataoka658c7b82013-10-10 17:03:51 +09002600 }
2601
Satoshi Kataokad7443c82013-10-15 17:45:43 +09002602 @Override
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002603 public void notifyUserAction(int sequenceNumber) {
Satoshi Kataokad7443c82013-10-15 17:45:43 +09002604 if (DEBUG) {
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002605 Slog.d(TAG, "Got the notification of a user action. sequenceNumber:" + sequenceNumber);
Satoshi Kataokad7443c82013-10-15 17:45:43 +09002606 }
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002607 synchronized (mMethodMap) {
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002608 if (mCurUserActionNotificationSequenceNumber != sequenceNumber) {
2609 if (DEBUG) {
2610 Slog.d(TAG, "Ignoring the user action notification due to the sequence number "
2611 + "mismatch. expected:" + mCurUserActionNotificationSequenceNumber
2612 + " actual: " + sequenceNumber);
2613 }
2614 return;
2615 }
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002616 final InputMethodInfo imi = mMethodMap.get(mCurMethodId);
2617 if (imi != null) {
Yohei Yukawa02970512014-06-05 16:16:18 +09002618 mSwitchingController.onUserActionLocked(imi, mCurrentSubtype);
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002619 }
Satoshi Kataokad7443c82013-10-15 17:45:43 +09002620 }
2621 }
2622
satok28203512010-11-24 11:06:49 +09002623 private void setInputMethodWithSubtypeId(IBinder token, String id, int subtypeId) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002624 synchronized (mMethodMap) {
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002625 setInputMethodWithSubtypeIdLocked(token, id, subtypeId);
2626 }
2627 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002628
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002629 private void setInputMethodWithSubtypeIdLocked(IBinder token, String id, int subtypeId) {
2630 if (token == null) {
2631 if (mContext.checkCallingOrSelfPermission(
2632 android.Manifest.permission.WRITE_SECURE_SETTINGS)
2633 != PackageManager.PERMISSION_GRANTED) {
2634 throw new SecurityException(
2635 "Using null token requires permission "
2636 + android.Manifest.permission.WRITE_SECURE_SETTINGS);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002637 }
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002638 } else if (mCurToken != token) {
2639 Slog.w(TAG, "Ignoring setInputMethod of uid " + Binder.getCallingUid()
2640 + " token: " + token);
2641 return;
2642 }
2643
2644 final long ident = Binder.clearCallingIdentity();
2645 try {
2646 setInputMethodLocked(id, subtypeId);
2647 } finally {
2648 Binder.restoreCallingIdentity(ident);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002649 }
2650 }
2651
satok42c5a162011-05-26 16:46:14 +09002652 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002653 public void hideMySoftInput(IBinder token, int flags) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002654 if (!calledFromValidUser()) {
2655 return;
2656 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002657 synchronized (mMethodMap) {
Yohei Yukawa22c97be2014-06-04 19:43:36 +09002658 if (!calledWithValidToken(token)) {
2659 final int uid = Binder.getCallingUid();
2660 Slog.e(TAG, "Ignoring hideInputMethod due to an invalid token. uid:"
2661 + uid + " token:" + token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002662 return;
2663 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002664 long ident = Binder.clearCallingIdentity();
2665 try {
The Android Open Source Project4df24232009-03-05 14:34:35 -08002666 hideCurrentInputLocked(flags, null);
2667 } finally {
2668 Binder.restoreCallingIdentity(ident);
2669 }
2670 }
2671 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002672
satok42c5a162011-05-26 16:46:14 +09002673 @Override
The Android Open Source Project4df24232009-03-05 14:34:35 -08002674 public void showMySoftInput(IBinder token, int flags) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002675 if (!calledFromValidUser()) {
2676 return;
2677 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002678 synchronized (mMethodMap) {
Yohei Yukawa22c97be2014-06-04 19:43:36 +09002679 if (!calledWithValidToken(token)) {
2680 final int uid = Binder.getCallingUid();
2681 Slog.e(TAG, "Ignoring showMySoftInput due to an invalid token. uid:"
2682 + uid + " token:" + token);
The Android Open Source Project4df24232009-03-05 14:34:35 -08002683 return;
2684 }
2685 long ident = Binder.clearCallingIdentity();
2686 try {
2687 showCurrentInputLocked(flags, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002688 } finally {
2689 Binder.restoreCallingIdentity(ident);
2690 }
2691 }
2692 }
2693
2694 void setEnabledSessionInMainThread(SessionState session) {
2695 if (mEnabledSession != session) {
Yohei Yukawa9d91b432014-05-19 16:03:24 +09002696 if (mEnabledSession != null && mEnabledSession.session != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002697 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002698 if (DEBUG) Slog.v(TAG, "Disabling: " + mEnabledSession);
Yohei Yukawa9d91b432014-05-19 16:03:24 +09002699 mEnabledSession.method.setSessionEnabled(mEnabledSession.session, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002700 } catch (RemoteException e) {
2701 }
2702 }
2703 mEnabledSession = session;
Yohei Yukawa9d91b432014-05-19 16:03:24 +09002704 if (mEnabledSession != null && mEnabledSession.session != null) {
2705 try {
2706 if (DEBUG) Slog.v(TAG, "Enabling: " + mEnabledSession);
2707 mEnabledSession.method.setSessionEnabled(mEnabledSession.session, true);
2708 } catch (RemoteException e) {
2709 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002710 }
2711 }
2712 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002713
satok42c5a162011-05-26 16:46:14 +09002714 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002715 public boolean handleMessage(Message msg) {
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002716 SomeArgs args;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002717 switch (msg.what) {
satokab751aa2010-09-14 19:17:36 +09002718 case MSG_SHOW_IM_SUBTYPE_PICKER:
Seigo Nonaka14e13912015-05-06 21:04:13 -07002719 final boolean showAuxSubtypes;
2720 switch (msg.arg1) {
2721 case InputMethodManager.SHOW_IM_PICKER_MODE_AUTO:
2722 // This is undocumented so far, but IMM#showInputMethodPicker() has been
2723 // implemented so that auxiliary subtypes will be excluded when the soft
2724 // keyboard is invisible.
2725 showAuxSubtypes = mInputShown;
2726 break;
2727 case InputMethodManager.SHOW_IM_PICKER_MODE_INCLUDE_AUXILIARY_SUBTYPES:
2728 showAuxSubtypes = true;
2729 break;
2730 case InputMethodManager.SHOW_IM_PICKER_MODE_EXCLUDE_AUXILIARY_SUBTYPES:
2731 showAuxSubtypes = false;
2732 break;
2733 default:
2734 Slog.e(TAG, "Unknown subtype picker mode = " + msg.arg1);
2735 return false;
2736 }
2737 showInputMethodMenu(showAuxSubtypes);
satokab751aa2010-09-14 19:17:36 +09002738 return true;
2739
satok47a44912010-10-06 16:03:58 +09002740 case MSG_SHOW_IM_SUBTYPE_ENABLER:
Yohei Yukawa41f34272015-12-14 15:41:52 -08002741 showInputMethodAndSubtypeEnabler((String)msg.obj);
satok217f5482010-12-15 05:19:19 +09002742 return true;
2743
2744 case MSG_SHOW_IM_CONFIG:
2745 showConfigureInputMethods();
satok47a44912010-10-06 16:03:58 +09002746 return true;
2747
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002748 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002749
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002750 case MSG_UNBIND_INPUT:
2751 try {
2752 ((IInputMethod)msg.obj).unbindInput();
2753 } catch (RemoteException e) {
2754 // There is nothing interesting about the method dying.
2755 }
2756 return true;
2757 case MSG_BIND_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002758 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002759 try {
2760 ((IInputMethod)args.arg1).bindInput((InputBinding)args.arg2);
2761 } catch (RemoteException e) {
2762 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002763 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002764 return true;
2765 case MSG_SHOW_SOFT_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002766 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002767 try {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002768 if (DEBUG) Slog.v(TAG, "Calling " + args.arg1 + ".showSoftInput("
Craig Mautner6efb4c72013-03-13 10:17:41 -07002769 + msg.arg1 + ", " + args.arg2 + ")");
Craig Mautnerca0ac712013-03-14 09:43:02 -07002770 ((IInputMethod)args.arg1).showSoftInput(msg.arg1, (ResultReceiver)args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002771 } catch (RemoteException e) {
2772 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002773 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002774 return true;
2775 case MSG_HIDE_SOFT_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002776 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002777 try {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002778 if (DEBUG) Slog.v(TAG, "Calling " + args.arg1 + ".hideSoftInput(0, "
Craig Mautner6efb4c72013-03-13 10:17:41 -07002779 + args.arg2 + ")");
Craig Mautnerca0ac712013-03-14 09:43:02 -07002780 ((IInputMethod)args.arg1).hideSoftInput(0, (ResultReceiver)args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002781 } catch (RemoteException e) {
2782 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002783 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002784 return true;
2785 case MSG_ATTACH_TOKEN:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002786 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002787 try {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002788 if (DEBUG) Slog.v(TAG, "Sending attach of token: " + args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002789 ((IInputMethod)args.arg1).attachToken((IBinder)args.arg2);
2790 } catch (RemoteException e) {
2791 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002792 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002793 return true;
Jeff Brownc28867a2013-03-26 15:42:39 -07002794 case MSG_CREATE_SESSION: {
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002795 args = (SomeArgs)msg.obj;
Jeff Brown1951ce82013-04-04 22:45:12 -07002796 IInputMethod method = (IInputMethod)args.arg1;
Jeff Brownc28867a2013-03-26 15:42:39 -07002797 InputChannel channel = (InputChannel)args.arg2;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002798 try {
Jeff Brown1951ce82013-04-04 22:45:12 -07002799 method.createSession(channel, (IInputSessionCallback)args.arg3);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002800 } catch (RemoteException e) {
Jeff Brownc28867a2013-03-26 15:42:39 -07002801 } finally {
Jeff Brown1951ce82013-04-04 22:45:12 -07002802 // Dispose the channel if the input method is not local to this process
2803 // because the remote proxy will get its own copy when unparceled.
2804 if (channel != null && Binder.isProxy(method)) {
Jeff Brownc28867a2013-03-26 15:42:39 -07002805 channel.dispose();
2806 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002807 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002808 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002809 return true;
Jeff Brownc28867a2013-03-26 15:42:39 -07002810 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002811 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002812
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002813 case MSG_START_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002814 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002815 try {
2816 SessionState session = (SessionState)args.arg1;
2817 setEnabledSessionInMainThread(session);
2818 session.method.startInput((IInputContext)args.arg2,
2819 (EditorInfo)args.arg3);
2820 } catch (RemoteException e) {
2821 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002822 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002823 return true;
2824 case MSG_RESTART_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002825 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002826 try {
2827 SessionState session = (SessionState)args.arg1;
2828 setEnabledSessionInMainThread(session);
2829 session.method.restartInput((IInputContext)args.arg2,
2830 (EditorInfo)args.arg3);
2831 } catch (RemoteException e) {
2832 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002833 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002834 return true;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002835
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002836 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002837
Yohei Yukawa33e81792015-11-17 21:14:42 -08002838 case MSG_UNBIND_CLIENT:
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002839 try {
Yohei Yukawa33e81792015-11-17 21:14:42 -08002840 ((IInputMethodClient)msg.obj).onUnbindMethod(msg.arg1, msg.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002841 } catch (RemoteException e) {
2842 // There is nothing interesting about the last client dying.
2843 }
2844 return true;
Yohei Yukawa33e81792015-11-17 21:14:42 -08002845 case MSG_BIND_CLIENT: {
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002846 args = (SomeArgs)msg.obj;
Jeff Brown1951ce82013-04-04 22:45:12 -07002847 IInputMethodClient client = (IInputMethodClient)args.arg1;
2848 InputBindResult res = (InputBindResult)args.arg2;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002849 try {
Jeff Brown1951ce82013-04-04 22:45:12 -07002850 client.onBindMethod(res);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002851 } catch (RemoteException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002852 Slog.w(TAG, "Client died receiving input method " + args.arg2);
Jeff Brown1951ce82013-04-04 22:45:12 -07002853 } finally {
2854 // Dispose the channel if the input method is not local to this process
2855 // because the remote proxy will get its own copy when unparceled.
2856 if (res.channel != null && Binder.isProxy(client)) {
2857 res.channel.dispose();
2858 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002859 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002860 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002861 return true;
Jeff Brown1951ce82013-04-04 22:45:12 -07002862 }
Dianne Hackborna6e41342012-05-22 16:30:34 -07002863 case MSG_SET_ACTIVE:
2864 try {
2865 ((ClientState)msg.obj).client.setActive(msg.arg1 != 0);
2866 } catch (RemoteException e) {
2867 Slog.w(TAG, "Got RemoteException sending setActive(false) notification to pid "
2868 + ((ClientState)msg.obj).pid + " uid "
2869 + ((ClientState)msg.obj).uid);
2870 }
2871 return true;
Yohei Yukawafa6e0a82015-07-23 15:08:59 -07002872 case MSG_SET_INTERACTIVE:
2873 handleSetInteractive(msg.arg1 != 0);
2874 return true;
Yohei Yukawaae61f712015-12-09 13:00:10 -08002875 case MSG_SWITCH_IME:
2876 handleSwitchInputMethod(msg.arg1 != 0);
2877 return true;
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002878 case MSG_SET_USER_ACTION_NOTIFICATION_SEQUENCE_NUMBER: {
2879 final int sequenceNumber = msg.arg1;
Yohei Yukawa080fa342014-08-31 16:10:05 -07002880 final ClientState clientState = (ClientState)msg.obj;
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002881 try {
Yohei Yukawa080fa342014-08-31 16:10:05 -07002882 clientState.client.setUserActionNotificationSequenceNumber(sequenceNumber);
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002883 } catch (RemoteException e) {
2884 Slog.w(TAG, "Got RemoteException sending "
2885 + "setUserActionNotificationSequenceNumber("
2886 + sequenceNumber + ") notification to pid "
Yohei Yukawa080fa342014-08-31 16:10:05 -07002887 + clientState.pid + " uid "
2888 + clientState.uid);
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002889 }
2890 return true;
2891 }
satok01038492012-04-09 21:08:27 +09002892
2893 // --------------------------------------------------------------
2894 case MSG_HARD_KEYBOARD_SWITCH_CHANGED:
Michael Wright7b5a96b2014-08-09 19:28:42 -07002895 mHardKeyboardListener.handleHardKeyboardStatusChange(msg.arg1 == 1);
satok01038492012-04-09 21:08:27 +09002896 return true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002897 }
2898 return false;
2899 }
2900
Yohei Yukawafa6e0a82015-07-23 15:08:59 -07002901 private void handleSetInteractive(final boolean interactive) {
2902 synchronized (mMethodMap) {
2903 mIsInteractive = interactive;
2904 updateSystemUiLocked(mCurToken, interactive ? mImeWindowVis : 0, mBackDisposition);
2905
2906 // Inform the current client of the change in active status
2907 if (mCurClient != null && mCurClient.client != null) {
2908 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
2909 MSG_SET_ACTIVE, mIsInteractive ? 1 : 0, mCurClient));
2910 }
2911 }
2912 }
2913
Yohei Yukawaae61f712015-12-09 13:00:10 -08002914 private void handleSwitchInputMethod(final boolean forwardDirection) {
2915 synchronized (mMethodMap) {
2916 // TODO: Support forwardDirection.
2917 final ImeSubtypeListItem nextSubtype = mSwitchingController.getNextInputMethodLocked(
2918 false, mMethodMap.get(mCurMethodId), mCurrentSubtype);
2919 if (nextSubtype == null) {
2920 return;
2921 }
2922 setInputMethodLocked(nextSubtype.mImi.getId(), nextSubtype.mSubtypeId);
2923 }
2924 }
2925
satokdc9ddae2011-10-06 12:22:36 +09002926 private boolean chooseNewDefaultIMELocked() {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002927 final InputMethodInfo imi = InputMethodUtils.getMostApplicableDefaultIME(
2928 mSettings.getEnabledInputMethodListLocked());
satokdc9ddae2011-10-06 12:22:36 +09002929 if (imi != null) {
satok03eb319a2010-11-11 18:17:42 +09002930 if (DEBUG) {
2931 Slog.d(TAG, "New default IME was selected: " + imi.getId());
2932 }
satok723a27e2010-11-11 14:58:11 +09002933 resetSelectedInputMethodAndSubtypeLocked(imi.getId());
Brandon Ballinger6da35a02009-10-21 00:38:13 -07002934 return true;
2935 }
2936
2937 return false;
2938 }
2939
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002940 void buildInputMethodListLocked(ArrayList<InputMethodInfo> list,
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09002941 HashMap<String, InputMethodInfo> map, boolean resetDefaultEnabledIme) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002942 if (DEBUG) {
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09002943 Slog.d(TAG, "--- re-buildInputMethodList reset = " + resetDefaultEnabledIme
Seigo Nonakae27dc2b2015-08-14 18:21:27 -07002944 + " \n ------ caller=" + Debug.getCallers(10));
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002945 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002946 list.clear();
2947 map.clear();
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002948
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002949 // Use for queryIntentServicesAsUser
2950 final PackageManager pm = mContext.getPackageManager();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002951
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002952 final List<ResolveInfo> services = pm.queryIntentServicesAsUser(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002953 new Intent(InputMethod.SERVICE_INTERFACE),
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08002954 PackageManager.GET_META_DATA | PackageManager.GET_DISABLED_UNTIL_USED_COMPONENTS,
2955 mSettings.getCurrentUserId());
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002956
satoke7c6998e2011-06-03 17:57:59 +09002957 final HashMap<String, List<InputMethodSubtype>> additionalSubtypes =
2958 mFileManager.getAllAdditionalInputMethodSubtypes();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002959 for (int i = 0; i < services.size(); ++i) {
2960 ResolveInfo ri = services.get(i);
2961 ServiceInfo si = ri.serviceInfo;
2962 ComponentName compName = new ComponentName(si.packageName, si.name);
2963 if (!android.Manifest.permission.BIND_INPUT_METHOD.equals(
2964 si.permission)) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002965 Slog.w(TAG, "Skipping input method " + compName
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002966 + ": it does not require the permission "
2967 + android.Manifest.permission.BIND_INPUT_METHOD);
2968 continue;
2969 }
2970
Joe Onorato8a9b2202010-02-26 18:56:32 -08002971 if (DEBUG) Slog.d(TAG, "Checking " + compName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002972
2973 try {
satoke7c6998e2011-06-03 17:57:59 +09002974 InputMethodInfo p = new InputMethodInfo(mContext, ri, additionalSubtypes);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002975 list.add(p);
Amith Yamasanie861ec12010-03-24 21:39:27 -07002976 final String id = p.getId();
2977 map.put(id, p);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002978
2979 if (DEBUG) {
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09002980 Slog.d(TAG, "Found an input method " + p);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002981 }
Yohei Yukawa5894b432015-08-11 13:29:24 -07002982 } catch (XmlPullParserException | IOException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002983 Slog.w(TAG, "Unable to load input method " + compName, e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002984 }
2985 }
Brandon Ballinger6da35a02009-10-21 00:38:13 -07002986
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09002987 if (resetDefaultEnabledIme) {
2988 final ArrayList<InputMethodInfo> defaultEnabledIme =
2989 InputMethodUtils.getDefaultEnabledImes(mContext, mSystemReady, list);
2990 for (int i = 0; i < defaultEnabledIme.size(); ++i) {
2991 final InputMethodInfo imi = defaultEnabledIme.get(i);
2992 if (DEBUG) {
2993 Slog.d(TAG, "--- enable ime = " + imi);
2994 }
2995 setInputMethodEnabledLocked(imi.getId(), true);
2996 }
2997 }
2998
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002999 final String defaultImiId = mSettings.getSelectedInputMethod();
satok0a1bcf42012-05-16 19:26:31 +09003000 if (!TextUtils.isEmpty(defaultImiId)) {
3001 if (!map.containsKey(defaultImiId)) {
3002 Slog.w(TAG, "Default IME is uninstalled. Choose new default IME.");
3003 if (chooseNewDefaultIMELocked()) {
Michael Wright7b5a96b2014-08-09 19:28:42 -07003004 updateInputMethodsFromSettingsLocked(true);
satok0a1bcf42012-05-16 19:26:31 +09003005 }
3006 } else {
3007 // Double check that the default IME is certainly enabled.
3008 setInputMethodEnabledLocked(defaultImiId, true);
Brandon Ballinger6da35a02009-10-21 00:38:13 -07003009 }
3010 }
Yohei Yukawa3d46bab2014-05-30 18:10:18 +09003011 // Here is not the perfect place to reset the switching controller. Ideally
3012 // mSwitchingController and mSettings should be able to share the same state.
3013 // TODO: Make sure that mSwitchingController and mSettings are sharing the
3014 // the same enabled IMEs list.
Yohei Yukawac834a252014-05-21 22:42:32 +09003015 mSwitchingController.resetCircularListLocked(mContext);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003016 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003017
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003018 // ----------------------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003019
satok217f5482010-12-15 05:19:19 +09003020 private void showInputMethodAndSubtypeEnabler(String inputMethodId) {
Tadashi G. Takaokaf49688f2011-01-20 17:56:13 +09003021 Intent intent = new Intent(Settings.ACTION_INPUT_METHOD_SUBTYPE_SETTINGS);
satok47a44912010-10-06 16:03:58 +09003022 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
satok86417ea2010-10-27 14:11:03 +09003023 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED
3024 | Intent.FLAG_ACTIVITY_CLEAR_TOP);
satok7fee71f2010-12-17 18:54:26 +09003025 if (!TextUtils.isEmpty(inputMethodId)) {
Tadashi G. Takaoka25480202011-01-20 23:13:02 +09003026 intent.putExtra(Settings.EXTRA_INPUT_METHOD_ID, inputMethodId);
satok7fee71f2010-12-17 18:54:26 +09003027 }
Yohei Yukawa41f34272015-12-14 15:41:52 -08003028 final int userId;
3029 synchronized (mMethodMap) {
3030 userId = mSettings.getCurrentUserId();
3031 }
3032 mContext.startActivityAsUser(intent, null, UserHandle.of(userId));
satok217f5482010-12-15 05:19:19 +09003033 }
3034
3035 private void showConfigureInputMethods() {
3036 Intent intent = new Intent(Settings.ACTION_INPUT_METHOD_SETTINGS);
3037 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
3038 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED
3039 | Intent.FLAG_ACTIVITY_CLEAR_TOP);
Satoshi Kataoka3ba439d2012-10-05 18:30:13 +09003040 mContext.startActivityAsUser(intent, null, UserHandle.CURRENT);
satok47a44912010-10-06 16:03:58 +09003041 }
3042
satok2c93efc2012-04-02 19:33:47 +09003043 private boolean isScreenLocked() {
3044 return mKeyguardManager != null
3045 && mKeyguardManager.isKeyguardLocked() && mKeyguardManager.isKeyguardSecure();
3046 }
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003047
Seigo Nonaka14e13912015-05-06 21:04:13 -07003048 private void showInputMethodMenu(boolean showAuxSubtypes) {
3049 if (DEBUG) Slog.v(TAG, "Show switching menu. showAuxSubtypes=" + showAuxSubtypes);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003050
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003051 final Context context = mContext;
satok2c93efc2012-04-02 19:33:47 +09003052 final boolean isScreenLocked = isScreenLocked();
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003053
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003054 final String lastInputMethodId = mSettings.getSelectedInputMethod();
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003055 int lastInputMethodSubtypeId = mSettings.getSelectedInputMethodSubtypeId(lastInputMethodId);
Joe Onorato8a9b2202010-02-26 18:56:32 -08003056 if (DEBUG) Slog.v(TAG, "Current IME: " + lastInputMethodId);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003057
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07003058 synchronized (mMethodMap) {
satokbb4aa062011-01-19 21:40:27 +09003059 final HashMap<InputMethodInfo, List<InputMethodSubtype>> immis =
Satoshi Kataokad787f692013-10-26 04:44:21 +09003060 mSettings.getExplicitlyOrImplicitlyEnabledInputMethodsAndSubtypeListLocked(
3061 mContext);
satok7f35c8c2010-10-07 21:13:11 +09003062 if (immis == null || immis.size() == 0) {
3063 return;
3064 }
3065
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07003066 hideInputMethodMenuLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003067
satok688bd472012-02-09 20:09:17 +09003068 final List<ImeSubtypeListItem> imList =
Yohei Yukawa5a647b692014-05-22 12:49:00 +09003069 mSwitchingController.getSortedInputMethodAndSubtypeListLocked(
Yohei Yukawa5f8e7312015-12-10 00:58:55 -08003070 showAuxSubtypes, isScreenLocked);
satok913a8922010-08-26 21:53:41 +09003071
satokc3690562012-01-10 20:14:43 +09003072 if (lastInputMethodSubtypeId == NOT_A_SUBTYPE_ID) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003073 final InputMethodSubtype currentSubtype = getCurrentInputMethodSubtypeLocked();
satokc3690562012-01-10 20:14:43 +09003074 if (currentSubtype != null) {
3075 final InputMethodInfo currentImi = mMethodMap.get(mCurMethodId);
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003076 lastInputMethodSubtypeId = InputMethodUtils.getSubtypeIdFromHashCode(
3077 currentImi, currentSubtype.hashCode());
satokc3690562012-01-10 20:14:43 +09003078 }
3079 }
3080
Ken Wakasa761eb372011-03-04 19:06:18 +09003081 final int N = imList.size();
satokab751aa2010-09-14 19:17:36 +09003082 mIms = new InputMethodInfo[N];
3083 mSubtypeIds = new int[N];
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07003084 int checkedItem = 0;
3085 for (int i = 0; i < N; ++i) {
Ken Wakasa05dbb652011-08-22 15:22:43 +09003086 final ImeSubtypeListItem item = imList.get(i);
3087 mIms[i] = item.mImi;
3088 mSubtypeIds[i] = item.mSubtypeId;
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07003089 if (mIms[i].getId().equals(lastInputMethodId)) {
satokab751aa2010-09-14 19:17:36 +09003090 int subtypeId = mSubtypeIds[i];
3091 if ((subtypeId == NOT_A_SUBTYPE_ID)
3092 || (lastInputMethodSubtypeId == NOT_A_SUBTYPE_ID && subtypeId == 0)
3093 || (subtypeId == lastInputMethodSubtypeId)) {
3094 checkedItem = i;
3095 }
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07003096 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003097 }
Alan Viverette505e3ab2014-11-24 15:22:11 -08003098
3099 final Context settingsContext = new ContextThemeWrapper(context,
3100 com.android.internal.R.style.Theme_DeviceDefault_Settings);
3101
3102 mDialogBuilder = new AlertDialog.Builder(settingsContext);
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003103 mDialogBuilder.setOnCancelListener(new OnCancelListener() {
3104 @Override
3105 public void onCancel(DialogInterface dialog) {
3106 hideInputMethodMenu();
3107 }
3108 });
Alan Viverette505e3ab2014-11-24 15:22:11 -08003109
3110 final Context dialogContext = mDialogBuilder.getContext();
3111 final TypedArray a = dialogContext.obtainStyledAttributes(null,
3112 com.android.internal.R.styleable.DialogPreference,
3113 com.android.internal.R.attr.alertDialogStyle, 0);
3114 final Drawable dialogIcon = a.getDrawable(
3115 com.android.internal.R.styleable.DialogPreference_dialogIcon);
3116 a.recycle();
3117
3118 mDialogBuilder.setIcon(dialogIcon);
3119
3120 final LayoutInflater inflater = (LayoutInflater) dialogContext.getSystemService(
3121 Context.LAYOUT_INFLATER_SERVICE);
satok01038492012-04-09 21:08:27 +09003122 final View tv = inflater.inflate(
3123 com.android.internal.R.layout.input_method_switch_dialog_title, null);
3124 mDialogBuilder.setCustomTitle(tv);
3125
3126 // Setup layout for a toggle switch of the hardware keyboard
3127 mSwitchingDialogTitleView = tv;
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003128 mSwitchingDialogTitleView
3129 .findViewById(com.android.internal.R.id.hard_keyboard_section)
Seigo Nonaka7309b122015-08-17 18:34:13 -07003130 .setVisibility(mWindowManagerInternal.isHardKeyboardAvailable()
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003131 ? View.VISIBLE : View.GONE);
Alan Viverette505e3ab2014-11-24 15:22:11 -08003132 final Switch hardKeySwitch = (Switch) mSwitchingDialogTitleView.findViewById(
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003133 com.android.internal.R.id.hard_keyboard_switch);
Michael Wright7b5a96b2014-08-09 19:28:42 -07003134 hardKeySwitch.setChecked(mShowImeWithHardKeyboard);
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003135 hardKeySwitch.setOnCheckedChangeListener(new OnCheckedChangeListener() {
3136 @Override
3137 public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
Michael Wright7b5a96b2014-08-09 19:28:42 -07003138 mSettings.setShowImeWithHardKeyboard(isChecked);
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003139 // Ensure that the input method dialog is dismissed when changing
3140 // the hardware keyboard state.
3141 hideInputMethodMenu();
3142 }
3143 });
3144
Alan Viverette505e3ab2014-11-24 15:22:11 -08003145 final ImeSubtypeListAdapter adapter = new ImeSubtypeListAdapter(dialogContext,
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003146 com.android.internal.R.layout.input_method_switch_item, imList, checkedItem);
3147 final OnClickListener choiceListener = new OnClickListener() {
3148 @Override
3149 public void onClick(final DialogInterface dialog, final int which) {
3150 synchronized (mMethodMap) {
3151 if (mIms == null || mIms.length <= which || mSubtypeIds == null
3152 || mSubtypeIds.length <= which) {
3153 return;
satok01038492012-04-09 21:08:27 +09003154 }
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003155 final InputMethodInfo im = mIms[which];
3156 int subtypeId = mSubtypeIds[which];
3157 adapter.mCheckedItem = which;
3158 adapter.notifyDataSetChanged();
3159 hideInputMethodMenu();
3160 if (im != null) {
3161 if (subtypeId < 0 || subtypeId >= im.getSubtypeCount()) {
3162 subtypeId = NOT_A_SUBTYPE_ID;
Dianne Hackborn20cb56e2010-03-04 00:58:29 -08003163 }
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003164 setInputMethodLocked(im.getId(), subtypeId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003165 }
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003166 }
3167 }
3168 };
3169 mDialogBuilder.setSingleChoiceItems(adapter, checkedItem, choiceListener);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003170
Seigo Nonakad4474cb2015-05-04 16:53:24 -07003171 if (!isScreenLocked) {
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003172 final OnClickListener positiveListener = new OnClickListener() {
3173 @Override
3174 public void onClick(DialogInterface dialog, int whichButton) {
3175 showConfigureInputMethods();
3176 }
3177 };
satok82beadf2010-12-27 19:03:06 +09003178 mDialogBuilder.setPositiveButton(
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003179 com.android.internal.R.string.configure_input_methods, positiveListener);
satok7f35c8c2010-10-07 21:13:11 +09003180 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003181 mSwitchingDialog = mDialogBuilder.create();
Dianne Hackborne3a7f622011-03-03 21:48:24 -08003182 mSwitchingDialog.setCanceledOnTouchOutside(true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003183 mSwitchingDialog.getWindow().setType(
3184 WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG);
Satoshi Kataokac86884c2012-10-09 15:20:29 +09003185 mSwitchingDialog.getWindow().getAttributes().privateFlags |=
3186 WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS;
Dianne Hackborne3a7f622011-03-03 21:48:24 -08003187 mSwitchingDialog.getWindow().getAttributes().setTitle("Select input method");
Seigo Nonakad9eb9112015-05-26 20:54:43 +09003188 updateSystemUi(mCurToken, mImeWindowVis, mBackDisposition);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003189 mSwitchingDialog.show();
3190 }
3191 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003192
Ken Wakasa05dbb652011-08-22 15:22:43 +09003193 private static class ImeSubtypeListAdapter extends ArrayAdapter<ImeSubtypeListItem> {
3194 private final LayoutInflater mInflater;
3195 private final int mTextViewResourceId;
3196 private final List<ImeSubtypeListItem> mItemsList;
Satoshi Kataokad2142962012-11-12 18:43:06 +09003197 public int mCheckedItem;
Ken Wakasa05dbb652011-08-22 15:22:43 +09003198 public ImeSubtypeListAdapter(Context context, int textViewResourceId,
3199 List<ImeSubtypeListItem> itemsList, int checkedItem) {
3200 super(context, textViewResourceId, itemsList);
Alan Viverette505e3ab2014-11-24 15:22:11 -08003201
Ken Wakasa05dbb652011-08-22 15:22:43 +09003202 mTextViewResourceId = textViewResourceId;
3203 mItemsList = itemsList;
3204 mCheckedItem = checkedItem;
Alan Viverette505e3ab2014-11-24 15:22:11 -08003205 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
Ken Wakasa05dbb652011-08-22 15:22:43 +09003206 }
3207
3208 @Override
3209 public View getView(int position, View convertView, ViewGroup parent) {
3210 final View view = convertView != null ? convertView
3211 : mInflater.inflate(mTextViewResourceId, null);
3212 if (position < 0 || position >= mItemsList.size()) return view;
3213 final ImeSubtypeListItem item = mItemsList.get(position);
3214 final CharSequence imeName = item.mImeName;
3215 final CharSequence subtypeName = item.mSubtypeName;
3216 final TextView firstTextView = (TextView)view.findViewById(android.R.id.text1);
3217 final TextView secondTextView = (TextView)view.findViewById(android.R.id.text2);
3218 if (TextUtils.isEmpty(subtypeName)) {
3219 firstTextView.setText(imeName);
3220 secondTextView.setVisibility(View.GONE);
3221 } else {
3222 firstTextView.setText(subtypeName);
3223 secondTextView.setText(imeName);
3224 secondTextView.setVisibility(View.VISIBLE);
3225 }
3226 final RadioButton radioButton =
3227 (RadioButton)view.findViewById(com.android.internal.R.id.radio);
3228 radioButton.setChecked(position == mCheckedItem);
3229 return view;
3230 }
3231 }
3232
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003233 void hideInputMethodMenu() {
The Android Open Source Project10592532009-03-18 17:39:46 -07003234 synchronized (mMethodMap) {
3235 hideInputMethodMenuLocked();
3236 }
3237 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003238
The Android Open Source Project10592532009-03-18 17:39:46 -07003239 void hideInputMethodMenuLocked() {
Joe Onorato8a9b2202010-02-26 18:56:32 -08003240 if (DEBUG) Slog.v(TAG, "Hide switching menu");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003241
The Android Open Source Project10592532009-03-18 17:39:46 -07003242 if (mSwitchingDialog != null) {
3243 mSwitchingDialog.dismiss();
3244 mSwitchingDialog = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003245 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003246
Seigo Nonakad9eb9112015-05-26 20:54:43 +09003247 updateSystemUiLocked(mCurToken, mImeWindowVis, mBackDisposition);
The Android Open Source Project10592532009-03-18 17:39:46 -07003248 mDialogBuilder = null;
The Android Open Source Project10592532009-03-18 17:39:46 -07003249 mIms = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003250 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003251
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003252 // ----------------------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003253
satok42c5a162011-05-26 16:46:14 +09003254 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003255 public boolean setInputMethodEnabled(String id, boolean enabled) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003256 // TODO: Make this work even for non-current users?
3257 if (!calledFromValidUser()) {
3258 return false;
3259 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003260 synchronized (mMethodMap) {
3261 if (mContext.checkCallingOrSelfPermission(
3262 android.Manifest.permission.WRITE_SECURE_SETTINGS)
3263 != PackageManager.PERMISSION_GRANTED) {
3264 throw new SecurityException(
3265 "Requires permission "
3266 + android.Manifest.permission.WRITE_SECURE_SETTINGS);
3267 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003268
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003269 long ident = Binder.clearCallingIdentity();
3270 try {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003271 return setInputMethodEnabledLocked(id, enabled);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003272 } finally {
3273 Binder.restoreCallingIdentity(ident);
3274 }
3275 }
3276 }
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003277
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003278 boolean setInputMethodEnabledLocked(String id, boolean enabled) {
3279 // Make sure this is a valid input method.
3280 InputMethodInfo imm = mMethodMap.get(id);
3281 if (imm == null) {
satokd87c2592010-09-29 11:52:06 +09003282 throw new IllegalArgumentException("Unknown id: " + mCurMethodId);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003283 }
3284
satokd87c2592010-09-29 11:52:06 +09003285 List<Pair<String, ArrayList<String>>> enabledInputMethodsList = mSettings
3286 .getEnabledInputMethodsAndSubtypeListLocked();
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003287
satokd87c2592010-09-29 11:52:06 +09003288 if (enabled) {
3289 for (Pair<String, ArrayList<String>> pair: enabledInputMethodsList) {
3290 if (pair.first.equals(id)) {
3291 // We are enabling this input method, but it is already enabled.
3292 // Nothing to do. The previous state was enabled.
3293 return true;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003294 }
3295 }
satokd87c2592010-09-29 11:52:06 +09003296 mSettings.appendAndPutEnabledInputMethodLocked(id, false);
3297 // Previous state was disabled.
3298 return false;
3299 } else {
3300 StringBuilder builder = new StringBuilder();
3301 if (mSettings.buildAndPutEnabledInputMethodsStrRemovingIdLocked(
3302 builder, enabledInputMethodsList, id)) {
3303 // Disabled input method is currently selected, switch to another one.
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003304 final String selId = mSettings.getSelectedInputMethod();
satok03eb319a2010-11-11 18:17:42 +09003305 if (id.equals(selId) && !chooseNewDefaultIMELocked()) {
3306 Slog.i(TAG, "Can't find new IME, unsetting the current input method.");
3307 resetSelectedInputMethodAndSubtypeLocked("");
satokd87c2592010-09-29 11:52:06 +09003308 }
3309 // Previous state was enabled.
3310 return true;
3311 } else {
3312 // We are disabling the input method but it is already disabled.
3313 // Nothing to do. The previous state was disabled.
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003314 return false;
3315 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003316 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003317 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08003318
satok723a27e2010-11-11 14:58:11 +09003319 private void setSelectedInputMethodAndSubtypeLocked(InputMethodInfo imi, int subtypeId,
3320 boolean setSubtypeOnly) {
3321 // Update the history of InputMethod and Subtype
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003322 mSettings.saveCurrentInputMethodAndSubtypeToHistory(mCurMethodId, mCurrentSubtype);
satok723a27e2010-11-11 14:58:11 +09003323
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09003324 mCurUserActionNotificationSequenceNumber =
3325 Math.max(mCurUserActionNotificationSequenceNumber + 1, 1);
3326 if (DEBUG) {
3327 Slog.d(TAG, "Bump mCurUserActionNotificationSequenceNumber:"
3328 + mCurUserActionNotificationSequenceNumber);
3329 }
3330
3331 if (mCurClient != null && mCurClient.client != null) {
3332 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
3333 MSG_SET_USER_ACTION_NOTIFICATION_SEQUENCE_NUMBER,
Yohei Yukawa080fa342014-08-31 16:10:05 -07003334 mCurUserActionNotificationSequenceNumber, mCurClient));
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09003335 }
3336
satok723a27e2010-11-11 14:58:11 +09003337 // Set Subtype here
3338 if (imi == null || subtypeId < 0) {
3339 mSettings.putSelectedSubtype(NOT_A_SUBTYPE_ID);
Tadashi G. Takaoka0ba75bb2010-11-09 12:19:32 -08003340 mCurrentSubtype = null;
satok723a27e2010-11-11 14:58:11 +09003341 } else {
Ken Wakasa586f0512011-01-20 22:31:01 +09003342 if (subtypeId < imi.getSubtypeCount()) {
3343 InputMethodSubtype subtype = imi.getSubtypeAt(subtypeId);
3344 mSettings.putSelectedSubtype(subtype.hashCode());
3345 mCurrentSubtype = subtype;
satok723a27e2010-11-11 14:58:11 +09003346 } else {
3347 mSettings.putSelectedSubtype(NOT_A_SUBTYPE_ID);
satokd81e9502012-05-21 12:58:45 +09003348 // If the subtype is not specified, choose the most applicable one
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003349 mCurrentSubtype = getCurrentInputMethodSubtypeLocked();
satok723a27e2010-11-11 14:58:11 +09003350 }
satokab751aa2010-09-14 19:17:36 +09003351 }
satok723a27e2010-11-11 14:58:11 +09003352
satok4c0e7152012-06-20 20:08:44 +09003353 // Workaround.
3354 // ASEC is not ready in the IMMS constructor. Accordingly, forward-locked
3355 // IMEs are not recognized and considered uninstalled.
3356 // Actually, we can't move everything after SystemReady because
3357 // IMMS needs to run in the encryption lock screen. So, we just skip changing
3358 // the default IME here and try cheking the default IME again in systemReady().
3359 // TODO: Do nothing before system ready and implement a separated logic for
3360 // the encryption lock screen.
3361 // TODO: ASEC should be ready before IMMS is instantiated.
3362 if (mSystemReady && !setSubtypeOnly) {
satok723a27e2010-11-11 14:58:11 +09003363 // Set InputMethod here
3364 mSettings.putSelectedInputMethod(imi != null ? imi.getId() : "");
3365 }
3366 }
3367
3368 private void resetSelectedInputMethodAndSubtypeLocked(String newDefaultIme) {
3369 InputMethodInfo imi = mMethodMap.get(newDefaultIme);
3370 int lastSubtypeId = NOT_A_SUBTYPE_ID;
3371 // newDefaultIme is empty when there is no candidate for the selected IME.
3372 if (imi != null && !TextUtils.isEmpty(newDefaultIme)) {
3373 String subtypeHashCode = mSettings.getLastSubtypeForInputMethodLocked(newDefaultIme);
3374 if (subtypeHashCode != null) {
3375 try {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003376 lastSubtypeId = InputMethodUtils.getSubtypeIdFromHashCode(
satok723a27e2010-11-11 14:58:11 +09003377 imi, Integer.valueOf(subtypeHashCode));
3378 } catch (NumberFormatException e) {
3379 Slog.w(TAG, "HashCode for subtype looks broken: " + subtypeHashCode, e);
3380 }
3381 }
3382 }
3383 setSelectedInputMethodAndSubtypeLocked(imi, lastSubtypeId, false);
satokab751aa2010-09-14 19:17:36 +09003384 }
3385
satok4e4569d2010-11-19 18:45:53 +09003386 // If there are no selected shortcuts, tries finding the most applicable ones.
3387 private Pair<InputMethodInfo, InputMethodSubtype>
3388 findLastResortApplicableShortcutInputMethodAndSubtypeLocked(String mode) {
3389 List<InputMethodInfo> imis = mSettings.getEnabledInputMethodListLocked();
3390 InputMethodInfo mostApplicableIMI = null;
satokcd7cd292010-11-20 15:46:23 +09003391 InputMethodSubtype mostApplicableSubtype = null;
satok4e4569d2010-11-19 18:45:53 +09003392 boolean foundInSystemIME = false;
3393
3394 // Search applicable subtype for each InputMethodInfo
3395 for (InputMethodInfo imi: imis) {
satok7599a7f2010-12-22 13:45:23 +09003396 final String imiId = imi.getId();
3397 if (foundInSystemIME && !imiId.equals(mCurMethodId)) {
3398 continue;
3399 }
satokcd7cd292010-11-20 15:46:23 +09003400 InputMethodSubtype subtype = null;
satokdf31ae62011-01-15 06:19:44 +09003401 final List<InputMethodSubtype> enabledSubtypes =
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003402 mSettings.getEnabledInputMethodSubtypeListLocked(mContext, imi, true);
satokdf31ae62011-01-15 06:19:44 +09003403 // 1. Search by the current subtype's locale from enabledSubtypes.
satok4e4569d2010-11-19 18:45:53 +09003404 if (mCurrentSubtype != null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003405 subtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
satokdf31ae62011-01-15 06:19:44 +09003406 mRes, enabledSubtypes, mode, mCurrentSubtype.getLocale(), false);
satok4e4569d2010-11-19 18:45:53 +09003407 }
satokdf31ae62011-01-15 06:19:44 +09003408 // 2. Search by the system locale from enabledSubtypes.
3409 // 3. Search the first enabled subtype matched with mode from enabledSubtypes.
satokcd7cd292010-11-20 15:46:23 +09003410 if (subtype == null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003411 subtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
satokdf31ae62011-01-15 06:19:44 +09003412 mRes, enabledSubtypes, mode, null, true);
satok4e4569d2010-11-19 18:45:53 +09003413 }
satoka86f5e42011-09-02 17:12:42 +09003414 final ArrayList<InputMethodSubtype> overridingImplicitlyEnabledSubtypes =
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003415 InputMethodUtils.getOverridingImplicitlyEnabledSubtypes(imi, mode);
satoka86f5e42011-09-02 17:12:42 +09003416 final ArrayList<InputMethodSubtype> subtypesForSearch =
3417 overridingImplicitlyEnabledSubtypes.isEmpty()
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003418 ? InputMethodUtils.getSubtypes(imi)
3419 : overridingImplicitlyEnabledSubtypes;
satok7599a7f2010-12-22 13:45:23 +09003420 // 4. Search by the current subtype's locale from all subtypes.
3421 if (subtype == null && mCurrentSubtype != null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003422 subtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
satoka86f5e42011-09-02 17:12:42 +09003423 mRes, subtypesForSearch, mode, mCurrentSubtype.getLocale(), false);
satok7599a7f2010-12-22 13:45:23 +09003424 }
3425 // 5. Search by the system locale from all subtypes.
3426 // 6. Search the first enabled subtype matched with mode from all subtypes.
satokcd7cd292010-11-20 15:46:23 +09003427 if (subtype == null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003428 subtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
satoka86f5e42011-09-02 17:12:42 +09003429 mRes, subtypesForSearch, mode, null, true);
satok4e4569d2010-11-19 18:45:53 +09003430 }
satokcd7cd292010-11-20 15:46:23 +09003431 if (subtype != null) {
satok7599a7f2010-12-22 13:45:23 +09003432 if (imiId.equals(mCurMethodId)) {
satok4e4569d2010-11-19 18:45:53 +09003433 // The current input method is the most applicable IME.
3434 mostApplicableIMI = imi;
satokcd7cd292010-11-20 15:46:23 +09003435 mostApplicableSubtype = subtype;
satok4e4569d2010-11-19 18:45:53 +09003436 break;
satok7599a7f2010-12-22 13:45:23 +09003437 } else if (!foundInSystemIME) {
satok4e4569d2010-11-19 18:45:53 +09003438 // The system input method is 2nd applicable IME.
3439 mostApplicableIMI = imi;
satokcd7cd292010-11-20 15:46:23 +09003440 mostApplicableSubtype = subtype;
satok7599a7f2010-12-22 13:45:23 +09003441 if ((imi.getServiceInfo().applicationInfo.flags
3442 & ApplicationInfo.FLAG_SYSTEM) != 0) {
3443 foundInSystemIME = true;
3444 }
satok4e4569d2010-11-19 18:45:53 +09003445 }
3446 }
3447 }
3448 if (DEBUG) {
satokcd7cd292010-11-20 15:46:23 +09003449 if (mostApplicableIMI != null) {
3450 Slog.w(TAG, "Most applicable shortcut input method was:"
3451 + mostApplicableIMI.getId());
3452 if (mostApplicableSubtype != null) {
3453 Slog.w(TAG, "Most applicable shortcut input method subtype was:"
3454 + "," + mostApplicableSubtype.getMode() + ","
3455 + mostApplicableSubtype.getLocale());
3456 }
3457 }
satok4e4569d2010-11-19 18:45:53 +09003458 }
satokcd7cd292010-11-20 15:46:23 +09003459 if (mostApplicableIMI != null) {
Yohei Yukawab0377bb2015-08-10 21:06:30 -07003460 return new Pair<> (mostApplicableIMI, mostApplicableSubtype);
satok4e4569d2010-11-19 18:45:53 +09003461 } else {
3462 return null;
3463 }
3464 }
3465
satokab751aa2010-09-14 19:17:36 +09003466 /**
3467 * @return Return the current subtype of this input method.
3468 */
satok42c5a162011-05-26 16:46:14 +09003469 @Override
satokab751aa2010-09-14 19:17:36 +09003470 public InputMethodSubtype getCurrentInputMethodSubtype() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003471 // TODO: Make this work even for non-current users?
3472 if (!calledFromValidUser()) {
3473 return null;
3474 }
3475 synchronized (mMethodMap) {
3476 return getCurrentInputMethodSubtypeLocked();
3477 }
3478 }
3479
3480 private InputMethodSubtype getCurrentInputMethodSubtypeLocked() {
satokfdf419e2012-05-08 16:52:08 +09003481 if (mCurMethodId == null) {
3482 return null;
3483 }
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003484 final boolean subtypeIsSelected = mSettings.isSubtypeSelected();
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003485 final InputMethodInfo imi = mMethodMap.get(mCurMethodId);
3486 if (imi == null || imi.getSubtypeCount() == 0) {
3487 return null;
satok4e4569d2010-11-19 18:45:53 +09003488 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003489 if (!subtypeIsSelected || mCurrentSubtype == null
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003490 || !InputMethodUtils.isValidSubtypeId(imi, mCurrentSubtype.hashCode())) {
3491 int subtypeId = mSettings.getSelectedInputMethodSubtypeId(mCurMethodId);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003492 if (subtypeId == NOT_A_SUBTYPE_ID) {
3493 // If there are no selected subtypes, the framework will try to find
3494 // the most applicable subtype from explicitly or implicitly enabled
3495 // subtypes.
3496 List<InputMethodSubtype> explicitlyOrImplicitlyEnabledSubtypes =
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003497 mSettings.getEnabledInputMethodSubtypeListLocked(mContext, imi, true);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003498 // If there is only one explicitly or implicitly enabled subtype,
3499 // just returns it.
3500 if (explicitlyOrImplicitlyEnabledSubtypes.size() == 1) {
3501 mCurrentSubtype = explicitlyOrImplicitlyEnabledSubtypes.get(0);
3502 } else if (explicitlyOrImplicitlyEnabledSubtypes.size() > 1) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003503 mCurrentSubtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003504 mRes, explicitlyOrImplicitlyEnabledSubtypes,
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003505 InputMethodUtils.SUBTYPE_MODE_KEYBOARD, null, true);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003506 if (mCurrentSubtype == null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003507 mCurrentSubtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003508 mRes, explicitlyOrImplicitlyEnabledSubtypes, null, null,
3509 true);
satok4e4569d2010-11-19 18:45:53 +09003510 }
satok3ef8b292010-11-23 06:06:29 +09003511 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003512 } else {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003513 mCurrentSubtype = InputMethodUtils.getSubtypes(imi).get(subtypeId);
satok8fbb1e82010-11-02 23:15:58 +09003514 }
3515 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003516 return mCurrentSubtype;
satokab751aa2010-09-14 19:17:36 +09003517 }
3518
satok4e4569d2010-11-19 18:45:53 +09003519 // TODO: We should change the return type from List to List<Parcelable>
satokdbf29502011-08-25 15:28:23 +09003520 @SuppressWarnings("rawtypes")
satoke7c6998e2011-06-03 17:57:59 +09003521 @Override
satok4e4569d2010-11-19 18:45:53 +09003522 public List getShortcutInputMethodsAndSubtypes() {
3523 synchronized (mMethodMap) {
Yohei Yukawab0377bb2015-08-10 21:06:30 -07003524 ArrayList<Object> ret = new ArrayList<>();
satokf3db1af2010-11-23 13:34:33 +09003525 if (mShortcutInputMethodsAndSubtypes.size() == 0) {
satok4e4569d2010-11-19 18:45:53 +09003526 // If there are no selected shortcut subtypes, the framework will try to find
3527 // the most applicable subtype from all subtypes whose mode is
3528 // SUBTYPE_MODE_VOICE. This is an exceptional case, so we will hardcode the mode.
satokf3db1af2010-11-23 13:34:33 +09003529 Pair<InputMethodInfo, InputMethodSubtype> info =
3530 findLastResortApplicableShortcutInputMethodAndSubtypeLocked(
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003531 InputMethodUtils.SUBTYPE_MODE_VOICE);
satok7599a7f2010-12-22 13:45:23 +09003532 if (info != null) {
satok3da92232011-01-11 22:46:30 +09003533 ret.add(info.first);
3534 ret.add(info.second);
satok7599a7f2010-12-22 13:45:23 +09003535 }
satok3da92232011-01-11 22:46:30 +09003536 return ret;
satokf3db1af2010-11-23 13:34:33 +09003537 }
satokf3db1af2010-11-23 13:34:33 +09003538 for (InputMethodInfo imi: mShortcutInputMethodsAndSubtypes.keySet()) {
3539 ret.add(imi);
3540 for (InputMethodSubtype subtype: mShortcutInputMethodsAndSubtypes.get(imi)) {
3541 ret.add(subtype);
satok4e4569d2010-11-19 18:45:53 +09003542 }
3543 }
satokf3db1af2010-11-23 13:34:33 +09003544 return ret;
satok4e4569d2010-11-19 18:45:53 +09003545 }
3546 }
3547
satok42c5a162011-05-26 16:46:14 +09003548 @Override
satokb66d2872010-11-10 01:04:04 +09003549 public boolean setCurrentInputMethodSubtype(InputMethodSubtype subtype) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003550 // TODO: Make this work even for non-current users?
3551 if (!calledFromValidUser()) {
3552 return false;
3553 }
satokb66d2872010-11-10 01:04:04 +09003554 synchronized (mMethodMap) {
3555 if (subtype != null && mCurMethodId != null) {
3556 InputMethodInfo imi = mMethodMap.get(mCurMethodId);
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003557 int subtypeId = InputMethodUtils.getSubtypeIdFromHashCode(imi, subtype.hashCode());
satokb66d2872010-11-10 01:04:04 +09003558 if (subtypeId != NOT_A_SUBTYPE_ID) {
3559 setInputMethodLocked(mCurMethodId, subtypeId);
3560 return true;
3561 }
3562 }
3563 return false;
3564 }
3565 }
3566
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +09003567 // TODO: Cache the state for each user and reset when the cached user is removed.
satoke7c6998e2011-06-03 17:57:59 +09003568 private static class InputMethodFileManager {
3569 private static final String SYSTEM_PATH = "system";
3570 private static final String INPUT_METHOD_PATH = "inputmethod";
3571 private static final String ADDITIONAL_SUBTYPES_FILE_NAME = "subtypes.xml";
3572 private static final String NODE_SUBTYPES = "subtypes";
3573 private static final String NODE_SUBTYPE = "subtype";
3574 private static final String NODE_IMI = "imi";
3575 private static final String ATTR_ID = "id";
3576 private static final String ATTR_LABEL = "label";
3577 private static final String ATTR_ICON = "icon";
3578 private static final String ATTR_IME_SUBTYPE_LOCALE = "imeSubtypeLocale";
Yohei Yukawa868d19b2015-12-07 15:58:57 -08003579 private static final String ATTR_IME_SUBTYPE_LANGUAGE_TAG = "languageTag";
satoke7c6998e2011-06-03 17:57:59 +09003580 private static final String ATTR_IME_SUBTYPE_MODE = "imeSubtypeMode";
3581 private static final String ATTR_IME_SUBTYPE_EXTRA_VALUE = "imeSubtypeExtraValue";
3582 private static final String ATTR_IS_AUXILIARY = "isAuxiliary";
3583 private final AtomicFile mAdditionalInputMethodSubtypeFile;
3584 private final HashMap<String, InputMethodInfo> mMethodMap;
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003585 private final HashMap<String, List<InputMethodSubtype>> mAdditionalSubtypesMap =
Yohei Yukawab0377bb2015-08-10 21:06:30 -07003586 new HashMap<>();
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +09003587 public InputMethodFileManager(HashMap<String, InputMethodInfo> methodMap, int userId) {
satoke7c6998e2011-06-03 17:57:59 +09003588 if (methodMap == null) {
3589 throw new NullPointerException("methodMap is null");
3590 }
3591 mMethodMap = methodMap;
Xiaohui Chen7c696362015-09-16 09:56:14 -07003592 final File systemDir = userId == UserHandle.USER_SYSTEM
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +09003593 ? new File(Environment.getDataDirectory(), SYSTEM_PATH)
3594 : Environment.getUserSystemDirectory(userId);
satoke7c6998e2011-06-03 17:57:59 +09003595 final File inputMethodDir = new File(systemDir, INPUT_METHOD_PATH);
Yohei Yukawadf5af482015-08-04 22:11:11 -07003596 if (!inputMethodDir.exists() && !inputMethodDir.mkdirs()) {
satoke7c6998e2011-06-03 17:57:59 +09003597 Slog.w(TAG, "Couldn't create dir.: " + inputMethodDir.getAbsolutePath());
3598 }
3599 final File subtypeFile = new File(inputMethodDir, ADDITIONAL_SUBTYPES_FILE_NAME);
3600 mAdditionalInputMethodSubtypeFile = new AtomicFile(subtypeFile);
3601 if (!subtypeFile.exists()) {
3602 // If "subtypes.xml" doesn't exist, create a blank file.
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003603 writeAdditionalInputMethodSubtypes(
3604 mAdditionalSubtypesMap, mAdditionalInputMethodSubtypeFile, methodMap);
satoke7c6998e2011-06-03 17:57:59 +09003605 } else {
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003606 readAdditionalInputMethodSubtypes(
3607 mAdditionalSubtypesMap, mAdditionalInputMethodSubtypeFile);
satoke7c6998e2011-06-03 17:57:59 +09003608 }
3609 }
3610
3611 private void deleteAllInputMethodSubtypes(String imiId) {
3612 synchronized (mMethodMap) {
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003613 mAdditionalSubtypesMap.remove(imiId);
3614 writeAdditionalInputMethodSubtypes(
3615 mAdditionalSubtypesMap, mAdditionalInputMethodSubtypeFile, mMethodMap);
satoke7c6998e2011-06-03 17:57:59 +09003616 }
3617 }
3618
3619 public void addInputMethodSubtypes(
satok4a28bde2011-06-29 21:03:40 +09003620 InputMethodInfo imi, InputMethodSubtype[] additionalSubtypes) {
satoke7c6998e2011-06-03 17:57:59 +09003621 synchronized (mMethodMap) {
Yohei Yukawab0377bb2015-08-10 21:06:30 -07003622 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>();
satoke7c6998e2011-06-03 17:57:59 +09003623 final int N = additionalSubtypes.length;
3624 for (int i = 0; i < N; ++i) {
3625 final InputMethodSubtype subtype = additionalSubtypes[i];
satoked2b24e2011-08-31 18:03:21 +09003626 if (!subtypes.contains(subtype)) {
satoke7c6998e2011-06-03 17:57:59 +09003627 subtypes.add(subtype);
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003628 } else {
3629 Slog.w(TAG, "Duplicated subtype definition found: "
3630 + subtype.getLocale() + ", " + subtype.getMode());
satoke7c6998e2011-06-03 17:57:59 +09003631 }
3632 }
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003633 mAdditionalSubtypesMap.put(imi.getId(), subtypes);
3634 writeAdditionalInputMethodSubtypes(
3635 mAdditionalSubtypesMap, mAdditionalInputMethodSubtypeFile, mMethodMap);
satoke7c6998e2011-06-03 17:57:59 +09003636 }
3637 }
3638
3639 public HashMap<String, List<InputMethodSubtype>> getAllAdditionalInputMethodSubtypes() {
3640 synchronized (mMethodMap) {
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003641 return mAdditionalSubtypesMap;
satoke7c6998e2011-06-03 17:57:59 +09003642 }
3643 }
3644
3645 private static void writeAdditionalInputMethodSubtypes(
3646 HashMap<String, List<InputMethodSubtype>> allSubtypes, AtomicFile subtypesFile,
3647 HashMap<String, InputMethodInfo> methodMap) {
3648 // Safety net for the case that this function is called before methodMap is set.
3649 final boolean isSetMethodMap = methodMap != null && methodMap.size() > 0;
3650 FileOutputStream fos = null;
3651 try {
3652 fos = subtypesFile.startWrite();
3653 final XmlSerializer out = new FastXmlSerializer();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01003654 out.setOutput(fos, StandardCharsets.UTF_8.name());
satoke7c6998e2011-06-03 17:57:59 +09003655 out.startDocument(null, true);
3656 out.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
3657 out.startTag(null, NODE_SUBTYPES);
3658 for (String imiId : allSubtypes.keySet()) {
3659 if (isSetMethodMap && !methodMap.containsKey(imiId)) {
3660 Slog.w(TAG, "IME uninstalled or not valid.: " + imiId);
3661 continue;
3662 }
3663 out.startTag(null, NODE_IMI);
3664 out.attribute(null, ATTR_ID, imiId);
3665 final List<InputMethodSubtype> subtypesList = allSubtypes.get(imiId);
3666 final int N = subtypesList.size();
3667 for (int i = 0; i < N; ++i) {
3668 final InputMethodSubtype subtype = subtypesList.get(i);
3669 out.startTag(null, NODE_SUBTYPE);
3670 out.attribute(null, ATTR_ICON, String.valueOf(subtype.getIconResId()));
3671 out.attribute(null, ATTR_LABEL, String.valueOf(subtype.getNameResId()));
3672 out.attribute(null, ATTR_IME_SUBTYPE_LOCALE, subtype.getLocale());
Yohei Yukawa868d19b2015-12-07 15:58:57 -08003673 out.attribute(null, ATTR_IME_SUBTYPE_LANGUAGE_TAG,
3674 subtype.getLanguageTag());
satoke7c6998e2011-06-03 17:57:59 +09003675 out.attribute(null, ATTR_IME_SUBTYPE_MODE, subtype.getMode());
3676 out.attribute(null, ATTR_IME_SUBTYPE_EXTRA_VALUE, subtype.getExtraValue());
3677 out.attribute(null, ATTR_IS_AUXILIARY,
3678 String.valueOf(subtype.isAuxiliary() ? 1 : 0));
3679 out.endTag(null, NODE_SUBTYPE);
3680 }
3681 out.endTag(null, NODE_IMI);
3682 }
3683 out.endTag(null, NODE_SUBTYPES);
3684 out.endDocument();
3685 subtypesFile.finishWrite(fos);
3686 } catch (java.io.IOException e) {
3687 Slog.w(TAG, "Error writing subtypes", e);
3688 if (fos != null) {
3689 subtypesFile.failWrite(fos);
3690 }
3691 }
3692 }
3693
3694 private static void readAdditionalInputMethodSubtypes(
3695 HashMap<String, List<InputMethodSubtype>> allSubtypes, AtomicFile subtypesFile) {
3696 if (allSubtypes == null || subtypesFile == null) return;
3697 allSubtypes.clear();
Yohei Yukawa5894b432015-08-11 13:29:24 -07003698 try (final FileInputStream fis = subtypesFile.openRead()) {
satoke7c6998e2011-06-03 17:57:59 +09003699 final XmlPullParser parser = Xml.newPullParser();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01003700 parser.setInput(fis, StandardCharsets.UTF_8.name());
satoke7c6998e2011-06-03 17:57:59 +09003701 int type = parser.getEventType();
3702 // Skip parsing until START_TAG
3703 while ((type = parser.next()) != XmlPullParser.START_TAG
3704 && type != XmlPullParser.END_DOCUMENT) {}
3705 String firstNodeName = parser.getName();
3706 if (!NODE_SUBTYPES.equals(firstNodeName)) {
3707 throw new XmlPullParserException("Xml doesn't start with subtypes");
3708 }
3709 final int depth =parser.getDepth();
3710 String currentImiId = null;
3711 ArrayList<InputMethodSubtype> tempSubtypesArray = null;
3712 while (((type = parser.next()) != XmlPullParser.END_TAG
3713 || parser.getDepth() > depth) && type != XmlPullParser.END_DOCUMENT) {
3714 if (type != XmlPullParser.START_TAG)
3715 continue;
3716 final String nodeName = parser.getName();
3717 if (NODE_IMI.equals(nodeName)) {
3718 currentImiId = parser.getAttributeValue(null, ATTR_ID);
3719 if (TextUtils.isEmpty(currentImiId)) {
3720 Slog.w(TAG, "Invalid imi id found in subtypes.xml");
3721 continue;
3722 }
Yohei Yukawab0377bb2015-08-10 21:06:30 -07003723 tempSubtypesArray = new ArrayList<>();
satoke7c6998e2011-06-03 17:57:59 +09003724 allSubtypes.put(currentImiId, tempSubtypesArray);
3725 } else if (NODE_SUBTYPE.equals(nodeName)) {
3726 if (TextUtils.isEmpty(currentImiId) || tempSubtypesArray == null) {
3727 Slog.w(TAG, "IME uninstalled or not valid.: " + currentImiId);
3728 continue;
3729 }
3730 final int icon = Integer.valueOf(
3731 parser.getAttributeValue(null, ATTR_ICON));
3732 final int label = Integer.valueOf(
3733 parser.getAttributeValue(null, ATTR_LABEL));
3734 final String imeSubtypeLocale =
3735 parser.getAttributeValue(null, ATTR_IME_SUBTYPE_LOCALE);
Yohei Yukawa868d19b2015-12-07 15:58:57 -08003736 final String languageTag =
3737 parser.getAttributeValue(null, ATTR_IME_SUBTYPE_LANGUAGE_TAG);
satoke7c6998e2011-06-03 17:57:59 +09003738 final String imeSubtypeMode =
3739 parser.getAttributeValue(null, ATTR_IME_SUBTYPE_MODE);
3740 final String imeSubtypeExtraValue =
3741 parser.getAttributeValue(null, ATTR_IME_SUBTYPE_EXTRA_VALUE);
satok4a28bde2011-06-29 21:03:40 +09003742 final boolean isAuxiliary = "1".equals(String.valueOf(
3743 parser.getAttributeValue(null, ATTR_IS_AUXILIARY)));
Yohei Yukawa443c2ba2014-09-10 14:10:30 +09003744 final InputMethodSubtype subtype = new InputMethodSubtypeBuilder()
3745 .setSubtypeNameResId(label)
3746 .setSubtypeIconResId(icon)
3747 .setSubtypeLocale(imeSubtypeLocale)
Yohei Yukawa868d19b2015-12-07 15:58:57 -08003748 .setLanguageTag(languageTag)
Yohei Yukawa443c2ba2014-09-10 14:10:30 +09003749 .setSubtypeMode(imeSubtypeMode)
3750 .setSubtypeExtraValue(imeSubtypeExtraValue)
3751 .setIsAuxiliary(isAuxiliary)
3752 .build();
satoke7c6998e2011-06-03 17:57:59 +09003753 tempSubtypesArray.add(subtype);
3754 }
3755 }
Yohei Yukawa5894b432015-08-11 13:29:24 -07003756 } catch (XmlPullParserException | IOException | NumberFormatException e) {
3757 Slog.w(TAG, "Error reading subtypes", e);
satoke7c6998e2011-06-03 17:57:59 +09003758 return;
satoke7c6998e2011-06-03 17:57:59 +09003759 }
3760 }
3761 }
3762
Yohei Yukawafa6e0a82015-07-23 15:08:59 -07003763 private static final class LocalServiceImpl implements InputMethodManagerInternal {
3764 @NonNull
3765 private final Handler mHandler;
3766
3767 LocalServiceImpl(@NonNull final Handler handler) {
3768 mHandler = handler;
3769 }
3770
3771 @Override
3772 public void setInteractive(boolean interactive) {
3773 // Do everything in handler so as not to block the caller.
3774 mHandler.sendMessage(mHandler.obtainMessage(MSG_SET_INTERACTIVE,
3775 interactive ? 1 : 0, 0));
3776 }
Yohei Yukawaae61f712015-12-09 13:00:10 -08003777
3778 @Override
3779 public void switchInputMethod(boolean forwardDirection) {
3780 // Do everything in handler so as not to block the caller.
3781 mHandler.sendMessage(mHandler.obtainMessage(MSG_SWITCH_IME,
3782 forwardDirection ? 1 : 0, 0));
3783 }
Yohei Yukawafa6e0a82015-07-23 15:08:59 -07003784 }
3785
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003786 @Override
3787 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
3788 if (mContext.checkCallingOrSelfPermission(android.Manifest.permission.DUMP)
3789 != PackageManager.PERMISSION_GRANTED) {
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003790
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003791 pw.println("Permission Denial: can't dump InputMethodManager from from pid="
3792 + Binder.getCallingPid()
3793 + ", uid=" + Binder.getCallingUid());
3794 return;
3795 }
3796
3797 IInputMethod method;
3798 ClientState client;
Yohei Yukawae39d4ed2015-11-19 03:38:49 -08003799 ClientState focusedWindowClient;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003800
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003801 final Printer p = new PrintWriterPrinter(pw);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003802
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003803 synchronized (mMethodMap) {
3804 p.println("Current Input Method Manager state:");
3805 int N = mMethodList.size();
3806 p.println(" Input Methods:");
3807 for (int i=0; i<N; i++) {
3808 InputMethodInfo info = mMethodList.get(i);
3809 p.println(" InputMethod #" + i + ":");
3810 info.dump(p, " ");
3811 }
3812 p.println(" Clients:");
3813 for (ClientState ci : mClients.values()) {
3814 p.println(" Client " + ci + ":");
3815 p.println(" client=" + ci.client);
3816 p.println(" inputContext=" + ci.inputContext);
3817 p.println(" sessionRequested=" + ci.sessionRequested);
3818 p.println(" curSession=" + ci.curSession);
3819 }
The Android Open Source Project10592532009-03-18 17:39:46 -07003820 p.println(" mCurMethodId=" + mCurMethodId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003821 client = mCurClient;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07003822 p.println(" mCurClient=" + client + " mCurSeq=" + mCurSeq);
3823 p.println(" mCurFocusedWindow=" + mCurFocusedWindow);
Yohei Yukawae39d4ed2015-11-19 03:38:49 -08003824 focusedWindowClient = mCurFocusedWindowClient;
3825 p.println(" mCurFocusedWindowClient=" + focusedWindowClient);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003826 p.println(" mCurId=" + mCurId + " mHaveConnect=" + mHaveConnection
3827 + " mBoundToMethod=" + mBoundToMethod);
3828 p.println(" mCurToken=" + mCurToken);
3829 p.println(" mCurIntent=" + mCurIntent);
3830 method = mCurMethod;
3831 p.println(" mCurMethod=" + mCurMethod);
3832 p.println(" mEnabledSession=" + mEnabledSession);
3833 p.println(" mShowRequested=" + mShowRequested
3834 + " mShowExplicitlyRequested=" + mShowExplicitlyRequested
3835 + " mShowForced=" + mShowForced
3836 + " mInputShown=" + mInputShown);
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09003837 p.println(" mCurUserActionNotificationSequenceNumber="
3838 + mCurUserActionNotificationSequenceNumber);
Yohei Yukawafa6e0a82015-07-23 15:08:59 -07003839 p.println(" mSystemReady=" + mSystemReady + " mInteractive=" + mIsInteractive);
Yohei Yukawa81482972015-06-04 00:58:59 -07003840 p.println(" mSettingsObserver=" + mSettingsObserver);
Yohei Yukawad7248862015-06-03 23:56:12 -07003841 p.println(" mSwitchingController:");
3842 mSwitchingController.dump(p);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003843 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003844
Jeff Brownb88102f2010-09-08 11:49:43 -07003845 p.println(" ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003846 if (client != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003847 pw.flush();
3848 try {
3849 client.client.asBinder().dump(fd, args);
3850 } catch (RemoteException e) {
3851 p.println("Input method client dead: " + e);
3852 }
Jeff Brownb88102f2010-09-08 11:49:43 -07003853 } else {
3854 p.println("No input method client.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003855 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003856
Yohei Yukawae39d4ed2015-11-19 03:38:49 -08003857 if (focusedWindowClient != null && client != focusedWindowClient) {
3858 p.println(" ");
3859 p.println("Warning: Current input method client doesn't match the last focused. "
3860 + "window.");
3861 p.println("Dumping input method client in the last focused window just in case.");
3862 p.println(" ");
3863 pw.flush();
3864 try {
3865 focusedWindowClient.client.asBinder().dump(fd, args);
3866 } catch (RemoteException e) {
3867 p.println("Input method client in focused window dead: " + e);
3868 }
3869 }
3870
Jeff Brownb88102f2010-09-08 11:49:43 -07003871 p.println(" ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003872 if (method != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003873 pw.flush();
3874 try {
3875 method.asBinder().dump(fd, args);
3876 } catch (RemoteException e) {
3877 p.println("Input method service dead: " + e);
3878 }
Jeff Brownb88102f2010-09-08 11:49:43 -07003879 } else {
3880 p.println("No input method service.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003881 }
3882 }
3883}