blob: f19bd6914c2e602887b250d50811e3623e19c333 [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;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800453
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800454 class SettingsObserver extends ContentObserver {
Yohei Yukawa81482972015-06-04 00:58:59 -0700455 int mUserId;
456 boolean mRegistered = false;
Dianne Hackbornfd7aded2013-01-22 17:10:23 -0800457 String mLastEnabled = "";
458
Yohei Yukawa81482972015-06-04 00:58:59 -0700459 /**
460 * <em>This constructor must be called within the lock.</em>
461 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800462 SettingsObserver(Handler handler) {
463 super(handler);
Yohei Yukawa81482972015-06-04 00:58:59 -0700464 }
465
466 public void registerContentObserverLocked(int userId) {
467 if (mRegistered && mUserId == userId) {
468 return;
469 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800470 ContentResolver resolver = mContext.getContentResolver();
Yohei Yukawa81482972015-06-04 00:58:59 -0700471 if (mRegistered) {
472 mContext.getContentResolver().unregisterContentObserver(this);
473 mRegistered = false;
474 }
475 if (mUserId != userId) {
476 mLastEnabled = "";
477 mUserId = userId;
478 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800479 resolver.registerContentObserver(Settings.Secure.getUriFor(
Yohei Yukawa81482972015-06-04 00:58:59 -0700480 Settings.Secure.DEFAULT_INPUT_METHOD), false, this, userId);
satokab751aa2010-09-14 19:17:36 +0900481 resolver.registerContentObserver(Settings.Secure.getUriFor(
Yohei Yukawa81482972015-06-04 00:58:59 -0700482 Settings.Secure.ENABLED_INPUT_METHODS), false, this, userId);
satokb6109bb2011-02-03 22:24:54 +0900483 resolver.registerContentObserver(Settings.Secure.getUriFor(
Yohei Yukawa81482972015-06-04 00:58:59 -0700484 Settings.Secure.SELECTED_INPUT_METHOD_SUBTYPE), false, this, userId);
Michael Wright7b5a96b2014-08-09 19:28:42 -0700485 resolver.registerContentObserver(Settings.Secure.getUriFor(
Yohei Yukawa81482972015-06-04 00:58:59 -0700486 Settings.Secure.SHOW_IME_WITH_HARD_KEYBOARD), false, this, userId);
487 mRegistered = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800488 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800489
Michael Wright7b5a96b2014-08-09 19:28:42 -0700490 @Override public void onChange(boolean selfChange, Uri uri) {
491 final Uri showImeUri =
492 Settings.Secure.getUriFor(Settings.Secure.SHOW_IME_WITH_HARD_KEYBOARD);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800493 synchronized (mMethodMap) {
Michael Wright7b5a96b2014-08-09 19:28:42 -0700494 if (showImeUri.equals(uri)) {
495 updateKeyboardFromSettingsLocked();
496 } else {
497 boolean enabledChanged = false;
498 String newEnabled = mSettings.getEnabledInputMethodsStr();
499 if (!mLastEnabled.equals(newEnabled)) {
500 mLastEnabled = newEnabled;
501 enabledChanged = true;
502 }
503 updateInputMethodsFromSettingsLocked(enabledChanged);
Dianne Hackbornfd7aded2013-01-22 17:10:23 -0800504 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800505 }
506 }
Yohei Yukawa81482972015-06-04 00:58:59 -0700507
508 @Override
509 public String toString() {
510 return "SettingsObserver{mUserId=" + mUserId + " mRegistered=" + mRegistered
511 + " mLastEnabled=" + mLastEnabled + "}";
512 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800513 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800514
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900515 class ImmsBroadcastReceiver extends android.content.BroadcastReceiver {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900516 @Override
517 public void onReceive(Context context, Intent intent) {
518 final String action = intent.getAction();
Yohei Yukawafa6e0a82015-07-23 15:08:59 -0700519 if (Intent.ACTION_CLOSE_SYSTEM_DIALOGS.equals(action)) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900520 hideInputMethodMenu();
Yohei Yukawafa6e0a82015-07-23 15:08:59 -0700521 // No need to update mIsInteractive
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900522 return;
Amith Yamasani734983f2014-03-04 16:48:05 -0800523 } else if (Intent.ACTION_USER_ADDED.equals(action)
524 || Intent.ACTION_USER_REMOVED.equals(action)) {
Kenny Guy2a764942014-04-02 13:29:20 +0100525 updateCurrentProfileIds();
Amith Yamasani734983f2014-03-04 16:48:05 -0800526 return;
Christopher Tate7b9a28c2015-03-18 13:06:16 -0700527 } else if (Intent.ACTION_SETTING_RESTORED.equals(action)) {
528 final String name = intent.getStringExtra(Intent.EXTRA_SETTING_NAME);
529 if (Settings.Secure.ENABLED_INPUT_METHODS.equals(name)) {
530 final String prevValue = intent.getStringExtra(
531 Intent.EXTRA_SETTING_PREVIOUS_VALUE);
532 final String newValue = intent.getStringExtra(
533 Intent.EXTRA_SETTING_NEW_VALUE);
534 restoreEnabledInputMethods(mContext, prevValue, newValue);
535 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900536 } else {
537 Slog.w(TAG, "Unexpected intent " + intent);
538 }
539 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800540 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800541
Christopher Tate7b9a28c2015-03-18 13:06:16 -0700542 // Apply the results of a restore operation to the set of enabled IMEs. Note that this
543 // does not attempt to validate on the fly with any installed device policy, so must only
544 // be run in the context of initial device setup.
545 //
546 // TODO: Move this method to InputMethodUtils with adding unit tests.
547 static void restoreEnabledInputMethods(Context context, String prevValue, String newValue) {
548 if (DEBUG_RESTORE) {
549 Slog.i(TAG, "Restoring enabled input methods:");
550 Slog.i(TAG, "prev=" + prevValue);
551 Slog.i(TAG, " new=" + newValue);
552 }
553 // 'new' is the just-restored state, 'prev' is what was in settings prior to the restore
Seigo Nonaka2028dda2015-07-06 17:41:24 +0900554 ArrayMap<String, ArraySet<String>> prevMap =
555 InputMethodUtils.parseInputMethodsAndSubtypesString(prevValue);
556 ArrayMap<String, ArraySet<String>> newMap =
557 InputMethodUtils.parseInputMethodsAndSubtypesString(newValue);
Christopher Tate7b9a28c2015-03-18 13:06:16 -0700558
559 // Merge the restored ime+subtype enabled states into the live state
560 for (ArrayMap.Entry<String, ArraySet<String>> entry : newMap.entrySet()) {
561 final String imeId = entry.getKey();
562 ArraySet<String> prevSubtypes = prevMap.get(imeId);
563 if (prevSubtypes == null) {
Yohei Yukawab0377bb2015-08-10 21:06:30 -0700564 prevSubtypes = new ArraySet<>(2);
Christopher Tate7b9a28c2015-03-18 13:06:16 -0700565 prevMap.put(imeId, prevSubtypes);
566 }
567 prevSubtypes.addAll(entry.getValue());
568 }
569
Seigo Nonaka2a099bc2015-08-14 19:29:45 -0700570 final String mergedImesAndSubtypesString =
571 InputMethodUtils.buildInputMethodsAndSubtypesString(prevMap);
Christopher Tate7b9a28c2015-03-18 13:06:16 -0700572 if (DEBUG_RESTORE) {
573 Slog.i(TAG, "Merged IME string:");
574 Slog.i(TAG, " " + mergedImesAndSubtypesString);
575 }
576 Settings.Secure.putString(context.getContentResolver(),
577 Settings.Secure.ENABLED_INPUT_METHODS, mergedImesAndSubtypesString);
578 }
579
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800580 class MyPackageMonitor extends PackageMonitor {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900581 private boolean isChangingPackagesOfCurrentUser() {
582 final int userId = getChangingUserId();
583 final boolean retval = userId == mSettings.getCurrentUserId();
584 if (DEBUG) {
satok81f8b7c2012-12-04 20:42:56 +0900585 if (!retval) {
586 Slog.d(TAG, "--- ignore this call back from a background user: " + userId);
587 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900588 }
589 return retval;
590 }
591
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800592 @Override
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800593 public boolean onHandleForceStop(Intent intent, String[] packages, int uid, boolean doit) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900594 if (!isChangingPackagesOfCurrentUser()) {
595 return false;
596 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800597 synchronized (mMethodMap) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900598 String curInputMethodId = mSettings.getSelectedInputMethod();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800599 final int N = mMethodList.size();
600 if (curInputMethodId != null) {
601 for (int i=0; i<N; i++) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800602 InputMethodInfo imi = mMethodList.get(i);
603 if (imi.getId().equals(curInputMethodId)) {
604 for (String pkg : packages) {
605 if (imi.getPackageName().equals(pkg)) {
606 if (!doit) {
607 return true;
608 }
satok723a27e2010-11-11 14:58:11 +0900609 resetSelectedInputMethodAndSubtypeLocked("");
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800610 chooseNewDefaultIMELocked();
611 return true;
612 }
613 }
614 }
615 }
616 }
617 }
618 return false;
619 }
620
621 @Override
622 public void onSomePackagesChanged() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900623 if (!isChangingPackagesOfCurrentUser()) {
624 return;
625 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800626 synchronized (mMethodMap) {
627 InputMethodInfo curIm = null;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900628 String curInputMethodId = mSettings.getSelectedInputMethod();
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800629 final int N = mMethodList.size();
630 if (curInputMethodId != null) {
631 for (int i=0; i<N; i++) {
632 InputMethodInfo imi = mMethodList.get(i);
satoke7c6998e2011-06-03 17:57:59 +0900633 final String imiId = imi.getId();
634 if (imiId.equals(curInputMethodId)) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800635 curIm = imi;
636 }
satoke7c6998e2011-06-03 17:57:59 +0900637
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800638 int change = isPackageDisappearing(imi.getPackageName());
satoke7c6998e2011-06-03 17:57:59 +0900639 if (isPackageModified(imi.getPackageName())) {
640 mFileManager.deleteAllInputMethodSubtypes(imiId);
641 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800642 if (change == PACKAGE_TEMPORARY_CHANGE
643 || change == PACKAGE_PERMANENT_CHANGE) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800644 Slog.i(TAG, "Input method uninstalled, disabling: "
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800645 + imi.getComponent());
646 setInputMethodEnabledLocked(imi.getId(), false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800647 }
648 }
649 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800650
Satoshi Kataokaf1367b72013-01-25 17:20:12 +0900651 buildInputMethodListLocked(
652 mMethodList, mMethodMap, false /* resetDefaultEnabledIme */);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800653
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800654 boolean changed = false;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800655
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800656 if (curIm != null) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800657 int change = isPackageDisappearing(curIm.getPackageName());
658 if (change == PACKAGE_TEMPORARY_CHANGE
659 || change == PACKAGE_PERMANENT_CHANGE) {
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800660 ServiceInfo si = null;
661 try {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900662 si = mIPackageManager.getServiceInfo(
663 curIm.getComponent(), 0, mSettings.getCurrentUserId());
664 } catch (RemoteException ex) {
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800665 }
666 if (si == null) {
667 // Uh oh, current input method is no longer around!
668 // Pick another one...
Joe Onorato8a9b2202010-02-26 18:56:32 -0800669 Slog.i(TAG, "Current input method removed: " + curInputMethodId);
Seigo Nonakad9eb9112015-05-26 20:54:43 +0900670 updateSystemUiLocked(mCurToken, 0 /* vis */, mBackDisposition);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800671 if (!chooseNewDefaultIMELocked()) {
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800672 changed = true;
673 curIm = null;
Joe Onorato8a9b2202010-02-26 18:56:32 -0800674 Slog.i(TAG, "Unsetting current input method");
satok723a27e2010-11-11 14:58:11 +0900675 resetSelectedInputMethodAndSubtypeLocked("");
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800676 }
677 }
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800678 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800679 }
satokab751aa2010-09-14 19:17:36 +0900680
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800681 if (curIm == null) {
682 // We currently don't have a default input method... is
683 // one now available?
684 changed = chooseNewDefaultIMELocked();
Yohei Yukawa54d512c2015-05-19 22:15:02 -0700685 } else if (!changed && isPackageModified(curIm.getPackageName())) {
686 // Even if the current input method is still available, mCurrentSubtype could
687 // be obsolete when the package is modified in practice.
688 changed = true;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800689 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800690
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800691 if (changed) {
Dianne Hackbornfd7aded2013-01-22 17:10:23 -0800692 updateFromSettingsLocked(false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800693 }
694 }
695 }
696 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800697
Jeff Brownc28867a2013-03-26 15:42:39 -0700698 private static final class MethodCallback extends IInputSessionCallback.Stub {
Jean Chalarde0d32a62011-10-20 20:36:07 +0900699 private final InputMethodManagerService mParentIMMS;
Jeff Brownc28867a2013-03-26 15:42:39 -0700700 private final IInputMethod mMethod;
701 private final InputChannel mChannel;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800702
Jeff Brownc28867a2013-03-26 15:42:39 -0700703 MethodCallback(InputMethodManagerService imms, IInputMethod method,
704 InputChannel channel) {
Jean Chalarde0d32a62011-10-20 20:36:07 +0900705 mParentIMMS = imms;
Jeff Brownc28867a2013-03-26 15:42:39 -0700706 mMethod = method;
707 mChannel = channel;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800708 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800709
satoke7c6998e2011-06-03 17:57:59 +0900710 @Override
Jeff Brownc28867a2013-03-26 15:42:39 -0700711 public void sessionCreated(IInputMethodSession session) {
Dianne Hackborn6b6b3fd2014-03-24 11:27:18 -0700712 long ident = Binder.clearCallingIdentity();
713 try {
714 mParentIMMS.onSessionCreated(mMethod, session, mChannel);
715 } finally {
716 Binder.restoreCallingIdentity(ident);
717 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800718 }
719 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800720
satok01038492012-04-09 21:08:27 +0900721 private class HardKeyboardListener
Seigo Nonaka7309b122015-08-17 18:34:13 -0700722 implements WindowManagerInternal.OnHardKeyboardStatusChangeListener {
satok01038492012-04-09 21:08:27 +0900723 @Override
Michael Wright7b5a96b2014-08-09 19:28:42 -0700724 public void onHardKeyboardStatusChange(boolean available) {
725 mHandler.sendMessage(mHandler.obtainMessage(MSG_HARD_KEYBOARD_SWITCH_CHANGED,
726 available ? 1 : 0));
satok01038492012-04-09 21:08:27 +0900727 }
728
Michael Wright7b5a96b2014-08-09 19:28:42 -0700729 public void handleHardKeyboardStatusChange(boolean available) {
satok01038492012-04-09 21:08:27 +0900730 if (DEBUG) {
Michael Wright7b5a96b2014-08-09 19:28:42 -0700731 Slog.w(TAG, "HardKeyboardStatusChanged: available=" + available);
satok01038492012-04-09 21:08:27 +0900732 }
733 synchronized(mMethodMap) {
734 if (mSwitchingDialog != null && mSwitchingDialogTitleView != null
735 && mSwitchingDialog.isShowing()) {
736 mSwitchingDialogTitleView.findViewById(
737 com.android.internal.R.id.hard_keyboard_section).setVisibility(
738 available ? View.VISIBLE : View.GONE);
739 }
740 }
741 }
742 }
743
Seigo Nonaka7309b122015-08-17 18:34:13 -0700744 public InputMethodManagerService(Context context) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900745 mIPackageManager = AppGlobals.getPackageManager();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800746 mContext = context;
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -0800747 mRes = context.getResources();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800748 mHandler = new Handler(this);
Yohei Yukawa81482972015-06-04 00:58:59 -0700749 // Note: SettingsObserver doesn't register observers in its constructor.
750 mSettingsObserver = new SettingsObserver(mHandler);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800751 mIWindowManager = IWindowManager.Stub.asInterface(
752 ServiceManager.getService(Context.WINDOW_SERVICE));
Seigo Nonaka7309b122015-08-17 18:34:13 -0700753 mWindowManagerInternal = LocalServices.getService(WindowManagerInternal.class);
Mita Yuned218c72012-12-06 17:18:25 -0800754 mCaller = new HandlerCaller(context, null, new HandlerCaller.Callback() {
satoke7c6998e2011-06-03 17:57:59 +0900755 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800756 public void executeMessage(Message msg) {
757 handleMessage(msg);
758 }
Mita Yuned218c72012-12-06 17:18:25 -0800759 }, true /*asyncHandler*/);
Yohei Yukawae63b5fa2014-09-19 13:14:55 +0900760 mAppOpsManager = (AppOpsManager) mContext.getSystemService(Context.APP_OPS_SERVICE);
satok01038492012-04-09 21:08:27 +0900761 mHardKeyboardListener = new HardKeyboardListener();
Dianne Hackborn119bbc32013-03-22 17:27:25 -0700762 mHasFeature = context.getPackageManager().hasSystemFeature(
763 PackageManager.FEATURE_INPUT_METHODS);
satok7cfc0ed2011-06-20 21:29:36 +0900764
Chris Wren1ce4b6d2015-06-11 10:19:43 -0400765 Bundle extras = new Bundle();
766 extras.putBoolean(Notification.EXTRA_ALLOW_DURING_SETUP, true);
767 mImeSwitcherNotification = new Notification.Builder(mContext)
768 .setSmallIcon(com.android.internal.R.drawable.ic_notification_ime_default)
769 .setWhen(0)
770 .setOngoing(true)
771 .addExtras(extras)
772 .setCategory(Notification.CATEGORY_SYSTEM)
773 .setColor(com.android.internal.R.color.system_notification_accent_color);
Daniel Sandler590d5152012-06-14 16:10:13 -0400774
satok7cfc0ed2011-06-20 21:29:36 +0900775 Intent intent = new Intent(Settings.ACTION_SHOW_INPUT_METHOD_PICKER);
satok683e2382011-07-12 08:28:52 +0900776 mImeSwitchPendingIntent = PendingIntent.getBroadcast(mContext, 0, intent, 0);
satokb858c732011-07-22 19:54:34 +0900777
778 mShowOngoingImeSwitcherForPhones = false;
satok7cfc0ed2011-06-20 21:29:36 +0900779
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900780 final IntentFilter broadcastFilter = new IntentFilter();
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900781 broadcastFilter.addAction(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
Amith Yamasani734983f2014-03-04 16:48:05 -0800782 broadcastFilter.addAction(Intent.ACTION_USER_ADDED);
783 broadcastFilter.addAction(Intent.ACTION_USER_REMOVED);
Christopher Tate7b9a28c2015-03-18 13:06:16 -0700784 broadcastFilter.addAction(Intent.ACTION_SETTING_RESTORED);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900785 mContext.registerReceiver(new ImmsBroadcastReceiver(), broadcastFilter);
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800786
satok7cfc0ed2011-06-20 21:29:36 +0900787 mNotificationShown = false;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900788 int userId = 0;
789 try {
790 ActivityManagerNative.getDefault().registerUserSwitchObserver(
Fyodor Kupolov6005b3f2015-11-23 17:41:50 -0800791 new SynchronousUserSwitchObserver() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900792 @Override
Fyodor Kupolov6005b3f2015-11-23 17:41:50 -0800793 public void onUserSwitching(int newUserId)
794 throws RemoteException {
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +0900795 synchronized(mMethodMap) {
796 switchUserLocked(newUserId);
797 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900798 }
799
800 @Override
801 public void onUserSwitchComplete(int newUserId) throws RemoteException {
802 }
Kenny Guy42979622015-04-13 18:03:05 +0000803
804 @Override
805 public void onForegroundProfileSwitch(int newProfileId) {
806 // Ignore.
807 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900808 });
809 userId = ActivityManagerNative.getDefault().getCurrentUser().id;
810 } catch (RemoteException e) {
811 Slog.w(TAG, "Couldn't get current user ID; guessing it's 0", e);
812 }
satok81f8b7c2012-12-04 20:42:56 +0900813 mMyPackageMonitor.register(mContext, null, UserHandle.ALL, true);
satok913a8922010-08-26 21:53:41 +0900814
satokd87c2592010-09-29 11:52:06 +0900815 // mSettings should be created before buildInputMethodListLocked
satokdf31ae62011-01-15 06:19:44 +0900816 mSettings = new InputMethodSettings(
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900817 mRes, context.getContentResolver(), mMethodMap, mMethodList, userId);
Svet Ganovadc1cf42015-06-15 16:36:24 -0700818
819 // Let the package manager query which are the default imes
820 // as they get certain permissions granted by default.
821 PackageManagerInternal packageManagerInternal = LocalServices.getService(
822 PackageManagerInternal.class);
823 packageManagerInternal.setImePackagesProvider(
824 new PackageManagerInternal.PackagesProvider() {
825 @Override
826 public String[] getPackages(int userId) {
827 synchronized (mMethodMap) {
828 final int currentUserId = mSettings.getCurrentUserId();
829 // TODO: We are switching the current user id in the settings
830 // object to query it and then revert the user id. Ideally, we
831 // should call a API in settings with the user id as an argument.
832 mSettings.setCurrentUserId(userId);
833 List<InputMethodInfo> imes = mSettings
834 .getEnabledInputMethodListLocked();
835 String[] packageNames = null;
836 if (imes != null) {
837 final int imeCount = imes.size();
838 packageNames = new String[imeCount];
839 for (int i = 0; i < imeCount; i++) {
840 InputMethodInfo ime = imes.get(i);
841 packageNames[i] = ime.getPackageName();
842 }
843 }
844 mSettings.setCurrentUserId(currentUserId);
845 return packageNames;
846 }
847 }
848 });
849
Kenny Guy2a764942014-04-02 13:29:20 +0100850 updateCurrentProfileIds();
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +0900851 mFileManager = new InputMethodFileManager(mMethodMap, userId);
Yohei Yukawa5a647b692014-05-22 12:49:00 +0900852 synchronized (mMethodMap) {
853 mSwitchingController = InputMethodSubtypeSwitchingController.createInstanceLocked(
854 mSettings, context);
855 }
satok0a1bcf42012-05-16 19:26:31 +0900856
857 // Just checking if defaultImiId is empty or not
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900858 final String defaultImiId = mSettings.getSelectedInputMethod();
Satoshi Kataokaf1367b72013-01-25 17:20:12 +0900859 if (DEBUG) {
860 Slog.d(TAG, "Initial default ime = " + defaultImiId);
861 }
satok0a1bcf42012-05-16 19:26:31 +0900862 mImeSelectedOnBoot = !TextUtils.isEmpty(defaultImiId);
863
Yohei Yukawa5a647b692014-05-22 12:49:00 +0900864 synchronized (mMethodMap) {
865 buildInputMethodListLocked(mMethodList, mMethodMap,
866 !mImeSelectedOnBoot /* resetDefaultEnabledIme */);
867 }
satokd87c2592010-09-29 11:52:06 +0900868 mSettings.enableAllIMEsIfThereIsNoEnabledIME();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800869
satok0a1bcf42012-05-16 19:26:31 +0900870 if (!mImeSelectedOnBoot) {
871 Slog.w(TAG, "No IME selected. Choose the most applicable IME.");
Yohei Yukawa5a647b692014-05-22 12:49:00 +0900872 synchronized (mMethodMap) {
873 resetDefaultImeLocked(context);
874 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800875 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800876
Yohei Yukawa5a647b692014-05-22 12:49:00 +0900877 synchronized (mMethodMap) {
Yohei Yukawa81482972015-06-04 00:58:59 -0700878 mSettingsObserver.registerContentObserverLocked(userId);
Yohei Yukawa5a647b692014-05-22 12:49:00 +0900879 updateFromSettingsLocked(true);
880 }
satok5b927c432012-05-01 20:09:34 +0900881
882 // IMMS wants to receive Intent.ACTION_LOCALE_CHANGED in order to update the current IME
883 // according to the new system locale.
884 final IntentFilter filter = new IntentFilter();
885 filter.addAction(Intent.ACTION_LOCALE_CHANGED);
886 mContext.registerReceiver(
887 new BroadcastReceiver() {
888 @Override
889 public void onReceive(Context context, Intent intent) {
890 synchronized(mMethodMap) {
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +0900891 resetStateIfCurrentLocaleChangedLocked();
satok5b927c432012-05-01 20:09:34 +0900892 }
893 }
894 }, filter);
Yohei Yukawafa6e0a82015-07-23 15:08:59 -0700895 LocalServices.addService(InputMethodManagerInternal.class, new LocalServiceImpl(mHandler));
satok5b927c432012-05-01 20:09:34 +0900896 }
897
satok5b927c432012-05-01 20:09:34 +0900898 private void resetDefaultImeLocked(Context context) {
899 // Do not reset the default (current) IME when it is a 3rd-party IME
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +0900900 if (mCurMethodId != null
901 && !InputMethodUtils.isSystemIme(mMethodMap.get(mCurMethodId))) {
satok5b927c432012-05-01 20:09:34 +0900902 return;
903 }
904
905 InputMethodInfo defIm = null;
906 for (InputMethodInfo imi : mMethodList) {
Yohei Yukawa6aa03782015-02-21 03:00:22 +0900907 if (defIm == null && mSystemReady) {
908 final Locale systemLocale = context.getResources().getConfiguration().locale;
909 if (InputMethodUtils.isSystemImeThatHasSubtypeOf(imi, context,
910 true /* checkDefaultAttribute */, systemLocale, false /* checkCountry */,
911 InputMethodUtils.SUBTYPE_MODE_ANY)) {
satok5b927c432012-05-01 20:09:34 +0900912 defIm = imi;
913 Slog.i(TAG, "Selected default: " + imi.getId());
914 }
915 }
916 }
917 if (defIm == null && mMethodList.size() > 0) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +0900918 defIm = InputMethodUtils.getMostApplicableDefaultIME(
919 mSettings.getEnabledInputMethodListLocked());
Hyejin Kim5baaaac2014-10-27 17:17:06 +0900920 if (defIm != null) {
921 Slog.i(TAG, "Default found, using " + defIm.getId());
922 } else {
923 Slog.i(TAG, "No default found");
924 }
satok5b927c432012-05-01 20:09:34 +0900925 }
926 if (defIm != null) {
927 setSelectedInputMethodAndSubtypeLocked(defIm, NOT_A_SUBTYPE_ID, false);
928 }
929 }
930
Satoshi Kataoka7f7535f2013-02-18 12:54:16 +0900931 private void resetAllInternalStateLocked(final boolean updateOnlyWhenLocaleChanged,
932 final boolean resetDefaultEnabledIme) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900933 if (!mSystemReady) {
934 // not system ready
935 return;
936 }
937 final Locale newLocale = mRes.getConfiguration().locale;
938 if (!updateOnlyWhenLocaleChanged
939 || (newLocale != null && !newLocale.equals(mLastSystemLocale))) {
940 if (!updateOnlyWhenLocaleChanged) {
941 hideCurrentInputLocked(0, null);
Yohei Yukawa33e81792015-11-17 21:14:42 -0800942 resetCurrentMethodAndClient(InputMethodClient.UNBIND_REASON_RESET_IME);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900943 }
944 if (DEBUG) {
945 Slog.i(TAG, "Locale has been changed to " + newLocale);
946 }
Satoshi Kataoka7f7535f2013-02-18 12:54:16 +0900947 buildInputMethodListLocked(mMethodList, mMethodMap, resetDefaultEnabledIme);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900948 if (!updateOnlyWhenLocaleChanged) {
949 final String selectedImiId = mSettings.getSelectedInputMethod();
950 if (TextUtils.isEmpty(selectedImiId)) {
951 // This is the first time of the user switch and
952 // set the current ime to the proper one.
953 resetDefaultImeLocked(mContext);
954 }
Satoshi Kataokad08a9232012-09-28 15:59:58 +0900955 } else {
956 // If the locale is changed, needs to reset the default ime
957 resetDefaultImeLocked(mContext);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900958 }
Dianne Hackbornfd7aded2013-01-22 17:10:23 -0800959 updateFromSettingsLocked(true);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900960 mLastSystemLocale = newLocale;
961 if (!updateOnlyWhenLocaleChanged) {
962 try {
963 startInputInnerLocked();
964 } catch (RuntimeException e) {
965 Slog.w(TAG, "Unexpected exception", e);
966 }
967 }
968 }
969 }
970
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +0900971 private void resetStateIfCurrentLocaleChangedLocked() {
Satoshi Kataoka7f7535f2013-02-18 12:54:16 +0900972 resetAllInternalStateLocked(true /* updateOnlyWhenLocaleChanged */,
973 true /* resetDefaultImeLocked */);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900974 }
975
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +0900976 private void switchUserLocked(int newUserId) {
Yohei Yukawa90bf7082015-06-03 23:50:27 -0700977 if (DEBUG) Slog.d(TAG, "Switching user stage 1/3. newUserId=" + newUserId
978 + " currentUserId=" + mSettings.getCurrentUserId());
979
Yohei Yukawa81482972015-06-04 00:58:59 -0700980 // ContentObserver should be registered again when the user is changed
981 mSettingsObserver.registerContentObserverLocked(newUserId);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900982 mSettings.setCurrentUserId(newUserId);
Kenny Guy2a764942014-04-02 13:29:20 +0100983 updateCurrentProfileIds();
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +0900984 // InputMethodFileManager should be reset when the user is changed
985 mFileManager = new InputMethodFileManager(mMethodMap, newUserId);
Satoshi Kataoka7f7535f2013-02-18 12:54:16 +0900986 final String defaultImiId = mSettings.getSelectedInputMethod();
Yohei Yukawa90bf7082015-06-03 23:50:27 -0700987
988 if (DEBUG) Slog.d(TAG, "Switching user stage 2/3. newUserId=" + newUserId
989 + " defaultImiId=" + defaultImiId);
990
Satoshi Kataoka7c4a2a12013-02-25 15:25:43 +0900991 // For secondary users, the list of enabled IMEs may not have been updated since the
992 // callbacks to PackageMonitor are ignored for the secondary user. Here, defaultImiId may
993 // not be empty even if the IME has been uninstalled by the primary user.
994 // Even in such cases, IMMS works fine because it will find the most applicable
995 // IME for that user.
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +0900996 final boolean initialUserSwitch = TextUtils.isEmpty(defaultImiId);
Satoshi Kataoka7f7535f2013-02-18 12:54:16 +0900997 resetAllInternalStateLocked(false /* updateOnlyWhenLocaleChanged */,
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +0900998 initialUserSwitch /* needsToResetDefaultIme */);
999 if (initialUserSwitch) {
Yohei Yukawa094c71f2015-06-20 00:41:31 -07001000 InputMethodUtils.setNonSelectedSystemImesDisabledUntilUsed(mIPackageManager,
1001 mSettings.getEnabledInputMethodListLocked(), newUserId,
1002 mContext.getBasePackageName());
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +09001003 }
Yohei Yukawa90bf7082015-06-03 23:50:27 -07001004
1005 if (DEBUG) Slog.d(TAG, "Switching user stage 3/3. newUserId=" + newUserId
1006 + " selectedIme=" + mSettings.getSelectedInputMethod());
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001007 }
1008
Kenny Guy2a764942014-04-02 13:29:20 +01001009 void updateCurrentProfileIds() {
1010 List<UserInfo> profiles =
1011 UserManager.get(mContext).getProfiles(mSettings.getCurrentUserId());
1012 int[] currentProfileIds = new int[profiles.size()]; // profiles will not be null
1013 for (int i = 0; i < currentProfileIds.length; i++) {
1014 currentProfileIds[i] = profiles.get(i).id;
Amith Yamasani734983f2014-03-04 16:48:05 -08001015 }
Kenny Guy2a764942014-04-02 13:29:20 +01001016 mSettings.setCurrentProfileIds(currentProfileIds);
Amith Yamasani734983f2014-03-04 16:48:05 -08001017 }
1018
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001019 @Override
1020 public boolean onTransact(int code, Parcel data, Parcel reply, int flags)
1021 throws RemoteException {
1022 try {
1023 return super.onTransact(code, data, reply, flags);
1024 } catch (RuntimeException e) {
1025 // The input method manager only throws security exceptions, so let's
1026 // log all others.
1027 if (!(e instanceof SecurityException)) {
Dianne Hackborn164371f2013-10-01 19:10:13 -07001028 Slog.wtf(TAG, "Input Method Manager Crash", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001029 }
1030 throw e;
1031 }
1032 }
1033
Svetoslav Ganova0027152013-06-25 14:59:53 -07001034 public void systemRunning(StatusBarManagerService statusBar) {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001035 synchronized (mMethodMap) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001036 if (DEBUG) {
1037 Slog.d(TAG, "--- systemReady");
1038 }
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001039 if (!mSystemReady) {
1040 mSystemReady = true;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001041 mKeyguardManager =
1042 (KeyguardManager) mContext.getSystemService(Context.KEYGUARD_SERVICE);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001043 mNotificationManager = (NotificationManager)
1044 mContext.getSystemService(Context.NOTIFICATION_SERVICE);
1045 mStatusBar = statusBar;
1046 statusBar.setIconVisibility("ime", false);
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001047 updateSystemUiLocked(mCurToken, mImeWindowVis, mBackDisposition);
satokb858c732011-07-22 19:54:34 +09001048 mShowOngoingImeSwitcherForPhones = mRes.getBoolean(
1049 com.android.internal.R.bool.show_ongoing_ime_switcher);
satok01038492012-04-09 21:08:27 +09001050 if (mShowOngoingImeSwitcherForPhones) {
Seigo Nonaka7309b122015-08-17 18:34:13 -07001051 mWindowManagerInternal.setOnHardKeyboardStatusChangeListener(
satok01038492012-04-09 21:08:27 +09001052 mHardKeyboardListener);
1053 }
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09001054 buildInputMethodListLocked(mMethodList, mMethodMap,
1055 !mImeSelectedOnBoot /* resetDefaultEnabledIme */);
satok0a1bcf42012-05-16 19:26:31 +09001056 if (!mImeSelectedOnBoot) {
1057 Slog.w(TAG, "Reset the default IME as \"Resource\" is ready here.");
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +09001058 resetStateIfCurrentLocaleChangedLocked();
Yohei Yukawa094c71f2015-06-20 00:41:31 -07001059 InputMethodUtils.setNonSelectedSystemImesDisabledUntilUsed(mIPackageManager,
1060 mSettings.getEnabledInputMethodListLocked(),
1061 mSettings.getCurrentUserId(), mContext.getBasePackageName());
satok0a1bcf42012-05-16 19:26:31 +09001062 }
1063 mLastSystemLocale = mRes.getConfiguration().locale;
Dianne Hackborncc278702009-09-02 23:07:23 -07001064 try {
1065 startInputInnerLocked();
1066 } catch (RuntimeException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001067 Slog.w(TAG, "Unexpected exception", e);
Dianne Hackborncc278702009-09-02 23:07:23 -07001068 }
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001069 }
1070 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001071 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001072
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001073 // ---------------------------------------------------------------------------------------
1074 // Check whether or not this is a valid IPC. Assumes an IPC is valid when either
1075 // 1) it comes from the system process
1076 // 2) the calling process' user id is identical to the current user id IMMS thinks.
1077 private boolean calledFromValidUser() {
1078 final int uid = Binder.getCallingUid();
1079 final int userId = UserHandle.getUserId(uid);
1080 if (DEBUG) {
1081 Slog.d(TAG, "--- calledFromForegroundUserOrSystemProcess ? "
1082 + "calling uid = " + uid + " system uid = " + Process.SYSTEM_UID
1083 + " calling userId = " + userId + ", foreground user id = "
Satoshi Kataoka87c29142013-07-31 23:11:54 +09001084 + mSettings.getCurrentUserId() + ", calling pid = " + Binder.getCallingPid()
1085 + InputMethodUtils.getApiCallStack());
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001086 }
Kenny Guy2a764942014-04-02 13:29:20 +01001087 if (uid == Process.SYSTEM_UID || mSettings.isCurrentProfile(userId)) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001088 return true;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001089 }
Satoshi Kataoka135e5fb2012-09-28 18:25:06 +09001090
1091 // Caveat: A process which has INTERACT_ACROSS_USERS_FULL gets results for the
1092 // foreground user, not for the user of that process. Accordingly InputMethodManagerService
1093 // must not manage background users' states in any functions.
1094 // Note that privacy-sensitive IPCs, such as setInputMethod, are still securely guarded
1095 // by a token.
1096 if (mContext.checkCallingOrSelfPermission(
1097 android.Manifest.permission.INTERACT_ACROSS_USERS_FULL)
1098 == PackageManager.PERMISSION_GRANTED) {
1099 if (DEBUG) {
1100 Slog.d(TAG, "--- Access granted because the calling process has "
1101 + "the INTERACT_ACROSS_USERS_FULL permission");
1102 }
1103 return true;
1104 }
Seigo Nonakae27dc2b2015-08-14 18:21:27 -07001105 Slog.w(TAG, "--- IPC called from background users. Ignore. callers="
1106 + Debug.getCallers(10));
Satoshi Kataoka135e5fb2012-09-28 18:25:06 +09001107 return false;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001108 }
1109
Yohei Yukawa22c97be2014-06-04 19:43:36 +09001110
1111 /**
1112 * Returns true iff the caller is identified to be the current input method with the token.
1113 * @param token The window token given to the input method when it was started.
1114 * @return true if and only if non-null valid token is specified.
1115 */
1116 private boolean calledWithValidToken(IBinder token) {
1117 if (token == null || mCurToken != token) {
1118 return false;
1119 }
1120 return true;
1121 }
1122
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001123 private boolean bindCurrentInputMethodService(
1124 Intent service, ServiceConnection conn, int flags) {
1125 if (service == null || conn == null) {
1126 Slog.e(TAG, "--- bind failed: service = " + service + ", conn = " + conn);
1127 return false;
1128 }
Amith Yamasani27b89e62013-01-16 12:30:11 -08001129 return mContext.bindServiceAsUser(service, conn, flags,
1130 new UserHandle(mSettings.getCurrentUserId()));
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001131 }
1132
satoke7c6998e2011-06-03 17:57:59 +09001133 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001134 public List<InputMethodInfo> getInputMethodList() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001135 // TODO: Make this work even for non-current users?
1136 if (!calledFromValidUser()) {
1137 return Collections.emptyList();
1138 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001139 synchronized (mMethodMap) {
Yohei Yukawab0377bb2015-08-10 21:06:30 -07001140 return new ArrayList<>(mMethodList);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001141 }
1142 }
1143
satoke7c6998e2011-06-03 17:57:59 +09001144 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001145 public List<InputMethodInfo> getEnabledInputMethodList() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001146 // TODO: Make this work even for non-current users?
1147 if (!calledFromValidUser()) {
1148 return Collections.emptyList();
1149 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001150 synchronized (mMethodMap) {
satokd87c2592010-09-29 11:52:06 +09001151 return mSettings.getEnabledInputMethodListLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001152 }
1153 }
1154
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001155 /**
Satoshi Kataokab3c21ac2013-08-07 15:43:29 +09001156 * @param imiId if null, returns enabled subtypes for the current imi
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001157 * @return enabled subtypes of the specified imi
1158 */
satoke7c6998e2011-06-03 17:57:59 +09001159 @Override
Satoshi Kataokab3c21ac2013-08-07 15:43:29 +09001160 public List<InputMethodSubtype> getEnabledInputMethodSubtypeList(String imiId,
satok16331c82010-12-20 23:48:46 +09001161 boolean allowsImplicitlySelectedSubtypes) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001162 // TODO: Make this work even for non-current users?
1163 if (!calledFromValidUser()) {
Yohei Yukawab0377bb2015-08-10 21:06:30 -07001164 return Collections.emptyList();
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001165 }
satok67ddf9c2010-11-17 09:45:54 +09001166 synchronized (mMethodMap) {
Satoshi Kataokab3c21ac2013-08-07 15:43:29 +09001167 final InputMethodInfo imi;
1168 if (imiId == null && mCurMethodId != null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001169 imi = mMethodMap.get(mCurMethodId);
Satoshi Kataokab3c21ac2013-08-07 15:43:29 +09001170 } else {
1171 imi = mMethodMap.get(imiId);
1172 }
1173 if (imi == null) {
Yohei Yukawab0377bb2015-08-10 21:06:30 -07001174 return Collections.emptyList();
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001175 }
1176 return mSettings.getEnabledInputMethodSubtypeListLocked(
1177 mContext, imi, allowsImplicitlySelectedSubtypes);
satok67ddf9c2010-11-17 09:45:54 +09001178 }
1179 }
1180
satoke7c6998e2011-06-03 17:57:59 +09001181 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001182 public void addClient(IInputMethodClient client,
1183 IInputContext inputContext, int uid, int pid) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001184 if (!calledFromValidUser()) {
1185 return;
1186 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001187 synchronized (mMethodMap) {
1188 mClients.put(client.asBinder(), new ClientState(client,
1189 inputContext, uid, pid));
1190 }
1191 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001192
satoke7c6998e2011-06-03 17:57:59 +09001193 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001194 public void removeClient(IInputMethodClient client) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001195 if (!calledFromValidUser()) {
1196 return;
1197 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001198 synchronized (mMethodMap) {
Jeff Brownc28867a2013-03-26 15:42:39 -07001199 ClientState cs = mClients.remove(client.asBinder());
1200 if (cs != null) {
1201 clearClientSessionLocked(cs);
Yohei Yukawa072b1b52015-11-18 15:54:34 -08001202 if (mCurClient == cs) {
1203 mCurClient = null;
1204 }
Yohei Yukawae39d4ed2015-11-19 03:38:49 -08001205 if (mCurFocusedWindowClient == cs) {
1206 mCurFocusedWindowClient = null;
1207 }
Jeff Brownc28867a2013-03-26 15:42:39 -07001208 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001209 }
1210 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001211
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001212 void executeOrSendMessage(IInterface target, Message msg) {
1213 if (target.asBinder() instanceof Binder) {
1214 mCaller.sendMessage(msg);
1215 } else {
1216 handleMessage(msg);
1217 msg.recycle();
1218 }
1219 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001220
Yohei Yukawa33e81792015-11-17 21:14:42 -08001221 void unbindCurrentClientLocked(
1222 /* @InputMethodClient.UnbindReason */ final int unbindClientReason) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001223 if (mCurClient != null) {
Yohei Yukawa35d3f372015-11-25 11:07:19 -08001224 if (DEBUG) Slog.v(TAG, "unbindCurrentInputLocked: client="
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001225 + mCurClient.client.asBinder());
1226 if (mBoundToMethod) {
1227 mBoundToMethod = false;
1228 if (mCurMethod != null) {
1229 executeOrSendMessage(mCurMethod, mCaller.obtainMessageO(
1230 MSG_UNBIND_INPUT, mCurMethod));
1231 }
1232 }
Dianne Hackborna6e41342012-05-22 16:30:34 -07001233
1234 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
1235 MSG_SET_ACTIVE, 0, mCurClient));
Yohei Yukawa33e81792015-11-17 21:14:42 -08001236 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIIO(
1237 MSG_UNBIND_CLIENT, mCurSeq, unbindClientReason, mCurClient.client));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001238 mCurClient.sessionRequested = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001239 mCurClient = null;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001240
The Android Open Source Project10592532009-03-18 17:39:46 -07001241 hideInputMethodMenuLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001242 }
1243 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001244
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001245 private int getImeShowFlags() {
1246 int flags = 0;
1247 if (mShowForced) {
1248 flags |= InputMethod.SHOW_FORCED
1249 | InputMethod.SHOW_EXPLICIT;
1250 } else if (mShowExplicitlyRequested) {
1251 flags |= InputMethod.SHOW_EXPLICIT;
1252 }
1253 return flags;
1254 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001255
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001256 private int getAppShowFlags() {
1257 int flags = 0;
1258 if (mShowForced) {
1259 flags |= InputMethodManager.SHOW_FORCED;
1260 } else if (!mShowExplicitlyRequested) {
1261 flags |= InputMethodManager.SHOW_IMPLICIT;
1262 }
1263 return flags;
1264 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001265
Dianne Hackborn7663d802012-02-24 13:08:49 -08001266 InputBindResult attachNewInputLocked(boolean initial) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001267 if (!mBoundToMethod) {
1268 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
1269 MSG_BIND_INPUT, mCurMethod, mCurClient.binding));
1270 mBoundToMethod = true;
1271 }
1272 final SessionState session = mCurClient.curSession;
1273 if (initial) {
1274 executeOrSendMessage(session.method, mCaller.obtainMessageOOO(
1275 MSG_START_INPUT, session, mCurInputContext, mCurAttribute));
1276 } else {
1277 executeOrSendMessage(session.method, mCaller.obtainMessageOOO(
1278 MSG_RESTART_INPUT, session, mCurInputContext, mCurAttribute));
1279 }
1280 if (mShowRequested) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001281 if (DEBUG) Slog.v(TAG, "Attach new input asks to show input");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001282 showCurrentInputLocked(getAppShowFlags(), null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001283 }
Jeff Brown1951ce82013-04-04 22:45:12 -07001284 return new InputBindResult(session.session,
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09001285 (session.channel != null ? session.channel.dup() : null),
1286 mCurId, mCurSeq, mCurUserActionNotificationSequenceNumber);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001287 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001288
Yohei Yukawa35d3f372015-11-25 11:07:19 -08001289 InputBindResult startInputLocked(
1290 /* @InputMethodClient.StartInputReason */ final int startInputReason,
1291 IInputMethodClient client, IInputContext inputContext, EditorInfo attribute,
1292 int controlFlags) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001293 // If no method is currently selected, do nothing.
1294 if (mCurMethodId == null) {
1295 return mNoBinding;
1296 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001297
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001298 ClientState cs = mClients.get(client.asBinder());
1299 if (cs == null) {
1300 throw new IllegalArgumentException("unknown client "
1301 + client.asBinder());
1302 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001303
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001304 try {
1305 if (!mIWindowManager.inputMethodClientHasFocus(cs.client)) {
1306 // Check with the window manager to make sure this client actually
1307 // has a window with focus. If not, reject. This is thread safe
1308 // because if the focus changes some time before or after, the
1309 // next client receiving focus that has any interest in input will
1310 // be calling through here after that change happens.
Joe Onorato8a9b2202010-02-26 18:56:32 -08001311 Slog.w(TAG, "Starting input on non-focused client " + cs.client
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001312 + " (uid=" + cs.uid + " pid=" + cs.pid + ")");
1313 return null;
1314 }
1315 } catch (RemoteException e) {
1316 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001317
Dianne Hackborn7663d802012-02-24 13:08:49 -08001318 return startInputUncheckedLocked(cs, inputContext, attribute, controlFlags);
1319 }
1320
Yohei Yukawa35d3f372015-11-25 11:07:19 -08001321 InputBindResult startInputUncheckedLocked(@NonNull ClientState cs, IInputContext inputContext,
1322 @NonNull EditorInfo attribute, int controlFlags) {
Dianne Hackborn7663d802012-02-24 13:08:49 -08001323 // If no method is currently selected, do nothing.
1324 if (mCurMethodId == null) {
1325 return mNoBinding;
1326 }
1327
Yohei Yukawad57ba672015-06-08 16:39:46 -07001328 if (!InputMethodUtils.checkIfPackageBelongsToUid(mAppOpsManager, cs.uid,
1329 attribute.packageName)) {
1330 Slog.e(TAG, "Rejecting this client as it reported an invalid package name."
1331 + " uid=" + cs.uid + " package=" + attribute.packageName);
1332 return mNoBinding;
Yohei Yukawa0f3ad12015-04-06 16:48:24 -07001333 }
1334
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001335 if (mCurClient != cs) {
John Spurlocke0980502013-10-25 11:59:29 -04001336 // Was the keyguard locked when switching over to the new client?
1337 mCurClientInKeyguard = isKeyguardLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001338 // If the client is changing, we need to switch over to the new
1339 // one.
Yohei Yukawa33e81792015-11-17 21:14:42 -08001340 unbindCurrentClientLocked(InputMethodClient.UNBIND_REASON_SWITCH_CLIENT);
Yohei Yukawa35d3f372015-11-25 11:07:19 -08001341 if (DEBUG) Slog.v(TAG, "switching to client: client="
John Spurlocke0980502013-10-25 11:59:29 -04001342 + cs.client.asBinder() + " keyguard=" + mCurClientInKeyguard);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001343
1344 // If the screen is on, inform the new client it is active
Yohei Yukawafa6e0a82015-07-23 15:08:59 -07001345 if (mIsInteractive) {
Dianne Hackborna6e41342012-05-22 16:30:34 -07001346 executeOrSendMessage(cs.client, mCaller.obtainMessageIO(
Yohei Yukawafa6e0a82015-07-23 15:08:59 -07001347 MSG_SET_ACTIVE, mIsInteractive ? 1 : 0, cs));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001348 }
1349 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001350
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001351 // Bump up the sequence for this client and attach it.
1352 mCurSeq++;
1353 if (mCurSeq <= 0) mCurSeq = 1;
1354 mCurClient = cs;
1355 mCurInputContext = inputContext;
1356 mCurAttribute = attribute;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001357
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001358 // Check if the input method is changing.
1359 if (mCurId != null && mCurId.equals(mCurMethodId)) {
1360 if (cs.curSession != null) {
1361 // Fast case: if we are already connected to the input method,
1362 // then just return it.
Dianne Hackborn7663d802012-02-24 13:08:49 -08001363 return attachNewInputLocked(
1364 (controlFlags&InputMethodManager.CONTROL_START_INITIAL) != 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001365 }
1366 if (mHaveConnection) {
1367 if (mCurMethod != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001368 // Return to client, and we will get back with it when
1369 // we have had a session made for it.
Jeff Brownc28867a2013-03-26 15:42:39 -07001370 requestClientSessionLocked(cs);
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09001371 return new InputBindResult(null, null, mCurId, mCurSeq,
1372 mCurUserActionNotificationSequenceNumber);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001373 } else if (SystemClock.uptimeMillis()
1374 < (mLastBindTime+TIME_TO_RECONNECT)) {
1375 // In this case we have connected to the service, but
1376 // don't yet have its interface. If it hasn't been too
1377 // long since we did the connection, we'll return to
1378 // the client and wait to get the service interface so
1379 // we can report back. If it has been too long, we want
1380 // to fall through so we can try a disconnect/reconnect
1381 // to see if we can get back in touch with the service.
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09001382 return new InputBindResult(null, null, mCurId, mCurSeq,
1383 mCurUserActionNotificationSequenceNumber);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001384 } else {
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001385 EventLog.writeEvent(EventLogTags.IMF_FORCE_RECONNECT_IME,
1386 mCurMethodId, SystemClock.uptimeMillis()-mLastBindTime, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001387 }
1388 }
1389 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001390
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001391 return startInputInnerLocked();
1392 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001393
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001394 InputBindResult startInputInnerLocked() {
1395 if (mCurMethodId == null) {
1396 return mNoBinding;
1397 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001398
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001399 if (!mSystemReady) {
1400 // If the system is not yet ready, we shouldn't be running third
1401 // party code.
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09001402 return new InputBindResult(null, null, mCurMethodId, mCurSeq,
1403 mCurUserActionNotificationSequenceNumber);
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001404 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001405
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001406 InputMethodInfo info = mMethodMap.get(mCurMethodId);
1407 if (info == null) {
1408 throw new IllegalArgumentException("Unknown id: " + mCurMethodId);
1409 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001410
Yohei Yukawabc7b5262015-11-17 17:38:41 -08001411 unbindCurrentMethodLocked(true);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001412
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001413 mCurIntent = new Intent(InputMethod.SERVICE_INTERFACE);
1414 mCurIntent.setComponent(info.getComponent());
Dianne Hackborndd9b82c2009-09-03 00:18:47 -07001415 mCurIntent.putExtra(Intent.EXTRA_CLIENT_LABEL,
1416 com.android.internal.R.string.input_method_binding_label);
1417 mCurIntent.putExtra(Intent.EXTRA_CLIENT_INTENT, PendingIntent.getActivity(
1418 mContext, 0, new Intent(Settings.ACTION_INPUT_METHOD_SETTINGS), 0));
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001419 if (bindCurrentInputMethodService(mCurIntent, this, Context.BIND_AUTO_CREATE
Dianne Hackbornf0f94d12014-03-17 16:04:21 -07001420 | Context.BIND_NOT_VISIBLE | Context.BIND_NOT_FOREGROUND
1421 | Context.BIND_SHOWING_UI)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001422 mLastBindTime = SystemClock.uptimeMillis();
1423 mHaveConnection = true;
1424 mCurId = info.getId();
1425 mCurToken = new Binder();
1426 try {
Craig Mautnerca0ac712013-03-14 09:43:02 -07001427 if (true || DEBUG) Slog.v(TAG, "Adding window token: " + mCurToken);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001428 mIWindowManager.addWindowToken(mCurToken,
1429 WindowManager.LayoutParams.TYPE_INPUT_METHOD);
1430 } catch (RemoteException e) {
1431 }
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09001432 return new InputBindResult(null, null, mCurId, mCurSeq,
1433 mCurUserActionNotificationSequenceNumber);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001434 } else {
1435 mCurIntent = null;
Joe Onorato8a9b2202010-02-26 18:56:32 -08001436 Slog.w(TAG, "Failure connecting to input method service: "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001437 + mCurIntent);
1438 }
1439 return null;
1440 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001441
satoke7c6998e2011-06-03 17:57:59 +09001442 @Override
Yohei Yukawa35d3f372015-11-25 11:07:19 -08001443 public InputBindResult startInput(
1444 /* @InputMethodClient.StartInputReason */ final int startInputReason,
1445 IInputMethodClient client, IInputContext inputContext, EditorInfo attribute,
1446 int controlFlags) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001447 if (!calledFromValidUser()) {
1448 return null;
1449 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001450 synchronized (mMethodMap) {
Yohei Yukawa35d3f372015-11-25 11:07:19 -08001451 if (DEBUG) {
1452 Slog.v(TAG, "startInput: reason="
1453 + InputMethodClient.getStartInputReason(startInputReason)
1454 + " client = " + client.asBinder()
1455 + " inputContext=" + inputContext
1456 + " attribute=" + attribute
1457 + " controlFlags=#" + Integer.toHexString(controlFlags));
1458 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001459 final long ident = Binder.clearCallingIdentity();
1460 try {
Yohei Yukawa35d3f372015-11-25 11:07:19 -08001461 return startInputLocked(startInputReason, client, inputContext, attribute,
1462 controlFlags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001463 } finally {
1464 Binder.restoreCallingIdentity(ident);
1465 }
1466 }
1467 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001468
satoke7c6998e2011-06-03 17:57:59 +09001469 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001470 public void finishInput(IInputMethodClient client) {
1471 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001472
satoke7c6998e2011-06-03 17:57:59 +09001473 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001474 public void onServiceConnected(ComponentName name, IBinder service) {
1475 synchronized (mMethodMap) {
1476 if (mCurIntent != null && name.equals(mCurIntent.getComponent())) {
1477 mCurMethod = IInputMethod.Stub.asInterface(service);
Dianne Hackborncc278702009-09-02 23:07:23 -07001478 if (mCurToken == null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001479 Slog.w(TAG, "Service connected without a token!");
Yohei Yukawabc7b5262015-11-17 17:38:41 -08001480 unbindCurrentMethodLocked(false);
Dianne Hackborncc278702009-09-02 23:07:23 -07001481 return;
1482 }
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07001483 if (DEBUG) Slog.v(TAG, "Initiating attach with token: " + mCurToken);
Dianne Hackborncc278702009-09-02 23:07:23 -07001484 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
1485 MSG_ATTACH_TOKEN, mCurMethod, mCurToken));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001486 if (mCurClient != null) {
Jeff Brownc28867a2013-03-26 15:42:39 -07001487 clearClientSessionLocked(mCurClient);
1488 requestClientSessionLocked(mCurClient);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001489 }
1490 }
1491 }
1492 }
1493
Jeff Brownc28867a2013-03-26 15:42:39 -07001494 void onSessionCreated(IInputMethod method, IInputMethodSession session,
1495 InputChannel channel) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001496 synchronized (mMethodMap) {
1497 if (mCurMethod != null && method != null
1498 && mCurMethod.asBinder() == method.asBinder()) {
1499 if (mCurClient != null) {
Jeff Brownc28867a2013-03-26 15:42:39 -07001500 clearClientSessionLocked(mCurClient);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001501 mCurClient.curSession = new SessionState(mCurClient,
Jeff Brownc28867a2013-03-26 15:42:39 -07001502 method, session, channel);
Dianne Hackborn7663d802012-02-24 13:08:49 -08001503 InputBindResult res = attachNewInputLocked(true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001504 if (res.method != null) {
1505 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageOO(
Yohei Yukawa33e81792015-11-17 21:14:42 -08001506 MSG_BIND_CLIENT, mCurClient.client, res));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001507 }
Jeff Brownc28867a2013-03-26 15:42:39 -07001508 return;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001509 }
1510 }
1511 }
Jeff Brownc28867a2013-03-26 15:42:39 -07001512
1513 // Session abandoned. Close its associated input channel.
1514 channel.dispose();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001515 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001516
Yohei Yukawabc7b5262015-11-17 17:38:41 -08001517 void unbindCurrentMethodLocked(boolean savePosition) {
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07001518 if (mVisibleBound) {
1519 mContext.unbindService(mVisibleConnection);
1520 mVisibleBound = false;
1521 }
1522
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001523 if (mHaveConnection) {
1524 mContext.unbindService(this);
1525 mHaveConnection = false;
1526 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001527
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001528 if (mCurToken != null) {
1529 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001530 if (DEBUG) Slog.v(TAG, "Removing window token: " + mCurToken);
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07001531 if ((mImeWindowVis & InputMethodService.IME_ACTIVE) != 0 && savePosition) {
satoke0a99412012-05-10 02:22:58 +09001532 // The current IME is shown. Hence an IME switch (transition) is happening.
Seigo Nonaka7309b122015-08-17 18:34:13 -07001533 mWindowManagerInternal.saveLastInputMethodWindowForTransition();
satoke0a99412012-05-10 02:22:58 +09001534 }
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001535 mIWindowManager.removeWindowToken(mCurToken);
1536 } catch (RemoteException e) {
1537 }
1538 mCurToken = null;
1539 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001540
The Android Open Source Project10592532009-03-18 17:39:46 -07001541 mCurId = null;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001542 clearCurMethodLocked();
Yohei Yukawabc7b5262015-11-17 17:38:41 -08001543 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001544
Yohei Yukawa33e81792015-11-17 21:14:42 -08001545 void resetCurrentMethodAndClient(
1546 /* @InputMethodClient.UnbindReason */ final int unbindClientReason) {
Yohei Yukawabc7b5262015-11-17 17:38:41 -08001547 mCurMethodId = null;
1548 unbindCurrentMethodLocked(false);
Yohei Yukawa33e81792015-11-17 21:14:42 -08001549 unbindCurrentClientLocked(unbindClientReason);
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001550 }
Jeff Brownc28867a2013-03-26 15:42:39 -07001551
1552 void requestClientSessionLocked(ClientState cs) {
1553 if (!cs.sessionRequested) {
1554 if (DEBUG) Slog.v(TAG, "Creating new session for client " + cs);
1555 InputChannel[] channels = InputChannel.openInputChannelPair(cs.toString());
1556 cs.sessionRequested = true;
1557 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOOO(
1558 MSG_CREATE_SESSION, mCurMethod, channels[1],
1559 new MethodCallback(this, mCurMethod, channels[0])));
1560 }
1561 }
1562
1563 void clearClientSessionLocked(ClientState cs) {
1564 finishSessionLocked(cs.curSession);
1565 cs.curSession = null;
1566 cs.sessionRequested = false;
1567 }
1568
1569 private void finishSessionLocked(SessionState sessionState) {
1570 if (sessionState != null) {
1571 if (sessionState.session != null) {
1572 try {
1573 sessionState.session.finishSession();
1574 } catch (RemoteException e) {
1575 Slog.w(TAG, "Session failed to close due to remote exception", e);
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001576 updateSystemUiLocked(mCurToken, 0 /* vis */, mBackDisposition);
Jeff Brownc28867a2013-03-26 15:42:39 -07001577 }
1578 sessionState.session = null;
1579 }
1580 if (sessionState.channel != null) {
1581 sessionState.channel.dispose();
1582 sessionState.channel = null;
Devin Taylor0c33ed22010-02-23 13:26:46 -06001583 }
1584 }
1585 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001586
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001587 void clearCurMethodLocked() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001588 if (mCurMethod != null) {
1589 for (ClientState cs : mClients.values()) {
Jeff Brownc28867a2013-03-26 15:42:39 -07001590 clearClientSessionLocked(cs);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001591 }
Devin Taylor0c33ed22010-02-23 13:26:46 -06001592
Jeff Brownc28867a2013-03-26 15:42:39 -07001593 finishSessionLocked(mEnabledSession);
Devin Taylor0c33ed22010-02-23 13:26:46 -06001594 mEnabledSession = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001595 mCurMethod = null;
1596 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07001597 if (mStatusBar != null) {
1598 mStatusBar.setIconVisibility("ime", false);
1599 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001600 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001601
satoke7c6998e2011-06-03 17:57:59 +09001602 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001603 public void onServiceDisconnected(ComponentName name) {
1604 synchronized (mMethodMap) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001605 if (DEBUG) Slog.v(TAG, "Service disconnected: " + name
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001606 + " mCurIntent=" + mCurIntent);
1607 if (mCurMethod != null && mCurIntent != null
1608 && name.equals(mCurIntent.getComponent())) {
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001609 clearCurMethodLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001610 // We consider this to be a new bind attempt, since the system
1611 // should now try to restart the service for us.
1612 mLastBindTime = SystemClock.uptimeMillis();
1613 mShowRequested = mInputShown;
1614 mInputShown = false;
1615 if (mCurClient != null) {
Yohei Yukawa33e81792015-11-17 21:14:42 -08001616 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIIO(
1617 MSG_UNBIND_CLIENT, InputMethodClient.UNBIND_REASON_DISCONNECT_IME,
1618 mCurSeq, mCurClient.client));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001619 }
1620 }
1621 }
1622 }
1623
satokf9f01002011-05-19 21:31:50 +09001624 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001625 public void updateStatusIcon(IBinder token, String packageName, int iconId) {
1626 long ident = Binder.clearCallingIdentity();
1627 try {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001628 synchronized (mMethodMap) {
Yohei Yukawaa0755742014-06-04 20:28:18 +09001629 if (!calledWithValidToken(token)) {
1630 final int uid = Binder.getCallingUid();
1631 Slog.e(TAG, "Ignoring updateStatusIcon due to an invalid token. uid:" + uid
1632 + " token:" + token);
1633 return;
1634 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001635 if (iconId == 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001636 if (DEBUG) Slog.d(TAG, "hide the small icon for the input method");
Dianne Hackborn661cd522011-08-22 00:26:20 -07001637 if (mStatusBar != null) {
1638 mStatusBar.setIconVisibility("ime", false);
1639 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001640 } else if (packageName != null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001641 if (DEBUG) Slog.d(TAG, "show a small icon for the input method");
Svetoslav Ganov6179ea32011-06-28 01:12:41 -07001642 CharSequence contentDescription = null;
1643 try {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001644 // Use PackageManager to load label
1645 final PackageManager packageManager = mContext.getPackageManager();
Svetoslav Ganov6179ea32011-06-28 01:12:41 -07001646 contentDescription = packageManager.getApplicationLabel(
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001647 mIPackageManager.getApplicationInfo(packageName, 0,
1648 mSettings.getCurrentUserId()));
1649 } catch (RemoteException e) {
Svetoslav Ganov6179ea32011-06-28 01:12:41 -07001650 /* ignore */
1651 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07001652 if (mStatusBar != null) {
1653 mStatusBar.setIcon("ime", packageName, iconId, 0,
1654 contentDescription != null
1655 ? contentDescription.toString() : null);
1656 mStatusBar.setIconVisibility("ime", true);
1657 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001658 }
1659 }
1660 } finally {
1661 Binder.restoreCallingIdentity(ident);
1662 }
1663 }
1664
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001665 private boolean shouldShowImeSwitcherLocked(int visibility) {
satok7cfc0ed2011-06-20 21:29:36 +09001666 if (!mShowOngoingImeSwitcherForPhones) return false;
Jason Monk807ef762014-05-08 15:47:46 -04001667 if (mSwitchingDialog != null) return false;
satok2c93efc2012-04-02 19:33:47 +09001668 if (isScreenLocked()) return false;
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001669 if ((visibility & InputMethodService.IME_ACTIVE) == 0) return false;
Seigo Nonaka7309b122015-08-17 18:34:13 -07001670 if (mWindowManagerInternal.isHardKeyboardAvailable()) {
Yohei Yukawac6c7cd22015-05-12 15:00:33 -07001671 // When physical keyboard is attached, we show the ime switcher (or notification if
1672 // NavBar is not available) because SHOW_IME_WITH_HARD_KEYBOARD settings currently
1673 // exists in the IME switcher dialog. Might be OK to remove this condition once
1674 // SHOW_IME_WITH_HARD_KEYBOARD settings finds a good place to live.
1675 return true;
1676 }
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001677 if ((visibility & InputMethodService.IME_VISIBLE) == 0) return false;
Yohei Yukawac6c7cd22015-05-12 15:00:33 -07001678
1679 List<InputMethodInfo> imis = mSettings.getEnabledInputMethodListLocked();
1680 final int N = imis.size();
1681 if (N > 2) return true;
1682 if (N < 1) return false;
1683 int nonAuxCount = 0;
1684 int auxCount = 0;
1685 InputMethodSubtype nonAuxSubtype = null;
1686 InputMethodSubtype auxSubtype = null;
1687 for(int i = 0; i < N; ++i) {
1688 final InputMethodInfo imi = imis.get(i);
1689 final List<InputMethodSubtype> subtypes =
1690 mSettings.getEnabledInputMethodSubtypeListLocked(mContext, imi, true);
1691 final int subtypeCount = subtypes.size();
1692 if (subtypeCount == 0) {
1693 ++nonAuxCount;
1694 } else {
1695 for (int j = 0; j < subtypeCount; ++j) {
1696 final InputMethodSubtype subtype = subtypes.get(j);
1697 if (!subtype.isAuxiliary()) {
1698 ++nonAuxCount;
1699 nonAuxSubtype = subtype;
1700 } else {
1701 ++auxCount;
1702 auxSubtype = subtype;
satok7cfc0ed2011-06-20 21:29:36 +09001703 }
1704 }
satok7cfc0ed2011-06-20 21:29:36 +09001705 }
1706 }
Yohei Yukawac6c7cd22015-05-12 15:00:33 -07001707 if (nonAuxCount > 1 || auxCount > 1) {
1708 return true;
1709 } else if (nonAuxCount == 1 && auxCount == 1) {
1710 if (nonAuxSubtype != null && auxSubtype != null
1711 && (nonAuxSubtype.getLocale().equals(auxSubtype.getLocale())
1712 || auxSubtype.overridesImplicitlyEnabledSubtype()
1713 || nonAuxSubtype.overridesImplicitlyEnabledSubtype())
1714 && nonAuxSubtype.containsExtraValueKey(TAG_TRY_SUPPRESSING_IME_SWITCHER)) {
1715 return false;
1716 }
1717 return true;
1718 }
1719 return false;
satok7cfc0ed2011-06-20 21:29:36 +09001720 }
1721
John Spurlocke0980502013-10-25 11:59:29 -04001722 private boolean isKeyguardLocked() {
1723 return mKeyguardManager != null && mKeyguardManager.isKeyguardLocked();
1724 }
1725
satokdbf29502011-08-25 15:28:23 +09001726 @SuppressWarnings("deprecation")
satokf9f01002011-05-19 21:31:50 +09001727 @Override
Joe Onorato857fd9b2011-01-27 15:08:35 -08001728 public void setImeWindowStatus(IBinder token, int vis, int backDisposition) {
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001729 if (!calledWithValidToken(token)) {
1730 final int uid = Binder.getCallingUid();
1731 Slog.e(TAG, "Ignoring setImeWindowStatus due to an invalid token. uid:" + uid
1732 + " token:" + token);
1733 return;
1734 }
1735
1736 synchronized (mMethodMap) {
1737 mImeWindowVis = vis;
1738 mBackDisposition = backDisposition;
1739 updateSystemUiLocked(token, vis, backDisposition);
1740 }
1741 }
1742
1743 private void updateSystemUi(IBinder token, int vis, int backDisposition) {
1744 synchronized (mMethodMap) {
1745 updateSystemUiLocked(token, vis, backDisposition);
1746 }
1747 }
1748
1749 // Caution! This method is called in this class. Handle multi-user carefully
1750 private void updateSystemUiLocked(IBinder token, int vis, int backDisposition) {
1751 if (!calledWithValidToken(token)) {
1752 final int uid = Binder.getCallingUid();
1753 Slog.e(TAG, "Ignoring updateSystemUiLocked due to an invalid token. uid:" + uid
1754 + " token:" + token);
1755 return;
1756 }
1757
1758 // TODO: Move this clearing calling identity block to setImeWindowStatus after making sure
1759 // all updateSystemUi happens on system previlege.
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001760 final long ident = Binder.clearCallingIdentity();
satok06487a52010-10-29 11:37:18 +09001761 try {
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001762 // apply policy for binder calls
1763 if (vis != 0 && isKeyguardLocked() && !mCurClientInKeyguard) {
1764 vis = 0;
satok06487a52010-10-29 11:37:18 +09001765 }
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001766 // mImeWindowVis should be updated before calling shouldShowImeSwitcherLocked().
1767 final boolean needsToShowImeSwitcher = shouldShowImeSwitcherLocked(vis);
1768 if (mStatusBar != null) {
1769 mStatusBar.setImeWindowStatus(token, vis, backDisposition,
1770 needsToShowImeSwitcher);
1771 }
1772 final InputMethodInfo imi = mMethodMap.get(mCurMethodId);
1773 if (imi != null && needsToShowImeSwitcher) {
1774 // Used to load label
1775 final CharSequence title = mRes.getText(
1776 com.android.internal.R.string.select_input_method);
1777 final CharSequence summary = InputMethodUtils.getImeAndSubtypeDisplayName(
1778 mContext, imi, mCurrentSubtype);
Chris Wren1ce4b6d2015-06-11 10:19:43 -04001779 mImeSwitcherNotification.setContentTitle(title)
1780 .setContentText(summary)
1781 .setContentIntent(mImeSwitchPendingIntent);
Seigo Nonaka7309b122015-08-17 18:34:13 -07001782 try {
1783 if ((mNotificationManager != null)
1784 && !mIWindowManager.hasNavigationBar()) {
1785 if (DEBUG) {
1786 Slog.d(TAG, "--- show notification: label = " + summary);
1787 }
1788 mNotificationManager.notifyAsUser(null,
1789 com.android.internal.R.string.select_input_method,
1790 mImeSwitcherNotification.build(), UserHandle.ALL);
1791 mNotificationShown = true;
Dianne Hackborn661cd522011-08-22 00:26:20 -07001792 }
Seigo Nonaka7309b122015-08-17 18:34:13 -07001793 } catch (RemoteException e) {
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001794 }
1795 } else {
1796 if (mNotificationShown && mNotificationManager != null) {
1797 if (DEBUG) {
1798 Slog.d(TAG, "--- hide notification");
satok7cfc0ed2011-06-20 21:29:36 +09001799 }
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001800 mNotificationManager.cancelAsUser(null,
1801 com.android.internal.R.string.select_input_method, UserHandle.ALL);
1802 mNotificationShown = false;
satok7cfc0ed2011-06-20 21:29:36 +09001803 }
satok06487a52010-10-29 11:37:18 +09001804 }
1805 } finally {
1806 Binder.restoreCallingIdentity(ident);
1807 }
1808 }
1809
satoke7c6998e2011-06-03 17:57:59 +09001810 @Override
satokf9f01002011-05-19 21:31:50 +09001811 public void registerSuggestionSpansForNotification(SuggestionSpan[] spans) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001812 if (!calledFromValidUser()) {
1813 return;
1814 }
satokf9f01002011-05-19 21:31:50 +09001815 synchronized (mMethodMap) {
1816 final InputMethodInfo currentImi = mMethodMap.get(mCurMethodId);
1817 for (int i = 0; i < spans.length; ++i) {
1818 SuggestionSpan ss = spans[i];
satok42c5a162011-05-26 16:46:14 +09001819 if (!TextUtils.isEmpty(ss.getNotificationTargetClassName())) {
satokf9f01002011-05-19 21:31:50 +09001820 mSecureSuggestionSpans.put(ss, currentImi);
1821 }
1822 }
1823 }
1824 }
1825
satoke7c6998e2011-06-03 17:57:59 +09001826 @Override
satokf9f01002011-05-19 21:31:50 +09001827 public boolean notifySuggestionPicked(SuggestionSpan span, String originalString, int index) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001828 if (!calledFromValidUser()) {
1829 return false;
1830 }
satokf9f01002011-05-19 21:31:50 +09001831 synchronized (mMethodMap) {
1832 final InputMethodInfo targetImi = mSecureSuggestionSpans.get(span);
1833 // TODO: Do not send the intent if the process of the targetImi is already dead.
1834 if (targetImi != null) {
1835 final String[] suggestions = span.getSuggestions();
1836 if (index < 0 || index >= suggestions.length) return false;
satok42c5a162011-05-26 16:46:14 +09001837 final String className = span.getNotificationTargetClassName();
satokf9f01002011-05-19 21:31:50 +09001838 final Intent intent = new Intent();
1839 // Ensures that only a class in the original IME package will receive the
1840 // notification.
satok42c5a162011-05-26 16:46:14 +09001841 intent.setClassName(targetImi.getPackageName(), className);
satokf9f01002011-05-19 21:31:50 +09001842 intent.setAction(SuggestionSpan.ACTION_SUGGESTION_PICKED);
1843 intent.putExtra(SuggestionSpan.SUGGESTION_SPAN_PICKED_BEFORE, originalString);
1844 intent.putExtra(SuggestionSpan.SUGGESTION_SPAN_PICKED_AFTER, suggestions[index]);
1845 intent.putExtra(SuggestionSpan.SUGGESTION_SPAN_PICKED_HASHCODE, span.hashCode());
Amith Yamasanif043de92012-10-24 06:42:40 -07001846 final long ident = Binder.clearCallingIdentity();
1847 try {
1848 mContext.sendBroadcastAsUser(intent, UserHandle.CURRENT);
1849 } finally {
1850 Binder.restoreCallingIdentity(ident);
1851 }
satokf9f01002011-05-19 21:31:50 +09001852 return true;
1853 }
1854 }
1855 return false;
1856 }
1857
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001858 void updateFromSettingsLocked(boolean enabledMayChange) {
Michael Wright7b5a96b2014-08-09 19:28:42 -07001859 updateInputMethodsFromSettingsLocked(enabledMayChange);
1860 updateKeyboardFromSettingsLocked();
1861 }
1862
1863 void updateInputMethodsFromSettingsLocked(boolean enabledMayChange) {
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001864 if (enabledMayChange) {
1865 List<InputMethodInfo> enabled = mSettings.getEnabledInputMethodListLocked();
1866 for (int i=0; i<enabled.size(); i++) {
1867 // We allow the user to select "disabled until used" apps, so if they
1868 // are enabling one of those here we now need to make it enabled.
1869 InputMethodInfo imm = enabled.get(i);
1870 try {
1871 ApplicationInfo ai = mIPackageManager.getApplicationInfo(imm.getPackageName(),
1872 PackageManager.GET_DISABLED_UNTIL_USED_COMPONENTS,
1873 mSettings.getCurrentUserId());
Satoshi Kataoka7987a312013-04-17 18:59:33 +09001874 if (ai != null && ai.enabledSetting
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001875 == PackageManager.COMPONENT_ENABLED_STATE_DISABLED_UNTIL_USED) {
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +09001876 if (DEBUG) {
1877 Slog.d(TAG, "Update state(" + imm.getId()
1878 + "): DISABLED_UNTIL_USED -> DEFAULT");
1879 }
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001880 mIPackageManager.setApplicationEnabledSetting(imm.getPackageName(),
1881 PackageManager.COMPONENT_ENABLED_STATE_DEFAULT,
Dianne Hackborn3fa3c28a2013-03-26 16:15:41 -07001882 PackageManager.DONT_KILL_APP, mSettings.getCurrentUserId(),
1883 mContext.getBasePackageName());
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001884 }
1885 } catch (RemoteException e) {
1886 }
1887 }
1888 }
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001889 // We are assuming that whoever is changing DEFAULT_INPUT_METHOD and
1890 // ENABLED_INPUT_METHODS is taking care of keeping them correctly in
1891 // sync, so we will never have a DEFAULT_INPUT_METHOD that is not
1892 // enabled.
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001893 String id = mSettings.getSelectedInputMethod();
satok03eb319a2010-11-11 18:17:42 +09001894 // There is no input method selected, try to choose new applicable input method.
1895 if (TextUtils.isEmpty(id) && chooseNewDefaultIMELocked()) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001896 id = mSettings.getSelectedInputMethod();
satok03eb319a2010-11-11 18:17:42 +09001897 }
1898 if (!TextUtils.isEmpty(id)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001899 try {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001900 setInputMethodLocked(id, mSettings.getSelectedInputMethodSubtypeId(id));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001901 } catch (IllegalArgumentException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001902 Slog.w(TAG, "Unknown input method from prefs: " + id, e);
Yohei Yukawa33e81792015-11-17 21:14:42 -08001903 resetCurrentMethodAndClient(InputMethodClient.UNBIND_REASON_SWITCH_IME_FAILED);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001904 }
satokf3db1af2010-11-23 13:34:33 +09001905 mShortcutInputMethodsAndSubtypes.clear();
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001906 } else {
1907 // There is no longer an input method set, so stop any current one.
Yohei Yukawa33e81792015-11-17 21:14:42 -08001908 resetCurrentMethodAndClient(InputMethodClient.UNBIND_REASON_NO_IME);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001909 }
Yohei Yukawa3d46bab2014-05-30 18:10:18 +09001910 // Here is not the perfect place to reset the switching controller. Ideally
1911 // mSwitchingController and mSettings should be able to share the same state.
1912 // TODO: Make sure that mSwitchingController and mSettings are sharing the
1913 // the same enabled IMEs list.
1914 mSwitchingController.resetCircularListLocked(mContext);
Michael Wright7b5a96b2014-08-09 19:28:42 -07001915
1916 }
1917
1918 public void updateKeyboardFromSettingsLocked() {
1919 mShowImeWithHardKeyboard = mSettings.isShowImeWithHardKeyboardEnabled();
1920 if (mSwitchingDialog != null
1921 && mSwitchingDialogTitleView != null
1922 && mSwitchingDialog.isShowing()) {
1923 final Switch hardKeySwitch = (Switch)mSwitchingDialogTitleView.findViewById(
1924 com.android.internal.R.id.hard_keyboard_switch);
1925 hardKeySwitch.setChecked(mShowImeWithHardKeyboard);
1926 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001927 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001928
Yohei Yukawab097b822015-12-01 10:43:08 -08001929 private void notifyInputMethodSubtypeChanged(final int userId,
1930 @Nullable final InputMethodInfo inputMethodInfo,
1931 @Nullable final InputMethodSubtype subtype) {
1932 final InputManagerInternal inputManagerInternal =
1933 LocalServices.getService(InputManagerInternal.class);
1934 if (inputManagerInternal != null) {
1935 inputManagerInternal.onInputMethodSubtypeChanged(userId, inputMethodInfo, subtype);
1936 }
1937 }
1938
satokab751aa2010-09-14 19:17:36 +09001939 /* package */ void setInputMethodLocked(String id, int subtypeId) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001940 InputMethodInfo info = mMethodMap.get(id);
1941 if (info == null) {
satok913a8922010-08-26 21:53:41 +09001942 throw new IllegalArgumentException("Unknown id: " + id);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001943 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001944
Yohei Yukawae63b5fa2014-09-19 13:14:55 +09001945 if (mCurClient != null && mCurAttribute != null) {
Yohei Yukawa0f3ad12015-04-06 16:48:24 -07001946 // We have already made sure that the package name belongs to the application's UID.
1947 // No further UID check is required.
1948 if (SystemConfig.getInstance().getFixedImeApps().contains(mCurAttribute.packageName)) {
1949 return;
Yohei Yukawae63b5fa2014-09-19 13:14:55 +09001950 }
1951 }
1952
satokd81e9502012-05-21 12:58:45 +09001953 // See if we need to notify a subtype change within the same IME.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001954 if (id.equals(mCurMethodId)) {
satokd81e9502012-05-21 12:58:45 +09001955 final int subtypeCount = info.getSubtypeCount();
1956 if (subtypeCount <= 0) {
1957 return;
satokcd7cd292010-11-20 15:46:23 +09001958 }
satokd81e9502012-05-21 12:58:45 +09001959 final InputMethodSubtype oldSubtype = mCurrentSubtype;
1960 final InputMethodSubtype newSubtype;
1961 if (subtypeId >= 0 && subtypeId < subtypeCount) {
1962 newSubtype = info.getSubtypeAt(subtypeId);
1963 } else {
1964 // If subtype is null, try to find the most applicable one from
1965 // getCurrentInputMethodSubtype.
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001966 newSubtype = getCurrentInputMethodSubtypeLocked();
satokd81e9502012-05-21 12:58:45 +09001967 }
1968 if (newSubtype == null || oldSubtype == null) {
1969 Slog.w(TAG, "Illegal subtype state: old subtype = " + oldSubtype
1970 + ", new subtype = " + newSubtype);
1971 return;
1972 }
1973 if (newSubtype != oldSubtype) {
1974 setSelectedInputMethodAndSubtypeLocked(info, subtypeId, true);
1975 if (mCurMethod != null) {
1976 try {
Seigo Nonakad9eb9112015-05-26 20:54:43 +09001977 updateSystemUiLocked(mCurToken, mImeWindowVis, mBackDisposition);
satokd81e9502012-05-21 12:58:45 +09001978 mCurMethod.changeInputMethodSubtype(newSubtype);
1979 } catch (RemoteException e) {
1980 Slog.w(TAG, "Failed to call changeInputMethodSubtype");
Yohei Yukawab097b822015-12-01 10:43:08 -08001981 return;
satokab751aa2010-09-14 19:17:36 +09001982 }
1983 }
Yohei Yukawab097b822015-12-01 10:43:08 -08001984 notifyInputMethodSubtypeChanged(mSettings.getCurrentUserId(), info, newSubtype);
satokab751aa2010-09-14 19:17:36 +09001985 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001986 return;
1987 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001988
satokd81e9502012-05-21 12:58:45 +09001989 // Changing to a different IME.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001990 final long ident = Binder.clearCallingIdentity();
1991 try {
satokab751aa2010-09-14 19:17:36 +09001992 // Set a subtype to this input method.
1993 // subtypeId the name of a subtype which will be set.
satok723a27e2010-11-11 14:58:11 +09001994 setSelectedInputMethodAndSubtypeLocked(info, subtypeId, false);
1995 // mCurMethodId should be updated after setSelectedInputMethodAndSubtypeLocked()
1996 // because mCurMethodId is stored as a history in
1997 // setSelectedInputMethodAndSubtypeLocked().
1998 mCurMethodId = id;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001999
2000 if (ActivityManagerNative.isSystemReady()) {
2001 Intent intent = new Intent(Intent.ACTION_INPUT_METHOD_CHANGED);
Dianne Hackborn1c633fc2009-12-08 19:45:14 -08002002 intent.addFlags(Intent.FLAG_RECEIVER_REPLACE_PENDING);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002003 intent.putExtra("input_method_id", id);
Amith Yamasanicd757062012-10-19 18:23:52 -07002004 mContext.sendBroadcastAsUser(intent, UserHandle.CURRENT);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002005 }
Yohei Yukawa33e81792015-11-17 21:14:42 -08002006 unbindCurrentClientLocked(InputMethodClient.UNBIND_REASON_SWITCH_IME);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002007 } finally {
2008 Binder.restoreCallingIdentity(ident);
2009 }
Yohei Yukawab097b822015-12-01 10:43:08 -08002010
2011 notifyInputMethodSubtypeChanged(mSettings.getCurrentUserId(), info,
2012 getCurrentInputMethodSubtypeLocked());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002013 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002014
satok42c5a162011-05-26 16:46:14 +09002015 @Override
The Android Open Source Project4df24232009-03-05 14:34:35 -08002016 public boolean showSoftInput(IInputMethodClient client, int flags,
2017 ResultReceiver resultReceiver) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002018 if (!calledFromValidUser()) {
2019 return false;
2020 }
Dianne Hackborncef65ee2010-09-30 18:27:22 -07002021 int uid = Binder.getCallingUid();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002022 long ident = Binder.clearCallingIdentity();
2023 try {
2024 synchronized (mMethodMap) {
2025 if (mCurClient == null || client == null
2026 || mCurClient.client.asBinder() != client.asBinder()) {
2027 try {
2028 // We need to check if this is the current client with
2029 // focus in the window manager, to allow this call to
2030 // be made before input is started in it.
2031 if (!mIWindowManager.inputMethodClientHasFocus(client)) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07002032 Slog.w(TAG, "Ignoring showSoftInput of uid " + uid + ": " + client);
The Android Open Source Project4df24232009-03-05 14:34:35 -08002033 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002034 }
2035 } catch (RemoteException e) {
The Android Open Source Project4df24232009-03-05 14:34:35 -08002036 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002037 }
2038 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002039
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002040 if (DEBUG) Slog.v(TAG, "Client requesting input be shown");
The Android Open Source Project4df24232009-03-05 14:34:35 -08002041 return showCurrentInputLocked(flags, resultReceiver);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002042 }
2043 } finally {
2044 Binder.restoreCallingIdentity(ident);
2045 }
2046 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002047
The Android Open Source Project4df24232009-03-05 14:34:35 -08002048 boolean showCurrentInputLocked(int flags, ResultReceiver resultReceiver) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002049 mShowRequested = true;
2050 if ((flags&InputMethodManager.SHOW_IMPLICIT) == 0) {
2051 mShowExplicitlyRequested = true;
2052 }
2053 if ((flags&InputMethodManager.SHOW_FORCED) != 0) {
2054 mShowExplicitlyRequested = true;
2055 mShowForced = true;
2056 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002057
Dianne Hackborncc278702009-09-02 23:07:23 -07002058 if (!mSystemReady) {
2059 return false;
2060 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002061
The Android Open Source Project4df24232009-03-05 14:34:35 -08002062 boolean res = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002063 if (mCurMethod != null) {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002064 if (DEBUG) Slog.d(TAG, "showCurrentInputLocked: mCurToken=" + mCurToken);
The Android Open Source Project4df24232009-03-05 14:34:35 -08002065 executeOrSendMessage(mCurMethod, mCaller.obtainMessageIOO(
2066 MSG_SHOW_SOFT_INPUT, getImeShowFlags(), mCurMethod,
2067 resultReceiver));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002068 mInputShown = true;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07002069 if (mHaveConnection && !mVisibleBound) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002070 bindCurrentInputMethodService(
Dianne Hackbornf0f94d12014-03-17 16:04:21 -07002071 mCurIntent, mVisibleConnection, Context.BIND_AUTO_CREATE
Dianne Hackbornd69e4c12015-04-24 09:54:54 -07002072 | Context.BIND_TREAT_LIKE_ACTIVITY
2073 | Context.BIND_FOREGROUND_SERVICE);
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07002074 mVisibleBound = true;
2075 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002076 res = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002077 } else if (mHaveConnection && SystemClock.uptimeMillis()
satok59b424c2011-09-30 17:21:46 +09002078 >= (mLastBindTime+TIME_TO_RECONNECT)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002079 // The client has asked to have the input method shown, but
2080 // we have been sitting here too long with a connection to the
2081 // service and no interface received, so let's disconnect/connect
2082 // to try to prod things along.
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002083 EventLog.writeEvent(EventLogTags.IMF_FORCE_RECONNECT_IME, mCurMethodId,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002084 SystemClock.uptimeMillis()-mLastBindTime,1);
satok59b424c2011-09-30 17:21:46 +09002085 Slog.w(TAG, "Force disconnect/connect to the IME in showCurrentInputLocked()");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002086 mContext.unbindService(this);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002087 bindCurrentInputMethodService(mCurIntent, this, Context.BIND_AUTO_CREATE
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07002088 | Context.BIND_NOT_VISIBLE);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002089 } else {
2090 if (DEBUG) {
2091 Slog.d(TAG, "Can't show input: connection = " + mHaveConnection + ", time = "
2092 + ((mLastBindTime+TIME_TO_RECONNECT) - SystemClock.uptimeMillis()));
2093 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002094 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002095
The Android Open Source Project4df24232009-03-05 14:34:35 -08002096 return res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002097 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002098
satok42c5a162011-05-26 16:46:14 +09002099 @Override
The Android Open Source Project4df24232009-03-05 14:34:35 -08002100 public boolean hideSoftInput(IInputMethodClient client, int flags,
2101 ResultReceiver resultReceiver) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002102 if (!calledFromValidUser()) {
2103 return false;
2104 }
Dianne Hackborncef65ee2010-09-30 18:27:22 -07002105 int uid = Binder.getCallingUid();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002106 long ident = Binder.clearCallingIdentity();
2107 try {
2108 synchronized (mMethodMap) {
2109 if (mCurClient == null || client == null
2110 || mCurClient.client.asBinder() != client.asBinder()) {
2111 try {
2112 // We need to check if this is the current client with
2113 // focus in the window manager, to allow this call to
2114 // be made before input is started in it.
2115 if (!mIWindowManager.inputMethodClientHasFocus(client)) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07002116 if (DEBUG) Slog.w(TAG, "Ignoring hideSoftInput of uid "
2117 + uid + ": " + client);
The Android Open Source Project4df24232009-03-05 14:34:35 -08002118 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002119 }
2120 } catch (RemoteException e) {
The Android Open Source Project4df24232009-03-05 14:34:35 -08002121 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002122 }
2123 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002124
Joe Onorato8a9b2202010-02-26 18:56:32 -08002125 if (DEBUG) Slog.v(TAG, "Client requesting input be hidden");
The Android Open Source Project4df24232009-03-05 14:34:35 -08002126 return hideCurrentInputLocked(flags, resultReceiver);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002127 }
2128 } finally {
2129 Binder.restoreCallingIdentity(ident);
2130 }
2131 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002132
The Android Open Source Project4df24232009-03-05 14:34:35 -08002133 boolean hideCurrentInputLocked(int flags, ResultReceiver resultReceiver) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002134 if ((flags&InputMethodManager.HIDE_IMPLICIT_ONLY) != 0
2135 && (mShowExplicitlyRequested || mShowForced)) {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002136 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 -08002137 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002138 }
2139 if (mShowForced && (flags&InputMethodManager.HIDE_NOT_ALWAYS) != 0) {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002140 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 -08002141 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002142 }
Seigo Nonakaec928652015-06-10 15:31:20 +09002143
2144 // There is a chance that IMM#hideSoftInput() is called in a transient state where
2145 // IMMS#InputShown is already updated to be true whereas IMMS#mImeWindowVis is still waiting
2146 // to be updated with the new value sent from IME process. Even in such a transient state
2147 // historically we have accepted an incoming call of IMM#hideSoftInput() from the
2148 // application process as a valid request, and have even promised such a behavior with CTS
2149 // since Android Eclair. That's why we need to accept IMM#hideSoftInput() even when only
2150 // IMMS#InputShown indicates that the software keyboard is shown.
2151 // TODO: Clean up, IMMS#mInputShown, IMMS#mImeWindowVis and mShowRequested.
2152 final boolean shouldHideSoftInput = (mCurMethod != null) && (mInputShown ||
2153 (mImeWindowVis & InputMethodService.IME_ACTIVE) != 0);
The Android Open Source Project4df24232009-03-05 14:34:35 -08002154 boolean res;
Seigo Nonakaec928652015-06-10 15:31:20 +09002155 if (shouldHideSoftInput) {
2156 // The IME will report its visible state again after the following message finally
2157 // delivered to the IME process as an IPC. Hence the inconsistency between
2158 // IMMS#mInputShown and IMMS#mImeWindowVis should be resolved spontaneously in
2159 // the final state.
The Android Open Source Project4df24232009-03-05 14:34:35 -08002160 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
2161 MSG_HIDE_SOFT_INPUT, mCurMethod, resultReceiver));
2162 res = true;
2163 } else {
2164 res = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002165 }
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07002166 if (mHaveConnection && mVisibleBound) {
2167 mContext.unbindService(mVisibleConnection);
2168 mVisibleBound = false;
2169 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002170 mInputShown = false;
2171 mShowRequested = false;
2172 mShowExplicitlyRequested = false;
2173 mShowForced = false;
The Android Open Source Project4df24232009-03-05 14:34:35 -08002174 return res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002175 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002176
satok42c5a162011-05-26 16:46:14 +09002177 @Override
Yohei Yukawa35d3f372015-11-25 11:07:19 -08002178 public InputBindResult windowGainedFocus(
2179 /* @InputMethodClient.StartInputReason */ final int startInputReason,
2180 IInputMethodClient client, IBinder windowToken, int controlFlags, int softInputMode,
2181 int windowFlags, EditorInfo attribute, IInputContext inputContext) {
Satoshi Kataoka8d033052012-11-19 17:30:40 +09002182 // Needs to check the validity before clearing calling identity
2183 final boolean calledFromValidUser = calledFromValidUser();
Dianne Hackborn7663d802012-02-24 13:08:49 -08002184 InputBindResult res = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002185 long ident = Binder.clearCallingIdentity();
2186 try {
2187 synchronized (mMethodMap) {
Yohei Yukawa35d3f372015-11-25 11:07:19 -08002188 if (DEBUG) Slog.v(TAG, "windowGainedFocus: reason="
2189 + InputMethodClient.getStartInputReason(startInputReason)
2190 + " client=" + client.asBinder()
2191 + " inputContext=" + inputContext
2192 + " attribute=" + attribute
Dianne Hackborn7663d802012-02-24 13:08:49 -08002193 + " controlFlags=#" + Integer.toHexString(controlFlags)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002194 + " softInputMode=#" + Integer.toHexString(softInputMode)
Dianne Hackborn7663d802012-02-24 13:08:49 -08002195 + " windowFlags=#" + Integer.toHexString(windowFlags));
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002196
Dianne Hackborn7663d802012-02-24 13:08:49 -08002197 ClientState cs = mClients.get(client.asBinder());
2198 if (cs == null) {
2199 throw new IllegalArgumentException("unknown client "
2200 + client.asBinder());
2201 }
2202
2203 try {
2204 if (!mIWindowManager.inputMethodClientHasFocus(cs.client)) {
2205 // Check with the window manager to make sure this client actually
2206 // has a window with focus. If not, reject. This is thread safe
2207 // because if the focus changes some time before or after, the
2208 // next client receiving focus that has any interest in input will
2209 // be calling through here after that change happens.
2210 Slog.w(TAG, "Focus gain on non-focused client " + cs.client
2211 + " (uid=" + cs.uid + " pid=" + cs.pid + ")");
2212 return null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002213 }
Dianne Hackborn7663d802012-02-24 13:08:49 -08002214 } catch (RemoteException e) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002215 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002216
Satoshi Kataoka8d033052012-11-19 17:30:40 +09002217 if (!calledFromValidUser) {
2218 Slog.w(TAG, "A background user is requesting window. Hiding IME.");
2219 Slog.w(TAG, "If you want to interect with IME, you need "
2220 + "android.permission.INTERACT_ACROSS_USERS_FULL");
2221 hideCurrentInputLocked(0, null);
2222 return null;
2223 }
2224
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07002225 if (mCurFocusedWindow == windowToken) {
Dianne Hackbornac920872012-05-22 11:49:49 -07002226 Slog.w(TAG, "Window already focused, ignoring focus gain of: " + client
Satoshi Kataoka35739502012-10-02 19:00:26 +09002227 + " attribute=" + attribute + ", token = " + windowToken);
Dianne Hackborn7663d802012-02-24 13:08:49 -08002228 if (attribute != null) {
2229 return startInputUncheckedLocked(cs, inputContext, attribute,
2230 controlFlags);
2231 }
2232 return null;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07002233 }
2234 mCurFocusedWindow = windowToken;
Yohei Yukawae39d4ed2015-11-19 03:38:49 -08002235 mCurFocusedWindowClient = cs;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002236
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08002237 // Should we auto-show the IME even if the caller has not
2238 // specified what should be done with it?
2239 // We only do this automatically if the window can resize
2240 // to accommodate the IME (so what the user sees will give
2241 // them good context without input information being obscured
2242 // by the IME) or if running on a large screen where there
2243 // is more room for the target window + IME.
2244 final boolean doAutoShow =
2245 (softInputMode & WindowManager.LayoutParams.SOFT_INPUT_MASK_ADJUST)
2246 == WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE
2247 || mRes.getConfiguration().isLayoutSizeAtLeast(
2248 Configuration.SCREENLAYOUT_SIZE_LARGE);
Dianne Hackborn7663d802012-02-24 13:08:49 -08002249 final boolean isTextEditor =
2250 (controlFlags&InputMethodManager.CONTROL_WINDOW_IS_TEXT_EDITOR) != 0;
2251
2252 // We want to start input before showing the IME, but after closing
2253 // it. We want to do this after closing it to help the IME disappear
2254 // more quickly (not get stuck behind it initializing itself for the
2255 // new focused input, even if its window wants to hide the IME).
2256 boolean didStart = false;
Yohei Yukawa0f3ad12015-04-06 16:48:24 -07002257
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002258 switch (softInputMode&WindowManager.LayoutParams.SOFT_INPUT_MASK_STATE) {
2259 case WindowManager.LayoutParams.SOFT_INPUT_STATE_UNSPECIFIED:
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08002260 if (!isTextEditor || !doAutoShow) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002261 if (WindowManager.LayoutParams.mayUseInputMethod(windowFlags)) {
2262 // There is no focus view, and this window will
2263 // be behind any soft input window, so hide the
2264 // soft input window if it is shown.
Joe Onorato8a9b2202010-02-26 18:56:32 -08002265 if (DEBUG) Slog.v(TAG, "Unspecified window will hide input");
The Android Open Source Project4df24232009-03-05 14:34:35 -08002266 hideCurrentInputLocked(InputMethodManager.HIDE_NOT_ALWAYS, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002267 }
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08002268 } else if (isTextEditor && doAutoShow && (softInputMode &
2269 WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002270 // There is a focus view, and we are navigating forward
2271 // into the window, so show the input window for the user.
Dianne Hackborn7663d802012-02-24 13:08:49 -08002272 // We only do this automatically if the window can resize
2273 // to accommodate the IME (so what the user sees will give
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08002274 // them good context without input information being obscured
2275 // by the IME) or if running on a large screen where there
2276 // is more room for the target window + IME.
Joe Onorato8a9b2202010-02-26 18:56:32 -08002277 if (DEBUG) Slog.v(TAG, "Unspecified window will show input");
Dianne Hackborn7663d802012-02-24 13:08:49 -08002278 if (attribute != null) {
2279 res = startInputUncheckedLocked(cs, inputContext, attribute,
2280 controlFlags);
2281 didStart = true;
2282 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002283 showCurrentInputLocked(InputMethodManager.SHOW_IMPLICIT, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002284 }
2285 break;
2286 case WindowManager.LayoutParams.SOFT_INPUT_STATE_UNCHANGED:
2287 // Do nothing.
2288 break;
2289 case WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN:
2290 if ((softInputMode &
2291 WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002292 if (DEBUG) Slog.v(TAG, "Window asks to hide input going forward");
The Android Open Source Project4df24232009-03-05 14:34:35 -08002293 hideCurrentInputLocked(0, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002294 }
2295 break;
2296 case WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN:
Joe Onorato8a9b2202010-02-26 18:56:32 -08002297 if (DEBUG) Slog.v(TAG, "Window asks to hide input");
The Android Open Source Project4df24232009-03-05 14:34:35 -08002298 hideCurrentInputLocked(0, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002299 break;
2300 case WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE:
2301 if ((softInputMode &
2302 WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002303 if (DEBUG) Slog.v(TAG, "Window asks to show input going forward");
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_ALWAYS_VISIBLE:
Joe Onorato8a9b2202010-02-26 18:56:32 -08002313 if (DEBUG) Slog.v(TAG, "Window asks to always show input");
Dianne Hackborn7663d802012-02-24 13:08:49 -08002314 if (attribute != null) {
2315 res = startInputUncheckedLocked(cs, inputContext, attribute,
2316 controlFlags);
2317 didStart = true;
2318 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002319 showCurrentInputLocked(InputMethodManager.SHOW_IMPLICIT, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002320 break;
2321 }
Dianne Hackborn7663d802012-02-24 13:08:49 -08002322
2323 if (!didStart && attribute != null) {
2324 res = startInputUncheckedLocked(cs, inputContext, attribute,
2325 controlFlags);
2326 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002327 }
2328 } finally {
2329 Binder.restoreCallingIdentity(ident);
2330 }
Dianne Hackborn7663d802012-02-24 13:08:49 -08002331
2332 return res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002333 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002334
satok42c5a162011-05-26 16:46:14 +09002335 @Override
Seigo Nonaka14e13912015-05-06 21:04:13 -07002336 public void showInputMethodPickerFromClient(
2337 IInputMethodClient client, int auxiliarySubtypeMode) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002338 if (!calledFromValidUser()) {
2339 return;
2340 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002341 synchronized (mMethodMap) {
2342 if (mCurClient == null || client == null
2343 || mCurClient.client.asBinder() != client.asBinder()) {
satok47a44912010-10-06 16:03:58 +09002344 Slog.w(TAG, "Ignoring showInputMethodPickerFromClient of uid "
Dianne Hackborncef65ee2010-09-30 18:27:22 -07002345 + Binder.getCallingUid() + ": " + client);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002346 }
2347
satok440aab52010-11-25 09:43:11 +09002348 // Always call subtype picker, because subtype picker is a superset of input method
2349 // picker.
Seigo Nonaka14e13912015-05-06 21:04:13 -07002350 mHandler.sendMessage(mCaller.obtainMessageI(
2351 MSG_SHOW_IM_SUBTYPE_PICKER, auxiliarySubtypeMode));
satokab751aa2010-09-14 19:17:36 +09002352 }
2353 }
2354
satok42c5a162011-05-26 16:46:14 +09002355 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002356 public void setInputMethod(IBinder token, String id) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002357 if (!calledFromValidUser()) {
2358 return;
2359 }
satok28203512010-11-24 11:06:49 +09002360 setInputMethodWithSubtypeId(token, id, NOT_A_SUBTYPE_ID);
2361 }
2362
satok42c5a162011-05-26 16:46:14 +09002363 @Override
satok28203512010-11-24 11:06:49 +09002364 public void setInputMethodAndSubtype(IBinder token, String id, InputMethodSubtype subtype) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002365 if (!calledFromValidUser()) {
2366 return;
2367 }
satok28203512010-11-24 11:06:49 +09002368 synchronized (mMethodMap) {
2369 if (subtype != null) {
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002370 setInputMethodWithSubtypeIdLocked(token, id,
2371 InputMethodUtils.getSubtypeIdFromHashCode(mMethodMap.get(id),
2372 subtype.hashCode()));
satok28203512010-11-24 11:06:49 +09002373 } else {
2374 setInputMethod(token, id);
2375 }
2376 }
satokab751aa2010-09-14 19:17:36 +09002377 }
2378
satok42c5a162011-05-26 16:46:14 +09002379 @Override
satokb416a712010-11-25 20:42:14 +09002380 public void showInputMethodAndSubtypeEnablerFromClient(
satok217f5482010-12-15 05:19:19 +09002381 IInputMethodClient client, String inputMethodId) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002382 if (!calledFromValidUser()) {
2383 return;
2384 }
satokb416a712010-11-25 20:42:14 +09002385 synchronized (mMethodMap) {
2386 if (mCurClient == null || client == null
2387 || mCurClient.client.asBinder() != client.asBinder()) {
2388 Slog.w(TAG, "Ignoring showInputMethodAndSubtypeEnablerFromClient of: " + client);
2389 }
satok7fee71f2010-12-17 18:54:26 +09002390 executeOrSendMessage(mCurMethod, mCaller.obtainMessageO(
2391 MSG_SHOW_IM_SUBTYPE_ENABLER, inputMethodId));
satokb416a712010-11-25 20:42:14 +09002392 }
2393 }
2394
satok4fc87d62011-05-20 16:13:43 +09002395 @Override
satok735cf382010-11-11 20:40:09 +09002396 public boolean switchToLastInputMethod(IBinder token) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002397 if (!calledFromValidUser()) {
2398 return false;
2399 }
satok735cf382010-11-11 20:40:09 +09002400 synchronized (mMethodMap) {
satokc445bcd2011-01-25 18:57:24 +09002401 final Pair<String, String> lastIme = mSettings.getLastInputMethodAndSubtypeLocked();
satok4fc87d62011-05-20 16:13:43 +09002402 final InputMethodInfo lastImi;
satok208d5632011-05-20 22:13:38 +09002403 if (lastIme != null) {
satok4fc87d62011-05-20 16:13:43 +09002404 lastImi = mMethodMap.get(lastIme.first);
2405 } else {
2406 lastImi = null;
satok735cf382010-11-11 20:40:09 +09002407 }
satok4fc87d62011-05-20 16:13:43 +09002408 String targetLastImiId = null;
2409 int subtypeId = NOT_A_SUBTYPE_ID;
2410 if (lastIme != null && lastImi != null) {
2411 final boolean imiIdIsSame = lastImi.getId().equals(mCurMethodId);
2412 final int lastSubtypeHash = Integer.valueOf(lastIme.second);
2413 final int currentSubtypeHash = mCurrentSubtype == null ? NOT_A_SUBTYPE_ID
2414 : mCurrentSubtype.hashCode();
2415 // If the last IME is the same as the current IME and the last subtype is not
2416 // defined, there is no need to switch to the last IME.
2417 if (!imiIdIsSame || lastSubtypeHash != currentSubtypeHash) {
2418 targetLastImiId = lastIme.first;
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002419 subtypeId = InputMethodUtils.getSubtypeIdFromHashCode(lastImi, lastSubtypeHash);
satok4fc87d62011-05-20 16:13:43 +09002420 }
2421 }
2422
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002423 if (TextUtils.isEmpty(targetLastImiId)
2424 && !InputMethodUtils.canAddToLastInputMethod(mCurrentSubtype)) {
satok4fc87d62011-05-20 16:13:43 +09002425 // This is a safety net. If the currentSubtype can't be added to the history
2426 // and the framework couldn't find the last ime, we will make the last ime be
2427 // the most applicable enabled keyboard subtype of the system imes.
2428 final List<InputMethodInfo> enabled = mSettings.getEnabledInputMethodListLocked();
2429 if (enabled != null) {
2430 final int N = enabled.size();
2431 final String locale = mCurrentSubtype == null
2432 ? mRes.getConfiguration().locale.toString()
2433 : mCurrentSubtype.getLocale();
2434 for (int i = 0; i < N; ++i) {
2435 final InputMethodInfo imi = enabled.get(i);
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002436 if (imi.getSubtypeCount() > 0 && InputMethodUtils.isSystemIme(imi)) {
satok4fc87d62011-05-20 16:13:43 +09002437 InputMethodSubtype keyboardSubtype =
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002438 InputMethodUtils.findLastResortApplicableSubtypeLocked(mRes,
2439 InputMethodUtils.getSubtypes(imi),
2440 InputMethodUtils.SUBTYPE_MODE_KEYBOARD, locale, true);
satok4fc87d62011-05-20 16:13:43 +09002441 if (keyboardSubtype != null) {
2442 targetLastImiId = imi.getId();
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002443 subtypeId = InputMethodUtils.getSubtypeIdFromHashCode(
satok4fc87d62011-05-20 16:13:43 +09002444 imi, keyboardSubtype.hashCode());
2445 if(keyboardSubtype.getLocale().equals(locale)) {
2446 break;
2447 }
2448 }
2449 }
2450 }
2451 }
2452 }
2453
2454 if (!TextUtils.isEmpty(targetLastImiId)) {
2455 if (DEBUG) {
2456 Slog.d(TAG, "Switch to: " + lastImi.getId() + ", " + lastIme.second
2457 + ", from: " + mCurMethodId + ", " + subtypeId);
2458 }
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002459 setInputMethodWithSubtypeIdLocked(token, targetLastImiId, subtypeId);
satok4fc87d62011-05-20 16:13:43 +09002460 return true;
2461 } else {
2462 return false;
2463 }
satok735cf382010-11-11 20:40:09 +09002464 }
2465 }
2466
satoke7c6998e2011-06-03 17:57:59 +09002467 @Override
satok688bd472012-02-09 20:09:17 +09002468 public boolean switchToNextInputMethod(IBinder token, boolean onlyCurrentIme) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002469 if (!calledFromValidUser()) {
2470 return false;
2471 }
satok688bd472012-02-09 20:09:17 +09002472 synchronized (mMethodMap) {
Yohei Yukawaa0755742014-06-04 20:28:18 +09002473 if (!calledWithValidToken(token)) {
2474 final int uid = Binder.getCallingUid();
2475 Slog.e(TAG, "Ignoring switchToNextInputMethod due to an invalid token. uid:" + uid
2476 + " token:" + token);
2477 return false;
2478 }
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002479 final ImeSubtypeListItem nextSubtype = mSwitchingController.getNextInputMethodLocked(
satok688bd472012-02-09 20:09:17 +09002480 onlyCurrentIme, mMethodMap.get(mCurMethodId), mCurrentSubtype);
2481 if (nextSubtype == null) {
2482 return false;
2483 }
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002484 setInputMethodWithSubtypeIdLocked(token, nextSubtype.mImi.getId(),
2485 nextSubtype.mSubtypeId);
satok688bd472012-02-09 20:09:17 +09002486 return true;
2487 }
2488 }
2489
2490 @Override
Satoshi Kataoka2b10b522013-08-21 20:39:12 +09002491 public boolean shouldOfferSwitchingToNextInputMethod(IBinder token) {
2492 if (!calledFromValidUser()) {
2493 return false;
2494 }
2495 synchronized (mMethodMap) {
Yohei Yukawaa0755742014-06-04 20:28:18 +09002496 if (!calledWithValidToken(token)) {
2497 final int uid = Binder.getCallingUid();
2498 Slog.e(TAG, "Ignoring shouldOfferSwitchingToNextInputMethod due to an invalid "
2499 + "token. uid:" + uid + " token:" + token);
2500 return false;
2501 }
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002502 final ImeSubtypeListItem nextSubtype = mSwitchingController.getNextInputMethodLocked(
Satoshi Kataoka2b10b522013-08-21 20:39:12 +09002503 false /* onlyCurrentIme */, mMethodMap.get(mCurMethodId), mCurrentSubtype);
2504 if (nextSubtype == null) {
2505 return false;
2506 }
2507 return true;
2508 }
2509 }
2510
2511 @Override
satok68f1b782011-04-11 14:26:04 +09002512 public InputMethodSubtype getLastInputMethodSubtype() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002513 if (!calledFromValidUser()) {
2514 return null;
2515 }
satok68f1b782011-04-11 14:26:04 +09002516 synchronized (mMethodMap) {
2517 final Pair<String, String> lastIme = mSettings.getLastInputMethodAndSubtypeLocked();
2518 // TODO: Handle the case of the last IME with no subtypes
2519 if (lastIme == null || TextUtils.isEmpty(lastIme.first)
2520 || TextUtils.isEmpty(lastIme.second)) return null;
2521 final InputMethodInfo lastImi = mMethodMap.get(lastIme.first);
2522 if (lastImi == null) return null;
2523 try {
2524 final int lastSubtypeHash = Integer.valueOf(lastIme.second);
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002525 final int lastSubtypeId =
2526 InputMethodUtils.getSubtypeIdFromHashCode(lastImi, lastSubtypeHash);
satok0e7d7d62011-07-05 13:28:06 +09002527 if (lastSubtypeId < 0 || lastSubtypeId >= lastImi.getSubtypeCount()) {
2528 return null;
2529 }
2530 return lastImi.getSubtypeAt(lastSubtypeId);
satok68f1b782011-04-11 14:26:04 +09002531 } catch (NumberFormatException e) {
2532 return null;
2533 }
2534 }
2535 }
2536
satoke7c6998e2011-06-03 17:57:59 +09002537 @Override
satokee5e77c2011-09-02 18:50:15 +09002538 public void setAdditionalInputMethodSubtypes(String imiId, InputMethodSubtype[] subtypes) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002539 if (!calledFromValidUser()) {
2540 return;
2541 }
satok91e88122011-07-18 11:11:42 +09002542 // By this IPC call, only a process which shares the same uid with the IME can add
2543 // additional input method subtypes to the IME.
satokee5e77c2011-09-02 18:50:15 +09002544 if (TextUtils.isEmpty(imiId) || subtypes == null || subtypes.length == 0) return;
satoke7c6998e2011-06-03 17:57:59 +09002545 synchronized (mMethodMap) {
satok91e88122011-07-18 11:11:42 +09002546 final InputMethodInfo imi = mMethodMap.get(imiId);
satokee5e77c2011-09-02 18:50:15 +09002547 if (imi == null) return;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002548 final String[] packageInfos;
2549 try {
2550 packageInfos = mIPackageManager.getPackagesForUid(Binder.getCallingUid());
2551 } catch (RemoteException e) {
2552 Slog.e(TAG, "Failed to get package infos");
2553 return;
2554 }
satok91e88122011-07-18 11:11:42 +09002555 if (packageInfos != null) {
2556 final int packageNum = packageInfos.length;
2557 for (int i = 0; i < packageNum; ++i) {
2558 if (packageInfos[i].equals(imi.getPackageName())) {
2559 mFileManager.addInputMethodSubtypes(imi, subtypes);
satokc5933802011-08-31 21:26:04 +09002560 final long ident = Binder.clearCallingIdentity();
2561 try {
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09002562 buildInputMethodListLocked(mMethodList, mMethodMap,
2563 false /* resetDefaultEnabledIme */);
satokc5933802011-08-31 21:26:04 +09002564 } finally {
2565 Binder.restoreCallingIdentity(ident);
2566 }
satokee5e77c2011-09-02 18:50:15 +09002567 return;
satok91e88122011-07-18 11:11:42 +09002568 }
2569 }
2570 }
satoke7c6998e2011-06-03 17:57:59 +09002571 }
satokee5e77c2011-09-02 18:50:15 +09002572 return;
satoke7c6998e2011-06-03 17:57:59 +09002573 }
2574
Satoshi Kataoka658c7b82013-10-10 17:03:51 +09002575 @Override
2576 public int getInputMethodWindowVisibleHeight() {
Seigo Nonaka7309b122015-08-17 18:34:13 -07002577 return mWindowManagerInternal.getInputMethodWindowVisibleHeight();
Satoshi Kataoka658c7b82013-10-10 17:03:51 +09002578 }
2579
Satoshi Kataokad7443c82013-10-15 17:45:43 +09002580 @Override
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002581 public void notifyUserAction(int sequenceNumber) {
Satoshi Kataokad7443c82013-10-15 17:45:43 +09002582 if (DEBUG) {
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002583 Slog.d(TAG, "Got the notification of a user action. sequenceNumber:" + sequenceNumber);
Satoshi Kataokad7443c82013-10-15 17:45:43 +09002584 }
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002585 synchronized (mMethodMap) {
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002586 if (mCurUserActionNotificationSequenceNumber != sequenceNumber) {
2587 if (DEBUG) {
2588 Slog.d(TAG, "Ignoring the user action notification due to the sequence number "
2589 + "mismatch. expected:" + mCurUserActionNotificationSequenceNumber
2590 + " actual: " + sequenceNumber);
2591 }
2592 return;
2593 }
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002594 final InputMethodInfo imi = mMethodMap.get(mCurMethodId);
2595 if (imi != null) {
Yohei Yukawa02970512014-06-05 16:16:18 +09002596 mSwitchingController.onUserActionLocked(imi, mCurrentSubtype);
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002597 }
Satoshi Kataokad7443c82013-10-15 17:45:43 +09002598 }
2599 }
2600
satok28203512010-11-24 11:06:49 +09002601 private void setInputMethodWithSubtypeId(IBinder token, String id, int subtypeId) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002602 synchronized (mMethodMap) {
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002603 setInputMethodWithSubtypeIdLocked(token, id, subtypeId);
2604 }
2605 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002606
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002607 private void setInputMethodWithSubtypeIdLocked(IBinder token, String id, int subtypeId) {
2608 if (token == null) {
2609 if (mContext.checkCallingOrSelfPermission(
2610 android.Manifest.permission.WRITE_SECURE_SETTINGS)
2611 != PackageManager.PERMISSION_GRANTED) {
2612 throw new SecurityException(
2613 "Using null token requires permission "
2614 + android.Manifest.permission.WRITE_SECURE_SETTINGS);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002615 }
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002616 } else if (mCurToken != token) {
2617 Slog.w(TAG, "Ignoring setInputMethod of uid " + Binder.getCallingUid()
2618 + " token: " + token);
2619 return;
2620 }
2621
2622 final long ident = Binder.clearCallingIdentity();
2623 try {
2624 setInputMethodLocked(id, subtypeId);
2625 } finally {
2626 Binder.restoreCallingIdentity(ident);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002627 }
2628 }
2629
satok42c5a162011-05-26 16:46:14 +09002630 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002631 public void hideMySoftInput(IBinder token, int flags) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002632 if (!calledFromValidUser()) {
2633 return;
2634 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002635 synchronized (mMethodMap) {
Yohei Yukawa22c97be2014-06-04 19:43:36 +09002636 if (!calledWithValidToken(token)) {
2637 final int uid = Binder.getCallingUid();
2638 Slog.e(TAG, "Ignoring hideInputMethod due to an invalid token. uid:"
2639 + uid + " token:" + token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002640 return;
2641 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002642 long ident = Binder.clearCallingIdentity();
2643 try {
The Android Open Source Project4df24232009-03-05 14:34:35 -08002644 hideCurrentInputLocked(flags, null);
2645 } finally {
2646 Binder.restoreCallingIdentity(ident);
2647 }
2648 }
2649 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002650
satok42c5a162011-05-26 16:46:14 +09002651 @Override
The Android Open Source Project4df24232009-03-05 14:34:35 -08002652 public void showMySoftInput(IBinder token, int flags) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002653 if (!calledFromValidUser()) {
2654 return;
2655 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002656 synchronized (mMethodMap) {
Yohei Yukawa22c97be2014-06-04 19:43:36 +09002657 if (!calledWithValidToken(token)) {
2658 final int uid = Binder.getCallingUid();
2659 Slog.e(TAG, "Ignoring showMySoftInput due to an invalid token. uid:"
2660 + uid + " token:" + token);
The Android Open Source Project4df24232009-03-05 14:34:35 -08002661 return;
2662 }
2663 long ident = Binder.clearCallingIdentity();
2664 try {
2665 showCurrentInputLocked(flags, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002666 } finally {
2667 Binder.restoreCallingIdentity(ident);
2668 }
2669 }
2670 }
2671
2672 void setEnabledSessionInMainThread(SessionState session) {
2673 if (mEnabledSession != session) {
Yohei Yukawa9d91b432014-05-19 16:03:24 +09002674 if (mEnabledSession != null && mEnabledSession.session != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002675 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002676 if (DEBUG) Slog.v(TAG, "Disabling: " + mEnabledSession);
Yohei Yukawa9d91b432014-05-19 16:03:24 +09002677 mEnabledSession.method.setSessionEnabled(mEnabledSession.session, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002678 } catch (RemoteException e) {
2679 }
2680 }
2681 mEnabledSession = session;
Yohei Yukawa9d91b432014-05-19 16:03:24 +09002682 if (mEnabledSession != null && mEnabledSession.session != null) {
2683 try {
2684 if (DEBUG) Slog.v(TAG, "Enabling: " + mEnabledSession);
2685 mEnabledSession.method.setSessionEnabled(mEnabledSession.session, true);
2686 } catch (RemoteException e) {
2687 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002688 }
2689 }
2690 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002691
satok42c5a162011-05-26 16:46:14 +09002692 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002693 public boolean handleMessage(Message msg) {
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002694 SomeArgs args;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002695 switch (msg.what) {
satokab751aa2010-09-14 19:17:36 +09002696 case MSG_SHOW_IM_SUBTYPE_PICKER:
Seigo Nonaka14e13912015-05-06 21:04:13 -07002697 final boolean showAuxSubtypes;
2698 switch (msg.arg1) {
2699 case InputMethodManager.SHOW_IM_PICKER_MODE_AUTO:
2700 // This is undocumented so far, but IMM#showInputMethodPicker() has been
2701 // implemented so that auxiliary subtypes will be excluded when the soft
2702 // keyboard is invisible.
2703 showAuxSubtypes = mInputShown;
2704 break;
2705 case InputMethodManager.SHOW_IM_PICKER_MODE_INCLUDE_AUXILIARY_SUBTYPES:
2706 showAuxSubtypes = true;
2707 break;
2708 case InputMethodManager.SHOW_IM_PICKER_MODE_EXCLUDE_AUXILIARY_SUBTYPES:
2709 showAuxSubtypes = false;
2710 break;
2711 default:
2712 Slog.e(TAG, "Unknown subtype picker mode = " + msg.arg1);
2713 return false;
2714 }
2715 showInputMethodMenu(showAuxSubtypes);
satokab751aa2010-09-14 19:17:36 +09002716 return true;
2717
satok47a44912010-10-06 16:03:58 +09002718 case MSG_SHOW_IM_SUBTYPE_ENABLER:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002719 args = (SomeArgs)msg.obj;
satok7fee71f2010-12-17 18:54:26 +09002720 showInputMethodAndSubtypeEnabler((String)args.arg1);
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002721 args.recycle();
satok217f5482010-12-15 05:19:19 +09002722 return true;
2723
2724 case MSG_SHOW_IM_CONFIG:
2725 showConfigureInputMethods();
satok47a44912010-10-06 16:03:58 +09002726 return true;
2727
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002728 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002729
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002730 case MSG_UNBIND_INPUT:
2731 try {
2732 ((IInputMethod)msg.obj).unbindInput();
2733 } catch (RemoteException e) {
2734 // There is nothing interesting about the method dying.
2735 }
2736 return true;
2737 case MSG_BIND_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002738 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002739 try {
2740 ((IInputMethod)args.arg1).bindInput((InputBinding)args.arg2);
2741 } catch (RemoteException e) {
2742 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002743 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002744 return true;
2745 case MSG_SHOW_SOFT_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002746 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002747 try {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002748 if (DEBUG) Slog.v(TAG, "Calling " + args.arg1 + ".showSoftInput("
Craig Mautner6efb4c72013-03-13 10:17:41 -07002749 + msg.arg1 + ", " + args.arg2 + ")");
Craig Mautnerca0ac712013-03-14 09:43:02 -07002750 ((IInputMethod)args.arg1).showSoftInput(msg.arg1, (ResultReceiver)args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002751 } catch (RemoteException e) {
2752 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002753 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002754 return true;
2755 case MSG_HIDE_SOFT_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002756 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002757 try {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002758 if (DEBUG) Slog.v(TAG, "Calling " + args.arg1 + ".hideSoftInput(0, "
Craig Mautner6efb4c72013-03-13 10:17:41 -07002759 + args.arg2 + ")");
Craig Mautnerca0ac712013-03-14 09:43:02 -07002760 ((IInputMethod)args.arg1).hideSoftInput(0, (ResultReceiver)args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002761 } 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_ATTACH_TOKEN:
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, "Sending attach of token: " + args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002769 ((IInputMethod)args.arg1).attachToken((IBinder)args.arg2);
2770 } catch (RemoteException e) {
2771 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002772 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002773 return true;
Jeff Brownc28867a2013-03-26 15:42:39 -07002774 case MSG_CREATE_SESSION: {
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002775 args = (SomeArgs)msg.obj;
Jeff Brown1951ce82013-04-04 22:45:12 -07002776 IInputMethod method = (IInputMethod)args.arg1;
Jeff Brownc28867a2013-03-26 15:42:39 -07002777 InputChannel channel = (InputChannel)args.arg2;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002778 try {
Jeff Brown1951ce82013-04-04 22:45:12 -07002779 method.createSession(channel, (IInputSessionCallback)args.arg3);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002780 } catch (RemoteException e) {
Jeff Brownc28867a2013-03-26 15:42:39 -07002781 } finally {
Jeff Brown1951ce82013-04-04 22:45:12 -07002782 // Dispose the channel if the input method is not local to this process
2783 // because the remote proxy will get its own copy when unparceled.
2784 if (channel != null && Binder.isProxy(method)) {
Jeff Brownc28867a2013-03-26 15:42:39 -07002785 channel.dispose();
2786 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002787 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002788 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002789 return true;
Jeff Brownc28867a2013-03-26 15:42:39 -07002790 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002791 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002792
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002793 case MSG_START_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002794 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002795 try {
2796 SessionState session = (SessionState)args.arg1;
2797 setEnabledSessionInMainThread(session);
2798 session.method.startInput((IInputContext)args.arg2,
2799 (EditorInfo)args.arg3);
2800 } catch (RemoteException e) {
2801 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002802 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002803 return true;
2804 case MSG_RESTART_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002805 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002806 try {
2807 SessionState session = (SessionState)args.arg1;
2808 setEnabledSessionInMainThread(session);
2809 session.method.restartInput((IInputContext)args.arg2,
2810 (EditorInfo)args.arg3);
2811 } catch (RemoteException e) {
2812 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002813 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002814 return true;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002815
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002816 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002817
Yohei Yukawa33e81792015-11-17 21:14:42 -08002818 case MSG_UNBIND_CLIENT:
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002819 try {
Yohei Yukawa33e81792015-11-17 21:14:42 -08002820 ((IInputMethodClient)msg.obj).onUnbindMethod(msg.arg1, msg.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002821 } catch (RemoteException e) {
2822 // There is nothing interesting about the last client dying.
2823 }
2824 return true;
Yohei Yukawa33e81792015-11-17 21:14:42 -08002825 case MSG_BIND_CLIENT: {
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002826 args = (SomeArgs)msg.obj;
Jeff Brown1951ce82013-04-04 22:45:12 -07002827 IInputMethodClient client = (IInputMethodClient)args.arg1;
2828 InputBindResult res = (InputBindResult)args.arg2;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002829 try {
Jeff Brown1951ce82013-04-04 22:45:12 -07002830 client.onBindMethod(res);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002831 } catch (RemoteException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002832 Slog.w(TAG, "Client died receiving input method " + args.arg2);
Jeff Brown1951ce82013-04-04 22:45:12 -07002833 } finally {
2834 // Dispose the channel if the input method is not local to this process
2835 // because the remote proxy will get its own copy when unparceled.
2836 if (res.channel != null && Binder.isProxy(client)) {
2837 res.channel.dispose();
2838 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002839 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002840 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002841 return true;
Jeff Brown1951ce82013-04-04 22:45:12 -07002842 }
Dianne Hackborna6e41342012-05-22 16:30:34 -07002843 case MSG_SET_ACTIVE:
2844 try {
2845 ((ClientState)msg.obj).client.setActive(msg.arg1 != 0);
2846 } catch (RemoteException e) {
2847 Slog.w(TAG, "Got RemoteException sending setActive(false) notification to pid "
2848 + ((ClientState)msg.obj).pid + " uid "
2849 + ((ClientState)msg.obj).uid);
2850 }
2851 return true;
Yohei Yukawafa6e0a82015-07-23 15:08:59 -07002852 case MSG_SET_INTERACTIVE:
2853 handleSetInteractive(msg.arg1 != 0);
2854 return true;
Yohei Yukawaae61f712015-12-09 13:00:10 -08002855 case MSG_SWITCH_IME:
2856 handleSwitchInputMethod(msg.arg1 != 0);
2857 return true;
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002858 case MSG_SET_USER_ACTION_NOTIFICATION_SEQUENCE_NUMBER: {
2859 final int sequenceNumber = msg.arg1;
Yohei Yukawa080fa342014-08-31 16:10:05 -07002860 final ClientState clientState = (ClientState)msg.obj;
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002861 try {
Yohei Yukawa080fa342014-08-31 16:10:05 -07002862 clientState.client.setUserActionNotificationSequenceNumber(sequenceNumber);
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002863 } catch (RemoteException e) {
2864 Slog.w(TAG, "Got RemoteException sending "
2865 + "setUserActionNotificationSequenceNumber("
2866 + sequenceNumber + ") notification to pid "
Yohei Yukawa080fa342014-08-31 16:10:05 -07002867 + clientState.pid + " uid "
2868 + clientState.uid);
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002869 }
2870 return true;
2871 }
satok01038492012-04-09 21:08:27 +09002872
2873 // --------------------------------------------------------------
2874 case MSG_HARD_KEYBOARD_SWITCH_CHANGED:
Michael Wright7b5a96b2014-08-09 19:28:42 -07002875 mHardKeyboardListener.handleHardKeyboardStatusChange(msg.arg1 == 1);
satok01038492012-04-09 21:08:27 +09002876 return true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002877 }
2878 return false;
2879 }
2880
Yohei Yukawafa6e0a82015-07-23 15:08:59 -07002881 private void handleSetInteractive(final boolean interactive) {
2882 synchronized (mMethodMap) {
2883 mIsInteractive = interactive;
2884 updateSystemUiLocked(mCurToken, interactive ? mImeWindowVis : 0, mBackDisposition);
2885
2886 // Inform the current client of the change in active status
2887 if (mCurClient != null && mCurClient.client != null) {
2888 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
2889 MSG_SET_ACTIVE, mIsInteractive ? 1 : 0, mCurClient));
2890 }
2891 }
2892 }
2893
Yohei Yukawaae61f712015-12-09 13:00:10 -08002894 private void handleSwitchInputMethod(final boolean forwardDirection) {
2895 synchronized (mMethodMap) {
2896 // TODO: Support forwardDirection.
2897 final ImeSubtypeListItem nextSubtype = mSwitchingController.getNextInputMethodLocked(
2898 false, mMethodMap.get(mCurMethodId), mCurrentSubtype);
2899 if (nextSubtype == null) {
2900 return;
2901 }
2902 setInputMethodLocked(nextSubtype.mImi.getId(), nextSubtype.mSubtypeId);
2903 }
2904 }
2905
satokdc9ddae2011-10-06 12:22:36 +09002906 private boolean chooseNewDefaultIMELocked() {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002907 final InputMethodInfo imi = InputMethodUtils.getMostApplicableDefaultIME(
2908 mSettings.getEnabledInputMethodListLocked());
satokdc9ddae2011-10-06 12:22:36 +09002909 if (imi != null) {
satok03eb319a2010-11-11 18:17:42 +09002910 if (DEBUG) {
2911 Slog.d(TAG, "New default IME was selected: " + imi.getId());
2912 }
satok723a27e2010-11-11 14:58:11 +09002913 resetSelectedInputMethodAndSubtypeLocked(imi.getId());
Brandon Ballinger6da35a02009-10-21 00:38:13 -07002914 return true;
2915 }
2916
2917 return false;
2918 }
2919
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002920 void buildInputMethodListLocked(ArrayList<InputMethodInfo> list,
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09002921 HashMap<String, InputMethodInfo> map, boolean resetDefaultEnabledIme) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002922 if (DEBUG) {
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09002923 Slog.d(TAG, "--- re-buildInputMethodList reset = " + resetDefaultEnabledIme
Seigo Nonakae27dc2b2015-08-14 18:21:27 -07002924 + " \n ------ caller=" + Debug.getCallers(10));
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002925 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002926 list.clear();
2927 map.clear();
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002928
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002929 // Use for queryIntentServicesAsUser
2930 final PackageManager pm = mContext.getPackageManager();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002931
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002932 final List<ResolveInfo> services = pm.queryIntentServicesAsUser(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002933 new Intent(InputMethod.SERVICE_INTERFACE),
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08002934 PackageManager.GET_META_DATA | PackageManager.GET_DISABLED_UNTIL_USED_COMPONENTS,
2935 mSettings.getCurrentUserId());
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002936
satoke7c6998e2011-06-03 17:57:59 +09002937 final HashMap<String, List<InputMethodSubtype>> additionalSubtypes =
2938 mFileManager.getAllAdditionalInputMethodSubtypes();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002939 for (int i = 0; i < services.size(); ++i) {
2940 ResolveInfo ri = services.get(i);
2941 ServiceInfo si = ri.serviceInfo;
2942 ComponentName compName = new ComponentName(si.packageName, si.name);
2943 if (!android.Manifest.permission.BIND_INPUT_METHOD.equals(
2944 si.permission)) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002945 Slog.w(TAG, "Skipping input method " + compName
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002946 + ": it does not require the permission "
2947 + android.Manifest.permission.BIND_INPUT_METHOD);
2948 continue;
2949 }
2950
Joe Onorato8a9b2202010-02-26 18:56:32 -08002951 if (DEBUG) Slog.d(TAG, "Checking " + compName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002952
2953 try {
satoke7c6998e2011-06-03 17:57:59 +09002954 InputMethodInfo p = new InputMethodInfo(mContext, ri, additionalSubtypes);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002955 list.add(p);
Amith Yamasanie861ec12010-03-24 21:39:27 -07002956 final String id = p.getId();
2957 map.put(id, p);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002958
2959 if (DEBUG) {
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09002960 Slog.d(TAG, "Found an input method " + p);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002961 }
Yohei Yukawa5894b432015-08-11 13:29:24 -07002962 } catch (XmlPullParserException | IOException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002963 Slog.w(TAG, "Unable to load input method " + compName, e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002964 }
2965 }
Brandon Ballinger6da35a02009-10-21 00:38:13 -07002966
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09002967 if (resetDefaultEnabledIme) {
2968 final ArrayList<InputMethodInfo> defaultEnabledIme =
2969 InputMethodUtils.getDefaultEnabledImes(mContext, mSystemReady, list);
2970 for (int i = 0; i < defaultEnabledIme.size(); ++i) {
2971 final InputMethodInfo imi = defaultEnabledIme.get(i);
2972 if (DEBUG) {
2973 Slog.d(TAG, "--- enable ime = " + imi);
2974 }
2975 setInputMethodEnabledLocked(imi.getId(), true);
2976 }
2977 }
2978
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002979 final String defaultImiId = mSettings.getSelectedInputMethod();
satok0a1bcf42012-05-16 19:26:31 +09002980 if (!TextUtils.isEmpty(defaultImiId)) {
2981 if (!map.containsKey(defaultImiId)) {
2982 Slog.w(TAG, "Default IME is uninstalled. Choose new default IME.");
2983 if (chooseNewDefaultIMELocked()) {
Michael Wright7b5a96b2014-08-09 19:28:42 -07002984 updateInputMethodsFromSettingsLocked(true);
satok0a1bcf42012-05-16 19:26:31 +09002985 }
2986 } else {
2987 // Double check that the default IME is certainly enabled.
2988 setInputMethodEnabledLocked(defaultImiId, true);
Brandon Ballinger6da35a02009-10-21 00:38:13 -07002989 }
2990 }
Yohei Yukawa3d46bab2014-05-30 18:10:18 +09002991 // Here is not the perfect place to reset the switching controller. Ideally
2992 // mSwitchingController and mSettings should be able to share the same state.
2993 // TODO: Make sure that mSwitchingController and mSettings are sharing the
2994 // the same enabled IMEs list.
Yohei Yukawac834a252014-05-21 22:42:32 +09002995 mSwitchingController.resetCircularListLocked(mContext);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002996 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002997
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002998 // ----------------------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002999
satok217f5482010-12-15 05:19:19 +09003000 private void showInputMethodAndSubtypeEnabler(String inputMethodId) {
Tadashi G. Takaokaf49688f2011-01-20 17:56:13 +09003001 Intent intent = new Intent(Settings.ACTION_INPUT_METHOD_SUBTYPE_SETTINGS);
satok47a44912010-10-06 16:03:58 +09003002 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
satok86417ea2010-10-27 14:11:03 +09003003 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED
3004 | Intent.FLAG_ACTIVITY_CLEAR_TOP);
satok7fee71f2010-12-17 18:54:26 +09003005 if (!TextUtils.isEmpty(inputMethodId)) {
Tadashi G. Takaoka25480202011-01-20 23:13:02 +09003006 intent.putExtra(Settings.EXTRA_INPUT_METHOD_ID, inputMethodId);
satok7fee71f2010-12-17 18:54:26 +09003007 }
Satoshi Kataoka3ba439d2012-10-05 18:30:13 +09003008 mContext.startActivityAsUser(intent, null, UserHandle.CURRENT);
satok217f5482010-12-15 05:19:19 +09003009 }
3010
3011 private void showConfigureInputMethods() {
3012 Intent intent = new Intent(Settings.ACTION_INPUT_METHOD_SETTINGS);
3013 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
3014 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED
3015 | Intent.FLAG_ACTIVITY_CLEAR_TOP);
Satoshi Kataoka3ba439d2012-10-05 18:30:13 +09003016 mContext.startActivityAsUser(intent, null, UserHandle.CURRENT);
satok47a44912010-10-06 16:03:58 +09003017 }
3018
satok2c93efc2012-04-02 19:33:47 +09003019 private boolean isScreenLocked() {
3020 return mKeyguardManager != null
3021 && mKeyguardManager.isKeyguardLocked() && mKeyguardManager.isKeyguardSecure();
3022 }
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003023
Seigo Nonaka14e13912015-05-06 21:04:13 -07003024 private void showInputMethodMenu(boolean showAuxSubtypes) {
3025 if (DEBUG) Slog.v(TAG, "Show switching menu. showAuxSubtypes=" + showAuxSubtypes);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003026
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003027 final Context context = mContext;
satok2c93efc2012-04-02 19:33:47 +09003028 final boolean isScreenLocked = isScreenLocked();
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003029
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003030 final String lastInputMethodId = mSettings.getSelectedInputMethod();
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003031 int lastInputMethodSubtypeId = mSettings.getSelectedInputMethodSubtypeId(lastInputMethodId);
Joe Onorato8a9b2202010-02-26 18:56:32 -08003032 if (DEBUG) Slog.v(TAG, "Current IME: " + lastInputMethodId);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003033
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07003034 synchronized (mMethodMap) {
satokbb4aa062011-01-19 21:40:27 +09003035 final HashMap<InputMethodInfo, List<InputMethodSubtype>> immis =
Satoshi Kataokad787f692013-10-26 04:44:21 +09003036 mSettings.getExplicitlyOrImplicitlyEnabledInputMethodsAndSubtypeListLocked(
3037 mContext);
satok7f35c8c2010-10-07 21:13:11 +09003038 if (immis == null || immis.size() == 0) {
3039 return;
3040 }
3041
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07003042 hideInputMethodMenuLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003043
satok688bd472012-02-09 20:09:17 +09003044 final List<ImeSubtypeListItem> imList =
Yohei Yukawa5a647b692014-05-22 12:49:00 +09003045 mSwitchingController.getSortedInputMethodAndSubtypeListLocked(
Seigo Nonaka14e13912015-05-06 21:04:13 -07003046 true /* showSubtypes */, showAuxSubtypes, isScreenLocked);
satok913a8922010-08-26 21:53:41 +09003047
satokc3690562012-01-10 20:14:43 +09003048 if (lastInputMethodSubtypeId == NOT_A_SUBTYPE_ID) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003049 final InputMethodSubtype currentSubtype = getCurrentInputMethodSubtypeLocked();
satokc3690562012-01-10 20:14:43 +09003050 if (currentSubtype != null) {
3051 final InputMethodInfo currentImi = mMethodMap.get(mCurMethodId);
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003052 lastInputMethodSubtypeId = InputMethodUtils.getSubtypeIdFromHashCode(
3053 currentImi, currentSubtype.hashCode());
satokc3690562012-01-10 20:14:43 +09003054 }
3055 }
3056
Ken Wakasa761eb372011-03-04 19:06:18 +09003057 final int N = imList.size();
satokab751aa2010-09-14 19:17:36 +09003058 mIms = new InputMethodInfo[N];
3059 mSubtypeIds = new int[N];
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07003060 int checkedItem = 0;
3061 for (int i = 0; i < N; ++i) {
Ken Wakasa05dbb652011-08-22 15:22:43 +09003062 final ImeSubtypeListItem item = imList.get(i);
3063 mIms[i] = item.mImi;
3064 mSubtypeIds[i] = item.mSubtypeId;
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07003065 if (mIms[i].getId().equals(lastInputMethodId)) {
satokab751aa2010-09-14 19:17:36 +09003066 int subtypeId = mSubtypeIds[i];
3067 if ((subtypeId == NOT_A_SUBTYPE_ID)
3068 || (lastInputMethodSubtypeId == NOT_A_SUBTYPE_ID && subtypeId == 0)
3069 || (subtypeId == lastInputMethodSubtypeId)) {
3070 checkedItem = i;
3071 }
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07003072 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003073 }
Alan Viverette505e3ab2014-11-24 15:22:11 -08003074
3075 final Context settingsContext = new ContextThemeWrapper(context,
3076 com.android.internal.R.style.Theme_DeviceDefault_Settings);
3077
3078 mDialogBuilder = new AlertDialog.Builder(settingsContext);
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003079 mDialogBuilder.setOnCancelListener(new OnCancelListener() {
3080 @Override
3081 public void onCancel(DialogInterface dialog) {
3082 hideInputMethodMenu();
3083 }
3084 });
Alan Viverette505e3ab2014-11-24 15:22:11 -08003085
3086 final Context dialogContext = mDialogBuilder.getContext();
3087 final TypedArray a = dialogContext.obtainStyledAttributes(null,
3088 com.android.internal.R.styleable.DialogPreference,
3089 com.android.internal.R.attr.alertDialogStyle, 0);
3090 final Drawable dialogIcon = a.getDrawable(
3091 com.android.internal.R.styleable.DialogPreference_dialogIcon);
3092 a.recycle();
3093
3094 mDialogBuilder.setIcon(dialogIcon);
3095
3096 final LayoutInflater inflater = (LayoutInflater) dialogContext.getSystemService(
3097 Context.LAYOUT_INFLATER_SERVICE);
satok01038492012-04-09 21:08:27 +09003098 final View tv = inflater.inflate(
3099 com.android.internal.R.layout.input_method_switch_dialog_title, null);
3100 mDialogBuilder.setCustomTitle(tv);
3101
3102 // Setup layout for a toggle switch of the hardware keyboard
3103 mSwitchingDialogTitleView = tv;
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003104 mSwitchingDialogTitleView
3105 .findViewById(com.android.internal.R.id.hard_keyboard_section)
Seigo Nonaka7309b122015-08-17 18:34:13 -07003106 .setVisibility(mWindowManagerInternal.isHardKeyboardAvailable()
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003107 ? View.VISIBLE : View.GONE);
Alan Viverette505e3ab2014-11-24 15:22:11 -08003108 final Switch hardKeySwitch = (Switch) mSwitchingDialogTitleView.findViewById(
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003109 com.android.internal.R.id.hard_keyboard_switch);
Michael Wright7b5a96b2014-08-09 19:28:42 -07003110 hardKeySwitch.setChecked(mShowImeWithHardKeyboard);
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003111 hardKeySwitch.setOnCheckedChangeListener(new OnCheckedChangeListener() {
3112 @Override
3113 public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
Michael Wright7b5a96b2014-08-09 19:28:42 -07003114 mSettings.setShowImeWithHardKeyboard(isChecked);
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003115 // Ensure that the input method dialog is dismissed when changing
3116 // the hardware keyboard state.
3117 hideInputMethodMenu();
3118 }
3119 });
3120
Alan Viverette505e3ab2014-11-24 15:22:11 -08003121 final ImeSubtypeListAdapter adapter = new ImeSubtypeListAdapter(dialogContext,
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003122 com.android.internal.R.layout.input_method_switch_item, imList, checkedItem);
3123 final OnClickListener choiceListener = new OnClickListener() {
3124 @Override
3125 public void onClick(final DialogInterface dialog, final int which) {
3126 synchronized (mMethodMap) {
3127 if (mIms == null || mIms.length <= which || mSubtypeIds == null
3128 || mSubtypeIds.length <= which) {
3129 return;
satok01038492012-04-09 21:08:27 +09003130 }
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003131 final InputMethodInfo im = mIms[which];
3132 int subtypeId = mSubtypeIds[which];
3133 adapter.mCheckedItem = which;
3134 adapter.notifyDataSetChanged();
3135 hideInputMethodMenu();
3136 if (im != null) {
3137 if (subtypeId < 0 || subtypeId >= im.getSubtypeCount()) {
3138 subtypeId = NOT_A_SUBTYPE_ID;
Dianne Hackborn20cb56e2010-03-04 00:58:29 -08003139 }
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003140 setInputMethodLocked(im.getId(), subtypeId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003141 }
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003142 }
3143 }
3144 };
3145 mDialogBuilder.setSingleChoiceItems(adapter, checkedItem, choiceListener);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003146
Seigo Nonakad4474cb2015-05-04 16:53:24 -07003147 if (!isScreenLocked) {
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003148 final OnClickListener positiveListener = new OnClickListener() {
3149 @Override
3150 public void onClick(DialogInterface dialog, int whichButton) {
3151 showConfigureInputMethods();
3152 }
3153 };
satok82beadf2010-12-27 19:03:06 +09003154 mDialogBuilder.setPositiveButton(
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003155 com.android.internal.R.string.configure_input_methods, positiveListener);
satok7f35c8c2010-10-07 21:13:11 +09003156 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003157 mSwitchingDialog = mDialogBuilder.create();
Dianne Hackborne3a7f622011-03-03 21:48:24 -08003158 mSwitchingDialog.setCanceledOnTouchOutside(true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003159 mSwitchingDialog.getWindow().setType(
3160 WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG);
Satoshi Kataokac86884c2012-10-09 15:20:29 +09003161 mSwitchingDialog.getWindow().getAttributes().privateFlags |=
3162 WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS;
Dianne Hackborne3a7f622011-03-03 21:48:24 -08003163 mSwitchingDialog.getWindow().getAttributes().setTitle("Select input method");
Seigo Nonakad9eb9112015-05-26 20:54:43 +09003164 updateSystemUi(mCurToken, mImeWindowVis, mBackDisposition);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003165 mSwitchingDialog.show();
3166 }
3167 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003168
Ken Wakasa05dbb652011-08-22 15:22:43 +09003169 private static class ImeSubtypeListAdapter extends ArrayAdapter<ImeSubtypeListItem> {
3170 private final LayoutInflater mInflater;
3171 private final int mTextViewResourceId;
3172 private final List<ImeSubtypeListItem> mItemsList;
Satoshi Kataokad2142962012-11-12 18:43:06 +09003173 public int mCheckedItem;
Ken Wakasa05dbb652011-08-22 15:22:43 +09003174 public ImeSubtypeListAdapter(Context context, int textViewResourceId,
3175 List<ImeSubtypeListItem> itemsList, int checkedItem) {
3176 super(context, textViewResourceId, itemsList);
Alan Viverette505e3ab2014-11-24 15:22:11 -08003177
Ken Wakasa05dbb652011-08-22 15:22:43 +09003178 mTextViewResourceId = textViewResourceId;
3179 mItemsList = itemsList;
3180 mCheckedItem = checkedItem;
Alan Viverette505e3ab2014-11-24 15:22:11 -08003181 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
Ken Wakasa05dbb652011-08-22 15:22:43 +09003182 }
3183
3184 @Override
3185 public View getView(int position, View convertView, ViewGroup parent) {
3186 final View view = convertView != null ? convertView
3187 : mInflater.inflate(mTextViewResourceId, null);
3188 if (position < 0 || position >= mItemsList.size()) return view;
3189 final ImeSubtypeListItem item = mItemsList.get(position);
3190 final CharSequence imeName = item.mImeName;
3191 final CharSequence subtypeName = item.mSubtypeName;
3192 final TextView firstTextView = (TextView)view.findViewById(android.R.id.text1);
3193 final TextView secondTextView = (TextView)view.findViewById(android.R.id.text2);
3194 if (TextUtils.isEmpty(subtypeName)) {
3195 firstTextView.setText(imeName);
3196 secondTextView.setVisibility(View.GONE);
3197 } else {
3198 firstTextView.setText(subtypeName);
3199 secondTextView.setText(imeName);
3200 secondTextView.setVisibility(View.VISIBLE);
3201 }
3202 final RadioButton radioButton =
3203 (RadioButton)view.findViewById(com.android.internal.R.id.radio);
3204 radioButton.setChecked(position == mCheckedItem);
3205 return view;
3206 }
3207 }
3208
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003209 void hideInputMethodMenu() {
The Android Open Source Project10592532009-03-18 17:39:46 -07003210 synchronized (mMethodMap) {
3211 hideInputMethodMenuLocked();
3212 }
3213 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003214
The Android Open Source Project10592532009-03-18 17:39:46 -07003215 void hideInputMethodMenuLocked() {
Joe Onorato8a9b2202010-02-26 18:56:32 -08003216 if (DEBUG) Slog.v(TAG, "Hide switching menu");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003217
The Android Open Source Project10592532009-03-18 17:39:46 -07003218 if (mSwitchingDialog != null) {
3219 mSwitchingDialog.dismiss();
3220 mSwitchingDialog = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003221 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003222
Seigo Nonakad9eb9112015-05-26 20:54:43 +09003223 updateSystemUiLocked(mCurToken, mImeWindowVis, mBackDisposition);
The Android Open Source Project10592532009-03-18 17:39:46 -07003224 mDialogBuilder = null;
The Android Open Source Project10592532009-03-18 17:39:46 -07003225 mIms = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003226 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003227
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003228 // ----------------------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003229
satok42c5a162011-05-26 16:46:14 +09003230 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003231 public boolean setInputMethodEnabled(String id, boolean enabled) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003232 // TODO: Make this work even for non-current users?
3233 if (!calledFromValidUser()) {
3234 return false;
3235 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003236 synchronized (mMethodMap) {
3237 if (mContext.checkCallingOrSelfPermission(
3238 android.Manifest.permission.WRITE_SECURE_SETTINGS)
3239 != PackageManager.PERMISSION_GRANTED) {
3240 throw new SecurityException(
3241 "Requires permission "
3242 + android.Manifest.permission.WRITE_SECURE_SETTINGS);
3243 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003244
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003245 long ident = Binder.clearCallingIdentity();
3246 try {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003247 return setInputMethodEnabledLocked(id, enabled);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003248 } finally {
3249 Binder.restoreCallingIdentity(ident);
3250 }
3251 }
3252 }
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003253
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003254 boolean setInputMethodEnabledLocked(String id, boolean enabled) {
3255 // Make sure this is a valid input method.
3256 InputMethodInfo imm = mMethodMap.get(id);
3257 if (imm == null) {
satokd87c2592010-09-29 11:52:06 +09003258 throw new IllegalArgumentException("Unknown id: " + mCurMethodId);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003259 }
3260
satokd87c2592010-09-29 11:52:06 +09003261 List<Pair<String, ArrayList<String>>> enabledInputMethodsList = mSettings
3262 .getEnabledInputMethodsAndSubtypeListLocked();
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003263
satokd87c2592010-09-29 11:52:06 +09003264 if (enabled) {
3265 for (Pair<String, ArrayList<String>> pair: enabledInputMethodsList) {
3266 if (pair.first.equals(id)) {
3267 // We are enabling this input method, but it is already enabled.
3268 // Nothing to do. The previous state was enabled.
3269 return true;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003270 }
3271 }
satokd87c2592010-09-29 11:52:06 +09003272 mSettings.appendAndPutEnabledInputMethodLocked(id, false);
3273 // Previous state was disabled.
3274 return false;
3275 } else {
3276 StringBuilder builder = new StringBuilder();
3277 if (mSettings.buildAndPutEnabledInputMethodsStrRemovingIdLocked(
3278 builder, enabledInputMethodsList, id)) {
3279 // Disabled input method is currently selected, switch to another one.
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003280 final String selId = mSettings.getSelectedInputMethod();
satok03eb319a2010-11-11 18:17:42 +09003281 if (id.equals(selId) && !chooseNewDefaultIMELocked()) {
3282 Slog.i(TAG, "Can't find new IME, unsetting the current input method.");
3283 resetSelectedInputMethodAndSubtypeLocked("");
satokd87c2592010-09-29 11:52:06 +09003284 }
3285 // Previous state was enabled.
3286 return true;
3287 } else {
3288 // We are disabling the input method but it is already disabled.
3289 // Nothing to do. The previous state was disabled.
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003290 return false;
3291 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003292 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003293 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08003294
satok723a27e2010-11-11 14:58:11 +09003295 private void setSelectedInputMethodAndSubtypeLocked(InputMethodInfo imi, int subtypeId,
3296 boolean setSubtypeOnly) {
3297 // Update the history of InputMethod and Subtype
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003298 mSettings.saveCurrentInputMethodAndSubtypeToHistory(mCurMethodId, mCurrentSubtype);
satok723a27e2010-11-11 14:58:11 +09003299
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09003300 mCurUserActionNotificationSequenceNumber =
3301 Math.max(mCurUserActionNotificationSequenceNumber + 1, 1);
3302 if (DEBUG) {
3303 Slog.d(TAG, "Bump mCurUserActionNotificationSequenceNumber:"
3304 + mCurUserActionNotificationSequenceNumber);
3305 }
3306
3307 if (mCurClient != null && mCurClient.client != null) {
3308 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
3309 MSG_SET_USER_ACTION_NOTIFICATION_SEQUENCE_NUMBER,
Yohei Yukawa080fa342014-08-31 16:10:05 -07003310 mCurUserActionNotificationSequenceNumber, mCurClient));
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09003311 }
3312
satok723a27e2010-11-11 14:58:11 +09003313 // Set Subtype here
3314 if (imi == null || subtypeId < 0) {
3315 mSettings.putSelectedSubtype(NOT_A_SUBTYPE_ID);
Tadashi G. Takaoka0ba75bb2010-11-09 12:19:32 -08003316 mCurrentSubtype = null;
satok723a27e2010-11-11 14:58:11 +09003317 } else {
Ken Wakasa586f0512011-01-20 22:31:01 +09003318 if (subtypeId < imi.getSubtypeCount()) {
3319 InputMethodSubtype subtype = imi.getSubtypeAt(subtypeId);
3320 mSettings.putSelectedSubtype(subtype.hashCode());
3321 mCurrentSubtype = subtype;
satok723a27e2010-11-11 14:58:11 +09003322 } else {
3323 mSettings.putSelectedSubtype(NOT_A_SUBTYPE_ID);
satokd81e9502012-05-21 12:58:45 +09003324 // If the subtype is not specified, choose the most applicable one
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003325 mCurrentSubtype = getCurrentInputMethodSubtypeLocked();
satok723a27e2010-11-11 14:58:11 +09003326 }
satokab751aa2010-09-14 19:17:36 +09003327 }
satok723a27e2010-11-11 14:58:11 +09003328
satok4c0e7152012-06-20 20:08:44 +09003329 // Workaround.
3330 // ASEC is not ready in the IMMS constructor. Accordingly, forward-locked
3331 // IMEs are not recognized and considered uninstalled.
3332 // Actually, we can't move everything after SystemReady because
3333 // IMMS needs to run in the encryption lock screen. So, we just skip changing
3334 // the default IME here and try cheking the default IME again in systemReady().
3335 // TODO: Do nothing before system ready and implement a separated logic for
3336 // the encryption lock screen.
3337 // TODO: ASEC should be ready before IMMS is instantiated.
3338 if (mSystemReady && !setSubtypeOnly) {
satok723a27e2010-11-11 14:58:11 +09003339 // Set InputMethod here
3340 mSettings.putSelectedInputMethod(imi != null ? imi.getId() : "");
3341 }
3342 }
3343
3344 private void resetSelectedInputMethodAndSubtypeLocked(String newDefaultIme) {
3345 InputMethodInfo imi = mMethodMap.get(newDefaultIme);
3346 int lastSubtypeId = NOT_A_SUBTYPE_ID;
3347 // newDefaultIme is empty when there is no candidate for the selected IME.
3348 if (imi != null && !TextUtils.isEmpty(newDefaultIme)) {
3349 String subtypeHashCode = mSettings.getLastSubtypeForInputMethodLocked(newDefaultIme);
3350 if (subtypeHashCode != null) {
3351 try {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003352 lastSubtypeId = InputMethodUtils.getSubtypeIdFromHashCode(
satok723a27e2010-11-11 14:58:11 +09003353 imi, Integer.valueOf(subtypeHashCode));
3354 } catch (NumberFormatException e) {
3355 Slog.w(TAG, "HashCode for subtype looks broken: " + subtypeHashCode, e);
3356 }
3357 }
3358 }
3359 setSelectedInputMethodAndSubtypeLocked(imi, lastSubtypeId, false);
satokab751aa2010-09-14 19:17:36 +09003360 }
3361
satok4e4569d2010-11-19 18:45:53 +09003362 // If there are no selected shortcuts, tries finding the most applicable ones.
3363 private Pair<InputMethodInfo, InputMethodSubtype>
3364 findLastResortApplicableShortcutInputMethodAndSubtypeLocked(String mode) {
3365 List<InputMethodInfo> imis = mSettings.getEnabledInputMethodListLocked();
3366 InputMethodInfo mostApplicableIMI = null;
satokcd7cd292010-11-20 15:46:23 +09003367 InputMethodSubtype mostApplicableSubtype = null;
satok4e4569d2010-11-19 18:45:53 +09003368 boolean foundInSystemIME = false;
3369
3370 // Search applicable subtype for each InputMethodInfo
3371 for (InputMethodInfo imi: imis) {
satok7599a7f2010-12-22 13:45:23 +09003372 final String imiId = imi.getId();
3373 if (foundInSystemIME && !imiId.equals(mCurMethodId)) {
3374 continue;
3375 }
satokcd7cd292010-11-20 15:46:23 +09003376 InputMethodSubtype subtype = null;
satokdf31ae62011-01-15 06:19:44 +09003377 final List<InputMethodSubtype> enabledSubtypes =
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003378 mSettings.getEnabledInputMethodSubtypeListLocked(mContext, imi, true);
satokdf31ae62011-01-15 06:19:44 +09003379 // 1. Search by the current subtype's locale from enabledSubtypes.
satok4e4569d2010-11-19 18:45:53 +09003380 if (mCurrentSubtype != null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003381 subtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
satokdf31ae62011-01-15 06:19:44 +09003382 mRes, enabledSubtypes, mode, mCurrentSubtype.getLocale(), false);
satok4e4569d2010-11-19 18:45:53 +09003383 }
satokdf31ae62011-01-15 06:19:44 +09003384 // 2. Search by the system locale from enabledSubtypes.
3385 // 3. Search the first enabled subtype matched with mode from enabledSubtypes.
satokcd7cd292010-11-20 15:46:23 +09003386 if (subtype == null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003387 subtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
satokdf31ae62011-01-15 06:19:44 +09003388 mRes, enabledSubtypes, mode, null, true);
satok4e4569d2010-11-19 18:45:53 +09003389 }
satoka86f5e42011-09-02 17:12:42 +09003390 final ArrayList<InputMethodSubtype> overridingImplicitlyEnabledSubtypes =
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003391 InputMethodUtils.getOverridingImplicitlyEnabledSubtypes(imi, mode);
satoka86f5e42011-09-02 17:12:42 +09003392 final ArrayList<InputMethodSubtype> subtypesForSearch =
3393 overridingImplicitlyEnabledSubtypes.isEmpty()
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003394 ? InputMethodUtils.getSubtypes(imi)
3395 : overridingImplicitlyEnabledSubtypes;
satok7599a7f2010-12-22 13:45:23 +09003396 // 4. Search by the current subtype's locale from all subtypes.
3397 if (subtype == null && mCurrentSubtype != null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003398 subtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
satoka86f5e42011-09-02 17:12:42 +09003399 mRes, subtypesForSearch, mode, mCurrentSubtype.getLocale(), false);
satok7599a7f2010-12-22 13:45:23 +09003400 }
3401 // 5. Search by the system locale from all subtypes.
3402 // 6. Search the first enabled subtype matched with mode from all subtypes.
satokcd7cd292010-11-20 15:46:23 +09003403 if (subtype == null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003404 subtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
satoka86f5e42011-09-02 17:12:42 +09003405 mRes, subtypesForSearch, mode, null, true);
satok4e4569d2010-11-19 18:45:53 +09003406 }
satokcd7cd292010-11-20 15:46:23 +09003407 if (subtype != null) {
satok7599a7f2010-12-22 13:45:23 +09003408 if (imiId.equals(mCurMethodId)) {
satok4e4569d2010-11-19 18:45:53 +09003409 // The current input method is the most applicable IME.
3410 mostApplicableIMI = imi;
satokcd7cd292010-11-20 15:46:23 +09003411 mostApplicableSubtype = subtype;
satok4e4569d2010-11-19 18:45:53 +09003412 break;
satok7599a7f2010-12-22 13:45:23 +09003413 } else if (!foundInSystemIME) {
satok4e4569d2010-11-19 18:45:53 +09003414 // The system input method is 2nd applicable IME.
3415 mostApplicableIMI = imi;
satokcd7cd292010-11-20 15:46:23 +09003416 mostApplicableSubtype = subtype;
satok7599a7f2010-12-22 13:45:23 +09003417 if ((imi.getServiceInfo().applicationInfo.flags
3418 & ApplicationInfo.FLAG_SYSTEM) != 0) {
3419 foundInSystemIME = true;
3420 }
satok4e4569d2010-11-19 18:45:53 +09003421 }
3422 }
3423 }
3424 if (DEBUG) {
satokcd7cd292010-11-20 15:46:23 +09003425 if (mostApplicableIMI != null) {
3426 Slog.w(TAG, "Most applicable shortcut input method was:"
3427 + mostApplicableIMI.getId());
3428 if (mostApplicableSubtype != null) {
3429 Slog.w(TAG, "Most applicable shortcut input method subtype was:"
3430 + "," + mostApplicableSubtype.getMode() + ","
3431 + mostApplicableSubtype.getLocale());
3432 }
3433 }
satok4e4569d2010-11-19 18:45:53 +09003434 }
satokcd7cd292010-11-20 15:46:23 +09003435 if (mostApplicableIMI != null) {
Yohei Yukawab0377bb2015-08-10 21:06:30 -07003436 return new Pair<> (mostApplicableIMI, mostApplicableSubtype);
satok4e4569d2010-11-19 18:45:53 +09003437 } else {
3438 return null;
3439 }
3440 }
3441
satokab751aa2010-09-14 19:17:36 +09003442 /**
3443 * @return Return the current subtype of this input method.
3444 */
satok42c5a162011-05-26 16:46:14 +09003445 @Override
satokab751aa2010-09-14 19:17:36 +09003446 public InputMethodSubtype getCurrentInputMethodSubtype() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003447 // TODO: Make this work even for non-current users?
3448 if (!calledFromValidUser()) {
3449 return null;
3450 }
3451 synchronized (mMethodMap) {
3452 return getCurrentInputMethodSubtypeLocked();
3453 }
3454 }
3455
3456 private InputMethodSubtype getCurrentInputMethodSubtypeLocked() {
satokfdf419e2012-05-08 16:52:08 +09003457 if (mCurMethodId == null) {
3458 return null;
3459 }
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003460 final boolean subtypeIsSelected = mSettings.isSubtypeSelected();
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003461 final InputMethodInfo imi = mMethodMap.get(mCurMethodId);
3462 if (imi == null || imi.getSubtypeCount() == 0) {
3463 return null;
satok4e4569d2010-11-19 18:45:53 +09003464 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003465 if (!subtypeIsSelected || mCurrentSubtype == null
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003466 || !InputMethodUtils.isValidSubtypeId(imi, mCurrentSubtype.hashCode())) {
3467 int subtypeId = mSettings.getSelectedInputMethodSubtypeId(mCurMethodId);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003468 if (subtypeId == NOT_A_SUBTYPE_ID) {
3469 // If there are no selected subtypes, the framework will try to find
3470 // the most applicable subtype from explicitly or implicitly enabled
3471 // subtypes.
3472 List<InputMethodSubtype> explicitlyOrImplicitlyEnabledSubtypes =
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003473 mSettings.getEnabledInputMethodSubtypeListLocked(mContext, imi, true);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003474 // If there is only one explicitly or implicitly enabled subtype,
3475 // just returns it.
3476 if (explicitlyOrImplicitlyEnabledSubtypes.size() == 1) {
3477 mCurrentSubtype = explicitlyOrImplicitlyEnabledSubtypes.get(0);
3478 } else if (explicitlyOrImplicitlyEnabledSubtypes.size() > 1) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003479 mCurrentSubtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003480 mRes, explicitlyOrImplicitlyEnabledSubtypes,
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003481 InputMethodUtils.SUBTYPE_MODE_KEYBOARD, null, true);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003482 if (mCurrentSubtype == null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003483 mCurrentSubtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003484 mRes, explicitlyOrImplicitlyEnabledSubtypes, null, null,
3485 true);
satok4e4569d2010-11-19 18:45:53 +09003486 }
satok3ef8b292010-11-23 06:06:29 +09003487 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003488 } else {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003489 mCurrentSubtype = InputMethodUtils.getSubtypes(imi).get(subtypeId);
satok8fbb1e82010-11-02 23:15:58 +09003490 }
3491 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003492 return mCurrentSubtype;
satokab751aa2010-09-14 19:17:36 +09003493 }
3494
satok4e4569d2010-11-19 18:45:53 +09003495 // TODO: We should change the return type from List to List<Parcelable>
satokdbf29502011-08-25 15:28:23 +09003496 @SuppressWarnings("rawtypes")
satoke7c6998e2011-06-03 17:57:59 +09003497 @Override
satok4e4569d2010-11-19 18:45:53 +09003498 public List getShortcutInputMethodsAndSubtypes() {
3499 synchronized (mMethodMap) {
Yohei Yukawab0377bb2015-08-10 21:06:30 -07003500 ArrayList<Object> ret = new ArrayList<>();
satokf3db1af2010-11-23 13:34:33 +09003501 if (mShortcutInputMethodsAndSubtypes.size() == 0) {
satok4e4569d2010-11-19 18:45:53 +09003502 // If there are no selected shortcut subtypes, the framework will try to find
3503 // the most applicable subtype from all subtypes whose mode is
3504 // SUBTYPE_MODE_VOICE. This is an exceptional case, so we will hardcode the mode.
satokf3db1af2010-11-23 13:34:33 +09003505 Pair<InputMethodInfo, InputMethodSubtype> info =
3506 findLastResortApplicableShortcutInputMethodAndSubtypeLocked(
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003507 InputMethodUtils.SUBTYPE_MODE_VOICE);
satok7599a7f2010-12-22 13:45:23 +09003508 if (info != null) {
satok3da92232011-01-11 22:46:30 +09003509 ret.add(info.first);
3510 ret.add(info.second);
satok7599a7f2010-12-22 13:45:23 +09003511 }
satok3da92232011-01-11 22:46:30 +09003512 return ret;
satokf3db1af2010-11-23 13:34:33 +09003513 }
satokf3db1af2010-11-23 13:34:33 +09003514 for (InputMethodInfo imi: mShortcutInputMethodsAndSubtypes.keySet()) {
3515 ret.add(imi);
3516 for (InputMethodSubtype subtype: mShortcutInputMethodsAndSubtypes.get(imi)) {
3517 ret.add(subtype);
satok4e4569d2010-11-19 18:45:53 +09003518 }
3519 }
satokf3db1af2010-11-23 13:34:33 +09003520 return ret;
satok4e4569d2010-11-19 18:45:53 +09003521 }
3522 }
3523
satok42c5a162011-05-26 16:46:14 +09003524 @Override
satokb66d2872010-11-10 01:04:04 +09003525 public boolean setCurrentInputMethodSubtype(InputMethodSubtype subtype) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003526 // TODO: Make this work even for non-current users?
3527 if (!calledFromValidUser()) {
3528 return false;
3529 }
satokb66d2872010-11-10 01:04:04 +09003530 synchronized (mMethodMap) {
3531 if (subtype != null && mCurMethodId != null) {
3532 InputMethodInfo imi = mMethodMap.get(mCurMethodId);
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003533 int subtypeId = InputMethodUtils.getSubtypeIdFromHashCode(imi, subtype.hashCode());
satokb66d2872010-11-10 01:04:04 +09003534 if (subtypeId != NOT_A_SUBTYPE_ID) {
3535 setInputMethodLocked(mCurMethodId, subtypeId);
3536 return true;
3537 }
3538 }
3539 return false;
3540 }
3541 }
3542
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +09003543 // TODO: Cache the state for each user and reset when the cached user is removed.
satoke7c6998e2011-06-03 17:57:59 +09003544 private static class InputMethodFileManager {
3545 private static final String SYSTEM_PATH = "system";
3546 private static final String INPUT_METHOD_PATH = "inputmethod";
3547 private static final String ADDITIONAL_SUBTYPES_FILE_NAME = "subtypes.xml";
3548 private static final String NODE_SUBTYPES = "subtypes";
3549 private static final String NODE_SUBTYPE = "subtype";
3550 private static final String NODE_IMI = "imi";
3551 private static final String ATTR_ID = "id";
3552 private static final String ATTR_LABEL = "label";
3553 private static final String ATTR_ICON = "icon";
3554 private static final String ATTR_IME_SUBTYPE_LOCALE = "imeSubtypeLocale";
3555 private static final String ATTR_IME_SUBTYPE_MODE = "imeSubtypeMode";
3556 private static final String ATTR_IME_SUBTYPE_EXTRA_VALUE = "imeSubtypeExtraValue";
3557 private static final String ATTR_IS_AUXILIARY = "isAuxiliary";
3558 private final AtomicFile mAdditionalInputMethodSubtypeFile;
3559 private final HashMap<String, InputMethodInfo> mMethodMap;
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003560 private final HashMap<String, List<InputMethodSubtype>> mAdditionalSubtypesMap =
Yohei Yukawab0377bb2015-08-10 21:06:30 -07003561 new HashMap<>();
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +09003562 public InputMethodFileManager(HashMap<String, InputMethodInfo> methodMap, int userId) {
satoke7c6998e2011-06-03 17:57:59 +09003563 if (methodMap == null) {
3564 throw new NullPointerException("methodMap is null");
3565 }
3566 mMethodMap = methodMap;
Xiaohui Chen7c696362015-09-16 09:56:14 -07003567 final File systemDir = userId == UserHandle.USER_SYSTEM
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +09003568 ? new File(Environment.getDataDirectory(), SYSTEM_PATH)
3569 : Environment.getUserSystemDirectory(userId);
satoke7c6998e2011-06-03 17:57:59 +09003570 final File inputMethodDir = new File(systemDir, INPUT_METHOD_PATH);
Yohei Yukawadf5af482015-08-04 22:11:11 -07003571 if (!inputMethodDir.exists() && !inputMethodDir.mkdirs()) {
satoke7c6998e2011-06-03 17:57:59 +09003572 Slog.w(TAG, "Couldn't create dir.: " + inputMethodDir.getAbsolutePath());
3573 }
3574 final File subtypeFile = new File(inputMethodDir, ADDITIONAL_SUBTYPES_FILE_NAME);
3575 mAdditionalInputMethodSubtypeFile = new AtomicFile(subtypeFile);
3576 if (!subtypeFile.exists()) {
3577 // If "subtypes.xml" doesn't exist, create a blank file.
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003578 writeAdditionalInputMethodSubtypes(
3579 mAdditionalSubtypesMap, mAdditionalInputMethodSubtypeFile, methodMap);
satoke7c6998e2011-06-03 17:57:59 +09003580 } else {
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003581 readAdditionalInputMethodSubtypes(
3582 mAdditionalSubtypesMap, mAdditionalInputMethodSubtypeFile);
satoke7c6998e2011-06-03 17:57:59 +09003583 }
3584 }
3585
3586 private void deleteAllInputMethodSubtypes(String imiId) {
3587 synchronized (mMethodMap) {
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003588 mAdditionalSubtypesMap.remove(imiId);
3589 writeAdditionalInputMethodSubtypes(
3590 mAdditionalSubtypesMap, mAdditionalInputMethodSubtypeFile, mMethodMap);
satoke7c6998e2011-06-03 17:57:59 +09003591 }
3592 }
3593
3594 public void addInputMethodSubtypes(
satok4a28bde2011-06-29 21:03:40 +09003595 InputMethodInfo imi, InputMethodSubtype[] additionalSubtypes) {
satoke7c6998e2011-06-03 17:57:59 +09003596 synchronized (mMethodMap) {
Yohei Yukawab0377bb2015-08-10 21:06:30 -07003597 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>();
satoke7c6998e2011-06-03 17:57:59 +09003598 final int N = additionalSubtypes.length;
3599 for (int i = 0; i < N; ++i) {
3600 final InputMethodSubtype subtype = additionalSubtypes[i];
satoked2b24e2011-08-31 18:03:21 +09003601 if (!subtypes.contains(subtype)) {
satoke7c6998e2011-06-03 17:57:59 +09003602 subtypes.add(subtype);
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003603 } else {
3604 Slog.w(TAG, "Duplicated subtype definition found: "
3605 + subtype.getLocale() + ", " + subtype.getMode());
satoke7c6998e2011-06-03 17:57:59 +09003606 }
3607 }
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003608 mAdditionalSubtypesMap.put(imi.getId(), subtypes);
3609 writeAdditionalInputMethodSubtypes(
3610 mAdditionalSubtypesMap, mAdditionalInputMethodSubtypeFile, mMethodMap);
satoke7c6998e2011-06-03 17:57:59 +09003611 }
3612 }
3613
3614 public HashMap<String, List<InputMethodSubtype>> getAllAdditionalInputMethodSubtypes() {
3615 synchronized (mMethodMap) {
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003616 return mAdditionalSubtypesMap;
satoke7c6998e2011-06-03 17:57:59 +09003617 }
3618 }
3619
3620 private static void writeAdditionalInputMethodSubtypes(
3621 HashMap<String, List<InputMethodSubtype>> allSubtypes, AtomicFile subtypesFile,
3622 HashMap<String, InputMethodInfo> methodMap) {
3623 // Safety net for the case that this function is called before methodMap is set.
3624 final boolean isSetMethodMap = methodMap != null && methodMap.size() > 0;
3625 FileOutputStream fos = null;
3626 try {
3627 fos = subtypesFile.startWrite();
3628 final XmlSerializer out = new FastXmlSerializer();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01003629 out.setOutput(fos, StandardCharsets.UTF_8.name());
satoke7c6998e2011-06-03 17:57:59 +09003630 out.startDocument(null, true);
3631 out.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
3632 out.startTag(null, NODE_SUBTYPES);
3633 for (String imiId : allSubtypes.keySet()) {
3634 if (isSetMethodMap && !methodMap.containsKey(imiId)) {
3635 Slog.w(TAG, "IME uninstalled or not valid.: " + imiId);
3636 continue;
3637 }
3638 out.startTag(null, NODE_IMI);
3639 out.attribute(null, ATTR_ID, imiId);
3640 final List<InputMethodSubtype> subtypesList = allSubtypes.get(imiId);
3641 final int N = subtypesList.size();
3642 for (int i = 0; i < N; ++i) {
3643 final InputMethodSubtype subtype = subtypesList.get(i);
3644 out.startTag(null, NODE_SUBTYPE);
3645 out.attribute(null, ATTR_ICON, String.valueOf(subtype.getIconResId()));
3646 out.attribute(null, ATTR_LABEL, String.valueOf(subtype.getNameResId()));
3647 out.attribute(null, ATTR_IME_SUBTYPE_LOCALE, subtype.getLocale());
3648 out.attribute(null, ATTR_IME_SUBTYPE_MODE, subtype.getMode());
3649 out.attribute(null, ATTR_IME_SUBTYPE_EXTRA_VALUE, subtype.getExtraValue());
3650 out.attribute(null, ATTR_IS_AUXILIARY,
3651 String.valueOf(subtype.isAuxiliary() ? 1 : 0));
3652 out.endTag(null, NODE_SUBTYPE);
3653 }
3654 out.endTag(null, NODE_IMI);
3655 }
3656 out.endTag(null, NODE_SUBTYPES);
3657 out.endDocument();
3658 subtypesFile.finishWrite(fos);
3659 } catch (java.io.IOException e) {
3660 Slog.w(TAG, "Error writing subtypes", e);
3661 if (fos != null) {
3662 subtypesFile.failWrite(fos);
3663 }
3664 }
3665 }
3666
3667 private static void readAdditionalInputMethodSubtypes(
3668 HashMap<String, List<InputMethodSubtype>> allSubtypes, AtomicFile subtypesFile) {
3669 if (allSubtypes == null || subtypesFile == null) return;
3670 allSubtypes.clear();
Yohei Yukawa5894b432015-08-11 13:29:24 -07003671 try (final FileInputStream fis = subtypesFile.openRead()) {
satoke7c6998e2011-06-03 17:57:59 +09003672 final XmlPullParser parser = Xml.newPullParser();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01003673 parser.setInput(fis, StandardCharsets.UTF_8.name());
satoke7c6998e2011-06-03 17:57:59 +09003674 int type = parser.getEventType();
3675 // Skip parsing until START_TAG
3676 while ((type = parser.next()) != XmlPullParser.START_TAG
3677 && type != XmlPullParser.END_DOCUMENT) {}
3678 String firstNodeName = parser.getName();
3679 if (!NODE_SUBTYPES.equals(firstNodeName)) {
3680 throw new XmlPullParserException("Xml doesn't start with subtypes");
3681 }
3682 final int depth =parser.getDepth();
3683 String currentImiId = null;
3684 ArrayList<InputMethodSubtype> tempSubtypesArray = null;
3685 while (((type = parser.next()) != XmlPullParser.END_TAG
3686 || parser.getDepth() > depth) && type != XmlPullParser.END_DOCUMENT) {
3687 if (type != XmlPullParser.START_TAG)
3688 continue;
3689 final String nodeName = parser.getName();
3690 if (NODE_IMI.equals(nodeName)) {
3691 currentImiId = parser.getAttributeValue(null, ATTR_ID);
3692 if (TextUtils.isEmpty(currentImiId)) {
3693 Slog.w(TAG, "Invalid imi id found in subtypes.xml");
3694 continue;
3695 }
Yohei Yukawab0377bb2015-08-10 21:06:30 -07003696 tempSubtypesArray = new ArrayList<>();
satoke7c6998e2011-06-03 17:57:59 +09003697 allSubtypes.put(currentImiId, tempSubtypesArray);
3698 } else if (NODE_SUBTYPE.equals(nodeName)) {
3699 if (TextUtils.isEmpty(currentImiId) || tempSubtypesArray == null) {
3700 Slog.w(TAG, "IME uninstalled or not valid.: " + currentImiId);
3701 continue;
3702 }
3703 final int icon = Integer.valueOf(
3704 parser.getAttributeValue(null, ATTR_ICON));
3705 final int label = Integer.valueOf(
3706 parser.getAttributeValue(null, ATTR_LABEL));
3707 final String imeSubtypeLocale =
3708 parser.getAttributeValue(null, ATTR_IME_SUBTYPE_LOCALE);
3709 final String imeSubtypeMode =
3710 parser.getAttributeValue(null, ATTR_IME_SUBTYPE_MODE);
3711 final String imeSubtypeExtraValue =
3712 parser.getAttributeValue(null, ATTR_IME_SUBTYPE_EXTRA_VALUE);
satok4a28bde2011-06-29 21:03:40 +09003713 final boolean isAuxiliary = "1".equals(String.valueOf(
3714 parser.getAttributeValue(null, ATTR_IS_AUXILIARY)));
Yohei Yukawa443c2ba2014-09-10 14:10:30 +09003715 final InputMethodSubtype subtype = new InputMethodSubtypeBuilder()
3716 .setSubtypeNameResId(label)
3717 .setSubtypeIconResId(icon)
3718 .setSubtypeLocale(imeSubtypeLocale)
3719 .setSubtypeMode(imeSubtypeMode)
3720 .setSubtypeExtraValue(imeSubtypeExtraValue)
3721 .setIsAuxiliary(isAuxiliary)
3722 .build();
satoke7c6998e2011-06-03 17:57:59 +09003723 tempSubtypesArray.add(subtype);
3724 }
3725 }
Yohei Yukawa5894b432015-08-11 13:29:24 -07003726 } catch (XmlPullParserException | IOException | NumberFormatException e) {
3727 Slog.w(TAG, "Error reading subtypes", e);
satoke7c6998e2011-06-03 17:57:59 +09003728 return;
satoke7c6998e2011-06-03 17:57:59 +09003729 }
3730 }
3731 }
3732
Yohei Yukawafa6e0a82015-07-23 15:08:59 -07003733 private static final class LocalServiceImpl implements InputMethodManagerInternal {
3734 @NonNull
3735 private final Handler mHandler;
3736
3737 LocalServiceImpl(@NonNull final Handler handler) {
3738 mHandler = handler;
3739 }
3740
3741 @Override
3742 public void setInteractive(boolean interactive) {
3743 // Do everything in handler so as not to block the caller.
3744 mHandler.sendMessage(mHandler.obtainMessage(MSG_SET_INTERACTIVE,
3745 interactive ? 1 : 0, 0));
3746 }
Yohei Yukawaae61f712015-12-09 13:00:10 -08003747
3748 @Override
3749 public void switchInputMethod(boolean forwardDirection) {
3750 // Do everything in handler so as not to block the caller.
3751 mHandler.sendMessage(mHandler.obtainMessage(MSG_SWITCH_IME,
3752 forwardDirection ? 1 : 0, 0));
3753 }
Yohei Yukawafa6e0a82015-07-23 15:08:59 -07003754 }
3755
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003756 @Override
3757 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
3758 if (mContext.checkCallingOrSelfPermission(android.Manifest.permission.DUMP)
3759 != PackageManager.PERMISSION_GRANTED) {
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003760
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003761 pw.println("Permission Denial: can't dump InputMethodManager from from pid="
3762 + Binder.getCallingPid()
3763 + ", uid=" + Binder.getCallingUid());
3764 return;
3765 }
3766
3767 IInputMethod method;
3768 ClientState client;
Yohei Yukawae39d4ed2015-11-19 03:38:49 -08003769 ClientState focusedWindowClient;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003770
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003771 final Printer p = new PrintWriterPrinter(pw);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003772
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003773 synchronized (mMethodMap) {
3774 p.println("Current Input Method Manager state:");
3775 int N = mMethodList.size();
3776 p.println(" Input Methods:");
3777 for (int i=0; i<N; i++) {
3778 InputMethodInfo info = mMethodList.get(i);
3779 p.println(" InputMethod #" + i + ":");
3780 info.dump(p, " ");
3781 }
3782 p.println(" Clients:");
3783 for (ClientState ci : mClients.values()) {
3784 p.println(" Client " + ci + ":");
3785 p.println(" client=" + ci.client);
3786 p.println(" inputContext=" + ci.inputContext);
3787 p.println(" sessionRequested=" + ci.sessionRequested);
3788 p.println(" curSession=" + ci.curSession);
3789 }
The Android Open Source Project10592532009-03-18 17:39:46 -07003790 p.println(" mCurMethodId=" + mCurMethodId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003791 client = mCurClient;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07003792 p.println(" mCurClient=" + client + " mCurSeq=" + mCurSeq);
3793 p.println(" mCurFocusedWindow=" + mCurFocusedWindow);
Yohei Yukawae39d4ed2015-11-19 03:38:49 -08003794 focusedWindowClient = mCurFocusedWindowClient;
3795 p.println(" mCurFocusedWindowClient=" + focusedWindowClient);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003796 p.println(" mCurId=" + mCurId + " mHaveConnect=" + mHaveConnection
3797 + " mBoundToMethod=" + mBoundToMethod);
3798 p.println(" mCurToken=" + mCurToken);
3799 p.println(" mCurIntent=" + mCurIntent);
3800 method = mCurMethod;
3801 p.println(" mCurMethod=" + mCurMethod);
3802 p.println(" mEnabledSession=" + mEnabledSession);
3803 p.println(" mShowRequested=" + mShowRequested
3804 + " mShowExplicitlyRequested=" + mShowExplicitlyRequested
3805 + " mShowForced=" + mShowForced
3806 + " mInputShown=" + mInputShown);
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09003807 p.println(" mCurUserActionNotificationSequenceNumber="
3808 + mCurUserActionNotificationSequenceNumber);
Yohei Yukawafa6e0a82015-07-23 15:08:59 -07003809 p.println(" mSystemReady=" + mSystemReady + " mInteractive=" + mIsInteractive);
Yohei Yukawa81482972015-06-04 00:58:59 -07003810 p.println(" mSettingsObserver=" + mSettingsObserver);
Yohei Yukawad7248862015-06-03 23:56:12 -07003811 p.println(" mSwitchingController:");
3812 mSwitchingController.dump(p);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003813 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003814
Jeff Brownb88102f2010-09-08 11:49:43 -07003815 p.println(" ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003816 if (client != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003817 pw.flush();
3818 try {
3819 client.client.asBinder().dump(fd, args);
3820 } catch (RemoteException e) {
3821 p.println("Input method client dead: " + e);
3822 }
Jeff Brownb88102f2010-09-08 11:49:43 -07003823 } else {
3824 p.println("No input method client.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003825 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003826
Yohei Yukawae39d4ed2015-11-19 03:38:49 -08003827 if (focusedWindowClient != null && client != focusedWindowClient) {
3828 p.println(" ");
3829 p.println("Warning: Current input method client doesn't match the last focused. "
3830 + "window.");
3831 p.println("Dumping input method client in the last focused window just in case.");
3832 p.println(" ");
3833 pw.flush();
3834 try {
3835 focusedWindowClient.client.asBinder().dump(fd, args);
3836 } catch (RemoteException e) {
3837 p.println("Input method client in focused window dead: " + e);
3838 }
3839 }
3840
Jeff Brownb88102f2010-09-08 11:49:43 -07003841 p.println(" ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003842 if (method != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003843 pw.flush();
3844 try {
3845 method.asBinder().dump(fd, args);
3846 } catch (RemoteException e) {
3847 p.println("Input method service dead: " + e);
3848 }
Jeff Brownb88102f2010-09-08 11:49:43 -07003849 } else {
3850 p.println("No input method service.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003851 }
3852 }
3853}