blob: 4677f65eb46bcc53cef9799395544693fb3919d5 [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 }
799 });
800 userId = ActivityManagerNative.getDefault().getCurrentUser().id;
801 } catch (RemoteException e) {
802 Slog.w(TAG, "Couldn't get current user ID; guessing it's 0", e);
803 }
satok81f8b7c2012-12-04 20:42:56 +0900804 mMyPackageMonitor.register(mContext, null, UserHandle.ALL, true);
satok913a8922010-08-26 21:53:41 +0900805
satokd87c2592010-09-29 11:52:06 +0900806 // mSettings should be created before buildInputMethodListLocked
satokdf31ae62011-01-15 06:19:44 +0900807 mSettings = new InputMethodSettings(
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900808 mRes, context.getContentResolver(), mMethodMap, mMethodList, userId);
Kenny Guy2a764942014-04-02 13:29:20 +0100809 updateCurrentProfileIds();
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +0900810 mFileManager = new InputMethodFileManager(mMethodMap, userId);
Yohei Yukawa5a647b692014-05-22 12:49:00 +0900811 synchronized (mMethodMap) {
812 mSwitchingController = InputMethodSubtypeSwitchingController.createInstanceLocked(
813 mSettings, context);
814 }
satok0a1bcf42012-05-16 19:26:31 +0900815
816 // Just checking if defaultImiId is empty or not
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900817 final String defaultImiId = mSettings.getSelectedInputMethod();
Satoshi Kataokaf1367b72013-01-25 17:20:12 +0900818 if (DEBUG) {
819 Slog.d(TAG, "Initial default ime = " + defaultImiId);
820 }
satok0a1bcf42012-05-16 19:26:31 +0900821 mImeSelectedOnBoot = !TextUtils.isEmpty(defaultImiId);
822
Yohei Yukawa5a647b692014-05-22 12:49:00 +0900823 synchronized (mMethodMap) {
824 buildInputMethodListLocked(mMethodList, mMethodMap,
825 !mImeSelectedOnBoot /* resetDefaultEnabledIme */);
826 }
satokd87c2592010-09-29 11:52:06 +0900827 mSettings.enableAllIMEsIfThereIsNoEnabledIME();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800828
satok0a1bcf42012-05-16 19:26:31 +0900829 if (!mImeSelectedOnBoot) {
830 Slog.w(TAG, "No IME selected. Choose the most applicable IME.");
Yohei Yukawa5a647b692014-05-22 12:49:00 +0900831 synchronized (mMethodMap) {
832 resetDefaultImeLocked(context);
833 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800834 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800835
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800836 mSettingsObserver = new SettingsObserver(mHandler);
Yohei Yukawa5a647b692014-05-22 12:49:00 +0900837 synchronized (mMethodMap) {
838 updateFromSettingsLocked(true);
839 }
satok5b927c432012-05-01 20:09:34 +0900840
841 // IMMS wants to receive Intent.ACTION_LOCALE_CHANGED in order to update the current IME
842 // according to the new system locale.
843 final IntentFilter filter = new IntentFilter();
844 filter.addAction(Intent.ACTION_LOCALE_CHANGED);
845 mContext.registerReceiver(
846 new BroadcastReceiver() {
847 @Override
848 public void onReceive(Context context, Intent intent) {
849 synchronized(mMethodMap) {
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +0900850 resetStateIfCurrentLocaleChangedLocked();
satok5b927c432012-05-01 20:09:34 +0900851 }
852 }
853 }, filter);
854 }
855
satok5b927c432012-05-01 20:09:34 +0900856 private void resetDefaultImeLocked(Context context) {
857 // Do not reset the default (current) IME when it is a 3rd-party IME
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +0900858 if (mCurMethodId != null
859 && !InputMethodUtils.isSystemIme(mMethodMap.get(mCurMethodId))) {
satok5b927c432012-05-01 20:09:34 +0900860 return;
861 }
862
863 InputMethodInfo defIm = null;
864 for (InputMethodInfo imi : mMethodList) {
Yohei Yukawa6aa03782015-02-21 03:00:22 +0900865 if (defIm == null && mSystemReady) {
866 final Locale systemLocale = context.getResources().getConfiguration().locale;
867 if (InputMethodUtils.isSystemImeThatHasSubtypeOf(imi, context,
868 true /* checkDefaultAttribute */, systemLocale, false /* checkCountry */,
869 InputMethodUtils.SUBTYPE_MODE_ANY)) {
satok5b927c432012-05-01 20:09:34 +0900870 defIm = imi;
871 Slog.i(TAG, "Selected default: " + imi.getId());
872 }
873 }
874 }
875 if (defIm == null && mMethodList.size() > 0) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +0900876 defIm = InputMethodUtils.getMostApplicableDefaultIME(
877 mSettings.getEnabledInputMethodListLocked());
Hyejin Kim5baaaac2014-10-27 17:17:06 +0900878 if (defIm != null) {
879 Slog.i(TAG, "Default found, using " + defIm.getId());
880 } else {
881 Slog.i(TAG, "No default found");
882 }
satok5b927c432012-05-01 20:09:34 +0900883 }
884 if (defIm != null) {
885 setSelectedInputMethodAndSubtypeLocked(defIm, NOT_A_SUBTYPE_ID, false);
886 }
887 }
888
Satoshi Kataoka7f7535f2013-02-18 12:54:16 +0900889 private void resetAllInternalStateLocked(final boolean updateOnlyWhenLocaleChanged,
890 final boolean resetDefaultEnabledIme) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900891 if (!mSystemReady) {
892 // not system ready
893 return;
894 }
895 final Locale newLocale = mRes.getConfiguration().locale;
896 if (!updateOnlyWhenLocaleChanged
897 || (newLocale != null && !newLocale.equals(mLastSystemLocale))) {
898 if (!updateOnlyWhenLocaleChanged) {
899 hideCurrentInputLocked(0, null);
900 mCurMethodId = null;
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -0700901 unbindCurrentMethodLocked(true, false);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900902 }
903 if (DEBUG) {
904 Slog.i(TAG, "Locale has been changed to " + newLocale);
905 }
Satoshi Kataoka7f7535f2013-02-18 12:54:16 +0900906 buildInputMethodListLocked(mMethodList, mMethodMap, resetDefaultEnabledIme);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900907 if (!updateOnlyWhenLocaleChanged) {
908 final String selectedImiId = mSettings.getSelectedInputMethod();
909 if (TextUtils.isEmpty(selectedImiId)) {
910 // This is the first time of the user switch and
911 // set the current ime to the proper one.
912 resetDefaultImeLocked(mContext);
913 }
Satoshi Kataokad08a9232012-09-28 15:59:58 +0900914 } else {
915 // If the locale is changed, needs to reset the default ime
916 resetDefaultImeLocked(mContext);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900917 }
Dianne Hackbornfd7aded2013-01-22 17:10:23 -0800918 updateFromSettingsLocked(true);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900919 mLastSystemLocale = newLocale;
920 if (!updateOnlyWhenLocaleChanged) {
921 try {
922 startInputInnerLocked();
923 } catch (RuntimeException e) {
924 Slog.w(TAG, "Unexpected exception", e);
925 }
926 }
927 }
928 }
929
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +0900930 private void resetStateIfCurrentLocaleChangedLocked() {
Satoshi Kataoka7f7535f2013-02-18 12:54:16 +0900931 resetAllInternalStateLocked(true /* updateOnlyWhenLocaleChanged */,
932 true /* resetDefaultImeLocked */);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900933 }
934
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +0900935 private void switchUserLocked(int newUserId) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900936 mSettings.setCurrentUserId(newUserId);
Kenny Guy2a764942014-04-02 13:29:20 +0100937 updateCurrentProfileIds();
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +0900938 // InputMethodFileManager should be reset when the user is changed
939 mFileManager = new InputMethodFileManager(mMethodMap, newUserId);
Satoshi Kataoka7f7535f2013-02-18 12:54:16 +0900940 final String defaultImiId = mSettings.getSelectedInputMethod();
Satoshi Kataoka7c4a2a12013-02-25 15:25:43 +0900941 // For secondary users, the list of enabled IMEs may not have been updated since the
942 // callbacks to PackageMonitor are ignored for the secondary user. Here, defaultImiId may
943 // not be empty even if the IME has been uninstalled by the primary user.
944 // Even in such cases, IMMS works fine because it will find the most applicable
945 // IME for that user.
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +0900946 final boolean initialUserSwitch = TextUtils.isEmpty(defaultImiId);
Satoshi Kataoka7f7535f2013-02-18 12:54:16 +0900947 if (DEBUG) {
948 Slog.d(TAG, "Switch user: " + newUserId + " current ime = " + defaultImiId);
949 }
950 resetAllInternalStateLocked(false /* updateOnlyWhenLocaleChanged */,
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +0900951 initialUserSwitch /* needsToResetDefaultIme */);
952 if (initialUserSwitch) {
953 InputMethodUtils.setNonSelectedSystemImesDisabledUntilUsed(mContext.getPackageManager(),
954 mSettings.getEnabledInputMethodListLocked());
955 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900956 }
957
Kenny Guy2a764942014-04-02 13:29:20 +0100958 void updateCurrentProfileIds() {
959 List<UserInfo> profiles =
960 UserManager.get(mContext).getProfiles(mSettings.getCurrentUserId());
961 int[] currentProfileIds = new int[profiles.size()]; // profiles will not be null
962 for (int i = 0; i < currentProfileIds.length; i++) {
963 currentProfileIds[i] = profiles.get(i).id;
Amith Yamasani734983f2014-03-04 16:48:05 -0800964 }
Kenny Guy2a764942014-04-02 13:29:20 +0100965 mSettings.setCurrentProfileIds(currentProfileIds);
Amith Yamasani734983f2014-03-04 16:48:05 -0800966 }
967
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800968 @Override
969 public boolean onTransact(int code, Parcel data, Parcel reply, int flags)
970 throws RemoteException {
971 try {
972 return super.onTransact(code, data, reply, flags);
973 } catch (RuntimeException e) {
974 // The input method manager only throws security exceptions, so let's
975 // log all others.
976 if (!(e instanceof SecurityException)) {
Dianne Hackborn164371f2013-10-01 19:10:13 -0700977 Slog.wtf(TAG, "Input Method Manager Crash", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800978 }
979 throw e;
980 }
981 }
982
Svetoslav Ganova0027152013-06-25 14:59:53 -0700983 public void systemRunning(StatusBarManagerService statusBar) {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700984 synchronized (mMethodMap) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900985 if (DEBUG) {
986 Slog.d(TAG, "--- systemReady");
987 }
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700988 if (!mSystemReady) {
989 mSystemReady = true;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900990 mKeyguardManager =
991 (KeyguardManager) mContext.getSystemService(Context.KEYGUARD_SERVICE);
Dianne Hackborn661cd522011-08-22 00:26:20 -0700992 mNotificationManager = (NotificationManager)
993 mContext.getSystemService(Context.NOTIFICATION_SERVICE);
994 mStatusBar = statusBar;
995 statusBar.setIconVisibility("ime", false);
996 updateImeWindowStatusLocked();
satokb858c732011-07-22 19:54:34 +0900997 mShowOngoingImeSwitcherForPhones = mRes.getBoolean(
998 com.android.internal.R.bool.show_ongoing_ime_switcher);
satok01038492012-04-09 21:08:27 +0900999 if (mShowOngoingImeSwitcherForPhones) {
1000 mWindowManagerService.setOnHardKeyboardStatusChangeListener(
1001 mHardKeyboardListener);
1002 }
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09001003 buildInputMethodListLocked(mMethodList, mMethodMap,
1004 !mImeSelectedOnBoot /* resetDefaultEnabledIme */);
satok0a1bcf42012-05-16 19:26:31 +09001005 if (!mImeSelectedOnBoot) {
1006 Slog.w(TAG, "Reset the default IME as \"Resource\" is ready here.");
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +09001007 resetStateIfCurrentLocaleChangedLocked();
1008 InputMethodUtils.setNonSelectedSystemImesDisabledUntilUsed(
1009 mContext.getPackageManager(),
1010 mSettings.getEnabledInputMethodListLocked());
satok0a1bcf42012-05-16 19:26:31 +09001011 }
1012 mLastSystemLocale = mRes.getConfiguration().locale;
Dianne Hackborncc278702009-09-02 23:07:23 -07001013 try {
1014 startInputInnerLocked();
1015 } catch (RuntimeException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001016 Slog.w(TAG, "Unexpected exception", e);
Dianne Hackborncc278702009-09-02 23:07:23 -07001017 }
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001018 }
1019 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001020 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001021
satok15452a42011-10-28 17:58:28 +09001022 private void setImeWindowVisibilityStatusHiddenLocked() {
1023 mImeWindowVis = 0;
1024 updateImeWindowStatusLocked();
1025 }
1026
satok3afd6c02011-11-18 08:38:19 +09001027 private void refreshImeWindowVisibilityLocked() {
1028 final Configuration conf = mRes.getConfiguration();
1029 final boolean haveHardKeyboard = conf.keyboard
1030 != Configuration.KEYBOARD_NOKEYS;
1031 final boolean hardKeyShown = haveHardKeyboard
1032 && conf.hardKeyboardHidden
1033 != Configuration.HARDKEYBOARDHIDDEN_YES;
John Spurlocke0980502013-10-25 11:59:29 -04001034
1035 final boolean isScreenLocked = isKeyguardLocked();
1036 final boolean inputActive = !isScreenLocked && (mInputShown || hardKeyShown);
John Spurlock36439b42013-10-23 16:36:47 -04001037 // We assume the softkeyboard is shown when the input is active as long as the
1038 // hard keyboard is not shown.
1039 final boolean inputVisible = inputActive && !hardKeyShown;
1040 mImeWindowVis = (inputActive ? InputMethodService.IME_ACTIVE : 0)
1041 | (inputVisible ? InputMethodService.IME_VISIBLE : 0);
satok3afd6c02011-11-18 08:38:19 +09001042 updateImeWindowStatusLocked();
1043 }
1044
satok15452a42011-10-28 17:58:28 +09001045 private void updateImeWindowStatusLocked() {
satokdbf29502011-08-25 15:28:23 +09001046 setImeWindowStatus(mCurToken, mImeWindowVis, mBackDisposition);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001047 }
1048
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001049 // ---------------------------------------------------------------------------------------
1050 // Check whether or not this is a valid IPC. Assumes an IPC is valid when either
1051 // 1) it comes from the system process
1052 // 2) the calling process' user id is identical to the current user id IMMS thinks.
1053 private boolean calledFromValidUser() {
1054 final int uid = Binder.getCallingUid();
1055 final int userId = UserHandle.getUserId(uid);
1056 if (DEBUG) {
1057 Slog.d(TAG, "--- calledFromForegroundUserOrSystemProcess ? "
1058 + "calling uid = " + uid + " system uid = " + Process.SYSTEM_UID
1059 + " calling userId = " + userId + ", foreground user id = "
Satoshi Kataoka87c29142013-07-31 23:11:54 +09001060 + mSettings.getCurrentUserId() + ", calling pid = " + Binder.getCallingPid()
1061 + InputMethodUtils.getApiCallStack());
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001062 }
Kenny Guy2a764942014-04-02 13:29:20 +01001063 if (uid == Process.SYSTEM_UID || mSettings.isCurrentProfile(userId)) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001064 return true;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001065 }
Satoshi Kataoka135e5fb2012-09-28 18:25:06 +09001066
1067 // Caveat: A process which has INTERACT_ACROSS_USERS_FULL gets results for the
1068 // foreground user, not for the user of that process. Accordingly InputMethodManagerService
1069 // must not manage background users' states in any functions.
1070 // Note that privacy-sensitive IPCs, such as setInputMethod, are still securely guarded
1071 // by a token.
1072 if (mContext.checkCallingOrSelfPermission(
1073 android.Manifest.permission.INTERACT_ACROSS_USERS_FULL)
1074 == PackageManager.PERMISSION_GRANTED) {
1075 if (DEBUG) {
1076 Slog.d(TAG, "--- Access granted because the calling process has "
1077 + "the INTERACT_ACROSS_USERS_FULL permission");
1078 }
1079 return true;
1080 }
Satoshi Kataoka0766eb02013-07-31 18:30:13 +09001081 Slog.w(TAG, "--- IPC called from background users. Ignore. \n"
1082 + InputMethodUtils.getStackTrace());
Satoshi Kataoka135e5fb2012-09-28 18:25:06 +09001083 return false;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001084 }
1085
Yohei Yukawa22c97be2014-06-04 19:43:36 +09001086
1087 /**
1088 * Returns true iff the caller is identified to be the current input method with the token.
1089 * @param token The window token given to the input method when it was started.
1090 * @return true if and only if non-null valid token is specified.
1091 */
1092 private boolean calledWithValidToken(IBinder token) {
1093 if (token == null || mCurToken != token) {
1094 return false;
1095 }
1096 return true;
1097 }
1098
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001099 private boolean bindCurrentInputMethodService(
1100 Intent service, ServiceConnection conn, int flags) {
1101 if (service == null || conn == null) {
1102 Slog.e(TAG, "--- bind failed: service = " + service + ", conn = " + conn);
1103 return false;
1104 }
Amith Yamasani27b89e62013-01-16 12:30:11 -08001105 return mContext.bindServiceAsUser(service, conn, flags,
1106 new UserHandle(mSettings.getCurrentUserId()));
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001107 }
1108
satoke7c6998e2011-06-03 17:57:59 +09001109 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001110 public List<InputMethodInfo> getInputMethodList() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001111 // TODO: Make this work even for non-current users?
1112 if (!calledFromValidUser()) {
1113 return Collections.emptyList();
1114 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001115 synchronized (mMethodMap) {
1116 return new ArrayList<InputMethodInfo>(mMethodList);
1117 }
1118 }
1119
satoke7c6998e2011-06-03 17:57:59 +09001120 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001121 public List<InputMethodInfo> getEnabledInputMethodList() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001122 // TODO: Make this work even for non-current users?
1123 if (!calledFromValidUser()) {
1124 return Collections.emptyList();
1125 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001126 synchronized (mMethodMap) {
satokd87c2592010-09-29 11:52:06 +09001127 return mSettings.getEnabledInputMethodListLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001128 }
1129 }
1130
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001131 /**
Satoshi Kataokab3c21ac2013-08-07 15:43:29 +09001132 * @param imiId if null, returns enabled subtypes for the current imi
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001133 * @return enabled subtypes of the specified imi
1134 */
satoke7c6998e2011-06-03 17:57:59 +09001135 @Override
Satoshi Kataokab3c21ac2013-08-07 15:43:29 +09001136 public List<InputMethodSubtype> getEnabledInputMethodSubtypeList(String imiId,
satok16331c82010-12-20 23:48:46 +09001137 boolean allowsImplicitlySelectedSubtypes) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001138 // TODO: Make this work even for non-current users?
1139 if (!calledFromValidUser()) {
Satoshi Kataokab3c21ac2013-08-07 15:43:29 +09001140 return Collections.<InputMethodSubtype>emptyList();
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001141 }
satok67ddf9c2010-11-17 09:45:54 +09001142 synchronized (mMethodMap) {
Satoshi Kataokab3c21ac2013-08-07 15:43:29 +09001143 final InputMethodInfo imi;
1144 if (imiId == null && mCurMethodId != null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001145 imi = mMethodMap.get(mCurMethodId);
Satoshi Kataokab3c21ac2013-08-07 15:43:29 +09001146 } else {
1147 imi = mMethodMap.get(imiId);
1148 }
1149 if (imi == null) {
1150 return Collections.<InputMethodSubtype>emptyList();
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001151 }
1152 return mSettings.getEnabledInputMethodSubtypeListLocked(
1153 mContext, imi, allowsImplicitlySelectedSubtypes);
satok67ddf9c2010-11-17 09:45:54 +09001154 }
1155 }
1156
satoke7c6998e2011-06-03 17:57:59 +09001157 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001158 public void addClient(IInputMethodClient client,
1159 IInputContext inputContext, int uid, int pid) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001160 if (!calledFromValidUser()) {
1161 return;
1162 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001163 synchronized (mMethodMap) {
1164 mClients.put(client.asBinder(), new ClientState(client,
1165 inputContext, uid, pid));
1166 }
1167 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001168
satoke7c6998e2011-06-03 17:57:59 +09001169 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001170 public void removeClient(IInputMethodClient client) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001171 if (!calledFromValidUser()) {
1172 return;
1173 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001174 synchronized (mMethodMap) {
Jeff Brownc28867a2013-03-26 15:42:39 -07001175 ClientState cs = mClients.remove(client.asBinder());
1176 if (cs != null) {
1177 clearClientSessionLocked(cs);
1178 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001179 }
1180 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001181
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001182 void executeOrSendMessage(IInterface target, Message msg) {
1183 if (target.asBinder() instanceof Binder) {
1184 mCaller.sendMessage(msg);
1185 } else {
1186 handleMessage(msg);
1187 msg.recycle();
1188 }
1189 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001190
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001191 void unbindCurrentClientLocked() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001192 if (mCurClient != null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001193 if (DEBUG) Slog.v(TAG, "unbindCurrentInputLocked: client = "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001194 + mCurClient.client.asBinder());
1195 if (mBoundToMethod) {
1196 mBoundToMethod = false;
1197 if (mCurMethod != null) {
1198 executeOrSendMessage(mCurMethod, mCaller.obtainMessageO(
1199 MSG_UNBIND_INPUT, mCurMethod));
1200 }
1201 }
Dianne Hackborna6e41342012-05-22 16:30:34 -07001202
1203 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
1204 MSG_SET_ACTIVE, 0, mCurClient));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001205 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
1206 MSG_UNBIND_METHOD, mCurSeq, mCurClient.client));
1207 mCurClient.sessionRequested = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001208 mCurClient = null;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001209
The Android Open Source Project10592532009-03-18 17:39:46 -07001210 hideInputMethodMenuLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001211 }
1212 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001213
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001214 private int getImeShowFlags() {
1215 int flags = 0;
1216 if (mShowForced) {
1217 flags |= InputMethod.SHOW_FORCED
1218 | InputMethod.SHOW_EXPLICIT;
1219 } else if (mShowExplicitlyRequested) {
1220 flags |= InputMethod.SHOW_EXPLICIT;
1221 }
1222 return flags;
1223 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001224
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001225 private int getAppShowFlags() {
1226 int flags = 0;
1227 if (mShowForced) {
1228 flags |= InputMethodManager.SHOW_FORCED;
1229 } else if (!mShowExplicitlyRequested) {
1230 flags |= InputMethodManager.SHOW_IMPLICIT;
1231 }
1232 return flags;
1233 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001234
Dianne Hackborn7663d802012-02-24 13:08:49 -08001235 InputBindResult attachNewInputLocked(boolean initial) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001236 if (!mBoundToMethod) {
1237 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
1238 MSG_BIND_INPUT, mCurMethod, mCurClient.binding));
1239 mBoundToMethod = true;
1240 }
1241 final SessionState session = mCurClient.curSession;
1242 if (initial) {
1243 executeOrSendMessage(session.method, mCaller.obtainMessageOOO(
1244 MSG_START_INPUT, session, mCurInputContext, mCurAttribute));
1245 } else {
1246 executeOrSendMessage(session.method, mCaller.obtainMessageOOO(
1247 MSG_RESTART_INPUT, session, mCurInputContext, mCurAttribute));
1248 }
1249 if (mShowRequested) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001250 if (DEBUG) Slog.v(TAG, "Attach new input asks to show input");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001251 showCurrentInputLocked(getAppShowFlags(), null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001252 }
Jeff Brown1951ce82013-04-04 22:45:12 -07001253 return new InputBindResult(session.session,
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09001254 (session.channel != null ? session.channel.dup() : null),
1255 mCurId, mCurSeq, mCurUserActionNotificationSequenceNumber);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001256 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001257
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001258 InputBindResult startInputLocked(IInputMethodClient client,
Dianne Hackborn7663d802012-02-24 13:08:49 -08001259 IInputContext inputContext, EditorInfo attribute, int controlFlags) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001260 // If no method is currently selected, do nothing.
1261 if (mCurMethodId == null) {
1262 return mNoBinding;
1263 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001264
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001265 ClientState cs = mClients.get(client.asBinder());
1266 if (cs == null) {
1267 throw new IllegalArgumentException("unknown client "
1268 + client.asBinder());
1269 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001270
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001271 try {
1272 if (!mIWindowManager.inputMethodClientHasFocus(cs.client)) {
1273 // Check with the window manager to make sure this client actually
1274 // has a window with focus. If not, reject. This is thread safe
1275 // because if the focus changes some time before or after, the
1276 // next client receiving focus that has any interest in input will
1277 // be calling through here after that change happens.
Joe Onorato8a9b2202010-02-26 18:56:32 -08001278 Slog.w(TAG, "Starting input on non-focused client " + cs.client
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001279 + " (uid=" + cs.uid + " pid=" + cs.pid + ")");
1280 return null;
1281 }
1282 } catch (RemoteException e) {
1283 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001284
Dianne Hackborn7663d802012-02-24 13:08:49 -08001285 return startInputUncheckedLocked(cs, inputContext, attribute, controlFlags);
1286 }
1287
1288 InputBindResult startInputUncheckedLocked(ClientState cs,
1289 IInputContext inputContext, EditorInfo attribute, int controlFlags) {
1290 // If no method is currently selected, do nothing.
1291 if (mCurMethodId == null) {
1292 return mNoBinding;
1293 }
1294
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001295 if (mCurClient != cs) {
John Spurlocke0980502013-10-25 11:59:29 -04001296 // Was the keyguard locked when switching over to the new client?
1297 mCurClientInKeyguard = isKeyguardLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001298 // If the client is changing, we need to switch over to the new
1299 // one.
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001300 unbindCurrentClientLocked();
Joe Onorato8a9b2202010-02-26 18:56:32 -08001301 if (DEBUG) Slog.v(TAG, "switching to client: client = "
John Spurlocke0980502013-10-25 11:59:29 -04001302 + cs.client.asBinder() + " keyguard=" + mCurClientInKeyguard);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001303
1304 // If the screen is on, inform the new client it is active
1305 if (mScreenOn) {
Dianne Hackborna6e41342012-05-22 16:30:34 -07001306 executeOrSendMessage(cs.client, mCaller.obtainMessageIO(
1307 MSG_SET_ACTIVE, mScreenOn ? 1 : 0, cs));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001308 }
1309 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001310
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001311 // Bump up the sequence for this client and attach it.
1312 mCurSeq++;
1313 if (mCurSeq <= 0) mCurSeq = 1;
1314 mCurClient = cs;
1315 mCurInputContext = inputContext;
1316 mCurAttribute = attribute;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001317
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001318 // Check if the input method is changing.
1319 if (mCurId != null && mCurId.equals(mCurMethodId)) {
1320 if (cs.curSession != null) {
1321 // Fast case: if we are already connected to the input method,
1322 // then just return it.
Dianne Hackborn7663d802012-02-24 13:08:49 -08001323 return attachNewInputLocked(
1324 (controlFlags&InputMethodManager.CONTROL_START_INITIAL) != 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001325 }
1326 if (mHaveConnection) {
1327 if (mCurMethod != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001328 // Return to client, and we will get back with it when
1329 // we have had a session made for it.
Jeff Brownc28867a2013-03-26 15:42:39 -07001330 requestClientSessionLocked(cs);
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09001331 return new InputBindResult(null, null, mCurId, mCurSeq,
1332 mCurUserActionNotificationSequenceNumber);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001333 } else if (SystemClock.uptimeMillis()
1334 < (mLastBindTime+TIME_TO_RECONNECT)) {
1335 // In this case we have connected to the service, but
1336 // don't yet have its interface. If it hasn't been too
1337 // long since we did the connection, we'll return to
1338 // the client and wait to get the service interface so
1339 // we can report back. If it has been too long, we want
1340 // to fall through so we can try a disconnect/reconnect
1341 // to see if we can get back in touch with the service.
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09001342 return new InputBindResult(null, null, mCurId, mCurSeq,
1343 mCurUserActionNotificationSequenceNumber);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001344 } else {
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001345 EventLog.writeEvent(EventLogTags.IMF_FORCE_RECONNECT_IME,
1346 mCurMethodId, SystemClock.uptimeMillis()-mLastBindTime, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001347 }
1348 }
1349 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001350
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001351 return startInputInnerLocked();
1352 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001353
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001354 InputBindResult startInputInnerLocked() {
1355 if (mCurMethodId == null) {
1356 return mNoBinding;
1357 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001358
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001359 if (!mSystemReady) {
1360 // If the system is not yet ready, we shouldn't be running third
1361 // party code.
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09001362 return new InputBindResult(null, null, mCurMethodId, mCurSeq,
1363 mCurUserActionNotificationSequenceNumber);
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001364 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001365
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001366 InputMethodInfo info = mMethodMap.get(mCurMethodId);
1367 if (info == null) {
1368 throw new IllegalArgumentException("Unknown id: " + mCurMethodId);
1369 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001370
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07001371 unbindCurrentMethodLocked(false, true);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001372
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001373 mCurIntent = new Intent(InputMethod.SERVICE_INTERFACE);
1374 mCurIntent.setComponent(info.getComponent());
Dianne Hackborndd9b82c2009-09-03 00:18:47 -07001375 mCurIntent.putExtra(Intent.EXTRA_CLIENT_LABEL,
1376 com.android.internal.R.string.input_method_binding_label);
1377 mCurIntent.putExtra(Intent.EXTRA_CLIENT_INTENT, PendingIntent.getActivity(
1378 mContext, 0, new Intent(Settings.ACTION_INPUT_METHOD_SETTINGS), 0));
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001379 if (bindCurrentInputMethodService(mCurIntent, this, Context.BIND_AUTO_CREATE
Dianne Hackbornf0f94d12014-03-17 16:04:21 -07001380 | Context.BIND_NOT_VISIBLE | Context.BIND_NOT_FOREGROUND
1381 | Context.BIND_SHOWING_UI)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001382 mLastBindTime = SystemClock.uptimeMillis();
1383 mHaveConnection = true;
1384 mCurId = info.getId();
1385 mCurToken = new Binder();
1386 try {
Craig Mautnerca0ac712013-03-14 09:43:02 -07001387 if (true || DEBUG) Slog.v(TAG, "Adding window token: " + mCurToken);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001388 mIWindowManager.addWindowToken(mCurToken,
1389 WindowManager.LayoutParams.TYPE_INPUT_METHOD);
1390 } catch (RemoteException e) {
1391 }
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09001392 return new InputBindResult(null, null, mCurId, mCurSeq,
1393 mCurUserActionNotificationSequenceNumber);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001394 } else {
1395 mCurIntent = null;
Joe Onorato8a9b2202010-02-26 18:56:32 -08001396 Slog.w(TAG, "Failure connecting to input method service: "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001397 + mCurIntent);
1398 }
1399 return null;
1400 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001401
satoke7c6998e2011-06-03 17:57:59 +09001402 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001403 public InputBindResult startInput(IInputMethodClient client,
Dianne Hackborn7663d802012-02-24 13:08:49 -08001404 IInputContext inputContext, EditorInfo attribute, int controlFlags) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001405 if (!calledFromValidUser()) {
1406 return null;
1407 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001408 synchronized (mMethodMap) {
1409 final long ident = Binder.clearCallingIdentity();
1410 try {
Dianne Hackborn7663d802012-02-24 13:08:49 -08001411 return startInputLocked(client, inputContext, attribute, controlFlags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001412 } finally {
1413 Binder.restoreCallingIdentity(ident);
1414 }
1415 }
1416 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001417
satoke7c6998e2011-06-03 17:57:59 +09001418 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001419 public void finishInput(IInputMethodClient client) {
1420 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001421
satoke7c6998e2011-06-03 17:57:59 +09001422 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001423 public void onServiceConnected(ComponentName name, IBinder service) {
1424 synchronized (mMethodMap) {
1425 if (mCurIntent != null && name.equals(mCurIntent.getComponent())) {
1426 mCurMethod = IInputMethod.Stub.asInterface(service);
Dianne Hackborncc278702009-09-02 23:07:23 -07001427 if (mCurToken == null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001428 Slog.w(TAG, "Service connected without a token!");
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07001429 unbindCurrentMethodLocked(false, false);
Dianne Hackborncc278702009-09-02 23:07:23 -07001430 return;
1431 }
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07001432 if (DEBUG) Slog.v(TAG, "Initiating attach with token: " + mCurToken);
Dianne Hackborncc278702009-09-02 23:07:23 -07001433 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
1434 MSG_ATTACH_TOKEN, mCurMethod, mCurToken));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001435 if (mCurClient != null) {
Jeff Brownc28867a2013-03-26 15:42:39 -07001436 clearClientSessionLocked(mCurClient);
1437 requestClientSessionLocked(mCurClient);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001438 }
1439 }
1440 }
1441 }
1442
Jeff Brownc28867a2013-03-26 15:42:39 -07001443 void onSessionCreated(IInputMethod method, IInputMethodSession session,
1444 InputChannel channel) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001445 synchronized (mMethodMap) {
1446 if (mCurMethod != null && method != null
1447 && mCurMethod.asBinder() == method.asBinder()) {
1448 if (mCurClient != null) {
Jeff Brownc28867a2013-03-26 15:42:39 -07001449 clearClientSessionLocked(mCurClient);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001450 mCurClient.curSession = new SessionState(mCurClient,
Jeff Brownc28867a2013-03-26 15:42:39 -07001451 method, session, channel);
Dianne Hackborn7663d802012-02-24 13:08:49 -08001452 InputBindResult res = attachNewInputLocked(true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001453 if (res.method != null) {
1454 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageOO(
1455 MSG_BIND_METHOD, mCurClient.client, res));
1456 }
Jeff Brownc28867a2013-03-26 15:42:39 -07001457 return;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001458 }
1459 }
1460 }
Jeff Brownc28867a2013-03-26 15:42:39 -07001461
1462 // Session abandoned. Close its associated input channel.
1463 channel.dispose();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001464 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001465
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07001466 void unbindCurrentMethodLocked(boolean reportToClient, boolean savePosition) {
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07001467 if (mVisibleBound) {
1468 mContext.unbindService(mVisibleConnection);
1469 mVisibleBound = false;
1470 }
1471
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001472 if (mHaveConnection) {
1473 mContext.unbindService(this);
1474 mHaveConnection = false;
1475 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001476
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001477 if (mCurToken != null) {
1478 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001479 if (DEBUG) Slog.v(TAG, "Removing window token: " + mCurToken);
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07001480 if ((mImeWindowVis & InputMethodService.IME_ACTIVE) != 0 && savePosition) {
satoke0a99412012-05-10 02:22:58 +09001481 // The current IME is shown. Hence an IME switch (transition) is happening.
1482 mWindowManagerService.saveLastInputMethodWindowForTransition();
1483 }
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001484 mIWindowManager.removeWindowToken(mCurToken);
1485 } catch (RemoteException e) {
1486 }
1487 mCurToken = null;
1488 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001489
The Android Open Source Project10592532009-03-18 17:39:46 -07001490 mCurId = null;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001491 clearCurMethodLocked();
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001492
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001493 if (reportToClient && mCurClient != null) {
1494 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
1495 MSG_UNBIND_METHOD, mCurSeq, mCurClient.client));
1496 }
1497 }
Jeff Brownc28867a2013-03-26 15:42:39 -07001498
1499 void requestClientSessionLocked(ClientState cs) {
1500 if (!cs.sessionRequested) {
1501 if (DEBUG) Slog.v(TAG, "Creating new session for client " + cs);
1502 InputChannel[] channels = InputChannel.openInputChannelPair(cs.toString());
1503 cs.sessionRequested = true;
1504 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOOO(
1505 MSG_CREATE_SESSION, mCurMethod, channels[1],
1506 new MethodCallback(this, mCurMethod, channels[0])));
1507 }
1508 }
1509
1510 void clearClientSessionLocked(ClientState cs) {
1511 finishSessionLocked(cs.curSession);
1512 cs.curSession = null;
1513 cs.sessionRequested = false;
1514 }
1515
1516 private void finishSessionLocked(SessionState sessionState) {
1517 if (sessionState != null) {
1518 if (sessionState.session != null) {
1519 try {
1520 sessionState.session.finishSession();
1521 } catch (RemoteException e) {
1522 Slog.w(TAG, "Session failed to close due to remote exception", e);
1523 setImeWindowVisibilityStatusHiddenLocked();
1524 }
1525 sessionState.session = null;
1526 }
1527 if (sessionState.channel != null) {
1528 sessionState.channel.dispose();
1529 sessionState.channel = null;
Devin Taylor0c33ed22010-02-23 13:26:46 -06001530 }
1531 }
1532 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001533
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001534 void clearCurMethodLocked() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001535 if (mCurMethod != null) {
1536 for (ClientState cs : mClients.values()) {
Jeff Brownc28867a2013-03-26 15:42:39 -07001537 clearClientSessionLocked(cs);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001538 }
Devin Taylor0c33ed22010-02-23 13:26:46 -06001539
Jeff Brownc28867a2013-03-26 15:42:39 -07001540 finishSessionLocked(mEnabledSession);
Devin Taylor0c33ed22010-02-23 13:26:46 -06001541 mEnabledSession = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001542 mCurMethod = null;
1543 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07001544 if (mStatusBar != null) {
1545 mStatusBar.setIconVisibility("ime", false);
1546 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001547 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001548
satoke7c6998e2011-06-03 17:57:59 +09001549 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001550 public void onServiceDisconnected(ComponentName name) {
1551 synchronized (mMethodMap) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001552 if (DEBUG) Slog.v(TAG, "Service disconnected: " + name
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001553 + " mCurIntent=" + mCurIntent);
1554 if (mCurMethod != null && mCurIntent != null
1555 && name.equals(mCurIntent.getComponent())) {
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001556 clearCurMethodLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001557 // We consider this to be a new bind attempt, since the system
1558 // should now try to restart the service for us.
1559 mLastBindTime = SystemClock.uptimeMillis();
1560 mShowRequested = mInputShown;
1561 mInputShown = false;
1562 if (mCurClient != null) {
1563 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
1564 MSG_UNBIND_METHOD, mCurSeq, mCurClient.client));
1565 }
1566 }
1567 }
1568 }
1569
satokf9f01002011-05-19 21:31:50 +09001570 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001571 public void updateStatusIcon(IBinder token, String packageName, int iconId) {
1572 long ident = Binder.clearCallingIdentity();
1573 try {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001574 synchronized (mMethodMap) {
Yohei Yukawaa0755742014-06-04 20:28:18 +09001575 if (!calledWithValidToken(token)) {
1576 final int uid = Binder.getCallingUid();
1577 Slog.e(TAG, "Ignoring updateStatusIcon due to an invalid token. uid:" + uid
1578 + " token:" + token);
1579 return;
1580 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001581 if (iconId == 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001582 if (DEBUG) Slog.d(TAG, "hide the small icon for the input method");
Dianne Hackborn661cd522011-08-22 00:26:20 -07001583 if (mStatusBar != null) {
1584 mStatusBar.setIconVisibility("ime", false);
1585 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001586 } else if (packageName != null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001587 if (DEBUG) Slog.d(TAG, "show a small icon for the input method");
Svetoslav Ganov6179ea32011-06-28 01:12:41 -07001588 CharSequence contentDescription = null;
1589 try {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001590 // Use PackageManager to load label
1591 final PackageManager packageManager = mContext.getPackageManager();
Svetoslav Ganov6179ea32011-06-28 01:12:41 -07001592 contentDescription = packageManager.getApplicationLabel(
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001593 mIPackageManager.getApplicationInfo(packageName, 0,
1594 mSettings.getCurrentUserId()));
1595 } catch (RemoteException e) {
Svetoslav Ganov6179ea32011-06-28 01:12:41 -07001596 /* ignore */
1597 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07001598 if (mStatusBar != null) {
1599 mStatusBar.setIcon("ime", packageName, iconId, 0,
1600 contentDescription != null
1601 ? contentDescription.toString() : null);
1602 mStatusBar.setIconVisibility("ime", true);
1603 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001604 }
1605 }
1606 } finally {
1607 Binder.restoreCallingIdentity(ident);
1608 }
1609 }
1610
satok7cfc0ed2011-06-20 21:29:36 +09001611 private boolean needsToShowImeSwitchOngoingNotification() {
1612 if (!mShowOngoingImeSwitcherForPhones) return false;
Jason Monk807ef762014-05-08 15:47:46 -04001613 if (mSwitchingDialog != null) return false;
satok2c93efc2012-04-02 19:33:47 +09001614 if (isScreenLocked()) return false;
satok7cfc0ed2011-06-20 21:29:36 +09001615 synchronized (mMethodMap) {
1616 List<InputMethodInfo> imis = mSettings.getEnabledInputMethodListLocked();
1617 final int N = imis.size();
satokb6359412011-06-28 17:47:41 +09001618 if (N > 2) return true;
1619 if (N < 1) return false;
1620 int nonAuxCount = 0;
1621 int auxCount = 0;
1622 InputMethodSubtype nonAuxSubtype = null;
1623 InputMethodSubtype auxSubtype = null;
satok7cfc0ed2011-06-20 21:29:36 +09001624 for(int i = 0; i < N; ++i) {
1625 final InputMethodInfo imi = imis.get(i);
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001626 final List<InputMethodSubtype> subtypes =
1627 mSettings.getEnabledInputMethodSubtypeListLocked(mContext, imi, true);
satok7cfc0ed2011-06-20 21:29:36 +09001628 final int subtypeCount = subtypes.size();
1629 if (subtypeCount == 0) {
satokb6359412011-06-28 17:47:41 +09001630 ++nonAuxCount;
satok7cfc0ed2011-06-20 21:29:36 +09001631 } else {
1632 for (int j = 0; j < subtypeCount; ++j) {
satokb6359412011-06-28 17:47:41 +09001633 final InputMethodSubtype subtype = subtypes.get(j);
1634 if (!subtype.isAuxiliary()) {
1635 ++nonAuxCount;
1636 nonAuxSubtype = subtype;
1637 } else {
1638 ++auxCount;
1639 auxSubtype = subtype;
satok7cfc0ed2011-06-20 21:29:36 +09001640 }
1641 }
1642 }
satok7cfc0ed2011-06-20 21:29:36 +09001643 }
satokb6359412011-06-28 17:47:41 +09001644 if (nonAuxCount > 1 || auxCount > 1) {
1645 return true;
1646 } else if (nonAuxCount == 1 && auxCount == 1) {
1647 if (nonAuxSubtype != null && auxSubtype != null
satok9747f892011-09-12 15:56:40 +09001648 && (nonAuxSubtype.getLocale().equals(auxSubtype.getLocale())
1649 || auxSubtype.overridesImplicitlyEnabledSubtype()
1650 || nonAuxSubtype.overridesImplicitlyEnabledSubtype())
satokb6359412011-06-28 17:47:41 +09001651 && nonAuxSubtype.containsExtraValueKey(TAG_TRY_SUPPRESSING_IME_SWITCHER)) {
1652 return false;
1653 }
1654 return true;
1655 }
1656 return false;
satok7cfc0ed2011-06-20 21:29:36 +09001657 }
satok7cfc0ed2011-06-20 21:29:36 +09001658 }
1659
John Spurlocke0980502013-10-25 11:59:29 -04001660 private boolean isKeyguardLocked() {
1661 return mKeyguardManager != null && mKeyguardManager.isKeyguardLocked();
1662 }
1663
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001664 // Caution! This method is called in this class. Handle multi-user carefully
satokdbf29502011-08-25 15:28:23 +09001665 @SuppressWarnings("deprecation")
satokf9f01002011-05-19 21:31:50 +09001666 @Override
Joe Onorato857fd9b2011-01-27 15:08:35 -08001667 public void setImeWindowStatus(IBinder token, int vis, int backDisposition) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001668 final long ident = Binder.clearCallingIdentity();
satok06487a52010-10-29 11:37:18 +09001669 try {
Yohei Yukawa22c97be2014-06-04 19:43:36 +09001670 if (!calledWithValidToken(token)) {
1671 final int uid = Binder.getCallingUid();
1672 Slog.e(TAG, "Ignoring setImeWindowStatus due to an invalid token. uid:" + uid
1673 + " token:" + token);
satok06487a52010-10-29 11:37:18 +09001674 return;
1675 }
satok06487a52010-10-29 11:37:18 +09001676 synchronized (mMethodMap) {
John Spurlocke0980502013-10-25 11:59:29 -04001677 // apply policy for binder calls
1678 if (vis != 0 && isKeyguardLocked() && !mCurClientInKeyguard) {
1679 vis = 0;
1680 }
Joe Onorato857fd9b2011-01-27 15:08:35 -08001681 mImeWindowVis = vis;
1682 mBackDisposition = backDisposition;
jungheang.lee217fd292013-02-26 16:53:22 +09001683 final boolean iconVisibility = ((vis & (InputMethodService.IME_ACTIVE)) != 0)
1684 && (mWindowManagerService.isHardKeyboardAvailable()
1685 || (vis & (InputMethodService.IME_VISIBLE)) != 0);
Jason Monkb605fec2014-05-02 17:04:10 -04001686 final boolean needsToShowImeSwitcher = iconVisibility
1687 && needsToShowImeSwitchOngoingNotification();
1688 if (mStatusBar != null) {
1689 mStatusBar.setImeWindowStatus(token, vis, backDisposition,
1690 needsToShowImeSwitcher);
1691 }
satok5bc8e732011-07-22 21:07:23 +09001692 final InputMethodInfo imi = mMethodMap.get(mCurMethodId);
Jason Monkb605fec2014-05-02 17:04:10 -04001693 if (imi != null && needsToShowImeSwitcher) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001694 // Used to load label
satok7cfc0ed2011-06-20 21:29:36 +09001695 final CharSequence title = mRes.getText(
1696 com.android.internal.R.string.select_input_method);
Satoshi Kataokab2827262013-07-04 19:43:14 +09001697 final CharSequence summary = InputMethodUtils.getImeAndSubtypeDisplayName(
1698 mContext, imi, mCurrentSubtype);
satok5bc8e732011-07-22 21:07:23 +09001699
Alan Viverette4a357cd2015-03-18 18:37:18 -07001700 mImeSwitcherNotification.color = mContext.getColor(
Selim Cinek255dd042014-08-19 22:29:02 +02001701 com.android.internal.R.color.system_notification_accent_color);
satok7cfc0ed2011-06-20 21:29:36 +09001702 mImeSwitcherNotification.setLatestEventInfo(
satok5bc8e732011-07-22 21:07:23 +09001703 mContext, title, summary, mImeSwitchPendingIntent);
Jason Monke463c742014-05-02 12:31:45 -04001704 if ((mNotificationManager != null)
1705 && !mWindowManagerService.hasNavigationBar()) {
Satoshi Kataoka135e5fb2012-09-28 18:25:06 +09001706 if (DEBUG) {
Satoshi Kataokab2827262013-07-04 19:43:14 +09001707 Slog.d(TAG, "--- show notification: label = " + summary);
Satoshi Kataoka135e5fb2012-09-28 18:25:06 +09001708 }
1709 mNotificationManager.notifyAsUser(null,
Dianne Hackborn661cd522011-08-22 00:26:20 -07001710 com.android.internal.R.string.select_input_method,
Satoshi Kataoka135e5fb2012-09-28 18:25:06 +09001711 mImeSwitcherNotification, UserHandle.ALL);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001712 mNotificationShown = true;
1713 }
satok7cfc0ed2011-06-20 21:29:36 +09001714 } else {
Dianne Hackborn661cd522011-08-22 00:26:20 -07001715 if (mNotificationShown && mNotificationManager != null) {
Satoshi Kataoka135e5fb2012-09-28 18:25:06 +09001716 if (DEBUG) {
1717 Slog.d(TAG, "--- hide notification");
1718 }
1719 mNotificationManager.cancelAsUser(null,
1720 com.android.internal.R.string.select_input_method, UserHandle.ALL);
satok7cfc0ed2011-06-20 21:29:36 +09001721 mNotificationShown = false;
1722 }
1723 }
satok06487a52010-10-29 11:37:18 +09001724 }
1725 } finally {
1726 Binder.restoreCallingIdentity(ident);
1727 }
1728 }
1729
satoke7c6998e2011-06-03 17:57:59 +09001730 @Override
satokf9f01002011-05-19 21:31:50 +09001731 public void registerSuggestionSpansForNotification(SuggestionSpan[] spans) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001732 if (!calledFromValidUser()) {
1733 return;
1734 }
satokf9f01002011-05-19 21:31:50 +09001735 synchronized (mMethodMap) {
1736 final InputMethodInfo currentImi = mMethodMap.get(mCurMethodId);
1737 for (int i = 0; i < spans.length; ++i) {
1738 SuggestionSpan ss = spans[i];
satok42c5a162011-05-26 16:46:14 +09001739 if (!TextUtils.isEmpty(ss.getNotificationTargetClassName())) {
satokf9f01002011-05-19 21:31:50 +09001740 mSecureSuggestionSpans.put(ss, currentImi);
1741 }
1742 }
1743 }
1744 }
1745
satoke7c6998e2011-06-03 17:57:59 +09001746 @Override
satokf9f01002011-05-19 21:31:50 +09001747 public boolean notifySuggestionPicked(SuggestionSpan span, String originalString, int index) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001748 if (!calledFromValidUser()) {
1749 return false;
1750 }
satokf9f01002011-05-19 21:31:50 +09001751 synchronized (mMethodMap) {
1752 final InputMethodInfo targetImi = mSecureSuggestionSpans.get(span);
1753 // TODO: Do not send the intent if the process of the targetImi is already dead.
1754 if (targetImi != null) {
1755 final String[] suggestions = span.getSuggestions();
1756 if (index < 0 || index >= suggestions.length) return false;
satok42c5a162011-05-26 16:46:14 +09001757 final String className = span.getNotificationTargetClassName();
satokf9f01002011-05-19 21:31:50 +09001758 final Intent intent = new Intent();
1759 // Ensures that only a class in the original IME package will receive the
1760 // notification.
satok42c5a162011-05-26 16:46:14 +09001761 intent.setClassName(targetImi.getPackageName(), className);
satokf9f01002011-05-19 21:31:50 +09001762 intent.setAction(SuggestionSpan.ACTION_SUGGESTION_PICKED);
1763 intent.putExtra(SuggestionSpan.SUGGESTION_SPAN_PICKED_BEFORE, originalString);
1764 intent.putExtra(SuggestionSpan.SUGGESTION_SPAN_PICKED_AFTER, suggestions[index]);
1765 intent.putExtra(SuggestionSpan.SUGGESTION_SPAN_PICKED_HASHCODE, span.hashCode());
Amith Yamasanif043de92012-10-24 06:42:40 -07001766 final long ident = Binder.clearCallingIdentity();
1767 try {
1768 mContext.sendBroadcastAsUser(intent, UserHandle.CURRENT);
1769 } finally {
1770 Binder.restoreCallingIdentity(ident);
1771 }
satokf9f01002011-05-19 21:31:50 +09001772 return true;
1773 }
1774 }
1775 return false;
1776 }
1777
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001778 void updateFromSettingsLocked(boolean enabledMayChange) {
Michael Wright7b5a96b2014-08-09 19:28:42 -07001779 updateInputMethodsFromSettingsLocked(enabledMayChange);
1780 updateKeyboardFromSettingsLocked();
1781 }
1782
1783 void updateInputMethodsFromSettingsLocked(boolean enabledMayChange) {
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001784 if (enabledMayChange) {
1785 List<InputMethodInfo> enabled = mSettings.getEnabledInputMethodListLocked();
1786 for (int i=0; i<enabled.size(); i++) {
1787 // We allow the user to select "disabled until used" apps, so if they
1788 // are enabling one of those here we now need to make it enabled.
1789 InputMethodInfo imm = enabled.get(i);
1790 try {
1791 ApplicationInfo ai = mIPackageManager.getApplicationInfo(imm.getPackageName(),
1792 PackageManager.GET_DISABLED_UNTIL_USED_COMPONENTS,
1793 mSettings.getCurrentUserId());
Satoshi Kataoka7987a312013-04-17 18:59:33 +09001794 if (ai != null && ai.enabledSetting
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001795 == PackageManager.COMPONENT_ENABLED_STATE_DISABLED_UNTIL_USED) {
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +09001796 if (DEBUG) {
1797 Slog.d(TAG, "Update state(" + imm.getId()
1798 + "): DISABLED_UNTIL_USED -> DEFAULT");
1799 }
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001800 mIPackageManager.setApplicationEnabledSetting(imm.getPackageName(),
1801 PackageManager.COMPONENT_ENABLED_STATE_DEFAULT,
Dianne Hackborn3fa3c28a2013-03-26 16:15:41 -07001802 PackageManager.DONT_KILL_APP, mSettings.getCurrentUserId(),
1803 mContext.getBasePackageName());
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001804 }
1805 } catch (RemoteException e) {
1806 }
1807 }
1808 }
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001809 // We are assuming that whoever is changing DEFAULT_INPUT_METHOD and
1810 // ENABLED_INPUT_METHODS is taking care of keeping them correctly in
1811 // sync, so we will never have a DEFAULT_INPUT_METHOD that is not
1812 // enabled.
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001813 String id = mSettings.getSelectedInputMethod();
satok03eb319a2010-11-11 18:17:42 +09001814 // There is no input method selected, try to choose new applicable input method.
1815 if (TextUtils.isEmpty(id) && chooseNewDefaultIMELocked()) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001816 id = mSettings.getSelectedInputMethod();
satok03eb319a2010-11-11 18:17:42 +09001817 }
1818 if (!TextUtils.isEmpty(id)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001819 try {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001820 setInputMethodLocked(id, mSettings.getSelectedInputMethodSubtypeId(id));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001821 } catch (IllegalArgumentException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001822 Slog.w(TAG, "Unknown input method from prefs: " + id, e);
The Android Open Source Project10592532009-03-18 17:39:46 -07001823 mCurMethodId = null;
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07001824 unbindCurrentMethodLocked(true, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001825 }
satokf3db1af2010-11-23 13:34:33 +09001826 mShortcutInputMethodsAndSubtypes.clear();
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001827 } else {
1828 // There is no longer an input method set, so stop any current one.
The Android Open Source Project10592532009-03-18 17:39:46 -07001829 mCurMethodId = null;
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07001830 unbindCurrentMethodLocked(true, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001831 }
Yohei Yukawa3d46bab2014-05-30 18:10:18 +09001832 // Here is not the perfect place to reset the switching controller. Ideally
1833 // mSwitchingController and mSettings should be able to share the same state.
1834 // TODO: Make sure that mSwitchingController and mSettings are sharing the
1835 // the same enabled IMEs list.
1836 mSwitchingController.resetCircularListLocked(mContext);
Michael Wright7b5a96b2014-08-09 19:28:42 -07001837
1838 }
1839
1840 public void updateKeyboardFromSettingsLocked() {
1841 mShowImeWithHardKeyboard = mSettings.isShowImeWithHardKeyboardEnabled();
1842 if (mSwitchingDialog != null
1843 && mSwitchingDialogTitleView != null
1844 && mSwitchingDialog.isShowing()) {
1845 final Switch hardKeySwitch = (Switch)mSwitchingDialogTitleView.findViewById(
1846 com.android.internal.R.id.hard_keyboard_switch);
1847 hardKeySwitch.setChecked(mShowImeWithHardKeyboard);
1848 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001849 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001850
satokab751aa2010-09-14 19:17:36 +09001851 /* package */ void setInputMethodLocked(String id, int subtypeId) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001852 InputMethodInfo info = mMethodMap.get(id);
1853 if (info == null) {
satok913a8922010-08-26 21:53:41 +09001854 throw new IllegalArgumentException("Unknown id: " + id);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001855 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001856
Yohei Yukawae63b5fa2014-09-19 13:14:55 +09001857 if (mCurClient != null && mCurAttribute != null) {
1858 final int uid = mCurClient.uid;
1859 final String packageName = mCurAttribute.packageName;
1860 if (SystemConfig.getInstance().getFixedImeApps().contains(packageName)) {
1861 if (InputMethodUtils.checkIfPackageBelongsToUid(mAppOpsManager, uid, packageName)) {
1862 return;
1863 }
1864 // TODO: Do we need to lock the input method when the application reported an
1865 // incorrect package name?
1866 Slog.e(TAG, "Ignoring FixedImeApps due to the validation failure. uid=" + uid
1867 + " package=" + packageName);
1868 }
1869 }
1870
satokd81e9502012-05-21 12:58:45 +09001871 // See if we need to notify a subtype change within the same IME.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001872 if (id.equals(mCurMethodId)) {
satokd81e9502012-05-21 12:58:45 +09001873 final int subtypeCount = info.getSubtypeCount();
1874 if (subtypeCount <= 0) {
1875 return;
satokcd7cd292010-11-20 15:46:23 +09001876 }
satokd81e9502012-05-21 12:58:45 +09001877 final InputMethodSubtype oldSubtype = mCurrentSubtype;
1878 final InputMethodSubtype newSubtype;
1879 if (subtypeId >= 0 && subtypeId < subtypeCount) {
1880 newSubtype = info.getSubtypeAt(subtypeId);
1881 } else {
1882 // If subtype is null, try to find the most applicable one from
1883 // getCurrentInputMethodSubtype.
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001884 newSubtype = getCurrentInputMethodSubtypeLocked();
satokd81e9502012-05-21 12:58:45 +09001885 }
1886 if (newSubtype == null || oldSubtype == null) {
1887 Slog.w(TAG, "Illegal subtype state: old subtype = " + oldSubtype
1888 + ", new subtype = " + newSubtype);
1889 return;
1890 }
1891 if (newSubtype != oldSubtype) {
1892 setSelectedInputMethodAndSubtypeLocked(info, subtypeId, true);
1893 if (mCurMethod != null) {
1894 try {
1895 refreshImeWindowVisibilityLocked();
1896 mCurMethod.changeInputMethodSubtype(newSubtype);
1897 } catch (RemoteException e) {
1898 Slog.w(TAG, "Failed to call changeInputMethodSubtype");
satokab751aa2010-09-14 19:17:36 +09001899 }
1900 }
1901 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001902 return;
1903 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001904
satokd81e9502012-05-21 12:58:45 +09001905 // Changing to a different IME.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001906 final long ident = Binder.clearCallingIdentity();
1907 try {
satokab751aa2010-09-14 19:17:36 +09001908 // Set a subtype to this input method.
1909 // subtypeId the name of a subtype which will be set.
satok723a27e2010-11-11 14:58:11 +09001910 setSelectedInputMethodAndSubtypeLocked(info, subtypeId, false);
1911 // mCurMethodId should be updated after setSelectedInputMethodAndSubtypeLocked()
1912 // because mCurMethodId is stored as a history in
1913 // setSelectedInputMethodAndSubtypeLocked().
1914 mCurMethodId = id;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001915
1916 if (ActivityManagerNative.isSystemReady()) {
1917 Intent intent = new Intent(Intent.ACTION_INPUT_METHOD_CHANGED);
Dianne Hackborn1c633fc2009-12-08 19:45:14 -08001918 intent.addFlags(Intent.FLAG_RECEIVER_REPLACE_PENDING);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001919 intent.putExtra("input_method_id", id);
Amith Yamasanicd757062012-10-19 18:23:52 -07001920 mContext.sendBroadcastAsUser(intent, UserHandle.CURRENT);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001921 }
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001922 unbindCurrentClientLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001923 } finally {
1924 Binder.restoreCallingIdentity(ident);
1925 }
1926 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001927
satok42c5a162011-05-26 16:46:14 +09001928 @Override
The Android Open Source Project4df24232009-03-05 14:34:35 -08001929 public boolean showSoftInput(IInputMethodClient client, int flags,
1930 ResultReceiver resultReceiver) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001931 if (!calledFromValidUser()) {
1932 return false;
1933 }
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001934 int uid = Binder.getCallingUid();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001935 long ident = Binder.clearCallingIdentity();
1936 try {
1937 synchronized (mMethodMap) {
1938 if (mCurClient == null || client == null
1939 || mCurClient.client.asBinder() != client.asBinder()) {
1940 try {
1941 // We need to check if this is the current client with
1942 // focus in the window manager, to allow this call to
1943 // be made before input is started in it.
1944 if (!mIWindowManager.inputMethodClientHasFocus(client)) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001945 Slog.w(TAG, "Ignoring showSoftInput of uid " + uid + ": " + client);
The Android Open Source Project4df24232009-03-05 14:34:35 -08001946 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001947 }
1948 } catch (RemoteException e) {
The Android Open Source Project4df24232009-03-05 14:34:35 -08001949 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001950 }
1951 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001952
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07001953 if (DEBUG) Slog.v(TAG, "Client requesting input be shown");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001954 return showCurrentInputLocked(flags, resultReceiver);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001955 }
1956 } finally {
1957 Binder.restoreCallingIdentity(ident);
1958 }
1959 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001960
The Android Open Source Project4df24232009-03-05 14:34:35 -08001961 boolean showCurrentInputLocked(int flags, ResultReceiver resultReceiver) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001962 mShowRequested = true;
1963 if ((flags&InputMethodManager.SHOW_IMPLICIT) == 0) {
1964 mShowExplicitlyRequested = true;
1965 }
1966 if ((flags&InputMethodManager.SHOW_FORCED) != 0) {
1967 mShowExplicitlyRequested = true;
1968 mShowForced = true;
1969 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001970
Dianne Hackborncc278702009-09-02 23:07:23 -07001971 if (!mSystemReady) {
1972 return false;
1973 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001974
The Android Open Source Project4df24232009-03-05 14:34:35 -08001975 boolean res = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001976 if (mCurMethod != null) {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07001977 if (DEBUG) Slog.d(TAG, "showCurrentInputLocked: mCurToken=" + mCurToken);
The Android Open Source Project4df24232009-03-05 14:34:35 -08001978 executeOrSendMessage(mCurMethod, mCaller.obtainMessageIOO(
1979 MSG_SHOW_SOFT_INPUT, getImeShowFlags(), mCurMethod,
1980 resultReceiver));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001981 mInputShown = true;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07001982 if (mHaveConnection && !mVisibleBound) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001983 bindCurrentInputMethodService(
Dianne Hackbornf0f94d12014-03-17 16:04:21 -07001984 mCurIntent, mVisibleConnection, Context.BIND_AUTO_CREATE
1985 | Context.BIND_TREAT_LIKE_ACTIVITY);
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07001986 mVisibleBound = true;
1987 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08001988 res = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001989 } else if (mHaveConnection && SystemClock.uptimeMillis()
satok59b424c2011-09-30 17:21:46 +09001990 >= (mLastBindTime+TIME_TO_RECONNECT)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001991 // The client has asked to have the input method shown, but
1992 // we have been sitting here too long with a connection to the
1993 // service and no interface received, so let's disconnect/connect
1994 // to try to prod things along.
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001995 EventLog.writeEvent(EventLogTags.IMF_FORCE_RECONNECT_IME, mCurMethodId,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001996 SystemClock.uptimeMillis()-mLastBindTime,1);
satok59b424c2011-09-30 17:21:46 +09001997 Slog.w(TAG, "Force disconnect/connect to the IME in showCurrentInputLocked()");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001998 mContext.unbindService(this);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001999 bindCurrentInputMethodService(mCurIntent, this, Context.BIND_AUTO_CREATE
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07002000 | Context.BIND_NOT_VISIBLE);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002001 } else {
2002 if (DEBUG) {
2003 Slog.d(TAG, "Can't show input: connection = " + mHaveConnection + ", time = "
2004 + ((mLastBindTime+TIME_TO_RECONNECT) - SystemClock.uptimeMillis()));
2005 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002006 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002007
The Android Open Source Project4df24232009-03-05 14:34:35 -08002008 return res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002009 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002010
satok42c5a162011-05-26 16:46:14 +09002011 @Override
The Android Open Source Project4df24232009-03-05 14:34:35 -08002012 public boolean hideSoftInput(IInputMethodClient client, int flags,
2013 ResultReceiver resultReceiver) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002014 if (!calledFromValidUser()) {
2015 return false;
2016 }
Dianne Hackborncef65ee2010-09-30 18:27:22 -07002017 int uid = Binder.getCallingUid();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002018 long ident = Binder.clearCallingIdentity();
2019 try {
2020 synchronized (mMethodMap) {
2021 if (mCurClient == null || client == null
2022 || mCurClient.client.asBinder() != client.asBinder()) {
2023 try {
2024 // We need to check if this is the current client with
2025 // focus in the window manager, to allow this call to
2026 // be made before input is started in it.
2027 if (!mIWindowManager.inputMethodClientHasFocus(client)) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07002028 if (DEBUG) Slog.w(TAG, "Ignoring hideSoftInput of uid "
2029 + uid + ": " + client);
satok15452a42011-10-28 17:58:28 +09002030 setImeWindowVisibilityStatusHiddenLocked();
The Android Open Source Project4df24232009-03-05 14:34:35 -08002031 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002032 }
2033 } catch (RemoteException e) {
satok15452a42011-10-28 17:58:28 +09002034 setImeWindowVisibilityStatusHiddenLocked();
The Android Open Source Project4df24232009-03-05 14:34:35 -08002035 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002036 }
2037 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002038
Joe Onorato8a9b2202010-02-26 18:56:32 -08002039 if (DEBUG) Slog.v(TAG, "Client requesting input be hidden");
The Android Open Source Project4df24232009-03-05 14:34:35 -08002040 return hideCurrentInputLocked(flags, resultReceiver);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002041 }
2042 } finally {
2043 Binder.restoreCallingIdentity(ident);
2044 }
2045 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002046
The Android Open Source Project4df24232009-03-05 14:34:35 -08002047 boolean hideCurrentInputLocked(int flags, ResultReceiver resultReceiver) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002048 if ((flags&InputMethodManager.HIDE_IMPLICIT_ONLY) != 0
2049 && (mShowExplicitlyRequested || mShowForced)) {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002050 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 -08002051 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002052 }
2053 if (mShowForced && (flags&InputMethodManager.HIDE_NOT_ALWAYS) != 0) {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002054 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 -08002055 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002056 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002057 boolean res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002058 if (mInputShown && mCurMethod != null) {
The Android Open Source Project4df24232009-03-05 14:34:35 -08002059 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
2060 MSG_HIDE_SOFT_INPUT, mCurMethod, resultReceiver));
2061 res = true;
2062 } else {
2063 res = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002064 }
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07002065 if (mHaveConnection && mVisibleBound) {
2066 mContext.unbindService(mVisibleConnection);
2067 mVisibleBound = false;
2068 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002069 mInputShown = false;
2070 mShowRequested = false;
2071 mShowExplicitlyRequested = false;
2072 mShowForced = false;
The Android Open Source Project4df24232009-03-05 14:34:35 -08002073 return res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002074 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002075
satok42c5a162011-05-26 16:46:14 +09002076 @Override
Dianne Hackborn7663d802012-02-24 13:08:49 -08002077 public InputBindResult windowGainedFocus(IInputMethodClient client, IBinder windowToken,
2078 int controlFlags, int softInputMode, int windowFlags,
2079 EditorInfo attribute, IInputContext inputContext) {
Satoshi Kataoka8d033052012-11-19 17:30:40 +09002080 // Needs to check the validity before clearing calling identity
2081 final boolean calledFromValidUser = calledFromValidUser();
2082
Dianne Hackborn7663d802012-02-24 13:08:49 -08002083 InputBindResult res = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002084 long ident = Binder.clearCallingIdentity();
2085 try {
2086 synchronized (mMethodMap) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002087 if (DEBUG) Slog.v(TAG, "windowGainedFocus: " + client.asBinder()
Dianne Hackborn7663d802012-02-24 13:08:49 -08002088 + " controlFlags=#" + Integer.toHexString(controlFlags)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002089 + " softInputMode=#" + Integer.toHexString(softInputMode)
Dianne Hackborn7663d802012-02-24 13:08:49 -08002090 + " windowFlags=#" + Integer.toHexString(windowFlags));
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002091
Dianne Hackborn7663d802012-02-24 13:08:49 -08002092 ClientState cs = mClients.get(client.asBinder());
2093 if (cs == null) {
2094 throw new IllegalArgumentException("unknown client "
2095 + client.asBinder());
2096 }
2097
2098 try {
2099 if (!mIWindowManager.inputMethodClientHasFocus(cs.client)) {
2100 // Check with the window manager to make sure this client actually
2101 // has a window with focus. If not, reject. This is thread safe
2102 // because if the focus changes some time before or after, the
2103 // next client receiving focus that has any interest in input will
2104 // be calling through here after that change happens.
2105 Slog.w(TAG, "Focus gain on non-focused client " + cs.client
2106 + " (uid=" + cs.uid + " pid=" + cs.pid + ")");
2107 return null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002108 }
Dianne Hackborn7663d802012-02-24 13:08:49 -08002109 } catch (RemoteException e) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002110 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002111
Satoshi Kataoka8d033052012-11-19 17:30:40 +09002112 if (!calledFromValidUser) {
2113 Slog.w(TAG, "A background user is requesting window. Hiding IME.");
2114 Slog.w(TAG, "If you want to interect with IME, you need "
2115 + "android.permission.INTERACT_ACROSS_USERS_FULL");
2116 hideCurrentInputLocked(0, null);
2117 return null;
2118 }
2119
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07002120 if (mCurFocusedWindow == windowToken) {
Dianne Hackbornac920872012-05-22 11:49:49 -07002121 Slog.w(TAG, "Window already focused, ignoring focus gain of: " + client
Satoshi Kataoka35739502012-10-02 19:00:26 +09002122 + " attribute=" + attribute + ", token = " + windowToken);
Dianne Hackborn7663d802012-02-24 13:08:49 -08002123 if (attribute != null) {
2124 return startInputUncheckedLocked(cs, inputContext, attribute,
2125 controlFlags);
2126 }
2127 return null;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07002128 }
2129 mCurFocusedWindow = windowToken;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002130
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08002131 // Should we auto-show the IME even if the caller has not
2132 // specified what should be done with it?
2133 // We only do this automatically if the window can resize
2134 // to accommodate the IME (so what the user sees will give
2135 // them good context without input information being obscured
2136 // by the IME) or if running on a large screen where there
2137 // is more room for the target window + IME.
2138 final boolean doAutoShow =
2139 (softInputMode & WindowManager.LayoutParams.SOFT_INPUT_MASK_ADJUST)
2140 == WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE
2141 || mRes.getConfiguration().isLayoutSizeAtLeast(
2142 Configuration.SCREENLAYOUT_SIZE_LARGE);
Dianne Hackborn7663d802012-02-24 13:08:49 -08002143 final boolean isTextEditor =
2144 (controlFlags&InputMethodManager.CONTROL_WINDOW_IS_TEXT_EDITOR) != 0;
2145
2146 // We want to start input before showing the IME, but after closing
2147 // it. We want to do this after closing it to help the IME disappear
2148 // more quickly (not get stuck behind it initializing itself for the
2149 // new focused input, even if its window wants to hide the IME).
2150 boolean didStart = false;
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08002151
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002152 switch (softInputMode&WindowManager.LayoutParams.SOFT_INPUT_MASK_STATE) {
2153 case WindowManager.LayoutParams.SOFT_INPUT_STATE_UNSPECIFIED:
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08002154 if (!isTextEditor || !doAutoShow) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002155 if (WindowManager.LayoutParams.mayUseInputMethod(windowFlags)) {
2156 // There is no focus view, and this window will
2157 // be behind any soft input window, so hide the
2158 // soft input window if it is shown.
Joe Onorato8a9b2202010-02-26 18:56:32 -08002159 if (DEBUG) Slog.v(TAG, "Unspecified window will hide input");
The Android Open Source Project4df24232009-03-05 14:34:35 -08002160 hideCurrentInputLocked(InputMethodManager.HIDE_NOT_ALWAYS, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002161 }
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08002162 } else if (isTextEditor && doAutoShow && (softInputMode &
2163 WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002164 // There is a focus view, and we are navigating forward
2165 // into the window, so show the input window for the user.
Dianne Hackborn7663d802012-02-24 13:08:49 -08002166 // We only do this automatically if the window can resize
2167 // to accommodate the IME (so what the user sees will give
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08002168 // them good context without input information being obscured
2169 // by the IME) or if running on a large screen where there
2170 // is more room for the target window + IME.
Joe Onorato8a9b2202010-02-26 18:56:32 -08002171 if (DEBUG) Slog.v(TAG, "Unspecified window will show input");
Dianne Hackborn7663d802012-02-24 13:08:49 -08002172 if (attribute != null) {
2173 res = startInputUncheckedLocked(cs, inputContext, attribute,
2174 controlFlags);
2175 didStart = true;
2176 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002177 showCurrentInputLocked(InputMethodManager.SHOW_IMPLICIT, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002178 }
2179 break;
2180 case WindowManager.LayoutParams.SOFT_INPUT_STATE_UNCHANGED:
2181 // Do nothing.
2182 break;
2183 case WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN:
2184 if ((softInputMode &
2185 WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002186 if (DEBUG) Slog.v(TAG, "Window asks to hide input going forward");
The Android Open Source Project4df24232009-03-05 14:34:35 -08002187 hideCurrentInputLocked(0, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002188 }
2189 break;
2190 case WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN:
Joe Onorato8a9b2202010-02-26 18:56:32 -08002191 if (DEBUG) Slog.v(TAG, "Window asks to hide input");
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 break;
2194 case WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE:
2195 if ((softInputMode &
2196 WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002197 if (DEBUG) Slog.v(TAG, "Window asks to show input going forward");
Dianne Hackborn7663d802012-02-24 13:08:49 -08002198 if (attribute != null) {
2199 res = startInputUncheckedLocked(cs, inputContext, attribute,
2200 controlFlags);
2201 didStart = true;
2202 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002203 showCurrentInputLocked(InputMethodManager.SHOW_IMPLICIT, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002204 }
2205 break;
2206 case WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE:
Joe Onorato8a9b2202010-02-26 18:56:32 -08002207 if (DEBUG) Slog.v(TAG, "Window asks to always show input");
Dianne Hackborn7663d802012-02-24 13:08:49 -08002208 if (attribute != null) {
2209 res = startInputUncheckedLocked(cs, inputContext, attribute,
2210 controlFlags);
2211 didStart = true;
2212 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002213 showCurrentInputLocked(InputMethodManager.SHOW_IMPLICIT, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002214 break;
2215 }
Dianne Hackborn7663d802012-02-24 13:08:49 -08002216
2217 if (!didStart && attribute != null) {
2218 res = startInputUncheckedLocked(cs, inputContext, attribute,
2219 controlFlags);
2220 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002221 }
2222 } finally {
2223 Binder.restoreCallingIdentity(ident);
2224 }
Dianne Hackborn7663d802012-02-24 13:08:49 -08002225
2226 return res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002227 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002228
satok42c5a162011-05-26 16:46:14 +09002229 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002230 public void showInputMethodPickerFromClient(IInputMethodClient client) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002231 if (!calledFromValidUser()) {
2232 return;
2233 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002234 synchronized (mMethodMap) {
2235 if (mCurClient == null || client == null
2236 || mCurClient.client.asBinder() != client.asBinder()) {
satok47a44912010-10-06 16:03:58 +09002237 Slog.w(TAG, "Ignoring showInputMethodPickerFromClient of uid "
Dianne Hackborncef65ee2010-09-30 18:27:22 -07002238 + Binder.getCallingUid() + ": " + client);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002239 }
2240
satok440aab52010-11-25 09:43:11 +09002241 // Always call subtype picker, because subtype picker is a superset of input method
2242 // picker.
satokab751aa2010-09-14 19:17:36 +09002243 mHandler.sendEmptyMessage(MSG_SHOW_IM_SUBTYPE_PICKER);
2244 }
2245 }
2246
satok42c5a162011-05-26 16:46:14 +09002247 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002248 public void setInputMethod(IBinder token, String id) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002249 if (!calledFromValidUser()) {
2250 return;
2251 }
satok28203512010-11-24 11:06:49 +09002252 setInputMethodWithSubtypeId(token, id, NOT_A_SUBTYPE_ID);
2253 }
2254
satok42c5a162011-05-26 16:46:14 +09002255 @Override
satok28203512010-11-24 11:06:49 +09002256 public void setInputMethodAndSubtype(IBinder token, String id, InputMethodSubtype subtype) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002257 if (!calledFromValidUser()) {
2258 return;
2259 }
satok28203512010-11-24 11:06:49 +09002260 synchronized (mMethodMap) {
2261 if (subtype != null) {
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002262 setInputMethodWithSubtypeIdLocked(token, id,
2263 InputMethodUtils.getSubtypeIdFromHashCode(mMethodMap.get(id),
2264 subtype.hashCode()));
satok28203512010-11-24 11:06:49 +09002265 } else {
2266 setInputMethod(token, id);
2267 }
2268 }
satokab751aa2010-09-14 19:17:36 +09002269 }
2270
satok42c5a162011-05-26 16:46:14 +09002271 @Override
satokb416a712010-11-25 20:42:14 +09002272 public void showInputMethodAndSubtypeEnablerFromClient(
satok217f5482010-12-15 05:19:19 +09002273 IInputMethodClient client, String inputMethodId) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002274 if (!calledFromValidUser()) {
2275 return;
2276 }
satokb416a712010-11-25 20:42:14 +09002277 synchronized (mMethodMap) {
2278 if (mCurClient == null || client == null
2279 || mCurClient.client.asBinder() != client.asBinder()) {
2280 Slog.w(TAG, "Ignoring showInputMethodAndSubtypeEnablerFromClient of: " + client);
2281 }
satok7fee71f2010-12-17 18:54:26 +09002282 executeOrSendMessage(mCurMethod, mCaller.obtainMessageO(
2283 MSG_SHOW_IM_SUBTYPE_ENABLER, inputMethodId));
satokb416a712010-11-25 20:42:14 +09002284 }
2285 }
2286
satok4fc87d62011-05-20 16:13:43 +09002287 @Override
satok735cf382010-11-11 20:40:09 +09002288 public boolean switchToLastInputMethod(IBinder token) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002289 if (!calledFromValidUser()) {
2290 return false;
2291 }
satok735cf382010-11-11 20:40:09 +09002292 synchronized (mMethodMap) {
satokc445bcd2011-01-25 18:57:24 +09002293 final Pair<String, String> lastIme = mSettings.getLastInputMethodAndSubtypeLocked();
satok4fc87d62011-05-20 16:13:43 +09002294 final InputMethodInfo lastImi;
satok208d5632011-05-20 22:13:38 +09002295 if (lastIme != null) {
satok4fc87d62011-05-20 16:13:43 +09002296 lastImi = mMethodMap.get(lastIme.first);
2297 } else {
2298 lastImi = null;
satok735cf382010-11-11 20:40:09 +09002299 }
satok4fc87d62011-05-20 16:13:43 +09002300 String targetLastImiId = null;
2301 int subtypeId = NOT_A_SUBTYPE_ID;
2302 if (lastIme != null && lastImi != null) {
2303 final boolean imiIdIsSame = lastImi.getId().equals(mCurMethodId);
2304 final int lastSubtypeHash = Integer.valueOf(lastIme.second);
2305 final int currentSubtypeHash = mCurrentSubtype == null ? NOT_A_SUBTYPE_ID
2306 : mCurrentSubtype.hashCode();
2307 // If the last IME is the same as the current IME and the last subtype is not
2308 // defined, there is no need to switch to the last IME.
2309 if (!imiIdIsSame || lastSubtypeHash != currentSubtypeHash) {
2310 targetLastImiId = lastIme.first;
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002311 subtypeId = InputMethodUtils.getSubtypeIdFromHashCode(lastImi, lastSubtypeHash);
satok4fc87d62011-05-20 16:13:43 +09002312 }
2313 }
2314
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002315 if (TextUtils.isEmpty(targetLastImiId)
2316 && !InputMethodUtils.canAddToLastInputMethod(mCurrentSubtype)) {
satok4fc87d62011-05-20 16:13:43 +09002317 // This is a safety net. If the currentSubtype can't be added to the history
2318 // and the framework couldn't find the last ime, we will make the last ime be
2319 // the most applicable enabled keyboard subtype of the system imes.
2320 final List<InputMethodInfo> enabled = mSettings.getEnabledInputMethodListLocked();
2321 if (enabled != null) {
2322 final int N = enabled.size();
2323 final String locale = mCurrentSubtype == null
2324 ? mRes.getConfiguration().locale.toString()
2325 : mCurrentSubtype.getLocale();
2326 for (int i = 0; i < N; ++i) {
2327 final InputMethodInfo imi = enabled.get(i);
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002328 if (imi.getSubtypeCount() > 0 && InputMethodUtils.isSystemIme(imi)) {
satok4fc87d62011-05-20 16:13:43 +09002329 InputMethodSubtype keyboardSubtype =
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002330 InputMethodUtils.findLastResortApplicableSubtypeLocked(mRes,
2331 InputMethodUtils.getSubtypes(imi),
2332 InputMethodUtils.SUBTYPE_MODE_KEYBOARD, locale, true);
satok4fc87d62011-05-20 16:13:43 +09002333 if (keyboardSubtype != null) {
2334 targetLastImiId = imi.getId();
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002335 subtypeId = InputMethodUtils.getSubtypeIdFromHashCode(
satok4fc87d62011-05-20 16:13:43 +09002336 imi, keyboardSubtype.hashCode());
2337 if(keyboardSubtype.getLocale().equals(locale)) {
2338 break;
2339 }
2340 }
2341 }
2342 }
2343 }
2344 }
2345
2346 if (!TextUtils.isEmpty(targetLastImiId)) {
2347 if (DEBUG) {
2348 Slog.d(TAG, "Switch to: " + lastImi.getId() + ", " + lastIme.second
2349 + ", from: " + mCurMethodId + ", " + subtypeId);
2350 }
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002351 setInputMethodWithSubtypeIdLocked(token, targetLastImiId, subtypeId);
satok4fc87d62011-05-20 16:13:43 +09002352 return true;
2353 } else {
2354 return false;
2355 }
satok735cf382010-11-11 20:40:09 +09002356 }
2357 }
2358
satoke7c6998e2011-06-03 17:57:59 +09002359 @Override
satok688bd472012-02-09 20:09:17 +09002360 public boolean switchToNextInputMethod(IBinder token, boolean onlyCurrentIme) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002361 if (!calledFromValidUser()) {
2362 return false;
2363 }
satok688bd472012-02-09 20:09:17 +09002364 synchronized (mMethodMap) {
Yohei Yukawaa0755742014-06-04 20:28:18 +09002365 if (!calledWithValidToken(token)) {
2366 final int uid = Binder.getCallingUid();
2367 Slog.e(TAG, "Ignoring switchToNextInputMethod due to an invalid token. uid:" + uid
2368 + " token:" + token);
2369 return false;
2370 }
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002371 final ImeSubtypeListItem nextSubtype = mSwitchingController.getNextInputMethodLocked(
satok688bd472012-02-09 20:09:17 +09002372 onlyCurrentIme, mMethodMap.get(mCurMethodId), mCurrentSubtype);
2373 if (nextSubtype == null) {
2374 return false;
2375 }
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002376 setInputMethodWithSubtypeIdLocked(token, nextSubtype.mImi.getId(),
2377 nextSubtype.mSubtypeId);
satok688bd472012-02-09 20:09:17 +09002378 return true;
2379 }
2380 }
2381
2382 @Override
Satoshi Kataoka2b10b522013-08-21 20:39:12 +09002383 public boolean shouldOfferSwitchingToNextInputMethod(IBinder token) {
2384 if (!calledFromValidUser()) {
2385 return false;
2386 }
2387 synchronized (mMethodMap) {
Yohei Yukawaa0755742014-06-04 20:28:18 +09002388 if (!calledWithValidToken(token)) {
2389 final int uid = Binder.getCallingUid();
2390 Slog.e(TAG, "Ignoring shouldOfferSwitchingToNextInputMethod due to an invalid "
2391 + "token. uid:" + uid + " token:" + token);
2392 return false;
2393 }
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002394 final ImeSubtypeListItem nextSubtype = mSwitchingController.getNextInputMethodLocked(
Satoshi Kataoka2b10b522013-08-21 20:39:12 +09002395 false /* onlyCurrentIme */, mMethodMap.get(mCurMethodId), mCurrentSubtype);
2396 if (nextSubtype == null) {
2397 return false;
2398 }
2399 return true;
2400 }
2401 }
2402
2403 @Override
satok68f1b782011-04-11 14:26:04 +09002404 public InputMethodSubtype getLastInputMethodSubtype() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002405 if (!calledFromValidUser()) {
2406 return null;
2407 }
satok68f1b782011-04-11 14:26:04 +09002408 synchronized (mMethodMap) {
2409 final Pair<String, String> lastIme = mSettings.getLastInputMethodAndSubtypeLocked();
2410 // TODO: Handle the case of the last IME with no subtypes
2411 if (lastIme == null || TextUtils.isEmpty(lastIme.first)
2412 || TextUtils.isEmpty(lastIme.second)) return null;
2413 final InputMethodInfo lastImi = mMethodMap.get(lastIme.first);
2414 if (lastImi == null) return null;
2415 try {
2416 final int lastSubtypeHash = Integer.valueOf(lastIme.second);
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002417 final int lastSubtypeId =
2418 InputMethodUtils.getSubtypeIdFromHashCode(lastImi, lastSubtypeHash);
satok0e7d7d62011-07-05 13:28:06 +09002419 if (lastSubtypeId < 0 || lastSubtypeId >= lastImi.getSubtypeCount()) {
2420 return null;
2421 }
2422 return lastImi.getSubtypeAt(lastSubtypeId);
satok68f1b782011-04-11 14:26:04 +09002423 } catch (NumberFormatException e) {
2424 return null;
2425 }
2426 }
2427 }
2428
satoke7c6998e2011-06-03 17:57:59 +09002429 @Override
satokee5e77c2011-09-02 18:50:15 +09002430 public void setAdditionalInputMethodSubtypes(String imiId, InputMethodSubtype[] subtypes) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002431 if (!calledFromValidUser()) {
2432 return;
2433 }
satok91e88122011-07-18 11:11:42 +09002434 // By this IPC call, only a process which shares the same uid with the IME can add
2435 // additional input method subtypes to the IME.
satokee5e77c2011-09-02 18:50:15 +09002436 if (TextUtils.isEmpty(imiId) || subtypes == null || subtypes.length == 0) return;
satoke7c6998e2011-06-03 17:57:59 +09002437 synchronized (mMethodMap) {
satok91e88122011-07-18 11:11:42 +09002438 final InputMethodInfo imi = mMethodMap.get(imiId);
satokee5e77c2011-09-02 18:50:15 +09002439 if (imi == null) return;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002440 final String[] packageInfos;
2441 try {
2442 packageInfos = mIPackageManager.getPackagesForUid(Binder.getCallingUid());
2443 } catch (RemoteException e) {
2444 Slog.e(TAG, "Failed to get package infos");
2445 return;
2446 }
satok91e88122011-07-18 11:11:42 +09002447 if (packageInfos != null) {
2448 final int packageNum = packageInfos.length;
2449 for (int i = 0; i < packageNum; ++i) {
2450 if (packageInfos[i].equals(imi.getPackageName())) {
2451 mFileManager.addInputMethodSubtypes(imi, subtypes);
satokc5933802011-08-31 21:26:04 +09002452 final long ident = Binder.clearCallingIdentity();
2453 try {
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09002454 buildInputMethodListLocked(mMethodList, mMethodMap,
2455 false /* resetDefaultEnabledIme */);
satokc5933802011-08-31 21:26:04 +09002456 } finally {
2457 Binder.restoreCallingIdentity(ident);
2458 }
satokee5e77c2011-09-02 18:50:15 +09002459 return;
satok91e88122011-07-18 11:11:42 +09002460 }
2461 }
2462 }
satoke7c6998e2011-06-03 17:57:59 +09002463 }
satokee5e77c2011-09-02 18:50:15 +09002464 return;
satoke7c6998e2011-06-03 17:57:59 +09002465 }
2466
Satoshi Kataoka658c7b82013-10-10 17:03:51 +09002467 @Override
2468 public int getInputMethodWindowVisibleHeight() {
2469 return mWindowManagerService.getInputMethodWindowVisibleHeight();
2470 }
2471
Satoshi Kataokad7443c82013-10-15 17:45:43 +09002472 @Override
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002473 public void notifyUserAction(int sequenceNumber) {
Satoshi Kataokad7443c82013-10-15 17:45:43 +09002474 if (DEBUG) {
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002475 Slog.d(TAG, "Got the notification of a user action. sequenceNumber:" + sequenceNumber);
Satoshi Kataokad7443c82013-10-15 17:45:43 +09002476 }
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002477 synchronized (mMethodMap) {
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002478 if (mCurUserActionNotificationSequenceNumber != sequenceNumber) {
2479 if (DEBUG) {
2480 Slog.d(TAG, "Ignoring the user action notification due to the sequence number "
2481 + "mismatch. expected:" + mCurUserActionNotificationSequenceNumber
2482 + " actual: " + sequenceNumber);
2483 }
2484 return;
2485 }
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002486 final InputMethodInfo imi = mMethodMap.get(mCurMethodId);
2487 if (imi != null) {
Yohei Yukawa02970512014-06-05 16:16:18 +09002488 mSwitchingController.onUserActionLocked(imi, mCurrentSubtype);
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002489 }
Satoshi Kataokad7443c82013-10-15 17:45:43 +09002490 }
2491 }
2492
satok28203512010-11-24 11:06:49 +09002493 private void setInputMethodWithSubtypeId(IBinder token, String id, int subtypeId) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002494 synchronized (mMethodMap) {
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002495 setInputMethodWithSubtypeIdLocked(token, id, subtypeId);
2496 }
2497 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002498
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002499 private void setInputMethodWithSubtypeIdLocked(IBinder token, String id, int subtypeId) {
2500 if (token == null) {
2501 if (mContext.checkCallingOrSelfPermission(
2502 android.Manifest.permission.WRITE_SECURE_SETTINGS)
2503 != PackageManager.PERMISSION_GRANTED) {
2504 throw new SecurityException(
2505 "Using null token requires permission "
2506 + android.Manifest.permission.WRITE_SECURE_SETTINGS);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002507 }
Yohei Yukawa4e02bc62014-06-04 18:37:20 +09002508 } else if (mCurToken != token) {
2509 Slog.w(TAG, "Ignoring setInputMethod of uid " + Binder.getCallingUid()
2510 + " token: " + token);
2511 return;
2512 }
2513
2514 final long ident = Binder.clearCallingIdentity();
2515 try {
2516 setInputMethodLocked(id, subtypeId);
2517 } finally {
2518 Binder.restoreCallingIdentity(ident);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002519 }
2520 }
2521
satok42c5a162011-05-26 16:46:14 +09002522 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002523 public void hideMySoftInput(IBinder token, int flags) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002524 if (!calledFromValidUser()) {
2525 return;
2526 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002527 synchronized (mMethodMap) {
Yohei Yukawa22c97be2014-06-04 19:43:36 +09002528 if (!calledWithValidToken(token)) {
2529 final int uid = Binder.getCallingUid();
2530 Slog.e(TAG, "Ignoring hideInputMethod due to an invalid token. uid:"
2531 + uid + " token:" + token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002532 return;
2533 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002534 long ident = Binder.clearCallingIdentity();
2535 try {
The Android Open Source Project4df24232009-03-05 14:34:35 -08002536 hideCurrentInputLocked(flags, null);
2537 } finally {
2538 Binder.restoreCallingIdentity(ident);
2539 }
2540 }
2541 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002542
satok42c5a162011-05-26 16:46:14 +09002543 @Override
The Android Open Source Project4df24232009-03-05 14:34:35 -08002544 public void showMySoftInput(IBinder token, int flags) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002545 if (!calledFromValidUser()) {
2546 return;
2547 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002548 synchronized (mMethodMap) {
Yohei Yukawa22c97be2014-06-04 19:43:36 +09002549 if (!calledWithValidToken(token)) {
2550 final int uid = Binder.getCallingUid();
2551 Slog.e(TAG, "Ignoring showMySoftInput due to an invalid token. uid:"
2552 + uid + " token:" + token);
The Android Open Source Project4df24232009-03-05 14:34:35 -08002553 return;
2554 }
2555 long ident = Binder.clearCallingIdentity();
2556 try {
2557 showCurrentInputLocked(flags, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002558 } finally {
2559 Binder.restoreCallingIdentity(ident);
2560 }
2561 }
2562 }
2563
2564 void setEnabledSessionInMainThread(SessionState session) {
2565 if (mEnabledSession != session) {
Yohei Yukawa9d91b432014-05-19 16:03:24 +09002566 if (mEnabledSession != null && mEnabledSession.session != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002567 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002568 if (DEBUG) Slog.v(TAG, "Disabling: " + mEnabledSession);
Yohei Yukawa9d91b432014-05-19 16:03:24 +09002569 mEnabledSession.method.setSessionEnabled(mEnabledSession.session, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002570 } catch (RemoteException e) {
2571 }
2572 }
2573 mEnabledSession = session;
Yohei Yukawa9d91b432014-05-19 16:03:24 +09002574 if (mEnabledSession != null && mEnabledSession.session != null) {
2575 try {
2576 if (DEBUG) Slog.v(TAG, "Enabling: " + mEnabledSession);
2577 mEnabledSession.method.setSessionEnabled(mEnabledSession.session, true);
2578 } catch (RemoteException e) {
2579 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002580 }
2581 }
2582 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002583
satok42c5a162011-05-26 16:46:14 +09002584 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002585 public boolean handleMessage(Message msg) {
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002586 SomeArgs args;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002587 switch (msg.what) {
2588 case MSG_SHOW_IM_PICKER:
2589 showInputMethodMenu();
2590 return true;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002591
satokab751aa2010-09-14 19:17:36 +09002592 case MSG_SHOW_IM_SUBTYPE_PICKER:
2593 showInputMethodSubtypeMenu();
2594 return true;
2595
satok47a44912010-10-06 16:03:58 +09002596 case MSG_SHOW_IM_SUBTYPE_ENABLER:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002597 args = (SomeArgs)msg.obj;
satok7fee71f2010-12-17 18:54:26 +09002598 showInputMethodAndSubtypeEnabler((String)args.arg1);
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002599 args.recycle();
satok217f5482010-12-15 05:19:19 +09002600 return true;
2601
2602 case MSG_SHOW_IM_CONFIG:
2603 showConfigureInputMethods();
satok47a44912010-10-06 16:03:58 +09002604 return true;
2605
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002606 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002607
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002608 case MSG_UNBIND_INPUT:
2609 try {
2610 ((IInputMethod)msg.obj).unbindInput();
2611 } catch (RemoteException e) {
2612 // There is nothing interesting about the method dying.
2613 }
2614 return true;
2615 case MSG_BIND_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002616 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002617 try {
2618 ((IInputMethod)args.arg1).bindInput((InputBinding)args.arg2);
2619 } catch (RemoteException e) {
2620 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002621 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002622 return true;
2623 case MSG_SHOW_SOFT_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002624 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002625 try {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002626 if (DEBUG) Slog.v(TAG, "Calling " + args.arg1 + ".showSoftInput("
Craig Mautner6efb4c72013-03-13 10:17:41 -07002627 + msg.arg1 + ", " + args.arg2 + ")");
Craig Mautnerca0ac712013-03-14 09:43:02 -07002628 ((IInputMethod)args.arg1).showSoftInput(msg.arg1, (ResultReceiver)args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002629 } catch (RemoteException e) {
2630 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002631 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002632 return true;
2633 case MSG_HIDE_SOFT_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002634 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002635 try {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002636 if (DEBUG) Slog.v(TAG, "Calling " + args.arg1 + ".hideSoftInput(0, "
Craig Mautner6efb4c72013-03-13 10:17:41 -07002637 + args.arg2 + ")");
Craig Mautnerca0ac712013-03-14 09:43:02 -07002638 ((IInputMethod)args.arg1).hideSoftInput(0, (ResultReceiver)args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002639 } catch (RemoteException e) {
2640 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002641 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002642 return true;
2643 case MSG_ATTACH_TOKEN:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002644 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002645 try {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002646 if (DEBUG) Slog.v(TAG, "Sending attach of token: " + args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002647 ((IInputMethod)args.arg1).attachToken((IBinder)args.arg2);
2648 } catch (RemoteException e) {
2649 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002650 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002651 return true;
Jeff Brownc28867a2013-03-26 15:42:39 -07002652 case MSG_CREATE_SESSION: {
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002653 args = (SomeArgs)msg.obj;
Jeff Brown1951ce82013-04-04 22:45:12 -07002654 IInputMethod method = (IInputMethod)args.arg1;
Jeff Brownc28867a2013-03-26 15:42:39 -07002655 InputChannel channel = (InputChannel)args.arg2;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002656 try {
Jeff Brown1951ce82013-04-04 22:45:12 -07002657 method.createSession(channel, (IInputSessionCallback)args.arg3);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002658 } catch (RemoteException e) {
Jeff Brownc28867a2013-03-26 15:42:39 -07002659 } finally {
Jeff Brown1951ce82013-04-04 22:45:12 -07002660 // Dispose the channel if the input method is not local to this process
2661 // because the remote proxy will get its own copy when unparceled.
2662 if (channel != null && Binder.isProxy(method)) {
Jeff Brownc28867a2013-03-26 15:42:39 -07002663 channel.dispose();
2664 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002665 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002666 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002667 return true;
Jeff Brownc28867a2013-03-26 15:42:39 -07002668 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002669 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002670
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002671 case MSG_START_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002672 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002673 try {
2674 SessionState session = (SessionState)args.arg1;
2675 setEnabledSessionInMainThread(session);
2676 session.method.startInput((IInputContext)args.arg2,
2677 (EditorInfo)args.arg3);
2678 } catch (RemoteException e) {
2679 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002680 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002681 return true;
2682 case MSG_RESTART_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002683 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002684 try {
2685 SessionState session = (SessionState)args.arg1;
2686 setEnabledSessionInMainThread(session);
2687 session.method.restartInput((IInputContext)args.arg2,
2688 (EditorInfo)args.arg3);
2689 } catch (RemoteException e) {
2690 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002691 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002692 return true;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002693
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002694 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002695
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002696 case MSG_UNBIND_METHOD:
2697 try {
2698 ((IInputMethodClient)msg.obj).onUnbindMethod(msg.arg1);
2699 } catch (RemoteException e) {
2700 // There is nothing interesting about the last client dying.
2701 }
2702 return true;
Jeff Brown1951ce82013-04-04 22:45:12 -07002703 case MSG_BIND_METHOD: {
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002704 args = (SomeArgs)msg.obj;
Jeff Brown1951ce82013-04-04 22:45:12 -07002705 IInputMethodClient client = (IInputMethodClient)args.arg1;
2706 InputBindResult res = (InputBindResult)args.arg2;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002707 try {
Jeff Brown1951ce82013-04-04 22:45:12 -07002708 client.onBindMethod(res);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002709 } catch (RemoteException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002710 Slog.w(TAG, "Client died receiving input method " + args.arg2);
Jeff Brown1951ce82013-04-04 22:45:12 -07002711 } finally {
2712 // Dispose the channel if the input method is not local to this process
2713 // because the remote proxy will get its own copy when unparceled.
2714 if (res.channel != null && Binder.isProxy(client)) {
2715 res.channel.dispose();
2716 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002717 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002718 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002719 return true;
Jeff Brown1951ce82013-04-04 22:45:12 -07002720 }
Dianne Hackborna6e41342012-05-22 16:30:34 -07002721 case MSG_SET_ACTIVE:
2722 try {
2723 ((ClientState)msg.obj).client.setActive(msg.arg1 != 0);
2724 } catch (RemoteException e) {
2725 Slog.w(TAG, "Got RemoteException sending setActive(false) notification to pid "
2726 + ((ClientState)msg.obj).pid + " uid "
2727 + ((ClientState)msg.obj).uid);
2728 }
2729 return true;
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002730 case MSG_SET_USER_ACTION_NOTIFICATION_SEQUENCE_NUMBER: {
2731 final int sequenceNumber = msg.arg1;
Yohei Yukawa080fa342014-08-31 16:10:05 -07002732 final ClientState clientState = (ClientState)msg.obj;
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002733 try {
Yohei Yukawa080fa342014-08-31 16:10:05 -07002734 clientState.client.setUserActionNotificationSequenceNumber(sequenceNumber);
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002735 } catch (RemoteException e) {
2736 Slog.w(TAG, "Got RemoteException sending "
2737 + "setUserActionNotificationSequenceNumber("
2738 + sequenceNumber + ") notification to pid "
Yohei Yukawa080fa342014-08-31 16:10:05 -07002739 + clientState.pid + " uid "
2740 + clientState.uid);
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09002741 }
2742 return true;
2743 }
satok01038492012-04-09 21:08:27 +09002744
2745 // --------------------------------------------------------------
2746 case MSG_HARD_KEYBOARD_SWITCH_CHANGED:
Michael Wright7b5a96b2014-08-09 19:28:42 -07002747 mHardKeyboardListener.handleHardKeyboardStatusChange(msg.arg1 == 1);
satok01038492012-04-09 21:08:27 +09002748 return true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002749 }
2750 return false;
2751 }
2752
satokdc9ddae2011-10-06 12:22:36 +09002753 private boolean chooseNewDefaultIMELocked() {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002754 final InputMethodInfo imi = InputMethodUtils.getMostApplicableDefaultIME(
2755 mSettings.getEnabledInputMethodListLocked());
satokdc9ddae2011-10-06 12:22:36 +09002756 if (imi != null) {
satok03eb319a2010-11-11 18:17:42 +09002757 if (DEBUG) {
2758 Slog.d(TAG, "New default IME was selected: " + imi.getId());
2759 }
satok723a27e2010-11-11 14:58:11 +09002760 resetSelectedInputMethodAndSubtypeLocked(imi.getId());
Brandon Ballinger6da35a02009-10-21 00:38:13 -07002761 return true;
2762 }
2763
2764 return false;
2765 }
2766
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002767 void buildInputMethodListLocked(ArrayList<InputMethodInfo> list,
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09002768 HashMap<String, InputMethodInfo> map, boolean resetDefaultEnabledIme) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002769 if (DEBUG) {
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09002770 Slog.d(TAG, "--- re-buildInputMethodList reset = " + resetDefaultEnabledIme
Satoshi Kataoka0766eb02013-07-31 18:30:13 +09002771 + " \n ------ \n" + InputMethodUtils.getStackTrace());
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002772 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002773 list.clear();
2774 map.clear();
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002775
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002776 // Use for queryIntentServicesAsUser
2777 final PackageManager pm = mContext.getPackageManager();
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002778 String disabledSysImes = mSettings.getDisabledSystemInputMethods();
Amith Yamasanie861ec12010-03-24 21:39:27 -07002779 if (disabledSysImes == null) disabledSysImes = "";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002780
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002781 final List<ResolveInfo> services = pm.queryIntentServicesAsUser(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002782 new Intent(InputMethod.SERVICE_INTERFACE),
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08002783 PackageManager.GET_META_DATA | PackageManager.GET_DISABLED_UNTIL_USED_COMPONENTS,
2784 mSettings.getCurrentUserId());
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002785
satoke7c6998e2011-06-03 17:57:59 +09002786 final HashMap<String, List<InputMethodSubtype>> additionalSubtypes =
2787 mFileManager.getAllAdditionalInputMethodSubtypes();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002788 for (int i = 0; i < services.size(); ++i) {
2789 ResolveInfo ri = services.get(i);
2790 ServiceInfo si = ri.serviceInfo;
2791 ComponentName compName = new ComponentName(si.packageName, si.name);
2792 if (!android.Manifest.permission.BIND_INPUT_METHOD.equals(
2793 si.permission)) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002794 Slog.w(TAG, "Skipping input method " + compName
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002795 + ": it does not require the permission "
2796 + android.Manifest.permission.BIND_INPUT_METHOD);
2797 continue;
2798 }
2799
Joe Onorato8a9b2202010-02-26 18:56:32 -08002800 if (DEBUG) Slog.d(TAG, "Checking " + compName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002801
2802 try {
satoke7c6998e2011-06-03 17:57:59 +09002803 InputMethodInfo p = new InputMethodInfo(mContext, ri, additionalSubtypes);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002804 list.add(p);
Amith Yamasanie861ec12010-03-24 21:39:27 -07002805 final String id = p.getId();
2806 map.put(id, p);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002807
2808 if (DEBUG) {
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09002809 Slog.d(TAG, "Found an input method " + p);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002810 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002811
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002812 } catch (XmlPullParserException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002813 Slog.w(TAG, "Unable to load input method " + compName, e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002814 } catch (IOException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002815 Slog.w(TAG, "Unable to load input method " + compName, e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002816 }
2817 }
Brandon Ballinger6da35a02009-10-21 00:38:13 -07002818
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09002819 if (resetDefaultEnabledIme) {
2820 final ArrayList<InputMethodInfo> defaultEnabledIme =
2821 InputMethodUtils.getDefaultEnabledImes(mContext, mSystemReady, list);
2822 for (int i = 0; i < defaultEnabledIme.size(); ++i) {
2823 final InputMethodInfo imi = defaultEnabledIme.get(i);
2824 if (DEBUG) {
2825 Slog.d(TAG, "--- enable ime = " + imi);
2826 }
2827 setInputMethodEnabledLocked(imi.getId(), true);
2828 }
2829 }
2830
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002831 final String defaultImiId = mSettings.getSelectedInputMethod();
satok0a1bcf42012-05-16 19:26:31 +09002832 if (!TextUtils.isEmpty(defaultImiId)) {
2833 if (!map.containsKey(defaultImiId)) {
2834 Slog.w(TAG, "Default IME is uninstalled. Choose new default IME.");
2835 if (chooseNewDefaultIMELocked()) {
Michael Wright7b5a96b2014-08-09 19:28:42 -07002836 updateInputMethodsFromSettingsLocked(true);
satok0a1bcf42012-05-16 19:26:31 +09002837 }
2838 } else {
2839 // Double check that the default IME is certainly enabled.
2840 setInputMethodEnabledLocked(defaultImiId, true);
Brandon Ballinger6da35a02009-10-21 00:38:13 -07002841 }
2842 }
Yohei Yukawa3d46bab2014-05-30 18:10:18 +09002843 // Here is not the perfect place to reset the switching controller. Ideally
2844 // mSwitchingController and mSettings should be able to share the same state.
2845 // TODO: Make sure that mSwitchingController and mSettings are sharing the
2846 // the same enabled IMEs list.
Yohei Yukawac834a252014-05-21 22:42:32 +09002847 mSwitchingController.resetCircularListLocked(mContext);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002848 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002849
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002850 // ----------------------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002851
satokab751aa2010-09-14 19:17:36 +09002852 private void showInputMethodMenu() {
2853 showInputMethodMenuInternal(false);
2854 }
2855
2856 private void showInputMethodSubtypeMenu() {
2857 showInputMethodMenuInternal(true);
2858 }
2859
satok217f5482010-12-15 05:19:19 +09002860 private void showInputMethodAndSubtypeEnabler(String inputMethodId) {
Tadashi G. Takaokaf49688f2011-01-20 17:56:13 +09002861 Intent intent = new Intent(Settings.ACTION_INPUT_METHOD_SUBTYPE_SETTINGS);
satok47a44912010-10-06 16:03:58 +09002862 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
satok86417ea2010-10-27 14:11:03 +09002863 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED
2864 | Intent.FLAG_ACTIVITY_CLEAR_TOP);
satok7fee71f2010-12-17 18:54:26 +09002865 if (!TextUtils.isEmpty(inputMethodId)) {
Tadashi G. Takaoka25480202011-01-20 23:13:02 +09002866 intent.putExtra(Settings.EXTRA_INPUT_METHOD_ID, inputMethodId);
satok7fee71f2010-12-17 18:54:26 +09002867 }
Satoshi Kataoka3ba439d2012-10-05 18:30:13 +09002868 mContext.startActivityAsUser(intent, null, UserHandle.CURRENT);
satok217f5482010-12-15 05:19:19 +09002869 }
2870
2871 private void showConfigureInputMethods() {
2872 Intent intent = new Intent(Settings.ACTION_INPUT_METHOD_SETTINGS);
2873 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
2874 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED
2875 | Intent.FLAG_ACTIVITY_CLEAR_TOP);
Satoshi Kataoka3ba439d2012-10-05 18:30:13 +09002876 mContext.startActivityAsUser(intent, null, UserHandle.CURRENT);
satok47a44912010-10-06 16:03:58 +09002877 }
2878
satok2c93efc2012-04-02 19:33:47 +09002879 private boolean isScreenLocked() {
2880 return mKeyguardManager != null
2881 && mKeyguardManager.isKeyguardLocked() && mKeyguardManager.isKeyguardSecure();
2882 }
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09002883
satokab751aa2010-09-14 19:17:36 +09002884 private void showInputMethodMenuInternal(boolean showSubtypes) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002885 if (DEBUG) Slog.v(TAG, "Show switching menu");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002886
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002887 final Context context = mContext;
satok2c93efc2012-04-02 19:33:47 +09002888 final boolean isScreenLocked = isScreenLocked();
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002889
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002890 final String lastInputMethodId = mSettings.getSelectedInputMethod();
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002891 int lastInputMethodSubtypeId = mSettings.getSelectedInputMethodSubtypeId(lastInputMethodId);
Joe Onorato8a9b2202010-02-26 18:56:32 -08002892 if (DEBUG) Slog.v(TAG, "Current IME: " + lastInputMethodId);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002893
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002894 synchronized (mMethodMap) {
satokbb4aa062011-01-19 21:40:27 +09002895 final HashMap<InputMethodInfo, List<InputMethodSubtype>> immis =
Satoshi Kataokad787f692013-10-26 04:44:21 +09002896 mSettings.getExplicitlyOrImplicitlyEnabledInputMethodsAndSubtypeListLocked(
2897 mContext);
satok7f35c8c2010-10-07 21:13:11 +09002898 if (immis == null || immis.size() == 0) {
2899 return;
2900 }
2901
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002902 hideInputMethodMenuLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002903
satok688bd472012-02-09 20:09:17 +09002904 final List<ImeSubtypeListItem> imList =
Yohei Yukawa5a647b692014-05-22 12:49:00 +09002905 mSwitchingController.getSortedInputMethodAndSubtypeListLocked(
satok688bd472012-02-09 20:09:17 +09002906 showSubtypes, mInputShown, isScreenLocked);
satok913a8922010-08-26 21:53:41 +09002907
satokc3690562012-01-10 20:14:43 +09002908 if (lastInputMethodSubtypeId == NOT_A_SUBTYPE_ID) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002909 final InputMethodSubtype currentSubtype = getCurrentInputMethodSubtypeLocked();
satokc3690562012-01-10 20:14:43 +09002910 if (currentSubtype != null) {
2911 final InputMethodInfo currentImi = mMethodMap.get(mCurMethodId);
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002912 lastInputMethodSubtypeId = InputMethodUtils.getSubtypeIdFromHashCode(
2913 currentImi, currentSubtype.hashCode());
satokc3690562012-01-10 20:14:43 +09002914 }
2915 }
2916
Ken Wakasa761eb372011-03-04 19:06:18 +09002917 final int N = imList.size();
satokab751aa2010-09-14 19:17:36 +09002918 mIms = new InputMethodInfo[N];
2919 mSubtypeIds = new int[N];
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002920 int checkedItem = 0;
2921 for (int i = 0; i < N; ++i) {
Ken Wakasa05dbb652011-08-22 15:22:43 +09002922 final ImeSubtypeListItem item = imList.get(i);
2923 mIms[i] = item.mImi;
2924 mSubtypeIds[i] = item.mSubtypeId;
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002925 if (mIms[i].getId().equals(lastInputMethodId)) {
satokab751aa2010-09-14 19:17:36 +09002926 int subtypeId = mSubtypeIds[i];
2927 if ((subtypeId == NOT_A_SUBTYPE_ID)
2928 || (lastInputMethodSubtypeId == NOT_A_SUBTYPE_ID && subtypeId == 0)
2929 || (subtypeId == lastInputMethodSubtypeId)) {
2930 checkedItem = i;
2931 }
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002932 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002933 }
Alan Viverette505e3ab2014-11-24 15:22:11 -08002934
2935 final Context settingsContext = new ContextThemeWrapper(context,
2936 com.android.internal.R.style.Theme_DeviceDefault_Settings);
2937
2938 mDialogBuilder = new AlertDialog.Builder(settingsContext);
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09002939 mDialogBuilder.setOnCancelListener(new OnCancelListener() {
2940 @Override
2941 public void onCancel(DialogInterface dialog) {
2942 hideInputMethodMenu();
2943 }
2944 });
Alan Viverette505e3ab2014-11-24 15:22:11 -08002945
2946 final Context dialogContext = mDialogBuilder.getContext();
2947 final TypedArray a = dialogContext.obtainStyledAttributes(null,
2948 com.android.internal.R.styleable.DialogPreference,
2949 com.android.internal.R.attr.alertDialogStyle, 0);
2950 final Drawable dialogIcon = a.getDrawable(
2951 com.android.internal.R.styleable.DialogPreference_dialogIcon);
2952 a.recycle();
2953
2954 mDialogBuilder.setIcon(dialogIcon);
2955
2956 final LayoutInflater inflater = (LayoutInflater) dialogContext.getSystemService(
2957 Context.LAYOUT_INFLATER_SERVICE);
satok01038492012-04-09 21:08:27 +09002958 final View tv = inflater.inflate(
2959 com.android.internal.R.layout.input_method_switch_dialog_title, null);
2960 mDialogBuilder.setCustomTitle(tv);
2961
2962 // Setup layout for a toggle switch of the hardware keyboard
2963 mSwitchingDialogTitleView = tv;
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09002964 mSwitchingDialogTitleView
2965 .findViewById(com.android.internal.R.id.hard_keyboard_section)
2966 .setVisibility(mWindowManagerService.isHardKeyboardAvailable()
2967 ? View.VISIBLE : View.GONE);
Alan Viverette505e3ab2014-11-24 15:22:11 -08002968 final Switch hardKeySwitch = (Switch) mSwitchingDialogTitleView.findViewById(
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09002969 com.android.internal.R.id.hard_keyboard_switch);
Michael Wright7b5a96b2014-08-09 19:28:42 -07002970 hardKeySwitch.setChecked(mShowImeWithHardKeyboard);
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09002971 hardKeySwitch.setOnCheckedChangeListener(new OnCheckedChangeListener() {
2972 @Override
2973 public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
Michael Wright7b5a96b2014-08-09 19:28:42 -07002974 mSettings.setShowImeWithHardKeyboard(isChecked);
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09002975 // Ensure that the input method dialog is dismissed when changing
2976 // the hardware keyboard state.
2977 hideInputMethodMenu();
2978 }
2979 });
2980
Alan Viverette505e3ab2014-11-24 15:22:11 -08002981 final ImeSubtypeListAdapter adapter = new ImeSubtypeListAdapter(dialogContext,
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09002982 com.android.internal.R.layout.input_method_switch_item, imList, checkedItem);
2983 final OnClickListener choiceListener = new OnClickListener() {
2984 @Override
2985 public void onClick(final DialogInterface dialog, final int which) {
2986 synchronized (mMethodMap) {
2987 if (mIms == null || mIms.length <= which || mSubtypeIds == null
2988 || mSubtypeIds.length <= which) {
2989 return;
satok01038492012-04-09 21:08:27 +09002990 }
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09002991 final InputMethodInfo im = mIms[which];
2992 int subtypeId = mSubtypeIds[which];
2993 adapter.mCheckedItem = which;
2994 adapter.notifyDataSetChanged();
2995 hideInputMethodMenu();
2996 if (im != null) {
2997 if (subtypeId < 0 || subtypeId >= im.getSubtypeCount()) {
2998 subtypeId = NOT_A_SUBTYPE_ID;
Dianne Hackborn20cb56e2010-03-04 00:58:29 -08002999 }
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003000 setInputMethodLocked(im.getId(), subtypeId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003001 }
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003002 }
3003 }
3004 };
3005 mDialogBuilder.setSingleChoiceItems(adapter, checkedItem, choiceListener);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003006
satokbc81b692011-08-26 16:22:22 +09003007 if (showSubtypes && !isScreenLocked) {
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003008 final OnClickListener positiveListener = new OnClickListener() {
3009 @Override
3010 public void onClick(DialogInterface dialog, int whichButton) {
3011 showConfigureInputMethods();
3012 }
3013 };
satok82beadf2010-12-27 19:03:06 +09003014 mDialogBuilder.setPositiveButton(
Tadashi G. Takaokad130b802014-08-01 14:05:47 +09003015 com.android.internal.R.string.configure_input_methods, positiveListener);
satok7f35c8c2010-10-07 21:13:11 +09003016 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003017 mSwitchingDialog = mDialogBuilder.create();
Dianne Hackborne3a7f622011-03-03 21:48:24 -08003018 mSwitchingDialog.setCanceledOnTouchOutside(true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003019 mSwitchingDialog.getWindow().setType(
3020 WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG);
Satoshi Kataokac86884c2012-10-09 15:20:29 +09003021 mSwitchingDialog.getWindow().getAttributes().privateFlags |=
3022 WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS;
Dianne Hackborne3a7f622011-03-03 21:48:24 -08003023 mSwitchingDialog.getWindow().getAttributes().setTitle("Select input method");
Jason Monk807ef762014-05-08 15:47:46 -04003024 updateImeWindowStatusLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003025 mSwitchingDialog.show();
3026 }
3027 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003028
Ken Wakasa05dbb652011-08-22 15:22:43 +09003029 private static class ImeSubtypeListAdapter extends ArrayAdapter<ImeSubtypeListItem> {
3030 private final LayoutInflater mInflater;
3031 private final int mTextViewResourceId;
3032 private final List<ImeSubtypeListItem> mItemsList;
Satoshi Kataokad2142962012-11-12 18:43:06 +09003033 public int mCheckedItem;
Ken Wakasa05dbb652011-08-22 15:22:43 +09003034 public ImeSubtypeListAdapter(Context context, int textViewResourceId,
3035 List<ImeSubtypeListItem> itemsList, int checkedItem) {
3036 super(context, textViewResourceId, itemsList);
Alan Viverette505e3ab2014-11-24 15:22:11 -08003037
Ken Wakasa05dbb652011-08-22 15:22:43 +09003038 mTextViewResourceId = textViewResourceId;
3039 mItemsList = itemsList;
3040 mCheckedItem = checkedItem;
Alan Viverette505e3ab2014-11-24 15:22:11 -08003041 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
Ken Wakasa05dbb652011-08-22 15:22:43 +09003042 }
3043
3044 @Override
3045 public View getView(int position, View convertView, ViewGroup parent) {
3046 final View view = convertView != null ? convertView
3047 : mInflater.inflate(mTextViewResourceId, null);
3048 if (position < 0 || position >= mItemsList.size()) return view;
3049 final ImeSubtypeListItem item = mItemsList.get(position);
3050 final CharSequence imeName = item.mImeName;
3051 final CharSequence subtypeName = item.mSubtypeName;
3052 final TextView firstTextView = (TextView)view.findViewById(android.R.id.text1);
3053 final TextView secondTextView = (TextView)view.findViewById(android.R.id.text2);
3054 if (TextUtils.isEmpty(subtypeName)) {
3055 firstTextView.setText(imeName);
3056 secondTextView.setVisibility(View.GONE);
3057 } else {
3058 firstTextView.setText(subtypeName);
3059 secondTextView.setText(imeName);
3060 secondTextView.setVisibility(View.VISIBLE);
3061 }
3062 final RadioButton radioButton =
3063 (RadioButton)view.findViewById(com.android.internal.R.id.radio);
3064 radioButton.setChecked(position == mCheckedItem);
3065 return view;
3066 }
3067 }
3068
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003069 void hideInputMethodMenu() {
The Android Open Source Project10592532009-03-18 17:39:46 -07003070 synchronized (mMethodMap) {
3071 hideInputMethodMenuLocked();
3072 }
3073 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003074
The Android Open Source Project10592532009-03-18 17:39:46 -07003075 void hideInputMethodMenuLocked() {
Joe Onorato8a9b2202010-02-26 18:56:32 -08003076 if (DEBUG) Slog.v(TAG, "Hide switching menu");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003077
The Android Open Source Project10592532009-03-18 17:39:46 -07003078 if (mSwitchingDialog != null) {
3079 mSwitchingDialog.dismiss();
3080 mSwitchingDialog = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003081 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003082
Jason Monk807ef762014-05-08 15:47:46 -04003083 updateImeWindowStatusLocked();
The Android Open Source Project10592532009-03-18 17:39:46 -07003084 mDialogBuilder = null;
The Android Open Source Project10592532009-03-18 17:39:46 -07003085 mIms = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003086 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003087
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003088 // ----------------------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003089
satok42c5a162011-05-26 16:46:14 +09003090 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003091 public boolean setInputMethodEnabled(String id, boolean enabled) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003092 // TODO: Make this work even for non-current users?
3093 if (!calledFromValidUser()) {
3094 return false;
3095 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003096 synchronized (mMethodMap) {
3097 if (mContext.checkCallingOrSelfPermission(
3098 android.Manifest.permission.WRITE_SECURE_SETTINGS)
3099 != PackageManager.PERMISSION_GRANTED) {
3100 throw new SecurityException(
3101 "Requires permission "
3102 + android.Manifest.permission.WRITE_SECURE_SETTINGS);
3103 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003104
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003105 long ident = Binder.clearCallingIdentity();
3106 try {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003107 return setInputMethodEnabledLocked(id, enabled);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003108 } finally {
3109 Binder.restoreCallingIdentity(ident);
3110 }
3111 }
3112 }
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003113
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003114 boolean setInputMethodEnabledLocked(String id, boolean enabled) {
3115 // Make sure this is a valid input method.
3116 InputMethodInfo imm = mMethodMap.get(id);
3117 if (imm == null) {
satokd87c2592010-09-29 11:52:06 +09003118 throw new IllegalArgumentException("Unknown id: " + mCurMethodId);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003119 }
3120
satokd87c2592010-09-29 11:52:06 +09003121 List<Pair<String, ArrayList<String>>> enabledInputMethodsList = mSettings
3122 .getEnabledInputMethodsAndSubtypeListLocked();
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003123
satokd87c2592010-09-29 11:52:06 +09003124 if (enabled) {
3125 for (Pair<String, ArrayList<String>> pair: enabledInputMethodsList) {
3126 if (pair.first.equals(id)) {
3127 // We are enabling this input method, but it is already enabled.
3128 // Nothing to do. The previous state was enabled.
3129 return true;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003130 }
3131 }
satokd87c2592010-09-29 11:52:06 +09003132 mSettings.appendAndPutEnabledInputMethodLocked(id, false);
3133 // Previous state was disabled.
3134 return false;
3135 } else {
3136 StringBuilder builder = new StringBuilder();
3137 if (mSettings.buildAndPutEnabledInputMethodsStrRemovingIdLocked(
3138 builder, enabledInputMethodsList, id)) {
3139 // Disabled input method is currently selected, switch to another one.
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003140 final String selId = mSettings.getSelectedInputMethod();
satok03eb319a2010-11-11 18:17:42 +09003141 if (id.equals(selId) && !chooseNewDefaultIMELocked()) {
3142 Slog.i(TAG, "Can't find new IME, unsetting the current input method.");
3143 resetSelectedInputMethodAndSubtypeLocked("");
satokd87c2592010-09-29 11:52:06 +09003144 }
3145 // Previous state was enabled.
3146 return true;
3147 } else {
3148 // We are disabling the input method but it is already disabled.
3149 // Nothing to do. The previous state was disabled.
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003150 return false;
3151 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003152 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08003153 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08003154
satok723a27e2010-11-11 14:58:11 +09003155 private void setSelectedInputMethodAndSubtypeLocked(InputMethodInfo imi, int subtypeId,
3156 boolean setSubtypeOnly) {
3157 // Update the history of InputMethod and Subtype
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003158 mSettings.saveCurrentInputMethodAndSubtypeToHistory(mCurMethodId, mCurrentSubtype);
satok723a27e2010-11-11 14:58:11 +09003159
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09003160 mCurUserActionNotificationSequenceNumber =
3161 Math.max(mCurUserActionNotificationSequenceNumber + 1, 1);
3162 if (DEBUG) {
3163 Slog.d(TAG, "Bump mCurUserActionNotificationSequenceNumber:"
3164 + mCurUserActionNotificationSequenceNumber);
3165 }
3166
3167 if (mCurClient != null && mCurClient.client != null) {
3168 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
3169 MSG_SET_USER_ACTION_NOTIFICATION_SEQUENCE_NUMBER,
Yohei Yukawa080fa342014-08-31 16:10:05 -07003170 mCurUserActionNotificationSequenceNumber, mCurClient));
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09003171 }
3172
satok723a27e2010-11-11 14:58:11 +09003173 // Set Subtype here
3174 if (imi == null || subtypeId < 0) {
3175 mSettings.putSelectedSubtype(NOT_A_SUBTYPE_ID);
Tadashi G. Takaoka0ba75bb2010-11-09 12:19:32 -08003176 mCurrentSubtype = null;
satok723a27e2010-11-11 14:58:11 +09003177 } else {
Ken Wakasa586f0512011-01-20 22:31:01 +09003178 if (subtypeId < imi.getSubtypeCount()) {
3179 InputMethodSubtype subtype = imi.getSubtypeAt(subtypeId);
3180 mSettings.putSelectedSubtype(subtype.hashCode());
3181 mCurrentSubtype = subtype;
satok723a27e2010-11-11 14:58:11 +09003182 } else {
3183 mSettings.putSelectedSubtype(NOT_A_SUBTYPE_ID);
satokd81e9502012-05-21 12:58:45 +09003184 // If the subtype is not specified, choose the most applicable one
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003185 mCurrentSubtype = getCurrentInputMethodSubtypeLocked();
satok723a27e2010-11-11 14:58:11 +09003186 }
satokab751aa2010-09-14 19:17:36 +09003187 }
satok723a27e2010-11-11 14:58:11 +09003188
satok4c0e7152012-06-20 20:08:44 +09003189 // Workaround.
3190 // ASEC is not ready in the IMMS constructor. Accordingly, forward-locked
3191 // IMEs are not recognized and considered uninstalled.
3192 // Actually, we can't move everything after SystemReady because
3193 // IMMS needs to run in the encryption lock screen. So, we just skip changing
3194 // the default IME here and try cheking the default IME again in systemReady().
3195 // TODO: Do nothing before system ready and implement a separated logic for
3196 // the encryption lock screen.
3197 // TODO: ASEC should be ready before IMMS is instantiated.
3198 if (mSystemReady && !setSubtypeOnly) {
satok723a27e2010-11-11 14:58:11 +09003199 // Set InputMethod here
3200 mSettings.putSelectedInputMethod(imi != null ? imi.getId() : "");
3201 }
3202 }
3203
3204 private void resetSelectedInputMethodAndSubtypeLocked(String newDefaultIme) {
3205 InputMethodInfo imi = mMethodMap.get(newDefaultIme);
3206 int lastSubtypeId = NOT_A_SUBTYPE_ID;
3207 // newDefaultIme is empty when there is no candidate for the selected IME.
3208 if (imi != null && !TextUtils.isEmpty(newDefaultIme)) {
3209 String subtypeHashCode = mSettings.getLastSubtypeForInputMethodLocked(newDefaultIme);
3210 if (subtypeHashCode != null) {
3211 try {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003212 lastSubtypeId = InputMethodUtils.getSubtypeIdFromHashCode(
satok723a27e2010-11-11 14:58:11 +09003213 imi, Integer.valueOf(subtypeHashCode));
3214 } catch (NumberFormatException e) {
3215 Slog.w(TAG, "HashCode for subtype looks broken: " + subtypeHashCode, e);
3216 }
3217 }
3218 }
3219 setSelectedInputMethodAndSubtypeLocked(imi, lastSubtypeId, false);
satokab751aa2010-09-14 19:17:36 +09003220 }
3221
satok4e4569d2010-11-19 18:45:53 +09003222 // If there are no selected shortcuts, tries finding the most applicable ones.
3223 private Pair<InputMethodInfo, InputMethodSubtype>
3224 findLastResortApplicableShortcutInputMethodAndSubtypeLocked(String mode) {
3225 List<InputMethodInfo> imis = mSettings.getEnabledInputMethodListLocked();
3226 InputMethodInfo mostApplicableIMI = null;
satokcd7cd292010-11-20 15:46:23 +09003227 InputMethodSubtype mostApplicableSubtype = null;
satok4e4569d2010-11-19 18:45:53 +09003228 boolean foundInSystemIME = false;
3229
3230 // Search applicable subtype for each InputMethodInfo
3231 for (InputMethodInfo imi: imis) {
satok7599a7f2010-12-22 13:45:23 +09003232 final String imiId = imi.getId();
3233 if (foundInSystemIME && !imiId.equals(mCurMethodId)) {
3234 continue;
3235 }
satokcd7cd292010-11-20 15:46:23 +09003236 InputMethodSubtype subtype = null;
satokdf31ae62011-01-15 06:19:44 +09003237 final List<InputMethodSubtype> enabledSubtypes =
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003238 mSettings.getEnabledInputMethodSubtypeListLocked(mContext, imi, true);
satokdf31ae62011-01-15 06:19:44 +09003239 // 1. Search by the current subtype's locale from enabledSubtypes.
satok4e4569d2010-11-19 18:45:53 +09003240 if (mCurrentSubtype != null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003241 subtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
satokdf31ae62011-01-15 06:19:44 +09003242 mRes, enabledSubtypes, mode, mCurrentSubtype.getLocale(), false);
satok4e4569d2010-11-19 18:45:53 +09003243 }
satokdf31ae62011-01-15 06:19:44 +09003244 // 2. Search by the system locale from enabledSubtypes.
3245 // 3. Search the first enabled subtype matched with mode from enabledSubtypes.
satokcd7cd292010-11-20 15:46:23 +09003246 if (subtype == null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003247 subtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
satokdf31ae62011-01-15 06:19:44 +09003248 mRes, enabledSubtypes, mode, null, true);
satok4e4569d2010-11-19 18:45:53 +09003249 }
satoka86f5e42011-09-02 17:12:42 +09003250 final ArrayList<InputMethodSubtype> overridingImplicitlyEnabledSubtypes =
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003251 InputMethodUtils.getOverridingImplicitlyEnabledSubtypes(imi, mode);
satoka86f5e42011-09-02 17:12:42 +09003252 final ArrayList<InputMethodSubtype> subtypesForSearch =
3253 overridingImplicitlyEnabledSubtypes.isEmpty()
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003254 ? InputMethodUtils.getSubtypes(imi)
3255 : overridingImplicitlyEnabledSubtypes;
satok7599a7f2010-12-22 13:45:23 +09003256 // 4. Search by the current subtype's locale from all subtypes.
3257 if (subtype == null && mCurrentSubtype != null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003258 subtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
satoka86f5e42011-09-02 17:12:42 +09003259 mRes, subtypesForSearch, mode, mCurrentSubtype.getLocale(), false);
satok7599a7f2010-12-22 13:45:23 +09003260 }
3261 // 5. Search by the system locale from all subtypes.
3262 // 6. Search the first enabled subtype matched with mode from all subtypes.
satokcd7cd292010-11-20 15:46:23 +09003263 if (subtype == null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003264 subtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
satoka86f5e42011-09-02 17:12:42 +09003265 mRes, subtypesForSearch, mode, null, true);
satok4e4569d2010-11-19 18:45:53 +09003266 }
satokcd7cd292010-11-20 15:46:23 +09003267 if (subtype != null) {
satok7599a7f2010-12-22 13:45:23 +09003268 if (imiId.equals(mCurMethodId)) {
satok4e4569d2010-11-19 18:45:53 +09003269 // The current input method is the most applicable IME.
3270 mostApplicableIMI = imi;
satokcd7cd292010-11-20 15:46:23 +09003271 mostApplicableSubtype = subtype;
satok4e4569d2010-11-19 18:45:53 +09003272 break;
satok7599a7f2010-12-22 13:45:23 +09003273 } else if (!foundInSystemIME) {
satok4e4569d2010-11-19 18:45:53 +09003274 // The system input method is 2nd applicable IME.
3275 mostApplicableIMI = imi;
satokcd7cd292010-11-20 15:46:23 +09003276 mostApplicableSubtype = subtype;
satok7599a7f2010-12-22 13:45:23 +09003277 if ((imi.getServiceInfo().applicationInfo.flags
3278 & ApplicationInfo.FLAG_SYSTEM) != 0) {
3279 foundInSystemIME = true;
3280 }
satok4e4569d2010-11-19 18:45:53 +09003281 }
3282 }
3283 }
3284 if (DEBUG) {
satokcd7cd292010-11-20 15:46:23 +09003285 if (mostApplicableIMI != null) {
3286 Slog.w(TAG, "Most applicable shortcut input method was:"
3287 + mostApplicableIMI.getId());
3288 if (mostApplicableSubtype != null) {
3289 Slog.w(TAG, "Most applicable shortcut input method subtype was:"
3290 + "," + mostApplicableSubtype.getMode() + ","
3291 + mostApplicableSubtype.getLocale());
3292 }
3293 }
satok4e4569d2010-11-19 18:45:53 +09003294 }
satokcd7cd292010-11-20 15:46:23 +09003295 if (mostApplicableIMI != null) {
satok4e4569d2010-11-19 18:45:53 +09003296 return new Pair<InputMethodInfo, InputMethodSubtype> (mostApplicableIMI,
satokcd7cd292010-11-20 15:46:23 +09003297 mostApplicableSubtype);
satok4e4569d2010-11-19 18:45:53 +09003298 } else {
3299 return null;
3300 }
3301 }
3302
satokab751aa2010-09-14 19:17:36 +09003303 /**
3304 * @return Return the current subtype of this input method.
3305 */
satok42c5a162011-05-26 16:46:14 +09003306 @Override
satokab751aa2010-09-14 19:17:36 +09003307 public InputMethodSubtype getCurrentInputMethodSubtype() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003308 // TODO: Make this work even for non-current users?
3309 if (!calledFromValidUser()) {
3310 return null;
3311 }
3312 synchronized (mMethodMap) {
3313 return getCurrentInputMethodSubtypeLocked();
3314 }
3315 }
3316
3317 private InputMethodSubtype getCurrentInputMethodSubtypeLocked() {
satokfdf419e2012-05-08 16:52:08 +09003318 if (mCurMethodId == null) {
3319 return null;
3320 }
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003321 final boolean subtypeIsSelected = mSettings.isSubtypeSelected();
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003322 final InputMethodInfo imi = mMethodMap.get(mCurMethodId);
3323 if (imi == null || imi.getSubtypeCount() == 0) {
3324 return null;
satok4e4569d2010-11-19 18:45:53 +09003325 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003326 if (!subtypeIsSelected || mCurrentSubtype == null
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003327 || !InputMethodUtils.isValidSubtypeId(imi, mCurrentSubtype.hashCode())) {
3328 int subtypeId = mSettings.getSelectedInputMethodSubtypeId(mCurMethodId);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003329 if (subtypeId == NOT_A_SUBTYPE_ID) {
3330 // If there are no selected subtypes, the framework will try to find
3331 // the most applicable subtype from explicitly or implicitly enabled
3332 // subtypes.
3333 List<InputMethodSubtype> explicitlyOrImplicitlyEnabledSubtypes =
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003334 mSettings.getEnabledInputMethodSubtypeListLocked(mContext, imi, true);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003335 // If there is only one explicitly or implicitly enabled subtype,
3336 // just returns it.
3337 if (explicitlyOrImplicitlyEnabledSubtypes.size() == 1) {
3338 mCurrentSubtype = explicitlyOrImplicitlyEnabledSubtypes.get(0);
3339 } else if (explicitlyOrImplicitlyEnabledSubtypes.size() > 1) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003340 mCurrentSubtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003341 mRes, explicitlyOrImplicitlyEnabledSubtypes,
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003342 InputMethodUtils.SUBTYPE_MODE_KEYBOARD, null, true);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003343 if (mCurrentSubtype == null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003344 mCurrentSubtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003345 mRes, explicitlyOrImplicitlyEnabledSubtypes, null, null,
3346 true);
satok4e4569d2010-11-19 18:45:53 +09003347 }
satok3ef8b292010-11-23 06:06:29 +09003348 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003349 } else {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003350 mCurrentSubtype = InputMethodUtils.getSubtypes(imi).get(subtypeId);
satok8fbb1e82010-11-02 23:15:58 +09003351 }
3352 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003353 return mCurrentSubtype;
satokab751aa2010-09-14 19:17:36 +09003354 }
3355
satokf3db1af2010-11-23 13:34:33 +09003356 private void addShortcutInputMethodAndSubtypes(InputMethodInfo imi,
3357 InputMethodSubtype subtype) {
3358 if (mShortcutInputMethodsAndSubtypes.containsKey(imi)) {
3359 mShortcutInputMethodsAndSubtypes.get(imi).add(subtype);
3360 } else {
3361 ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>();
3362 subtypes.add(subtype);
3363 mShortcutInputMethodsAndSubtypes.put(imi, subtypes);
3364 }
3365 }
3366
satok4e4569d2010-11-19 18:45:53 +09003367 // TODO: We should change the return type from List to List<Parcelable>
satokdbf29502011-08-25 15:28:23 +09003368 @SuppressWarnings("rawtypes")
satoke7c6998e2011-06-03 17:57:59 +09003369 @Override
satok4e4569d2010-11-19 18:45:53 +09003370 public List getShortcutInputMethodsAndSubtypes() {
3371 synchronized (mMethodMap) {
satok3da92232011-01-11 22:46:30 +09003372 ArrayList<Object> ret = new ArrayList<Object>();
satokf3db1af2010-11-23 13:34:33 +09003373 if (mShortcutInputMethodsAndSubtypes.size() == 0) {
satok4e4569d2010-11-19 18:45:53 +09003374 // If there are no selected shortcut subtypes, the framework will try to find
3375 // the most applicable subtype from all subtypes whose mode is
3376 // SUBTYPE_MODE_VOICE. This is an exceptional case, so we will hardcode the mode.
satokf3db1af2010-11-23 13:34:33 +09003377 Pair<InputMethodInfo, InputMethodSubtype> info =
3378 findLastResortApplicableShortcutInputMethodAndSubtypeLocked(
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003379 InputMethodUtils.SUBTYPE_MODE_VOICE);
satok7599a7f2010-12-22 13:45:23 +09003380 if (info != null) {
satok3da92232011-01-11 22:46:30 +09003381 ret.add(info.first);
3382 ret.add(info.second);
satok7599a7f2010-12-22 13:45:23 +09003383 }
satok3da92232011-01-11 22:46:30 +09003384 return ret;
satokf3db1af2010-11-23 13:34:33 +09003385 }
satokf3db1af2010-11-23 13:34:33 +09003386 for (InputMethodInfo imi: mShortcutInputMethodsAndSubtypes.keySet()) {
3387 ret.add(imi);
3388 for (InputMethodSubtype subtype: mShortcutInputMethodsAndSubtypes.get(imi)) {
3389 ret.add(subtype);
satok4e4569d2010-11-19 18:45:53 +09003390 }
3391 }
satokf3db1af2010-11-23 13:34:33 +09003392 return ret;
satok4e4569d2010-11-19 18:45:53 +09003393 }
3394 }
3395
satok42c5a162011-05-26 16:46:14 +09003396 @Override
satokb66d2872010-11-10 01:04:04 +09003397 public boolean setCurrentInputMethodSubtype(InputMethodSubtype subtype) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003398 // TODO: Make this work even for non-current users?
3399 if (!calledFromValidUser()) {
3400 return false;
3401 }
satokb66d2872010-11-10 01:04:04 +09003402 synchronized (mMethodMap) {
3403 if (subtype != null && mCurMethodId != null) {
3404 InputMethodInfo imi = mMethodMap.get(mCurMethodId);
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003405 int subtypeId = InputMethodUtils.getSubtypeIdFromHashCode(imi, subtype.hashCode());
satokb66d2872010-11-10 01:04:04 +09003406 if (subtypeId != NOT_A_SUBTYPE_ID) {
3407 setInputMethodLocked(mCurMethodId, subtypeId);
3408 return true;
3409 }
3410 }
3411 return false;
3412 }
3413 }
3414
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +09003415 // TODO: Cache the state for each user and reset when the cached user is removed.
satoke7c6998e2011-06-03 17:57:59 +09003416 private static class InputMethodFileManager {
3417 private static final String SYSTEM_PATH = "system";
3418 private static final String INPUT_METHOD_PATH = "inputmethod";
3419 private static final String ADDITIONAL_SUBTYPES_FILE_NAME = "subtypes.xml";
3420 private static final String NODE_SUBTYPES = "subtypes";
3421 private static final String NODE_SUBTYPE = "subtype";
3422 private static final String NODE_IMI = "imi";
3423 private static final String ATTR_ID = "id";
3424 private static final String ATTR_LABEL = "label";
3425 private static final String ATTR_ICON = "icon";
3426 private static final String ATTR_IME_SUBTYPE_LOCALE = "imeSubtypeLocale";
3427 private static final String ATTR_IME_SUBTYPE_MODE = "imeSubtypeMode";
3428 private static final String ATTR_IME_SUBTYPE_EXTRA_VALUE = "imeSubtypeExtraValue";
3429 private static final String ATTR_IS_AUXILIARY = "isAuxiliary";
3430 private final AtomicFile mAdditionalInputMethodSubtypeFile;
3431 private final HashMap<String, InputMethodInfo> mMethodMap;
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003432 private final HashMap<String, List<InputMethodSubtype>> mAdditionalSubtypesMap =
satoke7c6998e2011-06-03 17:57:59 +09003433 new HashMap<String, List<InputMethodSubtype>>();
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +09003434 public InputMethodFileManager(HashMap<String, InputMethodInfo> methodMap, int userId) {
satoke7c6998e2011-06-03 17:57:59 +09003435 if (methodMap == null) {
3436 throw new NullPointerException("methodMap is null");
3437 }
3438 mMethodMap = methodMap;
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +09003439 final File systemDir = userId == UserHandle.USER_OWNER
3440 ? new File(Environment.getDataDirectory(), SYSTEM_PATH)
3441 : Environment.getUserSystemDirectory(userId);
satoke7c6998e2011-06-03 17:57:59 +09003442 final File inputMethodDir = new File(systemDir, INPUT_METHOD_PATH);
3443 if (!inputMethodDir.mkdirs()) {
3444 Slog.w(TAG, "Couldn't create dir.: " + inputMethodDir.getAbsolutePath());
3445 }
3446 final File subtypeFile = new File(inputMethodDir, ADDITIONAL_SUBTYPES_FILE_NAME);
3447 mAdditionalInputMethodSubtypeFile = new AtomicFile(subtypeFile);
3448 if (!subtypeFile.exists()) {
3449 // If "subtypes.xml" doesn't exist, create a blank file.
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003450 writeAdditionalInputMethodSubtypes(
3451 mAdditionalSubtypesMap, mAdditionalInputMethodSubtypeFile, methodMap);
satoke7c6998e2011-06-03 17:57:59 +09003452 } else {
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003453 readAdditionalInputMethodSubtypes(
3454 mAdditionalSubtypesMap, mAdditionalInputMethodSubtypeFile);
satoke7c6998e2011-06-03 17:57:59 +09003455 }
3456 }
3457
3458 private void deleteAllInputMethodSubtypes(String imiId) {
3459 synchronized (mMethodMap) {
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003460 mAdditionalSubtypesMap.remove(imiId);
3461 writeAdditionalInputMethodSubtypes(
3462 mAdditionalSubtypesMap, mAdditionalInputMethodSubtypeFile, mMethodMap);
satoke7c6998e2011-06-03 17:57:59 +09003463 }
3464 }
3465
3466 public void addInputMethodSubtypes(
satok4a28bde2011-06-29 21:03:40 +09003467 InputMethodInfo imi, InputMethodSubtype[] additionalSubtypes) {
satoke7c6998e2011-06-03 17:57:59 +09003468 synchronized (mMethodMap) {
3469 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>();
3470 final int N = additionalSubtypes.length;
3471 for (int i = 0; i < N; ++i) {
3472 final InputMethodSubtype subtype = additionalSubtypes[i];
satoked2b24e2011-08-31 18:03:21 +09003473 if (!subtypes.contains(subtype)) {
satoke7c6998e2011-06-03 17:57:59 +09003474 subtypes.add(subtype);
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003475 } else {
3476 Slog.w(TAG, "Duplicated subtype definition found: "
3477 + subtype.getLocale() + ", " + subtype.getMode());
satoke7c6998e2011-06-03 17:57:59 +09003478 }
3479 }
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003480 mAdditionalSubtypesMap.put(imi.getId(), subtypes);
3481 writeAdditionalInputMethodSubtypes(
3482 mAdditionalSubtypesMap, mAdditionalInputMethodSubtypeFile, mMethodMap);
satoke7c6998e2011-06-03 17:57:59 +09003483 }
3484 }
3485
3486 public HashMap<String, List<InputMethodSubtype>> getAllAdditionalInputMethodSubtypes() {
3487 synchronized (mMethodMap) {
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003488 return mAdditionalSubtypesMap;
satoke7c6998e2011-06-03 17:57:59 +09003489 }
3490 }
3491
3492 private static void writeAdditionalInputMethodSubtypes(
3493 HashMap<String, List<InputMethodSubtype>> allSubtypes, AtomicFile subtypesFile,
3494 HashMap<String, InputMethodInfo> methodMap) {
3495 // Safety net for the case that this function is called before methodMap is set.
3496 final boolean isSetMethodMap = methodMap != null && methodMap.size() > 0;
3497 FileOutputStream fos = null;
3498 try {
3499 fos = subtypesFile.startWrite();
3500 final XmlSerializer out = new FastXmlSerializer();
3501 out.setOutput(fos, "utf-8");
3502 out.startDocument(null, true);
3503 out.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
3504 out.startTag(null, NODE_SUBTYPES);
3505 for (String imiId : allSubtypes.keySet()) {
3506 if (isSetMethodMap && !methodMap.containsKey(imiId)) {
3507 Slog.w(TAG, "IME uninstalled or not valid.: " + imiId);
3508 continue;
3509 }
3510 out.startTag(null, NODE_IMI);
3511 out.attribute(null, ATTR_ID, imiId);
3512 final List<InputMethodSubtype> subtypesList = allSubtypes.get(imiId);
3513 final int N = subtypesList.size();
3514 for (int i = 0; i < N; ++i) {
3515 final InputMethodSubtype subtype = subtypesList.get(i);
3516 out.startTag(null, NODE_SUBTYPE);
3517 out.attribute(null, ATTR_ICON, String.valueOf(subtype.getIconResId()));
3518 out.attribute(null, ATTR_LABEL, String.valueOf(subtype.getNameResId()));
3519 out.attribute(null, ATTR_IME_SUBTYPE_LOCALE, subtype.getLocale());
3520 out.attribute(null, ATTR_IME_SUBTYPE_MODE, subtype.getMode());
3521 out.attribute(null, ATTR_IME_SUBTYPE_EXTRA_VALUE, subtype.getExtraValue());
3522 out.attribute(null, ATTR_IS_AUXILIARY,
3523 String.valueOf(subtype.isAuxiliary() ? 1 : 0));
3524 out.endTag(null, NODE_SUBTYPE);
3525 }
3526 out.endTag(null, NODE_IMI);
3527 }
3528 out.endTag(null, NODE_SUBTYPES);
3529 out.endDocument();
3530 subtypesFile.finishWrite(fos);
3531 } catch (java.io.IOException e) {
3532 Slog.w(TAG, "Error writing subtypes", e);
3533 if (fos != null) {
3534 subtypesFile.failWrite(fos);
3535 }
3536 }
3537 }
3538
3539 private static void readAdditionalInputMethodSubtypes(
3540 HashMap<String, List<InputMethodSubtype>> allSubtypes, AtomicFile subtypesFile) {
3541 if (allSubtypes == null || subtypesFile == null) return;
3542 allSubtypes.clear();
3543 FileInputStream fis = null;
3544 try {
3545 fis = subtypesFile.openRead();
3546 final XmlPullParser parser = Xml.newPullParser();
3547 parser.setInput(fis, null);
3548 int type = parser.getEventType();
3549 // Skip parsing until START_TAG
3550 while ((type = parser.next()) != XmlPullParser.START_TAG
3551 && type != XmlPullParser.END_DOCUMENT) {}
3552 String firstNodeName = parser.getName();
3553 if (!NODE_SUBTYPES.equals(firstNodeName)) {
3554 throw new XmlPullParserException("Xml doesn't start with subtypes");
3555 }
3556 final int depth =parser.getDepth();
3557 String currentImiId = null;
3558 ArrayList<InputMethodSubtype> tempSubtypesArray = null;
3559 while (((type = parser.next()) != XmlPullParser.END_TAG
3560 || parser.getDepth() > depth) && type != XmlPullParser.END_DOCUMENT) {
3561 if (type != XmlPullParser.START_TAG)
3562 continue;
3563 final String nodeName = parser.getName();
3564 if (NODE_IMI.equals(nodeName)) {
3565 currentImiId = parser.getAttributeValue(null, ATTR_ID);
3566 if (TextUtils.isEmpty(currentImiId)) {
3567 Slog.w(TAG, "Invalid imi id found in subtypes.xml");
3568 continue;
3569 }
3570 tempSubtypesArray = new ArrayList<InputMethodSubtype>();
3571 allSubtypes.put(currentImiId, tempSubtypesArray);
3572 } else if (NODE_SUBTYPE.equals(nodeName)) {
3573 if (TextUtils.isEmpty(currentImiId) || tempSubtypesArray == null) {
3574 Slog.w(TAG, "IME uninstalled or not valid.: " + currentImiId);
3575 continue;
3576 }
3577 final int icon = Integer.valueOf(
3578 parser.getAttributeValue(null, ATTR_ICON));
3579 final int label = Integer.valueOf(
3580 parser.getAttributeValue(null, ATTR_LABEL));
3581 final String imeSubtypeLocale =
3582 parser.getAttributeValue(null, ATTR_IME_SUBTYPE_LOCALE);
3583 final String imeSubtypeMode =
3584 parser.getAttributeValue(null, ATTR_IME_SUBTYPE_MODE);
3585 final String imeSubtypeExtraValue =
3586 parser.getAttributeValue(null, ATTR_IME_SUBTYPE_EXTRA_VALUE);
satok4a28bde2011-06-29 21:03:40 +09003587 final boolean isAuxiliary = "1".equals(String.valueOf(
3588 parser.getAttributeValue(null, ATTR_IS_AUXILIARY)));
Yohei Yukawa443c2ba2014-09-10 14:10:30 +09003589 final InputMethodSubtype subtype = new InputMethodSubtypeBuilder()
3590 .setSubtypeNameResId(label)
3591 .setSubtypeIconResId(icon)
3592 .setSubtypeLocale(imeSubtypeLocale)
3593 .setSubtypeMode(imeSubtypeMode)
3594 .setSubtypeExtraValue(imeSubtypeExtraValue)
3595 .setIsAuxiliary(isAuxiliary)
3596 .build();
satoke7c6998e2011-06-03 17:57:59 +09003597 tempSubtypesArray.add(subtype);
3598 }
3599 }
3600 } catch (XmlPullParserException e) {
3601 Slog.w(TAG, "Error reading subtypes: " + e);
3602 return;
3603 } catch (java.io.IOException e) {
3604 Slog.w(TAG, "Error reading subtypes: " + e);
3605 return;
3606 } catch (NumberFormatException e) {
3607 Slog.w(TAG, "Error reading subtypes: " + e);
3608 return;
3609 } finally {
3610 if (fis != null) {
3611 try {
3612 fis.close();
3613 } catch (java.io.IOException e1) {
3614 Slog.w(TAG, "Failed to close.");
3615 }
3616 }
3617 }
3618 }
3619 }
3620
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003621 @Override
3622 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
3623 if (mContext.checkCallingOrSelfPermission(android.Manifest.permission.DUMP)
3624 != PackageManager.PERMISSION_GRANTED) {
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003625
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003626 pw.println("Permission Denial: can't dump InputMethodManager from from pid="
3627 + Binder.getCallingPid()
3628 + ", uid=" + Binder.getCallingUid());
3629 return;
3630 }
3631
3632 IInputMethod method;
3633 ClientState client;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003634
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003635 final Printer p = new PrintWriterPrinter(pw);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003636
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003637 synchronized (mMethodMap) {
3638 p.println("Current Input Method Manager state:");
3639 int N = mMethodList.size();
3640 p.println(" Input Methods:");
3641 for (int i=0; i<N; i++) {
3642 InputMethodInfo info = mMethodList.get(i);
3643 p.println(" InputMethod #" + i + ":");
3644 info.dump(p, " ");
3645 }
3646 p.println(" Clients:");
3647 for (ClientState ci : mClients.values()) {
3648 p.println(" Client " + ci + ":");
3649 p.println(" client=" + ci.client);
3650 p.println(" inputContext=" + ci.inputContext);
3651 p.println(" sessionRequested=" + ci.sessionRequested);
3652 p.println(" curSession=" + ci.curSession);
3653 }
The Android Open Source Project10592532009-03-18 17:39:46 -07003654 p.println(" mCurMethodId=" + mCurMethodId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003655 client = mCurClient;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07003656 p.println(" mCurClient=" + client + " mCurSeq=" + mCurSeq);
3657 p.println(" mCurFocusedWindow=" + mCurFocusedWindow);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003658 p.println(" mCurId=" + mCurId + " mHaveConnect=" + mHaveConnection
3659 + " mBoundToMethod=" + mBoundToMethod);
3660 p.println(" mCurToken=" + mCurToken);
3661 p.println(" mCurIntent=" + mCurIntent);
3662 method = mCurMethod;
3663 p.println(" mCurMethod=" + mCurMethod);
3664 p.println(" mEnabledSession=" + mEnabledSession);
3665 p.println(" mShowRequested=" + mShowRequested
3666 + " mShowExplicitlyRequested=" + mShowExplicitlyRequested
3667 + " mShowForced=" + mShowForced
3668 + " mInputShown=" + mInputShown);
Yohei Yukawa3d1e8122014-06-06 19:12:47 +09003669 p.println(" mCurUserActionNotificationSequenceNumber="
3670 + mCurUserActionNotificationSequenceNumber);
Dianne Hackbornd4e6d462014-05-16 16:32:37 -07003671 p.println(" mSystemReady=" + mSystemReady + " mInteractive=" + mScreenOn);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003672 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003673
Jeff Brownb88102f2010-09-08 11:49:43 -07003674 p.println(" ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003675 if (client != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003676 pw.flush();
3677 try {
3678 client.client.asBinder().dump(fd, args);
3679 } catch (RemoteException e) {
3680 p.println("Input method client dead: " + e);
3681 }
Jeff Brownb88102f2010-09-08 11:49:43 -07003682 } else {
3683 p.println("No input method client.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003684 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003685
Jeff Brownb88102f2010-09-08 11:49:43 -07003686 p.println(" ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003687 if (method != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003688 pw.flush();
3689 try {
3690 method.asBinder().dump(fd, args);
3691 } catch (RemoteException e) {
3692 p.println("Input method service dead: " + e);
3693 }
Jeff Brownb88102f2010-09-08 11:49:43 -07003694 } else {
3695 p.println("No input method service.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003696 }
3697 }
3698}