blob: 3e068bcc5b87244bc2604da3c2aa05fcaa57490b [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
4 * use this file except in compliance with the License. You may obtain a copy of
5 * the License at
Doug Zongkerab5c49c2009-12-04 10:31:43 -08006 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007 * http://www.apache.org/licenses/LICENSE-2.0
Doug Zongkerab5c49c2009-12-04 10:31:43 -08008 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12 * License for the specific language governing permissions and limitations under
13 * the License.
14 */
15
16package com.android.server;
17
Dianne Hackborn21f1bd12010-02-19 17:02:21 -080018import com.android.internal.content.PackageMonitor;
Satoshi Kataokad7443c82013-10-15 17:45:43 +090019import com.android.internal.inputmethod.InputMethodSubtypeSwitchingController;
Satoshi Kataokad787f692013-10-26 04:44:21 +090020import com.android.internal.inputmethod.InputMethodSubtypeSwitchingController.ImeSubtypeListItem;
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +090021import com.android.internal.inputmethod.InputMethodUtils;
22import com.android.internal.inputmethod.InputMethodUtils.InputMethodSettings;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080023import com.android.internal.os.HandlerCaller;
Svetoslav Ganov758143e2012-08-06 16:40:27 -070024import com.android.internal.os.SomeArgs;
satoke7c6998e2011-06-03 17:57:59 +090025import com.android.internal.util.FastXmlSerializer;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080026import com.android.internal.view.IInputContext;
27import com.android.internal.view.IInputMethod;
Michael Wright52a53522013-03-14 10:59:38 -070028import com.android.internal.view.IInputSessionCallback;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080029import com.android.internal.view.IInputMethodClient;
30import com.android.internal.view.IInputMethodManager;
31import com.android.internal.view.IInputMethodSession;
32import com.android.internal.view.InputBindResult;
Adam Lesinskief2ea1f2013-12-05 16:48:06 -080033import com.android.server.statusbar.StatusBarManagerService;
satok01038492012-04-09 21:08:27 +090034import com.android.server.wm.WindowManagerService;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080035
satoke7c6998e2011-06-03 17:57:59 +090036import org.xmlpull.v1.XmlPullParser;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080037import org.xmlpull.v1.XmlPullParserException;
satoke7c6998e2011-06-03 17:57:59 +090038import org.xmlpull.v1.XmlSerializer;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080039
40import android.app.ActivityManagerNative;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +090041import android.app.AppGlobals;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080042import android.app.AlertDialog;
Yohei Yukawae63b5fa2014-09-19 13:14:55 +090043import android.app.AppOpsManager;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +090044import android.app.IUserSwitchObserver;
satokf90a33e2011-07-19 11:55:52 +090045import android.app.KeyguardManager;
satok7cfc0ed2011-06-20 21:29:36 +090046import android.app.Notification;
47import android.app.NotificationManager;
Dianne Hackborndd9b82c2009-09-03 00:18:47 -070048import android.app.PendingIntent;
satok5b927c432012-05-01 20:09:34 +090049import android.content.BroadcastReceiver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080050import android.content.ComponentName;
51import android.content.ContentResolver;
52import android.content.Context;
53import android.content.DialogInterface;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080054import android.content.DialogInterface.OnCancelListener;
Tadashi G. Takaokad130b802014-08-01 14:05:47 +090055import android.content.DialogInterface.OnClickListener;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080056import android.content.Intent;
satoke7c6998e2011-06-03 17:57:59 +090057import android.content.IntentFilter;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080058import android.content.ServiceConnection;
Brandon Ballinger6da35a02009-10-21 00:38:13 -070059import android.content.pm.ApplicationInfo;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +090060import android.content.pm.IPackageManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080061import android.content.pm.PackageManager;
62import android.content.pm.ResolveInfo;
63import android.content.pm.ServiceInfo;
Amith Yamasani734983f2014-03-04 16:48:05 -080064import android.content.pm.UserInfo;
Amith Yamasanie861ec12010-03-24 21:39:27 -070065import android.content.res.Configuration;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080066import android.content.res.Resources;
67import android.content.res.TypedArray;
68import android.database.ContentObserver;
Alan Viverette505e3ab2014-11-24 15:22:11 -080069import android.graphics.drawable.Drawable;
Joe Onorato857fd9b2011-01-27 15:08:35 -080070import android.inputmethodservice.InputMethodService;
Michael Wright7b5a96b2014-08-09 19:28:42 -070071import android.net.Uri;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080072import android.os.Binder;
satoke7c6998e2011-06-03 17:57:59 +090073import android.os.Environment;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080074import android.os.Handler;
75import android.os.IBinder;
76import android.os.IInterface;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +090077import android.os.IRemoteCallback;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080078import android.os.Message;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +090079import android.os.Process;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080080import android.os.Parcel;
81import android.os.RemoteException;
The Android Open Source Project4df24232009-03-05 14:34:35 -080082import android.os.ResultReceiver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080083import android.os.ServiceManager;
84import android.os.SystemClock;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +090085import android.os.UserHandle;
Amith Yamasani734983f2014-03-04 16:48:05 -080086import android.os.UserManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080087import android.provider.Settings;
88import android.text.TextUtils;
Christopher Tate7b9a28c2015-03-18 13:06:16 -070089import android.text.TextUtils.SimpleStringSplitter;
satokf9f01002011-05-19 21:31:50 +090090import android.text.style.SuggestionSpan;
Christopher Tate7b9a28c2015-03-18 13:06:16 -070091import android.util.ArrayMap;
92import android.util.ArraySet;
Dianne Hackborn39606a02012-07-31 17:54:35 -070093import android.util.AtomicFile;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080094import android.util.EventLog;
satokf9f01002011-05-19 21:31:50 +090095import android.util.LruCache;
satokab751aa2010-09-14 19:17:36 +090096import android.util.Pair;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080097import android.util.PrintWriterPrinter;
98import android.util.Printer;
satoke7c6998e2011-06-03 17:57:59 +090099import android.util.Slog;
100import android.util.Xml;
Tadashi G. Takaokad130b802014-08-01 14:05:47 +0900101import android.view.ContextThemeWrapper;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800102import android.view.IWindowManager;
Jeff Brownc28867a2013-03-26 15:42:39 -0700103import android.view.InputChannel;
Ken Wakasa05dbb652011-08-22 15:22:43 +0900104import android.view.LayoutInflater;
105import android.view.View;
106import android.view.ViewGroup;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800107import android.view.WindowManager;
satokab751aa2010-09-14 19:17:36 +0900108import android.view.inputmethod.EditorInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800109import android.view.inputmethod.InputBinding;
110import android.view.inputmethod.InputMethod;
111import android.view.inputmethod.InputMethodInfo;
112import android.view.inputmethod.InputMethodManager;
satokab751aa2010-09-14 19:17:36 +0900113import android.view.inputmethod.InputMethodSubtype;
Yohei Yukawa443c2ba2014-09-10 14:10:30 +0900114import android.view.inputmethod.InputMethodSubtype.InputMethodSubtypeBuilder;
Ken Wakasa05dbb652011-08-22 15:22:43 +0900115import android.widget.ArrayAdapter;
satok01038492012-04-09 21:08:27 +0900116import android.widget.CompoundButton;
117import android.widget.CompoundButton.OnCheckedChangeListener;
Ken Wakasa05dbb652011-08-22 15:22:43 +0900118import android.widget.RadioButton;
satok01038492012-04-09 21:08:27 +0900119import android.widget.Switch;
Ken Wakasa05dbb652011-08-22 15:22:43 +0900120import android.widget.TextView;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800121
satoke7c6998e2011-06-03 17:57:59 +0900122import java.io.File;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800123import java.io.FileDescriptor;
satoke7c6998e2011-06-03 17:57:59 +0900124import java.io.FileInputStream;
125import java.io.FileOutputStream;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800126import java.io.IOException;
127import java.io.PrintWriter;
128import java.util.ArrayList;
satok688bd472012-02-09 20:09:17 +0900129import java.util.Collections;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800130import java.util.HashMap;
Christopher Tate7b9a28c2015-03-18 13:06:16 -0700131import java.util.HashSet;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800132import java.util.List;
satok5b927c432012-05-01 20:09:34 +0900133import java.util.Locale;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800134
135/**
136 * This class provides a system service that manages input methods.
137 */
138public class InputMethodManagerService extends IInputMethodManager.Stub
139 implements ServiceConnection, Handler.Callback {
140 static final boolean DEBUG = false;
Christopher Tate7b9a28c2015-03-18 13:06:16 -0700141 static final boolean DEBUG_RESTORE = DEBUG || false;
Jeff Brown6ec6f792012-04-17 16:52:41 -0700142 static final String TAG = "InputMethodManagerService";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800143
Christopher Tate7b9a28c2015-03-18 13:06:16 -0700144 private static final char INPUT_METHOD_SEPARATOR = ':';
145 private static final char INPUT_METHOD_SUBTYPE_SEPARATOR = ';';
146
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800147 static final int MSG_SHOW_IM_PICKER = 1;
satokab751aa2010-09-14 19:17:36 +0900148 static final int MSG_SHOW_IM_SUBTYPE_PICKER = 2;
satok47a44912010-10-06 16:03:58 +0900149 static final int MSG_SHOW_IM_SUBTYPE_ENABLER = 3;
satok217f5482010-12-15 05:19:19 +0900150 static final int MSG_SHOW_IM_CONFIG = 4;
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
1293 InputBindResult startInputUncheckedLocked(ClientState cs,
1294 IInputContext inputContext, EditorInfo attribute, int controlFlags) {
1295 // If no method is currently selected, do nothing.
1296 if (mCurMethodId == null) {
1297 return mNoBinding;
1298 }
1299
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001300 if (mCurClient != cs) {
John Spurlocke0980502013-10-25 11:59:29 -04001301 // Was the keyguard locked when switching over to the new client?
1302 mCurClientInKeyguard = isKeyguardLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001303 // If the client is changing, we need to switch over to the new
1304 // one.
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001305 unbindCurrentClientLocked();
Joe Onorato8a9b2202010-02-26 18:56:32 -08001306 if (DEBUG) Slog.v(TAG, "switching to client: client = "
John Spurlocke0980502013-10-25 11:59:29 -04001307 + cs.client.asBinder() + " keyguard=" + mCurClientInKeyguard);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001308
1309 // If the screen is on, inform the new client it is active
1310 if (mScreenOn) {
Dianne Hackborna6e41342012-05-22 16:30:34 -07001311 executeOrSendMessage(cs.client, mCaller.obtainMessageIO(
1312 MSG_SET_ACTIVE, mScreenOn ? 1 : 0, cs));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001313 }
1314 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001315
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001316 // Bump up the sequence for this client and attach it.
1317 mCurSeq++;
1318 if (mCurSeq <= 0) mCurSeq = 1;
1319 mCurClient = cs;
1320 mCurInputContext = inputContext;
1321 mCurAttribute = attribute;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001322
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001323 // Check if the input method is changing.
1324 if (mCurId != null && mCurId.equals(mCurMethodId)) {
1325 if (cs.curSession != null) {
1326 // Fast case: if we are already connected to the input method,
1327 // then just return it.
Dianne Hackborn7663d802012-02-24 13:08:49 -08001328 return attachNewInputLocked(
1329 (controlFlags&InputMethodManager.CONTROL_START_INITIAL) != 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001330 }
1331 if (mHaveConnection) {
1332 if (mCurMethod != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001333 // Return to client, and we will get back with it when
1334 // we have had a session made for it.
Jeff Brownc28867a2013-03-26 15:42:39 -07001335 requestClientSessionLocked(cs);
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09001336 return new InputBindResult(null, null, mCurId, mCurSeq,
1337 mCurUserActionNotificationSequenceNumber);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001338 } else if (SystemClock.uptimeMillis()
1339 < (mLastBindTime+TIME_TO_RECONNECT)) {
1340 // In this case we have connected to the service, but
1341 // don't yet have its interface. If it hasn't been too
1342 // long since we did the connection, we'll return to
1343 // the client and wait to get the service interface so
1344 // we can report back. If it has been too long, we want
1345 // to fall through so we can try a disconnect/reconnect
1346 // to see if we can get back in touch with the service.
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 {
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001350 EventLog.writeEvent(EventLogTags.IMF_FORCE_RECONNECT_IME,
1351 mCurMethodId, SystemClock.uptimeMillis()-mLastBindTime, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001352 }
1353 }
1354 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001355
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001356 return startInputInnerLocked();
1357 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001358
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001359 InputBindResult startInputInnerLocked() {
1360 if (mCurMethodId == null) {
1361 return mNoBinding;
1362 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001363
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001364 if (!mSystemReady) {
1365 // If the system is not yet ready, we shouldn't be running third
1366 // party code.
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09001367 return new InputBindResult(null, null, mCurMethodId, mCurSeq,
1368 mCurUserActionNotificationSequenceNumber);
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001369 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001370
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001371 InputMethodInfo info = mMethodMap.get(mCurMethodId);
1372 if (info == null) {
1373 throw new IllegalArgumentException("Unknown id: " + mCurMethodId);
1374 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001375
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07001376 unbindCurrentMethodLocked(false, true);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001377
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001378 mCurIntent = new Intent(InputMethod.SERVICE_INTERFACE);
1379 mCurIntent.setComponent(info.getComponent());
Dianne Hackborndd9b82c2009-09-03 00:18:47 -07001380 mCurIntent.putExtra(Intent.EXTRA_CLIENT_LABEL,
1381 com.android.internal.R.string.input_method_binding_label);
1382 mCurIntent.putExtra(Intent.EXTRA_CLIENT_INTENT, PendingIntent.getActivity(
1383 mContext, 0, new Intent(Settings.ACTION_INPUT_METHOD_SETTINGS), 0));
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001384 if (bindCurrentInputMethodService(mCurIntent, this, Context.BIND_AUTO_CREATE
Dianne Hackbornf0f94d12014-03-17 16:04:21 -07001385 | Context.BIND_NOT_VISIBLE | Context.BIND_NOT_FOREGROUND
1386 | Context.BIND_SHOWING_UI)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001387 mLastBindTime = SystemClock.uptimeMillis();
1388 mHaveConnection = true;
1389 mCurId = info.getId();
1390 mCurToken = new Binder();
1391 try {
Craig Mautnerca0ac712013-03-14 09:43:02 -07001392 if (true || DEBUG) Slog.v(TAG, "Adding window token: " + mCurToken);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001393 mIWindowManager.addWindowToken(mCurToken,
1394 WindowManager.LayoutParams.TYPE_INPUT_METHOD);
1395 } catch (RemoteException e) {
1396 }
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09001397 return new InputBindResult(null, null, mCurId, mCurSeq,
1398 mCurUserActionNotificationSequenceNumber);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001399 } else {
1400 mCurIntent = null;
Joe Onorato8a9b2202010-02-26 18:56:32 -08001401 Slog.w(TAG, "Failure connecting to input method service: "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001402 + mCurIntent);
1403 }
1404 return null;
1405 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001406
satoke7c6998e2011-06-03 17:57:59 +09001407 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001408 public InputBindResult startInput(IInputMethodClient client,
Dianne Hackborn7663d802012-02-24 13:08:49 -08001409 IInputContext inputContext, EditorInfo attribute, int controlFlags) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001410 if (!calledFromValidUser()) {
1411 return null;
1412 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001413 synchronized (mMethodMap) {
1414 final long ident = Binder.clearCallingIdentity();
1415 try {
Dianne Hackborn7663d802012-02-24 13:08:49 -08001416 return startInputLocked(client, inputContext, attribute, controlFlags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001417 } finally {
1418 Binder.restoreCallingIdentity(ident);
1419 }
1420 }
1421 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001422
satoke7c6998e2011-06-03 17:57:59 +09001423 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001424 public void finishInput(IInputMethodClient client) {
1425 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001426
satoke7c6998e2011-06-03 17:57:59 +09001427 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001428 public void onServiceConnected(ComponentName name, IBinder service) {
1429 synchronized (mMethodMap) {
1430 if (mCurIntent != null && name.equals(mCurIntent.getComponent())) {
1431 mCurMethod = IInputMethod.Stub.asInterface(service);
Dianne Hackborncc278702009-09-02 23:07:23 -07001432 if (mCurToken == null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001433 Slog.w(TAG, "Service connected without a token!");
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07001434 unbindCurrentMethodLocked(false, false);
Dianne Hackborncc278702009-09-02 23:07:23 -07001435 return;
1436 }
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07001437 if (DEBUG) Slog.v(TAG, "Initiating attach with token: " + mCurToken);
Dianne Hackborncc278702009-09-02 23:07:23 -07001438 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
1439 MSG_ATTACH_TOKEN, mCurMethod, mCurToken));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001440 if (mCurClient != null) {
Jeff Brownc28867a2013-03-26 15:42:39 -07001441 clearClientSessionLocked(mCurClient);
1442 requestClientSessionLocked(mCurClient);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001443 }
1444 }
1445 }
1446 }
1447
Jeff Brownc28867a2013-03-26 15:42:39 -07001448 void onSessionCreated(IInputMethod method, IInputMethodSession session,
1449 InputChannel channel) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001450 synchronized (mMethodMap) {
1451 if (mCurMethod != null && method != null
1452 && mCurMethod.asBinder() == method.asBinder()) {
1453 if (mCurClient != null) {
Jeff Brownc28867a2013-03-26 15:42:39 -07001454 clearClientSessionLocked(mCurClient);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001455 mCurClient.curSession = new SessionState(mCurClient,
Jeff Brownc28867a2013-03-26 15:42:39 -07001456 method, session, channel);
Dianne Hackborn7663d802012-02-24 13:08:49 -08001457 InputBindResult res = attachNewInputLocked(true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001458 if (res.method != null) {
1459 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageOO(
1460 MSG_BIND_METHOD, mCurClient.client, res));
1461 }
Jeff Brownc28867a2013-03-26 15:42:39 -07001462 return;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001463 }
1464 }
1465 }
Jeff Brownc28867a2013-03-26 15:42:39 -07001466
1467 // Session abandoned. Close its associated input channel.
1468 channel.dispose();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001469 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001470
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07001471 void unbindCurrentMethodLocked(boolean reportToClient, boolean savePosition) {
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07001472 if (mVisibleBound) {
1473 mContext.unbindService(mVisibleConnection);
1474 mVisibleBound = false;
1475 }
1476
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001477 if (mHaveConnection) {
1478 mContext.unbindService(this);
1479 mHaveConnection = false;
1480 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001481
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001482 if (mCurToken != null) {
1483 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001484 if (DEBUG) Slog.v(TAG, "Removing window token: " + mCurToken);
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07001485 if ((mImeWindowVis & InputMethodService.IME_ACTIVE) != 0 && savePosition) {
satoke0a99412012-05-10 02:22:58 +09001486 // The current IME is shown. Hence an IME switch (transition) is happening.
1487 mWindowManagerService.saveLastInputMethodWindowForTransition();
1488 }
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001489 mIWindowManager.removeWindowToken(mCurToken);
1490 } catch (RemoteException e) {
1491 }
1492 mCurToken = null;
1493 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001494
The Android Open Source Project10592532009-03-18 17:39:46 -07001495 mCurId = null;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001496 clearCurMethodLocked();
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001497
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001498 if (reportToClient && mCurClient != null) {
1499 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
1500 MSG_UNBIND_METHOD, mCurSeq, mCurClient.client));
1501 }
1502 }
Jeff Brownc28867a2013-03-26 15:42:39 -07001503
1504 void requestClientSessionLocked(ClientState cs) {
1505 if (!cs.sessionRequested) {
1506 if (DEBUG) Slog.v(TAG, "Creating new session for client " + cs);
1507 InputChannel[] channels = InputChannel.openInputChannelPair(cs.toString());
1508 cs.sessionRequested = true;
1509 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOOO(
1510 MSG_CREATE_SESSION, mCurMethod, channels[1],
1511 new MethodCallback(this, mCurMethod, channels[0])));
1512 }
1513 }
1514
1515 void clearClientSessionLocked(ClientState cs) {
1516 finishSessionLocked(cs.curSession);
1517 cs.curSession = null;
1518 cs.sessionRequested = false;
1519 }
1520
1521 private void finishSessionLocked(SessionState sessionState) {
1522 if (sessionState != null) {
1523 if (sessionState.session != null) {
1524 try {
1525 sessionState.session.finishSession();
1526 } catch (RemoteException e) {
1527 Slog.w(TAG, "Session failed to close due to remote exception", e);
1528 setImeWindowVisibilityStatusHiddenLocked();
1529 }
1530 sessionState.session = null;
1531 }
1532 if (sessionState.channel != null) {
1533 sessionState.channel.dispose();
1534 sessionState.channel = null;
Devin Taylor0c33ed22010-02-23 13:26:46 -06001535 }
1536 }
1537 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001538
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001539 void clearCurMethodLocked() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001540 if (mCurMethod != null) {
1541 for (ClientState cs : mClients.values()) {
Jeff Brownc28867a2013-03-26 15:42:39 -07001542 clearClientSessionLocked(cs);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001543 }
Devin Taylor0c33ed22010-02-23 13:26:46 -06001544
Jeff Brownc28867a2013-03-26 15:42:39 -07001545 finishSessionLocked(mEnabledSession);
Devin Taylor0c33ed22010-02-23 13:26:46 -06001546 mEnabledSession = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001547 mCurMethod = null;
1548 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07001549 if (mStatusBar != null) {
1550 mStatusBar.setIconVisibility("ime", false);
1551 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001552 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001553
satoke7c6998e2011-06-03 17:57:59 +09001554 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001555 public void onServiceDisconnected(ComponentName name) {
1556 synchronized (mMethodMap) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001557 if (DEBUG) Slog.v(TAG, "Service disconnected: " + name
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001558 + " mCurIntent=" + mCurIntent);
1559 if (mCurMethod != null && mCurIntent != null
1560 && name.equals(mCurIntent.getComponent())) {
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001561 clearCurMethodLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001562 // We consider this to be a new bind attempt, since the system
1563 // should now try to restart the service for us.
1564 mLastBindTime = SystemClock.uptimeMillis();
1565 mShowRequested = mInputShown;
1566 mInputShown = false;
1567 if (mCurClient != null) {
1568 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
1569 MSG_UNBIND_METHOD, mCurSeq, mCurClient.client));
1570 }
1571 }
1572 }
1573 }
1574
satokf9f01002011-05-19 21:31:50 +09001575 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001576 public void updateStatusIcon(IBinder token, String packageName, int iconId) {
1577 long ident = Binder.clearCallingIdentity();
1578 try {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001579 synchronized (mMethodMap) {
Yohei Yukawaa0755742014-06-04 20:28:18 +09001580 if (!calledWithValidToken(token)) {
1581 final int uid = Binder.getCallingUid();
1582 Slog.e(TAG, "Ignoring updateStatusIcon due to an invalid token. uid:" + uid
1583 + " token:" + token);
1584 return;
1585 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001586 if (iconId == 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001587 if (DEBUG) Slog.d(TAG, "hide the small icon for the input method");
Dianne Hackborn661cd522011-08-22 00:26:20 -07001588 if (mStatusBar != null) {
1589 mStatusBar.setIconVisibility("ime", false);
1590 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001591 } else if (packageName != null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001592 if (DEBUG) Slog.d(TAG, "show a small icon for the input method");
Svetoslav Ganov6179ea32011-06-28 01:12:41 -07001593 CharSequence contentDescription = null;
1594 try {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001595 // Use PackageManager to load label
1596 final PackageManager packageManager = mContext.getPackageManager();
Svetoslav Ganov6179ea32011-06-28 01:12:41 -07001597 contentDescription = packageManager.getApplicationLabel(
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001598 mIPackageManager.getApplicationInfo(packageName, 0,
1599 mSettings.getCurrentUserId()));
1600 } catch (RemoteException e) {
Svetoslav Ganov6179ea32011-06-28 01:12:41 -07001601 /* ignore */
1602 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07001603 if (mStatusBar != null) {
1604 mStatusBar.setIcon("ime", packageName, iconId, 0,
1605 contentDescription != null
1606 ? contentDescription.toString() : null);
1607 mStatusBar.setIconVisibility("ime", true);
1608 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001609 }
1610 }
1611 } finally {
1612 Binder.restoreCallingIdentity(ident);
1613 }
1614 }
1615
satok7cfc0ed2011-06-20 21:29:36 +09001616 private boolean needsToShowImeSwitchOngoingNotification() {
1617 if (!mShowOngoingImeSwitcherForPhones) return false;
Jason Monk807ef762014-05-08 15:47:46 -04001618 if (mSwitchingDialog != null) return false;
satok2c93efc2012-04-02 19:33:47 +09001619 if (isScreenLocked()) return false;
satok7cfc0ed2011-06-20 21:29:36 +09001620 synchronized (mMethodMap) {
1621 List<InputMethodInfo> imis = mSettings.getEnabledInputMethodListLocked();
1622 final int N = imis.size();
satokb6359412011-06-28 17:47:41 +09001623 if (N > 2) return true;
1624 if (N < 1) return false;
1625 int nonAuxCount = 0;
1626 int auxCount = 0;
1627 InputMethodSubtype nonAuxSubtype = null;
1628 InputMethodSubtype auxSubtype = null;
satok7cfc0ed2011-06-20 21:29:36 +09001629 for(int i = 0; i < N; ++i) {
1630 final InputMethodInfo imi = imis.get(i);
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001631 final List<InputMethodSubtype> subtypes =
1632 mSettings.getEnabledInputMethodSubtypeListLocked(mContext, imi, true);
satok7cfc0ed2011-06-20 21:29:36 +09001633 final int subtypeCount = subtypes.size();
1634 if (subtypeCount == 0) {
satokb6359412011-06-28 17:47:41 +09001635 ++nonAuxCount;
satok7cfc0ed2011-06-20 21:29:36 +09001636 } else {
1637 for (int j = 0; j < subtypeCount; ++j) {
satokb6359412011-06-28 17:47:41 +09001638 final InputMethodSubtype subtype = subtypes.get(j);
1639 if (!subtype.isAuxiliary()) {
1640 ++nonAuxCount;
1641 nonAuxSubtype = subtype;
1642 } else {
1643 ++auxCount;
1644 auxSubtype = subtype;
satok7cfc0ed2011-06-20 21:29:36 +09001645 }
1646 }
1647 }
satok7cfc0ed2011-06-20 21:29:36 +09001648 }
satokb6359412011-06-28 17:47:41 +09001649 if (nonAuxCount > 1 || auxCount > 1) {
1650 return true;
1651 } else if (nonAuxCount == 1 && auxCount == 1) {
1652 if (nonAuxSubtype != null && auxSubtype != null
satok9747f892011-09-12 15:56:40 +09001653 && (nonAuxSubtype.getLocale().equals(auxSubtype.getLocale())
1654 || auxSubtype.overridesImplicitlyEnabledSubtype()
1655 || nonAuxSubtype.overridesImplicitlyEnabledSubtype())
satokb6359412011-06-28 17:47:41 +09001656 && nonAuxSubtype.containsExtraValueKey(TAG_TRY_SUPPRESSING_IME_SWITCHER)) {
1657 return false;
1658 }
1659 return true;
1660 }
1661 return false;
satok7cfc0ed2011-06-20 21:29:36 +09001662 }
satok7cfc0ed2011-06-20 21:29:36 +09001663 }
1664
John Spurlocke0980502013-10-25 11:59:29 -04001665 private boolean isKeyguardLocked() {
1666 return mKeyguardManager != null && mKeyguardManager.isKeyguardLocked();
1667 }
1668
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001669 // Caution! This method is called in this class. Handle multi-user carefully
satokdbf29502011-08-25 15:28:23 +09001670 @SuppressWarnings("deprecation")
satokf9f01002011-05-19 21:31:50 +09001671 @Override
Joe Onorato857fd9b2011-01-27 15:08:35 -08001672 public void setImeWindowStatus(IBinder token, int vis, int backDisposition) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001673 final long ident = Binder.clearCallingIdentity();
satok06487a52010-10-29 11:37:18 +09001674 try {
Yohei Yukawa22c97be2014-06-04 19:43:36 +09001675 if (!calledWithValidToken(token)) {
1676 final int uid = Binder.getCallingUid();
1677 Slog.e(TAG, "Ignoring setImeWindowStatus due to an invalid token. uid:" + uid
1678 + " token:" + token);
satok06487a52010-10-29 11:37:18 +09001679 return;
1680 }
satok06487a52010-10-29 11:37:18 +09001681 synchronized (mMethodMap) {
John Spurlocke0980502013-10-25 11:59:29 -04001682 // apply policy for binder calls
1683 if (vis != 0 && isKeyguardLocked() && !mCurClientInKeyguard) {
1684 vis = 0;
1685 }
Joe Onorato857fd9b2011-01-27 15:08:35 -08001686 mImeWindowVis = vis;
1687 mBackDisposition = backDisposition;
jungheang.lee217fd292013-02-26 16:53:22 +09001688 final boolean iconVisibility = ((vis & (InputMethodService.IME_ACTIVE)) != 0)
1689 && (mWindowManagerService.isHardKeyboardAvailable()
1690 || (vis & (InputMethodService.IME_VISIBLE)) != 0);
Jason Monkb605fec2014-05-02 17:04:10 -04001691 final boolean needsToShowImeSwitcher = iconVisibility
1692 && needsToShowImeSwitchOngoingNotification();
1693 if (mStatusBar != null) {
1694 mStatusBar.setImeWindowStatus(token, vis, backDisposition,
1695 needsToShowImeSwitcher);
1696 }
satok5bc8e732011-07-22 21:07:23 +09001697 final InputMethodInfo imi = mMethodMap.get(mCurMethodId);
Jason Monkb605fec2014-05-02 17:04:10 -04001698 if (imi != null && needsToShowImeSwitcher) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001699 // Used to load label
satok7cfc0ed2011-06-20 21:29:36 +09001700 final CharSequence title = mRes.getText(
1701 com.android.internal.R.string.select_input_method);
Satoshi Kataokab2827262013-07-04 19:43:14 +09001702 final CharSequence summary = InputMethodUtils.getImeAndSubtypeDisplayName(
1703 mContext, imi, mCurrentSubtype);
satok5bc8e732011-07-22 21:07:23 +09001704
Alan Viverette4a357cd2015-03-18 18:37:18 -07001705 mImeSwitcherNotification.color = mContext.getColor(
Selim Cinek255dd042014-08-19 22:29:02 +02001706 com.android.internal.R.color.system_notification_accent_color);
satok7cfc0ed2011-06-20 21:29:36 +09001707 mImeSwitcherNotification.setLatestEventInfo(
satok5bc8e732011-07-22 21:07:23 +09001708 mContext, title, summary, mImeSwitchPendingIntent);
Jason Monke463c742014-05-02 12:31:45 -04001709 if ((mNotificationManager != null)
1710 && !mWindowManagerService.hasNavigationBar()) {
Satoshi Kataoka135e5fb2012-09-28 18:25:06 +09001711 if (DEBUG) {
Satoshi Kataokab2827262013-07-04 19:43:14 +09001712 Slog.d(TAG, "--- show notification: label = " + summary);
Satoshi Kataoka135e5fb2012-09-28 18:25:06 +09001713 }
1714 mNotificationManager.notifyAsUser(null,
Dianne Hackborn661cd522011-08-22 00:26:20 -07001715 com.android.internal.R.string.select_input_method,
Satoshi Kataoka135e5fb2012-09-28 18:25:06 +09001716 mImeSwitcherNotification, UserHandle.ALL);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001717 mNotificationShown = true;
1718 }
satok7cfc0ed2011-06-20 21:29:36 +09001719 } else {
Dianne Hackborn661cd522011-08-22 00:26:20 -07001720 if (mNotificationShown && mNotificationManager != null) {
Satoshi Kataoka135e5fb2012-09-28 18:25:06 +09001721 if (DEBUG) {
1722 Slog.d(TAG, "--- hide notification");
1723 }
1724 mNotificationManager.cancelAsUser(null,
1725 com.android.internal.R.string.select_input_method, UserHandle.ALL);
satok7cfc0ed2011-06-20 21:29:36 +09001726 mNotificationShown = false;
1727 }
1728 }
satok06487a52010-10-29 11:37:18 +09001729 }
1730 } finally {
1731 Binder.restoreCallingIdentity(ident);
1732 }
1733 }
1734
satoke7c6998e2011-06-03 17:57:59 +09001735 @Override
satokf9f01002011-05-19 21:31:50 +09001736 public void registerSuggestionSpansForNotification(SuggestionSpan[] spans) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001737 if (!calledFromValidUser()) {
1738 return;
1739 }
satokf9f01002011-05-19 21:31:50 +09001740 synchronized (mMethodMap) {
1741 final InputMethodInfo currentImi = mMethodMap.get(mCurMethodId);
1742 for (int i = 0; i < spans.length; ++i) {
1743 SuggestionSpan ss = spans[i];
satok42c5a162011-05-26 16:46:14 +09001744 if (!TextUtils.isEmpty(ss.getNotificationTargetClassName())) {
satokf9f01002011-05-19 21:31:50 +09001745 mSecureSuggestionSpans.put(ss, currentImi);
1746 }
1747 }
1748 }
1749 }
1750
satoke7c6998e2011-06-03 17:57:59 +09001751 @Override
satokf9f01002011-05-19 21:31:50 +09001752 public boolean notifySuggestionPicked(SuggestionSpan span, String originalString, int index) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001753 if (!calledFromValidUser()) {
1754 return false;
1755 }
satokf9f01002011-05-19 21:31:50 +09001756 synchronized (mMethodMap) {
1757 final InputMethodInfo targetImi = mSecureSuggestionSpans.get(span);
1758 // TODO: Do not send the intent if the process of the targetImi is already dead.
1759 if (targetImi != null) {
1760 final String[] suggestions = span.getSuggestions();
1761 if (index < 0 || index >= suggestions.length) return false;
satok42c5a162011-05-26 16:46:14 +09001762 final String className = span.getNotificationTargetClassName();
satokf9f01002011-05-19 21:31:50 +09001763 final Intent intent = new Intent();
1764 // Ensures that only a class in the original IME package will receive the
1765 // notification.
satok42c5a162011-05-26 16:46:14 +09001766 intent.setClassName(targetImi.getPackageName(), className);
satokf9f01002011-05-19 21:31:50 +09001767 intent.setAction(SuggestionSpan.ACTION_SUGGESTION_PICKED);
1768 intent.putExtra(SuggestionSpan.SUGGESTION_SPAN_PICKED_BEFORE, originalString);
1769 intent.putExtra(SuggestionSpan.SUGGESTION_SPAN_PICKED_AFTER, suggestions[index]);
1770 intent.putExtra(SuggestionSpan.SUGGESTION_SPAN_PICKED_HASHCODE, span.hashCode());
Amith Yamasanif043de92012-10-24 06:42:40 -07001771 final long ident = Binder.clearCallingIdentity();
1772 try {
1773 mContext.sendBroadcastAsUser(intent, UserHandle.CURRENT);
1774 } finally {
1775 Binder.restoreCallingIdentity(ident);
1776 }
satokf9f01002011-05-19 21:31:50 +09001777 return true;
1778 }
1779 }
1780 return false;
1781 }
1782
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001783 void updateFromSettingsLocked(boolean enabledMayChange) {
Michael Wright7b5a96b2014-08-09 19:28:42 -07001784 updateInputMethodsFromSettingsLocked(enabledMayChange);
1785 updateKeyboardFromSettingsLocked();
1786 }
1787
1788 void updateInputMethodsFromSettingsLocked(boolean enabledMayChange) {
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001789 if (enabledMayChange) {
1790 List<InputMethodInfo> enabled = mSettings.getEnabledInputMethodListLocked();
1791 for (int i=0; i<enabled.size(); i++) {
1792 // We allow the user to select "disabled until used" apps, so if they
1793 // are enabling one of those here we now need to make it enabled.
1794 InputMethodInfo imm = enabled.get(i);
1795 try {
1796 ApplicationInfo ai = mIPackageManager.getApplicationInfo(imm.getPackageName(),
1797 PackageManager.GET_DISABLED_UNTIL_USED_COMPONENTS,
1798 mSettings.getCurrentUserId());
Satoshi Kataoka7987a312013-04-17 18:59:33 +09001799 if (ai != null && ai.enabledSetting
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001800 == PackageManager.COMPONENT_ENABLED_STATE_DISABLED_UNTIL_USED) {
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +09001801 if (DEBUG) {
1802 Slog.d(TAG, "Update state(" + imm.getId()
1803 + "): DISABLED_UNTIL_USED -> DEFAULT");
1804 }
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001805 mIPackageManager.setApplicationEnabledSetting(imm.getPackageName(),
1806 PackageManager.COMPONENT_ENABLED_STATE_DEFAULT,
Dianne Hackborn3fa3c28a2013-03-26 16:15:41 -07001807 PackageManager.DONT_KILL_APP, mSettings.getCurrentUserId(),
1808 mContext.getBasePackageName());
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001809 }
1810 } catch (RemoteException e) {
1811 }
1812 }
1813 }
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001814 // We are assuming that whoever is changing DEFAULT_INPUT_METHOD and
1815 // ENABLED_INPUT_METHODS is taking care of keeping them correctly in
1816 // sync, so we will never have a DEFAULT_INPUT_METHOD that is not
1817 // enabled.
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001818 String id = mSettings.getSelectedInputMethod();
satok03eb319a2010-11-11 18:17:42 +09001819 // There is no input method selected, try to choose new applicable input method.
1820 if (TextUtils.isEmpty(id) && chooseNewDefaultIMELocked()) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001821 id = mSettings.getSelectedInputMethod();
satok03eb319a2010-11-11 18:17:42 +09001822 }
1823 if (!TextUtils.isEmpty(id)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001824 try {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001825 setInputMethodLocked(id, mSettings.getSelectedInputMethodSubtypeId(id));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001826 } catch (IllegalArgumentException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001827 Slog.w(TAG, "Unknown input method from prefs: " + id, e);
The Android Open Source Project10592532009-03-18 17:39:46 -07001828 mCurMethodId = null;
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07001829 unbindCurrentMethodLocked(true, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001830 }
satokf3db1af2010-11-23 13:34:33 +09001831 mShortcutInputMethodsAndSubtypes.clear();
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001832 } else {
1833 // There is no longer an input method set, so stop any current one.
The Android Open Source Project10592532009-03-18 17:39:46 -07001834 mCurMethodId = null;
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07001835 unbindCurrentMethodLocked(true, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001836 }
Yohei Yukawa3d46bab2014-05-30 18:10:18 +09001837 // Here is not the perfect place to reset the switching controller. Ideally
1838 // mSwitchingController and mSettings should be able to share the same state.
1839 // TODO: Make sure that mSwitchingController and mSettings are sharing the
1840 // the same enabled IMEs list.
1841 mSwitchingController.resetCircularListLocked(mContext);
Michael Wright7b5a96b2014-08-09 19:28:42 -07001842
1843 }
1844
1845 public void updateKeyboardFromSettingsLocked() {
1846 mShowImeWithHardKeyboard = mSettings.isShowImeWithHardKeyboardEnabled();
1847 if (mSwitchingDialog != null
1848 && mSwitchingDialogTitleView != null
1849 && mSwitchingDialog.isShowing()) {
1850 final Switch hardKeySwitch = (Switch)mSwitchingDialogTitleView.findViewById(
1851 com.android.internal.R.id.hard_keyboard_switch);
1852 hardKeySwitch.setChecked(mShowImeWithHardKeyboard);
1853 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001854 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001855
satokab751aa2010-09-14 19:17:36 +09001856 /* package */ void setInputMethodLocked(String id, int subtypeId) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001857 InputMethodInfo info = mMethodMap.get(id);
1858 if (info == null) {
satok913a8922010-08-26 21:53:41 +09001859 throw new IllegalArgumentException("Unknown id: " + id);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001860 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001861
Yohei Yukawae63b5fa2014-09-19 13:14:55 +09001862 if (mCurClient != null && mCurAttribute != null) {
1863 final int uid = mCurClient.uid;
1864 final String packageName = mCurAttribute.packageName;
1865 if (SystemConfig.getInstance().getFixedImeApps().contains(packageName)) {
1866 if (InputMethodUtils.checkIfPackageBelongsToUid(mAppOpsManager, uid, packageName)) {
1867 return;
1868 }
1869 // TODO: Do we need to lock the input method when the application reported an
1870 // incorrect package name?
1871 Slog.e(TAG, "Ignoring FixedImeApps due to the validation failure. uid=" + uid
1872 + " package=" + packageName);
1873 }
1874 }
1875
satokd81e9502012-05-21 12:58:45 +09001876 // See if we need to notify a subtype change within the same IME.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001877 if (id.equals(mCurMethodId)) {
satokd81e9502012-05-21 12:58:45 +09001878 final int subtypeCount = info.getSubtypeCount();
1879 if (subtypeCount <= 0) {
1880 return;
satokcd7cd292010-11-20 15:46:23 +09001881 }
satokd81e9502012-05-21 12:58:45 +09001882 final InputMethodSubtype oldSubtype = mCurrentSubtype;
1883 final InputMethodSubtype newSubtype;
1884 if (subtypeId >= 0 && subtypeId < subtypeCount) {
1885 newSubtype = info.getSubtypeAt(subtypeId);
1886 } else {
1887 // If subtype is null, try to find the most applicable one from
1888 // getCurrentInputMethodSubtype.
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001889 newSubtype = getCurrentInputMethodSubtypeLocked();
satokd81e9502012-05-21 12:58:45 +09001890 }
1891 if (newSubtype == null || oldSubtype == null) {
1892 Slog.w(TAG, "Illegal subtype state: old subtype = " + oldSubtype
1893 + ", new subtype = " + newSubtype);
1894 return;
1895 }
1896 if (newSubtype != oldSubtype) {
1897 setSelectedInputMethodAndSubtypeLocked(info, subtypeId, true);
1898 if (mCurMethod != null) {
1899 try {
1900 refreshImeWindowVisibilityLocked();
1901 mCurMethod.changeInputMethodSubtype(newSubtype);
1902 } catch (RemoteException e) {
1903 Slog.w(TAG, "Failed to call changeInputMethodSubtype");
satokab751aa2010-09-14 19:17:36 +09001904 }
1905 }
1906 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001907 return;
1908 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001909
satokd81e9502012-05-21 12:58:45 +09001910 // Changing to a different IME.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001911 final long ident = Binder.clearCallingIdentity();
1912 try {
satokab751aa2010-09-14 19:17:36 +09001913 // Set a subtype to this input method.
1914 // subtypeId the name of a subtype which will be set.
satok723a27e2010-11-11 14:58:11 +09001915 setSelectedInputMethodAndSubtypeLocked(info, subtypeId, false);
1916 // mCurMethodId should be updated after setSelectedInputMethodAndSubtypeLocked()
1917 // because mCurMethodId is stored as a history in
1918 // setSelectedInputMethodAndSubtypeLocked().
1919 mCurMethodId = id;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001920
1921 if (ActivityManagerNative.isSystemReady()) {
1922 Intent intent = new Intent(Intent.ACTION_INPUT_METHOD_CHANGED);
Dianne Hackborn1c633fc2009-12-08 19:45:14 -08001923 intent.addFlags(Intent.FLAG_RECEIVER_REPLACE_PENDING);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001924 intent.putExtra("input_method_id", id);
Amith Yamasanicd757062012-10-19 18:23:52 -07001925 mContext.sendBroadcastAsUser(intent, UserHandle.CURRENT);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001926 }
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001927 unbindCurrentClientLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001928 } finally {
1929 Binder.restoreCallingIdentity(ident);
1930 }
1931 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001932
satok42c5a162011-05-26 16:46:14 +09001933 @Override
The Android Open Source Project4df24232009-03-05 14:34:35 -08001934 public boolean showSoftInput(IInputMethodClient client, int flags,
1935 ResultReceiver resultReceiver) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001936 if (!calledFromValidUser()) {
1937 return false;
1938 }
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001939 int uid = Binder.getCallingUid();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001940 long ident = Binder.clearCallingIdentity();
1941 try {
1942 synchronized (mMethodMap) {
1943 if (mCurClient == null || client == null
1944 || mCurClient.client.asBinder() != client.asBinder()) {
1945 try {
1946 // We need to check if this is the current client with
1947 // focus in the window manager, to allow this call to
1948 // be made before input is started in it.
1949 if (!mIWindowManager.inputMethodClientHasFocus(client)) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001950 Slog.w(TAG, "Ignoring showSoftInput of uid " + uid + ": " + client);
The Android Open Source Project4df24232009-03-05 14:34:35 -08001951 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001952 }
1953 } catch (RemoteException e) {
The Android Open Source Project4df24232009-03-05 14:34:35 -08001954 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001955 }
1956 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001957
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07001958 if (DEBUG) Slog.v(TAG, "Client requesting input be shown");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001959 return showCurrentInputLocked(flags, resultReceiver);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001960 }
1961 } finally {
1962 Binder.restoreCallingIdentity(ident);
1963 }
1964 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001965
The Android Open Source Project4df24232009-03-05 14:34:35 -08001966 boolean showCurrentInputLocked(int flags, ResultReceiver resultReceiver) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001967 mShowRequested = true;
1968 if ((flags&InputMethodManager.SHOW_IMPLICIT) == 0) {
1969 mShowExplicitlyRequested = true;
1970 }
1971 if ((flags&InputMethodManager.SHOW_FORCED) != 0) {
1972 mShowExplicitlyRequested = true;
1973 mShowForced = true;
1974 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001975
Dianne Hackborncc278702009-09-02 23:07:23 -07001976 if (!mSystemReady) {
1977 return false;
1978 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001979
The Android Open Source Project4df24232009-03-05 14:34:35 -08001980 boolean res = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001981 if (mCurMethod != null) {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07001982 if (DEBUG) Slog.d(TAG, "showCurrentInputLocked: mCurToken=" + mCurToken);
The Android Open Source Project4df24232009-03-05 14:34:35 -08001983 executeOrSendMessage(mCurMethod, mCaller.obtainMessageIOO(
1984 MSG_SHOW_SOFT_INPUT, getImeShowFlags(), mCurMethod,
1985 resultReceiver));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001986 mInputShown = true;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07001987 if (mHaveConnection && !mVisibleBound) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001988 bindCurrentInputMethodService(
Dianne Hackbornf0f94d12014-03-17 16:04:21 -07001989 mCurIntent, mVisibleConnection, Context.BIND_AUTO_CREATE
1990 | Context.BIND_TREAT_LIKE_ACTIVITY);
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07001991 mVisibleBound = true;
1992 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08001993 res = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001994 } else if (mHaveConnection && SystemClock.uptimeMillis()
satok59b424c2011-09-30 17:21:46 +09001995 >= (mLastBindTime+TIME_TO_RECONNECT)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001996 // The client has asked to have the input method shown, but
1997 // we have been sitting here too long with a connection to the
1998 // service and no interface received, so let's disconnect/connect
1999 // to try to prod things along.
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002000 EventLog.writeEvent(EventLogTags.IMF_FORCE_RECONNECT_IME, mCurMethodId,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002001 SystemClock.uptimeMillis()-mLastBindTime,1);
satok59b424c2011-09-30 17:21:46 +09002002 Slog.w(TAG, "Force disconnect/connect to the IME in showCurrentInputLocked()");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002003 mContext.unbindService(this);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002004 bindCurrentInputMethodService(mCurIntent, this, Context.BIND_AUTO_CREATE
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07002005 | Context.BIND_NOT_VISIBLE);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002006 } else {
2007 if (DEBUG) {
2008 Slog.d(TAG, "Can't show input: connection = " + mHaveConnection + ", time = "
2009 + ((mLastBindTime+TIME_TO_RECONNECT) - SystemClock.uptimeMillis()));
2010 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002011 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002012
The Android Open Source Project4df24232009-03-05 14:34:35 -08002013 return res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002014 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002015
satok42c5a162011-05-26 16:46:14 +09002016 @Override
The Android Open Source Project4df24232009-03-05 14:34:35 -08002017 public boolean hideSoftInput(IInputMethodClient client, int flags,
2018 ResultReceiver resultReceiver) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002019 if (!calledFromValidUser()) {
2020 return false;
2021 }
Dianne Hackborncef65ee2010-09-30 18:27:22 -07002022 int uid = Binder.getCallingUid();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002023 long ident = Binder.clearCallingIdentity();
2024 try {
2025 synchronized (mMethodMap) {
2026 if (mCurClient == null || client == null
2027 || mCurClient.client.asBinder() != client.asBinder()) {
2028 try {
2029 // We need to check if this is the current client with
2030 // focus in the window manager, to allow this call to
2031 // be made before input is started in it.
2032 if (!mIWindowManager.inputMethodClientHasFocus(client)) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07002033 if (DEBUG) Slog.w(TAG, "Ignoring hideSoftInput of uid "
2034 + uid + ": " + client);
satok15452a42011-10-28 17:58:28 +09002035 setImeWindowVisibilityStatusHiddenLocked();
The Android Open Source Project4df24232009-03-05 14:34:35 -08002036 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002037 }
2038 } catch (RemoteException e) {
satok15452a42011-10-28 17:58:28 +09002039 setImeWindowVisibilityStatusHiddenLocked();
The Android Open Source Project4df24232009-03-05 14:34:35 -08002040 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002041 }
2042 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002043
Joe Onorato8a9b2202010-02-26 18:56:32 -08002044 if (DEBUG) Slog.v(TAG, "Client requesting input be hidden");
The Android Open Source Project4df24232009-03-05 14:34:35 -08002045 return hideCurrentInputLocked(flags, resultReceiver);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002046 }
2047 } finally {
2048 Binder.restoreCallingIdentity(ident);
2049 }
2050 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002051
The Android Open Source Project4df24232009-03-05 14:34:35 -08002052 boolean hideCurrentInputLocked(int flags, ResultReceiver resultReceiver) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002053 if ((flags&InputMethodManager.HIDE_IMPLICIT_ONLY) != 0
2054 && (mShowExplicitlyRequested || mShowForced)) {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002055 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 -08002056 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002057 }
2058 if (mShowForced && (flags&InputMethodManager.HIDE_NOT_ALWAYS) != 0) {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002059 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 -08002060 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002061 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002062 boolean res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002063 if (mInputShown && mCurMethod != null) {
The Android Open Source Project4df24232009-03-05 14:34:35 -08002064 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
2065 MSG_HIDE_SOFT_INPUT, mCurMethod, resultReceiver));
2066 res = true;
2067 } else {
2068 res = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002069 }
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07002070 if (mHaveConnection && mVisibleBound) {
2071 mContext.unbindService(mVisibleConnection);
2072 mVisibleBound = false;
2073 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002074 mInputShown = false;
2075 mShowRequested = false;
2076 mShowExplicitlyRequested = false;
2077 mShowForced = false;
The Android Open Source Project4df24232009-03-05 14:34:35 -08002078 return res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002079 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002080
satok42c5a162011-05-26 16:46:14 +09002081 @Override
Dianne Hackborn7663d802012-02-24 13:08:49 -08002082 public InputBindResult windowGainedFocus(IInputMethodClient client, IBinder windowToken,
2083 int controlFlags, int softInputMode, int windowFlags,
2084 EditorInfo attribute, IInputContext inputContext) {
Satoshi Kataoka8d033052012-11-19 17:30:40 +09002085 // Needs to check the validity before clearing calling identity
2086 final boolean calledFromValidUser = calledFromValidUser();
2087
Dianne Hackborn7663d802012-02-24 13:08:49 -08002088 InputBindResult res = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002089 long ident = Binder.clearCallingIdentity();
2090 try {
2091 synchronized (mMethodMap) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002092 if (DEBUG) Slog.v(TAG, "windowGainedFocus: " + client.asBinder()
Dianne Hackborn7663d802012-02-24 13:08:49 -08002093 + " controlFlags=#" + Integer.toHexString(controlFlags)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002094 + " softInputMode=#" + Integer.toHexString(softInputMode)
Dianne Hackborn7663d802012-02-24 13:08:49 -08002095 + " windowFlags=#" + Integer.toHexString(windowFlags));
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002096
Dianne Hackborn7663d802012-02-24 13:08:49 -08002097 ClientState cs = mClients.get(client.asBinder());
2098 if (cs == null) {
2099 throw new IllegalArgumentException("unknown client "
2100 + client.asBinder());
2101 }
2102
2103 try {
2104 if (!mIWindowManager.inputMethodClientHasFocus(cs.client)) {
2105 // Check with the window manager to make sure this client actually
2106 // has a window with focus. If not, reject. This is thread safe
2107 // because if the focus changes some time before or after, the
2108 // next client receiving focus that has any interest in input will
2109 // be calling through here after that change happens.
2110 Slog.w(TAG, "Focus gain on non-focused client " + cs.client
2111 + " (uid=" + cs.uid + " pid=" + cs.pid + ")");
2112 return null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002113 }
Dianne Hackborn7663d802012-02-24 13:08:49 -08002114 } catch (RemoteException e) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002115 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002116
Satoshi Kataoka8d033052012-11-19 17:30:40 +09002117 if (!calledFromValidUser) {
2118 Slog.w(TAG, "A background user is requesting window. Hiding IME.");
2119 Slog.w(TAG, "If you want to interect with IME, you need "
2120 + "android.permission.INTERACT_ACROSS_USERS_FULL");
2121 hideCurrentInputLocked(0, null);
2122 return null;
2123 }
2124
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07002125 if (mCurFocusedWindow == windowToken) {
Dianne Hackbornac920872012-05-22 11:49:49 -07002126 Slog.w(TAG, "Window already focused, ignoring focus gain of: " + client
Satoshi Kataoka35739502012-10-02 19:00:26 +09002127 + " attribute=" + attribute + ", token = " + windowToken);
Dianne Hackborn7663d802012-02-24 13:08:49 -08002128 if (attribute != null) {
2129 return startInputUncheckedLocked(cs, inputContext, attribute,
2130 controlFlags);
2131 }
2132 return null;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07002133 }
2134 mCurFocusedWindow = windowToken;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002135
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08002136 // Should we auto-show the IME even if the caller has not
2137 // specified what should be done with it?
2138 // We only do this automatically if the window can resize
2139 // to accommodate the IME (so what the user sees will give
2140 // them good context without input information being obscured
2141 // by the IME) or if running on a large screen where there
2142 // is more room for the target window + IME.
2143 final boolean doAutoShow =
2144 (softInputMode & WindowManager.LayoutParams.SOFT_INPUT_MASK_ADJUST)
2145 == WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE
2146 || mRes.getConfiguration().isLayoutSizeAtLeast(
2147 Configuration.SCREENLAYOUT_SIZE_LARGE);
Dianne Hackborn7663d802012-02-24 13:08:49 -08002148 final boolean isTextEditor =
2149 (controlFlags&InputMethodManager.CONTROL_WINDOW_IS_TEXT_EDITOR) != 0;
2150
2151 // We want to start input before showing the IME, but after closing
2152 // it. We want to do this after closing it to help the IME disappear
2153 // more quickly (not get stuck behind it initializing itself for the
2154 // new focused input, even if its window wants to hide the IME).
2155 boolean didStart = false;
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08002156
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002157 switch (softInputMode&WindowManager.LayoutParams.SOFT_INPUT_MASK_STATE) {
2158 case WindowManager.LayoutParams.SOFT_INPUT_STATE_UNSPECIFIED:
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08002159 if (!isTextEditor || !doAutoShow) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002160 if (WindowManager.LayoutParams.mayUseInputMethod(windowFlags)) {
2161 // There is no focus view, and this window will
2162 // be behind any soft input window, so hide the
2163 // soft input window if it is shown.
Joe Onorato8a9b2202010-02-26 18:56:32 -08002164 if (DEBUG) Slog.v(TAG, "Unspecified window will hide input");
The Android Open Source Project4df24232009-03-05 14:34:35 -08002165 hideCurrentInputLocked(InputMethodManager.HIDE_NOT_ALWAYS, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002166 }
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08002167 } else if (isTextEditor && doAutoShow && (softInputMode &
2168 WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002169 // There is a focus view, and we are navigating forward
2170 // into the window, so show the input window for the user.
Dianne Hackborn7663d802012-02-24 13:08:49 -08002171 // We only do this automatically if the window can resize
2172 // to accommodate the IME (so what the user sees will give
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08002173 // them good context without input information being obscured
2174 // by the IME) or if running on a large screen where there
2175 // is more room for the target window + IME.
Joe Onorato8a9b2202010-02-26 18:56:32 -08002176 if (DEBUG) Slog.v(TAG, "Unspecified window will show input");
Dianne Hackborn7663d802012-02-24 13:08:49 -08002177 if (attribute != null) {
2178 res = startInputUncheckedLocked(cs, inputContext, attribute,
2179 controlFlags);
2180 didStart = true;
2181 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002182 showCurrentInputLocked(InputMethodManager.SHOW_IMPLICIT, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002183 }
2184 break;
2185 case WindowManager.LayoutParams.SOFT_INPUT_STATE_UNCHANGED:
2186 // Do nothing.
2187 break;
2188 case WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN:
2189 if ((softInputMode &
2190 WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002191 if (DEBUG) Slog.v(TAG, "Window asks to hide input going forward");
The Android Open Source Project4df24232009-03-05 14:34:35 -08002192 hideCurrentInputLocked(0, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002193 }
2194 break;
2195 case WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN:
Joe Onorato8a9b2202010-02-26 18:56:32 -08002196 if (DEBUG) Slog.v(TAG, "Window asks to hide input");
The Android Open Source Project4df24232009-03-05 14:34:35 -08002197 hideCurrentInputLocked(0, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002198 break;
2199 case WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE:
2200 if ((softInputMode &
2201 WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002202 if (DEBUG) Slog.v(TAG, "Window asks to show input going forward");
Dianne Hackborn7663d802012-02-24 13:08:49 -08002203 if (attribute != null) {
2204 res = startInputUncheckedLocked(cs, inputContext, attribute,
2205 controlFlags);
2206 didStart = true;
2207 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002208 showCurrentInputLocked(InputMethodManager.SHOW_IMPLICIT, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002209 }
2210 break;
2211 case WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE:
Joe Onorato8a9b2202010-02-26 18:56:32 -08002212 if (DEBUG) Slog.v(TAG, "Window asks to always show input");
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 break;
2220 }
Dianne Hackborn7663d802012-02-24 13:08:49 -08002221
2222 if (!didStart && attribute != null) {
2223 res = startInputUncheckedLocked(cs, inputContext, attribute,
2224 controlFlags);
2225 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002226 }
2227 } finally {
2228 Binder.restoreCallingIdentity(ident);
2229 }
Dianne Hackborn7663d802012-02-24 13:08:49 -08002230
2231 return res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002232 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002233
satok42c5a162011-05-26 16:46:14 +09002234 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002235 public void showInputMethodPickerFromClient(IInputMethodClient client) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002236 if (!calledFromValidUser()) {
2237 return;
2238 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002239 synchronized (mMethodMap) {
2240 if (mCurClient == null || client == null
2241 || mCurClient.client.asBinder() != client.asBinder()) {
satok47a44912010-10-06 16:03:58 +09002242 Slog.w(TAG, "Ignoring showInputMethodPickerFromClient of uid "
Dianne Hackborncef65ee2010-09-30 18:27:22 -07002243 + Binder.getCallingUid() + ": " + client);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002244 }
2245
satok440aab52010-11-25 09:43:11 +09002246 // Always call subtype picker, because subtype picker is a superset of input method
2247 // picker.
satokab751aa2010-09-14 19:17:36 +09002248 mHandler.sendEmptyMessage(MSG_SHOW_IM_SUBTYPE_PICKER);
2249 }
2250 }
2251
satok42c5a162011-05-26 16:46:14 +09002252 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002253 public void setInputMethod(IBinder token, String id) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002254 if (!calledFromValidUser()) {
2255 return;
2256 }
satok28203512010-11-24 11:06:49 +09002257 setInputMethodWithSubtypeId(token, id, NOT_A_SUBTYPE_ID);
2258 }
2259
satok42c5a162011-05-26 16:46:14 +09002260 @Override
satok28203512010-11-24 11:06:49 +09002261 public void setInputMethodAndSubtype(IBinder token, String id, InputMethodSubtype subtype) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002262 if (!calledFromValidUser()) {
2263 return;
2264 }
satok28203512010-11-24 11:06:49 +09002265 synchronized (mMethodMap) {
2266 if (subtype != null) {
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002267 setInputMethodWithSubtypeIdLocked(token, id,
2268 InputMethodUtils.getSubtypeIdFromHashCode(mMethodMap.get(id),
2269 subtype.hashCode()));
satok28203512010-11-24 11:06:49 +09002270 } else {
2271 setInputMethod(token, id);
2272 }
2273 }
satokab751aa2010-09-14 19:17:36 +09002274 }
2275
satok42c5a162011-05-26 16:46:14 +09002276 @Override
satokb416a712010-11-25 20:42:14 +09002277 public void showInputMethodAndSubtypeEnablerFromClient(
satok217f5482010-12-15 05:19:19 +09002278 IInputMethodClient client, String inputMethodId) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002279 if (!calledFromValidUser()) {
2280 return;
2281 }
satokb416a712010-11-25 20:42:14 +09002282 synchronized (mMethodMap) {
2283 if (mCurClient == null || client == null
2284 || mCurClient.client.asBinder() != client.asBinder()) {
2285 Slog.w(TAG, "Ignoring showInputMethodAndSubtypeEnablerFromClient of: " + client);
2286 }
satok7fee71f2010-12-17 18:54:26 +09002287 executeOrSendMessage(mCurMethod, mCaller.obtainMessageO(
2288 MSG_SHOW_IM_SUBTYPE_ENABLER, inputMethodId));
satokb416a712010-11-25 20:42:14 +09002289 }
2290 }
2291
satok4fc87d62011-05-20 16:13:43 +09002292 @Override
satok735cf382010-11-11 20:40:09 +09002293 public boolean switchToLastInputMethod(IBinder token) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002294 if (!calledFromValidUser()) {
2295 return false;
2296 }
satok735cf382010-11-11 20:40:09 +09002297 synchronized (mMethodMap) {
satokc445bcd2011-01-25 18:57:24 +09002298 final Pair<String, String> lastIme = mSettings.getLastInputMethodAndSubtypeLocked();
satok4fc87d62011-05-20 16:13:43 +09002299 final InputMethodInfo lastImi;
satok208d5632011-05-20 22:13:38 +09002300 if (lastIme != null) {
satok4fc87d62011-05-20 16:13:43 +09002301 lastImi = mMethodMap.get(lastIme.first);
2302 } else {
2303 lastImi = null;
satok735cf382010-11-11 20:40:09 +09002304 }
satok4fc87d62011-05-20 16:13:43 +09002305 String targetLastImiId = null;
2306 int subtypeId = NOT_A_SUBTYPE_ID;
2307 if (lastIme != null && lastImi != null) {
2308 final boolean imiIdIsSame = lastImi.getId().equals(mCurMethodId);
2309 final int lastSubtypeHash = Integer.valueOf(lastIme.second);
2310 final int currentSubtypeHash = mCurrentSubtype == null ? NOT_A_SUBTYPE_ID
2311 : mCurrentSubtype.hashCode();
2312 // If the last IME is the same as the current IME and the last subtype is not
2313 // defined, there is no need to switch to the last IME.
2314 if (!imiIdIsSame || lastSubtypeHash != currentSubtypeHash) {
2315 targetLastImiId = lastIme.first;
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002316 subtypeId = InputMethodUtils.getSubtypeIdFromHashCode(lastImi, lastSubtypeHash);
satok4fc87d62011-05-20 16:13:43 +09002317 }
2318 }
2319
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002320 if (TextUtils.isEmpty(targetLastImiId)
2321 && !InputMethodUtils.canAddToLastInputMethod(mCurrentSubtype)) {
satok4fc87d62011-05-20 16:13:43 +09002322 // This is a safety net. If the currentSubtype can't be added to the history
2323 // and the framework couldn't find the last ime, we will make the last ime be
2324 // the most applicable enabled keyboard subtype of the system imes.
2325 final List<InputMethodInfo> enabled = mSettings.getEnabledInputMethodListLocked();
2326 if (enabled != null) {
2327 final int N = enabled.size();
2328 final String locale = mCurrentSubtype == null
2329 ? mRes.getConfiguration().locale.toString()
2330 : mCurrentSubtype.getLocale();
2331 for (int i = 0; i < N; ++i) {
2332 final InputMethodInfo imi = enabled.get(i);
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002333 if (imi.getSubtypeCount() > 0 && InputMethodUtils.isSystemIme(imi)) {
satok4fc87d62011-05-20 16:13:43 +09002334 InputMethodSubtype keyboardSubtype =
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002335 InputMethodUtils.findLastResortApplicableSubtypeLocked(mRes,
2336 InputMethodUtils.getSubtypes(imi),
2337 InputMethodUtils.SUBTYPE_MODE_KEYBOARD, locale, true);
satok4fc87d62011-05-20 16:13:43 +09002338 if (keyboardSubtype != null) {
2339 targetLastImiId = imi.getId();
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002340 subtypeId = InputMethodUtils.getSubtypeIdFromHashCode(
satok4fc87d62011-05-20 16:13:43 +09002341 imi, keyboardSubtype.hashCode());
2342 if(keyboardSubtype.getLocale().equals(locale)) {
2343 break;
2344 }
2345 }
2346 }
2347 }
2348 }
2349 }
2350
2351 if (!TextUtils.isEmpty(targetLastImiId)) {
2352 if (DEBUG) {
2353 Slog.d(TAG, "Switch to: " + lastImi.getId() + ", " + lastIme.second
2354 + ", from: " + mCurMethodId + ", " + subtypeId);
2355 }
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002356 setInputMethodWithSubtypeIdLocked(token, targetLastImiId, subtypeId);
satok4fc87d62011-05-20 16:13:43 +09002357 return true;
2358 } else {
2359 return false;
2360 }
satok735cf382010-11-11 20:40:09 +09002361 }
2362 }
2363
satoke7c6998e2011-06-03 17:57:59 +09002364 @Override
satok688bd472012-02-09 20:09:17 +09002365 public boolean switchToNextInputMethod(IBinder token, boolean onlyCurrentIme) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002366 if (!calledFromValidUser()) {
2367 return false;
2368 }
satok688bd472012-02-09 20:09:17 +09002369 synchronized (mMethodMap) {
Yohei Yukawaa0755742014-06-04 20:28:18 +09002370 if (!calledWithValidToken(token)) {
2371 final int uid = Binder.getCallingUid();
2372 Slog.e(TAG, "Ignoring switchToNextInputMethod due to an invalid token. uid:" + uid
2373 + " token:" + token);
2374 return false;
2375 }
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002376 final ImeSubtypeListItem nextSubtype = mSwitchingController.getNextInputMethodLocked(
satok688bd472012-02-09 20:09:17 +09002377 onlyCurrentIme, mMethodMap.get(mCurMethodId), mCurrentSubtype);
2378 if (nextSubtype == null) {
2379 return false;
2380 }
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002381 setInputMethodWithSubtypeIdLocked(token, nextSubtype.mImi.getId(),
2382 nextSubtype.mSubtypeId);
satok688bd472012-02-09 20:09:17 +09002383 return true;
2384 }
2385 }
2386
2387 @Override
Satoshi Kataoka2b10b522013-08-21 20:39:12 +09002388 public boolean shouldOfferSwitchingToNextInputMethod(IBinder token) {
2389 if (!calledFromValidUser()) {
2390 return false;
2391 }
2392 synchronized (mMethodMap) {
Yohei Yukawaa0755742014-06-04 20:28:18 +09002393 if (!calledWithValidToken(token)) {
2394 final int uid = Binder.getCallingUid();
2395 Slog.e(TAG, "Ignoring shouldOfferSwitchingToNextInputMethod due to an invalid "
2396 + "token. uid:" + uid + " token:" + token);
2397 return false;
2398 }
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002399 final ImeSubtypeListItem nextSubtype = mSwitchingController.getNextInputMethodLocked(
Satoshi Kataoka2b10b522013-08-21 20:39:12 +09002400 false /* onlyCurrentIme */, mMethodMap.get(mCurMethodId), mCurrentSubtype);
2401 if (nextSubtype == null) {
2402 return false;
2403 }
2404 return true;
2405 }
2406 }
2407
2408 @Override
satok68f1b782011-04-11 14:26:04 +09002409 public InputMethodSubtype getLastInputMethodSubtype() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002410 if (!calledFromValidUser()) {
2411 return null;
2412 }
satok68f1b782011-04-11 14:26:04 +09002413 synchronized (mMethodMap) {
2414 final Pair<String, String> lastIme = mSettings.getLastInputMethodAndSubtypeLocked();
2415 // TODO: Handle the case of the last IME with no subtypes
2416 if (lastIme == null || TextUtils.isEmpty(lastIme.first)
2417 || TextUtils.isEmpty(lastIme.second)) return null;
2418 final InputMethodInfo lastImi = mMethodMap.get(lastIme.first);
2419 if (lastImi == null) return null;
2420 try {
2421 final int lastSubtypeHash = Integer.valueOf(lastIme.second);
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002422 final int lastSubtypeId =
2423 InputMethodUtils.getSubtypeIdFromHashCode(lastImi, lastSubtypeHash);
satok0e7d7d62011-07-05 13:28:06 +09002424 if (lastSubtypeId < 0 || lastSubtypeId >= lastImi.getSubtypeCount()) {
2425 return null;
2426 }
2427 return lastImi.getSubtypeAt(lastSubtypeId);
satok68f1b782011-04-11 14:26:04 +09002428 } catch (NumberFormatException e) {
2429 return null;
2430 }
2431 }
2432 }
2433
satoke7c6998e2011-06-03 17:57:59 +09002434 @Override
satokee5e77c2011-09-02 18:50:15 +09002435 public void setAdditionalInputMethodSubtypes(String imiId, InputMethodSubtype[] subtypes) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002436 if (!calledFromValidUser()) {
2437 return;
2438 }
satok91e88122011-07-18 11:11:42 +09002439 // By this IPC call, only a process which shares the same uid with the IME can add
2440 // additional input method subtypes to the IME.
satokee5e77c2011-09-02 18:50:15 +09002441 if (TextUtils.isEmpty(imiId) || subtypes == null || subtypes.length == 0) return;
satoke7c6998e2011-06-03 17:57:59 +09002442 synchronized (mMethodMap) {
satok91e88122011-07-18 11:11:42 +09002443 final InputMethodInfo imi = mMethodMap.get(imiId);
satokee5e77c2011-09-02 18:50:15 +09002444 if (imi == null) return;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002445 final String[] packageInfos;
2446 try {
2447 packageInfos = mIPackageManager.getPackagesForUid(Binder.getCallingUid());
2448 } catch (RemoteException e) {
2449 Slog.e(TAG, "Failed to get package infos");
2450 return;
2451 }
satok91e88122011-07-18 11:11:42 +09002452 if (packageInfos != null) {
2453 final int packageNum = packageInfos.length;
2454 for (int i = 0; i < packageNum; ++i) {
2455 if (packageInfos[i].equals(imi.getPackageName())) {
2456 mFileManager.addInputMethodSubtypes(imi, subtypes);
satokc5933802011-08-31 21:26:04 +09002457 final long ident = Binder.clearCallingIdentity();
2458 try {
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09002459 buildInputMethodListLocked(mMethodList, mMethodMap,
2460 false /* resetDefaultEnabledIme */);
satokc5933802011-08-31 21:26:04 +09002461 } finally {
2462 Binder.restoreCallingIdentity(ident);
2463 }
satokee5e77c2011-09-02 18:50:15 +09002464 return;
satok91e88122011-07-18 11:11:42 +09002465 }
2466 }
2467 }
satoke7c6998e2011-06-03 17:57:59 +09002468 }
satokee5e77c2011-09-02 18:50:15 +09002469 return;
satoke7c6998e2011-06-03 17:57:59 +09002470 }
2471
Satoshi Kataoka658c7b82013-10-10 17:03:51 +09002472 @Override
2473 public int getInputMethodWindowVisibleHeight() {
2474 return mWindowManagerService.getInputMethodWindowVisibleHeight();
2475 }
2476
Satoshi Kataokad7443c82013-10-15 17:45:43 +09002477 @Override
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002478 public void notifyUserAction(int sequenceNumber) {
Satoshi Kataokad7443c82013-10-15 17:45:43 +09002479 if (DEBUG) {
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002480 Slog.d(TAG, "Got the notification of a user action. sequenceNumber:" + sequenceNumber);
Satoshi Kataokad7443c82013-10-15 17:45:43 +09002481 }
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002482 synchronized (mMethodMap) {
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002483 if (mCurUserActionNotificationSequenceNumber != sequenceNumber) {
2484 if (DEBUG) {
2485 Slog.d(TAG, "Ignoring the user action notification due to the sequence number "
2486 + "mismatch. expected:" + mCurUserActionNotificationSequenceNumber
2487 + " actual: " + sequenceNumber);
2488 }
2489 return;
2490 }
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002491 final InputMethodInfo imi = mMethodMap.get(mCurMethodId);
2492 if (imi != null) {
Yohei Yukawa02970512014-06-05 16:16:18 +09002493 mSwitchingController.onUserActionLocked(imi, mCurrentSubtype);
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002494 }
Satoshi Kataokad7443c82013-10-15 17:45:43 +09002495 }
2496 }
2497
satok28203512010-11-24 11:06:49 +09002498 private void setInputMethodWithSubtypeId(IBinder token, String id, int subtypeId) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002499 synchronized (mMethodMap) {
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002500 setInputMethodWithSubtypeIdLocked(token, id, subtypeId);
2501 }
2502 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002503
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002504 private void setInputMethodWithSubtypeIdLocked(IBinder token, String id, int subtypeId) {
2505 if (token == null) {
2506 if (mContext.checkCallingOrSelfPermission(
2507 android.Manifest.permission.WRITE_SECURE_SETTINGS)
2508 != PackageManager.PERMISSION_GRANTED) {
2509 throw new SecurityException(
2510 "Using null token requires permission "
2511 + android.Manifest.permission.WRITE_SECURE_SETTINGS);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002512 }
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002513 } else if (mCurToken != token) {
2514 Slog.w(TAG, "Ignoring setInputMethod of uid " + Binder.getCallingUid()
2515 + " token: " + token);
2516 return;
2517 }
2518
2519 final long ident = Binder.clearCallingIdentity();
2520 try {
2521 setInputMethodLocked(id, subtypeId);
2522 } finally {
2523 Binder.restoreCallingIdentity(ident);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002524 }
2525 }
2526
satok42c5a162011-05-26 16:46:14 +09002527 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002528 public void hideMySoftInput(IBinder token, int flags) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002529 if (!calledFromValidUser()) {
2530 return;
2531 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002532 synchronized (mMethodMap) {
Yohei Yukawa22c97be2014-06-04 19:43:36 +09002533 if (!calledWithValidToken(token)) {
2534 final int uid = Binder.getCallingUid();
2535 Slog.e(TAG, "Ignoring hideInputMethod due to an invalid token. uid:"
2536 + uid + " token:" + token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002537 return;
2538 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002539 long ident = Binder.clearCallingIdentity();
2540 try {
The Android Open Source Project4df24232009-03-05 14:34:35 -08002541 hideCurrentInputLocked(flags, null);
2542 } finally {
2543 Binder.restoreCallingIdentity(ident);
2544 }
2545 }
2546 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002547
satok42c5a162011-05-26 16:46:14 +09002548 @Override
The Android Open Source Project4df24232009-03-05 14:34:35 -08002549 public void showMySoftInput(IBinder token, int flags) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002550 if (!calledFromValidUser()) {
2551 return;
2552 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002553 synchronized (mMethodMap) {
Yohei Yukawa22c97be2014-06-04 19:43:36 +09002554 if (!calledWithValidToken(token)) {
2555 final int uid = Binder.getCallingUid();
2556 Slog.e(TAG, "Ignoring showMySoftInput due to an invalid token. uid:"
2557 + uid + " token:" + token);
The Android Open Source Project4df24232009-03-05 14:34:35 -08002558 return;
2559 }
2560 long ident = Binder.clearCallingIdentity();
2561 try {
2562 showCurrentInputLocked(flags, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002563 } finally {
2564 Binder.restoreCallingIdentity(ident);
2565 }
2566 }
2567 }
2568
2569 void setEnabledSessionInMainThread(SessionState session) {
2570 if (mEnabledSession != session) {
Yohei Yukawa9d91b432014-05-19 16:03:24 +09002571 if (mEnabledSession != null && mEnabledSession.session != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002572 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002573 if (DEBUG) Slog.v(TAG, "Disabling: " + mEnabledSession);
Yohei Yukawa9d91b432014-05-19 16:03:24 +09002574 mEnabledSession.method.setSessionEnabled(mEnabledSession.session, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002575 } catch (RemoteException e) {
2576 }
2577 }
2578 mEnabledSession = session;
Yohei Yukawa9d91b432014-05-19 16:03:24 +09002579 if (mEnabledSession != null && mEnabledSession.session != null) {
2580 try {
2581 if (DEBUG) Slog.v(TAG, "Enabling: " + mEnabledSession);
2582 mEnabledSession.method.setSessionEnabled(mEnabledSession.session, true);
2583 } catch (RemoteException e) {
2584 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002585 }
2586 }
2587 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002588
satok42c5a162011-05-26 16:46:14 +09002589 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002590 public boolean handleMessage(Message msg) {
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002591 SomeArgs args;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002592 switch (msg.what) {
2593 case MSG_SHOW_IM_PICKER:
2594 showInputMethodMenu();
2595 return true;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002596
satokab751aa2010-09-14 19:17:36 +09002597 case MSG_SHOW_IM_SUBTYPE_PICKER:
2598 showInputMethodSubtypeMenu();
2599 return true;
2600
satok47a44912010-10-06 16:03:58 +09002601 case MSG_SHOW_IM_SUBTYPE_ENABLER:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002602 args = (SomeArgs)msg.obj;
satok7fee71f2010-12-17 18:54:26 +09002603 showInputMethodAndSubtypeEnabler((String)args.arg1);
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002604 args.recycle();
satok217f5482010-12-15 05:19:19 +09002605 return true;
2606
2607 case MSG_SHOW_IM_CONFIG:
2608 showConfigureInputMethods();
satok47a44912010-10-06 16:03:58 +09002609 return true;
2610
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002611 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002612
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002613 case MSG_UNBIND_INPUT:
2614 try {
2615 ((IInputMethod)msg.obj).unbindInput();
2616 } catch (RemoteException e) {
2617 // There is nothing interesting about the method dying.
2618 }
2619 return true;
2620 case MSG_BIND_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002621 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002622 try {
2623 ((IInputMethod)args.arg1).bindInput((InputBinding)args.arg2);
2624 } catch (RemoteException e) {
2625 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002626 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002627 return true;
2628 case MSG_SHOW_SOFT_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002629 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002630 try {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002631 if (DEBUG) Slog.v(TAG, "Calling " + args.arg1 + ".showSoftInput("
Craig Mautner6efb4c72013-03-13 10:17:41 -07002632 + msg.arg1 + ", " + args.arg2 + ")");
Craig Mautnerca0ac712013-03-14 09:43:02 -07002633 ((IInputMethod)args.arg1).showSoftInput(msg.arg1, (ResultReceiver)args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002634 } catch (RemoteException e) {
2635 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002636 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002637 return true;
2638 case MSG_HIDE_SOFT_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002639 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002640 try {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002641 if (DEBUG) Slog.v(TAG, "Calling " + args.arg1 + ".hideSoftInput(0, "
Craig Mautner6efb4c72013-03-13 10:17:41 -07002642 + args.arg2 + ")");
Craig Mautnerca0ac712013-03-14 09:43:02 -07002643 ((IInputMethod)args.arg1).hideSoftInput(0, (ResultReceiver)args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002644 } catch (RemoteException e) {
2645 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002646 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002647 return true;
2648 case MSG_ATTACH_TOKEN:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002649 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002650 try {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002651 if (DEBUG) Slog.v(TAG, "Sending attach of token: " + args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002652 ((IInputMethod)args.arg1).attachToken((IBinder)args.arg2);
2653 } catch (RemoteException e) {
2654 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002655 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002656 return true;
Jeff Brownc28867a2013-03-26 15:42:39 -07002657 case MSG_CREATE_SESSION: {
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002658 args = (SomeArgs)msg.obj;
Jeff Brown1951ce82013-04-04 22:45:12 -07002659 IInputMethod method = (IInputMethod)args.arg1;
Jeff Brownc28867a2013-03-26 15:42:39 -07002660 InputChannel channel = (InputChannel)args.arg2;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002661 try {
Jeff Brown1951ce82013-04-04 22:45:12 -07002662 method.createSession(channel, (IInputSessionCallback)args.arg3);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002663 } catch (RemoteException e) {
Jeff Brownc28867a2013-03-26 15:42:39 -07002664 } finally {
Jeff Brown1951ce82013-04-04 22:45:12 -07002665 // Dispose the channel if the input method is not local to this process
2666 // because the remote proxy will get its own copy when unparceled.
2667 if (channel != null && Binder.isProxy(method)) {
Jeff Brownc28867a2013-03-26 15:42:39 -07002668 channel.dispose();
2669 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002670 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002671 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002672 return true;
Jeff Brownc28867a2013-03-26 15:42:39 -07002673 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002674 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002675
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002676 case MSG_START_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002677 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002678 try {
2679 SessionState session = (SessionState)args.arg1;
2680 setEnabledSessionInMainThread(session);
2681 session.method.startInput((IInputContext)args.arg2,
2682 (EditorInfo)args.arg3);
2683 } catch (RemoteException e) {
2684 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002685 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002686 return true;
2687 case MSG_RESTART_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002688 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002689 try {
2690 SessionState session = (SessionState)args.arg1;
2691 setEnabledSessionInMainThread(session);
2692 session.method.restartInput((IInputContext)args.arg2,
2693 (EditorInfo)args.arg3);
2694 } catch (RemoteException e) {
2695 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002696 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002697 return true;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002698
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002699 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002700
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002701 case MSG_UNBIND_METHOD:
2702 try {
2703 ((IInputMethodClient)msg.obj).onUnbindMethod(msg.arg1);
2704 } catch (RemoteException e) {
2705 // There is nothing interesting about the last client dying.
2706 }
2707 return true;
Jeff Brown1951ce82013-04-04 22:45:12 -07002708 case MSG_BIND_METHOD: {
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002709 args = (SomeArgs)msg.obj;
Jeff Brown1951ce82013-04-04 22:45:12 -07002710 IInputMethodClient client = (IInputMethodClient)args.arg1;
2711 InputBindResult res = (InputBindResult)args.arg2;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002712 try {
Jeff Brown1951ce82013-04-04 22:45:12 -07002713 client.onBindMethod(res);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002714 } catch (RemoteException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002715 Slog.w(TAG, "Client died receiving input method " + args.arg2);
Jeff Brown1951ce82013-04-04 22:45:12 -07002716 } finally {
2717 // Dispose the channel if the input method is not local to this process
2718 // because the remote proxy will get its own copy when unparceled.
2719 if (res.channel != null && Binder.isProxy(client)) {
2720 res.channel.dispose();
2721 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002722 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002723 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002724 return true;
Jeff Brown1951ce82013-04-04 22:45:12 -07002725 }
Dianne Hackborna6e41342012-05-22 16:30:34 -07002726 case MSG_SET_ACTIVE:
2727 try {
2728 ((ClientState)msg.obj).client.setActive(msg.arg1 != 0);
2729 } catch (RemoteException e) {
2730 Slog.w(TAG, "Got RemoteException sending setActive(false) notification to pid "
2731 + ((ClientState)msg.obj).pid + " uid "
2732 + ((ClientState)msg.obj).uid);
2733 }
2734 return true;
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002735 case MSG_SET_USER_ACTION_NOTIFICATION_SEQUENCE_NUMBER: {
2736 final int sequenceNumber = msg.arg1;
Yohei Yukawa080fa342014-08-31 16:10:05 -07002737 final ClientState clientState = (ClientState)msg.obj;
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002738 try {
Yohei Yukawa080fa342014-08-31 16:10:05 -07002739 clientState.client.setUserActionNotificationSequenceNumber(sequenceNumber);
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002740 } catch (RemoteException e) {
2741 Slog.w(TAG, "Got RemoteException sending "
2742 + "setUserActionNotificationSequenceNumber("
2743 + sequenceNumber + ") notification to pid "
Yohei Yukawa080fa342014-08-31 16:10:05 -07002744 + clientState.pid + " uid "
2745 + clientState.uid);
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002746 }
2747 return true;
2748 }
satok01038492012-04-09 21:08:27 +09002749
2750 // --------------------------------------------------------------
2751 case MSG_HARD_KEYBOARD_SWITCH_CHANGED:
Michael Wright7b5a96b2014-08-09 19:28:42 -07002752 mHardKeyboardListener.handleHardKeyboardStatusChange(msg.arg1 == 1);
satok01038492012-04-09 21:08:27 +09002753 return true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002754 }
2755 return false;
2756 }
2757
satokdc9ddae2011-10-06 12:22:36 +09002758 private boolean chooseNewDefaultIMELocked() {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002759 final InputMethodInfo imi = InputMethodUtils.getMostApplicableDefaultIME(
2760 mSettings.getEnabledInputMethodListLocked());
satokdc9ddae2011-10-06 12:22:36 +09002761 if (imi != null) {
satok03eb319a2010-11-11 18:17:42 +09002762 if (DEBUG) {
2763 Slog.d(TAG, "New default IME was selected: " + imi.getId());
2764 }
satok723a27e2010-11-11 14:58:11 +09002765 resetSelectedInputMethodAndSubtypeLocked(imi.getId());
Brandon Ballinger6da35a02009-10-21 00:38:13 -07002766 return true;
2767 }
2768
2769 return false;
2770 }
2771
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002772 void buildInputMethodListLocked(ArrayList<InputMethodInfo> list,
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09002773 HashMap<String, InputMethodInfo> map, boolean resetDefaultEnabledIme) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002774 if (DEBUG) {
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09002775 Slog.d(TAG, "--- re-buildInputMethodList reset = " + resetDefaultEnabledIme
Satoshi Kataoka0766eb02013-07-31 18:30:13 +09002776 + " \n ------ \n" + InputMethodUtils.getStackTrace());
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002777 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002778 list.clear();
2779 map.clear();
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002780
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002781 // Use for queryIntentServicesAsUser
2782 final PackageManager pm = mContext.getPackageManager();
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002783 String disabledSysImes = mSettings.getDisabledSystemInputMethods();
Amith Yamasanie861ec12010-03-24 21:39:27 -07002784 if (disabledSysImes == null) disabledSysImes = "";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002785
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002786 final List<ResolveInfo> services = pm.queryIntentServicesAsUser(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002787 new Intent(InputMethod.SERVICE_INTERFACE),
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08002788 PackageManager.GET_META_DATA | PackageManager.GET_DISABLED_UNTIL_USED_COMPONENTS,
2789 mSettings.getCurrentUserId());
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002790
satoke7c6998e2011-06-03 17:57:59 +09002791 final HashMap<String, List<InputMethodSubtype>> additionalSubtypes =
2792 mFileManager.getAllAdditionalInputMethodSubtypes();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002793 for (int i = 0; i < services.size(); ++i) {
2794 ResolveInfo ri = services.get(i);
2795 ServiceInfo si = ri.serviceInfo;
2796 ComponentName compName = new ComponentName(si.packageName, si.name);
2797 if (!android.Manifest.permission.BIND_INPUT_METHOD.equals(
2798 si.permission)) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002799 Slog.w(TAG, "Skipping input method " + compName
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002800 + ": it does not require the permission "
2801 + android.Manifest.permission.BIND_INPUT_METHOD);
2802 continue;
2803 }
2804
Joe Onorato8a9b2202010-02-26 18:56:32 -08002805 if (DEBUG) Slog.d(TAG, "Checking " + compName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002806
2807 try {
satoke7c6998e2011-06-03 17:57:59 +09002808 InputMethodInfo p = new InputMethodInfo(mContext, ri, additionalSubtypes);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002809 list.add(p);
Amith Yamasanie861ec12010-03-24 21:39:27 -07002810 final String id = p.getId();
2811 map.put(id, p);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002812
2813 if (DEBUG) {
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09002814 Slog.d(TAG, "Found an input method " + p);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002815 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002816
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002817 } catch (XmlPullParserException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002818 Slog.w(TAG, "Unable to load input method " + compName, e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002819 } catch (IOException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002820 Slog.w(TAG, "Unable to load input method " + compName, e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002821 }
2822 }
Brandon Ballinger6da35a02009-10-21 00:38:13 -07002823
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09002824 if (resetDefaultEnabledIme) {
2825 final ArrayList<InputMethodInfo> defaultEnabledIme =
2826 InputMethodUtils.getDefaultEnabledImes(mContext, mSystemReady, list);
2827 for (int i = 0; i < defaultEnabledIme.size(); ++i) {
2828 final InputMethodInfo imi = defaultEnabledIme.get(i);
2829 if (DEBUG) {
2830 Slog.d(TAG, "--- enable ime = " + imi);
2831 }
2832 setInputMethodEnabledLocked(imi.getId(), true);
2833 }
2834 }
2835
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002836 final String defaultImiId = mSettings.getSelectedInputMethod();
satok0a1bcf42012-05-16 19:26:31 +09002837 if (!TextUtils.isEmpty(defaultImiId)) {
2838 if (!map.containsKey(defaultImiId)) {
2839 Slog.w(TAG, "Default IME is uninstalled. Choose new default IME.");
2840 if (chooseNewDefaultIMELocked()) {
Michael Wright7b5a96b2014-08-09 19:28:42 -07002841 updateInputMethodsFromSettingsLocked(true);
satok0a1bcf42012-05-16 19:26:31 +09002842 }
2843 } else {
2844 // Double check that the default IME is certainly enabled.
2845 setInputMethodEnabledLocked(defaultImiId, true);
Brandon Ballinger6da35a02009-10-21 00:38:13 -07002846 }
2847 }
Yohei Yukawa3d46bab2014-05-30 18:10:18 +09002848 // Here is not the perfect place to reset the switching controller. Ideally
2849 // mSwitchingController and mSettings should be able to share the same state.
2850 // TODO: Make sure that mSwitchingController and mSettings are sharing the
2851 // the same enabled IMEs list.
Yohei Yukawac834a252014-05-21 22:42:32 +09002852 mSwitchingController.resetCircularListLocked(mContext);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002853 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002854
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002855 // ----------------------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002856
satokab751aa2010-09-14 19:17:36 +09002857 private void showInputMethodMenu() {
2858 showInputMethodMenuInternal(false);
2859 }
2860
2861 private void showInputMethodSubtypeMenu() {
2862 showInputMethodMenuInternal(true);
2863 }
2864
satok217f5482010-12-15 05:19:19 +09002865 private void showInputMethodAndSubtypeEnabler(String inputMethodId) {
Tadashi G. Takaokaf49688f2011-01-20 17:56:13 +09002866 Intent intent = new Intent(Settings.ACTION_INPUT_METHOD_SUBTYPE_SETTINGS);
satok47a44912010-10-06 16:03:58 +09002867 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
satok86417ea2010-10-27 14:11:03 +09002868 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED
2869 | Intent.FLAG_ACTIVITY_CLEAR_TOP);
satok7fee71f2010-12-17 18:54:26 +09002870 if (!TextUtils.isEmpty(inputMethodId)) {
Tadashi G. Takaoka25480202011-01-20 23:13:02 +09002871 intent.putExtra(Settings.EXTRA_INPUT_METHOD_ID, inputMethodId);
satok7fee71f2010-12-17 18:54:26 +09002872 }
Satoshi Kataoka3ba439d2012-10-05 18:30:13 +09002873 mContext.startActivityAsUser(intent, null, UserHandle.CURRENT);
satok217f5482010-12-15 05:19:19 +09002874 }
2875
2876 private void showConfigureInputMethods() {
2877 Intent intent = new Intent(Settings.ACTION_INPUT_METHOD_SETTINGS);
2878 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
2879 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED
2880 | Intent.FLAG_ACTIVITY_CLEAR_TOP);
Satoshi Kataoka3ba439d2012-10-05 18:30:13 +09002881 mContext.startActivityAsUser(intent, null, UserHandle.CURRENT);
satok47a44912010-10-06 16:03:58 +09002882 }
2883
satok2c93efc2012-04-02 19:33:47 +09002884 private boolean isScreenLocked() {
2885 return mKeyguardManager != null
2886 && mKeyguardManager.isKeyguardLocked() && mKeyguardManager.isKeyguardSecure();
2887 }
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09002888
satokab751aa2010-09-14 19:17:36 +09002889 private void showInputMethodMenuInternal(boolean showSubtypes) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002890 if (DEBUG) Slog.v(TAG, "Show switching menu");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002891
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002892 final Context context = mContext;
satok2c93efc2012-04-02 19:33:47 +09002893 final boolean isScreenLocked = isScreenLocked();
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002894
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002895 final String lastInputMethodId = mSettings.getSelectedInputMethod();
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002896 int lastInputMethodSubtypeId = mSettings.getSelectedInputMethodSubtypeId(lastInputMethodId);
Joe Onorato8a9b2202010-02-26 18:56:32 -08002897 if (DEBUG) Slog.v(TAG, "Current IME: " + lastInputMethodId);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002898
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002899 synchronized (mMethodMap) {
satokbb4aa062011-01-19 21:40:27 +09002900 final HashMap<InputMethodInfo, List<InputMethodSubtype>> immis =
Satoshi Kataokad787f692013-10-26 04:44:21 +09002901 mSettings.getExplicitlyOrImplicitlyEnabledInputMethodsAndSubtypeListLocked(
2902 mContext);
satok7f35c8c2010-10-07 21:13:11 +09002903 if (immis == null || immis.size() == 0) {
2904 return;
2905 }
2906
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002907 hideInputMethodMenuLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002908
satok688bd472012-02-09 20:09:17 +09002909 final List<ImeSubtypeListItem> imList =
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002910 mSwitchingController.getSortedInputMethodAndSubtypeListLocked(
satok688bd472012-02-09 20:09:17 +09002911 showSubtypes, mInputShown, isScreenLocked);
satok913a8922010-08-26 21:53:41 +09002912
satokc3690562012-01-10 20:14:43 +09002913 if (lastInputMethodSubtypeId == NOT_A_SUBTYPE_ID) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002914 final InputMethodSubtype currentSubtype = getCurrentInputMethodSubtypeLocked();
satokc3690562012-01-10 20:14:43 +09002915 if (currentSubtype != null) {
2916 final InputMethodInfo currentImi = mMethodMap.get(mCurMethodId);
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002917 lastInputMethodSubtypeId = InputMethodUtils.getSubtypeIdFromHashCode(
2918 currentImi, currentSubtype.hashCode());
satokc3690562012-01-10 20:14:43 +09002919 }
2920 }
2921
Ken Wakasa761eb372011-03-04 19:06:18 +09002922 final int N = imList.size();
satokab751aa2010-09-14 19:17:36 +09002923 mIms = new InputMethodInfo[N];
2924 mSubtypeIds = new int[N];
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002925 int checkedItem = 0;
2926 for (int i = 0; i < N; ++i) {
Ken Wakasa05dbb652011-08-22 15:22:43 +09002927 final ImeSubtypeListItem item = imList.get(i);
2928 mIms[i] = item.mImi;
2929 mSubtypeIds[i] = item.mSubtypeId;
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002930 if (mIms[i].getId().equals(lastInputMethodId)) {
satokab751aa2010-09-14 19:17:36 +09002931 int subtypeId = mSubtypeIds[i];
2932 if ((subtypeId == NOT_A_SUBTYPE_ID)
2933 || (lastInputMethodSubtypeId == NOT_A_SUBTYPE_ID && subtypeId == 0)
2934 || (subtypeId == lastInputMethodSubtypeId)) {
2935 checkedItem = i;
2936 }
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002937 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002938 }
Alan Viverette505e3ab2014-11-24 15:22:11 -08002939
2940 final Context settingsContext = new ContextThemeWrapper(context,
2941 com.android.internal.R.style.Theme_DeviceDefault_Settings);
2942
2943 mDialogBuilder = new AlertDialog.Builder(settingsContext);
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09002944 mDialogBuilder.setOnCancelListener(new OnCancelListener() {
2945 @Override
2946 public void onCancel(DialogInterface dialog) {
2947 hideInputMethodMenu();
2948 }
2949 });
Alan Viverette505e3ab2014-11-24 15:22:11 -08002950
2951 final Context dialogContext = mDialogBuilder.getContext();
2952 final TypedArray a = dialogContext.obtainStyledAttributes(null,
2953 com.android.internal.R.styleable.DialogPreference,
2954 com.android.internal.R.attr.alertDialogStyle, 0);
2955 final Drawable dialogIcon = a.getDrawable(
2956 com.android.internal.R.styleable.DialogPreference_dialogIcon);
2957 a.recycle();
2958
2959 mDialogBuilder.setIcon(dialogIcon);
2960
2961 final LayoutInflater inflater = (LayoutInflater) dialogContext.getSystemService(
2962 Context.LAYOUT_INFLATER_SERVICE);
satok01038492012-04-09 21:08:27 +09002963 final View tv = inflater.inflate(
2964 com.android.internal.R.layout.input_method_switch_dialog_title, null);
2965 mDialogBuilder.setCustomTitle(tv);
2966
2967 // Setup layout for a toggle switch of the hardware keyboard
2968 mSwitchingDialogTitleView = tv;
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09002969 mSwitchingDialogTitleView
2970 .findViewById(com.android.internal.R.id.hard_keyboard_section)
2971 .setVisibility(mWindowManagerService.isHardKeyboardAvailable()
2972 ? View.VISIBLE : View.GONE);
Alan Viverette505e3ab2014-11-24 15:22:11 -08002973 final Switch hardKeySwitch = (Switch) mSwitchingDialogTitleView.findViewById(
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09002974 com.android.internal.R.id.hard_keyboard_switch);
Michael Wright7b5a96b2014-08-09 19:28:42 -07002975 hardKeySwitch.setChecked(mShowImeWithHardKeyboard);
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09002976 hardKeySwitch.setOnCheckedChangeListener(new OnCheckedChangeListener() {
2977 @Override
2978 public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
Michael Wright7b5a96b2014-08-09 19:28:42 -07002979 mSettings.setShowImeWithHardKeyboard(isChecked);
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09002980 // Ensure that the input method dialog is dismissed when changing
2981 // the hardware keyboard state.
2982 hideInputMethodMenu();
2983 }
2984 });
2985
Alan Viverette505e3ab2014-11-24 15:22:11 -08002986 final ImeSubtypeListAdapter adapter = new ImeSubtypeListAdapter(dialogContext,
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09002987 com.android.internal.R.layout.input_method_switch_item, imList, checkedItem);
2988 final OnClickListener choiceListener = new OnClickListener() {
2989 @Override
2990 public void onClick(final DialogInterface dialog, final int which) {
2991 synchronized (mMethodMap) {
2992 if (mIms == null || mIms.length <= which || mSubtypeIds == null
2993 || mSubtypeIds.length <= which) {
2994 return;
satok01038492012-04-09 21:08:27 +09002995 }
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09002996 final InputMethodInfo im = mIms[which];
2997 int subtypeId = mSubtypeIds[which];
2998 adapter.mCheckedItem = which;
2999 adapter.notifyDataSetChanged();
3000 hideInputMethodMenu();
3001 if (im != null) {
3002 if (subtypeId < 0 || subtypeId >= im.getSubtypeCount()) {
3003 subtypeId = NOT_A_SUBTYPE_ID;
Dianne Hackborn20cb56e2010-03-04 00:58:29 -08003004 }
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003005 setInputMethodLocked(im.getId(), subtypeId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003006 }
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003007 }
3008 }
3009 };
3010 mDialogBuilder.setSingleChoiceItems(adapter, checkedItem, choiceListener);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003011
satokbc81b692011-08-26 16:22:22 +09003012 if (showSubtypes && !isScreenLocked) {
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003013 final OnClickListener positiveListener = new OnClickListener() {
3014 @Override
3015 public void onClick(DialogInterface dialog, int whichButton) {
3016 showConfigureInputMethods();
3017 }
3018 };
satok82beadf2010-12-27 19:03:06 +09003019 mDialogBuilder.setPositiveButton(
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003020 com.android.internal.R.string.configure_input_methods, positiveListener);
satok7f35c8c2010-10-07 21:13:11 +09003021 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003022 mSwitchingDialog = mDialogBuilder.create();
Dianne Hackborne3a7f622011-03-03 21:48:24 -08003023 mSwitchingDialog.setCanceledOnTouchOutside(true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003024 mSwitchingDialog.getWindow().setType(
3025 WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG);
Satoshi Kataokac86884c2012-10-09 15:20:29 +09003026 mSwitchingDialog.getWindow().getAttributes().privateFlags |=
3027 WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS;
Dianne Hackborne3a7f622011-03-03 21:48:24 -08003028 mSwitchingDialog.getWindow().getAttributes().setTitle("Select input method");
Jason Monk807ef762014-05-08 15:47:46 -04003029 updateImeWindowStatusLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003030 mSwitchingDialog.show();
3031 }
3032 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003033
Ken Wakasa05dbb652011-08-22 15:22:43 +09003034 private static class ImeSubtypeListAdapter extends ArrayAdapter<ImeSubtypeListItem> {
3035 private final LayoutInflater mInflater;
3036 private final int mTextViewResourceId;
3037 private final List<ImeSubtypeListItem> mItemsList;
Satoshi Kataokad2142962012-11-12 18:43:06 +09003038 public int mCheckedItem;
Ken Wakasa05dbb652011-08-22 15:22:43 +09003039 public ImeSubtypeListAdapter(Context context, int textViewResourceId,
3040 List<ImeSubtypeListItem> itemsList, int checkedItem) {
3041 super(context, textViewResourceId, itemsList);
Alan Viverette505e3ab2014-11-24 15:22:11 -08003042
Ken Wakasa05dbb652011-08-22 15:22:43 +09003043 mTextViewResourceId = textViewResourceId;
3044 mItemsList = itemsList;
3045 mCheckedItem = checkedItem;
Alan Viverette505e3ab2014-11-24 15:22:11 -08003046 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
Ken Wakasa05dbb652011-08-22 15:22:43 +09003047 }
3048
3049 @Override
3050 public View getView(int position, View convertView, ViewGroup parent) {
3051 final View view = convertView != null ? convertView
3052 : mInflater.inflate(mTextViewResourceId, null);
3053 if (position < 0 || position >= mItemsList.size()) return view;
3054 final ImeSubtypeListItem item = mItemsList.get(position);
3055 final CharSequence imeName = item.mImeName;
3056 final CharSequence subtypeName = item.mSubtypeName;
3057 final TextView firstTextView = (TextView)view.findViewById(android.R.id.text1);
3058 final TextView secondTextView = (TextView)view.findViewById(android.R.id.text2);
3059 if (TextUtils.isEmpty(subtypeName)) {
3060 firstTextView.setText(imeName);
3061 secondTextView.setVisibility(View.GONE);
3062 } else {
3063 firstTextView.setText(subtypeName);
3064 secondTextView.setText(imeName);
3065 secondTextView.setVisibility(View.VISIBLE);
3066 }
3067 final RadioButton radioButton =
3068 (RadioButton)view.findViewById(com.android.internal.R.id.radio);
3069 radioButton.setChecked(position == mCheckedItem);
3070 return view;
3071 }
3072 }
3073
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003074 void hideInputMethodMenu() {
The Android Open Source Project10592532009-03-18 17:39:46 -07003075 synchronized (mMethodMap) {
3076 hideInputMethodMenuLocked();
3077 }
3078 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003079
The Android Open Source Project10592532009-03-18 17:39:46 -07003080 void hideInputMethodMenuLocked() {
Joe Onorato8a9b2202010-02-26 18:56:32 -08003081 if (DEBUG) Slog.v(TAG, "Hide switching menu");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003082
The Android Open Source Project10592532009-03-18 17:39:46 -07003083 if (mSwitchingDialog != null) {
3084 mSwitchingDialog.dismiss();
3085 mSwitchingDialog = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003086 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003087
Jason Monk807ef762014-05-08 15:47:46 -04003088 updateImeWindowStatusLocked();
The Android Open Source Project10592532009-03-18 17:39:46 -07003089 mDialogBuilder = null;
The Android Open Source Project10592532009-03-18 17:39:46 -07003090 mIms = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003091 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003092
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003093 // ----------------------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003094
satok42c5a162011-05-26 16:46:14 +09003095 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003096 public boolean setInputMethodEnabled(String id, boolean enabled) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003097 // TODO: Make this work even for non-current users?
3098 if (!calledFromValidUser()) {
3099 return false;
3100 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003101 synchronized (mMethodMap) {
3102 if (mContext.checkCallingOrSelfPermission(
3103 android.Manifest.permission.WRITE_SECURE_SETTINGS)
3104 != PackageManager.PERMISSION_GRANTED) {
3105 throw new SecurityException(
3106 "Requires permission "
3107 + android.Manifest.permission.WRITE_SECURE_SETTINGS);
3108 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003109
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003110 long ident = Binder.clearCallingIdentity();
3111 try {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003112 return setInputMethodEnabledLocked(id, enabled);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003113 } finally {
3114 Binder.restoreCallingIdentity(ident);
3115 }
3116 }
3117 }
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003118
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003119 boolean setInputMethodEnabledLocked(String id, boolean enabled) {
3120 // Make sure this is a valid input method.
3121 InputMethodInfo imm = mMethodMap.get(id);
3122 if (imm == null) {
satokd87c2592010-09-29 11:52:06 +09003123 throw new IllegalArgumentException("Unknown id: " + mCurMethodId);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003124 }
3125
satokd87c2592010-09-29 11:52:06 +09003126 List<Pair<String, ArrayList<String>>> enabledInputMethodsList = mSettings
3127 .getEnabledInputMethodsAndSubtypeListLocked();
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003128
satokd87c2592010-09-29 11:52:06 +09003129 if (enabled) {
3130 for (Pair<String, ArrayList<String>> pair: enabledInputMethodsList) {
3131 if (pair.first.equals(id)) {
3132 // We are enabling this input method, but it is already enabled.
3133 // Nothing to do. The previous state was enabled.
3134 return true;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003135 }
3136 }
satokd87c2592010-09-29 11:52:06 +09003137 mSettings.appendAndPutEnabledInputMethodLocked(id, false);
3138 // Previous state was disabled.
3139 return false;
3140 } else {
3141 StringBuilder builder = new StringBuilder();
3142 if (mSettings.buildAndPutEnabledInputMethodsStrRemovingIdLocked(
3143 builder, enabledInputMethodsList, id)) {
3144 // Disabled input method is currently selected, switch to another one.
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003145 final String selId = mSettings.getSelectedInputMethod();
satok03eb319a2010-11-11 18:17:42 +09003146 if (id.equals(selId) && !chooseNewDefaultIMELocked()) {
3147 Slog.i(TAG, "Can't find new IME, unsetting the current input method.");
3148 resetSelectedInputMethodAndSubtypeLocked("");
satokd87c2592010-09-29 11:52:06 +09003149 }
3150 // Previous state was enabled.
3151 return true;
3152 } else {
3153 // We are disabling the input method but it is already disabled.
3154 // Nothing to do. The previous state was disabled.
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003155 return false;
3156 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003157 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003158 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08003159
satok723a27e2010-11-11 14:58:11 +09003160 private void setSelectedInputMethodAndSubtypeLocked(InputMethodInfo imi, int subtypeId,
3161 boolean setSubtypeOnly) {
3162 // Update the history of InputMethod and Subtype
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003163 mSettings.saveCurrentInputMethodAndSubtypeToHistory(mCurMethodId, mCurrentSubtype);
satok723a27e2010-11-11 14:58:11 +09003164
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09003165 mCurUserActionNotificationSequenceNumber =
3166 Math.max(mCurUserActionNotificationSequenceNumber + 1, 1);
3167 if (DEBUG) {
3168 Slog.d(TAG, "Bump mCurUserActionNotificationSequenceNumber:"
3169 + mCurUserActionNotificationSequenceNumber);
3170 }
3171
3172 if (mCurClient != null && mCurClient.client != null) {
3173 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
3174 MSG_SET_USER_ACTION_NOTIFICATION_SEQUENCE_NUMBER,
Yohei Yukawa080fa342014-08-31 16:10:05 -07003175 mCurUserActionNotificationSequenceNumber, mCurClient));
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09003176 }
3177
satok723a27e2010-11-11 14:58:11 +09003178 // Set Subtype here
3179 if (imi == null || subtypeId < 0) {
3180 mSettings.putSelectedSubtype(NOT_A_SUBTYPE_ID);
Tadashi G. Takaoka0ba75bb2010-11-09 12:19:32 -08003181 mCurrentSubtype = null;
satok723a27e2010-11-11 14:58:11 +09003182 } else {
Ken Wakasa586f0512011-01-20 22:31:01 +09003183 if (subtypeId < imi.getSubtypeCount()) {
3184 InputMethodSubtype subtype = imi.getSubtypeAt(subtypeId);
3185 mSettings.putSelectedSubtype(subtype.hashCode());
3186 mCurrentSubtype = subtype;
satok723a27e2010-11-11 14:58:11 +09003187 } else {
3188 mSettings.putSelectedSubtype(NOT_A_SUBTYPE_ID);
satokd81e9502012-05-21 12:58:45 +09003189 // If the subtype is not specified, choose the most applicable one
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003190 mCurrentSubtype = getCurrentInputMethodSubtypeLocked();
satok723a27e2010-11-11 14:58:11 +09003191 }
satokab751aa2010-09-14 19:17:36 +09003192 }
satok723a27e2010-11-11 14:58:11 +09003193
satok4c0e7152012-06-20 20:08:44 +09003194 // Workaround.
3195 // ASEC is not ready in the IMMS constructor. Accordingly, forward-locked
3196 // IMEs are not recognized and considered uninstalled.
3197 // Actually, we can't move everything after SystemReady because
3198 // IMMS needs to run in the encryption lock screen. So, we just skip changing
3199 // the default IME here and try cheking the default IME again in systemReady().
3200 // TODO: Do nothing before system ready and implement a separated logic for
3201 // the encryption lock screen.
3202 // TODO: ASEC should be ready before IMMS is instantiated.
3203 if (mSystemReady && !setSubtypeOnly) {
satok723a27e2010-11-11 14:58:11 +09003204 // Set InputMethod here
3205 mSettings.putSelectedInputMethod(imi != null ? imi.getId() : "");
3206 }
3207 }
3208
3209 private void resetSelectedInputMethodAndSubtypeLocked(String newDefaultIme) {
3210 InputMethodInfo imi = mMethodMap.get(newDefaultIme);
3211 int lastSubtypeId = NOT_A_SUBTYPE_ID;
3212 // newDefaultIme is empty when there is no candidate for the selected IME.
3213 if (imi != null && !TextUtils.isEmpty(newDefaultIme)) {
3214 String subtypeHashCode = mSettings.getLastSubtypeForInputMethodLocked(newDefaultIme);
3215 if (subtypeHashCode != null) {
3216 try {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003217 lastSubtypeId = InputMethodUtils.getSubtypeIdFromHashCode(
satok723a27e2010-11-11 14:58:11 +09003218 imi, Integer.valueOf(subtypeHashCode));
3219 } catch (NumberFormatException e) {
3220 Slog.w(TAG, "HashCode for subtype looks broken: " + subtypeHashCode, e);
3221 }
3222 }
3223 }
3224 setSelectedInputMethodAndSubtypeLocked(imi, lastSubtypeId, false);
satokab751aa2010-09-14 19:17:36 +09003225 }
3226
satok4e4569d2010-11-19 18:45:53 +09003227 // If there are no selected shortcuts, tries finding the most applicable ones.
3228 private Pair<InputMethodInfo, InputMethodSubtype>
3229 findLastResortApplicableShortcutInputMethodAndSubtypeLocked(String mode) {
3230 List<InputMethodInfo> imis = mSettings.getEnabledInputMethodListLocked();
3231 InputMethodInfo mostApplicableIMI = null;
satokcd7cd292010-11-20 15:46:23 +09003232 InputMethodSubtype mostApplicableSubtype = null;
satok4e4569d2010-11-19 18:45:53 +09003233 boolean foundInSystemIME = false;
3234
3235 // Search applicable subtype for each InputMethodInfo
3236 for (InputMethodInfo imi: imis) {
satok7599a7f2010-12-22 13:45:23 +09003237 final String imiId = imi.getId();
3238 if (foundInSystemIME && !imiId.equals(mCurMethodId)) {
3239 continue;
3240 }
satokcd7cd292010-11-20 15:46:23 +09003241 InputMethodSubtype subtype = null;
satokdf31ae62011-01-15 06:19:44 +09003242 final List<InputMethodSubtype> enabledSubtypes =
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003243 mSettings.getEnabledInputMethodSubtypeListLocked(mContext, imi, true);
satokdf31ae62011-01-15 06:19:44 +09003244 // 1. Search by the current subtype's locale from enabledSubtypes.
satok4e4569d2010-11-19 18:45:53 +09003245 if (mCurrentSubtype != null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003246 subtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
satokdf31ae62011-01-15 06:19:44 +09003247 mRes, enabledSubtypes, mode, mCurrentSubtype.getLocale(), false);
satok4e4569d2010-11-19 18:45:53 +09003248 }
satokdf31ae62011-01-15 06:19:44 +09003249 // 2. Search by the system locale from enabledSubtypes.
3250 // 3. Search the first enabled subtype matched with mode from enabledSubtypes.
satokcd7cd292010-11-20 15:46:23 +09003251 if (subtype == null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003252 subtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
satokdf31ae62011-01-15 06:19:44 +09003253 mRes, enabledSubtypes, mode, null, true);
satok4e4569d2010-11-19 18:45:53 +09003254 }
satoka86f5e42011-09-02 17:12:42 +09003255 final ArrayList<InputMethodSubtype> overridingImplicitlyEnabledSubtypes =
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003256 InputMethodUtils.getOverridingImplicitlyEnabledSubtypes(imi, mode);
satoka86f5e42011-09-02 17:12:42 +09003257 final ArrayList<InputMethodSubtype> subtypesForSearch =
3258 overridingImplicitlyEnabledSubtypes.isEmpty()
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003259 ? InputMethodUtils.getSubtypes(imi)
3260 : overridingImplicitlyEnabledSubtypes;
satok7599a7f2010-12-22 13:45:23 +09003261 // 4. Search by the current subtype's locale from all subtypes.
3262 if (subtype == null && mCurrentSubtype != null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003263 subtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
satoka86f5e42011-09-02 17:12:42 +09003264 mRes, subtypesForSearch, mode, mCurrentSubtype.getLocale(), false);
satok7599a7f2010-12-22 13:45:23 +09003265 }
3266 // 5. Search by the system locale from all subtypes.
3267 // 6. Search the first enabled subtype matched with mode from all subtypes.
satokcd7cd292010-11-20 15:46:23 +09003268 if (subtype == null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003269 subtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
satoka86f5e42011-09-02 17:12:42 +09003270 mRes, subtypesForSearch, mode, null, true);
satok4e4569d2010-11-19 18:45:53 +09003271 }
satokcd7cd292010-11-20 15:46:23 +09003272 if (subtype != null) {
satok7599a7f2010-12-22 13:45:23 +09003273 if (imiId.equals(mCurMethodId)) {
satok4e4569d2010-11-19 18:45:53 +09003274 // The current input method is the most applicable IME.
3275 mostApplicableIMI = imi;
satokcd7cd292010-11-20 15:46:23 +09003276 mostApplicableSubtype = subtype;
satok4e4569d2010-11-19 18:45:53 +09003277 break;
satok7599a7f2010-12-22 13:45:23 +09003278 } else if (!foundInSystemIME) {
satok4e4569d2010-11-19 18:45:53 +09003279 // The system input method is 2nd applicable IME.
3280 mostApplicableIMI = imi;
satokcd7cd292010-11-20 15:46:23 +09003281 mostApplicableSubtype = subtype;
satok7599a7f2010-12-22 13:45:23 +09003282 if ((imi.getServiceInfo().applicationInfo.flags
3283 & ApplicationInfo.FLAG_SYSTEM) != 0) {
3284 foundInSystemIME = true;
3285 }
satok4e4569d2010-11-19 18:45:53 +09003286 }
3287 }
3288 }
3289 if (DEBUG) {
satokcd7cd292010-11-20 15:46:23 +09003290 if (mostApplicableIMI != null) {
3291 Slog.w(TAG, "Most applicable shortcut input method was:"
3292 + mostApplicableIMI.getId());
3293 if (mostApplicableSubtype != null) {
3294 Slog.w(TAG, "Most applicable shortcut input method subtype was:"
3295 + "," + mostApplicableSubtype.getMode() + ","
3296 + mostApplicableSubtype.getLocale());
3297 }
3298 }
satok4e4569d2010-11-19 18:45:53 +09003299 }
satokcd7cd292010-11-20 15:46:23 +09003300 if (mostApplicableIMI != null) {
satok4e4569d2010-11-19 18:45:53 +09003301 return new Pair<InputMethodInfo, InputMethodSubtype> (mostApplicableIMI,
satokcd7cd292010-11-20 15:46:23 +09003302 mostApplicableSubtype);
satok4e4569d2010-11-19 18:45:53 +09003303 } else {
3304 return null;
3305 }
3306 }
3307
satokab751aa2010-09-14 19:17:36 +09003308 /**
3309 * @return Return the current subtype of this input method.
3310 */
satok42c5a162011-05-26 16:46:14 +09003311 @Override
satokab751aa2010-09-14 19:17:36 +09003312 public InputMethodSubtype getCurrentInputMethodSubtype() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003313 // TODO: Make this work even for non-current users?
3314 if (!calledFromValidUser()) {
3315 return null;
3316 }
3317 synchronized (mMethodMap) {
3318 return getCurrentInputMethodSubtypeLocked();
3319 }
3320 }
3321
3322 private InputMethodSubtype getCurrentInputMethodSubtypeLocked() {
satokfdf419e2012-05-08 16:52:08 +09003323 if (mCurMethodId == null) {
3324 return null;
3325 }
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003326 final boolean subtypeIsSelected = mSettings.isSubtypeSelected();
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003327 final InputMethodInfo imi = mMethodMap.get(mCurMethodId);
3328 if (imi == null || imi.getSubtypeCount() == 0) {
3329 return null;
satok4e4569d2010-11-19 18:45:53 +09003330 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003331 if (!subtypeIsSelected || mCurrentSubtype == null
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003332 || !InputMethodUtils.isValidSubtypeId(imi, mCurrentSubtype.hashCode())) {
3333 int subtypeId = mSettings.getSelectedInputMethodSubtypeId(mCurMethodId);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003334 if (subtypeId == NOT_A_SUBTYPE_ID) {
3335 // If there are no selected subtypes, the framework will try to find
3336 // the most applicable subtype from explicitly or implicitly enabled
3337 // subtypes.
3338 List<InputMethodSubtype> explicitlyOrImplicitlyEnabledSubtypes =
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003339 mSettings.getEnabledInputMethodSubtypeListLocked(mContext, imi, true);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003340 // If there is only one explicitly or implicitly enabled subtype,
3341 // just returns it.
3342 if (explicitlyOrImplicitlyEnabledSubtypes.size() == 1) {
3343 mCurrentSubtype = explicitlyOrImplicitlyEnabledSubtypes.get(0);
3344 } else if (explicitlyOrImplicitlyEnabledSubtypes.size() > 1) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003345 mCurrentSubtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003346 mRes, explicitlyOrImplicitlyEnabledSubtypes,
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003347 InputMethodUtils.SUBTYPE_MODE_KEYBOARD, null, true);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003348 if (mCurrentSubtype == null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003349 mCurrentSubtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003350 mRes, explicitlyOrImplicitlyEnabledSubtypes, null, null,
3351 true);
satok4e4569d2010-11-19 18:45:53 +09003352 }
satok3ef8b292010-11-23 06:06:29 +09003353 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003354 } else {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003355 mCurrentSubtype = InputMethodUtils.getSubtypes(imi).get(subtypeId);
satok8fbb1e82010-11-02 23:15:58 +09003356 }
3357 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003358 return mCurrentSubtype;
satokab751aa2010-09-14 19:17:36 +09003359 }
3360
satokf3db1af2010-11-23 13:34:33 +09003361 private void addShortcutInputMethodAndSubtypes(InputMethodInfo imi,
3362 InputMethodSubtype subtype) {
3363 if (mShortcutInputMethodsAndSubtypes.containsKey(imi)) {
3364 mShortcutInputMethodsAndSubtypes.get(imi).add(subtype);
3365 } else {
3366 ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>();
3367 subtypes.add(subtype);
3368 mShortcutInputMethodsAndSubtypes.put(imi, subtypes);
3369 }
3370 }
3371
satok4e4569d2010-11-19 18:45:53 +09003372 // TODO: We should change the return type from List to List<Parcelable>
satokdbf29502011-08-25 15:28:23 +09003373 @SuppressWarnings("rawtypes")
satoke7c6998e2011-06-03 17:57:59 +09003374 @Override
satok4e4569d2010-11-19 18:45:53 +09003375 public List getShortcutInputMethodsAndSubtypes() {
3376 synchronized (mMethodMap) {
satok3da92232011-01-11 22:46:30 +09003377 ArrayList<Object> ret = new ArrayList<Object>();
satokf3db1af2010-11-23 13:34:33 +09003378 if (mShortcutInputMethodsAndSubtypes.size() == 0) {
satok4e4569d2010-11-19 18:45:53 +09003379 // If there are no selected shortcut subtypes, the framework will try to find
3380 // the most applicable subtype from all subtypes whose mode is
3381 // SUBTYPE_MODE_VOICE. This is an exceptional case, so we will hardcode the mode.
satokf3db1af2010-11-23 13:34:33 +09003382 Pair<InputMethodInfo, InputMethodSubtype> info =
3383 findLastResortApplicableShortcutInputMethodAndSubtypeLocked(
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003384 InputMethodUtils.SUBTYPE_MODE_VOICE);
satok7599a7f2010-12-22 13:45:23 +09003385 if (info != null) {
satok3da92232011-01-11 22:46:30 +09003386 ret.add(info.first);
3387 ret.add(info.second);
satok7599a7f2010-12-22 13:45:23 +09003388 }
satok3da92232011-01-11 22:46:30 +09003389 return ret;
satokf3db1af2010-11-23 13:34:33 +09003390 }
satokf3db1af2010-11-23 13:34:33 +09003391 for (InputMethodInfo imi: mShortcutInputMethodsAndSubtypes.keySet()) {
3392 ret.add(imi);
3393 for (InputMethodSubtype subtype: mShortcutInputMethodsAndSubtypes.get(imi)) {
3394 ret.add(subtype);
satok4e4569d2010-11-19 18:45:53 +09003395 }
3396 }
satokf3db1af2010-11-23 13:34:33 +09003397 return ret;
satok4e4569d2010-11-19 18:45:53 +09003398 }
3399 }
3400
satok42c5a162011-05-26 16:46:14 +09003401 @Override
satokb66d2872010-11-10 01:04:04 +09003402 public boolean setCurrentInputMethodSubtype(InputMethodSubtype subtype) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003403 // TODO: Make this work even for non-current users?
3404 if (!calledFromValidUser()) {
3405 return false;
3406 }
satokb66d2872010-11-10 01:04:04 +09003407 synchronized (mMethodMap) {
3408 if (subtype != null && mCurMethodId != null) {
3409 InputMethodInfo imi = mMethodMap.get(mCurMethodId);
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003410 int subtypeId = InputMethodUtils.getSubtypeIdFromHashCode(imi, subtype.hashCode());
satokb66d2872010-11-10 01:04:04 +09003411 if (subtypeId != NOT_A_SUBTYPE_ID) {
3412 setInputMethodLocked(mCurMethodId, subtypeId);
3413 return true;
3414 }
3415 }
3416 return false;
3417 }
3418 }
3419
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +09003420 // TODO: Cache the state for each user and reset when the cached user is removed.
satoke7c6998e2011-06-03 17:57:59 +09003421 private static class InputMethodFileManager {
3422 private static final String SYSTEM_PATH = "system";
3423 private static final String INPUT_METHOD_PATH = "inputmethod";
3424 private static final String ADDITIONAL_SUBTYPES_FILE_NAME = "subtypes.xml";
3425 private static final String NODE_SUBTYPES = "subtypes";
3426 private static final String NODE_SUBTYPE = "subtype";
3427 private static final String NODE_IMI = "imi";
3428 private static final String ATTR_ID = "id";
3429 private static final String ATTR_LABEL = "label";
3430 private static final String ATTR_ICON = "icon";
3431 private static final String ATTR_IME_SUBTYPE_LOCALE = "imeSubtypeLocale";
3432 private static final String ATTR_IME_SUBTYPE_MODE = "imeSubtypeMode";
3433 private static final String ATTR_IME_SUBTYPE_EXTRA_VALUE = "imeSubtypeExtraValue";
3434 private static final String ATTR_IS_AUXILIARY = "isAuxiliary";
3435 private final AtomicFile mAdditionalInputMethodSubtypeFile;
3436 private final HashMap<String, InputMethodInfo> mMethodMap;
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003437 private final HashMap<String, List<InputMethodSubtype>> mAdditionalSubtypesMap =
satoke7c6998e2011-06-03 17:57:59 +09003438 new HashMap<String, List<InputMethodSubtype>>();
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +09003439 public InputMethodFileManager(HashMap<String, InputMethodInfo> methodMap, int userId) {
satoke7c6998e2011-06-03 17:57:59 +09003440 if (methodMap == null) {
3441 throw new NullPointerException("methodMap is null");
3442 }
3443 mMethodMap = methodMap;
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +09003444 final File systemDir = userId == UserHandle.USER_OWNER
3445 ? new File(Environment.getDataDirectory(), SYSTEM_PATH)
3446 : Environment.getUserSystemDirectory(userId);
satoke7c6998e2011-06-03 17:57:59 +09003447 final File inputMethodDir = new File(systemDir, INPUT_METHOD_PATH);
3448 if (!inputMethodDir.mkdirs()) {
3449 Slog.w(TAG, "Couldn't create dir.: " + inputMethodDir.getAbsolutePath());
3450 }
3451 final File subtypeFile = new File(inputMethodDir, ADDITIONAL_SUBTYPES_FILE_NAME);
3452 mAdditionalInputMethodSubtypeFile = new AtomicFile(subtypeFile);
3453 if (!subtypeFile.exists()) {
3454 // If "subtypes.xml" doesn't exist, create a blank file.
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003455 writeAdditionalInputMethodSubtypes(
3456 mAdditionalSubtypesMap, mAdditionalInputMethodSubtypeFile, methodMap);
satoke7c6998e2011-06-03 17:57:59 +09003457 } else {
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003458 readAdditionalInputMethodSubtypes(
3459 mAdditionalSubtypesMap, mAdditionalInputMethodSubtypeFile);
satoke7c6998e2011-06-03 17:57:59 +09003460 }
3461 }
3462
3463 private void deleteAllInputMethodSubtypes(String imiId) {
3464 synchronized (mMethodMap) {
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003465 mAdditionalSubtypesMap.remove(imiId);
3466 writeAdditionalInputMethodSubtypes(
3467 mAdditionalSubtypesMap, mAdditionalInputMethodSubtypeFile, mMethodMap);
satoke7c6998e2011-06-03 17:57:59 +09003468 }
3469 }
3470
3471 public void addInputMethodSubtypes(
satok4a28bde2011-06-29 21:03:40 +09003472 InputMethodInfo imi, InputMethodSubtype[] additionalSubtypes) {
satoke7c6998e2011-06-03 17:57:59 +09003473 synchronized (mMethodMap) {
3474 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>();
3475 final int N = additionalSubtypes.length;
3476 for (int i = 0; i < N; ++i) {
3477 final InputMethodSubtype subtype = additionalSubtypes[i];
satoked2b24e2011-08-31 18:03:21 +09003478 if (!subtypes.contains(subtype)) {
satoke7c6998e2011-06-03 17:57:59 +09003479 subtypes.add(subtype);
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003480 } else {
3481 Slog.w(TAG, "Duplicated subtype definition found: "
3482 + subtype.getLocale() + ", " + subtype.getMode());
satoke7c6998e2011-06-03 17:57:59 +09003483 }
3484 }
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003485 mAdditionalSubtypesMap.put(imi.getId(), subtypes);
3486 writeAdditionalInputMethodSubtypes(
3487 mAdditionalSubtypesMap, mAdditionalInputMethodSubtypeFile, mMethodMap);
satoke7c6998e2011-06-03 17:57:59 +09003488 }
3489 }
3490
3491 public HashMap<String, List<InputMethodSubtype>> getAllAdditionalInputMethodSubtypes() {
3492 synchronized (mMethodMap) {
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003493 return mAdditionalSubtypesMap;
satoke7c6998e2011-06-03 17:57:59 +09003494 }
3495 }
3496
3497 private static void writeAdditionalInputMethodSubtypes(
3498 HashMap<String, List<InputMethodSubtype>> allSubtypes, AtomicFile subtypesFile,
3499 HashMap<String, InputMethodInfo> methodMap) {
3500 // Safety net for the case that this function is called before methodMap is set.
3501 final boolean isSetMethodMap = methodMap != null && methodMap.size() > 0;
3502 FileOutputStream fos = null;
3503 try {
3504 fos = subtypesFile.startWrite();
3505 final XmlSerializer out = new FastXmlSerializer();
3506 out.setOutput(fos, "utf-8");
3507 out.startDocument(null, true);
3508 out.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
3509 out.startTag(null, NODE_SUBTYPES);
3510 for (String imiId : allSubtypes.keySet()) {
3511 if (isSetMethodMap && !methodMap.containsKey(imiId)) {
3512 Slog.w(TAG, "IME uninstalled or not valid.: " + imiId);
3513 continue;
3514 }
3515 out.startTag(null, NODE_IMI);
3516 out.attribute(null, ATTR_ID, imiId);
3517 final List<InputMethodSubtype> subtypesList = allSubtypes.get(imiId);
3518 final int N = subtypesList.size();
3519 for (int i = 0; i < N; ++i) {
3520 final InputMethodSubtype subtype = subtypesList.get(i);
3521 out.startTag(null, NODE_SUBTYPE);
3522 out.attribute(null, ATTR_ICON, String.valueOf(subtype.getIconResId()));
3523 out.attribute(null, ATTR_LABEL, String.valueOf(subtype.getNameResId()));
3524 out.attribute(null, ATTR_IME_SUBTYPE_LOCALE, subtype.getLocale());
3525 out.attribute(null, ATTR_IME_SUBTYPE_MODE, subtype.getMode());
3526 out.attribute(null, ATTR_IME_SUBTYPE_EXTRA_VALUE, subtype.getExtraValue());
3527 out.attribute(null, ATTR_IS_AUXILIARY,
3528 String.valueOf(subtype.isAuxiliary() ? 1 : 0));
3529 out.endTag(null, NODE_SUBTYPE);
3530 }
3531 out.endTag(null, NODE_IMI);
3532 }
3533 out.endTag(null, NODE_SUBTYPES);
3534 out.endDocument();
3535 subtypesFile.finishWrite(fos);
3536 } catch (java.io.IOException e) {
3537 Slog.w(TAG, "Error writing subtypes", e);
3538 if (fos != null) {
3539 subtypesFile.failWrite(fos);
3540 }
3541 }
3542 }
3543
3544 private static void readAdditionalInputMethodSubtypes(
3545 HashMap<String, List<InputMethodSubtype>> allSubtypes, AtomicFile subtypesFile) {
3546 if (allSubtypes == null || subtypesFile == null) return;
3547 allSubtypes.clear();
3548 FileInputStream fis = null;
3549 try {
3550 fis = subtypesFile.openRead();
3551 final XmlPullParser parser = Xml.newPullParser();
3552 parser.setInput(fis, null);
3553 int type = parser.getEventType();
3554 // Skip parsing until START_TAG
3555 while ((type = parser.next()) != XmlPullParser.START_TAG
3556 && type != XmlPullParser.END_DOCUMENT) {}
3557 String firstNodeName = parser.getName();
3558 if (!NODE_SUBTYPES.equals(firstNodeName)) {
3559 throw new XmlPullParserException("Xml doesn't start with subtypes");
3560 }
3561 final int depth =parser.getDepth();
3562 String currentImiId = null;
3563 ArrayList<InputMethodSubtype> tempSubtypesArray = null;
3564 while (((type = parser.next()) != XmlPullParser.END_TAG
3565 || parser.getDepth() > depth) && type != XmlPullParser.END_DOCUMENT) {
3566 if (type != XmlPullParser.START_TAG)
3567 continue;
3568 final String nodeName = parser.getName();
3569 if (NODE_IMI.equals(nodeName)) {
3570 currentImiId = parser.getAttributeValue(null, ATTR_ID);
3571 if (TextUtils.isEmpty(currentImiId)) {
3572 Slog.w(TAG, "Invalid imi id found in subtypes.xml");
3573 continue;
3574 }
3575 tempSubtypesArray = new ArrayList<InputMethodSubtype>();
3576 allSubtypes.put(currentImiId, tempSubtypesArray);
3577 } else if (NODE_SUBTYPE.equals(nodeName)) {
3578 if (TextUtils.isEmpty(currentImiId) || tempSubtypesArray == null) {
3579 Slog.w(TAG, "IME uninstalled or not valid.: " + currentImiId);
3580 continue;
3581 }
3582 final int icon = Integer.valueOf(
3583 parser.getAttributeValue(null, ATTR_ICON));
3584 final int label = Integer.valueOf(
3585 parser.getAttributeValue(null, ATTR_LABEL));
3586 final String imeSubtypeLocale =
3587 parser.getAttributeValue(null, ATTR_IME_SUBTYPE_LOCALE);
3588 final String imeSubtypeMode =
3589 parser.getAttributeValue(null, ATTR_IME_SUBTYPE_MODE);
3590 final String imeSubtypeExtraValue =
3591 parser.getAttributeValue(null, ATTR_IME_SUBTYPE_EXTRA_VALUE);
satok4a28bde2011-06-29 21:03:40 +09003592 final boolean isAuxiliary = "1".equals(String.valueOf(
3593 parser.getAttributeValue(null, ATTR_IS_AUXILIARY)));
Yohei Yukawa443c2ba2014-09-10 14:10:30 +09003594 final InputMethodSubtype subtype = new InputMethodSubtypeBuilder()
3595 .setSubtypeNameResId(label)
3596 .setSubtypeIconResId(icon)
3597 .setSubtypeLocale(imeSubtypeLocale)
3598 .setSubtypeMode(imeSubtypeMode)
3599 .setSubtypeExtraValue(imeSubtypeExtraValue)
3600 .setIsAuxiliary(isAuxiliary)
3601 .build();
satoke7c6998e2011-06-03 17:57:59 +09003602 tempSubtypesArray.add(subtype);
3603 }
3604 }
3605 } catch (XmlPullParserException e) {
3606 Slog.w(TAG, "Error reading subtypes: " + e);
3607 return;
3608 } catch (java.io.IOException e) {
3609 Slog.w(TAG, "Error reading subtypes: " + e);
3610 return;
3611 } catch (NumberFormatException e) {
3612 Slog.w(TAG, "Error reading subtypes: " + e);
3613 return;
3614 } finally {
3615 if (fis != null) {
3616 try {
3617 fis.close();
3618 } catch (java.io.IOException e1) {
3619 Slog.w(TAG, "Failed to close.");
3620 }
3621 }
3622 }
3623 }
3624 }
3625
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003626 @Override
3627 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
3628 if (mContext.checkCallingOrSelfPermission(android.Manifest.permission.DUMP)
3629 != PackageManager.PERMISSION_GRANTED) {
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003630
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003631 pw.println("Permission Denial: can't dump InputMethodManager from from pid="
3632 + Binder.getCallingPid()
3633 + ", uid=" + Binder.getCallingUid());
3634 return;
3635 }
3636
3637 IInputMethod method;
3638 ClientState client;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003639
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003640 final Printer p = new PrintWriterPrinter(pw);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003641
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003642 synchronized (mMethodMap) {
3643 p.println("Current Input Method Manager state:");
3644 int N = mMethodList.size();
3645 p.println(" Input Methods:");
3646 for (int i=0; i<N; i++) {
3647 InputMethodInfo info = mMethodList.get(i);
3648 p.println(" InputMethod #" + i + ":");
3649 info.dump(p, " ");
3650 }
3651 p.println(" Clients:");
3652 for (ClientState ci : mClients.values()) {
3653 p.println(" Client " + ci + ":");
3654 p.println(" client=" + ci.client);
3655 p.println(" inputContext=" + ci.inputContext);
3656 p.println(" sessionRequested=" + ci.sessionRequested);
3657 p.println(" curSession=" + ci.curSession);
3658 }
The Android Open Source Project10592532009-03-18 17:39:46 -07003659 p.println(" mCurMethodId=" + mCurMethodId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003660 client = mCurClient;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07003661 p.println(" mCurClient=" + client + " mCurSeq=" + mCurSeq);
3662 p.println(" mCurFocusedWindow=" + mCurFocusedWindow);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003663 p.println(" mCurId=" + mCurId + " mHaveConnect=" + mHaveConnection
3664 + " mBoundToMethod=" + mBoundToMethod);
3665 p.println(" mCurToken=" + mCurToken);
3666 p.println(" mCurIntent=" + mCurIntent);
3667 method = mCurMethod;
3668 p.println(" mCurMethod=" + mCurMethod);
3669 p.println(" mEnabledSession=" + mEnabledSession);
3670 p.println(" mShowRequested=" + mShowRequested
3671 + " mShowExplicitlyRequested=" + mShowExplicitlyRequested
3672 + " mShowForced=" + mShowForced
3673 + " mInputShown=" + mInputShown);
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09003674 p.println(" mCurUserActionNotificationSequenceNumber="
3675 + mCurUserActionNotificationSequenceNumber);
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07003676 p.println(" mSystemReady=" + mSystemReady + " mInteractive=" + mScreenOn);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003677 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003678
Jeff Brownb88102f2010-09-08 11:49:43 -07003679 p.println(" ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003680 if (client != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003681 pw.flush();
3682 try {
3683 client.client.asBinder().dump(fd, args);
3684 } catch (RemoteException e) {
3685 p.println("Input method client dead: " + e);
3686 }
Jeff Brownb88102f2010-09-08 11:49:43 -07003687 } else {
3688 p.println("No input method client.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003689 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003690
Jeff Brownb88102f2010-09-08 11:49:43 -07003691 p.println(" ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003692 if (method != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003693 pw.flush();
3694 try {
3695 method.asBinder().dump(fd, args);
3696 } catch (RemoteException e) {
3697 p.println("Input method service dead: " + e);
3698 }
Jeff Brownb88102f2010-09-08 11:49:43 -07003699 } else {
3700 p.println("No input method service.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003701 }
3702 }
3703}