blob: f5d323d2fc7c423f18b4d6f2e83be03baf3aafc2 [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
Yohei Yukawa0f3ad12015-04-06 16:48:24 -070018import android.annotation.NonNull;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -080019import com.android.internal.content.PackageMonitor;
Satoshi Kataokad7443c82013-10-15 17:45:43 +090020import com.android.internal.inputmethod.InputMethodSubtypeSwitchingController;
Satoshi Kataokad787f692013-10-26 04:44:21 +090021import com.android.internal.inputmethod.InputMethodSubtypeSwitchingController.ImeSubtypeListItem;
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +090022import com.android.internal.inputmethod.InputMethodUtils;
23import com.android.internal.inputmethod.InputMethodUtils.InputMethodSettings;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080024import com.android.internal.os.HandlerCaller;
Svetoslav Ganov758143e2012-08-06 16:40:27 -070025import com.android.internal.os.SomeArgs;
satoke7c6998e2011-06-03 17:57:59 +090026import com.android.internal.util.FastXmlSerializer;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080027import com.android.internal.view.IInputContext;
28import com.android.internal.view.IInputMethod;
Michael Wright52a53522013-03-14 10:59:38 -070029import com.android.internal.view.IInputSessionCallback;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080030import com.android.internal.view.IInputMethodClient;
31import com.android.internal.view.IInputMethodManager;
32import com.android.internal.view.IInputMethodSession;
33import com.android.internal.view.InputBindResult;
Adam Lesinskief2ea1f2013-12-05 16:48:06 -080034import com.android.server.statusbar.StatusBarManagerService;
satok01038492012-04-09 21:08:27 +090035import com.android.server.wm.WindowManagerService;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080036
satoke7c6998e2011-06-03 17:57:59 +090037import org.xmlpull.v1.XmlPullParser;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080038import org.xmlpull.v1.XmlPullParserException;
satoke7c6998e2011-06-03 17:57:59 +090039import org.xmlpull.v1.XmlSerializer;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080040
41import android.app.ActivityManagerNative;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +090042import android.app.AppGlobals;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080043import android.app.AlertDialog;
Yohei Yukawae63b5fa2014-09-19 13:14:55 +090044import android.app.AppOpsManager;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +090045import android.app.IUserSwitchObserver;
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;
satok5b927c432012-05-01 20:09:34 +090050import android.content.BroadcastReceiver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080051import android.content.ComponentName;
52import android.content.ContentResolver;
53import android.content.Context;
54import android.content.DialogInterface;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080055import android.content.DialogInterface.OnCancelListener;
Tadashi G. Takaokad130b802014-08-01 14:05:47 +090056import android.content.DialogInterface.OnClickListener;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080057import android.content.Intent;
satoke7c6998e2011-06-03 17:57:59 +090058import android.content.IntentFilter;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080059import android.content.ServiceConnection;
Brandon Ballinger6da35a02009-10-21 00:38:13 -070060import android.content.pm.ApplicationInfo;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +090061import android.content.pm.IPackageManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080062import android.content.pm.PackageManager;
63import android.content.pm.ResolveInfo;
64import android.content.pm.ServiceInfo;
Amith Yamasani734983f2014-03-04 16:48:05 -080065import android.content.pm.UserInfo;
Amith Yamasanie861ec12010-03-24 21:39:27 -070066import android.content.res.Configuration;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080067import android.content.res.Resources;
68import android.content.res.TypedArray;
69import android.database.ContentObserver;
Alan Viverette505e3ab2014-11-24 15:22:11 -080070import android.graphics.drawable.Drawable;
Joe Onorato857fd9b2011-01-27 15:08:35 -080071import android.inputmethodservice.InputMethodService;
Michael Wright7b5a96b2014-08-09 19:28:42 -070072import android.net.Uri;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080073import android.os.Binder;
satoke7c6998e2011-06-03 17:57:59 +090074import android.os.Environment;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080075import android.os.Handler;
76import android.os.IBinder;
77import android.os.IInterface;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +090078import android.os.IRemoteCallback;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080079import android.os.Message;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +090080import android.os.Process;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080081import android.os.Parcel;
82import android.os.RemoteException;
The Android Open Source Project4df24232009-03-05 14:34:35 -080083import android.os.ResultReceiver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080084import android.os.ServiceManager;
85import android.os.SystemClock;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +090086import android.os.UserHandle;
Amith Yamasani734983f2014-03-04 16:48:05 -080087import android.os.UserManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080088import android.provider.Settings;
89import android.text.TextUtils;
Christopher Tate7b9a28c2015-03-18 13:06:16 -070090import android.text.TextUtils.SimpleStringSplitter;
satokf9f01002011-05-19 21:31:50 +090091import android.text.style.SuggestionSpan;
Christopher Tate7b9a28c2015-03-18 13:06:16 -070092import android.util.ArrayMap;
93import android.util.ArraySet;
Dianne Hackborn39606a02012-07-31 17:54:35 -070094import android.util.AtomicFile;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080095import android.util.EventLog;
satokf9f01002011-05-19 21:31:50 +090096import android.util.LruCache;
satokab751aa2010-09-14 19:17:36 +090097import android.util.Pair;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080098import android.util.PrintWriterPrinter;
99import android.util.Printer;
satoke7c6998e2011-06-03 17:57:59 +0900100import android.util.Slog;
101import android.util.Xml;
Tadashi G. Takaokad130b802014-08-01 14:05:47 +0900102import android.view.ContextThemeWrapper;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800103import android.view.IWindowManager;
Jeff Brownc28867a2013-03-26 15:42:39 -0700104import android.view.InputChannel;
Ken Wakasa05dbb652011-08-22 15:22:43 +0900105import android.view.LayoutInflater;
106import android.view.View;
107import android.view.ViewGroup;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800108import android.view.WindowManager;
satokab751aa2010-09-14 19:17:36 +0900109import android.view.inputmethod.EditorInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800110import android.view.inputmethod.InputBinding;
111import android.view.inputmethod.InputMethod;
112import android.view.inputmethod.InputMethodInfo;
113import android.view.inputmethod.InputMethodManager;
satokab751aa2010-09-14 19:17:36 +0900114import android.view.inputmethod.InputMethodSubtype;
Yohei Yukawa443c2ba2014-09-10 14:10:30 +0900115import android.view.inputmethod.InputMethodSubtype.InputMethodSubtypeBuilder;
Ken Wakasa05dbb652011-08-22 15:22:43 +0900116import android.widget.ArrayAdapter;
satok01038492012-04-09 21:08:27 +0900117import android.widget.CompoundButton;
118import android.widget.CompoundButton.OnCheckedChangeListener;
Ken Wakasa05dbb652011-08-22 15:22:43 +0900119import android.widget.RadioButton;
satok01038492012-04-09 21:08:27 +0900120import android.widget.Switch;
Ken Wakasa05dbb652011-08-22 15:22:43 +0900121import android.widget.TextView;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800122
satoke7c6998e2011-06-03 17:57:59 +0900123import java.io.File;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800124import java.io.FileDescriptor;
satoke7c6998e2011-06-03 17:57:59 +0900125import java.io.FileInputStream;
126import java.io.FileOutputStream;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800127import java.io.IOException;
128import java.io.PrintWriter;
129import java.util.ArrayList;
satok688bd472012-02-09 20:09:17 +0900130import java.util.Collections;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800131import java.util.HashMap;
Christopher Tate7b9a28c2015-03-18 13:06:16 -0700132import java.util.HashSet;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800133import java.util.List;
satok5b927c432012-05-01 20:09:34 +0900134import java.util.Locale;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800135
136/**
137 * This class provides a system service that manages input methods.
138 */
139public class InputMethodManagerService extends IInputMethodManager.Stub
140 implements ServiceConnection, Handler.Callback {
141 static final boolean DEBUG = false;
Christopher Tate7b9a28c2015-03-18 13:06:16 -0700142 static final boolean DEBUG_RESTORE = DEBUG || false;
Jeff Brown6ec6f792012-04-17 16:52:41 -0700143 static final String TAG = "InputMethodManagerService";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800144
Christopher Tate7b9a28c2015-03-18 13:06:16 -0700145 private static final char INPUT_METHOD_SEPARATOR = ':';
146 private static final char INPUT_METHOD_SUBTYPE_SEPARATOR = ';';
147
Seigo Nonakad4474cb2015-05-04 16:53:24 -0700148 static final int MSG_SHOW_IM_SUBTYPE_PICKER = 1;
149 static final int MSG_SHOW_IM_SUBTYPE_ENABLER = 2;
150 static final int MSG_SHOW_IM_CONFIG = 3;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800151
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800152 static final int MSG_UNBIND_INPUT = 1000;
153 static final int MSG_BIND_INPUT = 1010;
154 static final int MSG_SHOW_SOFT_INPUT = 1020;
155 static final int MSG_HIDE_SOFT_INPUT = 1030;
156 static final int MSG_ATTACH_TOKEN = 1040;
157 static final int MSG_CREATE_SESSION = 1050;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800158
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800159 static final int MSG_START_INPUT = 2000;
160 static final int MSG_RESTART_INPUT = 2010;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800161
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800162 static final int MSG_UNBIND_METHOD = 3000;
163 static final int MSG_BIND_METHOD = 3010;
Dianne Hackborna6e41342012-05-22 16:30:34 -0700164 static final int MSG_SET_ACTIVE = 3020;
Yohei Yukawa3d1e8122014-06-06 19:12:47 +0900165 static final int MSG_SET_USER_ACTION_NOTIFICATION_SEQUENCE_NUMBER = 3040;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800166
satok01038492012-04-09 21:08:27 +0900167 static final int MSG_HARD_KEYBOARD_SWITCH_CHANGED = 4000;
168
Satoshi Kataokabcacc322013-10-21 17:57:27 -0700169 static final long TIME_TO_RECONNECT = 3 * 1000;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800170
satokf9f01002011-05-19 21:31:50 +0900171 static final int SECURE_SUGGESTION_SPANS_MAX_SIZE = 20;
172
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +0900173 private static final int NOT_A_SUBTYPE_ID = InputMethodUtils.NOT_A_SUBTYPE_ID;
satokb6359412011-06-28 17:47:41 +0900174 private static final String TAG_TRY_SUPPRESSING_IME_SWITCHER = "TrySuppressingImeSwitcher";
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +0900175
satok4e4569d2010-11-19 18:45:53 +0900176
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800177 final Context mContext;
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -0800178 final Resources mRes;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800179 final Handler mHandler;
satokd87c2592010-09-29 11:52:06 +0900180 final InputMethodSettings mSettings;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800181 final SettingsObserver mSettingsObserver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800182 final IWindowManager mIWindowManager;
183 final HandlerCaller mCaller;
Dianne Hackborn119bbc32013-03-22 17:27:25 -0700184 final boolean mHasFeature;
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +0900185 private InputMethodFileManager mFileManager;
satok01038492012-04-09 21:08:27 +0900186 private final HardKeyboardListener mHardKeyboardListener;
187 private final WindowManagerService mWindowManagerService;
Yohei Yukawae63b5fa2014-09-19 13:14:55 +0900188 private final AppOpsManager mAppOpsManager;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800189
Yohei Yukawa3d1e8122014-06-06 19:12:47 +0900190 final InputBindResult mNoBinding = new InputBindResult(null, null, null, -1, -1);
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800191
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800192 // All known input methods. mMethodMap also serves as the global
193 // lock for this class.
satokd87c2592010-09-29 11:52:06 +0900194 final ArrayList<InputMethodInfo> mMethodList = new ArrayList<InputMethodInfo>();
195 final HashMap<String, InputMethodInfo> mMethodMap = new HashMap<String, InputMethodInfo>();
satokf9f01002011-05-19 21:31:50 +0900196 private final LruCache<SuggestionSpan, InputMethodInfo> mSecureSuggestionSpans =
197 new LruCache<SuggestionSpan, InputMethodInfo>(SECURE_SUGGESTION_SPANS_MAX_SIZE);
Satoshi Kataokad787f692013-10-26 04:44:21 +0900198 private final InputMethodSubtypeSwitchingController mSwitchingController;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800199
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700200 // Used to bring IME service up to visible adjustment while it is being shown.
201 final ServiceConnection mVisibleConnection = new ServiceConnection() {
202 @Override public void onServiceConnected(ComponentName name, IBinder service) {
203 }
204
205 @Override public void onServiceDisconnected(ComponentName name) {
206 }
207 };
208 boolean mVisibleBound = false;
209
satok7cfc0ed2011-06-20 21:29:36 +0900210 // Ongoing notification
Dianne Hackborn661cd522011-08-22 00:26:20 -0700211 private NotificationManager mNotificationManager;
212 private KeyguardManager mKeyguardManager;
213 private StatusBarManagerService mStatusBar;
214 private Notification mImeSwitcherNotification;
215 private PendingIntent mImeSwitchPendingIntent;
satokb858c732011-07-22 19:54:34 +0900216 private boolean mShowOngoingImeSwitcherForPhones;
satok7cfc0ed2011-06-20 21:29:36 +0900217 private boolean mNotificationShown;
satok0a1bcf42012-05-16 19:26:31 +0900218 private final boolean mImeSelectedOnBoot;
satok7cfc0ed2011-06-20 21:29:36 +0900219
Tadashi G. Takaoka8c6d4772014-08-05 15:29:17 +0900220 static class SessionState {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800221 final ClientState client;
222 final IInputMethod method;
Jeff Brownc28867a2013-03-26 15:42:39 -0700223
224 IInputMethodSession session;
225 InputChannel channel;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800226
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800227 @Override
228 public String toString() {
229 return "SessionState{uid " + client.uid + " pid " + client.pid
230 + " method " + Integer.toHexString(
231 System.identityHashCode(method))
232 + " session " + Integer.toHexString(
233 System.identityHashCode(session))
Jeff Brownc28867a2013-03-26 15:42:39 -0700234 + " channel " + channel
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800235 + "}";
236 }
237
238 SessionState(ClientState _client, IInputMethod _method,
Jeff Brownc28867a2013-03-26 15:42:39 -0700239 IInputMethodSession _session, InputChannel _channel) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800240 client = _client;
241 method = _method;
242 session = _session;
Jeff Brownc28867a2013-03-26 15:42:39 -0700243 channel = _channel;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800244 }
245 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800246
Jeff Brownc28867a2013-03-26 15:42:39 -0700247 static final class ClientState {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800248 final IInputMethodClient client;
249 final IInputContext inputContext;
250 final int uid;
251 final int pid;
252 final InputBinding binding;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800253
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800254 boolean sessionRequested;
255 SessionState curSession;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800256
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800257 @Override
258 public String toString() {
259 return "ClientState{" + Integer.toHexString(
260 System.identityHashCode(this)) + " uid " + uid
261 + " pid " + pid + "}";
262 }
263
264 ClientState(IInputMethodClient _client, IInputContext _inputContext,
265 int _uid, int _pid) {
266 client = _client;
267 inputContext = _inputContext;
268 uid = _uid;
269 pid = _pid;
270 binding = new InputBinding(null, inputContext.asBinder(), uid, pid);
271 }
272 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800273
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800274 final HashMap<IBinder, ClientState> mClients
275 = new HashMap<IBinder, ClientState>();
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800276
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800277 /**
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700278 * Set once the system is ready to run third party code.
279 */
280 boolean mSystemReady;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800281
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700282 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800283 * Id of the currently selected input method.
284 */
285 String mCurMethodId;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800286
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800287 /**
288 * The current binding sequence number, incremented every time there is
289 * a new bind performed.
290 */
291 int mCurSeq;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800292
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800293 /**
294 * The client that is currently bound to an input method.
295 */
296 ClientState mCurClient;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800297
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800298 /**
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700299 * The last window token that gained focus.
300 */
301 IBinder mCurFocusedWindow;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800302
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700303 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800304 * The input context last provided by the current client.
305 */
306 IInputContext mCurInputContext;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800307
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800308 /**
309 * The attributes last provided by the current client.
310 */
311 EditorInfo mCurAttribute;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800312
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800313 /**
314 * The input method ID of the input method service that we are currently
315 * connected to or in the process of connecting to.
316 */
317 String mCurId;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800318
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800319 /**
satokab751aa2010-09-14 19:17:36 +0900320 * The current subtype of the current input method.
321 */
322 private InputMethodSubtype mCurrentSubtype;
323
satok4e4569d2010-11-19 18:45:53 +0900324 // This list contains the pairs of InputMethodInfo and InputMethodSubtype.
satokf3db1af2010-11-23 13:34:33 +0900325 private final HashMap<InputMethodInfo, ArrayList<InputMethodSubtype>>
326 mShortcutInputMethodsAndSubtypes =
327 new HashMap<InputMethodInfo, ArrayList<InputMethodSubtype>>();
satokab751aa2010-09-14 19:17:36 +0900328
John Spurlocke0980502013-10-25 11:59:29 -0400329 // Was the keyguard locked when this client became current?
330 private boolean mCurClientInKeyguard;
331
satokab751aa2010-09-14 19:17:36 +0900332 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800333 * Set to true if our ServiceConnection is currently actively bound to
334 * a service (whether or not we have gotten its IBinder back yet).
335 */
336 boolean mHaveConnection;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800337
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800338 /**
339 * Set if the client has asked for the input method to be shown.
340 */
341 boolean mShowRequested;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800342
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800343 /**
344 * Set if we were explicitly told to show the input method.
345 */
346 boolean mShowExplicitlyRequested;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800347
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800348 /**
349 * Set if we were forced to be shown.
350 */
351 boolean mShowForced;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800352
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800353 /**
354 * Set if we last told the input method to show itself.
355 */
356 boolean mInputShown;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800357
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800358 /**
359 * The Intent used to connect to the current input method.
360 */
361 Intent mCurIntent;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800362
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800363 /**
364 * The token we have made for the currently active input method, to
365 * identify it in the future.
366 */
367 IBinder mCurToken;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800368
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800369 /**
370 * If non-null, this is the input method service we are currently connected
371 * to.
372 */
373 IInputMethod mCurMethod;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800374
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800375 /**
376 * Time that we last initiated a bind to the input method, to determine
377 * if we should try to disconnect and reconnect to it.
378 */
379 long mLastBindTime;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800380
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800381 /**
382 * Have we called mCurMethod.bindInput()?
383 */
384 boolean mBoundToMethod;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800385
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800386 /**
387 * Currently enabled session. Only touched by service thread, not
388 * protected by a lock.
389 */
390 SessionState mEnabledSession;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800391
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800392 /**
393 * True if the screen is on. The value is true initially.
394 */
395 boolean mScreenOn = true;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800396
Yohei Yukawa3d1e8122014-06-06 19:12:47 +0900397 int mCurUserActionNotificationSequenceNumber = 0;
398
Joe Onorato857fd9b2011-01-27 15:08:35 -0800399 int mBackDisposition = InputMethodService.BACK_DISPOSITION_DEFAULT;
400 int mImeWindowVis;
401
Ken Wakasa05dbb652011-08-22 15:22:43 +0900402 private AlertDialog.Builder mDialogBuilder;
403 private AlertDialog mSwitchingDialog;
satok01038492012-04-09 21:08:27 +0900404 private View mSwitchingDialogTitleView;
Ken Wakasa05dbb652011-08-22 15:22:43 +0900405 private InputMethodInfo[] mIms;
406 private int[] mSubtypeIds;
satok5b927c432012-05-01 20:09:34 +0900407 private Locale mLastSystemLocale;
Michael Wright7b5a96b2014-08-09 19:28:42 -0700408 private boolean mShowImeWithHardKeyboard;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900409 private final MyPackageMonitor mMyPackageMonitor = new MyPackageMonitor();
410 private final IPackageManager mIPackageManager;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800411
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800412 class SettingsObserver extends ContentObserver {
Dianne Hackbornfd7aded2013-01-22 17:10:23 -0800413 String mLastEnabled = "";
414
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800415 SettingsObserver(Handler handler) {
416 super(handler);
417 ContentResolver resolver = mContext.getContentResolver();
418 resolver.registerContentObserver(Settings.Secure.getUriFor(
419 Settings.Secure.DEFAULT_INPUT_METHOD), false, this);
satokab751aa2010-09-14 19:17:36 +0900420 resolver.registerContentObserver(Settings.Secure.getUriFor(
satokb6109bb2011-02-03 22:24:54 +0900421 Settings.Secure.ENABLED_INPUT_METHODS), false, this);
422 resolver.registerContentObserver(Settings.Secure.getUriFor(
satokab751aa2010-09-14 19:17:36 +0900423 Settings.Secure.SELECTED_INPUT_METHOD_SUBTYPE), false, this);
Michael Wright7b5a96b2014-08-09 19:28:42 -0700424 resolver.registerContentObserver(Settings.Secure.getUriFor(
425 Settings.Secure.SHOW_IME_WITH_HARD_KEYBOARD), false, this);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800426 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800427
Michael Wright7b5a96b2014-08-09 19:28:42 -0700428 @Override public void onChange(boolean selfChange, Uri uri) {
429 final Uri showImeUri =
430 Settings.Secure.getUriFor(Settings.Secure.SHOW_IME_WITH_HARD_KEYBOARD);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800431 synchronized (mMethodMap) {
Michael Wright7b5a96b2014-08-09 19:28:42 -0700432 if (showImeUri.equals(uri)) {
433 updateKeyboardFromSettingsLocked();
434 } else {
435 boolean enabledChanged = false;
436 String newEnabled = mSettings.getEnabledInputMethodsStr();
437 if (!mLastEnabled.equals(newEnabled)) {
438 mLastEnabled = newEnabled;
439 enabledChanged = true;
440 }
441 updateInputMethodsFromSettingsLocked(enabledChanged);
Dianne Hackbornfd7aded2013-01-22 17:10:23 -0800442 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800443 }
444 }
445 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800446
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900447 class ImmsBroadcastReceiver extends android.content.BroadcastReceiver {
448 private void updateActive() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800449 // Inform the current client of the change in active status
Dianne Hackborna6e41342012-05-22 16:30:34 -0700450 if (mCurClient != null && mCurClient.client != null) {
451 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
452 MSG_SET_ACTIVE, mScreenOn ? 1 : 0, mCurClient));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800453 }
454 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900455
456 @Override
457 public void onReceive(Context context, Intent intent) {
458 final String action = intent.getAction();
459 if (Intent.ACTION_SCREEN_ON.equals(action)) {
460 mScreenOn = true;
461 refreshImeWindowVisibilityLocked();
462 updateActive();
463 return;
464 } else if (Intent.ACTION_SCREEN_OFF.equals(action)) {
465 mScreenOn = false;
466 setImeWindowVisibilityStatusHiddenLocked();
467 updateActive();
468 return;
469 } else if (Intent.ACTION_CLOSE_SYSTEM_DIALOGS.equals(action)) {
470 hideInputMethodMenu();
471 // No need to updateActive
472 return;
Amith Yamasani734983f2014-03-04 16:48:05 -0800473 } else if (Intent.ACTION_USER_ADDED.equals(action)
474 || Intent.ACTION_USER_REMOVED.equals(action)) {
Kenny Guy2a764942014-04-02 13:29:20 +0100475 updateCurrentProfileIds();
Amith Yamasani734983f2014-03-04 16:48:05 -0800476 return;
Christopher Tate7b9a28c2015-03-18 13:06:16 -0700477 } else if (Intent.ACTION_SETTING_RESTORED.equals(action)) {
478 final String name = intent.getStringExtra(Intent.EXTRA_SETTING_NAME);
479 if (Settings.Secure.ENABLED_INPUT_METHODS.equals(name)) {
480 final String prevValue = intent.getStringExtra(
481 Intent.EXTRA_SETTING_PREVIOUS_VALUE);
482 final String newValue = intent.getStringExtra(
483 Intent.EXTRA_SETTING_NEW_VALUE);
484 restoreEnabledInputMethods(mContext, prevValue, newValue);
485 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900486 } else {
487 Slog.w(TAG, "Unexpected intent " + intent);
488 }
489 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800490 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800491
Christopher Tate7b9a28c2015-03-18 13:06:16 -0700492 // Apply the results of a restore operation to the set of enabled IMEs. Note that this
493 // does not attempt to validate on the fly with any installed device policy, so must only
494 // be run in the context of initial device setup.
495 //
496 // TODO: Move this method to InputMethodUtils with adding unit tests.
497 static void restoreEnabledInputMethods(Context context, String prevValue, String newValue) {
498 if (DEBUG_RESTORE) {
499 Slog.i(TAG, "Restoring enabled input methods:");
500 Slog.i(TAG, "prev=" + prevValue);
501 Slog.i(TAG, " new=" + newValue);
502 }
503 // 'new' is the just-restored state, 'prev' is what was in settings prior to the restore
504 ArrayMap<String, ArraySet<String>> prevMap = parseInputMethodsAndSubtypesString(prevValue);
505 ArrayMap<String, ArraySet<String>> newMap = parseInputMethodsAndSubtypesString(newValue);
506
507 // Merge the restored ime+subtype enabled states into the live state
508 for (ArrayMap.Entry<String, ArraySet<String>> entry : newMap.entrySet()) {
509 final String imeId = entry.getKey();
510 ArraySet<String> prevSubtypes = prevMap.get(imeId);
511 if (prevSubtypes == null) {
512 prevSubtypes = new ArraySet<String>(2);
513 prevMap.put(imeId, prevSubtypes);
514 }
515 prevSubtypes.addAll(entry.getValue());
516 }
517
518 final String mergedImesAndSubtypesString = buildInputMethodsAndSubtypesString(prevMap);
519 if (DEBUG_RESTORE) {
520 Slog.i(TAG, "Merged IME string:");
521 Slog.i(TAG, " " + mergedImesAndSubtypesString);
522 }
523 Settings.Secure.putString(context.getContentResolver(),
524 Settings.Secure.ENABLED_INPUT_METHODS, mergedImesAndSubtypesString);
525 }
526
527 // TODO: Move this method to InputMethodUtils with adding unit tests.
528 static String buildInputMethodsAndSubtypesString(ArrayMap<String, ArraySet<String>> map) {
529 // we want to use the canonical InputMethodSettings implementation,
530 // so we convert data structures first.
531 List<Pair<String, ArrayList<String>>> imeMap =
532 new ArrayList<Pair<String, ArrayList<String>>>(4);
533 for (ArrayMap.Entry<String, ArraySet<String>> entry : map.entrySet()) {
534 final String imeName = entry.getKey();
535 final ArraySet<String> subtypeSet = entry.getValue();
536 final ArrayList<String> subtypes = new ArrayList<String>(2);
537 if (subtypeSet != null) {
538 subtypes.addAll(subtypeSet);
539 }
540 imeMap.add(new Pair<String, ArrayList<String>>(imeName, subtypes));
541 }
542 return InputMethodSettings.buildInputMethodsSettingString(imeMap);
543 }
544
545 // TODO: Move this method to InputMethodUtils with adding unit tests.
546 static ArrayMap<String, ArraySet<String>> parseInputMethodsAndSubtypesString(
547 final String inputMethodsAndSubtypesString) {
548 final ArrayMap<String, ArraySet<String>> imeMap =
549 new ArrayMap<String, ArraySet<String>>();
550 if (TextUtils.isEmpty(inputMethodsAndSubtypesString)) {
551 return imeMap;
552 }
553
554 final SimpleStringSplitter typeSplitter =
555 new SimpleStringSplitter(INPUT_METHOD_SEPARATOR);
556 final SimpleStringSplitter subtypeSplitter =
557 new SimpleStringSplitter(INPUT_METHOD_SUBTYPE_SEPARATOR);
558 List<Pair<String, ArrayList<String>>> allImeSettings =
559 InputMethodSettings.buildInputMethodsAndSubtypeList(inputMethodsAndSubtypesString,
560 typeSplitter,
561 subtypeSplitter);
562 for (Pair<String, ArrayList<String>> ime : allImeSettings) {
563 ArraySet<String> subtypes = new ArraySet<String>();
564 if (ime.second != null) {
565 subtypes.addAll(ime.second);
566 }
567 imeMap.put(ime.first, subtypes);
568 }
569 return imeMap;
570 }
571
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800572 class MyPackageMonitor extends PackageMonitor {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900573 private boolean isChangingPackagesOfCurrentUser() {
574 final int userId = getChangingUserId();
575 final boolean retval = userId == mSettings.getCurrentUserId();
576 if (DEBUG) {
satok81f8b7c2012-12-04 20:42:56 +0900577 if (!retval) {
578 Slog.d(TAG, "--- ignore this call back from a background user: " + userId);
579 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900580 }
581 return retval;
582 }
583
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800584 @Override
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800585 public boolean onHandleForceStop(Intent intent, String[] packages, int uid, boolean doit) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900586 if (!isChangingPackagesOfCurrentUser()) {
587 return false;
588 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800589 synchronized (mMethodMap) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900590 String curInputMethodId = mSettings.getSelectedInputMethod();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800591 final int N = mMethodList.size();
592 if (curInputMethodId != null) {
593 for (int i=0; i<N; i++) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800594 InputMethodInfo imi = mMethodList.get(i);
595 if (imi.getId().equals(curInputMethodId)) {
596 for (String pkg : packages) {
597 if (imi.getPackageName().equals(pkg)) {
598 if (!doit) {
599 return true;
600 }
satok723a27e2010-11-11 14:58:11 +0900601 resetSelectedInputMethodAndSubtypeLocked("");
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800602 chooseNewDefaultIMELocked();
603 return true;
604 }
605 }
606 }
607 }
608 }
609 }
610 return false;
611 }
612
613 @Override
614 public void onSomePackagesChanged() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900615 if (!isChangingPackagesOfCurrentUser()) {
616 return;
617 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800618 synchronized (mMethodMap) {
619 InputMethodInfo curIm = null;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900620 String curInputMethodId = mSettings.getSelectedInputMethod();
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800621 final int N = mMethodList.size();
622 if (curInputMethodId != null) {
623 for (int i=0; i<N; i++) {
624 InputMethodInfo imi = mMethodList.get(i);
satoke7c6998e2011-06-03 17:57:59 +0900625 final String imiId = imi.getId();
626 if (imiId.equals(curInputMethodId)) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800627 curIm = imi;
628 }
satoke7c6998e2011-06-03 17:57:59 +0900629
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800630 int change = isPackageDisappearing(imi.getPackageName());
satoke7c6998e2011-06-03 17:57:59 +0900631 if (isPackageModified(imi.getPackageName())) {
632 mFileManager.deleteAllInputMethodSubtypes(imiId);
633 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800634 if (change == PACKAGE_TEMPORARY_CHANGE
635 || change == PACKAGE_PERMANENT_CHANGE) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800636 Slog.i(TAG, "Input method uninstalled, disabling: "
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800637 + imi.getComponent());
638 setInputMethodEnabledLocked(imi.getId(), false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800639 }
640 }
641 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800642
Satoshi Kataokaf1367b72013-01-25 17:20:12 +0900643 buildInputMethodListLocked(
644 mMethodList, mMethodMap, false /* resetDefaultEnabledIme */);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800645
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800646 boolean changed = false;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800647
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800648 if (curIm != null) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800649 int change = isPackageDisappearing(curIm.getPackageName());
650 if (change == PACKAGE_TEMPORARY_CHANGE
651 || change == PACKAGE_PERMANENT_CHANGE) {
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800652 ServiceInfo si = null;
653 try {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900654 si = mIPackageManager.getServiceInfo(
655 curIm.getComponent(), 0, mSettings.getCurrentUserId());
656 } catch (RemoteException ex) {
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800657 }
658 if (si == null) {
659 // Uh oh, current input method is no longer around!
660 // Pick another one...
Joe Onorato8a9b2202010-02-26 18:56:32 -0800661 Slog.i(TAG, "Current input method removed: " + curInputMethodId);
satok15452a42011-10-28 17:58:28 +0900662 setImeWindowVisibilityStatusHiddenLocked();
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800663 if (!chooseNewDefaultIMELocked()) {
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800664 changed = true;
665 curIm = null;
Joe Onorato8a9b2202010-02-26 18:56:32 -0800666 Slog.i(TAG, "Unsetting current input method");
satok723a27e2010-11-11 14:58:11 +0900667 resetSelectedInputMethodAndSubtypeLocked("");
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800668 }
669 }
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800670 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800671 }
satokab751aa2010-09-14 19:17:36 +0900672
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800673 if (curIm == null) {
674 // We currently don't have a default input method... is
675 // one now available?
676 changed = chooseNewDefaultIMELocked();
677 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800678
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800679 if (changed) {
Dianne Hackbornfd7aded2013-01-22 17:10:23 -0800680 updateFromSettingsLocked(false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800681 }
682 }
683 }
684 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800685
Jeff Brownc28867a2013-03-26 15:42:39 -0700686 private static final class MethodCallback extends IInputSessionCallback.Stub {
Jean Chalarde0d32a62011-10-20 20:36:07 +0900687 private final InputMethodManagerService mParentIMMS;
Jeff Brownc28867a2013-03-26 15:42:39 -0700688 private final IInputMethod mMethod;
689 private final InputChannel mChannel;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800690
Jeff Brownc28867a2013-03-26 15:42:39 -0700691 MethodCallback(InputMethodManagerService imms, IInputMethod method,
692 InputChannel channel) {
Jean Chalarde0d32a62011-10-20 20:36:07 +0900693 mParentIMMS = imms;
Jeff Brownc28867a2013-03-26 15:42:39 -0700694 mMethod = method;
695 mChannel = channel;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800696 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800697
satoke7c6998e2011-06-03 17:57:59 +0900698 @Override
Jeff Brownc28867a2013-03-26 15:42:39 -0700699 public void sessionCreated(IInputMethodSession session) {
Dianne Hackborn6b6b3fd2014-03-24 11:27:18 -0700700 long ident = Binder.clearCallingIdentity();
701 try {
702 mParentIMMS.onSessionCreated(mMethod, session, mChannel);
703 } finally {
704 Binder.restoreCallingIdentity(ident);
705 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800706 }
707 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800708
satok01038492012-04-09 21:08:27 +0900709 private class HardKeyboardListener
710 implements WindowManagerService.OnHardKeyboardStatusChangeListener {
711 @Override
Michael Wright7b5a96b2014-08-09 19:28:42 -0700712 public void onHardKeyboardStatusChange(boolean available) {
713 mHandler.sendMessage(mHandler.obtainMessage(MSG_HARD_KEYBOARD_SWITCH_CHANGED,
714 available ? 1 : 0));
satok01038492012-04-09 21:08:27 +0900715 }
716
Michael Wright7b5a96b2014-08-09 19:28:42 -0700717 public void handleHardKeyboardStatusChange(boolean available) {
satok01038492012-04-09 21:08:27 +0900718 if (DEBUG) {
Michael Wright7b5a96b2014-08-09 19:28:42 -0700719 Slog.w(TAG, "HardKeyboardStatusChanged: available=" + available);
satok01038492012-04-09 21:08:27 +0900720 }
721 synchronized(mMethodMap) {
722 if (mSwitchingDialog != null && mSwitchingDialogTitleView != null
723 && mSwitchingDialog.isShowing()) {
724 mSwitchingDialogTitleView.findViewById(
725 com.android.internal.R.id.hard_keyboard_section).setVisibility(
726 available ? View.VISIBLE : View.GONE);
727 }
728 }
729 }
730 }
731
732 public InputMethodManagerService(Context context, WindowManagerService windowManager) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900733 mIPackageManager = AppGlobals.getPackageManager();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800734 mContext = context;
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -0800735 mRes = context.getResources();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800736 mHandler = new Handler(this);
737 mIWindowManager = IWindowManager.Stub.asInterface(
738 ServiceManager.getService(Context.WINDOW_SERVICE));
Mita Yuned218c72012-12-06 17:18:25 -0800739 mCaller = new HandlerCaller(context, null, new HandlerCaller.Callback() {
satoke7c6998e2011-06-03 17:57:59 +0900740 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800741 public void executeMessage(Message msg) {
742 handleMessage(msg);
743 }
Mita Yuned218c72012-12-06 17:18:25 -0800744 }, true /*asyncHandler*/);
satok01038492012-04-09 21:08:27 +0900745 mWindowManagerService = windowManager;
Yohei Yukawae63b5fa2014-09-19 13:14:55 +0900746 mAppOpsManager = (AppOpsManager) mContext.getSystemService(Context.APP_OPS_SERVICE);
satok01038492012-04-09 21:08:27 +0900747 mHardKeyboardListener = new HardKeyboardListener();
Dianne Hackborn119bbc32013-03-22 17:27:25 -0700748 mHasFeature = context.getPackageManager().hasSystemFeature(
749 PackageManager.FEATURE_INPUT_METHODS);
satok7cfc0ed2011-06-20 21:29:36 +0900750
satok7cfc0ed2011-06-20 21:29:36 +0900751 mImeSwitcherNotification = new Notification();
752 mImeSwitcherNotification.icon = com.android.internal.R.drawable.ic_notification_ime_default;
753 mImeSwitcherNotification.when = 0;
754 mImeSwitcherNotification.flags = Notification.FLAG_ONGOING_EVENT;
755 mImeSwitcherNotification.tickerText = null;
756 mImeSwitcherNotification.defaults = 0; // please be quiet
757 mImeSwitcherNotification.sound = null;
758 mImeSwitcherNotification.vibrate = null;
Daniel Sandler590d5152012-06-14 16:10:13 -0400759
760 // Tag this notification specially so SystemUI knows it's important
John Spurlockfd7f1e02014-03-18 16:41:57 -0400761 mImeSwitcherNotification.extras.putBoolean(Notification.EXTRA_ALLOW_DURING_SETUP, true);
762 mImeSwitcherNotification.category = Notification.CATEGORY_SYSTEM;
Daniel Sandler590d5152012-06-14 16:10:13 -0400763
satok7cfc0ed2011-06-20 21:29:36 +0900764 Intent intent = new Intent(Settings.ACTION_SHOW_INPUT_METHOD_PICKER);
satok683e2382011-07-12 08:28:52 +0900765 mImeSwitchPendingIntent = PendingIntent.getBroadcast(mContext, 0, intent, 0);
satokb858c732011-07-22 19:54:34 +0900766
767 mShowOngoingImeSwitcherForPhones = false;
satok7cfc0ed2011-06-20 21:29:36 +0900768
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900769 final IntentFilter broadcastFilter = new IntentFilter();
770 broadcastFilter.addAction(Intent.ACTION_SCREEN_ON);
771 broadcastFilter.addAction(Intent.ACTION_SCREEN_OFF);
772 broadcastFilter.addAction(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
Amith Yamasani734983f2014-03-04 16:48:05 -0800773 broadcastFilter.addAction(Intent.ACTION_USER_ADDED);
774 broadcastFilter.addAction(Intent.ACTION_USER_REMOVED);
Christopher Tate7b9a28c2015-03-18 13:06:16 -0700775 broadcastFilter.addAction(Intent.ACTION_SETTING_RESTORED);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900776 mContext.registerReceiver(new ImmsBroadcastReceiver(), broadcastFilter);
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800777
satok7cfc0ed2011-06-20 21:29:36 +0900778 mNotificationShown = false;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900779 int userId = 0;
780 try {
781 ActivityManagerNative.getDefault().registerUserSwitchObserver(
782 new IUserSwitchObserver.Stub() {
783 @Override
784 public void onUserSwitching(int newUserId, IRemoteCallback reply) {
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +0900785 synchronized(mMethodMap) {
786 switchUserLocked(newUserId);
787 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900788 if (reply != null) {
789 try {
790 reply.sendResult(null);
791 } catch (RemoteException e) {
792 }
793 }
794 }
795
796 @Override
797 public void onUserSwitchComplete(int newUserId) throws RemoteException {
798 }
Kenny Guy42979622015-04-13 18:03:05 +0000799
800 @Override
801 public void onForegroundProfileSwitch(int newProfileId) {
802 // Ignore.
803 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900804 });
805 userId = ActivityManagerNative.getDefault().getCurrentUser().id;
806 } catch (RemoteException e) {
807 Slog.w(TAG, "Couldn't get current user ID; guessing it's 0", e);
808 }
satok81f8b7c2012-12-04 20:42:56 +0900809 mMyPackageMonitor.register(mContext, null, UserHandle.ALL, true);
satok913a8922010-08-26 21:53:41 +0900810
satokd87c2592010-09-29 11:52:06 +0900811 // mSettings should be created before buildInputMethodListLocked
satokdf31ae62011-01-15 06:19:44 +0900812 mSettings = new InputMethodSettings(
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900813 mRes, context.getContentResolver(), mMethodMap, mMethodList, userId);
Kenny Guy2a764942014-04-02 13:29:20 +0100814 updateCurrentProfileIds();
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +0900815 mFileManager = new InputMethodFileManager(mMethodMap, userId);
Yohei Yukawa5a647b692014-05-22 12:49:00 +0900816 synchronized (mMethodMap) {
817 mSwitchingController = InputMethodSubtypeSwitchingController.createInstanceLocked(
818 mSettings, context);
819 }
satok0a1bcf42012-05-16 19:26:31 +0900820
821 // Just checking if defaultImiId is empty or not
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900822 final String defaultImiId = mSettings.getSelectedInputMethod();
Satoshi Kataokaf1367b72013-01-25 17:20:12 +0900823 if (DEBUG) {
824 Slog.d(TAG, "Initial default ime = " + defaultImiId);
825 }
satok0a1bcf42012-05-16 19:26:31 +0900826 mImeSelectedOnBoot = !TextUtils.isEmpty(defaultImiId);
827
Yohei Yukawa5a647b692014-05-22 12:49:00 +0900828 synchronized (mMethodMap) {
829 buildInputMethodListLocked(mMethodList, mMethodMap,
830 !mImeSelectedOnBoot /* resetDefaultEnabledIme */);
831 }
satokd87c2592010-09-29 11:52:06 +0900832 mSettings.enableAllIMEsIfThereIsNoEnabledIME();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800833
satok0a1bcf42012-05-16 19:26:31 +0900834 if (!mImeSelectedOnBoot) {
835 Slog.w(TAG, "No IME selected. Choose the most applicable IME.");
Yohei Yukawa5a647b692014-05-22 12:49:00 +0900836 synchronized (mMethodMap) {
837 resetDefaultImeLocked(context);
838 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800839 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800840
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800841 mSettingsObserver = new SettingsObserver(mHandler);
Yohei Yukawa5a647b692014-05-22 12:49:00 +0900842 synchronized (mMethodMap) {
843 updateFromSettingsLocked(true);
844 }
satok5b927c432012-05-01 20:09:34 +0900845
846 // IMMS wants to receive Intent.ACTION_LOCALE_CHANGED in order to update the current IME
847 // according to the new system locale.
848 final IntentFilter filter = new IntentFilter();
849 filter.addAction(Intent.ACTION_LOCALE_CHANGED);
850 mContext.registerReceiver(
851 new BroadcastReceiver() {
852 @Override
853 public void onReceive(Context context, Intent intent) {
854 synchronized(mMethodMap) {
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +0900855 resetStateIfCurrentLocaleChangedLocked();
satok5b927c432012-05-01 20:09:34 +0900856 }
857 }
858 }, filter);
859 }
860
satok5b927c432012-05-01 20:09:34 +0900861 private void resetDefaultImeLocked(Context context) {
862 // Do not reset the default (current) IME when it is a 3rd-party IME
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +0900863 if (mCurMethodId != null
864 && !InputMethodUtils.isSystemIme(mMethodMap.get(mCurMethodId))) {
satok5b927c432012-05-01 20:09:34 +0900865 return;
866 }
867
868 InputMethodInfo defIm = null;
869 for (InputMethodInfo imi : mMethodList) {
Yohei Yukawa6aa03782015-02-21 03:00:22 +0900870 if (defIm == null && mSystemReady) {
871 final Locale systemLocale = context.getResources().getConfiguration().locale;
872 if (InputMethodUtils.isSystemImeThatHasSubtypeOf(imi, context,
873 true /* checkDefaultAttribute */, systemLocale, false /* checkCountry */,
874 InputMethodUtils.SUBTYPE_MODE_ANY)) {
satok5b927c432012-05-01 20:09:34 +0900875 defIm = imi;
876 Slog.i(TAG, "Selected default: " + imi.getId());
877 }
878 }
879 }
880 if (defIm == null && mMethodList.size() > 0) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +0900881 defIm = InputMethodUtils.getMostApplicableDefaultIME(
882 mSettings.getEnabledInputMethodListLocked());
Hyejin Kim5baaaac2014-10-27 17:17:06 +0900883 if (defIm != null) {
884 Slog.i(TAG, "Default found, using " + defIm.getId());
885 } else {
886 Slog.i(TAG, "No default found");
887 }
satok5b927c432012-05-01 20:09:34 +0900888 }
889 if (defIm != null) {
890 setSelectedInputMethodAndSubtypeLocked(defIm, NOT_A_SUBTYPE_ID, false);
891 }
892 }
893
Satoshi Kataoka7f7535f2013-02-18 12:54:16 +0900894 private void resetAllInternalStateLocked(final boolean updateOnlyWhenLocaleChanged,
895 final boolean resetDefaultEnabledIme) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900896 if (!mSystemReady) {
897 // not system ready
898 return;
899 }
900 final Locale newLocale = mRes.getConfiguration().locale;
901 if (!updateOnlyWhenLocaleChanged
902 || (newLocale != null && !newLocale.equals(mLastSystemLocale))) {
903 if (!updateOnlyWhenLocaleChanged) {
904 hideCurrentInputLocked(0, null);
905 mCurMethodId = null;
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -0700906 unbindCurrentMethodLocked(true, false);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900907 }
908 if (DEBUG) {
909 Slog.i(TAG, "Locale has been changed to " + newLocale);
910 }
Satoshi Kataoka7f7535f2013-02-18 12:54:16 +0900911 buildInputMethodListLocked(mMethodList, mMethodMap, resetDefaultEnabledIme);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900912 if (!updateOnlyWhenLocaleChanged) {
913 final String selectedImiId = mSettings.getSelectedInputMethod();
914 if (TextUtils.isEmpty(selectedImiId)) {
915 // This is the first time of the user switch and
916 // set the current ime to the proper one.
917 resetDefaultImeLocked(mContext);
918 }
Satoshi Kataokad08a9232012-09-28 15:59:58 +0900919 } else {
920 // If the locale is changed, needs to reset the default ime
921 resetDefaultImeLocked(mContext);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900922 }
Dianne Hackbornfd7aded2013-01-22 17:10:23 -0800923 updateFromSettingsLocked(true);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900924 mLastSystemLocale = newLocale;
925 if (!updateOnlyWhenLocaleChanged) {
926 try {
927 startInputInnerLocked();
928 } catch (RuntimeException e) {
929 Slog.w(TAG, "Unexpected exception", e);
930 }
931 }
932 }
933 }
934
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +0900935 private void resetStateIfCurrentLocaleChangedLocked() {
Satoshi Kataoka7f7535f2013-02-18 12:54:16 +0900936 resetAllInternalStateLocked(true /* updateOnlyWhenLocaleChanged */,
937 true /* resetDefaultImeLocked */);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900938 }
939
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +0900940 private void switchUserLocked(int newUserId) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900941 mSettings.setCurrentUserId(newUserId);
Kenny Guy2a764942014-04-02 13:29:20 +0100942 updateCurrentProfileIds();
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +0900943 // InputMethodFileManager should be reset when the user is changed
944 mFileManager = new InputMethodFileManager(mMethodMap, newUserId);
Satoshi Kataoka7f7535f2013-02-18 12:54:16 +0900945 final String defaultImiId = mSettings.getSelectedInputMethod();
Satoshi Kataoka7c4a2a12013-02-25 15:25:43 +0900946 // For secondary users, the list of enabled IMEs may not have been updated since the
947 // callbacks to PackageMonitor are ignored for the secondary user. Here, defaultImiId may
948 // not be empty even if the IME has been uninstalled by the primary user.
949 // Even in such cases, IMMS works fine because it will find the most applicable
950 // IME for that user.
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +0900951 final boolean initialUserSwitch = TextUtils.isEmpty(defaultImiId);
Satoshi Kataoka7f7535f2013-02-18 12:54:16 +0900952 if (DEBUG) {
953 Slog.d(TAG, "Switch user: " + newUserId + " current ime = " + defaultImiId);
954 }
955 resetAllInternalStateLocked(false /* updateOnlyWhenLocaleChanged */,
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +0900956 initialUserSwitch /* needsToResetDefaultIme */);
957 if (initialUserSwitch) {
958 InputMethodUtils.setNonSelectedSystemImesDisabledUntilUsed(mContext.getPackageManager(),
959 mSettings.getEnabledInputMethodListLocked());
960 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900961 }
962
Kenny Guy2a764942014-04-02 13:29:20 +0100963 void updateCurrentProfileIds() {
964 List<UserInfo> profiles =
965 UserManager.get(mContext).getProfiles(mSettings.getCurrentUserId());
966 int[] currentProfileIds = new int[profiles.size()]; // profiles will not be null
967 for (int i = 0; i < currentProfileIds.length; i++) {
968 currentProfileIds[i] = profiles.get(i).id;
Amith Yamasani734983f2014-03-04 16:48:05 -0800969 }
Kenny Guy2a764942014-04-02 13:29:20 +0100970 mSettings.setCurrentProfileIds(currentProfileIds);
Amith Yamasani734983f2014-03-04 16:48:05 -0800971 }
972
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800973 @Override
974 public boolean onTransact(int code, Parcel data, Parcel reply, int flags)
975 throws RemoteException {
976 try {
977 return super.onTransact(code, data, reply, flags);
978 } catch (RuntimeException e) {
979 // The input method manager only throws security exceptions, so let's
980 // log all others.
981 if (!(e instanceof SecurityException)) {
Dianne Hackborn164371f2013-10-01 19:10:13 -0700982 Slog.wtf(TAG, "Input Method Manager Crash", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800983 }
984 throw e;
985 }
986 }
987
Svetoslav Ganova0027152013-06-25 14:59:53 -0700988 public void systemRunning(StatusBarManagerService statusBar) {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700989 synchronized (mMethodMap) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900990 if (DEBUG) {
991 Slog.d(TAG, "--- systemReady");
992 }
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700993 if (!mSystemReady) {
994 mSystemReady = true;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900995 mKeyguardManager =
996 (KeyguardManager) mContext.getSystemService(Context.KEYGUARD_SERVICE);
Dianne Hackborn661cd522011-08-22 00:26:20 -0700997 mNotificationManager = (NotificationManager)
998 mContext.getSystemService(Context.NOTIFICATION_SERVICE);
999 mStatusBar = statusBar;
1000 statusBar.setIconVisibility("ime", false);
1001 updateImeWindowStatusLocked();
satokb858c732011-07-22 19:54:34 +09001002 mShowOngoingImeSwitcherForPhones = mRes.getBoolean(
1003 com.android.internal.R.bool.show_ongoing_ime_switcher);
satok01038492012-04-09 21:08:27 +09001004 if (mShowOngoingImeSwitcherForPhones) {
1005 mWindowManagerService.setOnHardKeyboardStatusChangeListener(
1006 mHardKeyboardListener);
1007 }
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09001008 buildInputMethodListLocked(mMethodList, mMethodMap,
1009 !mImeSelectedOnBoot /* resetDefaultEnabledIme */);
satok0a1bcf42012-05-16 19:26:31 +09001010 if (!mImeSelectedOnBoot) {
1011 Slog.w(TAG, "Reset the default IME as \"Resource\" is ready here.");
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +09001012 resetStateIfCurrentLocaleChangedLocked();
1013 InputMethodUtils.setNonSelectedSystemImesDisabledUntilUsed(
1014 mContext.getPackageManager(),
1015 mSettings.getEnabledInputMethodListLocked());
satok0a1bcf42012-05-16 19:26:31 +09001016 }
1017 mLastSystemLocale = mRes.getConfiguration().locale;
Dianne Hackborncc278702009-09-02 23:07:23 -07001018 try {
1019 startInputInnerLocked();
1020 } catch (RuntimeException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001021 Slog.w(TAG, "Unexpected exception", e);
Dianne Hackborncc278702009-09-02 23:07:23 -07001022 }
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001023 }
1024 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001025 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001026
satok15452a42011-10-28 17:58:28 +09001027 private void setImeWindowVisibilityStatusHiddenLocked() {
1028 mImeWindowVis = 0;
1029 updateImeWindowStatusLocked();
1030 }
1031
satok3afd6c02011-11-18 08:38:19 +09001032 private void refreshImeWindowVisibilityLocked() {
1033 final Configuration conf = mRes.getConfiguration();
1034 final boolean haveHardKeyboard = conf.keyboard
1035 != Configuration.KEYBOARD_NOKEYS;
1036 final boolean hardKeyShown = haveHardKeyboard
1037 && conf.hardKeyboardHidden
1038 != Configuration.HARDKEYBOARDHIDDEN_YES;
John Spurlocke0980502013-10-25 11:59:29 -04001039
1040 final boolean isScreenLocked = isKeyguardLocked();
1041 final boolean inputActive = !isScreenLocked && (mInputShown || hardKeyShown);
John Spurlock36439b42013-10-23 16:36:47 -04001042 // We assume the softkeyboard is shown when the input is active as long as the
1043 // hard keyboard is not shown.
1044 final boolean inputVisible = inputActive && !hardKeyShown;
1045 mImeWindowVis = (inputActive ? InputMethodService.IME_ACTIVE : 0)
1046 | (inputVisible ? InputMethodService.IME_VISIBLE : 0);
satok3afd6c02011-11-18 08:38:19 +09001047 updateImeWindowStatusLocked();
1048 }
1049
satok15452a42011-10-28 17:58:28 +09001050 private void updateImeWindowStatusLocked() {
satokdbf29502011-08-25 15:28:23 +09001051 setImeWindowStatus(mCurToken, mImeWindowVis, mBackDisposition);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001052 }
1053
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001054 // ---------------------------------------------------------------------------------------
1055 // Check whether or not this is a valid IPC. Assumes an IPC is valid when either
1056 // 1) it comes from the system process
1057 // 2) the calling process' user id is identical to the current user id IMMS thinks.
1058 private boolean calledFromValidUser() {
1059 final int uid = Binder.getCallingUid();
1060 final int userId = UserHandle.getUserId(uid);
1061 if (DEBUG) {
1062 Slog.d(TAG, "--- calledFromForegroundUserOrSystemProcess ? "
1063 + "calling uid = " + uid + " system uid = " + Process.SYSTEM_UID
1064 + " calling userId = " + userId + ", foreground user id = "
Satoshi Kataoka87c29142013-07-31 23:11:54 +09001065 + mSettings.getCurrentUserId() + ", calling pid = " + Binder.getCallingPid()
1066 + InputMethodUtils.getApiCallStack());
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001067 }
Kenny Guy2a764942014-04-02 13:29:20 +01001068 if (uid == Process.SYSTEM_UID || mSettings.isCurrentProfile(userId)) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001069 return true;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001070 }
Satoshi Kataoka135e5fb2012-09-28 18:25:06 +09001071
1072 // Caveat: A process which has INTERACT_ACROSS_USERS_FULL gets results for the
1073 // foreground user, not for the user of that process. Accordingly InputMethodManagerService
1074 // must not manage background users' states in any functions.
1075 // Note that privacy-sensitive IPCs, such as setInputMethod, are still securely guarded
1076 // by a token.
1077 if (mContext.checkCallingOrSelfPermission(
1078 android.Manifest.permission.INTERACT_ACROSS_USERS_FULL)
1079 == PackageManager.PERMISSION_GRANTED) {
1080 if (DEBUG) {
1081 Slog.d(TAG, "--- Access granted because the calling process has "
1082 + "the INTERACT_ACROSS_USERS_FULL permission");
1083 }
1084 return true;
1085 }
Satoshi Kataoka0766eb02013-07-31 18:30:13 +09001086 Slog.w(TAG, "--- IPC called from background users. Ignore. \n"
1087 + InputMethodUtils.getStackTrace());
Satoshi Kataoka135e5fb2012-09-28 18:25:06 +09001088 return false;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001089 }
1090
Yohei Yukawa22c97be2014-06-04 19:43:36 +09001091
1092 /**
1093 * Returns true iff the caller is identified to be the current input method with the token.
1094 * @param token The window token given to the input method when it was started.
1095 * @return true if and only if non-null valid token is specified.
1096 */
1097 private boolean calledWithValidToken(IBinder token) {
1098 if (token == null || mCurToken != token) {
1099 return false;
1100 }
1101 return true;
1102 }
1103
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001104 private boolean bindCurrentInputMethodService(
1105 Intent service, ServiceConnection conn, int flags) {
1106 if (service == null || conn == null) {
1107 Slog.e(TAG, "--- bind failed: service = " + service + ", conn = " + conn);
1108 return false;
1109 }
Amith Yamasani27b89e62013-01-16 12:30:11 -08001110 return mContext.bindServiceAsUser(service, conn, flags,
1111 new UserHandle(mSettings.getCurrentUserId()));
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001112 }
1113
satoke7c6998e2011-06-03 17:57:59 +09001114 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001115 public List<InputMethodInfo> getInputMethodList() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001116 // TODO: Make this work even for non-current users?
1117 if (!calledFromValidUser()) {
1118 return Collections.emptyList();
1119 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001120 synchronized (mMethodMap) {
1121 return new ArrayList<InputMethodInfo>(mMethodList);
1122 }
1123 }
1124
satoke7c6998e2011-06-03 17:57:59 +09001125 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001126 public List<InputMethodInfo> getEnabledInputMethodList() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001127 // TODO: Make this work even for non-current users?
1128 if (!calledFromValidUser()) {
1129 return Collections.emptyList();
1130 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001131 synchronized (mMethodMap) {
satokd87c2592010-09-29 11:52:06 +09001132 return mSettings.getEnabledInputMethodListLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001133 }
1134 }
1135
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001136 /**
Satoshi Kataokab3c21ac2013-08-07 15:43:29 +09001137 * @param imiId if null, returns enabled subtypes for the current imi
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001138 * @return enabled subtypes of the specified imi
1139 */
satoke7c6998e2011-06-03 17:57:59 +09001140 @Override
Satoshi Kataokab3c21ac2013-08-07 15:43:29 +09001141 public List<InputMethodSubtype> getEnabledInputMethodSubtypeList(String imiId,
satok16331c82010-12-20 23:48:46 +09001142 boolean allowsImplicitlySelectedSubtypes) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001143 // TODO: Make this work even for non-current users?
1144 if (!calledFromValidUser()) {
Satoshi Kataokab3c21ac2013-08-07 15:43:29 +09001145 return Collections.<InputMethodSubtype>emptyList();
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001146 }
satok67ddf9c2010-11-17 09:45:54 +09001147 synchronized (mMethodMap) {
Satoshi Kataokab3c21ac2013-08-07 15:43:29 +09001148 final InputMethodInfo imi;
1149 if (imiId == null && mCurMethodId != null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001150 imi = mMethodMap.get(mCurMethodId);
Satoshi Kataokab3c21ac2013-08-07 15:43:29 +09001151 } else {
1152 imi = mMethodMap.get(imiId);
1153 }
1154 if (imi == null) {
1155 return Collections.<InputMethodSubtype>emptyList();
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001156 }
1157 return mSettings.getEnabledInputMethodSubtypeListLocked(
1158 mContext, imi, allowsImplicitlySelectedSubtypes);
satok67ddf9c2010-11-17 09:45:54 +09001159 }
1160 }
1161
satoke7c6998e2011-06-03 17:57:59 +09001162 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001163 public void addClient(IInputMethodClient client,
1164 IInputContext inputContext, int uid, int pid) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001165 if (!calledFromValidUser()) {
1166 return;
1167 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001168 synchronized (mMethodMap) {
1169 mClients.put(client.asBinder(), new ClientState(client,
1170 inputContext, uid, pid));
1171 }
1172 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001173
satoke7c6998e2011-06-03 17:57:59 +09001174 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001175 public void removeClient(IInputMethodClient client) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001176 if (!calledFromValidUser()) {
1177 return;
1178 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001179 synchronized (mMethodMap) {
Jeff Brownc28867a2013-03-26 15:42:39 -07001180 ClientState cs = mClients.remove(client.asBinder());
1181 if (cs != null) {
1182 clearClientSessionLocked(cs);
1183 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001184 }
1185 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001186
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001187 void executeOrSendMessage(IInterface target, Message msg) {
1188 if (target.asBinder() instanceof Binder) {
1189 mCaller.sendMessage(msg);
1190 } else {
1191 handleMessage(msg);
1192 msg.recycle();
1193 }
1194 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001195
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001196 void unbindCurrentClientLocked() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001197 if (mCurClient != null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001198 if (DEBUG) Slog.v(TAG, "unbindCurrentInputLocked: client = "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001199 + mCurClient.client.asBinder());
1200 if (mBoundToMethod) {
1201 mBoundToMethod = false;
1202 if (mCurMethod != null) {
1203 executeOrSendMessage(mCurMethod, mCaller.obtainMessageO(
1204 MSG_UNBIND_INPUT, mCurMethod));
1205 }
1206 }
Dianne Hackborna6e41342012-05-22 16:30:34 -07001207
1208 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
1209 MSG_SET_ACTIVE, 0, mCurClient));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001210 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
1211 MSG_UNBIND_METHOD, mCurSeq, mCurClient.client));
1212 mCurClient.sessionRequested = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001213 mCurClient = null;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001214
The Android Open Source Project10592532009-03-18 17:39:46 -07001215 hideInputMethodMenuLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001216 }
1217 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001218
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001219 private int getImeShowFlags() {
1220 int flags = 0;
1221 if (mShowForced) {
1222 flags |= InputMethod.SHOW_FORCED
1223 | InputMethod.SHOW_EXPLICIT;
1224 } else if (mShowExplicitlyRequested) {
1225 flags |= InputMethod.SHOW_EXPLICIT;
1226 }
1227 return flags;
1228 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001229
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001230 private int getAppShowFlags() {
1231 int flags = 0;
1232 if (mShowForced) {
1233 flags |= InputMethodManager.SHOW_FORCED;
1234 } else if (!mShowExplicitlyRequested) {
1235 flags |= InputMethodManager.SHOW_IMPLICIT;
1236 }
1237 return flags;
1238 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001239
Dianne Hackborn7663d802012-02-24 13:08:49 -08001240 InputBindResult attachNewInputLocked(boolean initial) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001241 if (!mBoundToMethod) {
1242 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
1243 MSG_BIND_INPUT, mCurMethod, mCurClient.binding));
1244 mBoundToMethod = true;
1245 }
1246 final SessionState session = mCurClient.curSession;
1247 if (initial) {
1248 executeOrSendMessage(session.method, mCaller.obtainMessageOOO(
1249 MSG_START_INPUT, session, mCurInputContext, mCurAttribute));
1250 } else {
1251 executeOrSendMessage(session.method, mCaller.obtainMessageOOO(
1252 MSG_RESTART_INPUT, session, mCurInputContext, mCurAttribute));
1253 }
1254 if (mShowRequested) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001255 if (DEBUG) Slog.v(TAG, "Attach new input asks to show input");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001256 showCurrentInputLocked(getAppShowFlags(), null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001257 }
Jeff Brown1951ce82013-04-04 22:45:12 -07001258 return new InputBindResult(session.session,
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09001259 (session.channel != null ? session.channel.dup() : null),
1260 mCurId, mCurSeq, mCurUserActionNotificationSequenceNumber);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001261 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001262
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001263 InputBindResult startInputLocked(IInputMethodClient client,
Dianne Hackborn7663d802012-02-24 13:08:49 -08001264 IInputContext inputContext, EditorInfo attribute, int controlFlags) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001265 // If no method is currently selected, do nothing.
1266 if (mCurMethodId == null) {
1267 return mNoBinding;
1268 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001269
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001270 ClientState cs = mClients.get(client.asBinder());
1271 if (cs == null) {
1272 throw new IllegalArgumentException("unknown client "
1273 + client.asBinder());
1274 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001275
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001276 try {
1277 if (!mIWindowManager.inputMethodClientHasFocus(cs.client)) {
1278 // Check with the window manager to make sure this client actually
1279 // has a window with focus. If not, reject. This is thread safe
1280 // because if the focus changes some time before or after, the
1281 // next client receiving focus that has any interest in input will
1282 // be calling through here after that change happens.
Joe Onorato8a9b2202010-02-26 18:56:32 -08001283 Slog.w(TAG, "Starting input on non-focused client " + cs.client
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001284 + " (uid=" + cs.uid + " pid=" + cs.pid + ")");
1285 return null;
1286 }
1287 } catch (RemoteException e) {
1288 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001289
Dianne Hackborn7663d802012-02-24 13:08:49 -08001290 return startInputUncheckedLocked(cs, inputContext, attribute, controlFlags);
1291 }
1292
Yohei Yukawa0f3ad12015-04-06 16:48:24 -07001293 InputBindResult startInputUncheckedLocked(@NonNull ClientState cs,
Dianne Hackborn7663d802012-02-24 13:08:49 -08001294 IInputContext inputContext, EditorInfo attribute, int controlFlags) {
1295 // If no method is currently selected, do nothing.
1296 if (mCurMethodId == null) {
1297 return mNoBinding;
1298 }
1299
Yohei Yukawa0f3ad12015-04-06 16:48:24 -07001300 if (attribute != null) {
1301 // We accept an empty package name as a valid data.
1302 if (!TextUtils.isEmpty(attribute.packageName) &&
1303 !InputMethodUtils.checkIfPackageBelongsToUid(mAppOpsManager, cs.uid,
1304 attribute.packageName)) {
1305 Slog.e(TAG, "Rejecting this client as it reported an invalid package name."
1306 + " uid=" + cs.uid + " package=" + attribute.packageName);
1307 return mNoBinding;
1308 }
1309 }
1310
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001311 if (mCurClient != cs) {
John Spurlocke0980502013-10-25 11:59:29 -04001312 // Was the keyguard locked when switching over to the new client?
1313 mCurClientInKeyguard = isKeyguardLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001314 // If the client is changing, we need to switch over to the new
1315 // one.
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001316 unbindCurrentClientLocked();
Joe Onorato8a9b2202010-02-26 18:56:32 -08001317 if (DEBUG) Slog.v(TAG, "switching to client: client = "
John Spurlocke0980502013-10-25 11:59:29 -04001318 + cs.client.asBinder() + " keyguard=" + mCurClientInKeyguard);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001319
1320 // If the screen is on, inform the new client it is active
1321 if (mScreenOn) {
Dianne Hackborna6e41342012-05-22 16:30:34 -07001322 executeOrSendMessage(cs.client, mCaller.obtainMessageIO(
1323 MSG_SET_ACTIVE, mScreenOn ? 1 : 0, cs));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001324 }
1325 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001326
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001327 // Bump up the sequence for this client and attach it.
1328 mCurSeq++;
1329 if (mCurSeq <= 0) mCurSeq = 1;
1330 mCurClient = cs;
1331 mCurInputContext = inputContext;
1332 mCurAttribute = attribute;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001333
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001334 // Check if the input method is changing.
1335 if (mCurId != null && mCurId.equals(mCurMethodId)) {
1336 if (cs.curSession != null) {
1337 // Fast case: if we are already connected to the input method,
1338 // then just return it.
Dianne Hackborn7663d802012-02-24 13:08:49 -08001339 return attachNewInputLocked(
1340 (controlFlags&InputMethodManager.CONTROL_START_INITIAL) != 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001341 }
1342 if (mHaveConnection) {
1343 if (mCurMethod != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001344 // Return to client, and we will get back with it when
1345 // we have had a session made for it.
Jeff Brownc28867a2013-03-26 15:42:39 -07001346 requestClientSessionLocked(cs);
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09001347 return new InputBindResult(null, null, mCurId, mCurSeq,
1348 mCurUserActionNotificationSequenceNumber);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001349 } else if (SystemClock.uptimeMillis()
1350 < (mLastBindTime+TIME_TO_RECONNECT)) {
1351 // In this case we have connected to the service, but
1352 // don't yet have its interface. If it hasn't been too
1353 // long since we did the connection, we'll return to
1354 // the client and wait to get the service interface so
1355 // we can report back. If it has been too long, we want
1356 // to fall through so we can try a disconnect/reconnect
1357 // to see if we can get back in touch with the service.
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09001358 return new InputBindResult(null, null, mCurId, mCurSeq,
1359 mCurUserActionNotificationSequenceNumber);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001360 } else {
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001361 EventLog.writeEvent(EventLogTags.IMF_FORCE_RECONNECT_IME,
1362 mCurMethodId, SystemClock.uptimeMillis()-mLastBindTime, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001363 }
1364 }
1365 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001366
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001367 return startInputInnerLocked();
1368 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001369
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001370 InputBindResult startInputInnerLocked() {
1371 if (mCurMethodId == null) {
1372 return mNoBinding;
1373 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001374
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001375 if (!mSystemReady) {
1376 // If the system is not yet ready, we shouldn't be running third
1377 // party code.
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09001378 return new InputBindResult(null, null, mCurMethodId, mCurSeq,
1379 mCurUserActionNotificationSequenceNumber);
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001380 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001381
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001382 InputMethodInfo info = mMethodMap.get(mCurMethodId);
1383 if (info == null) {
1384 throw new IllegalArgumentException("Unknown id: " + mCurMethodId);
1385 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001386
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07001387 unbindCurrentMethodLocked(false, true);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001388
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001389 mCurIntent = new Intent(InputMethod.SERVICE_INTERFACE);
1390 mCurIntent.setComponent(info.getComponent());
Dianne Hackborndd9b82c2009-09-03 00:18:47 -07001391 mCurIntent.putExtra(Intent.EXTRA_CLIENT_LABEL,
1392 com.android.internal.R.string.input_method_binding_label);
1393 mCurIntent.putExtra(Intent.EXTRA_CLIENT_INTENT, PendingIntent.getActivity(
1394 mContext, 0, new Intent(Settings.ACTION_INPUT_METHOD_SETTINGS), 0));
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001395 if (bindCurrentInputMethodService(mCurIntent, this, Context.BIND_AUTO_CREATE
Dianne Hackbornf0f94d12014-03-17 16:04:21 -07001396 | Context.BIND_NOT_VISIBLE | Context.BIND_NOT_FOREGROUND
1397 | Context.BIND_SHOWING_UI)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001398 mLastBindTime = SystemClock.uptimeMillis();
1399 mHaveConnection = true;
1400 mCurId = info.getId();
1401 mCurToken = new Binder();
1402 try {
Craig Mautnerca0ac712013-03-14 09:43:02 -07001403 if (true || DEBUG) Slog.v(TAG, "Adding window token: " + mCurToken);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001404 mIWindowManager.addWindowToken(mCurToken,
1405 WindowManager.LayoutParams.TYPE_INPUT_METHOD);
1406 } catch (RemoteException e) {
1407 }
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09001408 return new InputBindResult(null, null, mCurId, mCurSeq,
1409 mCurUserActionNotificationSequenceNumber);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001410 } else {
1411 mCurIntent = null;
Joe Onorato8a9b2202010-02-26 18:56:32 -08001412 Slog.w(TAG, "Failure connecting to input method service: "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001413 + mCurIntent);
1414 }
1415 return null;
1416 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001417
satoke7c6998e2011-06-03 17:57:59 +09001418 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001419 public InputBindResult startInput(IInputMethodClient client,
Dianne Hackborn7663d802012-02-24 13:08:49 -08001420 IInputContext inputContext, EditorInfo attribute, int controlFlags) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001421 if (!calledFromValidUser()) {
1422 return null;
1423 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001424 synchronized (mMethodMap) {
1425 final long ident = Binder.clearCallingIdentity();
1426 try {
Dianne Hackborn7663d802012-02-24 13:08:49 -08001427 return startInputLocked(client, inputContext, attribute, controlFlags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001428 } finally {
1429 Binder.restoreCallingIdentity(ident);
1430 }
1431 }
1432 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001433
satoke7c6998e2011-06-03 17:57:59 +09001434 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001435 public void finishInput(IInputMethodClient client) {
1436 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001437
satoke7c6998e2011-06-03 17:57:59 +09001438 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001439 public void onServiceConnected(ComponentName name, IBinder service) {
1440 synchronized (mMethodMap) {
1441 if (mCurIntent != null && name.equals(mCurIntent.getComponent())) {
1442 mCurMethod = IInputMethod.Stub.asInterface(service);
Dianne Hackborncc278702009-09-02 23:07:23 -07001443 if (mCurToken == null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001444 Slog.w(TAG, "Service connected without a token!");
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07001445 unbindCurrentMethodLocked(false, false);
Dianne Hackborncc278702009-09-02 23:07:23 -07001446 return;
1447 }
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07001448 if (DEBUG) Slog.v(TAG, "Initiating attach with token: " + mCurToken);
Dianne Hackborncc278702009-09-02 23:07:23 -07001449 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
1450 MSG_ATTACH_TOKEN, mCurMethod, mCurToken));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001451 if (mCurClient != null) {
Jeff Brownc28867a2013-03-26 15:42:39 -07001452 clearClientSessionLocked(mCurClient);
1453 requestClientSessionLocked(mCurClient);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001454 }
1455 }
1456 }
1457 }
1458
Jeff Brownc28867a2013-03-26 15:42:39 -07001459 void onSessionCreated(IInputMethod method, IInputMethodSession session,
1460 InputChannel channel) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001461 synchronized (mMethodMap) {
1462 if (mCurMethod != null && method != null
1463 && mCurMethod.asBinder() == method.asBinder()) {
1464 if (mCurClient != null) {
Jeff Brownc28867a2013-03-26 15:42:39 -07001465 clearClientSessionLocked(mCurClient);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001466 mCurClient.curSession = new SessionState(mCurClient,
Jeff Brownc28867a2013-03-26 15:42:39 -07001467 method, session, channel);
Dianne Hackborn7663d802012-02-24 13:08:49 -08001468 InputBindResult res = attachNewInputLocked(true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001469 if (res.method != null) {
1470 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageOO(
1471 MSG_BIND_METHOD, mCurClient.client, res));
1472 }
Jeff Brownc28867a2013-03-26 15:42:39 -07001473 return;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001474 }
1475 }
1476 }
Jeff Brownc28867a2013-03-26 15:42:39 -07001477
1478 // Session abandoned. Close its associated input channel.
1479 channel.dispose();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001480 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001481
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07001482 void unbindCurrentMethodLocked(boolean reportToClient, boolean savePosition) {
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07001483 if (mVisibleBound) {
1484 mContext.unbindService(mVisibleConnection);
1485 mVisibleBound = false;
1486 }
1487
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001488 if (mHaveConnection) {
1489 mContext.unbindService(this);
1490 mHaveConnection = false;
1491 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001492
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001493 if (mCurToken != null) {
1494 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001495 if (DEBUG) Slog.v(TAG, "Removing window token: " + mCurToken);
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07001496 if ((mImeWindowVis & InputMethodService.IME_ACTIVE) != 0 && savePosition) {
satoke0a99412012-05-10 02:22:58 +09001497 // The current IME is shown. Hence an IME switch (transition) is happening.
1498 mWindowManagerService.saveLastInputMethodWindowForTransition();
1499 }
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001500 mIWindowManager.removeWindowToken(mCurToken);
1501 } catch (RemoteException e) {
1502 }
1503 mCurToken = null;
1504 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001505
The Android Open Source Project10592532009-03-18 17:39:46 -07001506 mCurId = null;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001507 clearCurMethodLocked();
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001508
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001509 if (reportToClient && mCurClient != null) {
1510 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
1511 MSG_UNBIND_METHOD, mCurSeq, mCurClient.client));
1512 }
1513 }
Jeff Brownc28867a2013-03-26 15:42:39 -07001514
1515 void requestClientSessionLocked(ClientState cs) {
1516 if (!cs.sessionRequested) {
1517 if (DEBUG) Slog.v(TAG, "Creating new session for client " + cs);
1518 InputChannel[] channels = InputChannel.openInputChannelPair(cs.toString());
1519 cs.sessionRequested = true;
1520 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOOO(
1521 MSG_CREATE_SESSION, mCurMethod, channels[1],
1522 new MethodCallback(this, mCurMethod, channels[0])));
1523 }
1524 }
1525
1526 void clearClientSessionLocked(ClientState cs) {
1527 finishSessionLocked(cs.curSession);
1528 cs.curSession = null;
1529 cs.sessionRequested = false;
1530 }
1531
1532 private void finishSessionLocked(SessionState sessionState) {
1533 if (sessionState != null) {
1534 if (sessionState.session != null) {
1535 try {
1536 sessionState.session.finishSession();
1537 } catch (RemoteException e) {
1538 Slog.w(TAG, "Session failed to close due to remote exception", e);
1539 setImeWindowVisibilityStatusHiddenLocked();
1540 }
1541 sessionState.session = null;
1542 }
1543 if (sessionState.channel != null) {
1544 sessionState.channel.dispose();
1545 sessionState.channel = null;
Devin Taylor0c33ed22010-02-23 13:26:46 -06001546 }
1547 }
1548 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001549
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001550 void clearCurMethodLocked() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001551 if (mCurMethod != null) {
1552 for (ClientState cs : mClients.values()) {
Jeff Brownc28867a2013-03-26 15:42:39 -07001553 clearClientSessionLocked(cs);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001554 }
Devin Taylor0c33ed22010-02-23 13:26:46 -06001555
Jeff Brownc28867a2013-03-26 15:42:39 -07001556 finishSessionLocked(mEnabledSession);
Devin Taylor0c33ed22010-02-23 13:26:46 -06001557 mEnabledSession = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001558 mCurMethod = null;
1559 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07001560 if (mStatusBar != null) {
1561 mStatusBar.setIconVisibility("ime", false);
1562 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001563 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001564
satoke7c6998e2011-06-03 17:57:59 +09001565 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001566 public void onServiceDisconnected(ComponentName name) {
1567 synchronized (mMethodMap) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001568 if (DEBUG) Slog.v(TAG, "Service disconnected: " + name
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001569 + " mCurIntent=" + mCurIntent);
1570 if (mCurMethod != null && mCurIntent != null
1571 && name.equals(mCurIntent.getComponent())) {
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001572 clearCurMethodLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001573 // We consider this to be a new bind attempt, since the system
1574 // should now try to restart the service for us.
1575 mLastBindTime = SystemClock.uptimeMillis();
1576 mShowRequested = mInputShown;
1577 mInputShown = false;
1578 if (mCurClient != null) {
1579 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
1580 MSG_UNBIND_METHOD, mCurSeq, mCurClient.client));
1581 }
1582 }
1583 }
1584 }
1585
satokf9f01002011-05-19 21:31:50 +09001586 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001587 public void updateStatusIcon(IBinder token, String packageName, int iconId) {
1588 long ident = Binder.clearCallingIdentity();
1589 try {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001590 synchronized (mMethodMap) {
Yohei Yukawaa0755742014-06-04 20:28:18 +09001591 if (!calledWithValidToken(token)) {
1592 final int uid = Binder.getCallingUid();
1593 Slog.e(TAG, "Ignoring updateStatusIcon due to an invalid token. uid:" + uid
1594 + " token:" + token);
1595 return;
1596 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001597 if (iconId == 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001598 if (DEBUG) Slog.d(TAG, "hide the small icon for the input method");
Dianne Hackborn661cd522011-08-22 00:26:20 -07001599 if (mStatusBar != null) {
1600 mStatusBar.setIconVisibility("ime", false);
1601 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001602 } else if (packageName != null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001603 if (DEBUG) Slog.d(TAG, "show a small icon for the input method");
Svetoslav Ganov6179ea32011-06-28 01:12:41 -07001604 CharSequence contentDescription = null;
1605 try {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001606 // Use PackageManager to load label
1607 final PackageManager packageManager = mContext.getPackageManager();
Svetoslav Ganov6179ea32011-06-28 01:12:41 -07001608 contentDescription = packageManager.getApplicationLabel(
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001609 mIPackageManager.getApplicationInfo(packageName, 0,
1610 mSettings.getCurrentUserId()));
1611 } catch (RemoteException e) {
Svetoslav Ganov6179ea32011-06-28 01:12:41 -07001612 /* ignore */
1613 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07001614 if (mStatusBar != null) {
1615 mStatusBar.setIcon("ime", packageName, iconId, 0,
1616 contentDescription != null
1617 ? contentDescription.toString() : null);
1618 mStatusBar.setIconVisibility("ime", true);
1619 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001620 }
1621 }
1622 } finally {
1623 Binder.restoreCallingIdentity(ident);
1624 }
1625 }
1626
Yohei Yukawac6c7cd22015-05-12 15:00:33 -07001627 private boolean shouldShowImeSwitcherLocked() {
satok7cfc0ed2011-06-20 21:29:36 +09001628 if (!mShowOngoingImeSwitcherForPhones) return false;
Jason Monk807ef762014-05-08 15:47:46 -04001629 if (mSwitchingDialog != null) return false;
satok2c93efc2012-04-02 19:33:47 +09001630 if (isScreenLocked()) return false;
Yohei Yukawac6c7cd22015-05-12 15:00:33 -07001631 if ((mImeWindowVis & InputMethodService.IME_ACTIVE) == 0) return false;
1632 if (mWindowManagerService.isHardKeyboardAvailable()) {
1633 // When physical keyboard is attached, we show the ime switcher (or notification if
1634 // NavBar is not available) because SHOW_IME_WITH_HARD_KEYBOARD settings currently
1635 // exists in the IME switcher dialog. Might be OK to remove this condition once
1636 // SHOW_IME_WITH_HARD_KEYBOARD settings finds a good place to live.
1637 return true;
1638 }
1639 if ((mImeWindowVis & InputMethodService.IME_VISIBLE) == 0) return false;
1640
1641 List<InputMethodInfo> imis = mSettings.getEnabledInputMethodListLocked();
1642 final int N = imis.size();
1643 if (N > 2) return true;
1644 if (N < 1) return false;
1645 int nonAuxCount = 0;
1646 int auxCount = 0;
1647 InputMethodSubtype nonAuxSubtype = null;
1648 InputMethodSubtype auxSubtype = null;
1649 for(int i = 0; i < N; ++i) {
1650 final InputMethodInfo imi = imis.get(i);
1651 final List<InputMethodSubtype> subtypes =
1652 mSettings.getEnabledInputMethodSubtypeListLocked(mContext, imi, true);
1653 final int subtypeCount = subtypes.size();
1654 if (subtypeCount == 0) {
1655 ++nonAuxCount;
1656 } else {
1657 for (int j = 0; j < subtypeCount; ++j) {
1658 final InputMethodSubtype subtype = subtypes.get(j);
1659 if (!subtype.isAuxiliary()) {
1660 ++nonAuxCount;
1661 nonAuxSubtype = subtype;
1662 } else {
1663 ++auxCount;
1664 auxSubtype = subtype;
satok7cfc0ed2011-06-20 21:29:36 +09001665 }
1666 }
satok7cfc0ed2011-06-20 21:29:36 +09001667 }
1668 }
Yohei Yukawac6c7cd22015-05-12 15:00:33 -07001669 if (nonAuxCount > 1 || auxCount > 1) {
1670 return true;
1671 } else if (nonAuxCount == 1 && auxCount == 1) {
1672 if (nonAuxSubtype != null && auxSubtype != null
1673 && (nonAuxSubtype.getLocale().equals(auxSubtype.getLocale())
1674 || auxSubtype.overridesImplicitlyEnabledSubtype()
1675 || nonAuxSubtype.overridesImplicitlyEnabledSubtype())
1676 && nonAuxSubtype.containsExtraValueKey(TAG_TRY_SUPPRESSING_IME_SWITCHER)) {
1677 return false;
1678 }
1679 return true;
1680 }
1681 return false;
satok7cfc0ed2011-06-20 21:29:36 +09001682 }
1683
John Spurlocke0980502013-10-25 11:59:29 -04001684 private boolean isKeyguardLocked() {
1685 return mKeyguardManager != null && mKeyguardManager.isKeyguardLocked();
1686 }
1687
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001688 // Caution! This method is called in this class. Handle multi-user carefully
satokdbf29502011-08-25 15:28:23 +09001689 @SuppressWarnings("deprecation")
satokf9f01002011-05-19 21:31:50 +09001690 @Override
Joe Onorato857fd9b2011-01-27 15:08:35 -08001691 public void setImeWindowStatus(IBinder token, int vis, int backDisposition) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001692 final long ident = Binder.clearCallingIdentity();
satok06487a52010-10-29 11:37:18 +09001693 try {
Yohei Yukawa22c97be2014-06-04 19:43:36 +09001694 if (!calledWithValidToken(token)) {
1695 final int uid = Binder.getCallingUid();
1696 Slog.e(TAG, "Ignoring setImeWindowStatus due to an invalid token. uid:" + uid
1697 + " token:" + token);
satok06487a52010-10-29 11:37:18 +09001698 return;
1699 }
satok06487a52010-10-29 11:37:18 +09001700 synchronized (mMethodMap) {
John Spurlocke0980502013-10-25 11:59:29 -04001701 // apply policy for binder calls
1702 if (vis != 0 && isKeyguardLocked() && !mCurClientInKeyguard) {
1703 vis = 0;
1704 }
Joe Onorato857fd9b2011-01-27 15:08:35 -08001705 mImeWindowVis = vis;
Seigo Nonaka8d4a9112015-04-15 18:31:32 +09001706 mInputShown = ((mImeWindowVis & InputMethodService.IME_VISIBLE) != 0);
Joe Onorato857fd9b2011-01-27 15:08:35 -08001707 mBackDisposition = backDisposition;
Yohei Yukawac6c7cd22015-05-12 15:00:33 -07001708 // mImeWindowVis should be updated before calling shouldShowImeSwitcherLocked().
1709 final boolean needsToShowImeSwitcher = shouldShowImeSwitcherLocked();
Jason Monkb605fec2014-05-02 17:04:10 -04001710 if (mStatusBar != null) {
1711 mStatusBar.setImeWindowStatus(token, vis, backDisposition,
1712 needsToShowImeSwitcher);
1713 }
satok5bc8e732011-07-22 21:07:23 +09001714 final InputMethodInfo imi = mMethodMap.get(mCurMethodId);
Jason Monkb605fec2014-05-02 17:04:10 -04001715 if (imi != null && needsToShowImeSwitcher) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001716 // Used to load label
satok7cfc0ed2011-06-20 21:29:36 +09001717 final CharSequence title = mRes.getText(
1718 com.android.internal.R.string.select_input_method);
Satoshi Kataokab2827262013-07-04 19:43:14 +09001719 final CharSequence summary = InputMethodUtils.getImeAndSubtypeDisplayName(
1720 mContext, imi, mCurrentSubtype);
satok5bc8e732011-07-22 21:07:23 +09001721
Alan Viverette4a357cd2015-03-18 18:37:18 -07001722 mImeSwitcherNotification.color = mContext.getColor(
Selim Cinek255dd042014-08-19 22:29:02 +02001723 com.android.internal.R.color.system_notification_accent_color);
satok7cfc0ed2011-06-20 21:29:36 +09001724 mImeSwitcherNotification.setLatestEventInfo(
satok5bc8e732011-07-22 21:07:23 +09001725 mContext, title, summary, mImeSwitchPendingIntent);
Jason Monke463c742014-05-02 12:31:45 -04001726 if ((mNotificationManager != null)
1727 && !mWindowManagerService.hasNavigationBar()) {
Satoshi Kataoka135e5fb2012-09-28 18:25:06 +09001728 if (DEBUG) {
Satoshi Kataokab2827262013-07-04 19:43:14 +09001729 Slog.d(TAG, "--- show notification: label = " + summary);
Satoshi Kataoka135e5fb2012-09-28 18:25:06 +09001730 }
1731 mNotificationManager.notifyAsUser(null,
Dianne Hackborn661cd522011-08-22 00:26:20 -07001732 com.android.internal.R.string.select_input_method,
Satoshi Kataoka135e5fb2012-09-28 18:25:06 +09001733 mImeSwitcherNotification, UserHandle.ALL);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001734 mNotificationShown = true;
1735 }
satok7cfc0ed2011-06-20 21:29:36 +09001736 } else {
Dianne Hackborn661cd522011-08-22 00:26:20 -07001737 if (mNotificationShown && mNotificationManager != null) {
Satoshi Kataoka135e5fb2012-09-28 18:25:06 +09001738 if (DEBUG) {
1739 Slog.d(TAG, "--- hide notification");
1740 }
1741 mNotificationManager.cancelAsUser(null,
1742 com.android.internal.R.string.select_input_method, UserHandle.ALL);
satok7cfc0ed2011-06-20 21:29:36 +09001743 mNotificationShown = false;
1744 }
1745 }
satok06487a52010-10-29 11:37:18 +09001746 }
1747 } finally {
1748 Binder.restoreCallingIdentity(ident);
1749 }
1750 }
1751
satoke7c6998e2011-06-03 17:57:59 +09001752 @Override
satokf9f01002011-05-19 21:31:50 +09001753 public void registerSuggestionSpansForNotification(SuggestionSpan[] spans) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001754 if (!calledFromValidUser()) {
1755 return;
1756 }
satokf9f01002011-05-19 21:31:50 +09001757 synchronized (mMethodMap) {
1758 final InputMethodInfo currentImi = mMethodMap.get(mCurMethodId);
1759 for (int i = 0; i < spans.length; ++i) {
1760 SuggestionSpan ss = spans[i];
satok42c5a162011-05-26 16:46:14 +09001761 if (!TextUtils.isEmpty(ss.getNotificationTargetClassName())) {
satokf9f01002011-05-19 21:31:50 +09001762 mSecureSuggestionSpans.put(ss, currentImi);
1763 }
1764 }
1765 }
1766 }
1767
satoke7c6998e2011-06-03 17:57:59 +09001768 @Override
satokf9f01002011-05-19 21:31:50 +09001769 public boolean notifySuggestionPicked(SuggestionSpan span, String originalString, int index) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001770 if (!calledFromValidUser()) {
1771 return false;
1772 }
satokf9f01002011-05-19 21:31:50 +09001773 synchronized (mMethodMap) {
1774 final InputMethodInfo targetImi = mSecureSuggestionSpans.get(span);
1775 // TODO: Do not send the intent if the process of the targetImi is already dead.
1776 if (targetImi != null) {
1777 final String[] suggestions = span.getSuggestions();
1778 if (index < 0 || index >= suggestions.length) return false;
satok42c5a162011-05-26 16:46:14 +09001779 final String className = span.getNotificationTargetClassName();
satokf9f01002011-05-19 21:31:50 +09001780 final Intent intent = new Intent();
1781 // Ensures that only a class in the original IME package will receive the
1782 // notification.
satok42c5a162011-05-26 16:46:14 +09001783 intent.setClassName(targetImi.getPackageName(), className);
satokf9f01002011-05-19 21:31:50 +09001784 intent.setAction(SuggestionSpan.ACTION_SUGGESTION_PICKED);
1785 intent.putExtra(SuggestionSpan.SUGGESTION_SPAN_PICKED_BEFORE, originalString);
1786 intent.putExtra(SuggestionSpan.SUGGESTION_SPAN_PICKED_AFTER, suggestions[index]);
1787 intent.putExtra(SuggestionSpan.SUGGESTION_SPAN_PICKED_HASHCODE, span.hashCode());
Amith Yamasanif043de92012-10-24 06:42:40 -07001788 final long ident = Binder.clearCallingIdentity();
1789 try {
1790 mContext.sendBroadcastAsUser(intent, UserHandle.CURRENT);
1791 } finally {
1792 Binder.restoreCallingIdentity(ident);
1793 }
satokf9f01002011-05-19 21:31:50 +09001794 return true;
1795 }
1796 }
1797 return false;
1798 }
1799
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001800 void updateFromSettingsLocked(boolean enabledMayChange) {
Michael Wright7b5a96b2014-08-09 19:28:42 -07001801 updateInputMethodsFromSettingsLocked(enabledMayChange);
1802 updateKeyboardFromSettingsLocked();
1803 }
1804
1805 void updateInputMethodsFromSettingsLocked(boolean enabledMayChange) {
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001806 if (enabledMayChange) {
1807 List<InputMethodInfo> enabled = mSettings.getEnabledInputMethodListLocked();
1808 for (int i=0; i<enabled.size(); i++) {
1809 // We allow the user to select "disabled until used" apps, so if they
1810 // are enabling one of those here we now need to make it enabled.
1811 InputMethodInfo imm = enabled.get(i);
1812 try {
1813 ApplicationInfo ai = mIPackageManager.getApplicationInfo(imm.getPackageName(),
1814 PackageManager.GET_DISABLED_UNTIL_USED_COMPONENTS,
1815 mSettings.getCurrentUserId());
Satoshi Kataoka7987a312013-04-17 18:59:33 +09001816 if (ai != null && ai.enabledSetting
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001817 == PackageManager.COMPONENT_ENABLED_STATE_DISABLED_UNTIL_USED) {
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +09001818 if (DEBUG) {
1819 Slog.d(TAG, "Update state(" + imm.getId()
1820 + "): DISABLED_UNTIL_USED -> DEFAULT");
1821 }
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001822 mIPackageManager.setApplicationEnabledSetting(imm.getPackageName(),
1823 PackageManager.COMPONENT_ENABLED_STATE_DEFAULT,
Dianne Hackborn3fa3c28a2013-03-26 16:15:41 -07001824 PackageManager.DONT_KILL_APP, mSettings.getCurrentUserId(),
1825 mContext.getBasePackageName());
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001826 }
1827 } catch (RemoteException e) {
1828 }
1829 }
1830 }
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001831 // We are assuming that whoever is changing DEFAULT_INPUT_METHOD and
1832 // ENABLED_INPUT_METHODS is taking care of keeping them correctly in
1833 // sync, so we will never have a DEFAULT_INPUT_METHOD that is not
1834 // enabled.
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001835 String id = mSettings.getSelectedInputMethod();
satok03eb319a2010-11-11 18:17:42 +09001836 // There is no input method selected, try to choose new applicable input method.
1837 if (TextUtils.isEmpty(id) && chooseNewDefaultIMELocked()) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001838 id = mSettings.getSelectedInputMethod();
satok03eb319a2010-11-11 18:17:42 +09001839 }
1840 if (!TextUtils.isEmpty(id)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001841 try {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001842 setInputMethodLocked(id, mSettings.getSelectedInputMethodSubtypeId(id));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001843 } catch (IllegalArgumentException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001844 Slog.w(TAG, "Unknown input method from prefs: " + id, e);
The Android Open Source Project10592532009-03-18 17:39:46 -07001845 mCurMethodId = null;
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07001846 unbindCurrentMethodLocked(true, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001847 }
satokf3db1af2010-11-23 13:34:33 +09001848 mShortcutInputMethodsAndSubtypes.clear();
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001849 } else {
1850 // There is no longer an input method set, so stop any current one.
The Android Open Source Project10592532009-03-18 17:39:46 -07001851 mCurMethodId = null;
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07001852 unbindCurrentMethodLocked(true, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001853 }
Yohei Yukawa3d46bab2014-05-30 18:10:18 +09001854 // Here is not the perfect place to reset the switching controller. Ideally
1855 // mSwitchingController and mSettings should be able to share the same state.
1856 // TODO: Make sure that mSwitchingController and mSettings are sharing the
1857 // the same enabled IMEs list.
1858 mSwitchingController.resetCircularListLocked(mContext);
Michael Wright7b5a96b2014-08-09 19:28:42 -07001859
1860 }
1861
1862 public void updateKeyboardFromSettingsLocked() {
1863 mShowImeWithHardKeyboard = mSettings.isShowImeWithHardKeyboardEnabled();
1864 if (mSwitchingDialog != null
1865 && mSwitchingDialogTitleView != null
1866 && mSwitchingDialog.isShowing()) {
1867 final Switch hardKeySwitch = (Switch)mSwitchingDialogTitleView.findViewById(
1868 com.android.internal.R.id.hard_keyboard_switch);
1869 hardKeySwitch.setChecked(mShowImeWithHardKeyboard);
1870 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001871 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001872
satokab751aa2010-09-14 19:17:36 +09001873 /* package */ void setInputMethodLocked(String id, int subtypeId) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001874 InputMethodInfo info = mMethodMap.get(id);
1875 if (info == null) {
satok913a8922010-08-26 21:53:41 +09001876 throw new IllegalArgumentException("Unknown id: " + id);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001877 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001878
Yohei Yukawae63b5fa2014-09-19 13:14:55 +09001879 if (mCurClient != null && mCurAttribute != null) {
Yohei Yukawa0f3ad12015-04-06 16:48:24 -07001880 // We have already made sure that the package name belongs to the application's UID.
1881 // No further UID check is required.
1882 if (SystemConfig.getInstance().getFixedImeApps().contains(mCurAttribute.packageName)) {
1883 return;
Yohei Yukawae63b5fa2014-09-19 13:14:55 +09001884 }
1885 }
1886
satokd81e9502012-05-21 12:58:45 +09001887 // See if we need to notify a subtype change within the same IME.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001888 if (id.equals(mCurMethodId)) {
satokd81e9502012-05-21 12:58:45 +09001889 final int subtypeCount = info.getSubtypeCount();
1890 if (subtypeCount <= 0) {
1891 return;
satokcd7cd292010-11-20 15:46:23 +09001892 }
satokd81e9502012-05-21 12:58:45 +09001893 final InputMethodSubtype oldSubtype = mCurrentSubtype;
1894 final InputMethodSubtype newSubtype;
1895 if (subtypeId >= 0 && subtypeId < subtypeCount) {
1896 newSubtype = info.getSubtypeAt(subtypeId);
1897 } else {
1898 // If subtype is null, try to find the most applicable one from
1899 // getCurrentInputMethodSubtype.
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001900 newSubtype = getCurrentInputMethodSubtypeLocked();
satokd81e9502012-05-21 12:58:45 +09001901 }
1902 if (newSubtype == null || oldSubtype == null) {
1903 Slog.w(TAG, "Illegal subtype state: old subtype = " + oldSubtype
1904 + ", new subtype = " + newSubtype);
1905 return;
1906 }
1907 if (newSubtype != oldSubtype) {
1908 setSelectedInputMethodAndSubtypeLocked(info, subtypeId, true);
1909 if (mCurMethod != null) {
1910 try {
1911 refreshImeWindowVisibilityLocked();
1912 mCurMethod.changeInputMethodSubtype(newSubtype);
1913 } catch (RemoteException e) {
1914 Slog.w(TAG, "Failed to call changeInputMethodSubtype");
satokab751aa2010-09-14 19:17:36 +09001915 }
1916 }
1917 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001918 return;
1919 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001920
satokd81e9502012-05-21 12:58:45 +09001921 // Changing to a different IME.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001922 final long ident = Binder.clearCallingIdentity();
1923 try {
satokab751aa2010-09-14 19:17:36 +09001924 // Set a subtype to this input method.
1925 // subtypeId the name of a subtype which will be set.
satok723a27e2010-11-11 14:58:11 +09001926 setSelectedInputMethodAndSubtypeLocked(info, subtypeId, false);
1927 // mCurMethodId should be updated after setSelectedInputMethodAndSubtypeLocked()
1928 // because mCurMethodId is stored as a history in
1929 // setSelectedInputMethodAndSubtypeLocked().
1930 mCurMethodId = id;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001931
1932 if (ActivityManagerNative.isSystemReady()) {
1933 Intent intent = new Intent(Intent.ACTION_INPUT_METHOD_CHANGED);
Dianne Hackborn1c633fc2009-12-08 19:45:14 -08001934 intent.addFlags(Intent.FLAG_RECEIVER_REPLACE_PENDING);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001935 intent.putExtra("input_method_id", id);
Amith Yamasanicd757062012-10-19 18:23:52 -07001936 mContext.sendBroadcastAsUser(intent, UserHandle.CURRENT);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001937 }
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001938 unbindCurrentClientLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001939 } finally {
1940 Binder.restoreCallingIdentity(ident);
1941 }
1942 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001943
satok42c5a162011-05-26 16:46:14 +09001944 @Override
The Android Open Source Project4df24232009-03-05 14:34:35 -08001945 public boolean showSoftInput(IInputMethodClient client, int flags,
1946 ResultReceiver resultReceiver) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001947 if (!calledFromValidUser()) {
1948 return false;
1949 }
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001950 int uid = Binder.getCallingUid();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001951 long ident = Binder.clearCallingIdentity();
1952 try {
1953 synchronized (mMethodMap) {
1954 if (mCurClient == null || client == null
1955 || mCurClient.client.asBinder() != client.asBinder()) {
1956 try {
1957 // We need to check if this is the current client with
1958 // focus in the window manager, to allow this call to
1959 // be made before input is started in it.
1960 if (!mIWindowManager.inputMethodClientHasFocus(client)) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001961 Slog.w(TAG, "Ignoring showSoftInput of uid " + uid + ": " + client);
The Android Open Source Project4df24232009-03-05 14:34:35 -08001962 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001963 }
1964 } catch (RemoteException e) {
The Android Open Source Project4df24232009-03-05 14:34:35 -08001965 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001966 }
1967 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001968
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07001969 if (DEBUG) Slog.v(TAG, "Client requesting input be shown");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001970 return showCurrentInputLocked(flags, resultReceiver);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001971 }
1972 } finally {
1973 Binder.restoreCallingIdentity(ident);
1974 }
1975 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001976
The Android Open Source Project4df24232009-03-05 14:34:35 -08001977 boolean showCurrentInputLocked(int flags, ResultReceiver resultReceiver) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001978 mShowRequested = true;
1979 if ((flags&InputMethodManager.SHOW_IMPLICIT) == 0) {
1980 mShowExplicitlyRequested = true;
1981 }
1982 if ((flags&InputMethodManager.SHOW_FORCED) != 0) {
1983 mShowExplicitlyRequested = true;
1984 mShowForced = true;
1985 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001986
Dianne Hackborncc278702009-09-02 23:07:23 -07001987 if (!mSystemReady) {
1988 return false;
1989 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001990
The Android Open Source Project4df24232009-03-05 14:34:35 -08001991 boolean res = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001992 if (mCurMethod != null) {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07001993 if (DEBUG) Slog.d(TAG, "showCurrentInputLocked: mCurToken=" + mCurToken);
The Android Open Source Project4df24232009-03-05 14:34:35 -08001994 executeOrSendMessage(mCurMethod, mCaller.obtainMessageIOO(
1995 MSG_SHOW_SOFT_INPUT, getImeShowFlags(), mCurMethod,
1996 resultReceiver));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001997 mInputShown = true;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07001998 if (mHaveConnection && !mVisibleBound) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001999 bindCurrentInputMethodService(
Dianne Hackbornf0f94d12014-03-17 16:04:21 -07002000 mCurIntent, mVisibleConnection, Context.BIND_AUTO_CREATE
Dianne Hackbornd69e4c12015-04-24 09:54:54 -07002001 | Context.BIND_TREAT_LIKE_ACTIVITY
2002 | Context.BIND_FOREGROUND_SERVICE);
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07002003 mVisibleBound = true;
2004 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002005 res = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002006 } else if (mHaveConnection && SystemClock.uptimeMillis()
satok59b424c2011-09-30 17:21:46 +09002007 >= (mLastBindTime+TIME_TO_RECONNECT)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002008 // The client has asked to have the input method shown, but
2009 // we have been sitting here too long with a connection to the
2010 // service and no interface received, so let's disconnect/connect
2011 // to try to prod things along.
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002012 EventLog.writeEvent(EventLogTags.IMF_FORCE_RECONNECT_IME, mCurMethodId,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002013 SystemClock.uptimeMillis()-mLastBindTime,1);
satok59b424c2011-09-30 17:21:46 +09002014 Slog.w(TAG, "Force disconnect/connect to the IME in showCurrentInputLocked()");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002015 mContext.unbindService(this);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002016 bindCurrentInputMethodService(mCurIntent, this, Context.BIND_AUTO_CREATE
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07002017 | Context.BIND_NOT_VISIBLE);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002018 } else {
2019 if (DEBUG) {
2020 Slog.d(TAG, "Can't show input: connection = " + mHaveConnection + ", time = "
2021 + ((mLastBindTime+TIME_TO_RECONNECT) - SystemClock.uptimeMillis()));
2022 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002023 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002024
The Android Open Source Project4df24232009-03-05 14:34:35 -08002025 return res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002026 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002027
satok42c5a162011-05-26 16:46:14 +09002028 @Override
The Android Open Source Project4df24232009-03-05 14:34:35 -08002029 public boolean hideSoftInput(IInputMethodClient client, int flags,
2030 ResultReceiver resultReceiver) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002031 if (!calledFromValidUser()) {
2032 return false;
2033 }
Dianne Hackborncef65ee2010-09-30 18:27:22 -07002034 int uid = Binder.getCallingUid();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002035 long ident = Binder.clearCallingIdentity();
2036 try {
2037 synchronized (mMethodMap) {
2038 if (mCurClient == null || client == null
2039 || mCurClient.client.asBinder() != client.asBinder()) {
2040 try {
2041 // We need to check if this is the current client with
2042 // focus in the window manager, to allow this call to
2043 // be made before input is started in it.
2044 if (!mIWindowManager.inputMethodClientHasFocus(client)) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07002045 if (DEBUG) Slog.w(TAG, "Ignoring hideSoftInput of uid "
2046 + uid + ": " + client);
The Android Open Source Project4df24232009-03-05 14:34:35 -08002047 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002048 }
2049 } catch (RemoteException e) {
The Android Open Source Project4df24232009-03-05 14:34:35 -08002050 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002051 }
2052 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002053
Joe Onorato8a9b2202010-02-26 18:56:32 -08002054 if (DEBUG) Slog.v(TAG, "Client requesting input be hidden");
The Android Open Source Project4df24232009-03-05 14:34:35 -08002055 return hideCurrentInputLocked(flags, resultReceiver);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002056 }
2057 } finally {
2058 Binder.restoreCallingIdentity(ident);
2059 }
2060 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002061
The Android Open Source Project4df24232009-03-05 14:34:35 -08002062 boolean hideCurrentInputLocked(int flags, ResultReceiver resultReceiver) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002063 if ((flags&InputMethodManager.HIDE_IMPLICIT_ONLY) != 0
2064 && (mShowExplicitlyRequested || mShowForced)) {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002065 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 -08002066 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002067 }
2068 if (mShowForced && (flags&InputMethodManager.HIDE_NOT_ALWAYS) != 0) {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002069 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 -08002070 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002071 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002072 boolean res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002073 if (mInputShown && mCurMethod != null) {
The Android Open Source Project4df24232009-03-05 14:34:35 -08002074 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
2075 MSG_HIDE_SOFT_INPUT, mCurMethod, resultReceiver));
2076 res = true;
2077 } else {
2078 res = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002079 }
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07002080 if (mHaveConnection && mVisibleBound) {
2081 mContext.unbindService(mVisibleConnection);
2082 mVisibleBound = false;
2083 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002084 mInputShown = false;
2085 mShowRequested = false;
2086 mShowExplicitlyRequested = false;
2087 mShowForced = false;
The Android Open Source Project4df24232009-03-05 14:34:35 -08002088 return res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002089 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002090
satok42c5a162011-05-26 16:46:14 +09002091 @Override
Dianne Hackborn7663d802012-02-24 13:08:49 -08002092 public InputBindResult windowGainedFocus(IInputMethodClient client, IBinder windowToken,
2093 int controlFlags, int softInputMode, int windowFlags,
2094 EditorInfo attribute, IInputContext inputContext) {
Satoshi Kataoka8d033052012-11-19 17:30:40 +09002095 // Needs to check the validity before clearing calling identity
2096 final boolean calledFromValidUser = calledFromValidUser();
2097
Dianne Hackborn7663d802012-02-24 13:08:49 -08002098 InputBindResult res = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002099 long ident = Binder.clearCallingIdentity();
2100 try {
2101 synchronized (mMethodMap) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002102 if (DEBUG) Slog.v(TAG, "windowGainedFocus: " + client.asBinder()
Dianne Hackborn7663d802012-02-24 13:08:49 -08002103 + " controlFlags=#" + Integer.toHexString(controlFlags)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002104 + " softInputMode=#" + Integer.toHexString(softInputMode)
Dianne Hackborn7663d802012-02-24 13:08:49 -08002105 + " windowFlags=#" + Integer.toHexString(windowFlags));
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002106
Dianne Hackborn7663d802012-02-24 13:08:49 -08002107 ClientState cs = mClients.get(client.asBinder());
2108 if (cs == null) {
2109 throw new IllegalArgumentException("unknown client "
2110 + client.asBinder());
2111 }
2112
2113 try {
2114 if (!mIWindowManager.inputMethodClientHasFocus(cs.client)) {
2115 // Check with the window manager to make sure this client actually
2116 // has a window with focus. If not, reject. This is thread safe
2117 // because if the focus changes some time before or after, the
2118 // next client receiving focus that has any interest in input will
2119 // be calling through here after that change happens.
2120 Slog.w(TAG, "Focus gain on non-focused client " + cs.client
2121 + " (uid=" + cs.uid + " pid=" + cs.pid + ")");
2122 return null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002123 }
Dianne Hackborn7663d802012-02-24 13:08:49 -08002124 } catch (RemoteException e) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002125 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002126
Satoshi Kataoka8d033052012-11-19 17:30:40 +09002127 if (!calledFromValidUser) {
2128 Slog.w(TAG, "A background user is requesting window. Hiding IME.");
2129 Slog.w(TAG, "If you want to interect with IME, you need "
2130 + "android.permission.INTERACT_ACROSS_USERS_FULL");
2131 hideCurrentInputLocked(0, null);
2132 return null;
2133 }
2134
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07002135 if (mCurFocusedWindow == windowToken) {
Dianne Hackbornac920872012-05-22 11:49:49 -07002136 Slog.w(TAG, "Window already focused, ignoring focus gain of: " + client
Satoshi Kataoka35739502012-10-02 19:00:26 +09002137 + " attribute=" + attribute + ", token = " + windowToken);
Dianne Hackborn7663d802012-02-24 13:08:49 -08002138 if (attribute != null) {
2139 return startInputUncheckedLocked(cs, inputContext, attribute,
2140 controlFlags);
2141 }
2142 return null;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07002143 }
2144 mCurFocusedWindow = windowToken;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002145
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08002146 // Should we auto-show the IME even if the caller has not
2147 // specified what should be done with it?
2148 // We only do this automatically if the window can resize
2149 // to accommodate the IME (so what the user sees will give
2150 // them good context without input information being obscured
2151 // by the IME) or if running on a large screen where there
2152 // is more room for the target window + IME.
2153 final boolean doAutoShow =
2154 (softInputMode & WindowManager.LayoutParams.SOFT_INPUT_MASK_ADJUST)
2155 == WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE
2156 || mRes.getConfiguration().isLayoutSizeAtLeast(
2157 Configuration.SCREENLAYOUT_SIZE_LARGE);
Dianne Hackborn7663d802012-02-24 13:08:49 -08002158 final boolean isTextEditor =
2159 (controlFlags&InputMethodManager.CONTROL_WINDOW_IS_TEXT_EDITOR) != 0;
2160
2161 // We want to start input before showing the IME, but after closing
2162 // it. We want to do this after closing it to help the IME disappear
2163 // more quickly (not get stuck behind it initializing itself for the
2164 // new focused input, even if its window wants to hide the IME).
2165 boolean didStart = false;
Yohei Yukawa0f3ad12015-04-06 16:48:24 -07002166
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002167 switch (softInputMode&WindowManager.LayoutParams.SOFT_INPUT_MASK_STATE) {
2168 case WindowManager.LayoutParams.SOFT_INPUT_STATE_UNSPECIFIED:
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08002169 if (!isTextEditor || !doAutoShow) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002170 if (WindowManager.LayoutParams.mayUseInputMethod(windowFlags)) {
2171 // There is no focus view, and this window will
2172 // be behind any soft input window, so hide the
2173 // soft input window if it is shown.
Joe Onorato8a9b2202010-02-26 18:56:32 -08002174 if (DEBUG) Slog.v(TAG, "Unspecified window will hide input");
The Android Open Source Project4df24232009-03-05 14:34:35 -08002175 hideCurrentInputLocked(InputMethodManager.HIDE_NOT_ALWAYS, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002176 }
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08002177 } else if (isTextEditor && doAutoShow && (softInputMode &
2178 WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002179 // There is a focus view, and we are navigating forward
2180 // into the window, so show the input window for the user.
Dianne Hackborn7663d802012-02-24 13:08:49 -08002181 // We only do this automatically if the window can resize
2182 // to accommodate the IME (so what the user sees will give
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08002183 // them good context without input information being obscured
2184 // by the IME) or if running on a large screen where there
2185 // is more room for the target window + IME.
Joe Onorato8a9b2202010-02-26 18:56:32 -08002186 if (DEBUG) Slog.v(TAG, "Unspecified window will show input");
Dianne Hackborn7663d802012-02-24 13:08:49 -08002187 if (attribute != null) {
2188 res = startInputUncheckedLocked(cs, inputContext, attribute,
2189 controlFlags);
2190 didStart = true;
2191 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002192 showCurrentInputLocked(InputMethodManager.SHOW_IMPLICIT, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002193 }
2194 break;
2195 case WindowManager.LayoutParams.SOFT_INPUT_STATE_UNCHANGED:
2196 // Do nothing.
2197 break;
2198 case WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN:
2199 if ((softInputMode &
2200 WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002201 if (DEBUG) Slog.v(TAG, "Window asks to hide input going forward");
The Android Open Source Project4df24232009-03-05 14:34:35 -08002202 hideCurrentInputLocked(0, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002203 }
2204 break;
2205 case WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN:
Joe Onorato8a9b2202010-02-26 18:56:32 -08002206 if (DEBUG) Slog.v(TAG, "Window asks to hide input");
The Android Open Source Project4df24232009-03-05 14:34:35 -08002207 hideCurrentInputLocked(0, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002208 break;
2209 case WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE:
2210 if ((softInputMode &
2211 WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002212 if (DEBUG) Slog.v(TAG, "Window asks to show input going forward");
Dianne Hackborn7663d802012-02-24 13:08:49 -08002213 if (attribute != null) {
2214 res = startInputUncheckedLocked(cs, inputContext, attribute,
2215 controlFlags);
2216 didStart = true;
2217 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002218 showCurrentInputLocked(InputMethodManager.SHOW_IMPLICIT, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002219 }
2220 break;
2221 case WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE:
Joe Onorato8a9b2202010-02-26 18:56:32 -08002222 if (DEBUG) Slog.v(TAG, "Window asks to always show input");
Dianne Hackborn7663d802012-02-24 13:08:49 -08002223 if (attribute != null) {
2224 res = startInputUncheckedLocked(cs, inputContext, attribute,
2225 controlFlags);
2226 didStart = true;
2227 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002228 showCurrentInputLocked(InputMethodManager.SHOW_IMPLICIT, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002229 break;
2230 }
Dianne Hackborn7663d802012-02-24 13:08:49 -08002231
2232 if (!didStart && attribute != null) {
2233 res = startInputUncheckedLocked(cs, inputContext, attribute,
2234 controlFlags);
2235 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002236 }
2237 } finally {
2238 Binder.restoreCallingIdentity(ident);
2239 }
Dianne Hackborn7663d802012-02-24 13:08:49 -08002240
2241 return res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002242 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002243
satok42c5a162011-05-26 16:46:14 +09002244 @Override
Seigo Nonaka14e13912015-05-06 21:04:13 -07002245 public void showInputMethodPickerFromClient(
2246 IInputMethodClient client, int auxiliarySubtypeMode) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002247 if (!calledFromValidUser()) {
2248 return;
2249 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002250 synchronized (mMethodMap) {
2251 if (mCurClient == null || client == null
2252 || mCurClient.client.asBinder() != client.asBinder()) {
satok47a44912010-10-06 16:03:58 +09002253 Slog.w(TAG, "Ignoring showInputMethodPickerFromClient of uid "
Dianne Hackborncef65ee2010-09-30 18:27:22 -07002254 + Binder.getCallingUid() + ": " + client);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002255 }
2256
satok440aab52010-11-25 09:43:11 +09002257 // Always call subtype picker, because subtype picker is a superset of input method
2258 // picker.
Seigo Nonaka14e13912015-05-06 21:04:13 -07002259 mHandler.sendMessage(mCaller.obtainMessageI(
2260 MSG_SHOW_IM_SUBTYPE_PICKER, auxiliarySubtypeMode));
satokab751aa2010-09-14 19:17:36 +09002261 }
2262 }
2263
satok42c5a162011-05-26 16:46:14 +09002264 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002265 public void setInputMethod(IBinder token, String id) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002266 if (!calledFromValidUser()) {
2267 return;
2268 }
satok28203512010-11-24 11:06:49 +09002269 setInputMethodWithSubtypeId(token, id, NOT_A_SUBTYPE_ID);
2270 }
2271
satok42c5a162011-05-26 16:46:14 +09002272 @Override
satok28203512010-11-24 11:06:49 +09002273 public void setInputMethodAndSubtype(IBinder token, String id, InputMethodSubtype subtype) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002274 if (!calledFromValidUser()) {
2275 return;
2276 }
satok28203512010-11-24 11:06:49 +09002277 synchronized (mMethodMap) {
2278 if (subtype != null) {
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002279 setInputMethodWithSubtypeIdLocked(token, id,
2280 InputMethodUtils.getSubtypeIdFromHashCode(mMethodMap.get(id),
2281 subtype.hashCode()));
satok28203512010-11-24 11:06:49 +09002282 } else {
2283 setInputMethod(token, id);
2284 }
2285 }
satokab751aa2010-09-14 19:17:36 +09002286 }
2287
satok42c5a162011-05-26 16:46:14 +09002288 @Override
satokb416a712010-11-25 20:42:14 +09002289 public void showInputMethodAndSubtypeEnablerFromClient(
satok217f5482010-12-15 05:19:19 +09002290 IInputMethodClient client, String inputMethodId) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002291 if (!calledFromValidUser()) {
2292 return;
2293 }
satokb416a712010-11-25 20:42:14 +09002294 synchronized (mMethodMap) {
2295 if (mCurClient == null || client == null
2296 || mCurClient.client.asBinder() != client.asBinder()) {
2297 Slog.w(TAG, "Ignoring showInputMethodAndSubtypeEnablerFromClient of: " + client);
2298 }
satok7fee71f2010-12-17 18:54:26 +09002299 executeOrSendMessage(mCurMethod, mCaller.obtainMessageO(
2300 MSG_SHOW_IM_SUBTYPE_ENABLER, inputMethodId));
satokb416a712010-11-25 20:42:14 +09002301 }
2302 }
2303
satok4fc87d62011-05-20 16:13:43 +09002304 @Override
satok735cf382010-11-11 20:40:09 +09002305 public boolean switchToLastInputMethod(IBinder token) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002306 if (!calledFromValidUser()) {
2307 return false;
2308 }
satok735cf382010-11-11 20:40:09 +09002309 synchronized (mMethodMap) {
satokc445bcd2011-01-25 18:57:24 +09002310 final Pair<String, String> lastIme = mSettings.getLastInputMethodAndSubtypeLocked();
satok4fc87d62011-05-20 16:13:43 +09002311 final InputMethodInfo lastImi;
satok208d5632011-05-20 22:13:38 +09002312 if (lastIme != null) {
satok4fc87d62011-05-20 16:13:43 +09002313 lastImi = mMethodMap.get(lastIme.first);
2314 } else {
2315 lastImi = null;
satok735cf382010-11-11 20:40:09 +09002316 }
satok4fc87d62011-05-20 16:13:43 +09002317 String targetLastImiId = null;
2318 int subtypeId = NOT_A_SUBTYPE_ID;
2319 if (lastIme != null && lastImi != null) {
2320 final boolean imiIdIsSame = lastImi.getId().equals(mCurMethodId);
2321 final int lastSubtypeHash = Integer.valueOf(lastIme.second);
2322 final int currentSubtypeHash = mCurrentSubtype == null ? NOT_A_SUBTYPE_ID
2323 : mCurrentSubtype.hashCode();
2324 // If the last IME is the same as the current IME and the last subtype is not
2325 // defined, there is no need to switch to the last IME.
2326 if (!imiIdIsSame || lastSubtypeHash != currentSubtypeHash) {
2327 targetLastImiId = lastIme.first;
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002328 subtypeId = InputMethodUtils.getSubtypeIdFromHashCode(lastImi, lastSubtypeHash);
satok4fc87d62011-05-20 16:13:43 +09002329 }
2330 }
2331
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002332 if (TextUtils.isEmpty(targetLastImiId)
2333 && !InputMethodUtils.canAddToLastInputMethod(mCurrentSubtype)) {
satok4fc87d62011-05-20 16:13:43 +09002334 // This is a safety net. If the currentSubtype can't be added to the history
2335 // and the framework couldn't find the last ime, we will make the last ime be
2336 // the most applicable enabled keyboard subtype of the system imes.
2337 final List<InputMethodInfo> enabled = mSettings.getEnabledInputMethodListLocked();
2338 if (enabled != null) {
2339 final int N = enabled.size();
2340 final String locale = mCurrentSubtype == null
2341 ? mRes.getConfiguration().locale.toString()
2342 : mCurrentSubtype.getLocale();
2343 for (int i = 0; i < N; ++i) {
2344 final InputMethodInfo imi = enabled.get(i);
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002345 if (imi.getSubtypeCount() > 0 && InputMethodUtils.isSystemIme(imi)) {
satok4fc87d62011-05-20 16:13:43 +09002346 InputMethodSubtype keyboardSubtype =
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002347 InputMethodUtils.findLastResortApplicableSubtypeLocked(mRes,
2348 InputMethodUtils.getSubtypes(imi),
2349 InputMethodUtils.SUBTYPE_MODE_KEYBOARD, locale, true);
satok4fc87d62011-05-20 16:13:43 +09002350 if (keyboardSubtype != null) {
2351 targetLastImiId = imi.getId();
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002352 subtypeId = InputMethodUtils.getSubtypeIdFromHashCode(
satok4fc87d62011-05-20 16:13:43 +09002353 imi, keyboardSubtype.hashCode());
2354 if(keyboardSubtype.getLocale().equals(locale)) {
2355 break;
2356 }
2357 }
2358 }
2359 }
2360 }
2361 }
2362
2363 if (!TextUtils.isEmpty(targetLastImiId)) {
2364 if (DEBUG) {
2365 Slog.d(TAG, "Switch to: " + lastImi.getId() + ", " + lastIme.second
2366 + ", from: " + mCurMethodId + ", " + subtypeId);
2367 }
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002368 setInputMethodWithSubtypeIdLocked(token, targetLastImiId, subtypeId);
satok4fc87d62011-05-20 16:13:43 +09002369 return true;
2370 } else {
2371 return false;
2372 }
satok735cf382010-11-11 20:40:09 +09002373 }
2374 }
2375
satoke7c6998e2011-06-03 17:57:59 +09002376 @Override
satok688bd472012-02-09 20:09:17 +09002377 public boolean switchToNextInputMethod(IBinder token, boolean onlyCurrentIme) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002378 if (!calledFromValidUser()) {
2379 return false;
2380 }
satok688bd472012-02-09 20:09:17 +09002381 synchronized (mMethodMap) {
Yohei Yukawaa0755742014-06-04 20:28:18 +09002382 if (!calledWithValidToken(token)) {
2383 final int uid = Binder.getCallingUid();
2384 Slog.e(TAG, "Ignoring switchToNextInputMethod due to an invalid token. uid:" + uid
2385 + " token:" + token);
2386 return false;
2387 }
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002388 final ImeSubtypeListItem nextSubtype = mSwitchingController.getNextInputMethodLocked(
satok688bd472012-02-09 20:09:17 +09002389 onlyCurrentIme, mMethodMap.get(mCurMethodId), mCurrentSubtype);
2390 if (nextSubtype == null) {
2391 return false;
2392 }
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002393 setInputMethodWithSubtypeIdLocked(token, nextSubtype.mImi.getId(),
2394 nextSubtype.mSubtypeId);
satok688bd472012-02-09 20:09:17 +09002395 return true;
2396 }
2397 }
2398
2399 @Override
Satoshi Kataoka2b10b522013-08-21 20:39:12 +09002400 public boolean shouldOfferSwitchingToNextInputMethod(IBinder token) {
2401 if (!calledFromValidUser()) {
2402 return false;
2403 }
2404 synchronized (mMethodMap) {
Yohei Yukawaa0755742014-06-04 20:28:18 +09002405 if (!calledWithValidToken(token)) {
2406 final int uid = Binder.getCallingUid();
2407 Slog.e(TAG, "Ignoring shouldOfferSwitchingToNextInputMethod due to an invalid "
2408 + "token. uid:" + uid + " token:" + token);
2409 return false;
2410 }
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002411 final ImeSubtypeListItem nextSubtype = mSwitchingController.getNextInputMethodLocked(
Satoshi Kataoka2b10b522013-08-21 20:39:12 +09002412 false /* onlyCurrentIme */, mMethodMap.get(mCurMethodId), mCurrentSubtype);
2413 if (nextSubtype == null) {
2414 return false;
2415 }
2416 return true;
2417 }
2418 }
2419
2420 @Override
satok68f1b782011-04-11 14:26:04 +09002421 public InputMethodSubtype getLastInputMethodSubtype() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002422 if (!calledFromValidUser()) {
2423 return null;
2424 }
satok68f1b782011-04-11 14:26:04 +09002425 synchronized (mMethodMap) {
2426 final Pair<String, String> lastIme = mSettings.getLastInputMethodAndSubtypeLocked();
2427 // TODO: Handle the case of the last IME with no subtypes
2428 if (lastIme == null || TextUtils.isEmpty(lastIme.first)
2429 || TextUtils.isEmpty(lastIme.second)) return null;
2430 final InputMethodInfo lastImi = mMethodMap.get(lastIme.first);
2431 if (lastImi == null) return null;
2432 try {
2433 final int lastSubtypeHash = Integer.valueOf(lastIme.second);
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002434 final int lastSubtypeId =
2435 InputMethodUtils.getSubtypeIdFromHashCode(lastImi, lastSubtypeHash);
satok0e7d7d62011-07-05 13:28:06 +09002436 if (lastSubtypeId < 0 || lastSubtypeId >= lastImi.getSubtypeCount()) {
2437 return null;
2438 }
2439 return lastImi.getSubtypeAt(lastSubtypeId);
satok68f1b782011-04-11 14:26:04 +09002440 } catch (NumberFormatException e) {
2441 return null;
2442 }
2443 }
2444 }
2445
satoke7c6998e2011-06-03 17:57:59 +09002446 @Override
satokee5e77c2011-09-02 18:50:15 +09002447 public void setAdditionalInputMethodSubtypes(String imiId, InputMethodSubtype[] subtypes) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002448 if (!calledFromValidUser()) {
2449 return;
2450 }
satok91e88122011-07-18 11:11:42 +09002451 // By this IPC call, only a process which shares the same uid with the IME can add
2452 // additional input method subtypes to the IME.
satokee5e77c2011-09-02 18:50:15 +09002453 if (TextUtils.isEmpty(imiId) || subtypes == null || subtypes.length == 0) return;
satoke7c6998e2011-06-03 17:57:59 +09002454 synchronized (mMethodMap) {
satok91e88122011-07-18 11:11:42 +09002455 final InputMethodInfo imi = mMethodMap.get(imiId);
satokee5e77c2011-09-02 18:50:15 +09002456 if (imi == null) return;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002457 final String[] packageInfos;
2458 try {
2459 packageInfos = mIPackageManager.getPackagesForUid(Binder.getCallingUid());
2460 } catch (RemoteException e) {
2461 Slog.e(TAG, "Failed to get package infos");
2462 return;
2463 }
satok91e88122011-07-18 11:11:42 +09002464 if (packageInfos != null) {
2465 final int packageNum = packageInfos.length;
2466 for (int i = 0; i < packageNum; ++i) {
2467 if (packageInfos[i].equals(imi.getPackageName())) {
2468 mFileManager.addInputMethodSubtypes(imi, subtypes);
satokc5933802011-08-31 21:26:04 +09002469 final long ident = Binder.clearCallingIdentity();
2470 try {
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09002471 buildInputMethodListLocked(mMethodList, mMethodMap,
2472 false /* resetDefaultEnabledIme */);
satokc5933802011-08-31 21:26:04 +09002473 } finally {
2474 Binder.restoreCallingIdentity(ident);
2475 }
satokee5e77c2011-09-02 18:50:15 +09002476 return;
satok91e88122011-07-18 11:11:42 +09002477 }
2478 }
2479 }
satoke7c6998e2011-06-03 17:57:59 +09002480 }
satokee5e77c2011-09-02 18:50:15 +09002481 return;
satoke7c6998e2011-06-03 17:57:59 +09002482 }
2483
Satoshi Kataoka658c7b82013-10-10 17:03:51 +09002484 @Override
2485 public int getInputMethodWindowVisibleHeight() {
2486 return mWindowManagerService.getInputMethodWindowVisibleHeight();
2487 }
2488
Satoshi Kataokad7443c82013-10-15 17:45:43 +09002489 @Override
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002490 public void notifyUserAction(int sequenceNumber) {
Satoshi Kataokad7443c82013-10-15 17:45:43 +09002491 if (DEBUG) {
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002492 Slog.d(TAG, "Got the notification of a user action. sequenceNumber:" + sequenceNumber);
Satoshi Kataokad7443c82013-10-15 17:45:43 +09002493 }
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002494 synchronized (mMethodMap) {
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002495 if (mCurUserActionNotificationSequenceNumber != sequenceNumber) {
2496 if (DEBUG) {
2497 Slog.d(TAG, "Ignoring the user action notification due to the sequence number "
2498 + "mismatch. expected:" + mCurUserActionNotificationSequenceNumber
2499 + " actual: " + sequenceNumber);
2500 }
2501 return;
2502 }
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002503 final InputMethodInfo imi = mMethodMap.get(mCurMethodId);
2504 if (imi != null) {
Yohei Yukawa02970512014-06-05 16:16:18 +09002505 mSwitchingController.onUserActionLocked(imi, mCurrentSubtype);
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002506 }
Satoshi Kataokad7443c82013-10-15 17:45:43 +09002507 }
2508 }
2509
satok28203512010-11-24 11:06:49 +09002510 private void setInputMethodWithSubtypeId(IBinder token, String id, int subtypeId) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002511 synchronized (mMethodMap) {
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002512 setInputMethodWithSubtypeIdLocked(token, id, subtypeId);
2513 }
2514 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002515
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002516 private void setInputMethodWithSubtypeIdLocked(IBinder token, String id, int subtypeId) {
2517 if (token == null) {
2518 if (mContext.checkCallingOrSelfPermission(
2519 android.Manifest.permission.WRITE_SECURE_SETTINGS)
2520 != PackageManager.PERMISSION_GRANTED) {
2521 throw new SecurityException(
2522 "Using null token requires permission "
2523 + android.Manifest.permission.WRITE_SECURE_SETTINGS);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002524 }
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002525 } else if (mCurToken != token) {
2526 Slog.w(TAG, "Ignoring setInputMethod of uid " + Binder.getCallingUid()
2527 + " token: " + token);
2528 return;
2529 }
2530
2531 final long ident = Binder.clearCallingIdentity();
2532 try {
2533 setInputMethodLocked(id, subtypeId);
2534 } finally {
2535 Binder.restoreCallingIdentity(ident);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002536 }
2537 }
2538
satok42c5a162011-05-26 16:46:14 +09002539 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002540 public void hideMySoftInput(IBinder token, int flags) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002541 if (!calledFromValidUser()) {
2542 return;
2543 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002544 synchronized (mMethodMap) {
Yohei Yukawa22c97be2014-06-04 19:43:36 +09002545 if (!calledWithValidToken(token)) {
2546 final int uid = Binder.getCallingUid();
2547 Slog.e(TAG, "Ignoring hideInputMethod due to an invalid token. uid:"
2548 + uid + " token:" + token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002549 return;
2550 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002551 long ident = Binder.clearCallingIdentity();
2552 try {
The Android Open Source Project4df24232009-03-05 14:34:35 -08002553 hideCurrentInputLocked(flags, null);
2554 } finally {
2555 Binder.restoreCallingIdentity(ident);
2556 }
2557 }
2558 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002559
satok42c5a162011-05-26 16:46:14 +09002560 @Override
The Android Open Source Project4df24232009-03-05 14:34:35 -08002561 public void showMySoftInput(IBinder token, int flags) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002562 if (!calledFromValidUser()) {
2563 return;
2564 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002565 synchronized (mMethodMap) {
Yohei Yukawa22c97be2014-06-04 19:43:36 +09002566 if (!calledWithValidToken(token)) {
2567 final int uid = Binder.getCallingUid();
2568 Slog.e(TAG, "Ignoring showMySoftInput due to an invalid token. uid:"
2569 + uid + " token:" + token);
The Android Open Source Project4df24232009-03-05 14:34:35 -08002570 return;
2571 }
2572 long ident = Binder.clearCallingIdentity();
2573 try {
2574 showCurrentInputLocked(flags, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002575 } finally {
2576 Binder.restoreCallingIdentity(ident);
2577 }
2578 }
2579 }
2580
2581 void setEnabledSessionInMainThread(SessionState session) {
2582 if (mEnabledSession != session) {
Yohei Yukawa9d91b432014-05-19 16:03:24 +09002583 if (mEnabledSession != null && mEnabledSession.session != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002584 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002585 if (DEBUG) Slog.v(TAG, "Disabling: " + mEnabledSession);
Yohei Yukawa9d91b432014-05-19 16:03:24 +09002586 mEnabledSession.method.setSessionEnabled(mEnabledSession.session, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002587 } catch (RemoteException e) {
2588 }
2589 }
2590 mEnabledSession = session;
Yohei Yukawa9d91b432014-05-19 16:03:24 +09002591 if (mEnabledSession != null && mEnabledSession.session != null) {
2592 try {
2593 if (DEBUG) Slog.v(TAG, "Enabling: " + mEnabledSession);
2594 mEnabledSession.method.setSessionEnabled(mEnabledSession.session, true);
2595 } catch (RemoteException e) {
2596 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002597 }
2598 }
2599 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002600
satok42c5a162011-05-26 16:46:14 +09002601 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002602 public boolean handleMessage(Message msg) {
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002603 SomeArgs args;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002604 switch (msg.what) {
satokab751aa2010-09-14 19:17:36 +09002605 case MSG_SHOW_IM_SUBTYPE_PICKER:
Seigo Nonaka14e13912015-05-06 21:04:13 -07002606 final boolean showAuxSubtypes;
2607 switch (msg.arg1) {
2608 case InputMethodManager.SHOW_IM_PICKER_MODE_AUTO:
2609 // This is undocumented so far, but IMM#showInputMethodPicker() has been
2610 // implemented so that auxiliary subtypes will be excluded when the soft
2611 // keyboard is invisible.
2612 showAuxSubtypes = mInputShown;
2613 break;
2614 case InputMethodManager.SHOW_IM_PICKER_MODE_INCLUDE_AUXILIARY_SUBTYPES:
2615 showAuxSubtypes = true;
2616 break;
2617 case InputMethodManager.SHOW_IM_PICKER_MODE_EXCLUDE_AUXILIARY_SUBTYPES:
2618 showAuxSubtypes = false;
2619 break;
2620 default:
2621 Slog.e(TAG, "Unknown subtype picker mode = " + msg.arg1);
2622 return false;
2623 }
2624 showInputMethodMenu(showAuxSubtypes);
satokab751aa2010-09-14 19:17:36 +09002625 return true;
2626
satok47a44912010-10-06 16:03:58 +09002627 case MSG_SHOW_IM_SUBTYPE_ENABLER:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002628 args = (SomeArgs)msg.obj;
satok7fee71f2010-12-17 18:54:26 +09002629 showInputMethodAndSubtypeEnabler((String)args.arg1);
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002630 args.recycle();
satok217f5482010-12-15 05:19:19 +09002631 return true;
2632
2633 case MSG_SHOW_IM_CONFIG:
2634 showConfigureInputMethods();
satok47a44912010-10-06 16:03:58 +09002635 return true;
2636
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002637 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002638
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002639 case MSG_UNBIND_INPUT:
2640 try {
2641 ((IInputMethod)msg.obj).unbindInput();
2642 } catch (RemoteException e) {
2643 // There is nothing interesting about the method dying.
2644 }
2645 return true;
2646 case MSG_BIND_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002647 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002648 try {
2649 ((IInputMethod)args.arg1).bindInput((InputBinding)args.arg2);
2650 } catch (RemoteException e) {
2651 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002652 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002653 return true;
2654 case MSG_SHOW_SOFT_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002655 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002656 try {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002657 if (DEBUG) Slog.v(TAG, "Calling " + args.arg1 + ".showSoftInput("
Craig Mautner6efb4c72013-03-13 10:17:41 -07002658 + msg.arg1 + ", " + args.arg2 + ")");
Craig Mautnerca0ac712013-03-14 09:43:02 -07002659 ((IInputMethod)args.arg1).showSoftInput(msg.arg1, (ResultReceiver)args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002660 } catch (RemoteException e) {
2661 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002662 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002663 return true;
2664 case MSG_HIDE_SOFT_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002665 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002666 try {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002667 if (DEBUG) Slog.v(TAG, "Calling " + args.arg1 + ".hideSoftInput(0, "
Craig Mautner6efb4c72013-03-13 10:17:41 -07002668 + args.arg2 + ")");
Craig Mautnerca0ac712013-03-14 09:43:02 -07002669 ((IInputMethod)args.arg1).hideSoftInput(0, (ResultReceiver)args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002670 } catch (RemoteException e) {
2671 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002672 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002673 return true;
2674 case MSG_ATTACH_TOKEN:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002675 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002676 try {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002677 if (DEBUG) Slog.v(TAG, "Sending attach of token: " + args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002678 ((IInputMethod)args.arg1).attachToken((IBinder)args.arg2);
2679 } catch (RemoteException e) {
2680 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002681 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002682 return true;
Jeff Brownc28867a2013-03-26 15:42:39 -07002683 case MSG_CREATE_SESSION: {
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002684 args = (SomeArgs)msg.obj;
Jeff Brown1951ce82013-04-04 22:45:12 -07002685 IInputMethod method = (IInputMethod)args.arg1;
Jeff Brownc28867a2013-03-26 15:42:39 -07002686 InputChannel channel = (InputChannel)args.arg2;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002687 try {
Jeff Brown1951ce82013-04-04 22:45:12 -07002688 method.createSession(channel, (IInputSessionCallback)args.arg3);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002689 } catch (RemoteException e) {
Jeff Brownc28867a2013-03-26 15:42:39 -07002690 } finally {
Jeff Brown1951ce82013-04-04 22:45:12 -07002691 // Dispose the channel if the input method is not local to this process
2692 // because the remote proxy will get its own copy when unparceled.
2693 if (channel != null && Binder.isProxy(method)) {
Jeff Brownc28867a2013-03-26 15:42:39 -07002694 channel.dispose();
2695 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002696 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002697 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002698 return true;
Jeff Brownc28867a2013-03-26 15:42:39 -07002699 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002700 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002701
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002702 case MSG_START_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002703 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002704 try {
2705 SessionState session = (SessionState)args.arg1;
2706 setEnabledSessionInMainThread(session);
2707 session.method.startInput((IInputContext)args.arg2,
2708 (EditorInfo)args.arg3);
2709 } catch (RemoteException e) {
2710 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002711 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002712 return true;
2713 case MSG_RESTART_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002714 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002715 try {
2716 SessionState session = (SessionState)args.arg1;
2717 setEnabledSessionInMainThread(session);
2718 session.method.restartInput((IInputContext)args.arg2,
2719 (EditorInfo)args.arg3);
2720 } catch (RemoteException e) {
2721 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002722 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002723 return true;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002724
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002725 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002726
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002727 case MSG_UNBIND_METHOD:
2728 try {
2729 ((IInputMethodClient)msg.obj).onUnbindMethod(msg.arg1);
2730 } catch (RemoteException e) {
2731 // There is nothing interesting about the last client dying.
2732 }
2733 return true;
Jeff Brown1951ce82013-04-04 22:45:12 -07002734 case MSG_BIND_METHOD: {
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002735 args = (SomeArgs)msg.obj;
Jeff Brown1951ce82013-04-04 22:45:12 -07002736 IInputMethodClient client = (IInputMethodClient)args.arg1;
2737 InputBindResult res = (InputBindResult)args.arg2;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002738 try {
Jeff Brown1951ce82013-04-04 22:45:12 -07002739 client.onBindMethod(res);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002740 } catch (RemoteException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002741 Slog.w(TAG, "Client died receiving input method " + args.arg2);
Jeff Brown1951ce82013-04-04 22:45:12 -07002742 } finally {
2743 // Dispose the channel if the input method is not local to this process
2744 // because the remote proxy will get its own copy when unparceled.
2745 if (res.channel != null && Binder.isProxy(client)) {
2746 res.channel.dispose();
2747 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002748 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002749 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002750 return true;
Jeff Brown1951ce82013-04-04 22:45:12 -07002751 }
Dianne Hackborna6e41342012-05-22 16:30:34 -07002752 case MSG_SET_ACTIVE:
2753 try {
2754 ((ClientState)msg.obj).client.setActive(msg.arg1 != 0);
2755 } catch (RemoteException e) {
2756 Slog.w(TAG, "Got RemoteException sending setActive(false) notification to pid "
2757 + ((ClientState)msg.obj).pid + " uid "
2758 + ((ClientState)msg.obj).uid);
2759 }
2760 return true;
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002761 case MSG_SET_USER_ACTION_NOTIFICATION_SEQUENCE_NUMBER: {
2762 final int sequenceNumber = msg.arg1;
Yohei Yukawa080fa342014-08-31 16:10:05 -07002763 final ClientState clientState = (ClientState)msg.obj;
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002764 try {
Yohei Yukawa080fa342014-08-31 16:10:05 -07002765 clientState.client.setUserActionNotificationSequenceNumber(sequenceNumber);
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002766 } catch (RemoteException e) {
2767 Slog.w(TAG, "Got RemoteException sending "
2768 + "setUserActionNotificationSequenceNumber("
2769 + sequenceNumber + ") notification to pid "
Yohei Yukawa080fa342014-08-31 16:10:05 -07002770 + clientState.pid + " uid "
2771 + clientState.uid);
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002772 }
2773 return true;
2774 }
satok01038492012-04-09 21:08:27 +09002775
2776 // --------------------------------------------------------------
2777 case MSG_HARD_KEYBOARD_SWITCH_CHANGED:
Michael Wright7b5a96b2014-08-09 19:28:42 -07002778 mHardKeyboardListener.handleHardKeyboardStatusChange(msg.arg1 == 1);
satok01038492012-04-09 21:08:27 +09002779 return true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002780 }
2781 return false;
2782 }
2783
satokdc9ddae2011-10-06 12:22:36 +09002784 private boolean chooseNewDefaultIMELocked() {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002785 final InputMethodInfo imi = InputMethodUtils.getMostApplicableDefaultIME(
2786 mSettings.getEnabledInputMethodListLocked());
satokdc9ddae2011-10-06 12:22:36 +09002787 if (imi != null) {
satok03eb319a2010-11-11 18:17:42 +09002788 if (DEBUG) {
2789 Slog.d(TAG, "New default IME was selected: " + imi.getId());
2790 }
satok723a27e2010-11-11 14:58:11 +09002791 resetSelectedInputMethodAndSubtypeLocked(imi.getId());
Brandon Ballinger6da35a02009-10-21 00:38:13 -07002792 return true;
2793 }
2794
2795 return false;
2796 }
2797
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002798 void buildInputMethodListLocked(ArrayList<InputMethodInfo> list,
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09002799 HashMap<String, InputMethodInfo> map, boolean resetDefaultEnabledIme) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002800 if (DEBUG) {
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09002801 Slog.d(TAG, "--- re-buildInputMethodList reset = " + resetDefaultEnabledIme
Satoshi Kataoka0766eb02013-07-31 18:30:13 +09002802 + " \n ------ \n" + InputMethodUtils.getStackTrace());
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002803 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002804 list.clear();
2805 map.clear();
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002806
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002807 // Use for queryIntentServicesAsUser
2808 final PackageManager pm = mContext.getPackageManager();
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002809 String disabledSysImes = mSettings.getDisabledSystemInputMethods();
Amith Yamasanie861ec12010-03-24 21:39:27 -07002810 if (disabledSysImes == null) disabledSysImes = "";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002811
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002812 final List<ResolveInfo> services = pm.queryIntentServicesAsUser(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002813 new Intent(InputMethod.SERVICE_INTERFACE),
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08002814 PackageManager.GET_META_DATA | PackageManager.GET_DISABLED_UNTIL_USED_COMPONENTS,
2815 mSettings.getCurrentUserId());
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002816
satoke7c6998e2011-06-03 17:57:59 +09002817 final HashMap<String, List<InputMethodSubtype>> additionalSubtypes =
2818 mFileManager.getAllAdditionalInputMethodSubtypes();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002819 for (int i = 0; i < services.size(); ++i) {
2820 ResolveInfo ri = services.get(i);
2821 ServiceInfo si = ri.serviceInfo;
2822 ComponentName compName = new ComponentName(si.packageName, si.name);
2823 if (!android.Manifest.permission.BIND_INPUT_METHOD.equals(
2824 si.permission)) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002825 Slog.w(TAG, "Skipping input method " + compName
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002826 + ": it does not require the permission "
2827 + android.Manifest.permission.BIND_INPUT_METHOD);
2828 continue;
2829 }
2830
Joe Onorato8a9b2202010-02-26 18:56:32 -08002831 if (DEBUG) Slog.d(TAG, "Checking " + compName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002832
2833 try {
satoke7c6998e2011-06-03 17:57:59 +09002834 InputMethodInfo p = new InputMethodInfo(mContext, ri, additionalSubtypes);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002835 list.add(p);
Amith Yamasanie861ec12010-03-24 21:39:27 -07002836 final String id = p.getId();
2837 map.put(id, p);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002838
2839 if (DEBUG) {
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09002840 Slog.d(TAG, "Found an input method " + p);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002841 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002842
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002843 } catch (XmlPullParserException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002844 Slog.w(TAG, "Unable to load input method " + compName, e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002845 } catch (IOException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002846 Slog.w(TAG, "Unable to load input method " + compName, e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002847 }
2848 }
Brandon Ballinger6da35a02009-10-21 00:38:13 -07002849
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09002850 if (resetDefaultEnabledIme) {
2851 final ArrayList<InputMethodInfo> defaultEnabledIme =
2852 InputMethodUtils.getDefaultEnabledImes(mContext, mSystemReady, list);
2853 for (int i = 0; i < defaultEnabledIme.size(); ++i) {
2854 final InputMethodInfo imi = defaultEnabledIme.get(i);
2855 if (DEBUG) {
2856 Slog.d(TAG, "--- enable ime = " + imi);
2857 }
2858 setInputMethodEnabledLocked(imi.getId(), true);
2859 }
2860 }
2861
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002862 final String defaultImiId = mSettings.getSelectedInputMethod();
satok0a1bcf42012-05-16 19:26:31 +09002863 if (!TextUtils.isEmpty(defaultImiId)) {
2864 if (!map.containsKey(defaultImiId)) {
2865 Slog.w(TAG, "Default IME is uninstalled. Choose new default IME.");
2866 if (chooseNewDefaultIMELocked()) {
Michael Wright7b5a96b2014-08-09 19:28:42 -07002867 updateInputMethodsFromSettingsLocked(true);
satok0a1bcf42012-05-16 19:26:31 +09002868 }
2869 } else {
2870 // Double check that the default IME is certainly enabled.
2871 setInputMethodEnabledLocked(defaultImiId, true);
Brandon Ballinger6da35a02009-10-21 00:38:13 -07002872 }
2873 }
Yohei Yukawa3d46bab2014-05-30 18:10:18 +09002874 // Here is not the perfect place to reset the switching controller. Ideally
2875 // mSwitchingController and mSettings should be able to share the same state.
2876 // TODO: Make sure that mSwitchingController and mSettings are sharing the
2877 // the same enabled IMEs list.
Yohei Yukawac834a252014-05-21 22:42:32 +09002878 mSwitchingController.resetCircularListLocked(mContext);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002879 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002880
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002881 // ----------------------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002882
satok217f5482010-12-15 05:19:19 +09002883 private void showInputMethodAndSubtypeEnabler(String inputMethodId) {
Tadashi G. Takaokaf49688f2011-01-20 17:56:13 +09002884 Intent intent = new Intent(Settings.ACTION_INPUT_METHOD_SUBTYPE_SETTINGS);
satok47a44912010-10-06 16:03:58 +09002885 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
satok86417ea2010-10-27 14:11:03 +09002886 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED
2887 | Intent.FLAG_ACTIVITY_CLEAR_TOP);
satok7fee71f2010-12-17 18:54:26 +09002888 if (!TextUtils.isEmpty(inputMethodId)) {
Tadashi G. Takaoka25480202011-01-20 23:13:02 +09002889 intent.putExtra(Settings.EXTRA_INPUT_METHOD_ID, inputMethodId);
satok7fee71f2010-12-17 18:54:26 +09002890 }
Satoshi Kataoka3ba439d2012-10-05 18:30:13 +09002891 mContext.startActivityAsUser(intent, null, UserHandle.CURRENT);
satok217f5482010-12-15 05:19:19 +09002892 }
2893
2894 private void showConfigureInputMethods() {
2895 Intent intent = new Intent(Settings.ACTION_INPUT_METHOD_SETTINGS);
2896 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
2897 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED
2898 | Intent.FLAG_ACTIVITY_CLEAR_TOP);
Satoshi Kataoka3ba439d2012-10-05 18:30:13 +09002899 mContext.startActivityAsUser(intent, null, UserHandle.CURRENT);
satok47a44912010-10-06 16:03:58 +09002900 }
2901
satok2c93efc2012-04-02 19:33:47 +09002902 private boolean isScreenLocked() {
2903 return mKeyguardManager != null
2904 && mKeyguardManager.isKeyguardLocked() && mKeyguardManager.isKeyguardSecure();
2905 }
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09002906
Seigo Nonaka14e13912015-05-06 21:04:13 -07002907 private void showInputMethodMenu(boolean showAuxSubtypes) {
2908 if (DEBUG) Slog.v(TAG, "Show switching menu. showAuxSubtypes=" + showAuxSubtypes);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002909
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002910 final Context context = mContext;
satok2c93efc2012-04-02 19:33:47 +09002911 final boolean isScreenLocked = isScreenLocked();
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002912
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002913 final String lastInputMethodId = mSettings.getSelectedInputMethod();
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002914 int lastInputMethodSubtypeId = mSettings.getSelectedInputMethodSubtypeId(lastInputMethodId);
Joe Onorato8a9b2202010-02-26 18:56:32 -08002915 if (DEBUG) Slog.v(TAG, "Current IME: " + lastInputMethodId);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002916
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002917 synchronized (mMethodMap) {
satokbb4aa062011-01-19 21:40:27 +09002918 final HashMap<InputMethodInfo, List<InputMethodSubtype>> immis =
Satoshi Kataokad787f692013-10-26 04:44:21 +09002919 mSettings.getExplicitlyOrImplicitlyEnabledInputMethodsAndSubtypeListLocked(
2920 mContext);
satok7f35c8c2010-10-07 21:13:11 +09002921 if (immis == null || immis.size() == 0) {
2922 return;
2923 }
2924
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002925 hideInputMethodMenuLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002926
satok688bd472012-02-09 20:09:17 +09002927 final List<ImeSubtypeListItem> imList =
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002928 mSwitchingController.getSortedInputMethodAndSubtypeListLocked(
Seigo Nonaka14e13912015-05-06 21:04:13 -07002929 true /* showSubtypes */, showAuxSubtypes, isScreenLocked);
satok913a8922010-08-26 21:53:41 +09002930
satokc3690562012-01-10 20:14:43 +09002931 if (lastInputMethodSubtypeId == NOT_A_SUBTYPE_ID) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002932 final InputMethodSubtype currentSubtype = getCurrentInputMethodSubtypeLocked();
satokc3690562012-01-10 20:14:43 +09002933 if (currentSubtype != null) {
2934 final InputMethodInfo currentImi = mMethodMap.get(mCurMethodId);
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002935 lastInputMethodSubtypeId = InputMethodUtils.getSubtypeIdFromHashCode(
2936 currentImi, currentSubtype.hashCode());
satokc3690562012-01-10 20:14:43 +09002937 }
2938 }
2939
Ken Wakasa761eb372011-03-04 19:06:18 +09002940 final int N = imList.size();
satokab751aa2010-09-14 19:17:36 +09002941 mIms = new InputMethodInfo[N];
2942 mSubtypeIds = new int[N];
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002943 int checkedItem = 0;
2944 for (int i = 0; i < N; ++i) {
Ken Wakasa05dbb652011-08-22 15:22:43 +09002945 final ImeSubtypeListItem item = imList.get(i);
2946 mIms[i] = item.mImi;
2947 mSubtypeIds[i] = item.mSubtypeId;
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002948 if (mIms[i].getId().equals(lastInputMethodId)) {
satokab751aa2010-09-14 19:17:36 +09002949 int subtypeId = mSubtypeIds[i];
2950 if ((subtypeId == NOT_A_SUBTYPE_ID)
2951 || (lastInputMethodSubtypeId == NOT_A_SUBTYPE_ID && subtypeId == 0)
2952 || (subtypeId == lastInputMethodSubtypeId)) {
2953 checkedItem = i;
2954 }
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002955 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002956 }
Alan Viverette505e3ab2014-11-24 15:22:11 -08002957
2958 final Context settingsContext = new ContextThemeWrapper(context,
2959 com.android.internal.R.style.Theme_DeviceDefault_Settings);
2960
2961 mDialogBuilder = new AlertDialog.Builder(settingsContext);
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09002962 mDialogBuilder.setOnCancelListener(new OnCancelListener() {
2963 @Override
2964 public void onCancel(DialogInterface dialog) {
2965 hideInputMethodMenu();
2966 }
2967 });
Alan Viverette505e3ab2014-11-24 15:22:11 -08002968
2969 final Context dialogContext = mDialogBuilder.getContext();
2970 final TypedArray a = dialogContext.obtainStyledAttributes(null,
2971 com.android.internal.R.styleable.DialogPreference,
2972 com.android.internal.R.attr.alertDialogStyle, 0);
2973 final Drawable dialogIcon = a.getDrawable(
2974 com.android.internal.R.styleable.DialogPreference_dialogIcon);
2975 a.recycle();
2976
2977 mDialogBuilder.setIcon(dialogIcon);
2978
2979 final LayoutInflater inflater = (LayoutInflater) dialogContext.getSystemService(
2980 Context.LAYOUT_INFLATER_SERVICE);
satok01038492012-04-09 21:08:27 +09002981 final View tv = inflater.inflate(
2982 com.android.internal.R.layout.input_method_switch_dialog_title, null);
2983 mDialogBuilder.setCustomTitle(tv);
2984
2985 // Setup layout for a toggle switch of the hardware keyboard
2986 mSwitchingDialogTitleView = tv;
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09002987 mSwitchingDialogTitleView
2988 .findViewById(com.android.internal.R.id.hard_keyboard_section)
2989 .setVisibility(mWindowManagerService.isHardKeyboardAvailable()
2990 ? View.VISIBLE : View.GONE);
Alan Viverette505e3ab2014-11-24 15:22:11 -08002991 final Switch hardKeySwitch = (Switch) mSwitchingDialogTitleView.findViewById(
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09002992 com.android.internal.R.id.hard_keyboard_switch);
Michael Wright7b5a96b2014-08-09 19:28:42 -07002993 hardKeySwitch.setChecked(mShowImeWithHardKeyboard);
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09002994 hardKeySwitch.setOnCheckedChangeListener(new OnCheckedChangeListener() {
2995 @Override
2996 public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
Michael Wright7b5a96b2014-08-09 19:28:42 -07002997 mSettings.setShowImeWithHardKeyboard(isChecked);
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09002998 // Ensure that the input method dialog is dismissed when changing
2999 // the hardware keyboard state.
3000 hideInputMethodMenu();
3001 }
3002 });
3003
Alan Viverette505e3ab2014-11-24 15:22:11 -08003004 final ImeSubtypeListAdapter adapter = new ImeSubtypeListAdapter(dialogContext,
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003005 com.android.internal.R.layout.input_method_switch_item, imList, checkedItem);
3006 final OnClickListener choiceListener = new OnClickListener() {
3007 @Override
3008 public void onClick(final DialogInterface dialog, final int which) {
3009 synchronized (mMethodMap) {
3010 if (mIms == null || mIms.length <= which || mSubtypeIds == null
3011 || mSubtypeIds.length <= which) {
3012 return;
satok01038492012-04-09 21:08:27 +09003013 }
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003014 final InputMethodInfo im = mIms[which];
3015 int subtypeId = mSubtypeIds[which];
3016 adapter.mCheckedItem = which;
3017 adapter.notifyDataSetChanged();
3018 hideInputMethodMenu();
3019 if (im != null) {
3020 if (subtypeId < 0 || subtypeId >= im.getSubtypeCount()) {
3021 subtypeId = NOT_A_SUBTYPE_ID;
Dianne Hackborn20cb56e2010-03-04 00:58:29 -08003022 }
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003023 setInputMethodLocked(im.getId(), subtypeId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003024 }
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003025 }
3026 }
3027 };
3028 mDialogBuilder.setSingleChoiceItems(adapter, checkedItem, choiceListener);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003029
Seigo Nonakad4474cb2015-05-04 16:53:24 -07003030 if (!isScreenLocked) {
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003031 final OnClickListener positiveListener = new OnClickListener() {
3032 @Override
3033 public void onClick(DialogInterface dialog, int whichButton) {
3034 showConfigureInputMethods();
3035 }
3036 };
satok82beadf2010-12-27 19:03:06 +09003037 mDialogBuilder.setPositiveButton(
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003038 com.android.internal.R.string.configure_input_methods, positiveListener);
satok7f35c8c2010-10-07 21:13:11 +09003039 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003040 mSwitchingDialog = mDialogBuilder.create();
Dianne Hackborne3a7f622011-03-03 21:48:24 -08003041 mSwitchingDialog.setCanceledOnTouchOutside(true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003042 mSwitchingDialog.getWindow().setType(
3043 WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG);
Satoshi Kataokac86884c2012-10-09 15:20:29 +09003044 mSwitchingDialog.getWindow().getAttributes().privateFlags |=
3045 WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS;
Dianne Hackborne3a7f622011-03-03 21:48:24 -08003046 mSwitchingDialog.getWindow().getAttributes().setTitle("Select input method");
Jason Monk807ef762014-05-08 15:47:46 -04003047 updateImeWindowStatusLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003048 mSwitchingDialog.show();
3049 }
3050 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003051
Ken Wakasa05dbb652011-08-22 15:22:43 +09003052 private static class ImeSubtypeListAdapter extends ArrayAdapter<ImeSubtypeListItem> {
3053 private final LayoutInflater mInflater;
3054 private final int mTextViewResourceId;
3055 private final List<ImeSubtypeListItem> mItemsList;
Satoshi Kataokad2142962012-11-12 18:43:06 +09003056 public int mCheckedItem;
Ken Wakasa05dbb652011-08-22 15:22:43 +09003057 public ImeSubtypeListAdapter(Context context, int textViewResourceId,
3058 List<ImeSubtypeListItem> itemsList, int checkedItem) {
3059 super(context, textViewResourceId, itemsList);
Alan Viverette505e3ab2014-11-24 15:22:11 -08003060
Ken Wakasa05dbb652011-08-22 15:22:43 +09003061 mTextViewResourceId = textViewResourceId;
3062 mItemsList = itemsList;
3063 mCheckedItem = checkedItem;
Alan Viverette505e3ab2014-11-24 15:22:11 -08003064 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
Ken Wakasa05dbb652011-08-22 15:22:43 +09003065 }
3066
3067 @Override
3068 public View getView(int position, View convertView, ViewGroup parent) {
3069 final View view = convertView != null ? convertView
3070 : mInflater.inflate(mTextViewResourceId, null);
3071 if (position < 0 || position >= mItemsList.size()) return view;
3072 final ImeSubtypeListItem item = mItemsList.get(position);
3073 final CharSequence imeName = item.mImeName;
3074 final CharSequence subtypeName = item.mSubtypeName;
3075 final TextView firstTextView = (TextView)view.findViewById(android.R.id.text1);
3076 final TextView secondTextView = (TextView)view.findViewById(android.R.id.text2);
3077 if (TextUtils.isEmpty(subtypeName)) {
3078 firstTextView.setText(imeName);
3079 secondTextView.setVisibility(View.GONE);
3080 } else {
3081 firstTextView.setText(subtypeName);
3082 secondTextView.setText(imeName);
3083 secondTextView.setVisibility(View.VISIBLE);
3084 }
3085 final RadioButton radioButton =
3086 (RadioButton)view.findViewById(com.android.internal.R.id.radio);
3087 radioButton.setChecked(position == mCheckedItem);
3088 return view;
3089 }
3090 }
3091
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003092 void hideInputMethodMenu() {
The Android Open Source Project10592532009-03-18 17:39:46 -07003093 synchronized (mMethodMap) {
3094 hideInputMethodMenuLocked();
3095 }
3096 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003097
The Android Open Source Project10592532009-03-18 17:39:46 -07003098 void hideInputMethodMenuLocked() {
Joe Onorato8a9b2202010-02-26 18:56:32 -08003099 if (DEBUG) Slog.v(TAG, "Hide switching menu");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003100
The Android Open Source Project10592532009-03-18 17:39:46 -07003101 if (mSwitchingDialog != null) {
3102 mSwitchingDialog.dismiss();
3103 mSwitchingDialog = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003104 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003105
Jason Monk807ef762014-05-08 15:47:46 -04003106 updateImeWindowStatusLocked();
The Android Open Source Project10592532009-03-18 17:39:46 -07003107 mDialogBuilder = null;
The Android Open Source Project10592532009-03-18 17:39:46 -07003108 mIms = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003109 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003110
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003111 // ----------------------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003112
satok42c5a162011-05-26 16:46:14 +09003113 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003114 public boolean setInputMethodEnabled(String id, boolean enabled) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003115 // TODO: Make this work even for non-current users?
3116 if (!calledFromValidUser()) {
3117 return false;
3118 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003119 synchronized (mMethodMap) {
3120 if (mContext.checkCallingOrSelfPermission(
3121 android.Manifest.permission.WRITE_SECURE_SETTINGS)
3122 != PackageManager.PERMISSION_GRANTED) {
3123 throw new SecurityException(
3124 "Requires permission "
3125 + android.Manifest.permission.WRITE_SECURE_SETTINGS);
3126 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003127
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003128 long ident = Binder.clearCallingIdentity();
3129 try {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003130 return setInputMethodEnabledLocked(id, enabled);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003131 } finally {
3132 Binder.restoreCallingIdentity(ident);
3133 }
3134 }
3135 }
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003136
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003137 boolean setInputMethodEnabledLocked(String id, boolean enabled) {
3138 // Make sure this is a valid input method.
3139 InputMethodInfo imm = mMethodMap.get(id);
3140 if (imm == null) {
satokd87c2592010-09-29 11:52:06 +09003141 throw new IllegalArgumentException("Unknown id: " + mCurMethodId);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003142 }
3143
satokd87c2592010-09-29 11:52:06 +09003144 List<Pair<String, ArrayList<String>>> enabledInputMethodsList = mSettings
3145 .getEnabledInputMethodsAndSubtypeListLocked();
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003146
satokd87c2592010-09-29 11:52:06 +09003147 if (enabled) {
3148 for (Pair<String, ArrayList<String>> pair: enabledInputMethodsList) {
3149 if (pair.first.equals(id)) {
3150 // We are enabling this input method, but it is already enabled.
3151 // Nothing to do. The previous state was enabled.
3152 return true;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003153 }
3154 }
satokd87c2592010-09-29 11:52:06 +09003155 mSettings.appendAndPutEnabledInputMethodLocked(id, false);
3156 // Previous state was disabled.
3157 return false;
3158 } else {
3159 StringBuilder builder = new StringBuilder();
3160 if (mSettings.buildAndPutEnabledInputMethodsStrRemovingIdLocked(
3161 builder, enabledInputMethodsList, id)) {
3162 // Disabled input method is currently selected, switch to another one.
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003163 final String selId = mSettings.getSelectedInputMethod();
satok03eb319a2010-11-11 18:17:42 +09003164 if (id.equals(selId) && !chooseNewDefaultIMELocked()) {
3165 Slog.i(TAG, "Can't find new IME, unsetting the current input method.");
3166 resetSelectedInputMethodAndSubtypeLocked("");
satokd87c2592010-09-29 11:52:06 +09003167 }
3168 // Previous state was enabled.
3169 return true;
3170 } else {
3171 // We are disabling the input method but it is already disabled.
3172 // Nothing to do. The previous state was disabled.
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003173 return false;
3174 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003175 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003176 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08003177
satok723a27e2010-11-11 14:58:11 +09003178 private void setSelectedInputMethodAndSubtypeLocked(InputMethodInfo imi, int subtypeId,
3179 boolean setSubtypeOnly) {
3180 // Update the history of InputMethod and Subtype
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003181 mSettings.saveCurrentInputMethodAndSubtypeToHistory(mCurMethodId, mCurrentSubtype);
satok723a27e2010-11-11 14:58:11 +09003182
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09003183 mCurUserActionNotificationSequenceNumber =
3184 Math.max(mCurUserActionNotificationSequenceNumber + 1, 1);
3185 if (DEBUG) {
3186 Slog.d(TAG, "Bump mCurUserActionNotificationSequenceNumber:"
3187 + mCurUserActionNotificationSequenceNumber);
3188 }
3189
3190 if (mCurClient != null && mCurClient.client != null) {
3191 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
3192 MSG_SET_USER_ACTION_NOTIFICATION_SEQUENCE_NUMBER,
Yohei Yukawa080fa342014-08-31 16:10:05 -07003193 mCurUserActionNotificationSequenceNumber, mCurClient));
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09003194 }
3195
satok723a27e2010-11-11 14:58:11 +09003196 // Set Subtype here
3197 if (imi == null || subtypeId < 0) {
3198 mSettings.putSelectedSubtype(NOT_A_SUBTYPE_ID);
Tadashi G. Takaoka0ba75bb2010-11-09 12:19:32 -08003199 mCurrentSubtype = null;
satok723a27e2010-11-11 14:58:11 +09003200 } else {
Ken Wakasa586f0512011-01-20 22:31:01 +09003201 if (subtypeId < imi.getSubtypeCount()) {
3202 InputMethodSubtype subtype = imi.getSubtypeAt(subtypeId);
3203 mSettings.putSelectedSubtype(subtype.hashCode());
3204 mCurrentSubtype = subtype;
satok723a27e2010-11-11 14:58:11 +09003205 } else {
3206 mSettings.putSelectedSubtype(NOT_A_SUBTYPE_ID);
satokd81e9502012-05-21 12:58:45 +09003207 // If the subtype is not specified, choose the most applicable one
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003208 mCurrentSubtype = getCurrentInputMethodSubtypeLocked();
satok723a27e2010-11-11 14:58:11 +09003209 }
satokab751aa2010-09-14 19:17:36 +09003210 }
satok723a27e2010-11-11 14:58:11 +09003211
satok4c0e7152012-06-20 20:08:44 +09003212 // Workaround.
3213 // ASEC is not ready in the IMMS constructor. Accordingly, forward-locked
3214 // IMEs are not recognized and considered uninstalled.
3215 // Actually, we can't move everything after SystemReady because
3216 // IMMS needs to run in the encryption lock screen. So, we just skip changing
3217 // the default IME here and try cheking the default IME again in systemReady().
3218 // TODO: Do nothing before system ready and implement a separated logic for
3219 // the encryption lock screen.
3220 // TODO: ASEC should be ready before IMMS is instantiated.
3221 if (mSystemReady && !setSubtypeOnly) {
satok723a27e2010-11-11 14:58:11 +09003222 // Set InputMethod here
3223 mSettings.putSelectedInputMethod(imi != null ? imi.getId() : "");
3224 }
3225 }
3226
3227 private void resetSelectedInputMethodAndSubtypeLocked(String newDefaultIme) {
3228 InputMethodInfo imi = mMethodMap.get(newDefaultIme);
3229 int lastSubtypeId = NOT_A_SUBTYPE_ID;
3230 // newDefaultIme is empty when there is no candidate for the selected IME.
3231 if (imi != null && !TextUtils.isEmpty(newDefaultIme)) {
3232 String subtypeHashCode = mSettings.getLastSubtypeForInputMethodLocked(newDefaultIme);
3233 if (subtypeHashCode != null) {
3234 try {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003235 lastSubtypeId = InputMethodUtils.getSubtypeIdFromHashCode(
satok723a27e2010-11-11 14:58:11 +09003236 imi, Integer.valueOf(subtypeHashCode));
3237 } catch (NumberFormatException e) {
3238 Slog.w(TAG, "HashCode for subtype looks broken: " + subtypeHashCode, e);
3239 }
3240 }
3241 }
3242 setSelectedInputMethodAndSubtypeLocked(imi, lastSubtypeId, false);
satokab751aa2010-09-14 19:17:36 +09003243 }
3244
satok4e4569d2010-11-19 18:45:53 +09003245 // If there are no selected shortcuts, tries finding the most applicable ones.
3246 private Pair<InputMethodInfo, InputMethodSubtype>
3247 findLastResortApplicableShortcutInputMethodAndSubtypeLocked(String mode) {
3248 List<InputMethodInfo> imis = mSettings.getEnabledInputMethodListLocked();
3249 InputMethodInfo mostApplicableIMI = null;
satokcd7cd292010-11-20 15:46:23 +09003250 InputMethodSubtype mostApplicableSubtype = null;
satok4e4569d2010-11-19 18:45:53 +09003251 boolean foundInSystemIME = false;
3252
3253 // Search applicable subtype for each InputMethodInfo
3254 for (InputMethodInfo imi: imis) {
satok7599a7f2010-12-22 13:45:23 +09003255 final String imiId = imi.getId();
3256 if (foundInSystemIME && !imiId.equals(mCurMethodId)) {
3257 continue;
3258 }
satokcd7cd292010-11-20 15:46:23 +09003259 InputMethodSubtype subtype = null;
satokdf31ae62011-01-15 06:19:44 +09003260 final List<InputMethodSubtype> enabledSubtypes =
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003261 mSettings.getEnabledInputMethodSubtypeListLocked(mContext, imi, true);
satokdf31ae62011-01-15 06:19:44 +09003262 // 1. Search by the current subtype's locale from enabledSubtypes.
satok4e4569d2010-11-19 18:45:53 +09003263 if (mCurrentSubtype != null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003264 subtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
satokdf31ae62011-01-15 06:19:44 +09003265 mRes, enabledSubtypes, mode, mCurrentSubtype.getLocale(), false);
satok4e4569d2010-11-19 18:45:53 +09003266 }
satokdf31ae62011-01-15 06:19:44 +09003267 // 2. Search by the system locale from enabledSubtypes.
3268 // 3. Search the first enabled subtype matched with mode from enabledSubtypes.
satokcd7cd292010-11-20 15:46:23 +09003269 if (subtype == null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003270 subtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
satokdf31ae62011-01-15 06:19:44 +09003271 mRes, enabledSubtypes, mode, null, true);
satok4e4569d2010-11-19 18:45:53 +09003272 }
satoka86f5e42011-09-02 17:12:42 +09003273 final ArrayList<InputMethodSubtype> overridingImplicitlyEnabledSubtypes =
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003274 InputMethodUtils.getOverridingImplicitlyEnabledSubtypes(imi, mode);
satoka86f5e42011-09-02 17:12:42 +09003275 final ArrayList<InputMethodSubtype> subtypesForSearch =
3276 overridingImplicitlyEnabledSubtypes.isEmpty()
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003277 ? InputMethodUtils.getSubtypes(imi)
3278 : overridingImplicitlyEnabledSubtypes;
satok7599a7f2010-12-22 13:45:23 +09003279 // 4. Search by the current subtype's locale from all subtypes.
3280 if (subtype == null && mCurrentSubtype != null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003281 subtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
satoka86f5e42011-09-02 17:12:42 +09003282 mRes, subtypesForSearch, mode, mCurrentSubtype.getLocale(), false);
satok7599a7f2010-12-22 13:45:23 +09003283 }
3284 // 5. Search by the system locale from all subtypes.
3285 // 6. Search the first enabled subtype matched with mode from all subtypes.
satokcd7cd292010-11-20 15:46:23 +09003286 if (subtype == null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003287 subtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
satoka86f5e42011-09-02 17:12:42 +09003288 mRes, subtypesForSearch, mode, null, true);
satok4e4569d2010-11-19 18:45:53 +09003289 }
satokcd7cd292010-11-20 15:46:23 +09003290 if (subtype != null) {
satok7599a7f2010-12-22 13:45:23 +09003291 if (imiId.equals(mCurMethodId)) {
satok4e4569d2010-11-19 18:45:53 +09003292 // The current input method is the most applicable IME.
3293 mostApplicableIMI = imi;
satokcd7cd292010-11-20 15:46:23 +09003294 mostApplicableSubtype = subtype;
satok4e4569d2010-11-19 18:45:53 +09003295 break;
satok7599a7f2010-12-22 13:45:23 +09003296 } else if (!foundInSystemIME) {
satok4e4569d2010-11-19 18:45:53 +09003297 // The system input method is 2nd applicable IME.
3298 mostApplicableIMI = imi;
satokcd7cd292010-11-20 15:46:23 +09003299 mostApplicableSubtype = subtype;
satok7599a7f2010-12-22 13:45:23 +09003300 if ((imi.getServiceInfo().applicationInfo.flags
3301 & ApplicationInfo.FLAG_SYSTEM) != 0) {
3302 foundInSystemIME = true;
3303 }
satok4e4569d2010-11-19 18:45:53 +09003304 }
3305 }
3306 }
3307 if (DEBUG) {
satokcd7cd292010-11-20 15:46:23 +09003308 if (mostApplicableIMI != null) {
3309 Slog.w(TAG, "Most applicable shortcut input method was:"
3310 + mostApplicableIMI.getId());
3311 if (mostApplicableSubtype != null) {
3312 Slog.w(TAG, "Most applicable shortcut input method subtype was:"
3313 + "," + mostApplicableSubtype.getMode() + ","
3314 + mostApplicableSubtype.getLocale());
3315 }
3316 }
satok4e4569d2010-11-19 18:45:53 +09003317 }
satokcd7cd292010-11-20 15:46:23 +09003318 if (mostApplicableIMI != null) {
satok4e4569d2010-11-19 18:45:53 +09003319 return new Pair<InputMethodInfo, InputMethodSubtype> (mostApplicableIMI,
satokcd7cd292010-11-20 15:46:23 +09003320 mostApplicableSubtype);
satok4e4569d2010-11-19 18:45:53 +09003321 } else {
3322 return null;
3323 }
3324 }
3325
satokab751aa2010-09-14 19:17:36 +09003326 /**
3327 * @return Return the current subtype of this input method.
3328 */
satok42c5a162011-05-26 16:46:14 +09003329 @Override
satokab751aa2010-09-14 19:17:36 +09003330 public InputMethodSubtype getCurrentInputMethodSubtype() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003331 // TODO: Make this work even for non-current users?
3332 if (!calledFromValidUser()) {
3333 return null;
3334 }
3335 synchronized (mMethodMap) {
3336 return getCurrentInputMethodSubtypeLocked();
3337 }
3338 }
3339
3340 private InputMethodSubtype getCurrentInputMethodSubtypeLocked() {
satokfdf419e2012-05-08 16:52:08 +09003341 if (mCurMethodId == null) {
3342 return null;
3343 }
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003344 final boolean subtypeIsSelected = mSettings.isSubtypeSelected();
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003345 final InputMethodInfo imi = mMethodMap.get(mCurMethodId);
3346 if (imi == null || imi.getSubtypeCount() == 0) {
3347 return null;
satok4e4569d2010-11-19 18:45:53 +09003348 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003349 if (!subtypeIsSelected || mCurrentSubtype == null
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003350 || !InputMethodUtils.isValidSubtypeId(imi, mCurrentSubtype.hashCode())) {
3351 int subtypeId = mSettings.getSelectedInputMethodSubtypeId(mCurMethodId);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003352 if (subtypeId == NOT_A_SUBTYPE_ID) {
3353 // If there are no selected subtypes, the framework will try to find
3354 // the most applicable subtype from explicitly or implicitly enabled
3355 // subtypes.
3356 List<InputMethodSubtype> explicitlyOrImplicitlyEnabledSubtypes =
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003357 mSettings.getEnabledInputMethodSubtypeListLocked(mContext, imi, true);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003358 // If there is only one explicitly or implicitly enabled subtype,
3359 // just returns it.
3360 if (explicitlyOrImplicitlyEnabledSubtypes.size() == 1) {
3361 mCurrentSubtype = explicitlyOrImplicitlyEnabledSubtypes.get(0);
3362 } else if (explicitlyOrImplicitlyEnabledSubtypes.size() > 1) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003363 mCurrentSubtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003364 mRes, explicitlyOrImplicitlyEnabledSubtypes,
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003365 InputMethodUtils.SUBTYPE_MODE_KEYBOARD, null, true);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003366 if (mCurrentSubtype == null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003367 mCurrentSubtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003368 mRes, explicitlyOrImplicitlyEnabledSubtypes, null, null,
3369 true);
satok4e4569d2010-11-19 18:45:53 +09003370 }
satok3ef8b292010-11-23 06:06:29 +09003371 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003372 } else {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003373 mCurrentSubtype = InputMethodUtils.getSubtypes(imi).get(subtypeId);
satok8fbb1e82010-11-02 23:15:58 +09003374 }
3375 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003376 return mCurrentSubtype;
satokab751aa2010-09-14 19:17:36 +09003377 }
3378
satokf3db1af2010-11-23 13:34:33 +09003379 private void addShortcutInputMethodAndSubtypes(InputMethodInfo imi,
3380 InputMethodSubtype subtype) {
3381 if (mShortcutInputMethodsAndSubtypes.containsKey(imi)) {
3382 mShortcutInputMethodsAndSubtypes.get(imi).add(subtype);
3383 } else {
3384 ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>();
3385 subtypes.add(subtype);
3386 mShortcutInputMethodsAndSubtypes.put(imi, subtypes);
3387 }
3388 }
3389
satok4e4569d2010-11-19 18:45:53 +09003390 // TODO: We should change the return type from List to List<Parcelable>
satokdbf29502011-08-25 15:28:23 +09003391 @SuppressWarnings("rawtypes")
satoke7c6998e2011-06-03 17:57:59 +09003392 @Override
satok4e4569d2010-11-19 18:45:53 +09003393 public List getShortcutInputMethodsAndSubtypes() {
3394 synchronized (mMethodMap) {
satok3da92232011-01-11 22:46:30 +09003395 ArrayList<Object> ret = new ArrayList<Object>();
satokf3db1af2010-11-23 13:34:33 +09003396 if (mShortcutInputMethodsAndSubtypes.size() == 0) {
satok4e4569d2010-11-19 18:45:53 +09003397 // If there are no selected shortcut subtypes, the framework will try to find
3398 // the most applicable subtype from all subtypes whose mode is
3399 // SUBTYPE_MODE_VOICE. This is an exceptional case, so we will hardcode the mode.
satokf3db1af2010-11-23 13:34:33 +09003400 Pair<InputMethodInfo, InputMethodSubtype> info =
3401 findLastResortApplicableShortcutInputMethodAndSubtypeLocked(
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003402 InputMethodUtils.SUBTYPE_MODE_VOICE);
satok7599a7f2010-12-22 13:45:23 +09003403 if (info != null) {
satok3da92232011-01-11 22:46:30 +09003404 ret.add(info.first);
3405 ret.add(info.second);
satok7599a7f2010-12-22 13:45:23 +09003406 }
satok3da92232011-01-11 22:46:30 +09003407 return ret;
satokf3db1af2010-11-23 13:34:33 +09003408 }
satokf3db1af2010-11-23 13:34:33 +09003409 for (InputMethodInfo imi: mShortcutInputMethodsAndSubtypes.keySet()) {
3410 ret.add(imi);
3411 for (InputMethodSubtype subtype: mShortcutInputMethodsAndSubtypes.get(imi)) {
3412 ret.add(subtype);
satok4e4569d2010-11-19 18:45:53 +09003413 }
3414 }
satokf3db1af2010-11-23 13:34:33 +09003415 return ret;
satok4e4569d2010-11-19 18:45:53 +09003416 }
3417 }
3418
satok42c5a162011-05-26 16:46:14 +09003419 @Override
satokb66d2872010-11-10 01:04:04 +09003420 public boolean setCurrentInputMethodSubtype(InputMethodSubtype subtype) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003421 // TODO: Make this work even for non-current users?
3422 if (!calledFromValidUser()) {
3423 return false;
3424 }
satokb66d2872010-11-10 01:04:04 +09003425 synchronized (mMethodMap) {
3426 if (subtype != null && mCurMethodId != null) {
3427 InputMethodInfo imi = mMethodMap.get(mCurMethodId);
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003428 int subtypeId = InputMethodUtils.getSubtypeIdFromHashCode(imi, subtype.hashCode());
satokb66d2872010-11-10 01:04:04 +09003429 if (subtypeId != NOT_A_SUBTYPE_ID) {
3430 setInputMethodLocked(mCurMethodId, subtypeId);
3431 return true;
3432 }
3433 }
3434 return false;
3435 }
3436 }
3437
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +09003438 // TODO: Cache the state for each user and reset when the cached user is removed.
satoke7c6998e2011-06-03 17:57:59 +09003439 private static class InputMethodFileManager {
3440 private static final String SYSTEM_PATH = "system";
3441 private static final String INPUT_METHOD_PATH = "inputmethod";
3442 private static final String ADDITIONAL_SUBTYPES_FILE_NAME = "subtypes.xml";
3443 private static final String NODE_SUBTYPES = "subtypes";
3444 private static final String NODE_SUBTYPE = "subtype";
3445 private static final String NODE_IMI = "imi";
3446 private static final String ATTR_ID = "id";
3447 private static final String ATTR_LABEL = "label";
3448 private static final String ATTR_ICON = "icon";
3449 private static final String ATTR_IME_SUBTYPE_LOCALE = "imeSubtypeLocale";
3450 private static final String ATTR_IME_SUBTYPE_MODE = "imeSubtypeMode";
3451 private static final String ATTR_IME_SUBTYPE_EXTRA_VALUE = "imeSubtypeExtraValue";
3452 private static final String ATTR_IS_AUXILIARY = "isAuxiliary";
3453 private final AtomicFile mAdditionalInputMethodSubtypeFile;
3454 private final HashMap<String, InputMethodInfo> mMethodMap;
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003455 private final HashMap<String, List<InputMethodSubtype>> mAdditionalSubtypesMap =
satoke7c6998e2011-06-03 17:57:59 +09003456 new HashMap<String, List<InputMethodSubtype>>();
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +09003457 public InputMethodFileManager(HashMap<String, InputMethodInfo> methodMap, int userId) {
satoke7c6998e2011-06-03 17:57:59 +09003458 if (methodMap == null) {
3459 throw new NullPointerException("methodMap is null");
3460 }
3461 mMethodMap = methodMap;
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +09003462 final File systemDir = userId == UserHandle.USER_OWNER
3463 ? new File(Environment.getDataDirectory(), SYSTEM_PATH)
3464 : Environment.getUserSystemDirectory(userId);
satoke7c6998e2011-06-03 17:57:59 +09003465 final File inputMethodDir = new File(systemDir, INPUT_METHOD_PATH);
3466 if (!inputMethodDir.mkdirs()) {
3467 Slog.w(TAG, "Couldn't create dir.: " + inputMethodDir.getAbsolutePath());
3468 }
3469 final File subtypeFile = new File(inputMethodDir, ADDITIONAL_SUBTYPES_FILE_NAME);
3470 mAdditionalInputMethodSubtypeFile = new AtomicFile(subtypeFile);
3471 if (!subtypeFile.exists()) {
3472 // If "subtypes.xml" doesn't exist, create a blank file.
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003473 writeAdditionalInputMethodSubtypes(
3474 mAdditionalSubtypesMap, mAdditionalInputMethodSubtypeFile, methodMap);
satoke7c6998e2011-06-03 17:57:59 +09003475 } else {
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003476 readAdditionalInputMethodSubtypes(
3477 mAdditionalSubtypesMap, mAdditionalInputMethodSubtypeFile);
satoke7c6998e2011-06-03 17:57:59 +09003478 }
3479 }
3480
3481 private void deleteAllInputMethodSubtypes(String imiId) {
3482 synchronized (mMethodMap) {
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003483 mAdditionalSubtypesMap.remove(imiId);
3484 writeAdditionalInputMethodSubtypes(
3485 mAdditionalSubtypesMap, mAdditionalInputMethodSubtypeFile, mMethodMap);
satoke7c6998e2011-06-03 17:57:59 +09003486 }
3487 }
3488
3489 public void addInputMethodSubtypes(
satok4a28bde2011-06-29 21:03:40 +09003490 InputMethodInfo imi, InputMethodSubtype[] additionalSubtypes) {
satoke7c6998e2011-06-03 17:57:59 +09003491 synchronized (mMethodMap) {
3492 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>();
3493 final int N = additionalSubtypes.length;
3494 for (int i = 0; i < N; ++i) {
3495 final InputMethodSubtype subtype = additionalSubtypes[i];
satoked2b24e2011-08-31 18:03:21 +09003496 if (!subtypes.contains(subtype)) {
satoke7c6998e2011-06-03 17:57:59 +09003497 subtypes.add(subtype);
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003498 } else {
3499 Slog.w(TAG, "Duplicated subtype definition found: "
3500 + subtype.getLocale() + ", " + subtype.getMode());
satoke7c6998e2011-06-03 17:57:59 +09003501 }
3502 }
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003503 mAdditionalSubtypesMap.put(imi.getId(), subtypes);
3504 writeAdditionalInputMethodSubtypes(
3505 mAdditionalSubtypesMap, mAdditionalInputMethodSubtypeFile, mMethodMap);
satoke7c6998e2011-06-03 17:57:59 +09003506 }
3507 }
3508
3509 public HashMap<String, List<InputMethodSubtype>> getAllAdditionalInputMethodSubtypes() {
3510 synchronized (mMethodMap) {
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003511 return mAdditionalSubtypesMap;
satoke7c6998e2011-06-03 17:57:59 +09003512 }
3513 }
3514
3515 private static void writeAdditionalInputMethodSubtypes(
3516 HashMap<String, List<InputMethodSubtype>> allSubtypes, AtomicFile subtypesFile,
3517 HashMap<String, InputMethodInfo> methodMap) {
3518 // Safety net for the case that this function is called before methodMap is set.
3519 final boolean isSetMethodMap = methodMap != null && methodMap.size() > 0;
3520 FileOutputStream fos = null;
3521 try {
3522 fos = subtypesFile.startWrite();
3523 final XmlSerializer out = new FastXmlSerializer();
3524 out.setOutput(fos, "utf-8");
3525 out.startDocument(null, true);
3526 out.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
3527 out.startTag(null, NODE_SUBTYPES);
3528 for (String imiId : allSubtypes.keySet()) {
3529 if (isSetMethodMap && !methodMap.containsKey(imiId)) {
3530 Slog.w(TAG, "IME uninstalled or not valid.: " + imiId);
3531 continue;
3532 }
3533 out.startTag(null, NODE_IMI);
3534 out.attribute(null, ATTR_ID, imiId);
3535 final List<InputMethodSubtype> subtypesList = allSubtypes.get(imiId);
3536 final int N = subtypesList.size();
3537 for (int i = 0; i < N; ++i) {
3538 final InputMethodSubtype subtype = subtypesList.get(i);
3539 out.startTag(null, NODE_SUBTYPE);
3540 out.attribute(null, ATTR_ICON, String.valueOf(subtype.getIconResId()));
3541 out.attribute(null, ATTR_LABEL, String.valueOf(subtype.getNameResId()));
3542 out.attribute(null, ATTR_IME_SUBTYPE_LOCALE, subtype.getLocale());
3543 out.attribute(null, ATTR_IME_SUBTYPE_MODE, subtype.getMode());
3544 out.attribute(null, ATTR_IME_SUBTYPE_EXTRA_VALUE, subtype.getExtraValue());
3545 out.attribute(null, ATTR_IS_AUXILIARY,
3546 String.valueOf(subtype.isAuxiliary() ? 1 : 0));
3547 out.endTag(null, NODE_SUBTYPE);
3548 }
3549 out.endTag(null, NODE_IMI);
3550 }
3551 out.endTag(null, NODE_SUBTYPES);
3552 out.endDocument();
3553 subtypesFile.finishWrite(fos);
3554 } catch (java.io.IOException e) {
3555 Slog.w(TAG, "Error writing subtypes", e);
3556 if (fos != null) {
3557 subtypesFile.failWrite(fos);
3558 }
3559 }
3560 }
3561
3562 private static void readAdditionalInputMethodSubtypes(
3563 HashMap<String, List<InputMethodSubtype>> allSubtypes, AtomicFile subtypesFile) {
3564 if (allSubtypes == null || subtypesFile == null) return;
3565 allSubtypes.clear();
3566 FileInputStream fis = null;
3567 try {
3568 fis = subtypesFile.openRead();
3569 final XmlPullParser parser = Xml.newPullParser();
3570 parser.setInput(fis, null);
3571 int type = parser.getEventType();
3572 // Skip parsing until START_TAG
3573 while ((type = parser.next()) != XmlPullParser.START_TAG
3574 && type != XmlPullParser.END_DOCUMENT) {}
3575 String firstNodeName = parser.getName();
3576 if (!NODE_SUBTYPES.equals(firstNodeName)) {
3577 throw new XmlPullParserException("Xml doesn't start with subtypes");
3578 }
3579 final int depth =parser.getDepth();
3580 String currentImiId = null;
3581 ArrayList<InputMethodSubtype> tempSubtypesArray = null;
3582 while (((type = parser.next()) != XmlPullParser.END_TAG
3583 || parser.getDepth() > depth) && type != XmlPullParser.END_DOCUMENT) {
3584 if (type != XmlPullParser.START_TAG)
3585 continue;
3586 final String nodeName = parser.getName();
3587 if (NODE_IMI.equals(nodeName)) {
3588 currentImiId = parser.getAttributeValue(null, ATTR_ID);
3589 if (TextUtils.isEmpty(currentImiId)) {
3590 Slog.w(TAG, "Invalid imi id found in subtypes.xml");
3591 continue;
3592 }
3593 tempSubtypesArray = new ArrayList<InputMethodSubtype>();
3594 allSubtypes.put(currentImiId, tempSubtypesArray);
3595 } else if (NODE_SUBTYPE.equals(nodeName)) {
3596 if (TextUtils.isEmpty(currentImiId) || tempSubtypesArray == null) {
3597 Slog.w(TAG, "IME uninstalled or not valid.: " + currentImiId);
3598 continue;
3599 }
3600 final int icon = Integer.valueOf(
3601 parser.getAttributeValue(null, ATTR_ICON));
3602 final int label = Integer.valueOf(
3603 parser.getAttributeValue(null, ATTR_LABEL));
3604 final String imeSubtypeLocale =
3605 parser.getAttributeValue(null, ATTR_IME_SUBTYPE_LOCALE);
3606 final String imeSubtypeMode =
3607 parser.getAttributeValue(null, ATTR_IME_SUBTYPE_MODE);
3608 final String imeSubtypeExtraValue =
3609 parser.getAttributeValue(null, ATTR_IME_SUBTYPE_EXTRA_VALUE);
satok4a28bde2011-06-29 21:03:40 +09003610 final boolean isAuxiliary = "1".equals(String.valueOf(
3611 parser.getAttributeValue(null, ATTR_IS_AUXILIARY)));
Yohei Yukawa443c2ba2014-09-10 14:10:30 +09003612 final InputMethodSubtype subtype = new InputMethodSubtypeBuilder()
3613 .setSubtypeNameResId(label)
3614 .setSubtypeIconResId(icon)
3615 .setSubtypeLocale(imeSubtypeLocale)
3616 .setSubtypeMode(imeSubtypeMode)
3617 .setSubtypeExtraValue(imeSubtypeExtraValue)
3618 .setIsAuxiliary(isAuxiliary)
3619 .build();
satoke7c6998e2011-06-03 17:57:59 +09003620 tempSubtypesArray.add(subtype);
3621 }
3622 }
3623 } catch (XmlPullParserException e) {
3624 Slog.w(TAG, "Error reading subtypes: " + e);
3625 return;
3626 } catch (java.io.IOException e) {
3627 Slog.w(TAG, "Error reading subtypes: " + e);
3628 return;
3629 } catch (NumberFormatException e) {
3630 Slog.w(TAG, "Error reading subtypes: " + e);
3631 return;
3632 } finally {
3633 if (fis != null) {
3634 try {
3635 fis.close();
3636 } catch (java.io.IOException e1) {
3637 Slog.w(TAG, "Failed to close.");
3638 }
3639 }
3640 }
3641 }
3642 }
3643
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003644 @Override
3645 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
3646 if (mContext.checkCallingOrSelfPermission(android.Manifest.permission.DUMP)
3647 != PackageManager.PERMISSION_GRANTED) {
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003648
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003649 pw.println("Permission Denial: can't dump InputMethodManager from from pid="
3650 + Binder.getCallingPid()
3651 + ", uid=" + Binder.getCallingUid());
3652 return;
3653 }
3654
3655 IInputMethod method;
3656 ClientState client;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003657
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003658 final Printer p = new PrintWriterPrinter(pw);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003659
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003660 synchronized (mMethodMap) {
3661 p.println("Current Input Method Manager state:");
3662 int N = mMethodList.size();
3663 p.println(" Input Methods:");
3664 for (int i=0; i<N; i++) {
3665 InputMethodInfo info = mMethodList.get(i);
3666 p.println(" InputMethod #" + i + ":");
3667 info.dump(p, " ");
3668 }
3669 p.println(" Clients:");
3670 for (ClientState ci : mClients.values()) {
3671 p.println(" Client " + ci + ":");
3672 p.println(" client=" + ci.client);
3673 p.println(" inputContext=" + ci.inputContext);
3674 p.println(" sessionRequested=" + ci.sessionRequested);
3675 p.println(" curSession=" + ci.curSession);
3676 }
The Android Open Source Project10592532009-03-18 17:39:46 -07003677 p.println(" mCurMethodId=" + mCurMethodId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003678 client = mCurClient;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07003679 p.println(" mCurClient=" + client + " mCurSeq=" + mCurSeq);
3680 p.println(" mCurFocusedWindow=" + mCurFocusedWindow);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003681 p.println(" mCurId=" + mCurId + " mHaveConnect=" + mHaveConnection
3682 + " mBoundToMethod=" + mBoundToMethod);
3683 p.println(" mCurToken=" + mCurToken);
3684 p.println(" mCurIntent=" + mCurIntent);
3685 method = mCurMethod;
3686 p.println(" mCurMethod=" + mCurMethod);
3687 p.println(" mEnabledSession=" + mEnabledSession);
3688 p.println(" mShowRequested=" + mShowRequested
3689 + " mShowExplicitlyRequested=" + mShowExplicitlyRequested
3690 + " mShowForced=" + mShowForced
3691 + " mInputShown=" + mInputShown);
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09003692 p.println(" mCurUserActionNotificationSequenceNumber="
3693 + mCurUserActionNotificationSequenceNumber);
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07003694 p.println(" mSystemReady=" + mSystemReady + " mInteractive=" + mScreenOn);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003695 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003696
Jeff Brownb88102f2010-09-08 11:49:43 -07003697 p.println(" ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003698 if (client != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003699 pw.flush();
3700 try {
3701 client.client.asBinder().dump(fd, args);
3702 } catch (RemoteException e) {
3703 p.println("Input method client dead: " + e);
3704 }
Jeff Brownb88102f2010-09-08 11:49:43 -07003705 } else {
3706 p.println("No input method client.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003707 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003708
Jeff Brownb88102f2010-09-08 11:49:43 -07003709 p.println(" ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003710 if (method != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003711 pw.flush();
3712 try {
3713 method.asBinder().dump(fd, args);
3714 } catch (RemoteException e) {
3715 p.println("Input method service dead: " + e);
3716 }
Jeff Brownb88102f2010-09-08 11:49:43 -07003717 } else {
3718 p.println("No input method service.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003719 }
3720 }
3721}