blob: 50553ee9d71f5b7a46e5bb0b7682a6bcac87299e [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;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +090043import android.app.IUserSwitchObserver;
satokf90a33e2011-07-19 11:55:52 +090044import android.app.KeyguardManager;
satok7cfc0ed2011-06-20 21:29:36 +090045import android.app.Notification;
46import android.app.NotificationManager;
Dianne Hackborndd9b82c2009-09-03 00:18:47 -070047import android.app.PendingIntent;
satok5b927c432012-05-01 20:09:34 +090048import android.content.BroadcastReceiver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080049import android.content.ComponentName;
50import android.content.ContentResolver;
51import android.content.Context;
52import android.content.DialogInterface;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080053import android.content.DialogInterface.OnCancelListener;
54import android.content.Intent;
satoke7c6998e2011-06-03 17:57:59 +090055import android.content.IntentFilter;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080056import android.content.ServiceConnection;
Brandon Ballinger6da35a02009-10-21 00:38:13 -070057import android.content.pm.ApplicationInfo;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +090058import android.content.pm.IPackageManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080059import android.content.pm.PackageManager;
60import android.content.pm.ResolveInfo;
61import android.content.pm.ServiceInfo;
Amith Yamasani734983f2014-03-04 16:48:05 -080062import android.content.pm.UserInfo;
Amith Yamasanie861ec12010-03-24 21:39:27 -070063import android.content.res.Configuration;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080064import android.content.res.Resources;
65import android.content.res.TypedArray;
66import android.database.ContentObserver;
Joe Onorato857fd9b2011-01-27 15:08:35 -080067import android.inputmethodservice.InputMethodService;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080068import android.os.Binder;
satoke7c6998e2011-06-03 17:57:59 +090069import android.os.Environment;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080070import android.os.Handler;
71import android.os.IBinder;
72import android.os.IInterface;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +090073import android.os.IRemoteCallback;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080074import android.os.Message;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +090075import android.os.Process;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080076import android.os.Parcel;
77import android.os.RemoteException;
The Android Open Source Project4df24232009-03-05 14:34:35 -080078import android.os.ResultReceiver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080079import android.os.ServiceManager;
80import android.os.SystemClock;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +090081import android.os.UserHandle;
Amith Yamasani734983f2014-03-04 16:48:05 -080082import android.os.UserManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080083import android.provider.Settings;
84import android.text.TextUtils;
satokf9f01002011-05-19 21:31:50 +090085import android.text.style.SuggestionSpan;
Dianne Hackborn39606a02012-07-31 17:54:35 -070086import android.util.AtomicFile;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080087import android.util.EventLog;
satokf9f01002011-05-19 21:31:50 +090088import android.util.LruCache;
satokab751aa2010-09-14 19:17:36 +090089import android.util.Pair;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080090import android.util.PrintWriterPrinter;
91import android.util.Printer;
satoke7c6998e2011-06-03 17:57:59 +090092import android.util.Slog;
93import android.util.Xml;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080094import android.view.IWindowManager;
Jeff Brownc28867a2013-03-26 15:42:39 -070095import android.view.InputChannel;
Ken Wakasa05dbb652011-08-22 15:22:43 +090096import android.view.LayoutInflater;
97import android.view.View;
98import android.view.ViewGroup;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080099import android.view.WindowManager;
satokab751aa2010-09-14 19:17:36 +0900100import android.view.inputmethod.EditorInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800101import android.view.inputmethod.InputBinding;
102import android.view.inputmethod.InputMethod;
103import android.view.inputmethod.InputMethodInfo;
104import android.view.inputmethod.InputMethodManager;
satokab751aa2010-09-14 19:17:36 +0900105import android.view.inputmethod.InputMethodSubtype;
Ken Wakasa05dbb652011-08-22 15:22:43 +0900106import android.widget.ArrayAdapter;
satok01038492012-04-09 21:08:27 +0900107import android.widget.CompoundButton;
108import android.widget.CompoundButton.OnCheckedChangeListener;
Ken Wakasa05dbb652011-08-22 15:22:43 +0900109import android.widget.RadioButton;
satok01038492012-04-09 21:08:27 +0900110import android.widget.Switch;
Ken Wakasa05dbb652011-08-22 15:22:43 +0900111import android.widget.TextView;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800112
satoke7c6998e2011-06-03 17:57:59 +0900113import java.io.File;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800114import java.io.FileDescriptor;
satoke7c6998e2011-06-03 17:57:59 +0900115import java.io.FileInputStream;
116import java.io.FileOutputStream;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800117import java.io.IOException;
118import java.io.PrintWriter;
119import java.util.ArrayList;
satok688bd472012-02-09 20:09:17 +0900120import java.util.Collections;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800121import java.util.HashMap;
122import java.util.List;
satok5b927c432012-05-01 20:09:34 +0900123import java.util.Locale;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800124
125/**
126 * This class provides a system service that manages input methods.
127 */
128public class InputMethodManagerService extends IInputMethodManager.Stub
129 implements ServiceConnection, Handler.Callback {
130 static final boolean DEBUG = false;
Jeff Brown6ec6f792012-04-17 16:52:41 -0700131 static final String TAG = "InputMethodManagerService";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800132
133 static final int MSG_SHOW_IM_PICKER = 1;
satokab751aa2010-09-14 19:17:36 +0900134 static final int MSG_SHOW_IM_SUBTYPE_PICKER = 2;
satok47a44912010-10-06 16:03:58 +0900135 static final int MSG_SHOW_IM_SUBTYPE_ENABLER = 3;
satok217f5482010-12-15 05:19:19 +0900136 static final int MSG_SHOW_IM_CONFIG = 4;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800137
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800138 static final int MSG_UNBIND_INPUT = 1000;
139 static final int MSG_BIND_INPUT = 1010;
140 static final int MSG_SHOW_SOFT_INPUT = 1020;
141 static final int MSG_HIDE_SOFT_INPUT = 1030;
142 static final int MSG_ATTACH_TOKEN = 1040;
143 static final int MSG_CREATE_SESSION = 1050;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800144
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800145 static final int MSG_START_INPUT = 2000;
146 static final int MSG_RESTART_INPUT = 2010;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800147
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800148 static final int MSG_UNBIND_METHOD = 3000;
149 static final int MSG_BIND_METHOD = 3010;
Dianne Hackborna6e41342012-05-22 16:30:34 -0700150 static final int MSG_SET_ACTIVE = 3020;
Yohei Yukawab7b79072014-03-25 11:02:00 +0900151 static final int MSG_SET_CURSOR_ANCHOR_MONITOR_MODE = 3030;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800152
satok01038492012-04-09 21:08:27 +0900153 static final int MSG_HARD_KEYBOARD_SWITCH_CHANGED = 4000;
154
Satoshi Kataokabcacc322013-10-21 17:57:27 -0700155 static final long TIME_TO_RECONNECT = 3 * 1000;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800156
satokf9f01002011-05-19 21:31:50 +0900157 static final int SECURE_SUGGESTION_SPANS_MAX_SIZE = 20;
158
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +0900159 private static final int NOT_A_SUBTYPE_ID = InputMethodUtils.NOT_A_SUBTYPE_ID;
satokb6359412011-06-28 17:47:41 +0900160 private static final String TAG_TRY_SUPPRESSING_IME_SWITCHER = "TrySuppressingImeSwitcher";
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +0900161
satok4e4569d2010-11-19 18:45:53 +0900162
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800163 final Context mContext;
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -0800164 final Resources mRes;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800165 final Handler mHandler;
satokd87c2592010-09-29 11:52:06 +0900166 final InputMethodSettings mSettings;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800167 final SettingsObserver mSettingsObserver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800168 final IWindowManager mIWindowManager;
169 final HandlerCaller mCaller;
Dianne Hackborn119bbc32013-03-22 17:27:25 -0700170 final boolean mHasFeature;
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +0900171 private InputMethodFileManager mFileManager;
satok01038492012-04-09 21:08:27 +0900172 private final HardKeyboardListener mHardKeyboardListener;
173 private final WindowManagerService mWindowManagerService;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800174
Jeff Brownc28867a2013-03-26 15:42:39 -0700175 final InputBindResult mNoBinding = new InputBindResult(null, null, null, -1);
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800176
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800177 // All known input methods. mMethodMap also serves as the global
178 // lock for this class.
satokd87c2592010-09-29 11:52:06 +0900179 final ArrayList<InputMethodInfo> mMethodList = new ArrayList<InputMethodInfo>();
180 final HashMap<String, InputMethodInfo> mMethodMap = new HashMap<String, InputMethodInfo>();
satokf9f01002011-05-19 21:31:50 +0900181 private final LruCache<SuggestionSpan, InputMethodInfo> mSecureSuggestionSpans =
182 new LruCache<SuggestionSpan, InputMethodInfo>(SECURE_SUGGESTION_SPANS_MAX_SIZE);
Satoshi Kataokad787f692013-10-26 04:44:21 +0900183 private final InputMethodSubtypeSwitchingController mSwitchingController;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800184
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700185 // Used to bring IME service up to visible adjustment while it is being shown.
186 final ServiceConnection mVisibleConnection = new ServiceConnection() {
187 @Override public void onServiceConnected(ComponentName name, IBinder service) {
188 }
189
190 @Override public void onServiceDisconnected(ComponentName name) {
191 }
192 };
193 boolean mVisibleBound = false;
194
satok7cfc0ed2011-06-20 21:29:36 +0900195 // Ongoing notification
Dianne Hackborn661cd522011-08-22 00:26:20 -0700196 private NotificationManager mNotificationManager;
197 private KeyguardManager mKeyguardManager;
198 private StatusBarManagerService mStatusBar;
199 private Notification mImeSwitcherNotification;
200 private PendingIntent mImeSwitchPendingIntent;
satokb858c732011-07-22 19:54:34 +0900201 private boolean mShowOngoingImeSwitcherForPhones;
satok7cfc0ed2011-06-20 21:29:36 +0900202 private boolean mNotificationShown;
satok0a1bcf42012-05-16 19:26:31 +0900203 private final boolean mImeSelectedOnBoot;
satok7cfc0ed2011-06-20 21:29:36 +0900204
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800205 class SessionState {
206 final ClientState client;
207 final IInputMethod method;
Jeff Brownc28867a2013-03-26 15:42:39 -0700208
209 IInputMethodSession session;
210 InputChannel channel;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800211
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800212 @Override
213 public String toString() {
214 return "SessionState{uid " + client.uid + " pid " + client.pid
215 + " method " + Integer.toHexString(
216 System.identityHashCode(method))
217 + " session " + Integer.toHexString(
218 System.identityHashCode(session))
Jeff Brownc28867a2013-03-26 15:42:39 -0700219 + " channel " + channel
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800220 + "}";
221 }
222
223 SessionState(ClientState _client, IInputMethod _method,
Jeff Brownc28867a2013-03-26 15:42:39 -0700224 IInputMethodSession _session, InputChannel _channel) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800225 client = _client;
226 method = _method;
227 session = _session;
Jeff Brownc28867a2013-03-26 15:42:39 -0700228 channel = _channel;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800229 }
230 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800231
Jeff Brownc28867a2013-03-26 15:42:39 -0700232 static final class ClientState {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800233 final IInputMethodClient client;
234 final IInputContext inputContext;
235 final int uid;
236 final int pid;
237 final InputBinding binding;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800238
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800239 boolean sessionRequested;
240 SessionState curSession;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800241
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800242 @Override
243 public String toString() {
244 return "ClientState{" + Integer.toHexString(
245 System.identityHashCode(this)) + " uid " + uid
246 + " pid " + pid + "}";
247 }
248
249 ClientState(IInputMethodClient _client, IInputContext _inputContext,
250 int _uid, int _pid) {
251 client = _client;
252 inputContext = _inputContext;
253 uid = _uid;
254 pid = _pid;
255 binding = new InputBinding(null, inputContext.asBinder(), uid, pid);
256 }
257 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800258
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800259 final HashMap<IBinder, ClientState> mClients
260 = new HashMap<IBinder, ClientState>();
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800261
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800262 /**
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700263 * Set once the system is ready to run third party code.
264 */
265 boolean mSystemReady;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800266
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700267 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800268 * Id of the currently selected input method.
269 */
270 String mCurMethodId;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800271
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800272 /**
273 * The current binding sequence number, incremented every time there is
274 * a new bind performed.
275 */
276 int mCurSeq;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800277
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800278 /**
279 * The client that is currently bound to an input method.
280 */
281 ClientState mCurClient;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800282
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800283 /**
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700284 * The last window token that gained focus.
285 */
286 IBinder mCurFocusedWindow;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800287
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700288 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800289 * The input context last provided by the current client.
290 */
291 IInputContext mCurInputContext;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800292
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800293 /**
294 * The attributes last provided by the current client.
295 */
296 EditorInfo mCurAttribute;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800297
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800298 /**
299 * The input method ID of the input method service that we are currently
300 * connected to or in the process of connecting to.
301 */
302 String mCurId;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800303
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800304 /**
satokab751aa2010-09-14 19:17:36 +0900305 * The current subtype of the current input method.
306 */
307 private InputMethodSubtype mCurrentSubtype;
308
satok4e4569d2010-11-19 18:45:53 +0900309 // This list contains the pairs of InputMethodInfo and InputMethodSubtype.
satokf3db1af2010-11-23 13:34:33 +0900310 private final HashMap<InputMethodInfo, ArrayList<InputMethodSubtype>>
311 mShortcutInputMethodsAndSubtypes =
312 new HashMap<InputMethodInfo, ArrayList<InputMethodSubtype>>();
satokab751aa2010-09-14 19:17:36 +0900313
John Spurlocke0980502013-10-25 11:59:29 -0400314 // Was the keyguard locked when this client became current?
315 private boolean mCurClientInKeyguard;
316
satokab751aa2010-09-14 19:17:36 +0900317 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800318 * Set to true if our ServiceConnection is currently actively bound to
319 * a service (whether or not we have gotten its IBinder back yet).
320 */
321 boolean mHaveConnection;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800322
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800323 /**
324 * Set if the client has asked for the input method to be shown.
325 */
326 boolean mShowRequested;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800327
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800328 /**
329 * Set if we were explicitly told to show the input method.
330 */
331 boolean mShowExplicitlyRequested;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800332
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800333 /**
334 * Set if we were forced to be shown.
335 */
336 boolean mShowForced;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800337
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800338 /**
339 * Set if we last told the input method to show itself.
340 */
341 boolean mInputShown;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800342
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800343 /**
344 * The Intent used to connect to the current input method.
345 */
346 Intent mCurIntent;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800347
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800348 /**
349 * The token we have made for the currently active input method, to
350 * identify it in the future.
351 */
352 IBinder mCurToken;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800353
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800354 /**
355 * If non-null, this is the input method service we are currently connected
356 * to.
357 */
358 IInputMethod mCurMethod;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800359
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800360 /**
361 * Time that we last initiated a bind to the input method, to determine
362 * if we should try to disconnect and reconnect to it.
363 */
364 long mLastBindTime;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800365
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800366 /**
367 * Have we called mCurMethod.bindInput()?
368 */
369 boolean mBoundToMethod;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800370
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800371 /**
372 * Currently enabled session. Only touched by service thread, not
373 * protected by a lock.
374 */
375 SessionState mEnabledSession;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800376
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800377 /**
378 * True if the screen is on. The value is true initially.
379 */
380 boolean mScreenOn = true;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800381
Joe Onorato857fd9b2011-01-27 15:08:35 -0800382 int mBackDisposition = InputMethodService.BACK_DISPOSITION_DEFAULT;
383 int mImeWindowVis;
384
Ken Wakasa05dbb652011-08-22 15:22:43 +0900385 private AlertDialog.Builder mDialogBuilder;
386 private AlertDialog mSwitchingDialog;
satok01038492012-04-09 21:08:27 +0900387 private View mSwitchingDialogTitleView;
Ken Wakasa05dbb652011-08-22 15:22:43 +0900388 private InputMethodInfo[] mIms;
389 private int[] mSubtypeIds;
satok5b927c432012-05-01 20:09:34 +0900390 private Locale mLastSystemLocale;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900391 private final MyPackageMonitor mMyPackageMonitor = new MyPackageMonitor();
392 private final IPackageManager mIPackageManager;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800393
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800394 class SettingsObserver extends ContentObserver {
Dianne Hackbornfd7aded2013-01-22 17:10:23 -0800395 String mLastEnabled = "";
396
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800397 SettingsObserver(Handler handler) {
398 super(handler);
399 ContentResolver resolver = mContext.getContentResolver();
400 resolver.registerContentObserver(Settings.Secure.getUriFor(
401 Settings.Secure.DEFAULT_INPUT_METHOD), false, this);
satokab751aa2010-09-14 19:17:36 +0900402 resolver.registerContentObserver(Settings.Secure.getUriFor(
satokb6109bb2011-02-03 22:24:54 +0900403 Settings.Secure.ENABLED_INPUT_METHODS), false, this);
404 resolver.registerContentObserver(Settings.Secure.getUriFor(
satokab751aa2010-09-14 19:17:36 +0900405 Settings.Secure.SELECTED_INPUT_METHOD_SUBTYPE), false, this);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800406 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800407
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800408 @Override public void onChange(boolean selfChange) {
409 synchronized (mMethodMap) {
Dianne Hackbornfd7aded2013-01-22 17:10:23 -0800410 boolean enabledChanged = false;
411 String newEnabled = mSettings.getEnabledInputMethodsStr();
412 if (!mLastEnabled.equals(newEnabled)) {
413 mLastEnabled = newEnabled;
414 enabledChanged = true;
415 }
416 updateFromSettingsLocked(enabledChanged);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800417 }
418 }
419 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800420
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900421 class ImmsBroadcastReceiver extends android.content.BroadcastReceiver {
422 private void updateActive() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800423 // Inform the current client of the change in active status
Dianne Hackborna6e41342012-05-22 16:30:34 -0700424 if (mCurClient != null && mCurClient.client != null) {
425 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
426 MSG_SET_ACTIVE, mScreenOn ? 1 : 0, mCurClient));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800427 }
428 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900429
430 @Override
431 public void onReceive(Context context, Intent intent) {
432 final String action = intent.getAction();
433 if (Intent.ACTION_SCREEN_ON.equals(action)) {
434 mScreenOn = true;
435 refreshImeWindowVisibilityLocked();
436 updateActive();
437 return;
438 } else if (Intent.ACTION_SCREEN_OFF.equals(action)) {
439 mScreenOn = false;
440 setImeWindowVisibilityStatusHiddenLocked();
441 updateActive();
442 return;
443 } else if (Intent.ACTION_CLOSE_SYSTEM_DIALOGS.equals(action)) {
444 hideInputMethodMenu();
445 // No need to updateActive
446 return;
Amith Yamasani734983f2014-03-04 16:48:05 -0800447 } else if (Intent.ACTION_USER_ADDED.equals(action)
448 || Intent.ACTION_USER_REMOVED.equals(action)) {
Kenny Guy2a764942014-04-02 13:29:20 +0100449 updateCurrentProfileIds();
Amith Yamasani734983f2014-03-04 16:48:05 -0800450 return;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900451 } else {
452 Slog.w(TAG, "Unexpected intent " + intent);
453 }
454 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800455 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800456
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800457 class MyPackageMonitor extends PackageMonitor {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900458 private boolean isChangingPackagesOfCurrentUser() {
459 final int userId = getChangingUserId();
460 final boolean retval = userId == mSettings.getCurrentUserId();
461 if (DEBUG) {
satok81f8b7c2012-12-04 20:42:56 +0900462 if (!retval) {
463 Slog.d(TAG, "--- ignore this call back from a background user: " + userId);
464 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900465 }
466 return retval;
467 }
468
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800469 @Override
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800470 public boolean onHandleForceStop(Intent intent, String[] packages, int uid, boolean doit) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900471 if (!isChangingPackagesOfCurrentUser()) {
472 return false;
473 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800474 synchronized (mMethodMap) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900475 String curInputMethodId = mSettings.getSelectedInputMethod();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800476 final int N = mMethodList.size();
477 if (curInputMethodId != null) {
478 for (int i=0; i<N; i++) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800479 InputMethodInfo imi = mMethodList.get(i);
480 if (imi.getId().equals(curInputMethodId)) {
481 for (String pkg : packages) {
482 if (imi.getPackageName().equals(pkg)) {
483 if (!doit) {
484 return true;
485 }
satok723a27e2010-11-11 14:58:11 +0900486 resetSelectedInputMethodAndSubtypeLocked("");
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800487 chooseNewDefaultIMELocked();
488 return true;
489 }
490 }
491 }
492 }
493 }
494 }
495 return false;
496 }
497
498 @Override
499 public void onSomePackagesChanged() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900500 if (!isChangingPackagesOfCurrentUser()) {
501 return;
502 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800503 synchronized (mMethodMap) {
504 InputMethodInfo curIm = null;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900505 String curInputMethodId = mSettings.getSelectedInputMethod();
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800506 final int N = mMethodList.size();
507 if (curInputMethodId != null) {
508 for (int i=0; i<N; i++) {
509 InputMethodInfo imi = mMethodList.get(i);
satoke7c6998e2011-06-03 17:57:59 +0900510 final String imiId = imi.getId();
511 if (imiId.equals(curInputMethodId)) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800512 curIm = imi;
513 }
satoke7c6998e2011-06-03 17:57:59 +0900514
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800515 int change = isPackageDisappearing(imi.getPackageName());
satoke7c6998e2011-06-03 17:57:59 +0900516 if (isPackageModified(imi.getPackageName())) {
517 mFileManager.deleteAllInputMethodSubtypes(imiId);
518 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800519 if (change == PACKAGE_TEMPORARY_CHANGE
520 || change == PACKAGE_PERMANENT_CHANGE) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800521 Slog.i(TAG, "Input method uninstalled, disabling: "
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800522 + imi.getComponent());
523 setInputMethodEnabledLocked(imi.getId(), false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800524 }
525 }
526 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800527
Satoshi Kataokaf1367b72013-01-25 17:20:12 +0900528 buildInputMethodListLocked(
529 mMethodList, mMethodMap, false /* resetDefaultEnabledIme */);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800530
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800531 boolean changed = false;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800532
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800533 if (curIm != null) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800534 int change = isPackageDisappearing(curIm.getPackageName());
535 if (change == PACKAGE_TEMPORARY_CHANGE
536 || change == PACKAGE_PERMANENT_CHANGE) {
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800537 ServiceInfo si = null;
538 try {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900539 si = mIPackageManager.getServiceInfo(
540 curIm.getComponent(), 0, mSettings.getCurrentUserId());
541 } catch (RemoteException ex) {
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800542 }
543 if (si == null) {
544 // Uh oh, current input method is no longer around!
545 // Pick another one...
Joe Onorato8a9b2202010-02-26 18:56:32 -0800546 Slog.i(TAG, "Current input method removed: " + curInputMethodId);
satok15452a42011-10-28 17:58:28 +0900547 setImeWindowVisibilityStatusHiddenLocked();
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800548 if (!chooseNewDefaultIMELocked()) {
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800549 changed = true;
550 curIm = null;
Joe Onorato8a9b2202010-02-26 18:56:32 -0800551 Slog.i(TAG, "Unsetting current input method");
satok723a27e2010-11-11 14:58:11 +0900552 resetSelectedInputMethodAndSubtypeLocked("");
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800553 }
554 }
Suchi Amalapurapu08675a32010-01-28 09:57:30 -0800555 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800556 }
satokab751aa2010-09-14 19:17:36 +0900557
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800558 if (curIm == null) {
559 // We currently don't have a default input method... is
560 // one now available?
561 changed = chooseNewDefaultIMELocked();
562 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800563
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800564 if (changed) {
Dianne Hackbornfd7aded2013-01-22 17:10:23 -0800565 updateFromSettingsLocked(false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800566 }
567 }
568 }
569 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800570
Jeff Brownc28867a2013-03-26 15:42:39 -0700571 private static final class MethodCallback extends IInputSessionCallback.Stub {
Jean Chalarde0d32a62011-10-20 20:36:07 +0900572 private final InputMethodManagerService mParentIMMS;
Jeff Brownc28867a2013-03-26 15:42:39 -0700573 private final IInputMethod mMethod;
574 private final InputChannel mChannel;
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800575
Jeff Brownc28867a2013-03-26 15:42:39 -0700576 MethodCallback(InputMethodManagerService imms, IInputMethod method,
577 InputChannel channel) {
Jean Chalarde0d32a62011-10-20 20:36:07 +0900578 mParentIMMS = imms;
Jeff Brownc28867a2013-03-26 15:42:39 -0700579 mMethod = method;
580 mChannel = channel;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800581 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800582
satoke7c6998e2011-06-03 17:57:59 +0900583 @Override
Jeff Brownc28867a2013-03-26 15:42:39 -0700584 public void sessionCreated(IInputMethodSession session) {
Dianne Hackborn6b6b3fd2014-03-24 11:27:18 -0700585 long ident = Binder.clearCallingIdentity();
586 try {
587 mParentIMMS.onSessionCreated(mMethod, session, mChannel);
588 } finally {
589 Binder.restoreCallingIdentity(ident);
590 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800591 }
592 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800593
satok01038492012-04-09 21:08:27 +0900594 private class HardKeyboardListener
595 implements WindowManagerService.OnHardKeyboardStatusChangeListener {
596 @Override
597 public void onHardKeyboardStatusChange(boolean available, boolean enabled) {
598 mHandler.sendMessage(mHandler.obtainMessage(
599 MSG_HARD_KEYBOARD_SWITCH_CHANGED, available ? 1 : 0, enabled ? 1 : 0));
600 }
601
602 public void handleHardKeyboardStatusChange(boolean available, boolean enabled) {
603 if (DEBUG) {
604 Slog.w(TAG, "HardKeyboardStatusChanged: available = " + available + ", enabled = "
605 + enabled);
606 }
607 synchronized(mMethodMap) {
608 if (mSwitchingDialog != null && mSwitchingDialogTitleView != null
609 && mSwitchingDialog.isShowing()) {
610 mSwitchingDialogTitleView.findViewById(
611 com.android.internal.R.id.hard_keyboard_section).setVisibility(
612 available ? View.VISIBLE : View.GONE);
613 }
614 }
615 }
616 }
617
618 public InputMethodManagerService(Context context, WindowManagerService windowManager) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900619 mIPackageManager = AppGlobals.getPackageManager();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800620 mContext = context;
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -0800621 mRes = context.getResources();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800622 mHandler = new Handler(this);
623 mIWindowManager = IWindowManager.Stub.asInterface(
624 ServiceManager.getService(Context.WINDOW_SERVICE));
Mita Yuned218c72012-12-06 17:18:25 -0800625 mCaller = new HandlerCaller(context, null, new HandlerCaller.Callback() {
satoke7c6998e2011-06-03 17:57:59 +0900626 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800627 public void executeMessage(Message msg) {
628 handleMessage(msg);
629 }
Mita Yuned218c72012-12-06 17:18:25 -0800630 }, true /*asyncHandler*/);
satok01038492012-04-09 21:08:27 +0900631 mWindowManagerService = windowManager;
632 mHardKeyboardListener = new HardKeyboardListener();
Dianne Hackborn119bbc32013-03-22 17:27:25 -0700633 mHasFeature = context.getPackageManager().hasSystemFeature(
634 PackageManager.FEATURE_INPUT_METHODS);
satok7cfc0ed2011-06-20 21:29:36 +0900635
satok7cfc0ed2011-06-20 21:29:36 +0900636 mImeSwitcherNotification = new Notification();
637 mImeSwitcherNotification.icon = com.android.internal.R.drawable.ic_notification_ime_default;
638 mImeSwitcherNotification.when = 0;
639 mImeSwitcherNotification.flags = Notification.FLAG_ONGOING_EVENT;
640 mImeSwitcherNotification.tickerText = null;
641 mImeSwitcherNotification.defaults = 0; // please be quiet
642 mImeSwitcherNotification.sound = null;
643 mImeSwitcherNotification.vibrate = null;
Daniel Sandler590d5152012-06-14 16:10:13 -0400644
645 // Tag this notification specially so SystemUI knows it's important
John Spurlockfd7f1e02014-03-18 16:41:57 -0400646 mImeSwitcherNotification.extras.putBoolean(Notification.EXTRA_ALLOW_DURING_SETUP, true);
647 mImeSwitcherNotification.category = Notification.CATEGORY_SYSTEM;
Daniel Sandler590d5152012-06-14 16:10:13 -0400648
satok7cfc0ed2011-06-20 21:29:36 +0900649 Intent intent = new Intent(Settings.ACTION_SHOW_INPUT_METHOD_PICKER);
satok683e2382011-07-12 08:28:52 +0900650 mImeSwitchPendingIntent = PendingIntent.getBroadcast(mContext, 0, intent, 0);
satokb858c732011-07-22 19:54:34 +0900651
652 mShowOngoingImeSwitcherForPhones = false;
satok7cfc0ed2011-06-20 21:29:36 +0900653
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900654 final IntentFilter broadcastFilter = new IntentFilter();
655 broadcastFilter.addAction(Intent.ACTION_SCREEN_ON);
656 broadcastFilter.addAction(Intent.ACTION_SCREEN_OFF);
657 broadcastFilter.addAction(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
Amith Yamasani734983f2014-03-04 16:48:05 -0800658 broadcastFilter.addAction(Intent.ACTION_USER_ADDED);
659 broadcastFilter.addAction(Intent.ACTION_USER_REMOVED);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900660 mContext.registerReceiver(new ImmsBroadcastReceiver(), broadcastFilter);
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800661
satok7cfc0ed2011-06-20 21:29:36 +0900662 mNotificationShown = false;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900663 int userId = 0;
664 try {
665 ActivityManagerNative.getDefault().registerUserSwitchObserver(
666 new IUserSwitchObserver.Stub() {
667 @Override
668 public void onUserSwitching(int newUserId, IRemoteCallback reply) {
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +0900669 synchronized(mMethodMap) {
670 switchUserLocked(newUserId);
671 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900672 if (reply != null) {
673 try {
674 reply.sendResult(null);
675 } catch (RemoteException e) {
676 }
677 }
678 }
679
680 @Override
681 public void onUserSwitchComplete(int newUserId) throws RemoteException {
682 }
683 });
684 userId = ActivityManagerNative.getDefault().getCurrentUser().id;
685 } catch (RemoteException e) {
686 Slog.w(TAG, "Couldn't get current user ID; guessing it's 0", e);
687 }
satok81f8b7c2012-12-04 20:42:56 +0900688 mMyPackageMonitor.register(mContext, null, UserHandle.ALL, true);
satok913a8922010-08-26 21:53:41 +0900689
satokd87c2592010-09-29 11:52:06 +0900690 // mSettings should be created before buildInputMethodListLocked
satokdf31ae62011-01-15 06:19:44 +0900691 mSettings = new InputMethodSettings(
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900692 mRes, context.getContentResolver(), mMethodMap, mMethodList, userId);
Kenny Guy2a764942014-04-02 13:29:20 +0100693 updateCurrentProfileIds();
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +0900694 mFileManager = new InputMethodFileManager(mMethodMap, userId);
Satoshi Kataokad787f692013-10-26 04:44:21 +0900695 mSwitchingController = new InputMethodSubtypeSwitchingController(mSettings);
696 mSwitchingController.resetCircularListLocked(context);
satok0a1bcf42012-05-16 19:26:31 +0900697
698 // Just checking if defaultImiId is empty or not
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900699 final String defaultImiId = mSettings.getSelectedInputMethod();
Satoshi Kataokaf1367b72013-01-25 17:20:12 +0900700 if (DEBUG) {
701 Slog.d(TAG, "Initial default ime = " + defaultImiId);
702 }
satok0a1bcf42012-05-16 19:26:31 +0900703 mImeSelectedOnBoot = !TextUtils.isEmpty(defaultImiId);
704
Satoshi Kataokaf1367b72013-01-25 17:20:12 +0900705 buildInputMethodListLocked(mMethodList, mMethodMap,
706 !mImeSelectedOnBoot /* resetDefaultEnabledIme */);
satokd87c2592010-09-29 11:52:06 +0900707 mSettings.enableAllIMEsIfThereIsNoEnabledIME();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800708
satok0a1bcf42012-05-16 19:26:31 +0900709 if (!mImeSelectedOnBoot) {
710 Slog.w(TAG, "No IME selected. Choose the most applicable IME.");
satok5b927c432012-05-01 20:09:34 +0900711 resetDefaultImeLocked(context);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800712 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800713
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800714 mSettingsObserver = new SettingsObserver(mHandler);
Dianne Hackbornfd7aded2013-01-22 17:10:23 -0800715 updateFromSettingsLocked(true);
satok5b927c432012-05-01 20:09:34 +0900716
717 // IMMS wants to receive Intent.ACTION_LOCALE_CHANGED in order to update the current IME
718 // according to the new system locale.
719 final IntentFilter filter = new IntentFilter();
720 filter.addAction(Intent.ACTION_LOCALE_CHANGED);
721 mContext.registerReceiver(
722 new BroadcastReceiver() {
723 @Override
724 public void onReceive(Context context, Intent intent) {
725 synchronized(mMethodMap) {
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +0900726 resetStateIfCurrentLocaleChangedLocked();
satok5b927c432012-05-01 20:09:34 +0900727 }
728 }
729 }, filter);
730 }
731
satok5b927c432012-05-01 20:09:34 +0900732 private void resetDefaultImeLocked(Context context) {
733 // Do not reset the default (current) IME when it is a 3rd-party IME
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +0900734 if (mCurMethodId != null
735 && !InputMethodUtils.isSystemIme(mMethodMap.get(mCurMethodId))) {
satok5b927c432012-05-01 20:09:34 +0900736 return;
737 }
738
739 InputMethodInfo defIm = null;
740 for (InputMethodInfo imi : mMethodList) {
741 if (defIm == null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +0900742 if (InputMethodUtils.isValidSystemDefaultIme(
743 mSystemReady, imi, context)) {
satok5b927c432012-05-01 20:09:34 +0900744 defIm = imi;
745 Slog.i(TAG, "Selected default: " + imi.getId());
746 }
747 }
748 }
749 if (defIm == null && mMethodList.size() > 0) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +0900750 defIm = InputMethodUtils.getMostApplicableDefaultIME(
751 mSettings.getEnabledInputMethodListLocked());
satok5b927c432012-05-01 20:09:34 +0900752 Slog.i(TAG, "No default found, using " + defIm.getId());
753 }
754 if (defIm != null) {
755 setSelectedInputMethodAndSubtypeLocked(defIm, NOT_A_SUBTYPE_ID, false);
756 }
757 }
758
Satoshi Kataoka7f7535f2013-02-18 12:54:16 +0900759 private void resetAllInternalStateLocked(final boolean updateOnlyWhenLocaleChanged,
760 final boolean resetDefaultEnabledIme) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900761 if (!mSystemReady) {
762 // not system ready
763 return;
764 }
765 final Locale newLocale = mRes.getConfiguration().locale;
766 if (!updateOnlyWhenLocaleChanged
767 || (newLocale != null && !newLocale.equals(mLastSystemLocale))) {
768 if (!updateOnlyWhenLocaleChanged) {
769 hideCurrentInputLocked(0, null);
770 mCurMethodId = null;
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -0700771 unbindCurrentMethodLocked(true, false);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900772 }
773 if (DEBUG) {
774 Slog.i(TAG, "Locale has been changed to " + newLocale);
775 }
Satoshi Kataokad787f692013-10-26 04:44:21 +0900776 // CircularList should be reset when the locale is changed.
777 mSwitchingController.resetCircularListLocked(mContext);
Satoshi Kataoka7f7535f2013-02-18 12:54:16 +0900778 buildInputMethodListLocked(mMethodList, mMethodMap, resetDefaultEnabledIme);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900779 if (!updateOnlyWhenLocaleChanged) {
780 final String selectedImiId = mSettings.getSelectedInputMethod();
781 if (TextUtils.isEmpty(selectedImiId)) {
782 // This is the first time of the user switch and
783 // set the current ime to the proper one.
784 resetDefaultImeLocked(mContext);
785 }
Satoshi Kataokad08a9232012-09-28 15:59:58 +0900786 } else {
787 // If the locale is changed, needs to reset the default ime
788 resetDefaultImeLocked(mContext);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900789 }
Dianne Hackbornfd7aded2013-01-22 17:10:23 -0800790 updateFromSettingsLocked(true);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900791 mLastSystemLocale = newLocale;
792 if (!updateOnlyWhenLocaleChanged) {
793 try {
794 startInputInnerLocked();
795 } catch (RuntimeException e) {
796 Slog.w(TAG, "Unexpected exception", e);
797 }
798 }
799 }
800 }
801
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +0900802 private void resetStateIfCurrentLocaleChangedLocked() {
Satoshi Kataoka7f7535f2013-02-18 12:54:16 +0900803 resetAllInternalStateLocked(true /* updateOnlyWhenLocaleChanged */,
804 true /* resetDefaultImeLocked */);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900805 }
806
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +0900807 private void switchUserLocked(int newUserId) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900808 mSettings.setCurrentUserId(newUserId);
Kenny Guy2a764942014-04-02 13:29:20 +0100809 updateCurrentProfileIds();
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +0900810 // InputMethodFileManager should be reset when the user is changed
811 mFileManager = new InputMethodFileManager(mMethodMap, newUserId);
Satoshi Kataoka7f7535f2013-02-18 12:54:16 +0900812 final String defaultImiId = mSettings.getSelectedInputMethod();
Satoshi Kataoka7c4a2a12013-02-25 15:25:43 +0900813 // For secondary users, the list of enabled IMEs may not have been updated since the
814 // callbacks to PackageMonitor are ignored for the secondary user. Here, defaultImiId may
815 // not be empty even if the IME has been uninstalled by the primary user.
816 // Even in such cases, IMMS works fine because it will find the most applicable
817 // IME for that user.
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +0900818 final boolean initialUserSwitch = TextUtils.isEmpty(defaultImiId);
Satoshi Kataoka7f7535f2013-02-18 12:54:16 +0900819 if (DEBUG) {
820 Slog.d(TAG, "Switch user: " + newUserId + " current ime = " + defaultImiId);
821 }
822 resetAllInternalStateLocked(false /* updateOnlyWhenLocaleChanged */,
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +0900823 initialUserSwitch /* needsToResetDefaultIme */);
824 if (initialUserSwitch) {
825 InputMethodUtils.setNonSelectedSystemImesDisabledUntilUsed(mContext.getPackageManager(),
826 mSettings.getEnabledInputMethodListLocked());
827 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900828 }
829
Kenny Guy2a764942014-04-02 13:29:20 +0100830 void updateCurrentProfileIds() {
831 List<UserInfo> profiles =
832 UserManager.get(mContext).getProfiles(mSettings.getCurrentUserId());
833 int[] currentProfileIds = new int[profiles.size()]; // profiles will not be null
834 for (int i = 0; i < currentProfileIds.length; i++) {
835 currentProfileIds[i] = profiles.get(i).id;
Amith Yamasani734983f2014-03-04 16:48:05 -0800836 }
Kenny Guy2a764942014-04-02 13:29:20 +0100837 mSettings.setCurrentProfileIds(currentProfileIds);
Amith Yamasani734983f2014-03-04 16:48:05 -0800838 }
839
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800840 @Override
841 public boolean onTransact(int code, Parcel data, Parcel reply, int flags)
842 throws RemoteException {
843 try {
844 return super.onTransact(code, data, reply, flags);
845 } catch (RuntimeException e) {
846 // The input method manager only throws security exceptions, so let's
847 // log all others.
848 if (!(e instanceof SecurityException)) {
Dianne Hackborn164371f2013-10-01 19:10:13 -0700849 Slog.wtf(TAG, "Input Method Manager Crash", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800850 }
851 throw e;
852 }
853 }
854
Svetoslav Ganova0027152013-06-25 14:59:53 -0700855 public void systemRunning(StatusBarManagerService statusBar) {
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700856 synchronized (mMethodMap) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900857 if (DEBUG) {
858 Slog.d(TAG, "--- systemReady");
859 }
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700860 if (!mSystemReady) {
861 mSystemReady = true;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900862 mKeyguardManager =
863 (KeyguardManager) mContext.getSystemService(Context.KEYGUARD_SERVICE);
Dianne Hackborn661cd522011-08-22 00:26:20 -0700864 mNotificationManager = (NotificationManager)
865 mContext.getSystemService(Context.NOTIFICATION_SERVICE);
866 mStatusBar = statusBar;
867 statusBar.setIconVisibility("ime", false);
868 updateImeWindowStatusLocked();
satokb858c732011-07-22 19:54:34 +0900869 mShowOngoingImeSwitcherForPhones = mRes.getBoolean(
870 com.android.internal.R.bool.show_ongoing_ime_switcher);
satok01038492012-04-09 21:08:27 +0900871 if (mShowOngoingImeSwitcherForPhones) {
872 mWindowManagerService.setOnHardKeyboardStatusChangeListener(
873 mHardKeyboardListener);
874 }
Satoshi Kataokaf1367b72013-01-25 17:20:12 +0900875 buildInputMethodListLocked(mMethodList, mMethodMap,
876 !mImeSelectedOnBoot /* resetDefaultEnabledIme */);
satok0a1bcf42012-05-16 19:26:31 +0900877 if (!mImeSelectedOnBoot) {
878 Slog.w(TAG, "Reset the default IME as \"Resource\" is ready here.");
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +0900879 resetStateIfCurrentLocaleChangedLocked();
880 InputMethodUtils.setNonSelectedSystemImesDisabledUntilUsed(
881 mContext.getPackageManager(),
882 mSettings.getEnabledInputMethodListLocked());
satok0a1bcf42012-05-16 19:26:31 +0900883 }
884 mLastSystemLocale = mRes.getConfiguration().locale;
Dianne Hackborncc278702009-09-02 23:07:23 -0700885 try {
886 startInputInnerLocked();
887 } catch (RuntimeException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800888 Slog.w(TAG, "Unexpected exception", e);
Dianne Hackborncc278702009-09-02 23:07:23 -0700889 }
Dianne Hackborna34f1ad2009-09-02 13:26:28 -0700890 }
891 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800892 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -0800893
satok15452a42011-10-28 17:58:28 +0900894 private void setImeWindowVisibilityStatusHiddenLocked() {
895 mImeWindowVis = 0;
896 updateImeWindowStatusLocked();
897 }
898
satok3afd6c02011-11-18 08:38:19 +0900899 private void refreshImeWindowVisibilityLocked() {
900 final Configuration conf = mRes.getConfiguration();
901 final boolean haveHardKeyboard = conf.keyboard
902 != Configuration.KEYBOARD_NOKEYS;
903 final boolean hardKeyShown = haveHardKeyboard
904 && conf.hardKeyboardHidden
905 != Configuration.HARDKEYBOARDHIDDEN_YES;
John Spurlocke0980502013-10-25 11:59:29 -0400906
907 final boolean isScreenLocked = isKeyguardLocked();
908 final boolean inputActive = !isScreenLocked && (mInputShown || hardKeyShown);
John Spurlock36439b42013-10-23 16:36:47 -0400909 // We assume the softkeyboard is shown when the input is active as long as the
910 // hard keyboard is not shown.
911 final boolean inputVisible = inputActive && !hardKeyShown;
912 mImeWindowVis = (inputActive ? InputMethodService.IME_ACTIVE : 0)
913 | (inputVisible ? InputMethodService.IME_VISIBLE : 0);
satok3afd6c02011-11-18 08:38:19 +0900914 updateImeWindowStatusLocked();
915 }
916
satok15452a42011-10-28 17:58:28 +0900917 private void updateImeWindowStatusLocked() {
satokdbf29502011-08-25 15:28:23 +0900918 setImeWindowStatus(mCurToken, mImeWindowVis, mBackDisposition);
Dianne Hackborn661cd522011-08-22 00:26:20 -0700919 }
920
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900921 // ---------------------------------------------------------------------------------------
922 // Check whether or not this is a valid IPC. Assumes an IPC is valid when either
923 // 1) it comes from the system process
924 // 2) the calling process' user id is identical to the current user id IMMS thinks.
925 private boolean calledFromValidUser() {
926 final int uid = Binder.getCallingUid();
927 final int userId = UserHandle.getUserId(uid);
928 if (DEBUG) {
929 Slog.d(TAG, "--- calledFromForegroundUserOrSystemProcess ? "
930 + "calling uid = " + uid + " system uid = " + Process.SYSTEM_UID
931 + " calling userId = " + userId + ", foreground user id = "
Satoshi Kataoka87c29142013-07-31 23:11:54 +0900932 + mSettings.getCurrentUserId() + ", calling pid = " + Binder.getCallingPid()
933 + InputMethodUtils.getApiCallStack());
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900934 }
Kenny Guy2a764942014-04-02 13:29:20 +0100935 if (uid == Process.SYSTEM_UID || mSettings.isCurrentProfile(userId)) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900936 return true;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900937 }
Satoshi Kataoka135e5fb2012-09-28 18:25:06 +0900938
939 // Caveat: A process which has INTERACT_ACROSS_USERS_FULL gets results for the
940 // foreground user, not for the user of that process. Accordingly InputMethodManagerService
941 // must not manage background users' states in any functions.
942 // Note that privacy-sensitive IPCs, such as setInputMethod, are still securely guarded
943 // by a token.
944 if (mContext.checkCallingOrSelfPermission(
945 android.Manifest.permission.INTERACT_ACROSS_USERS_FULL)
946 == PackageManager.PERMISSION_GRANTED) {
947 if (DEBUG) {
948 Slog.d(TAG, "--- Access granted because the calling process has "
949 + "the INTERACT_ACROSS_USERS_FULL permission");
950 }
951 return true;
952 }
Satoshi Kataoka0766eb02013-07-31 18:30:13 +0900953 Slog.w(TAG, "--- IPC called from background users. Ignore. \n"
954 + InputMethodUtils.getStackTrace());
Satoshi Kataoka135e5fb2012-09-28 18:25:06 +0900955 return false;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900956 }
957
958 private boolean bindCurrentInputMethodService(
959 Intent service, ServiceConnection conn, int flags) {
960 if (service == null || conn == null) {
961 Slog.e(TAG, "--- bind failed: service = " + service + ", conn = " + conn);
962 return false;
963 }
Amith Yamasani27b89e62013-01-16 12:30:11 -0800964 return mContext.bindServiceAsUser(service, conn, flags,
965 new UserHandle(mSettings.getCurrentUserId()));
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900966 }
967
satoke7c6998e2011-06-03 17:57:59 +0900968 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800969 public List<InputMethodInfo> getInputMethodList() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900970 // TODO: Make this work even for non-current users?
971 if (!calledFromValidUser()) {
972 return Collections.emptyList();
973 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800974 synchronized (mMethodMap) {
975 return new ArrayList<InputMethodInfo>(mMethodList);
976 }
977 }
978
satoke7c6998e2011-06-03 17:57:59 +0900979 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800980 public List<InputMethodInfo> getEnabledInputMethodList() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900981 // TODO: Make this work even for non-current users?
982 if (!calledFromValidUser()) {
983 return Collections.emptyList();
984 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800985 synchronized (mMethodMap) {
satokd87c2592010-09-29 11:52:06 +0900986 return mSettings.getEnabledInputMethodListLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800987 }
988 }
989
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +0900990 /**
Satoshi Kataokab3c21ac2013-08-07 15:43:29 +0900991 * @param imiId if null, returns enabled subtypes for the current imi
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +0900992 * @return enabled subtypes of the specified imi
993 */
satoke7c6998e2011-06-03 17:57:59 +0900994 @Override
Satoshi Kataokab3c21ac2013-08-07 15:43:29 +0900995 public List<InputMethodSubtype> getEnabledInputMethodSubtypeList(String imiId,
satok16331c82010-12-20 23:48:46 +0900996 boolean allowsImplicitlySelectedSubtypes) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +0900997 // TODO: Make this work even for non-current users?
998 if (!calledFromValidUser()) {
Satoshi Kataokab3c21ac2013-08-07 15:43:29 +0900999 return Collections.<InputMethodSubtype>emptyList();
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001000 }
satok67ddf9c2010-11-17 09:45:54 +09001001 synchronized (mMethodMap) {
Satoshi Kataokab3c21ac2013-08-07 15:43:29 +09001002 final InputMethodInfo imi;
1003 if (imiId == null && mCurMethodId != null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001004 imi = mMethodMap.get(mCurMethodId);
Satoshi Kataokab3c21ac2013-08-07 15:43:29 +09001005 } else {
1006 imi = mMethodMap.get(imiId);
1007 }
1008 if (imi == null) {
1009 return Collections.<InputMethodSubtype>emptyList();
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001010 }
1011 return mSettings.getEnabledInputMethodSubtypeListLocked(
1012 mContext, imi, allowsImplicitlySelectedSubtypes);
satok67ddf9c2010-11-17 09:45:54 +09001013 }
1014 }
1015
satoke7c6998e2011-06-03 17:57:59 +09001016 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001017 public void addClient(IInputMethodClient client,
1018 IInputContext inputContext, int uid, int pid) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001019 if (!calledFromValidUser()) {
1020 return;
1021 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001022 synchronized (mMethodMap) {
1023 mClients.put(client.asBinder(), new ClientState(client,
1024 inputContext, uid, pid));
1025 }
1026 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001027
satoke7c6998e2011-06-03 17:57:59 +09001028 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001029 public void removeClient(IInputMethodClient client) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001030 if (!calledFromValidUser()) {
1031 return;
1032 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001033 synchronized (mMethodMap) {
Jeff Brownc28867a2013-03-26 15:42:39 -07001034 ClientState cs = mClients.remove(client.asBinder());
1035 if (cs != null) {
1036 clearClientSessionLocked(cs);
1037 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001038 }
1039 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001040
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001041 void executeOrSendMessage(IInterface target, Message msg) {
1042 if (target.asBinder() instanceof Binder) {
1043 mCaller.sendMessage(msg);
1044 } else {
1045 handleMessage(msg);
1046 msg.recycle();
1047 }
1048 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001049
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001050 void unbindCurrentClientLocked() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001051 if (mCurClient != null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001052 if (DEBUG) Slog.v(TAG, "unbindCurrentInputLocked: client = "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001053 + mCurClient.client.asBinder());
1054 if (mBoundToMethod) {
1055 mBoundToMethod = false;
1056 if (mCurMethod != null) {
1057 executeOrSendMessage(mCurMethod, mCaller.obtainMessageO(
1058 MSG_UNBIND_INPUT, mCurMethod));
1059 }
1060 }
Dianne Hackborna6e41342012-05-22 16:30:34 -07001061
1062 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
1063 MSG_SET_ACTIVE, 0, mCurClient));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001064 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
1065 MSG_UNBIND_METHOD, mCurSeq, mCurClient.client));
1066 mCurClient.sessionRequested = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001067 mCurClient = null;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001068
The Android Open Source Project10592532009-03-18 17:39:46 -07001069 hideInputMethodMenuLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001070 }
1071 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001072
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001073 private int getImeShowFlags() {
1074 int flags = 0;
1075 if (mShowForced) {
1076 flags |= InputMethod.SHOW_FORCED
1077 | InputMethod.SHOW_EXPLICIT;
1078 } else if (mShowExplicitlyRequested) {
1079 flags |= InputMethod.SHOW_EXPLICIT;
1080 }
1081 return flags;
1082 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001083
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001084 private int getAppShowFlags() {
1085 int flags = 0;
1086 if (mShowForced) {
1087 flags |= InputMethodManager.SHOW_FORCED;
1088 } else if (!mShowExplicitlyRequested) {
1089 flags |= InputMethodManager.SHOW_IMPLICIT;
1090 }
1091 return flags;
1092 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001093
Dianne Hackborn7663d802012-02-24 13:08:49 -08001094 InputBindResult attachNewInputLocked(boolean initial) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001095 if (!mBoundToMethod) {
1096 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
1097 MSG_BIND_INPUT, mCurMethod, mCurClient.binding));
1098 mBoundToMethod = true;
1099 }
1100 final SessionState session = mCurClient.curSession;
1101 if (initial) {
1102 executeOrSendMessage(session.method, mCaller.obtainMessageOOO(
1103 MSG_START_INPUT, session, mCurInputContext, mCurAttribute));
1104 } else {
1105 executeOrSendMessage(session.method, mCaller.obtainMessageOOO(
1106 MSG_RESTART_INPUT, session, mCurInputContext, mCurAttribute));
1107 }
1108 if (mShowRequested) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001109 if (DEBUG) Slog.v(TAG, "Attach new input asks to show input");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001110 showCurrentInputLocked(getAppShowFlags(), null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001111 }
Jeff Brown1951ce82013-04-04 22:45:12 -07001112 return new InputBindResult(session.session,
1113 session.channel != null ? session.channel.dup() : null, mCurId, mCurSeq);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001114 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001115
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001116 InputBindResult startInputLocked(IInputMethodClient client,
Dianne Hackborn7663d802012-02-24 13:08:49 -08001117 IInputContext inputContext, EditorInfo attribute, int controlFlags) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001118 // If no method is currently selected, do nothing.
1119 if (mCurMethodId == null) {
1120 return mNoBinding;
1121 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001122
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001123 ClientState cs = mClients.get(client.asBinder());
1124 if (cs == null) {
1125 throw new IllegalArgumentException("unknown client "
1126 + client.asBinder());
1127 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001128
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001129 try {
1130 if (!mIWindowManager.inputMethodClientHasFocus(cs.client)) {
1131 // Check with the window manager to make sure this client actually
1132 // has a window with focus. If not, reject. This is thread safe
1133 // because if the focus changes some time before or after, the
1134 // next client receiving focus that has any interest in input will
1135 // be calling through here after that change happens.
Joe Onorato8a9b2202010-02-26 18:56:32 -08001136 Slog.w(TAG, "Starting input on non-focused client " + cs.client
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001137 + " (uid=" + cs.uid + " pid=" + cs.pid + ")");
1138 return null;
1139 }
1140 } catch (RemoteException e) {
1141 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001142
Dianne Hackborn7663d802012-02-24 13:08:49 -08001143 return startInputUncheckedLocked(cs, inputContext, attribute, controlFlags);
1144 }
1145
1146 InputBindResult startInputUncheckedLocked(ClientState cs,
1147 IInputContext inputContext, EditorInfo attribute, int controlFlags) {
1148 // If no method is currently selected, do nothing.
1149 if (mCurMethodId == null) {
1150 return mNoBinding;
1151 }
1152
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001153 if (mCurClient != cs) {
John Spurlocke0980502013-10-25 11:59:29 -04001154 // Was the keyguard locked when switching over to the new client?
1155 mCurClientInKeyguard = isKeyguardLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001156 // If the client is changing, we need to switch over to the new
1157 // one.
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001158 unbindCurrentClientLocked();
Joe Onorato8a9b2202010-02-26 18:56:32 -08001159 if (DEBUG) Slog.v(TAG, "switching to client: client = "
John Spurlocke0980502013-10-25 11:59:29 -04001160 + cs.client.asBinder() + " keyguard=" + mCurClientInKeyguard);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001161
1162 // If the screen is on, inform the new client it is active
1163 if (mScreenOn) {
Dianne Hackborna6e41342012-05-22 16:30:34 -07001164 executeOrSendMessage(cs.client, mCaller.obtainMessageIO(
1165 MSG_SET_ACTIVE, mScreenOn ? 1 : 0, cs));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001166 }
1167 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001168
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001169 // Bump up the sequence for this client and attach it.
1170 mCurSeq++;
1171 if (mCurSeq <= 0) mCurSeq = 1;
1172 mCurClient = cs;
1173 mCurInputContext = inputContext;
1174 mCurAttribute = attribute;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001175
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001176 // Check if the input method is changing.
1177 if (mCurId != null && mCurId.equals(mCurMethodId)) {
1178 if (cs.curSession != null) {
1179 // Fast case: if we are already connected to the input method,
1180 // then just return it.
Dianne Hackborn7663d802012-02-24 13:08:49 -08001181 return attachNewInputLocked(
1182 (controlFlags&InputMethodManager.CONTROL_START_INITIAL) != 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001183 }
1184 if (mHaveConnection) {
1185 if (mCurMethod != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001186 // Return to client, and we will get back with it when
1187 // we have had a session made for it.
Jeff Brownc28867a2013-03-26 15:42:39 -07001188 requestClientSessionLocked(cs);
1189 return new InputBindResult(null, null, mCurId, mCurSeq);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001190 } else if (SystemClock.uptimeMillis()
1191 < (mLastBindTime+TIME_TO_RECONNECT)) {
1192 // In this case we have connected to the service, but
1193 // don't yet have its interface. If it hasn't been too
1194 // long since we did the connection, we'll return to
1195 // the client and wait to get the service interface so
1196 // we can report back. If it has been too long, we want
1197 // to fall through so we can try a disconnect/reconnect
1198 // to see if we can get back in touch with the service.
Jeff Brownc28867a2013-03-26 15:42:39 -07001199 return new InputBindResult(null, null, mCurId, mCurSeq);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001200 } else {
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001201 EventLog.writeEvent(EventLogTags.IMF_FORCE_RECONNECT_IME,
1202 mCurMethodId, SystemClock.uptimeMillis()-mLastBindTime, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001203 }
1204 }
1205 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001206
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001207 return startInputInnerLocked();
1208 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001209
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001210 InputBindResult startInputInnerLocked() {
1211 if (mCurMethodId == null) {
1212 return mNoBinding;
1213 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001214
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001215 if (!mSystemReady) {
1216 // If the system is not yet ready, we shouldn't be running third
1217 // party code.
Jeff Brownc28867a2013-03-26 15:42:39 -07001218 return new InputBindResult(null, null, mCurMethodId, mCurSeq);
Dianne Hackborna34f1ad2009-09-02 13:26:28 -07001219 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001220
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001221 InputMethodInfo info = mMethodMap.get(mCurMethodId);
1222 if (info == null) {
1223 throw new IllegalArgumentException("Unknown id: " + mCurMethodId);
1224 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001225
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07001226 unbindCurrentMethodLocked(false, true);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001227
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001228 mCurIntent = new Intent(InputMethod.SERVICE_INTERFACE);
1229 mCurIntent.setComponent(info.getComponent());
Dianne Hackborndd9b82c2009-09-03 00:18:47 -07001230 mCurIntent.putExtra(Intent.EXTRA_CLIENT_LABEL,
1231 com.android.internal.R.string.input_method_binding_label);
1232 mCurIntent.putExtra(Intent.EXTRA_CLIENT_INTENT, PendingIntent.getActivity(
1233 mContext, 0, new Intent(Settings.ACTION_INPUT_METHOD_SETTINGS), 0));
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001234 if (bindCurrentInputMethodService(mCurIntent, this, Context.BIND_AUTO_CREATE
Dianne Hackbornf0f94d12014-03-17 16:04:21 -07001235 | Context.BIND_NOT_VISIBLE | Context.BIND_NOT_FOREGROUND
1236 | Context.BIND_SHOWING_UI)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001237 mLastBindTime = SystemClock.uptimeMillis();
1238 mHaveConnection = true;
1239 mCurId = info.getId();
1240 mCurToken = new Binder();
1241 try {
Craig Mautnerca0ac712013-03-14 09:43:02 -07001242 if (true || DEBUG) Slog.v(TAG, "Adding window token: " + mCurToken);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001243 mIWindowManager.addWindowToken(mCurToken,
1244 WindowManager.LayoutParams.TYPE_INPUT_METHOD);
1245 } catch (RemoteException e) {
1246 }
Jeff Brownc28867a2013-03-26 15:42:39 -07001247 return new InputBindResult(null, null, mCurId, mCurSeq);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001248 } else {
1249 mCurIntent = null;
Joe Onorato8a9b2202010-02-26 18:56:32 -08001250 Slog.w(TAG, "Failure connecting to input method service: "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001251 + mCurIntent);
1252 }
1253 return null;
1254 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001255
satoke7c6998e2011-06-03 17:57:59 +09001256 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001257 public InputBindResult startInput(IInputMethodClient client,
Dianne Hackborn7663d802012-02-24 13:08:49 -08001258 IInputContext inputContext, EditorInfo attribute, int controlFlags) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001259 if (!calledFromValidUser()) {
1260 return null;
1261 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001262 synchronized (mMethodMap) {
1263 final long ident = Binder.clearCallingIdentity();
1264 try {
Dianne Hackborn7663d802012-02-24 13:08:49 -08001265 return startInputLocked(client, inputContext, attribute, controlFlags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001266 } finally {
1267 Binder.restoreCallingIdentity(ident);
1268 }
1269 }
1270 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001271
satoke7c6998e2011-06-03 17:57:59 +09001272 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001273 public void finishInput(IInputMethodClient client) {
1274 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001275
satoke7c6998e2011-06-03 17:57:59 +09001276 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001277 public void onServiceConnected(ComponentName name, IBinder service) {
1278 synchronized (mMethodMap) {
1279 if (mCurIntent != null && name.equals(mCurIntent.getComponent())) {
1280 mCurMethod = IInputMethod.Stub.asInterface(service);
Dianne Hackborncc278702009-09-02 23:07:23 -07001281 if (mCurToken == null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001282 Slog.w(TAG, "Service connected without a token!");
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07001283 unbindCurrentMethodLocked(false, false);
Dianne Hackborncc278702009-09-02 23:07:23 -07001284 return;
1285 }
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07001286 if (DEBUG) Slog.v(TAG, "Initiating attach with token: " + mCurToken);
Dianne Hackborncc278702009-09-02 23:07:23 -07001287 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
1288 MSG_ATTACH_TOKEN, mCurMethod, mCurToken));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001289 if (mCurClient != null) {
Jeff Brownc28867a2013-03-26 15:42:39 -07001290 clearClientSessionLocked(mCurClient);
1291 requestClientSessionLocked(mCurClient);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001292 }
1293 }
1294 }
1295 }
1296
Jeff Brownc28867a2013-03-26 15:42:39 -07001297 void onSessionCreated(IInputMethod method, IInputMethodSession session,
1298 InputChannel channel) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001299 synchronized (mMethodMap) {
1300 if (mCurMethod != null && method != null
1301 && mCurMethod.asBinder() == method.asBinder()) {
1302 if (mCurClient != null) {
Jeff Brownc28867a2013-03-26 15:42:39 -07001303 clearClientSessionLocked(mCurClient);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001304 mCurClient.curSession = new SessionState(mCurClient,
Jeff Brownc28867a2013-03-26 15:42:39 -07001305 method, session, channel);
Dianne Hackborn7663d802012-02-24 13:08:49 -08001306 InputBindResult res = attachNewInputLocked(true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001307 if (res.method != null) {
1308 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageOO(
1309 MSG_BIND_METHOD, mCurClient.client, res));
1310 }
Jeff Brownc28867a2013-03-26 15:42:39 -07001311 return;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001312 }
1313 }
1314 }
Jeff Brownc28867a2013-03-26 15:42:39 -07001315
1316 // Session abandoned. Close its associated input channel.
1317 channel.dispose();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001318 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001319
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07001320 void unbindCurrentMethodLocked(boolean reportToClient, boolean savePosition) {
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07001321 if (mVisibleBound) {
1322 mContext.unbindService(mVisibleConnection);
1323 mVisibleBound = false;
1324 }
1325
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001326 if (mHaveConnection) {
1327 mContext.unbindService(this);
1328 mHaveConnection = false;
1329 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001330
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001331 if (mCurToken != null) {
1332 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001333 if (DEBUG) Slog.v(TAG, "Removing window token: " + mCurToken);
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07001334 if ((mImeWindowVis & InputMethodService.IME_ACTIVE) != 0 && savePosition) {
satoke0a99412012-05-10 02:22:58 +09001335 // The current IME is shown. Hence an IME switch (transition) is happening.
1336 mWindowManagerService.saveLastInputMethodWindowForTransition();
1337 }
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001338 mIWindowManager.removeWindowToken(mCurToken);
1339 } catch (RemoteException e) {
1340 }
1341 mCurToken = null;
1342 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001343
The Android Open Source Project10592532009-03-18 17:39:46 -07001344 mCurId = null;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001345 clearCurMethodLocked();
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001346
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001347 if (reportToClient && mCurClient != null) {
1348 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
1349 MSG_UNBIND_METHOD, mCurSeq, mCurClient.client));
1350 }
1351 }
Jeff Brownc28867a2013-03-26 15:42:39 -07001352
1353 void requestClientSessionLocked(ClientState cs) {
1354 if (!cs.sessionRequested) {
1355 if (DEBUG) Slog.v(TAG, "Creating new session for client " + cs);
1356 InputChannel[] channels = InputChannel.openInputChannelPair(cs.toString());
1357 cs.sessionRequested = true;
1358 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOOO(
1359 MSG_CREATE_SESSION, mCurMethod, channels[1],
1360 new MethodCallback(this, mCurMethod, channels[0])));
1361 }
1362 }
1363
1364 void clearClientSessionLocked(ClientState cs) {
1365 finishSessionLocked(cs.curSession);
1366 cs.curSession = null;
1367 cs.sessionRequested = false;
1368 }
1369
1370 private void finishSessionLocked(SessionState sessionState) {
1371 if (sessionState != null) {
1372 if (sessionState.session != null) {
1373 try {
1374 sessionState.session.finishSession();
1375 } catch (RemoteException e) {
1376 Slog.w(TAG, "Session failed to close due to remote exception", e);
1377 setImeWindowVisibilityStatusHiddenLocked();
1378 }
1379 sessionState.session = null;
1380 }
1381 if (sessionState.channel != null) {
1382 sessionState.channel.dispose();
1383 sessionState.channel = null;
Devin Taylor0c33ed22010-02-23 13:26:46 -06001384 }
1385 }
1386 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001387
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001388 void clearCurMethodLocked() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001389 if (mCurMethod != null) {
1390 for (ClientState cs : mClients.values()) {
Jeff Brownc28867a2013-03-26 15:42:39 -07001391 clearClientSessionLocked(cs);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001392 }
Devin Taylor0c33ed22010-02-23 13:26:46 -06001393
Jeff Brownc28867a2013-03-26 15:42:39 -07001394 finishSessionLocked(mEnabledSession);
Devin Taylor0c33ed22010-02-23 13:26:46 -06001395 mEnabledSession = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001396 mCurMethod = null;
1397 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07001398 if (mStatusBar != null) {
1399 mStatusBar.setIconVisibility("ime", false);
1400 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001401 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001402
satoke7c6998e2011-06-03 17:57:59 +09001403 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001404 public void onServiceDisconnected(ComponentName name) {
1405 synchronized (mMethodMap) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001406 if (DEBUG) Slog.v(TAG, "Service disconnected: " + name
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001407 + " mCurIntent=" + mCurIntent);
1408 if (mCurMethod != null && mCurIntent != null
1409 && name.equals(mCurIntent.getComponent())) {
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001410 clearCurMethodLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001411 // We consider this to be a new bind attempt, since the system
1412 // should now try to restart the service for us.
1413 mLastBindTime = SystemClock.uptimeMillis();
1414 mShowRequested = mInputShown;
1415 mInputShown = false;
1416 if (mCurClient != null) {
1417 executeOrSendMessage(mCurClient.client, mCaller.obtainMessageIO(
1418 MSG_UNBIND_METHOD, mCurSeq, mCurClient.client));
1419 }
1420 }
1421 }
1422 }
1423
satokf9f01002011-05-19 21:31:50 +09001424 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001425 public void updateStatusIcon(IBinder token, String packageName, int iconId) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001426 int uid = Binder.getCallingUid();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001427 long ident = Binder.clearCallingIdentity();
1428 try {
1429 if (token == null || mCurToken != token) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001430 Slog.w(TAG, "Ignoring setInputMethod of uid " + uid + " token: " + token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001431 return;
1432 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001433
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001434 synchronized (mMethodMap) {
1435 if (iconId == 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001436 if (DEBUG) Slog.d(TAG, "hide the small icon for the input method");
Dianne Hackborn661cd522011-08-22 00:26:20 -07001437 if (mStatusBar != null) {
1438 mStatusBar.setIconVisibility("ime", false);
1439 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001440 } else if (packageName != null) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001441 if (DEBUG) Slog.d(TAG, "show a small icon for the input method");
Svetoslav Ganov6179ea32011-06-28 01:12:41 -07001442 CharSequence contentDescription = null;
1443 try {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001444 // Use PackageManager to load label
1445 final PackageManager packageManager = mContext.getPackageManager();
Svetoslav Ganov6179ea32011-06-28 01:12:41 -07001446 contentDescription = packageManager.getApplicationLabel(
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001447 mIPackageManager.getApplicationInfo(packageName, 0,
1448 mSettings.getCurrentUserId()));
1449 } catch (RemoteException e) {
Svetoslav Ganov6179ea32011-06-28 01:12:41 -07001450 /* ignore */
1451 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07001452 if (mStatusBar != null) {
1453 mStatusBar.setIcon("ime", packageName, iconId, 0,
1454 contentDescription != null
1455 ? contentDescription.toString() : null);
1456 mStatusBar.setIconVisibility("ime", true);
1457 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001458 }
1459 }
1460 } finally {
1461 Binder.restoreCallingIdentity(ident);
1462 }
1463 }
1464
satok7cfc0ed2011-06-20 21:29:36 +09001465 private boolean needsToShowImeSwitchOngoingNotification() {
1466 if (!mShowOngoingImeSwitcherForPhones) return false;
Jason Monk807ef762014-05-08 15:47:46 -04001467 if (mSwitchingDialog != null) return false;
satok2c93efc2012-04-02 19:33:47 +09001468 if (isScreenLocked()) return false;
satok7cfc0ed2011-06-20 21:29:36 +09001469 synchronized (mMethodMap) {
1470 List<InputMethodInfo> imis = mSettings.getEnabledInputMethodListLocked();
1471 final int N = imis.size();
satokb6359412011-06-28 17:47:41 +09001472 if (N > 2) return true;
1473 if (N < 1) return false;
1474 int nonAuxCount = 0;
1475 int auxCount = 0;
1476 InputMethodSubtype nonAuxSubtype = null;
1477 InputMethodSubtype auxSubtype = null;
satok7cfc0ed2011-06-20 21:29:36 +09001478 for(int i = 0; i < N; ++i) {
1479 final InputMethodInfo imi = imis.get(i);
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001480 final List<InputMethodSubtype> subtypes =
1481 mSettings.getEnabledInputMethodSubtypeListLocked(mContext, imi, true);
satok7cfc0ed2011-06-20 21:29:36 +09001482 final int subtypeCount = subtypes.size();
1483 if (subtypeCount == 0) {
satokb6359412011-06-28 17:47:41 +09001484 ++nonAuxCount;
satok7cfc0ed2011-06-20 21:29:36 +09001485 } else {
1486 for (int j = 0; j < subtypeCount; ++j) {
satokb6359412011-06-28 17:47:41 +09001487 final InputMethodSubtype subtype = subtypes.get(j);
1488 if (!subtype.isAuxiliary()) {
1489 ++nonAuxCount;
1490 nonAuxSubtype = subtype;
1491 } else {
1492 ++auxCount;
1493 auxSubtype = subtype;
satok7cfc0ed2011-06-20 21:29:36 +09001494 }
1495 }
1496 }
satok7cfc0ed2011-06-20 21:29:36 +09001497 }
satokb6359412011-06-28 17:47:41 +09001498 if (nonAuxCount > 1 || auxCount > 1) {
1499 return true;
1500 } else if (nonAuxCount == 1 && auxCount == 1) {
1501 if (nonAuxSubtype != null && auxSubtype != null
satok9747f892011-09-12 15:56:40 +09001502 && (nonAuxSubtype.getLocale().equals(auxSubtype.getLocale())
1503 || auxSubtype.overridesImplicitlyEnabledSubtype()
1504 || nonAuxSubtype.overridesImplicitlyEnabledSubtype())
satokb6359412011-06-28 17:47:41 +09001505 && nonAuxSubtype.containsExtraValueKey(TAG_TRY_SUPPRESSING_IME_SWITCHER)) {
1506 return false;
1507 }
1508 return true;
1509 }
1510 return false;
satok7cfc0ed2011-06-20 21:29:36 +09001511 }
satok7cfc0ed2011-06-20 21:29:36 +09001512 }
1513
John Spurlocke0980502013-10-25 11:59:29 -04001514 private boolean isKeyguardLocked() {
1515 return mKeyguardManager != null && mKeyguardManager.isKeyguardLocked();
1516 }
1517
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001518 // Caution! This method is called in this class. Handle multi-user carefully
satokdbf29502011-08-25 15:28:23 +09001519 @SuppressWarnings("deprecation")
satokf9f01002011-05-19 21:31:50 +09001520 @Override
Joe Onorato857fd9b2011-01-27 15:08:35 -08001521 public void setImeWindowStatus(IBinder token, int vis, int backDisposition) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001522 final long ident = Binder.clearCallingIdentity();
satok06487a52010-10-29 11:37:18 +09001523 try {
1524 if (token == null || mCurToken != token) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001525 int uid = Binder.getCallingUid();
Joe Onorato857fd9b2011-01-27 15:08:35 -08001526 Slog.w(TAG, "Ignoring setImeWindowStatus of uid " + uid + " token: " + token);
satok06487a52010-10-29 11:37:18 +09001527 return;
1528 }
satok06487a52010-10-29 11:37:18 +09001529 synchronized (mMethodMap) {
John Spurlocke0980502013-10-25 11:59:29 -04001530 // apply policy for binder calls
1531 if (vis != 0 && isKeyguardLocked() && !mCurClientInKeyguard) {
1532 vis = 0;
1533 }
Joe Onorato857fd9b2011-01-27 15:08:35 -08001534 mImeWindowVis = vis;
1535 mBackDisposition = backDisposition;
jungheang.lee217fd292013-02-26 16:53:22 +09001536 final boolean iconVisibility = ((vis & (InputMethodService.IME_ACTIVE)) != 0)
1537 && (mWindowManagerService.isHardKeyboardAvailable()
1538 || (vis & (InputMethodService.IME_VISIBLE)) != 0);
Jason Monkb605fec2014-05-02 17:04:10 -04001539 final boolean needsToShowImeSwitcher = iconVisibility
1540 && needsToShowImeSwitchOngoingNotification();
1541 if (mStatusBar != null) {
1542 mStatusBar.setImeWindowStatus(token, vis, backDisposition,
1543 needsToShowImeSwitcher);
1544 }
satok5bc8e732011-07-22 21:07:23 +09001545 final InputMethodInfo imi = mMethodMap.get(mCurMethodId);
Jason Monkb605fec2014-05-02 17:04:10 -04001546 if (imi != null && needsToShowImeSwitcher) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001547 // Used to load label
satok7cfc0ed2011-06-20 21:29:36 +09001548 final CharSequence title = mRes.getText(
1549 com.android.internal.R.string.select_input_method);
Satoshi Kataokab2827262013-07-04 19:43:14 +09001550 final CharSequence summary = InputMethodUtils.getImeAndSubtypeDisplayName(
1551 mContext, imi, mCurrentSubtype);
satok5bc8e732011-07-22 21:07:23 +09001552
satok7cfc0ed2011-06-20 21:29:36 +09001553 mImeSwitcherNotification.setLatestEventInfo(
satok5bc8e732011-07-22 21:07:23 +09001554 mContext, title, summary, mImeSwitchPendingIntent);
Jason Monke463c742014-05-02 12:31:45 -04001555 if ((mNotificationManager != null)
1556 && !mWindowManagerService.hasNavigationBar()) {
Satoshi Kataoka135e5fb2012-09-28 18:25:06 +09001557 if (DEBUG) {
Satoshi Kataokab2827262013-07-04 19:43:14 +09001558 Slog.d(TAG, "--- show notification: label = " + summary);
Satoshi Kataoka135e5fb2012-09-28 18:25:06 +09001559 }
1560 mNotificationManager.notifyAsUser(null,
Dianne Hackborn661cd522011-08-22 00:26:20 -07001561 com.android.internal.R.string.select_input_method,
Satoshi Kataoka135e5fb2012-09-28 18:25:06 +09001562 mImeSwitcherNotification, UserHandle.ALL);
Dianne Hackborn661cd522011-08-22 00:26:20 -07001563 mNotificationShown = true;
1564 }
satok7cfc0ed2011-06-20 21:29:36 +09001565 } else {
Dianne Hackborn661cd522011-08-22 00:26:20 -07001566 if (mNotificationShown && mNotificationManager != null) {
Satoshi Kataoka135e5fb2012-09-28 18:25:06 +09001567 if (DEBUG) {
1568 Slog.d(TAG, "--- hide notification");
1569 }
1570 mNotificationManager.cancelAsUser(null,
1571 com.android.internal.R.string.select_input_method, UserHandle.ALL);
satok7cfc0ed2011-06-20 21:29:36 +09001572 mNotificationShown = false;
1573 }
1574 }
satok06487a52010-10-29 11:37:18 +09001575 }
1576 } finally {
1577 Binder.restoreCallingIdentity(ident);
1578 }
1579 }
1580
satoke7c6998e2011-06-03 17:57:59 +09001581 @Override
satokf9f01002011-05-19 21:31:50 +09001582 public void registerSuggestionSpansForNotification(SuggestionSpan[] spans) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001583 if (!calledFromValidUser()) {
1584 return;
1585 }
satokf9f01002011-05-19 21:31:50 +09001586 synchronized (mMethodMap) {
1587 final InputMethodInfo currentImi = mMethodMap.get(mCurMethodId);
1588 for (int i = 0; i < spans.length; ++i) {
1589 SuggestionSpan ss = spans[i];
satok42c5a162011-05-26 16:46:14 +09001590 if (!TextUtils.isEmpty(ss.getNotificationTargetClassName())) {
satokf9f01002011-05-19 21:31:50 +09001591 mSecureSuggestionSpans.put(ss, currentImi);
1592 }
1593 }
1594 }
1595 }
1596
satoke7c6998e2011-06-03 17:57:59 +09001597 @Override
satokf9f01002011-05-19 21:31:50 +09001598 public boolean notifySuggestionPicked(SuggestionSpan span, String originalString, int index) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001599 if (!calledFromValidUser()) {
1600 return false;
1601 }
satokf9f01002011-05-19 21:31:50 +09001602 synchronized (mMethodMap) {
1603 final InputMethodInfo targetImi = mSecureSuggestionSpans.get(span);
1604 // TODO: Do not send the intent if the process of the targetImi is already dead.
1605 if (targetImi != null) {
1606 final String[] suggestions = span.getSuggestions();
1607 if (index < 0 || index >= suggestions.length) return false;
satok42c5a162011-05-26 16:46:14 +09001608 final String className = span.getNotificationTargetClassName();
satokf9f01002011-05-19 21:31:50 +09001609 final Intent intent = new Intent();
1610 // Ensures that only a class in the original IME package will receive the
1611 // notification.
satok42c5a162011-05-26 16:46:14 +09001612 intent.setClassName(targetImi.getPackageName(), className);
satokf9f01002011-05-19 21:31:50 +09001613 intent.setAction(SuggestionSpan.ACTION_SUGGESTION_PICKED);
1614 intent.putExtra(SuggestionSpan.SUGGESTION_SPAN_PICKED_BEFORE, originalString);
1615 intent.putExtra(SuggestionSpan.SUGGESTION_SPAN_PICKED_AFTER, suggestions[index]);
1616 intent.putExtra(SuggestionSpan.SUGGESTION_SPAN_PICKED_HASHCODE, span.hashCode());
Amith Yamasanif043de92012-10-24 06:42:40 -07001617 final long ident = Binder.clearCallingIdentity();
1618 try {
1619 mContext.sendBroadcastAsUser(intent, UserHandle.CURRENT);
1620 } finally {
1621 Binder.restoreCallingIdentity(ident);
1622 }
satokf9f01002011-05-19 21:31:50 +09001623 return true;
1624 }
1625 }
1626 return false;
1627 }
1628
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001629 void updateFromSettingsLocked(boolean enabledMayChange) {
1630 if (enabledMayChange) {
1631 List<InputMethodInfo> enabled = mSettings.getEnabledInputMethodListLocked();
1632 for (int i=0; i<enabled.size(); i++) {
1633 // We allow the user to select "disabled until used" apps, so if they
1634 // are enabling one of those here we now need to make it enabled.
1635 InputMethodInfo imm = enabled.get(i);
1636 try {
1637 ApplicationInfo ai = mIPackageManager.getApplicationInfo(imm.getPackageName(),
1638 PackageManager.GET_DISABLED_UNTIL_USED_COMPONENTS,
1639 mSettings.getCurrentUserId());
Satoshi Kataoka7987a312013-04-17 18:59:33 +09001640 if (ai != null && ai.enabledSetting
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001641 == PackageManager.COMPONENT_ENABLED_STATE_DISABLED_UNTIL_USED) {
Satoshi Kataokaed1cdb22013-04-17 16:41:58 +09001642 if (DEBUG) {
1643 Slog.d(TAG, "Update state(" + imm.getId()
1644 + "): DISABLED_UNTIL_USED -> DEFAULT");
1645 }
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001646 mIPackageManager.setApplicationEnabledSetting(imm.getPackageName(),
1647 PackageManager.COMPONENT_ENABLED_STATE_DEFAULT,
Dianne Hackborn3fa3c28a2013-03-26 16:15:41 -07001648 PackageManager.DONT_KILL_APP, mSettings.getCurrentUserId(),
1649 mContext.getBasePackageName());
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08001650 }
1651 } catch (RemoteException e) {
1652 }
1653 }
1654 }
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001655 // We are assuming that whoever is changing DEFAULT_INPUT_METHOD and
1656 // ENABLED_INPUT_METHODS is taking care of keeping them correctly in
1657 // sync, so we will never have a DEFAULT_INPUT_METHOD that is not
1658 // enabled.
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001659 String id = mSettings.getSelectedInputMethod();
satok03eb319a2010-11-11 18:17:42 +09001660 // There is no input method selected, try to choose new applicable input method.
1661 if (TextUtils.isEmpty(id) && chooseNewDefaultIMELocked()) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001662 id = mSettings.getSelectedInputMethod();
satok03eb319a2010-11-11 18:17:42 +09001663 }
1664 if (!TextUtils.isEmpty(id)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001665 try {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09001666 setInputMethodLocked(id, mSettings.getSelectedInputMethodSubtypeId(id));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001667 } catch (IllegalArgumentException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001668 Slog.w(TAG, "Unknown input method from prefs: " + id, e);
The Android Open Source Project10592532009-03-18 17:39:46 -07001669 mCurMethodId = null;
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07001670 unbindCurrentMethodLocked(true, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001671 }
satokf3db1af2010-11-23 13:34:33 +09001672 mShortcutInputMethodsAndSubtypes.clear();
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001673 } else {
1674 // There is no longer an input method set, so stop any current one.
The Android Open Source Project10592532009-03-18 17:39:46 -07001675 mCurMethodId = null;
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07001676 unbindCurrentMethodLocked(true, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001677 }
1678 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001679
satokab751aa2010-09-14 19:17:36 +09001680 /* package */ void setInputMethodLocked(String id, int subtypeId) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001681 InputMethodInfo info = mMethodMap.get(id);
1682 if (info == null) {
satok913a8922010-08-26 21:53:41 +09001683 throw new IllegalArgumentException("Unknown id: " + id);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001684 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001685
satokd81e9502012-05-21 12:58:45 +09001686 // See if we need to notify a subtype change within the same IME.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001687 if (id.equals(mCurMethodId)) {
satokd81e9502012-05-21 12:58:45 +09001688 final int subtypeCount = info.getSubtypeCount();
1689 if (subtypeCount <= 0) {
1690 return;
satokcd7cd292010-11-20 15:46:23 +09001691 }
satokd81e9502012-05-21 12:58:45 +09001692 final InputMethodSubtype oldSubtype = mCurrentSubtype;
1693 final InputMethodSubtype newSubtype;
1694 if (subtypeId >= 0 && subtypeId < subtypeCount) {
1695 newSubtype = info.getSubtypeAt(subtypeId);
1696 } else {
1697 // If subtype is null, try to find the most applicable one from
1698 // getCurrentInputMethodSubtype.
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001699 newSubtype = getCurrentInputMethodSubtypeLocked();
satokd81e9502012-05-21 12:58:45 +09001700 }
1701 if (newSubtype == null || oldSubtype == null) {
1702 Slog.w(TAG, "Illegal subtype state: old subtype = " + oldSubtype
1703 + ", new subtype = " + newSubtype);
1704 return;
1705 }
1706 if (newSubtype != oldSubtype) {
1707 setSelectedInputMethodAndSubtypeLocked(info, subtypeId, true);
1708 if (mCurMethod != null) {
1709 try {
1710 refreshImeWindowVisibilityLocked();
1711 mCurMethod.changeInputMethodSubtype(newSubtype);
1712 } catch (RemoteException e) {
1713 Slog.w(TAG, "Failed to call changeInputMethodSubtype");
satokab751aa2010-09-14 19:17:36 +09001714 }
1715 }
1716 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001717 return;
1718 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001719
satokd81e9502012-05-21 12:58:45 +09001720 // Changing to a different IME.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001721 final long ident = Binder.clearCallingIdentity();
1722 try {
satokab751aa2010-09-14 19:17:36 +09001723 // Set a subtype to this input method.
1724 // subtypeId the name of a subtype which will be set.
satok723a27e2010-11-11 14:58:11 +09001725 setSelectedInputMethodAndSubtypeLocked(info, subtypeId, false);
1726 // mCurMethodId should be updated after setSelectedInputMethodAndSubtypeLocked()
1727 // because mCurMethodId is stored as a history in
1728 // setSelectedInputMethodAndSubtypeLocked().
1729 mCurMethodId = id;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001730
1731 if (ActivityManagerNative.isSystemReady()) {
1732 Intent intent = new Intent(Intent.ACTION_INPUT_METHOD_CHANGED);
Dianne Hackborn1c633fc2009-12-08 19:45:14 -08001733 intent.addFlags(Intent.FLAG_RECEIVER_REPLACE_PENDING);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001734 intent.putExtra("input_method_id", id);
Amith Yamasanicd757062012-10-19 18:23:52 -07001735 mContext.sendBroadcastAsUser(intent, UserHandle.CURRENT);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001736 }
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001737 unbindCurrentClientLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001738 } finally {
1739 Binder.restoreCallingIdentity(ident);
1740 }
1741 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001742
satok42c5a162011-05-26 16:46:14 +09001743 @Override
The Android Open Source Project4df24232009-03-05 14:34:35 -08001744 public boolean showSoftInput(IInputMethodClient client, int flags,
1745 ResultReceiver resultReceiver) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001746 if (!calledFromValidUser()) {
1747 return false;
1748 }
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001749 int uid = Binder.getCallingUid();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001750 long ident = Binder.clearCallingIdentity();
1751 try {
1752 synchronized (mMethodMap) {
1753 if (mCurClient == null || client == null
1754 || mCurClient.client.asBinder() != client.asBinder()) {
1755 try {
1756 // We need to check if this is the current client with
1757 // focus in the window manager, to allow this call to
1758 // be made before input is started in it.
1759 if (!mIWindowManager.inputMethodClientHasFocus(client)) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001760 Slog.w(TAG, "Ignoring showSoftInput of uid " + uid + ": " + client);
The Android Open Source Project4df24232009-03-05 14:34:35 -08001761 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001762 }
1763 } catch (RemoteException e) {
The Android Open Source Project4df24232009-03-05 14:34:35 -08001764 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001765 }
1766 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001767
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07001768 if (DEBUG) Slog.v(TAG, "Client requesting input be shown");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001769 return showCurrentInputLocked(flags, resultReceiver);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001770 }
1771 } finally {
1772 Binder.restoreCallingIdentity(ident);
1773 }
1774 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001775
The Android Open Source Project4df24232009-03-05 14:34:35 -08001776 boolean showCurrentInputLocked(int flags, ResultReceiver resultReceiver) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001777 mShowRequested = true;
1778 if ((flags&InputMethodManager.SHOW_IMPLICIT) == 0) {
1779 mShowExplicitlyRequested = true;
1780 }
1781 if ((flags&InputMethodManager.SHOW_FORCED) != 0) {
1782 mShowExplicitlyRequested = true;
1783 mShowForced = true;
1784 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001785
Dianne Hackborncc278702009-09-02 23:07:23 -07001786 if (!mSystemReady) {
1787 return false;
1788 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001789
The Android Open Source Project4df24232009-03-05 14:34:35 -08001790 boolean res = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001791 if (mCurMethod != null) {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07001792 if (DEBUG) Slog.d(TAG, "showCurrentInputLocked: mCurToken=" + mCurToken);
The Android Open Source Project4df24232009-03-05 14:34:35 -08001793 executeOrSendMessage(mCurMethod, mCaller.obtainMessageIOO(
1794 MSG_SHOW_SOFT_INPUT, getImeShowFlags(), mCurMethod,
1795 resultReceiver));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001796 mInputShown = true;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07001797 if (mHaveConnection && !mVisibleBound) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001798 bindCurrentInputMethodService(
Dianne Hackbornf0f94d12014-03-17 16:04:21 -07001799 mCurIntent, mVisibleConnection, Context.BIND_AUTO_CREATE
1800 | Context.BIND_TREAT_LIKE_ACTIVITY);
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07001801 mVisibleBound = true;
1802 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08001803 res = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001804 } else if (mHaveConnection && SystemClock.uptimeMillis()
satok59b424c2011-09-30 17:21:46 +09001805 >= (mLastBindTime+TIME_TO_RECONNECT)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001806 // The client has asked to have the input method shown, but
1807 // we have been sitting here too long with a connection to the
1808 // service and no interface received, so let's disconnect/connect
1809 // to try to prod things along.
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001810 EventLog.writeEvent(EventLogTags.IMF_FORCE_RECONNECT_IME, mCurMethodId,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001811 SystemClock.uptimeMillis()-mLastBindTime,1);
satok59b424c2011-09-30 17:21:46 +09001812 Slog.w(TAG, "Force disconnect/connect to the IME in showCurrentInputLocked()");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001813 mContext.unbindService(this);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001814 bindCurrentInputMethodService(mCurIntent, this, Context.BIND_AUTO_CREATE
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07001815 | Context.BIND_NOT_VISIBLE);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001816 } else {
1817 if (DEBUG) {
1818 Slog.d(TAG, "Can't show input: connection = " + mHaveConnection + ", time = "
1819 + ((mLastBindTime+TIME_TO_RECONNECT) - SystemClock.uptimeMillis()));
1820 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001821 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001822
The Android Open Source Project4df24232009-03-05 14:34:35 -08001823 return res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001824 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001825
satok42c5a162011-05-26 16:46:14 +09001826 @Override
The Android Open Source Project4df24232009-03-05 14:34:35 -08001827 public boolean hideSoftInput(IInputMethodClient client, int flags,
1828 ResultReceiver resultReceiver) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09001829 if (!calledFromValidUser()) {
1830 return false;
1831 }
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001832 int uid = Binder.getCallingUid();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001833 long ident = Binder.clearCallingIdentity();
1834 try {
1835 synchronized (mMethodMap) {
1836 if (mCurClient == null || client == null
1837 || mCurClient.client.asBinder() != client.asBinder()) {
1838 try {
1839 // We need to check if this is the current client with
1840 // focus in the window manager, to allow this call to
1841 // be made before input is started in it.
1842 if (!mIWindowManager.inputMethodClientHasFocus(client)) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07001843 if (DEBUG) Slog.w(TAG, "Ignoring hideSoftInput of uid "
1844 + uid + ": " + client);
satok15452a42011-10-28 17:58:28 +09001845 setImeWindowVisibilityStatusHiddenLocked();
The Android Open Source Project4df24232009-03-05 14:34:35 -08001846 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001847 }
1848 } catch (RemoteException e) {
satok15452a42011-10-28 17:58:28 +09001849 setImeWindowVisibilityStatusHiddenLocked();
The Android Open Source Project4df24232009-03-05 14:34:35 -08001850 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001851 }
1852 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001853
Joe Onorato8a9b2202010-02-26 18:56:32 -08001854 if (DEBUG) Slog.v(TAG, "Client requesting input be hidden");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001855 return hideCurrentInputLocked(flags, resultReceiver);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001856 }
1857 } finally {
1858 Binder.restoreCallingIdentity(ident);
1859 }
1860 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001861
The Android Open Source Project4df24232009-03-05 14:34:35 -08001862 boolean hideCurrentInputLocked(int flags, ResultReceiver resultReceiver) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001863 if ((flags&InputMethodManager.HIDE_IMPLICIT_ONLY) != 0
1864 && (mShowExplicitlyRequested || mShowForced)) {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07001865 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 -08001866 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001867 }
1868 if (mShowForced && (flags&InputMethodManager.HIDE_NOT_ALWAYS) != 0) {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07001869 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 -08001870 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001871 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08001872 boolean res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001873 if (mInputShown && mCurMethod != null) {
The Android Open Source Project4df24232009-03-05 14:34:35 -08001874 executeOrSendMessage(mCurMethod, mCaller.obtainMessageOO(
1875 MSG_HIDE_SOFT_INPUT, mCurMethod, resultReceiver));
1876 res = true;
1877 } else {
1878 res = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001879 }
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07001880 if (mHaveConnection && mVisibleBound) {
1881 mContext.unbindService(mVisibleConnection);
1882 mVisibleBound = false;
1883 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001884 mInputShown = false;
1885 mShowRequested = false;
1886 mShowExplicitlyRequested = false;
1887 mShowForced = false;
The Android Open Source Project4df24232009-03-05 14:34:35 -08001888 return res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001889 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001890
satok42c5a162011-05-26 16:46:14 +09001891 @Override
Dianne Hackborn7663d802012-02-24 13:08:49 -08001892 public InputBindResult windowGainedFocus(IInputMethodClient client, IBinder windowToken,
1893 int controlFlags, int softInputMode, int windowFlags,
1894 EditorInfo attribute, IInputContext inputContext) {
Satoshi Kataoka8d033052012-11-19 17:30:40 +09001895 // Needs to check the validity before clearing calling identity
1896 final boolean calledFromValidUser = calledFromValidUser();
1897
Dianne Hackborn7663d802012-02-24 13:08:49 -08001898 InputBindResult res = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001899 long ident = Binder.clearCallingIdentity();
1900 try {
1901 synchronized (mMethodMap) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001902 if (DEBUG) Slog.v(TAG, "windowGainedFocus: " + client.asBinder()
Dianne Hackborn7663d802012-02-24 13:08:49 -08001903 + " controlFlags=#" + Integer.toHexString(controlFlags)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001904 + " softInputMode=#" + Integer.toHexString(softInputMode)
Dianne Hackborn7663d802012-02-24 13:08:49 -08001905 + " windowFlags=#" + Integer.toHexString(windowFlags));
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001906
Dianne Hackborn7663d802012-02-24 13:08:49 -08001907 ClientState cs = mClients.get(client.asBinder());
1908 if (cs == null) {
1909 throw new IllegalArgumentException("unknown client "
1910 + client.asBinder());
1911 }
1912
1913 try {
1914 if (!mIWindowManager.inputMethodClientHasFocus(cs.client)) {
1915 // Check with the window manager to make sure this client actually
1916 // has a window with focus. If not, reject. This is thread safe
1917 // because if the focus changes some time before or after, the
1918 // next client receiving focus that has any interest in input will
1919 // be calling through here after that change happens.
1920 Slog.w(TAG, "Focus gain on non-focused client " + cs.client
1921 + " (uid=" + cs.uid + " pid=" + cs.pid + ")");
1922 return null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001923 }
Dianne Hackborn7663d802012-02-24 13:08:49 -08001924 } catch (RemoteException e) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001925 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001926
Satoshi Kataoka8d033052012-11-19 17:30:40 +09001927 if (!calledFromValidUser) {
1928 Slog.w(TAG, "A background user is requesting window. Hiding IME.");
1929 Slog.w(TAG, "If you want to interect with IME, you need "
1930 + "android.permission.INTERACT_ACROSS_USERS_FULL");
1931 hideCurrentInputLocked(0, null);
1932 return null;
1933 }
1934
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001935 if (mCurFocusedWindow == windowToken) {
Dianne Hackbornac920872012-05-22 11:49:49 -07001936 Slog.w(TAG, "Window already focused, ignoring focus gain of: " + client
Satoshi Kataoka35739502012-10-02 19:00:26 +09001937 + " attribute=" + attribute + ", token = " + windowToken);
Dianne Hackborn7663d802012-02-24 13:08:49 -08001938 if (attribute != null) {
1939 return startInputUncheckedLocked(cs, inputContext, attribute,
1940 controlFlags);
1941 }
1942 return null;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001943 }
1944 mCurFocusedWindow = windowToken;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001945
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08001946 // Should we auto-show the IME even if the caller has not
1947 // specified what should be done with it?
1948 // We only do this automatically if the window can resize
1949 // to accommodate the IME (so what the user sees will give
1950 // them good context without input information being obscured
1951 // by the IME) or if running on a large screen where there
1952 // is more room for the target window + IME.
1953 final boolean doAutoShow =
1954 (softInputMode & WindowManager.LayoutParams.SOFT_INPUT_MASK_ADJUST)
1955 == WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE
1956 || mRes.getConfiguration().isLayoutSizeAtLeast(
1957 Configuration.SCREENLAYOUT_SIZE_LARGE);
Dianne Hackborn7663d802012-02-24 13:08:49 -08001958 final boolean isTextEditor =
1959 (controlFlags&InputMethodManager.CONTROL_WINDOW_IS_TEXT_EDITOR) != 0;
1960
1961 // We want to start input before showing the IME, but after closing
1962 // it. We want to do this after closing it to help the IME disappear
1963 // more quickly (not get stuck behind it initializing itself for the
1964 // new focused input, even if its window wants to hide the IME).
1965 boolean didStart = false;
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08001966
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001967 switch (softInputMode&WindowManager.LayoutParams.SOFT_INPUT_MASK_STATE) {
1968 case WindowManager.LayoutParams.SOFT_INPUT_STATE_UNSPECIFIED:
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08001969 if (!isTextEditor || !doAutoShow) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001970 if (WindowManager.LayoutParams.mayUseInputMethod(windowFlags)) {
1971 // There is no focus view, and this window will
1972 // be behind any soft input window, so hide the
1973 // soft input window if it is shown.
Joe Onorato8a9b2202010-02-26 18:56:32 -08001974 if (DEBUG) Slog.v(TAG, "Unspecified window will hide input");
The Android Open Source Project4df24232009-03-05 14:34:35 -08001975 hideCurrentInputLocked(InputMethodManager.HIDE_NOT_ALWAYS, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001976 }
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08001977 } else if (isTextEditor && doAutoShow && (softInputMode &
1978 WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001979 // There is a focus view, and we are navigating forward
1980 // into the window, so show the input window for the user.
Dianne Hackborn7663d802012-02-24 13:08:49 -08001981 // We only do this automatically if the window can resize
1982 // to accommodate the IME (so what the user sees will give
Dianne Hackborn7d3a5bc2010-11-29 22:52:12 -08001983 // them good context without input information being obscured
1984 // by the IME) or if running on a large screen where there
1985 // is more room for the target window + IME.
Joe Onorato8a9b2202010-02-26 18:56:32 -08001986 if (DEBUG) Slog.v(TAG, "Unspecified window will show input");
Dianne Hackborn7663d802012-02-24 13:08:49 -08001987 if (attribute != null) {
1988 res = startInputUncheckedLocked(cs, inputContext, attribute,
1989 controlFlags);
1990 didStart = true;
1991 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08001992 showCurrentInputLocked(InputMethodManager.SHOW_IMPLICIT, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001993 }
1994 break;
1995 case WindowManager.LayoutParams.SOFT_INPUT_STATE_UNCHANGED:
1996 // Do nothing.
1997 break;
1998 case WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN:
1999 if ((softInputMode &
2000 WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002001 if (DEBUG) Slog.v(TAG, "Window asks to hide input going forward");
The Android Open Source Project4df24232009-03-05 14:34:35 -08002002 hideCurrentInputLocked(0, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002003 }
2004 break;
2005 case WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN:
Joe Onorato8a9b2202010-02-26 18:56:32 -08002006 if (DEBUG) Slog.v(TAG, "Window asks to hide input");
The Android Open Source Project4df24232009-03-05 14:34:35 -08002007 hideCurrentInputLocked(0, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002008 break;
2009 case WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE:
2010 if ((softInputMode &
2011 WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002012 if (DEBUG) Slog.v(TAG, "Window asks to show input going forward");
Dianne Hackborn7663d802012-02-24 13:08:49 -08002013 if (attribute != null) {
2014 res = startInputUncheckedLocked(cs, inputContext, attribute,
2015 controlFlags);
2016 didStart = true;
2017 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002018 showCurrentInputLocked(InputMethodManager.SHOW_IMPLICIT, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002019 }
2020 break;
2021 case WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE:
Joe Onorato8a9b2202010-02-26 18:56:32 -08002022 if (DEBUG) Slog.v(TAG, "Window asks to always show input");
Dianne Hackborn7663d802012-02-24 13:08:49 -08002023 if (attribute != null) {
2024 res = startInputUncheckedLocked(cs, inputContext, attribute,
2025 controlFlags);
2026 didStart = true;
2027 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002028 showCurrentInputLocked(InputMethodManager.SHOW_IMPLICIT, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002029 break;
2030 }
Dianne Hackborn7663d802012-02-24 13:08:49 -08002031
2032 if (!didStart && attribute != null) {
2033 res = startInputUncheckedLocked(cs, inputContext, attribute,
2034 controlFlags);
2035 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002036 }
2037 } finally {
2038 Binder.restoreCallingIdentity(ident);
2039 }
Dianne Hackborn7663d802012-02-24 13:08:49 -08002040
2041 return res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002042 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002043
satok42c5a162011-05-26 16:46:14 +09002044 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002045 public void showInputMethodPickerFromClient(IInputMethodClient client) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002046 if (!calledFromValidUser()) {
2047 return;
2048 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002049 synchronized (mMethodMap) {
2050 if (mCurClient == null || client == null
2051 || mCurClient.client.asBinder() != client.asBinder()) {
satok47a44912010-10-06 16:03:58 +09002052 Slog.w(TAG, "Ignoring showInputMethodPickerFromClient of uid "
Dianne Hackborncef65ee2010-09-30 18:27:22 -07002053 + Binder.getCallingUid() + ": " + client);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002054 }
2055
satok440aab52010-11-25 09:43:11 +09002056 // Always call subtype picker, because subtype picker is a superset of input method
2057 // picker.
satokab751aa2010-09-14 19:17:36 +09002058 mHandler.sendEmptyMessage(MSG_SHOW_IM_SUBTYPE_PICKER);
2059 }
2060 }
2061
satok42c5a162011-05-26 16:46:14 +09002062 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002063 public void setInputMethod(IBinder token, String id) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002064 if (!calledFromValidUser()) {
2065 return;
2066 }
satok28203512010-11-24 11:06:49 +09002067 setInputMethodWithSubtypeId(token, id, NOT_A_SUBTYPE_ID);
2068 }
2069
satok42c5a162011-05-26 16:46:14 +09002070 @Override
satok28203512010-11-24 11:06:49 +09002071 public void setInputMethodAndSubtype(IBinder token, String id, InputMethodSubtype subtype) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002072 if (!calledFromValidUser()) {
2073 return;
2074 }
satok28203512010-11-24 11:06:49 +09002075 synchronized (mMethodMap) {
2076 if (subtype != null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002077 setInputMethodWithSubtypeId(token, id, InputMethodUtils.getSubtypeIdFromHashCode(
satok28203512010-11-24 11:06:49 +09002078 mMethodMap.get(id), subtype.hashCode()));
2079 } else {
2080 setInputMethod(token, id);
2081 }
2082 }
satokab751aa2010-09-14 19:17:36 +09002083 }
2084
satok42c5a162011-05-26 16:46:14 +09002085 @Override
satokb416a712010-11-25 20:42:14 +09002086 public void showInputMethodAndSubtypeEnablerFromClient(
satok217f5482010-12-15 05:19:19 +09002087 IInputMethodClient client, String inputMethodId) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002088 if (!calledFromValidUser()) {
2089 return;
2090 }
satokb416a712010-11-25 20:42:14 +09002091 synchronized (mMethodMap) {
2092 if (mCurClient == null || client == null
2093 || mCurClient.client.asBinder() != client.asBinder()) {
2094 Slog.w(TAG, "Ignoring showInputMethodAndSubtypeEnablerFromClient of: " + client);
2095 }
satok7fee71f2010-12-17 18:54:26 +09002096 executeOrSendMessage(mCurMethod, mCaller.obtainMessageO(
2097 MSG_SHOW_IM_SUBTYPE_ENABLER, inputMethodId));
satokb416a712010-11-25 20:42:14 +09002098 }
2099 }
2100
satok4fc87d62011-05-20 16:13:43 +09002101 @Override
satok735cf382010-11-11 20:40:09 +09002102 public boolean switchToLastInputMethod(IBinder token) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002103 if (!calledFromValidUser()) {
2104 return false;
2105 }
satok735cf382010-11-11 20:40:09 +09002106 synchronized (mMethodMap) {
satokc445bcd2011-01-25 18:57:24 +09002107 final Pair<String, String> lastIme = mSettings.getLastInputMethodAndSubtypeLocked();
satok4fc87d62011-05-20 16:13:43 +09002108 final InputMethodInfo lastImi;
satok208d5632011-05-20 22:13:38 +09002109 if (lastIme != null) {
satok4fc87d62011-05-20 16:13:43 +09002110 lastImi = mMethodMap.get(lastIme.first);
2111 } else {
2112 lastImi = null;
satok735cf382010-11-11 20:40:09 +09002113 }
satok4fc87d62011-05-20 16:13:43 +09002114 String targetLastImiId = null;
2115 int subtypeId = NOT_A_SUBTYPE_ID;
2116 if (lastIme != null && lastImi != null) {
2117 final boolean imiIdIsSame = lastImi.getId().equals(mCurMethodId);
2118 final int lastSubtypeHash = Integer.valueOf(lastIme.second);
2119 final int currentSubtypeHash = mCurrentSubtype == null ? NOT_A_SUBTYPE_ID
2120 : mCurrentSubtype.hashCode();
2121 // If the last IME is the same as the current IME and the last subtype is not
2122 // defined, there is no need to switch to the last IME.
2123 if (!imiIdIsSame || lastSubtypeHash != currentSubtypeHash) {
2124 targetLastImiId = lastIme.first;
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002125 subtypeId = InputMethodUtils.getSubtypeIdFromHashCode(lastImi, lastSubtypeHash);
satok4fc87d62011-05-20 16:13:43 +09002126 }
2127 }
2128
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002129 if (TextUtils.isEmpty(targetLastImiId)
2130 && !InputMethodUtils.canAddToLastInputMethod(mCurrentSubtype)) {
satok4fc87d62011-05-20 16:13:43 +09002131 // This is a safety net. If the currentSubtype can't be added to the history
2132 // and the framework couldn't find the last ime, we will make the last ime be
2133 // the most applicable enabled keyboard subtype of the system imes.
2134 final List<InputMethodInfo> enabled = mSettings.getEnabledInputMethodListLocked();
2135 if (enabled != null) {
2136 final int N = enabled.size();
2137 final String locale = mCurrentSubtype == null
2138 ? mRes.getConfiguration().locale.toString()
2139 : mCurrentSubtype.getLocale();
2140 for (int i = 0; i < N; ++i) {
2141 final InputMethodInfo imi = enabled.get(i);
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002142 if (imi.getSubtypeCount() > 0 && InputMethodUtils.isSystemIme(imi)) {
satok4fc87d62011-05-20 16:13:43 +09002143 InputMethodSubtype keyboardSubtype =
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002144 InputMethodUtils.findLastResortApplicableSubtypeLocked(mRes,
2145 InputMethodUtils.getSubtypes(imi),
2146 InputMethodUtils.SUBTYPE_MODE_KEYBOARD, locale, true);
satok4fc87d62011-05-20 16:13:43 +09002147 if (keyboardSubtype != null) {
2148 targetLastImiId = imi.getId();
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002149 subtypeId = InputMethodUtils.getSubtypeIdFromHashCode(
satok4fc87d62011-05-20 16:13:43 +09002150 imi, keyboardSubtype.hashCode());
2151 if(keyboardSubtype.getLocale().equals(locale)) {
2152 break;
2153 }
2154 }
2155 }
2156 }
2157 }
2158 }
2159
2160 if (!TextUtils.isEmpty(targetLastImiId)) {
2161 if (DEBUG) {
2162 Slog.d(TAG, "Switch to: " + lastImi.getId() + ", " + lastIme.second
2163 + ", from: " + mCurMethodId + ", " + subtypeId);
2164 }
2165 setInputMethodWithSubtypeId(token, targetLastImiId, subtypeId);
2166 return true;
2167 } else {
2168 return false;
2169 }
satok735cf382010-11-11 20:40:09 +09002170 }
2171 }
2172
satoke7c6998e2011-06-03 17:57:59 +09002173 @Override
satok688bd472012-02-09 20:09:17 +09002174 public boolean switchToNextInputMethod(IBinder token, boolean onlyCurrentIme) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002175 if (!calledFromValidUser()) {
2176 return false;
2177 }
satok688bd472012-02-09 20:09:17 +09002178 synchronized (mMethodMap) {
Satoshi Kataokad787f692013-10-26 04:44:21 +09002179 final ImeSubtypeListItem nextSubtype = mSwitchingController.getNextInputMethod(
satok688bd472012-02-09 20:09:17 +09002180 onlyCurrentIme, mMethodMap.get(mCurMethodId), mCurrentSubtype);
2181 if (nextSubtype == null) {
2182 return false;
2183 }
2184 setInputMethodWithSubtypeId(token, nextSubtype.mImi.getId(), nextSubtype.mSubtypeId);
2185 return true;
2186 }
2187 }
2188
2189 @Override
Satoshi Kataoka2b10b522013-08-21 20:39:12 +09002190 public boolean shouldOfferSwitchingToNextInputMethod(IBinder token) {
2191 if (!calledFromValidUser()) {
2192 return false;
2193 }
2194 synchronized (mMethodMap) {
Satoshi Kataokad787f692013-10-26 04:44:21 +09002195 final ImeSubtypeListItem nextSubtype = mSwitchingController.getNextInputMethod(
Satoshi Kataoka2b10b522013-08-21 20:39:12 +09002196 false /* onlyCurrentIme */, mMethodMap.get(mCurMethodId), mCurrentSubtype);
2197 if (nextSubtype == null) {
2198 return false;
2199 }
2200 return true;
2201 }
2202 }
2203
2204 @Override
satok68f1b782011-04-11 14:26:04 +09002205 public InputMethodSubtype getLastInputMethodSubtype() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002206 if (!calledFromValidUser()) {
2207 return null;
2208 }
satok68f1b782011-04-11 14:26:04 +09002209 synchronized (mMethodMap) {
2210 final Pair<String, String> lastIme = mSettings.getLastInputMethodAndSubtypeLocked();
2211 // TODO: Handle the case of the last IME with no subtypes
2212 if (lastIme == null || TextUtils.isEmpty(lastIme.first)
2213 || TextUtils.isEmpty(lastIme.second)) return null;
2214 final InputMethodInfo lastImi = mMethodMap.get(lastIme.first);
2215 if (lastImi == null) return null;
2216 try {
2217 final int lastSubtypeHash = Integer.valueOf(lastIme.second);
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002218 final int lastSubtypeId =
2219 InputMethodUtils.getSubtypeIdFromHashCode(lastImi, lastSubtypeHash);
satok0e7d7d62011-07-05 13:28:06 +09002220 if (lastSubtypeId < 0 || lastSubtypeId >= lastImi.getSubtypeCount()) {
2221 return null;
2222 }
2223 return lastImi.getSubtypeAt(lastSubtypeId);
satok68f1b782011-04-11 14:26:04 +09002224 } catch (NumberFormatException e) {
2225 return null;
2226 }
2227 }
2228 }
2229
satoke7c6998e2011-06-03 17:57:59 +09002230 @Override
satokee5e77c2011-09-02 18:50:15 +09002231 public void setAdditionalInputMethodSubtypes(String imiId, InputMethodSubtype[] subtypes) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002232 if (!calledFromValidUser()) {
2233 return;
2234 }
satok91e88122011-07-18 11:11:42 +09002235 // By this IPC call, only a process which shares the same uid with the IME can add
2236 // additional input method subtypes to the IME.
satokee5e77c2011-09-02 18:50:15 +09002237 if (TextUtils.isEmpty(imiId) || subtypes == null || subtypes.length == 0) return;
satoke7c6998e2011-06-03 17:57:59 +09002238 synchronized (mMethodMap) {
satok91e88122011-07-18 11:11:42 +09002239 final InputMethodInfo imi = mMethodMap.get(imiId);
satokee5e77c2011-09-02 18:50:15 +09002240 if (imi == null) return;
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002241 final String[] packageInfos;
2242 try {
2243 packageInfos = mIPackageManager.getPackagesForUid(Binder.getCallingUid());
2244 } catch (RemoteException e) {
2245 Slog.e(TAG, "Failed to get package infos");
2246 return;
2247 }
satok91e88122011-07-18 11:11:42 +09002248 if (packageInfos != null) {
2249 final int packageNum = packageInfos.length;
2250 for (int i = 0; i < packageNum; ++i) {
2251 if (packageInfos[i].equals(imi.getPackageName())) {
2252 mFileManager.addInputMethodSubtypes(imi, subtypes);
satokc5933802011-08-31 21:26:04 +09002253 final long ident = Binder.clearCallingIdentity();
2254 try {
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09002255 buildInputMethodListLocked(mMethodList, mMethodMap,
2256 false /* resetDefaultEnabledIme */);
satokc5933802011-08-31 21:26:04 +09002257 } finally {
2258 Binder.restoreCallingIdentity(ident);
2259 }
satokee5e77c2011-09-02 18:50:15 +09002260 return;
satok91e88122011-07-18 11:11:42 +09002261 }
2262 }
2263 }
satoke7c6998e2011-06-03 17:57:59 +09002264 }
satokee5e77c2011-09-02 18:50:15 +09002265 return;
satoke7c6998e2011-06-03 17:57:59 +09002266 }
2267
Satoshi Kataoka658c7b82013-10-10 17:03:51 +09002268 @Override
2269 public int getInputMethodWindowVisibleHeight() {
2270 return mWindowManagerService.getInputMethodWindowVisibleHeight();
2271 }
2272
Satoshi Kataokad7443c82013-10-15 17:45:43 +09002273 @Override
2274 public void notifyTextCommitted() {
2275 if (DEBUG) {
2276 Slog.d(TAG, "Got the notification of commitText");
2277 }
2278 final InputMethodInfo imi = mMethodMap.get(mCurMethodId);
2279 if (imi != null) {
2280 mSwitchingController.onCommitText(imi, mCurrentSubtype);
2281 }
2282 }
2283
Yohei Yukawab7b79072014-03-25 11:02:00 +09002284 @Override
2285 public void setCursorAnchorMonitorMode(IBinder token, int monitorMode) {
2286 if (DEBUG) {
2287 Slog.d(TAG, "setCursorAnchorMonitorMode: monitorMode=" + monitorMode);
2288 }
2289 if (!calledFromValidUser()) {
2290 return;
2291 }
2292 synchronized (mMethodMap) {
2293 if (token == null || mCurToken != token) {
2294 if (DEBUG) {
2295 Slog.w(TAG, "Ignoring setCursorAnchorMonitorMode from uid "
2296 + Binder.getCallingUid() + " token: " + token);
2297 }
2298 return;
2299 }
2300 executeOrSendMessage(mCurMethod, mCaller.obtainMessageIO(
2301 MSG_SET_CURSOR_ANCHOR_MONITOR_MODE, monitorMode, mCurClient));
2302 }
2303 }
2304
satok28203512010-11-24 11:06:49 +09002305 private void setInputMethodWithSubtypeId(IBinder token, String id, int subtypeId) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002306 synchronized (mMethodMap) {
2307 if (token == null) {
2308 if (mContext.checkCallingOrSelfPermission(
2309 android.Manifest.permission.WRITE_SECURE_SETTINGS)
2310 != PackageManager.PERMISSION_GRANTED) {
2311 throw new SecurityException(
2312 "Using null token requires permission "
2313 + android.Manifest.permission.WRITE_SECURE_SETTINGS);
2314 }
2315 } else if (mCurToken != token) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07002316 Slog.w(TAG, "Ignoring setInputMethod of uid " + Binder.getCallingUid()
2317 + " token: " + token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002318 return;
2319 }
2320
satokc5933802011-08-31 21:26:04 +09002321 final long ident = Binder.clearCallingIdentity();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002322 try {
satokab751aa2010-09-14 19:17:36 +09002323 setInputMethodLocked(id, subtypeId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002324 } finally {
2325 Binder.restoreCallingIdentity(ident);
2326 }
2327 }
2328 }
2329
satok42c5a162011-05-26 16:46:14 +09002330 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002331 public void hideMySoftInput(IBinder token, int flags) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002332 if (!calledFromValidUser()) {
2333 return;
2334 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002335 synchronized (mMethodMap) {
2336 if (token == null || mCurToken != token) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07002337 if (DEBUG) Slog.w(TAG, "Ignoring hideInputMethod of uid "
2338 + Binder.getCallingUid() + " token: " + token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002339 return;
2340 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002341 long ident = Binder.clearCallingIdentity();
2342 try {
The Android Open Source Project4df24232009-03-05 14:34:35 -08002343 hideCurrentInputLocked(flags, null);
2344 } finally {
2345 Binder.restoreCallingIdentity(ident);
2346 }
2347 }
2348 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002349
satok42c5a162011-05-26 16:46:14 +09002350 @Override
The Android Open Source Project4df24232009-03-05 14:34:35 -08002351 public void showMySoftInput(IBinder token, int flags) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002352 if (!calledFromValidUser()) {
2353 return;
2354 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002355 synchronized (mMethodMap) {
2356 if (token == null || mCurToken != token) {
Dianne Hackborncef65ee2010-09-30 18:27:22 -07002357 Slog.w(TAG, "Ignoring showMySoftInput of uid "
2358 + Binder.getCallingUid() + " token: " + token);
The Android Open Source Project4df24232009-03-05 14:34:35 -08002359 return;
2360 }
2361 long ident = Binder.clearCallingIdentity();
2362 try {
2363 showCurrentInputLocked(flags, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002364 } finally {
2365 Binder.restoreCallingIdentity(ident);
2366 }
2367 }
2368 }
2369
2370 void setEnabledSessionInMainThread(SessionState session) {
2371 if (mEnabledSession != session) {
Yohei Yukawa9d91b432014-05-19 16:03:24 +09002372 if (mEnabledSession != null && mEnabledSession.session != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002373 try {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002374 if (DEBUG) Slog.v(TAG, "Disabling: " + mEnabledSession);
Yohei Yukawa9d91b432014-05-19 16:03:24 +09002375 mEnabledSession.method.setSessionEnabled(mEnabledSession.session, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002376 } catch (RemoteException e) {
2377 }
2378 }
2379 mEnabledSession = session;
Yohei Yukawa9d91b432014-05-19 16:03:24 +09002380 if (mEnabledSession != null && mEnabledSession.session != null) {
2381 try {
2382 if (DEBUG) Slog.v(TAG, "Enabling: " + mEnabledSession);
2383 mEnabledSession.method.setSessionEnabled(mEnabledSession.session, true);
2384 } catch (RemoteException e) {
2385 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002386 }
2387 }
2388 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002389
satok42c5a162011-05-26 16:46:14 +09002390 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002391 public boolean handleMessage(Message msg) {
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002392 SomeArgs args;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002393 switch (msg.what) {
2394 case MSG_SHOW_IM_PICKER:
2395 showInputMethodMenu();
2396 return true;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002397
satokab751aa2010-09-14 19:17:36 +09002398 case MSG_SHOW_IM_SUBTYPE_PICKER:
2399 showInputMethodSubtypeMenu();
2400 return true;
2401
satok47a44912010-10-06 16:03:58 +09002402 case MSG_SHOW_IM_SUBTYPE_ENABLER:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002403 args = (SomeArgs)msg.obj;
satok7fee71f2010-12-17 18:54:26 +09002404 showInputMethodAndSubtypeEnabler((String)args.arg1);
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002405 args.recycle();
satok217f5482010-12-15 05:19:19 +09002406 return true;
2407
2408 case MSG_SHOW_IM_CONFIG:
2409 showConfigureInputMethods();
satok47a44912010-10-06 16:03:58 +09002410 return true;
2411
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002412 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002413
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002414 case MSG_UNBIND_INPUT:
2415 try {
2416 ((IInputMethod)msg.obj).unbindInput();
2417 } catch (RemoteException e) {
2418 // There is nothing interesting about the method dying.
2419 }
2420 return true;
2421 case MSG_BIND_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002422 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002423 try {
2424 ((IInputMethod)args.arg1).bindInput((InputBinding)args.arg2);
2425 } catch (RemoteException e) {
2426 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002427 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002428 return true;
2429 case MSG_SHOW_SOFT_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002430 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002431 try {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002432 if (DEBUG) Slog.v(TAG, "Calling " + args.arg1 + ".showSoftInput("
Craig Mautner6efb4c72013-03-13 10:17:41 -07002433 + msg.arg1 + ", " + args.arg2 + ")");
Craig Mautnerca0ac712013-03-14 09:43:02 -07002434 ((IInputMethod)args.arg1).showSoftInput(msg.arg1, (ResultReceiver)args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002435 } catch (RemoteException e) {
2436 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002437 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002438 return true;
2439 case MSG_HIDE_SOFT_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002440 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002441 try {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002442 if (DEBUG) Slog.v(TAG, "Calling " + args.arg1 + ".hideSoftInput(0, "
Craig Mautner6efb4c72013-03-13 10:17:41 -07002443 + args.arg2 + ")");
Craig Mautnerca0ac712013-03-14 09:43:02 -07002444 ((IInputMethod)args.arg1).hideSoftInput(0, (ResultReceiver)args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002445 } catch (RemoteException e) {
2446 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002447 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002448 return true;
2449 case MSG_ATTACH_TOKEN:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002450 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002451 try {
Craig Mautnere4bbb1c2013-03-15 11:38:44 -07002452 if (DEBUG) Slog.v(TAG, "Sending attach of token: " + args.arg2);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002453 ((IInputMethod)args.arg1).attachToken((IBinder)args.arg2);
2454 } catch (RemoteException e) {
2455 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002456 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002457 return true;
Jeff Brownc28867a2013-03-26 15:42:39 -07002458 case MSG_CREATE_SESSION: {
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002459 args = (SomeArgs)msg.obj;
Jeff Brown1951ce82013-04-04 22:45:12 -07002460 IInputMethod method = (IInputMethod)args.arg1;
Jeff Brownc28867a2013-03-26 15:42:39 -07002461 InputChannel channel = (InputChannel)args.arg2;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002462 try {
Jeff Brown1951ce82013-04-04 22:45:12 -07002463 method.createSession(channel, (IInputSessionCallback)args.arg3);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002464 } catch (RemoteException e) {
Jeff Brownc28867a2013-03-26 15:42:39 -07002465 } finally {
Jeff Brown1951ce82013-04-04 22:45:12 -07002466 // Dispose the channel if the input method is not local to this process
2467 // because the remote proxy will get its own copy when unparceled.
2468 if (channel != null && Binder.isProxy(method)) {
Jeff Brownc28867a2013-03-26 15:42:39 -07002469 channel.dispose();
2470 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002471 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002472 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002473 return true;
Jeff Brownc28867a2013-03-26 15:42:39 -07002474 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002475 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002476
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002477 case MSG_START_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002478 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002479 try {
2480 SessionState session = (SessionState)args.arg1;
2481 setEnabledSessionInMainThread(session);
2482 session.method.startInput((IInputContext)args.arg2,
2483 (EditorInfo)args.arg3);
2484 } catch (RemoteException e) {
2485 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002486 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002487 return true;
2488 case MSG_RESTART_INPUT:
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002489 args = (SomeArgs)msg.obj;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002490 try {
2491 SessionState session = (SessionState)args.arg1;
2492 setEnabledSessionInMainThread(session);
2493 session.method.restartInput((IInputContext)args.arg2,
2494 (EditorInfo)args.arg3);
2495 } catch (RemoteException e) {
2496 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002497 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002498 return true;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002499
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002500 // ---------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002501
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002502 case MSG_UNBIND_METHOD:
2503 try {
2504 ((IInputMethodClient)msg.obj).onUnbindMethod(msg.arg1);
2505 } catch (RemoteException e) {
2506 // There is nothing interesting about the last client dying.
2507 }
2508 return true;
Jeff Brown1951ce82013-04-04 22:45:12 -07002509 case MSG_BIND_METHOD: {
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002510 args = (SomeArgs)msg.obj;
Jeff Brown1951ce82013-04-04 22:45:12 -07002511 IInputMethodClient client = (IInputMethodClient)args.arg1;
2512 InputBindResult res = (InputBindResult)args.arg2;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002513 try {
Jeff Brown1951ce82013-04-04 22:45:12 -07002514 client.onBindMethod(res);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002515 } catch (RemoteException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002516 Slog.w(TAG, "Client died receiving input method " + args.arg2);
Jeff Brown1951ce82013-04-04 22:45:12 -07002517 } finally {
2518 // Dispose the channel if the input method is not local to this process
2519 // because the remote proxy will get its own copy when unparceled.
2520 if (res.channel != null && Binder.isProxy(client)) {
2521 res.channel.dispose();
2522 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002523 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07002524 args.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002525 return true;
Jeff Brown1951ce82013-04-04 22:45:12 -07002526 }
Dianne Hackborna6e41342012-05-22 16:30:34 -07002527 case MSG_SET_ACTIVE:
2528 try {
2529 ((ClientState)msg.obj).client.setActive(msg.arg1 != 0);
2530 } catch (RemoteException e) {
2531 Slog.w(TAG, "Got RemoteException sending setActive(false) notification to pid "
2532 + ((ClientState)msg.obj).pid + " uid "
2533 + ((ClientState)msg.obj).uid);
2534 }
2535 return true;
Yohei Yukawab7b79072014-03-25 11:02:00 +09002536 case MSG_SET_CURSOR_ANCHOR_MONITOR_MODE:
2537 try {
2538 ((ClientState)msg.obj).client.setCursorAnchorMonitorMode(msg.arg1);
2539 } catch (RemoteException e) {
2540 Slog.w(TAG, "Got RemoteException sending setCursorAnchorMonitorMode "
2541 + "notification to pid " + ((ClientState)msg.obj).pid
2542 + " uid " + ((ClientState)msg.obj).uid);
2543 }
2544 return true;
satok01038492012-04-09 21:08:27 +09002545
2546 // --------------------------------------------------------------
2547 case MSG_HARD_KEYBOARD_SWITCH_CHANGED:
2548 mHardKeyboardListener.handleHardKeyboardStatusChange(
2549 msg.arg1 == 1, msg.arg2 == 1);
2550 return true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002551 }
2552 return false;
2553 }
2554
satokdc9ddae2011-10-06 12:22:36 +09002555 private boolean chooseNewDefaultIMELocked() {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002556 final InputMethodInfo imi = InputMethodUtils.getMostApplicableDefaultIME(
2557 mSettings.getEnabledInputMethodListLocked());
satokdc9ddae2011-10-06 12:22:36 +09002558 if (imi != null) {
satok03eb319a2010-11-11 18:17:42 +09002559 if (DEBUG) {
2560 Slog.d(TAG, "New default IME was selected: " + imi.getId());
2561 }
satok723a27e2010-11-11 14:58:11 +09002562 resetSelectedInputMethodAndSubtypeLocked(imi.getId());
Brandon Ballinger6da35a02009-10-21 00:38:13 -07002563 return true;
2564 }
2565
2566 return false;
2567 }
2568
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002569 void buildInputMethodListLocked(ArrayList<InputMethodInfo> list,
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09002570 HashMap<String, InputMethodInfo> map, boolean resetDefaultEnabledIme) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002571 if (DEBUG) {
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09002572 Slog.d(TAG, "--- re-buildInputMethodList reset = " + resetDefaultEnabledIme
Satoshi Kataoka0766eb02013-07-31 18:30:13 +09002573 + " \n ------ \n" + InputMethodUtils.getStackTrace());
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002574 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002575 list.clear();
2576 map.clear();
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002577
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002578 // Use for queryIntentServicesAsUser
2579 final PackageManager pm = mContext.getPackageManager();
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002580 String disabledSysImes = mSettings.getDisabledSystemInputMethods();
Amith Yamasanie861ec12010-03-24 21:39:27 -07002581 if (disabledSysImes == null) disabledSysImes = "";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002582
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002583 final List<ResolveInfo> services = pm.queryIntentServicesAsUser(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002584 new Intent(InputMethod.SERVICE_INTERFACE),
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08002585 PackageManager.GET_META_DATA | PackageManager.GET_DISABLED_UNTIL_USED_COMPONENTS,
2586 mSettings.getCurrentUserId());
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002587
satoke7c6998e2011-06-03 17:57:59 +09002588 final HashMap<String, List<InputMethodSubtype>> additionalSubtypes =
2589 mFileManager.getAllAdditionalInputMethodSubtypes();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002590 for (int i = 0; i < services.size(); ++i) {
2591 ResolveInfo ri = services.get(i);
2592 ServiceInfo si = ri.serviceInfo;
2593 ComponentName compName = new ComponentName(si.packageName, si.name);
2594 if (!android.Manifest.permission.BIND_INPUT_METHOD.equals(
2595 si.permission)) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002596 Slog.w(TAG, "Skipping input method " + compName
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002597 + ": it does not require the permission "
2598 + android.Manifest.permission.BIND_INPUT_METHOD);
2599 continue;
2600 }
2601
Joe Onorato8a9b2202010-02-26 18:56:32 -08002602 if (DEBUG) Slog.d(TAG, "Checking " + compName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002603
2604 try {
satoke7c6998e2011-06-03 17:57:59 +09002605 InputMethodInfo p = new InputMethodInfo(mContext, ri, additionalSubtypes);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002606 list.add(p);
Amith Yamasanie861ec12010-03-24 21:39:27 -07002607 final String id = p.getId();
2608 map.put(id, p);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002609
2610 if (DEBUG) {
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09002611 Slog.d(TAG, "Found an input method " + p);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002612 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002613
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002614 } catch (XmlPullParserException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002615 Slog.w(TAG, "Unable to load input method " + compName, e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002616 } catch (IOException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002617 Slog.w(TAG, "Unable to load input method " + compName, e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002618 }
2619 }
Brandon Ballinger6da35a02009-10-21 00:38:13 -07002620
Satoshi Kataokaf1367b72013-01-25 17:20:12 +09002621 if (resetDefaultEnabledIme) {
2622 final ArrayList<InputMethodInfo> defaultEnabledIme =
2623 InputMethodUtils.getDefaultEnabledImes(mContext, mSystemReady, list);
2624 for (int i = 0; i < defaultEnabledIme.size(); ++i) {
2625 final InputMethodInfo imi = defaultEnabledIme.get(i);
2626 if (DEBUG) {
2627 Slog.d(TAG, "--- enable ime = " + imi);
2628 }
2629 setInputMethodEnabledLocked(imi.getId(), true);
2630 }
2631 }
2632
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002633 final String defaultImiId = mSettings.getSelectedInputMethod();
satok0a1bcf42012-05-16 19:26:31 +09002634 if (!TextUtils.isEmpty(defaultImiId)) {
2635 if (!map.containsKey(defaultImiId)) {
2636 Slog.w(TAG, "Default IME is uninstalled. Choose new default IME.");
2637 if (chooseNewDefaultIMELocked()) {
Dianne Hackbornfd7aded2013-01-22 17:10:23 -08002638 updateFromSettingsLocked(true);
satok0a1bcf42012-05-16 19:26:31 +09002639 }
2640 } else {
2641 // Double check that the default IME is certainly enabled.
2642 setInputMethodEnabledLocked(defaultImiId, true);
Brandon Ballinger6da35a02009-10-21 00:38:13 -07002643 }
2644 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002645 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002646
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002647 // ----------------------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002648
satokab751aa2010-09-14 19:17:36 +09002649 private void showInputMethodMenu() {
2650 showInputMethodMenuInternal(false);
2651 }
2652
2653 private void showInputMethodSubtypeMenu() {
2654 showInputMethodMenuInternal(true);
2655 }
2656
satok217f5482010-12-15 05:19:19 +09002657 private void showInputMethodAndSubtypeEnabler(String inputMethodId) {
Tadashi G. Takaokaf49688f2011-01-20 17:56:13 +09002658 Intent intent = new Intent(Settings.ACTION_INPUT_METHOD_SUBTYPE_SETTINGS);
satok47a44912010-10-06 16:03:58 +09002659 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
satok86417ea2010-10-27 14:11:03 +09002660 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED
2661 | Intent.FLAG_ACTIVITY_CLEAR_TOP);
satok7fee71f2010-12-17 18:54:26 +09002662 if (!TextUtils.isEmpty(inputMethodId)) {
Tadashi G. Takaoka25480202011-01-20 23:13:02 +09002663 intent.putExtra(Settings.EXTRA_INPUT_METHOD_ID, inputMethodId);
satok7fee71f2010-12-17 18:54:26 +09002664 }
Satoshi Kataoka3ba439d2012-10-05 18:30:13 +09002665 mContext.startActivityAsUser(intent, null, UserHandle.CURRENT);
satok217f5482010-12-15 05:19:19 +09002666 }
2667
2668 private void showConfigureInputMethods() {
2669 Intent intent = new Intent(Settings.ACTION_INPUT_METHOD_SETTINGS);
2670 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
2671 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED
2672 | Intent.FLAG_ACTIVITY_CLEAR_TOP);
Satoshi Kataoka3ba439d2012-10-05 18:30:13 +09002673 mContext.startActivityAsUser(intent, null, UserHandle.CURRENT);
satok47a44912010-10-06 16:03:58 +09002674 }
2675
satok2c93efc2012-04-02 19:33:47 +09002676 private boolean isScreenLocked() {
2677 return mKeyguardManager != null
2678 && mKeyguardManager.isKeyguardLocked() && mKeyguardManager.isKeyguardSecure();
2679 }
satokab751aa2010-09-14 19:17:36 +09002680 private void showInputMethodMenuInternal(boolean showSubtypes) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002681 if (DEBUG) Slog.v(TAG, "Show switching menu");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002682
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002683 final Context context = mContext;
satok2c93efc2012-04-02 19:33:47 +09002684 final boolean isScreenLocked = isScreenLocked();
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002685
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002686 final String lastInputMethodId = mSettings.getSelectedInputMethod();
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002687 int lastInputMethodSubtypeId = mSettings.getSelectedInputMethodSubtypeId(lastInputMethodId);
Joe Onorato8a9b2202010-02-26 18:56:32 -08002688 if (DEBUG) Slog.v(TAG, "Current IME: " + lastInputMethodId);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002689
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002690 synchronized (mMethodMap) {
satokbb4aa062011-01-19 21:40:27 +09002691 final HashMap<InputMethodInfo, List<InputMethodSubtype>> immis =
Satoshi Kataokad787f692013-10-26 04:44:21 +09002692 mSettings.getExplicitlyOrImplicitlyEnabledInputMethodsAndSubtypeListLocked(
2693 mContext);
satok7f35c8c2010-10-07 21:13:11 +09002694 if (immis == null || immis.size() == 0) {
2695 return;
2696 }
2697
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002698 hideInputMethodMenuLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002699
satok688bd472012-02-09 20:09:17 +09002700 final List<ImeSubtypeListItem> imList =
Satoshi Kataokad787f692013-10-26 04:44:21 +09002701 mSwitchingController.getSortedInputMethodAndSubtypeList(
satok688bd472012-02-09 20:09:17 +09002702 showSubtypes, mInputShown, isScreenLocked);
satok913a8922010-08-26 21:53:41 +09002703
satokc3690562012-01-10 20:14:43 +09002704 if (lastInputMethodSubtypeId == NOT_A_SUBTYPE_ID) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002705 final InputMethodSubtype currentSubtype = getCurrentInputMethodSubtypeLocked();
satokc3690562012-01-10 20:14:43 +09002706 if (currentSubtype != null) {
2707 final InputMethodInfo currentImi = mMethodMap.get(mCurMethodId);
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002708 lastInputMethodSubtypeId = InputMethodUtils.getSubtypeIdFromHashCode(
2709 currentImi, currentSubtype.hashCode());
satokc3690562012-01-10 20:14:43 +09002710 }
2711 }
2712
Ken Wakasa761eb372011-03-04 19:06:18 +09002713 final int N = imList.size();
satokab751aa2010-09-14 19:17:36 +09002714 mIms = new InputMethodInfo[N];
2715 mSubtypeIds = new int[N];
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002716 int checkedItem = 0;
2717 for (int i = 0; i < N; ++i) {
Ken Wakasa05dbb652011-08-22 15:22:43 +09002718 final ImeSubtypeListItem item = imList.get(i);
2719 mIms[i] = item.mImi;
2720 mSubtypeIds[i] = item.mSubtypeId;
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002721 if (mIms[i].getId().equals(lastInputMethodId)) {
satokab751aa2010-09-14 19:17:36 +09002722 int subtypeId = mSubtypeIds[i];
2723 if ((subtypeId == NOT_A_SUBTYPE_ID)
2724 || (lastInputMethodSubtypeId == NOT_A_SUBTYPE_ID && subtypeId == 0)
2725 || (subtypeId == lastInputMethodSubtypeId)) {
2726 checkedItem = i;
2727 }
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002728 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002729 }
Ken Wakasa05dbb652011-08-22 15:22:43 +09002730 final TypedArray a = context.obtainStyledAttributes(null,
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002731 com.android.internal.R.styleable.DialogPreference,
2732 com.android.internal.R.attr.alertDialogStyle, 0);
2733 mDialogBuilder = new AlertDialog.Builder(context)
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002734 .setOnCancelListener(new OnCancelListener() {
satok42c5a162011-05-26 16:46:14 +09002735 @Override
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002736 public void onCancel(DialogInterface dialog) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002737 hideInputMethodMenu();
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002738 }
2739 })
2740 .setIcon(a.getDrawable(
2741 com.android.internal.R.styleable.DialogPreference_dialogTitle));
2742 a.recycle();
satok01038492012-04-09 21:08:27 +09002743 final LayoutInflater inflater =
2744 (LayoutInflater)mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
2745 final View tv = inflater.inflate(
2746 com.android.internal.R.layout.input_method_switch_dialog_title, null);
2747 mDialogBuilder.setCustomTitle(tv);
2748
2749 // Setup layout for a toggle switch of the hardware keyboard
2750 mSwitchingDialogTitleView = tv;
2751 mSwitchingDialogTitleView.findViewById(
2752 com.android.internal.R.id.hard_keyboard_section).setVisibility(
2753 mWindowManagerService.isHardKeyboardAvailable() ?
2754 View.VISIBLE : View.GONE);
2755 final Switch hardKeySwitch = ((Switch)mSwitchingDialogTitleView.findViewById(
2756 com.android.internal.R.id.hard_keyboard_switch));
2757 hardKeySwitch.setChecked(mWindowManagerService.isHardKeyboardEnabled());
2758 hardKeySwitch.setOnCheckedChangeListener(
2759 new OnCheckedChangeListener() {
2760 @Override
2761 public void onCheckedChanged(
2762 CompoundButton buttonView, boolean isChecked) {
2763 mWindowManagerService.setHardKeyboardEnabled(isChecked);
Satoshi Kataoka04dd24d2013-01-18 13:44:37 +09002764 // Ensure that the input method dialog is dismissed when changing
2765 // the hardware keyboard state.
2766 hideInputMethodMenu();
satok01038492012-04-09 21:08:27 +09002767 }
2768 });
satokd87c2592010-09-29 11:52:06 +09002769
Ken Wakasa05dbb652011-08-22 15:22:43 +09002770 final ImeSubtypeListAdapter adapter = new ImeSubtypeListAdapter(context,
2771 com.android.internal.R.layout.simple_list_item_2_single_choice, imList,
2772 checkedItem);
2773
2774 mDialogBuilder.setSingleChoiceItems(adapter, checkedItem,
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002775 new AlertDialog.OnClickListener() {
satok42c5a162011-05-26 16:46:14 +09002776 @Override
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002777 public void onClick(DialogInterface dialog, int which) {
2778 synchronized (mMethodMap) {
satokab751aa2010-09-14 19:17:36 +09002779 if (mIms == null || mIms.length <= which
2780 || mSubtypeIds == null || mSubtypeIds.length <= which) {
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002781 return;
2782 }
2783 InputMethodInfo im = mIms[which];
satokab751aa2010-09-14 19:17:36 +09002784 int subtypeId = mSubtypeIds[which];
Satoshi Kataokad2142962012-11-12 18:43:06 +09002785 adapter.mCheckedItem = which;
2786 adapter.notifyDataSetChanged();
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002787 hideInputMethodMenu();
2788 if (im != null) {
satokab751aa2010-09-14 19:17:36 +09002789 if ((subtypeId < 0)
Ken Wakasa586f0512011-01-20 22:31:01 +09002790 || (subtypeId >= im.getSubtypeCount())) {
satokab751aa2010-09-14 19:17:36 +09002791 subtypeId = NOT_A_SUBTYPE_ID;
2792 }
2793 setInputMethodLocked(im.getId(), subtypeId);
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002794 }
Dianne Hackborn20cb56e2010-03-04 00:58:29 -08002795 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002796 }
Dianne Hackborn8cf1bcd2010-03-16 13:06:10 -07002797 });
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002798
satokbc81b692011-08-26 16:22:22 +09002799 if (showSubtypes && !isScreenLocked) {
satok82beadf2010-12-27 19:03:06 +09002800 mDialogBuilder.setPositiveButton(
2801 com.android.internal.R.string.configure_input_methods,
satok7f35c8c2010-10-07 21:13:11 +09002802 new DialogInterface.OnClickListener() {
satok42c5a162011-05-26 16:46:14 +09002803 @Override
satok7f35c8c2010-10-07 21:13:11 +09002804 public void onClick(DialogInterface dialog, int whichButton) {
satok217f5482010-12-15 05:19:19 +09002805 showConfigureInputMethods();
satok7f35c8c2010-10-07 21:13:11 +09002806 }
2807 });
2808 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002809 mSwitchingDialog = mDialogBuilder.create();
Dianne Hackborne3a7f622011-03-03 21:48:24 -08002810 mSwitchingDialog.setCanceledOnTouchOutside(true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002811 mSwitchingDialog.getWindow().setType(
2812 WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG);
Satoshi Kataokac86884c2012-10-09 15:20:29 +09002813 mSwitchingDialog.getWindow().getAttributes().privateFlags |=
2814 WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS;
Dianne Hackborne3a7f622011-03-03 21:48:24 -08002815 mSwitchingDialog.getWindow().getAttributes().setTitle("Select input method");
Jason Monk807ef762014-05-08 15:47:46 -04002816 updateImeWindowStatusLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002817 mSwitchingDialog.show();
2818 }
2819 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002820
Ken Wakasa05dbb652011-08-22 15:22:43 +09002821 private static class ImeSubtypeListAdapter extends ArrayAdapter<ImeSubtypeListItem> {
2822 private final LayoutInflater mInflater;
2823 private final int mTextViewResourceId;
2824 private final List<ImeSubtypeListItem> mItemsList;
Satoshi Kataokad2142962012-11-12 18:43:06 +09002825 public int mCheckedItem;
Ken Wakasa05dbb652011-08-22 15:22:43 +09002826 public ImeSubtypeListAdapter(Context context, int textViewResourceId,
2827 List<ImeSubtypeListItem> itemsList, int checkedItem) {
2828 super(context, textViewResourceId, itemsList);
2829 mTextViewResourceId = textViewResourceId;
2830 mItemsList = itemsList;
2831 mCheckedItem = checkedItem;
2832 mInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
2833 }
2834
2835 @Override
2836 public View getView(int position, View convertView, ViewGroup parent) {
2837 final View view = convertView != null ? convertView
2838 : mInflater.inflate(mTextViewResourceId, null);
2839 if (position < 0 || position >= mItemsList.size()) return view;
2840 final ImeSubtypeListItem item = mItemsList.get(position);
2841 final CharSequence imeName = item.mImeName;
2842 final CharSequence subtypeName = item.mSubtypeName;
2843 final TextView firstTextView = (TextView)view.findViewById(android.R.id.text1);
2844 final TextView secondTextView = (TextView)view.findViewById(android.R.id.text2);
2845 if (TextUtils.isEmpty(subtypeName)) {
2846 firstTextView.setText(imeName);
2847 secondTextView.setVisibility(View.GONE);
2848 } else {
2849 firstTextView.setText(subtypeName);
2850 secondTextView.setText(imeName);
2851 secondTextView.setVisibility(View.VISIBLE);
2852 }
2853 final RadioButton radioButton =
2854 (RadioButton)view.findViewById(com.android.internal.R.id.radio);
2855 radioButton.setChecked(position == mCheckedItem);
2856 return view;
2857 }
2858 }
2859
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002860 void hideInputMethodMenu() {
The Android Open Source Project10592532009-03-18 17:39:46 -07002861 synchronized (mMethodMap) {
2862 hideInputMethodMenuLocked();
2863 }
2864 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002865
The Android Open Source Project10592532009-03-18 17:39:46 -07002866 void hideInputMethodMenuLocked() {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002867 if (DEBUG) Slog.v(TAG, "Hide switching menu");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002868
The Android Open Source Project10592532009-03-18 17:39:46 -07002869 if (mSwitchingDialog != null) {
2870 mSwitchingDialog.dismiss();
2871 mSwitchingDialog = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002872 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002873
Jason Monk807ef762014-05-08 15:47:46 -04002874 updateImeWindowStatusLocked();
The Android Open Source Project10592532009-03-18 17:39:46 -07002875 mDialogBuilder = null;
The Android Open Source Project10592532009-03-18 17:39:46 -07002876 mIms = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002877 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002878
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002879 // ----------------------------------------------------------------------
Doug Zongkerab5c49c2009-12-04 10:31:43 -08002880
satok42c5a162011-05-26 16:46:14 +09002881 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002882 public boolean setInputMethodEnabled(String id, boolean enabled) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002883 // TODO: Make this work even for non-current users?
2884 if (!calledFromValidUser()) {
2885 return false;
2886 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002887 synchronized (mMethodMap) {
2888 if (mContext.checkCallingOrSelfPermission(
2889 android.Manifest.permission.WRITE_SECURE_SETTINGS)
2890 != PackageManager.PERMISSION_GRANTED) {
2891 throw new SecurityException(
2892 "Requires permission "
2893 + android.Manifest.permission.WRITE_SECURE_SETTINGS);
2894 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002895
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002896 long ident = Binder.clearCallingIdentity();
2897 try {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002898 return setInputMethodEnabledLocked(id, enabled);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002899 } finally {
2900 Binder.restoreCallingIdentity(ident);
2901 }
2902 }
2903 }
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002904
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002905 boolean setInputMethodEnabledLocked(String id, boolean enabled) {
2906 // Make sure this is a valid input method.
2907 InputMethodInfo imm = mMethodMap.get(id);
2908 if (imm == null) {
satokd87c2592010-09-29 11:52:06 +09002909 throw new IllegalArgumentException("Unknown id: " + mCurMethodId);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002910 }
2911
satokd87c2592010-09-29 11:52:06 +09002912 List<Pair<String, ArrayList<String>>> enabledInputMethodsList = mSettings
2913 .getEnabledInputMethodsAndSubtypeListLocked();
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002914
satokd87c2592010-09-29 11:52:06 +09002915 if (enabled) {
2916 for (Pair<String, ArrayList<String>> pair: enabledInputMethodsList) {
2917 if (pair.first.equals(id)) {
2918 // We are enabling this input method, but it is already enabled.
2919 // Nothing to do. The previous state was enabled.
2920 return true;
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002921 }
2922 }
satokd87c2592010-09-29 11:52:06 +09002923 mSettings.appendAndPutEnabledInputMethodLocked(id, false);
2924 // Previous state was disabled.
2925 return false;
2926 } else {
2927 StringBuilder builder = new StringBuilder();
2928 if (mSettings.buildAndPutEnabledInputMethodsStrRemovingIdLocked(
2929 builder, enabledInputMethodsList, id)) {
2930 // Disabled input method is currently selected, switch to another one.
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002931 final String selId = mSettings.getSelectedInputMethod();
satok03eb319a2010-11-11 18:17:42 +09002932 if (id.equals(selId) && !chooseNewDefaultIMELocked()) {
2933 Slog.i(TAG, "Can't find new IME, unsetting the current input method.");
2934 resetSelectedInputMethodAndSubtypeLocked("");
satokd87c2592010-09-29 11:52:06 +09002935 }
2936 // Previous state was enabled.
2937 return true;
2938 } else {
2939 // We are disabling the input method but it is already disabled.
2940 // Nothing to do. The previous state was disabled.
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002941 return false;
2942 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002943 }
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08002944 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08002945
satok723a27e2010-11-11 14:58:11 +09002946 private void setSelectedInputMethodAndSubtypeLocked(InputMethodInfo imi, int subtypeId,
2947 boolean setSubtypeOnly) {
2948 // Update the history of InputMethod and Subtype
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002949 mSettings.saveCurrentInputMethodAndSubtypeToHistory(mCurMethodId, mCurrentSubtype);
satok723a27e2010-11-11 14:58:11 +09002950
2951 // Set Subtype here
2952 if (imi == null || subtypeId < 0) {
2953 mSettings.putSelectedSubtype(NOT_A_SUBTYPE_ID);
Tadashi G. Takaoka0ba75bb2010-11-09 12:19:32 -08002954 mCurrentSubtype = null;
satok723a27e2010-11-11 14:58:11 +09002955 } else {
Ken Wakasa586f0512011-01-20 22:31:01 +09002956 if (subtypeId < imi.getSubtypeCount()) {
2957 InputMethodSubtype subtype = imi.getSubtypeAt(subtypeId);
2958 mSettings.putSelectedSubtype(subtype.hashCode());
2959 mCurrentSubtype = subtype;
satok723a27e2010-11-11 14:58:11 +09002960 } else {
2961 mSettings.putSelectedSubtype(NOT_A_SUBTYPE_ID);
satokd81e9502012-05-21 12:58:45 +09002962 // If the subtype is not specified, choose the most applicable one
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09002963 mCurrentSubtype = getCurrentInputMethodSubtypeLocked();
satok723a27e2010-11-11 14:58:11 +09002964 }
satokab751aa2010-09-14 19:17:36 +09002965 }
satok723a27e2010-11-11 14:58:11 +09002966
satok4c0e7152012-06-20 20:08:44 +09002967 // Workaround.
2968 // ASEC is not ready in the IMMS constructor. Accordingly, forward-locked
2969 // IMEs are not recognized and considered uninstalled.
2970 // Actually, we can't move everything after SystemReady because
2971 // IMMS needs to run in the encryption lock screen. So, we just skip changing
2972 // the default IME here and try cheking the default IME again in systemReady().
2973 // TODO: Do nothing before system ready and implement a separated logic for
2974 // the encryption lock screen.
2975 // TODO: ASEC should be ready before IMMS is instantiated.
2976 if (mSystemReady && !setSubtypeOnly) {
satok723a27e2010-11-11 14:58:11 +09002977 // Set InputMethod here
2978 mSettings.putSelectedInputMethod(imi != null ? imi.getId() : "");
2979 }
2980 }
2981
2982 private void resetSelectedInputMethodAndSubtypeLocked(String newDefaultIme) {
2983 InputMethodInfo imi = mMethodMap.get(newDefaultIme);
2984 int lastSubtypeId = NOT_A_SUBTYPE_ID;
2985 // newDefaultIme is empty when there is no candidate for the selected IME.
2986 if (imi != null && !TextUtils.isEmpty(newDefaultIme)) {
2987 String subtypeHashCode = mSettings.getLastSubtypeForInputMethodLocked(newDefaultIme);
2988 if (subtypeHashCode != null) {
2989 try {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09002990 lastSubtypeId = InputMethodUtils.getSubtypeIdFromHashCode(
satok723a27e2010-11-11 14:58:11 +09002991 imi, Integer.valueOf(subtypeHashCode));
2992 } catch (NumberFormatException e) {
2993 Slog.w(TAG, "HashCode for subtype looks broken: " + subtypeHashCode, e);
2994 }
2995 }
2996 }
2997 setSelectedInputMethodAndSubtypeLocked(imi, lastSubtypeId, false);
satokab751aa2010-09-14 19:17:36 +09002998 }
2999
satok4e4569d2010-11-19 18:45:53 +09003000 // If there are no selected shortcuts, tries finding the most applicable ones.
3001 private Pair<InputMethodInfo, InputMethodSubtype>
3002 findLastResortApplicableShortcutInputMethodAndSubtypeLocked(String mode) {
3003 List<InputMethodInfo> imis = mSettings.getEnabledInputMethodListLocked();
3004 InputMethodInfo mostApplicableIMI = null;
satokcd7cd292010-11-20 15:46:23 +09003005 InputMethodSubtype mostApplicableSubtype = null;
satok4e4569d2010-11-19 18:45:53 +09003006 boolean foundInSystemIME = false;
3007
3008 // Search applicable subtype for each InputMethodInfo
3009 for (InputMethodInfo imi: imis) {
satok7599a7f2010-12-22 13:45:23 +09003010 final String imiId = imi.getId();
3011 if (foundInSystemIME && !imiId.equals(mCurMethodId)) {
3012 continue;
3013 }
satokcd7cd292010-11-20 15:46:23 +09003014 InputMethodSubtype subtype = null;
satokdf31ae62011-01-15 06:19:44 +09003015 final List<InputMethodSubtype> enabledSubtypes =
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003016 mSettings.getEnabledInputMethodSubtypeListLocked(mContext, imi, true);
satokdf31ae62011-01-15 06:19:44 +09003017 // 1. Search by the current subtype's locale from enabledSubtypes.
satok4e4569d2010-11-19 18:45:53 +09003018 if (mCurrentSubtype != null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003019 subtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
satokdf31ae62011-01-15 06:19:44 +09003020 mRes, enabledSubtypes, mode, mCurrentSubtype.getLocale(), false);
satok4e4569d2010-11-19 18:45:53 +09003021 }
satokdf31ae62011-01-15 06:19:44 +09003022 // 2. Search by the system locale from enabledSubtypes.
3023 // 3. Search the first enabled subtype matched with mode from enabledSubtypes.
satokcd7cd292010-11-20 15:46:23 +09003024 if (subtype == null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003025 subtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
satokdf31ae62011-01-15 06:19:44 +09003026 mRes, enabledSubtypes, mode, null, true);
satok4e4569d2010-11-19 18:45:53 +09003027 }
satoka86f5e42011-09-02 17:12:42 +09003028 final ArrayList<InputMethodSubtype> overridingImplicitlyEnabledSubtypes =
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003029 InputMethodUtils.getOverridingImplicitlyEnabledSubtypes(imi, mode);
satoka86f5e42011-09-02 17:12:42 +09003030 final ArrayList<InputMethodSubtype> subtypesForSearch =
3031 overridingImplicitlyEnabledSubtypes.isEmpty()
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003032 ? InputMethodUtils.getSubtypes(imi)
3033 : overridingImplicitlyEnabledSubtypes;
satok7599a7f2010-12-22 13:45:23 +09003034 // 4. Search by the current subtype's locale from all subtypes.
3035 if (subtype == null && mCurrentSubtype != null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003036 subtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
satoka86f5e42011-09-02 17:12:42 +09003037 mRes, subtypesForSearch, mode, mCurrentSubtype.getLocale(), false);
satok7599a7f2010-12-22 13:45:23 +09003038 }
3039 // 5. Search by the system locale from all subtypes.
3040 // 6. Search the first enabled subtype matched with mode from all subtypes.
satokcd7cd292010-11-20 15:46:23 +09003041 if (subtype == null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003042 subtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
satoka86f5e42011-09-02 17:12:42 +09003043 mRes, subtypesForSearch, mode, null, true);
satok4e4569d2010-11-19 18:45:53 +09003044 }
satokcd7cd292010-11-20 15:46:23 +09003045 if (subtype != null) {
satok7599a7f2010-12-22 13:45:23 +09003046 if (imiId.equals(mCurMethodId)) {
satok4e4569d2010-11-19 18:45:53 +09003047 // The current input method is the most applicable IME.
3048 mostApplicableIMI = imi;
satokcd7cd292010-11-20 15:46:23 +09003049 mostApplicableSubtype = subtype;
satok4e4569d2010-11-19 18:45:53 +09003050 break;
satok7599a7f2010-12-22 13:45:23 +09003051 } else if (!foundInSystemIME) {
satok4e4569d2010-11-19 18:45:53 +09003052 // The system input method is 2nd applicable IME.
3053 mostApplicableIMI = imi;
satokcd7cd292010-11-20 15:46:23 +09003054 mostApplicableSubtype = subtype;
satok7599a7f2010-12-22 13:45:23 +09003055 if ((imi.getServiceInfo().applicationInfo.flags
3056 & ApplicationInfo.FLAG_SYSTEM) != 0) {
3057 foundInSystemIME = true;
3058 }
satok4e4569d2010-11-19 18:45:53 +09003059 }
3060 }
3061 }
3062 if (DEBUG) {
satokcd7cd292010-11-20 15:46:23 +09003063 if (mostApplicableIMI != null) {
3064 Slog.w(TAG, "Most applicable shortcut input method was:"
3065 + mostApplicableIMI.getId());
3066 if (mostApplicableSubtype != null) {
3067 Slog.w(TAG, "Most applicable shortcut input method subtype was:"
3068 + "," + mostApplicableSubtype.getMode() + ","
3069 + mostApplicableSubtype.getLocale());
3070 }
3071 }
satok4e4569d2010-11-19 18:45:53 +09003072 }
satokcd7cd292010-11-20 15:46:23 +09003073 if (mostApplicableIMI != null) {
satok4e4569d2010-11-19 18:45:53 +09003074 return new Pair<InputMethodInfo, InputMethodSubtype> (mostApplicableIMI,
satokcd7cd292010-11-20 15:46:23 +09003075 mostApplicableSubtype);
satok4e4569d2010-11-19 18:45:53 +09003076 } else {
3077 return null;
3078 }
3079 }
3080
satokab751aa2010-09-14 19:17:36 +09003081 /**
3082 * @return Return the current subtype of this input method.
3083 */
satok42c5a162011-05-26 16:46:14 +09003084 @Override
satokab751aa2010-09-14 19:17:36 +09003085 public InputMethodSubtype getCurrentInputMethodSubtype() {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003086 // TODO: Make this work even for non-current users?
3087 if (!calledFromValidUser()) {
3088 return null;
3089 }
3090 synchronized (mMethodMap) {
3091 return getCurrentInputMethodSubtypeLocked();
3092 }
3093 }
3094
3095 private InputMethodSubtype getCurrentInputMethodSubtypeLocked() {
satokfdf419e2012-05-08 16:52:08 +09003096 if (mCurMethodId == null) {
3097 return null;
3098 }
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003099 final boolean subtypeIsSelected = mSettings.isSubtypeSelected();
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003100 final InputMethodInfo imi = mMethodMap.get(mCurMethodId);
3101 if (imi == null || imi.getSubtypeCount() == 0) {
3102 return null;
satok4e4569d2010-11-19 18:45:53 +09003103 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003104 if (!subtypeIsSelected || mCurrentSubtype == null
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003105 || !InputMethodUtils.isValidSubtypeId(imi, mCurrentSubtype.hashCode())) {
3106 int subtypeId = mSettings.getSelectedInputMethodSubtypeId(mCurMethodId);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003107 if (subtypeId == NOT_A_SUBTYPE_ID) {
3108 // If there are no selected subtypes, the framework will try to find
3109 // the most applicable subtype from explicitly or implicitly enabled
3110 // subtypes.
3111 List<InputMethodSubtype> explicitlyOrImplicitlyEnabledSubtypes =
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003112 mSettings.getEnabledInputMethodSubtypeListLocked(mContext, imi, true);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003113 // If there is only one explicitly or implicitly enabled subtype,
3114 // just returns it.
3115 if (explicitlyOrImplicitlyEnabledSubtypes.size() == 1) {
3116 mCurrentSubtype = explicitlyOrImplicitlyEnabledSubtypes.get(0);
3117 } else if (explicitlyOrImplicitlyEnabledSubtypes.size() > 1) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003118 mCurrentSubtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003119 mRes, explicitlyOrImplicitlyEnabledSubtypes,
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003120 InputMethodUtils.SUBTYPE_MODE_KEYBOARD, null, true);
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003121 if (mCurrentSubtype == null) {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003122 mCurrentSubtype = InputMethodUtils.findLastResortApplicableSubtypeLocked(
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003123 mRes, explicitlyOrImplicitlyEnabledSubtypes, null, null,
3124 true);
satok4e4569d2010-11-19 18:45:53 +09003125 }
satok3ef8b292010-11-23 06:06:29 +09003126 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003127 } else {
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003128 mCurrentSubtype = InputMethodUtils.getSubtypes(imi).get(subtypeId);
satok8fbb1e82010-11-02 23:15:58 +09003129 }
3130 }
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003131 return mCurrentSubtype;
satokab751aa2010-09-14 19:17:36 +09003132 }
3133
satokf3db1af2010-11-23 13:34:33 +09003134 private void addShortcutInputMethodAndSubtypes(InputMethodInfo imi,
3135 InputMethodSubtype subtype) {
3136 if (mShortcutInputMethodsAndSubtypes.containsKey(imi)) {
3137 mShortcutInputMethodsAndSubtypes.get(imi).add(subtype);
3138 } else {
3139 ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>();
3140 subtypes.add(subtype);
3141 mShortcutInputMethodsAndSubtypes.put(imi, subtypes);
3142 }
3143 }
3144
satok4e4569d2010-11-19 18:45:53 +09003145 // TODO: We should change the return type from List to List<Parcelable>
satokdbf29502011-08-25 15:28:23 +09003146 @SuppressWarnings("rawtypes")
satoke7c6998e2011-06-03 17:57:59 +09003147 @Override
satok4e4569d2010-11-19 18:45:53 +09003148 public List getShortcutInputMethodsAndSubtypes() {
3149 synchronized (mMethodMap) {
satok3da92232011-01-11 22:46:30 +09003150 ArrayList<Object> ret = new ArrayList<Object>();
satokf3db1af2010-11-23 13:34:33 +09003151 if (mShortcutInputMethodsAndSubtypes.size() == 0) {
satok4e4569d2010-11-19 18:45:53 +09003152 // If there are no selected shortcut subtypes, the framework will try to find
3153 // the most applicable subtype from all subtypes whose mode is
3154 // SUBTYPE_MODE_VOICE. This is an exceptional case, so we will hardcode the mode.
satokf3db1af2010-11-23 13:34:33 +09003155 Pair<InputMethodInfo, InputMethodSubtype> info =
3156 findLastResortApplicableShortcutInputMethodAndSubtypeLocked(
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003157 InputMethodUtils.SUBTYPE_MODE_VOICE);
satok7599a7f2010-12-22 13:45:23 +09003158 if (info != null) {
satok3da92232011-01-11 22:46:30 +09003159 ret.add(info.first);
3160 ret.add(info.second);
satok7599a7f2010-12-22 13:45:23 +09003161 }
satok3da92232011-01-11 22:46:30 +09003162 return ret;
satokf3db1af2010-11-23 13:34:33 +09003163 }
satokf3db1af2010-11-23 13:34:33 +09003164 for (InputMethodInfo imi: mShortcutInputMethodsAndSubtypes.keySet()) {
3165 ret.add(imi);
3166 for (InputMethodSubtype subtype: mShortcutInputMethodsAndSubtypes.get(imi)) {
3167 ret.add(subtype);
satok4e4569d2010-11-19 18:45:53 +09003168 }
3169 }
satokf3db1af2010-11-23 13:34:33 +09003170 return ret;
satok4e4569d2010-11-19 18:45:53 +09003171 }
3172 }
3173
satok42c5a162011-05-26 16:46:14 +09003174 @Override
satokb66d2872010-11-10 01:04:04 +09003175 public boolean setCurrentInputMethodSubtype(InputMethodSubtype subtype) {
Satoshi Kataoka4e1ab152012-09-13 21:34:20 +09003176 // TODO: Make this work even for non-current users?
3177 if (!calledFromValidUser()) {
3178 return false;
3179 }
satokb66d2872010-11-10 01:04:04 +09003180 synchronized (mMethodMap) {
3181 if (subtype != null && mCurMethodId != null) {
3182 InputMethodInfo imi = mMethodMap.get(mCurMethodId);
Satoshi Kataoka8e303cc2013-01-11 15:55:28 +09003183 int subtypeId = InputMethodUtils.getSubtypeIdFromHashCode(imi, subtype.hashCode());
satokb66d2872010-11-10 01:04:04 +09003184 if (subtypeId != NOT_A_SUBTYPE_ID) {
3185 setInputMethodLocked(mCurMethodId, subtypeId);
3186 return true;
3187 }
3188 }
3189 return false;
3190 }
3191 }
3192
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +09003193 // TODO: Cache the state for each user and reset when the cached user is removed.
satoke7c6998e2011-06-03 17:57:59 +09003194 private static class InputMethodFileManager {
3195 private static final String SYSTEM_PATH = "system";
3196 private static final String INPUT_METHOD_PATH = "inputmethod";
3197 private static final String ADDITIONAL_SUBTYPES_FILE_NAME = "subtypes.xml";
3198 private static final String NODE_SUBTYPES = "subtypes";
3199 private static final String NODE_SUBTYPE = "subtype";
3200 private static final String NODE_IMI = "imi";
3201 private static final String ATTR_ID = "id";
3202 private static final String ATTR_LABEL = "label";
3203 private static final String ATTR_ICON = "icon";
3204 private static final String ATTR_IME_SUBTYPE_LOCALE = "imeSubtypeLocale";
3205 private static final String ATTR_IME_SUBTYPE_MODE = "imeSubtypeMode";
3206 private static final String ATTR_IME_SUBTYPE_EXTRA_VALUE = "imeSubtypeExtraValue";
3207 private static final String ATTR_IS_AUXILIARY = "isAuxiliary";
3208 private final AtomicFile mAdditionalInputMethodSubtypeFile;
3209 private final HashMap<String, InputMethodInfo> mMethodMap;
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003210 private final HashMap<String, List<InputMethodSubtype>> mAdditionalSubtypesMap =
satoke7c6998e2011-06-03 17:57:59 +09003211 new HashMap<String, List<InputMethodSubtype>>();
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +09003212 public InputMethodFileManager(HashMap<String, InputMethodInfo> methodMap, int userId) {
satoke7c6998e2011-06-03 17:57:59 +09003213 if (methodMap == null) {
3214 throw new NullPointerException("methodMap is null");
3215 }
3216 mMethodMap = methodMap;
Satoshi Kataoka5ade83b2012-09-26 22:59:41 +09003217 final File systemDir = userId == UserHandle.USER_OWNER
3218 ? new File(Environment.getDataDirectory(), SYSTEM_PATH)
3219 : Environment.getUserSystemDirectory(userId);
satoke7c6998e2011-06-03 17:57:59 +09003220 final File inputMethodDir = new File(systemDir, INPUT_METHOD_PATH);
3221 if (!inputMethodDir.mkdirs()) {
3222 Slog.w(TAG, "Couldn't create dir.: " + inputMethodDir.getAbsolutePath());
3223 }
3224 final File subtypeFile = new File(inputMethodDir, ADDITIONAL_SUBTYPES_FILE_NAME);
3225 mAdditionalInputMethodSubtypeFile = new AtomicFile(subtypeFile);
3226 if (!subtypeFile.exists()) {
3227 // If "subtypes.xml" doesn't exist, create a blank file.
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003228 writeAdditionalInputMethodSubtypes(
3229 mAdditionalSubtypesMap, mAdditionalInputMethodSubtypeFile, methodMap);
satoke7c6998e2011-06-03 17:57:59 +09003230 } else {
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003231 readAdditionalInputMethodSubtypes(
3232 mAdditionalSubtypesMap, mAdditionalInputMethodSubtypeFile);
satoke7c6998e2011-06-03 17:57:59 +09003233 }
3234 }
3235
3236 private void deleteAllInputMethodSubtypes(String imiId) {
3237 synchronized (mMethodMap) {
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003238 mAdditionalSubtypesMap.remove(imiId);
3239 writeAdditionalInputMethodSubtypes(
3240 mAdditionalSubtypesMap, mAdditionalInputMethodSubtypeFile, mMethodMap);
satoke7c6998e2011-06-03 17:57:59 +09003241 }
3242 }
3243
3244 public void addInputMethodSubtypes(
satok4a28bde2011-06-29 21:03:40 +09003245 InputMethodInfo imi, InputMethodSubtype[] additionalSubtypes) {
satoke7c6998e2011-06-03 17:57:59 +09003246 synchronized (mMethodMap) {
3247 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>();
3248 final int N = additionalSubtypes.length;
3249 for (int i = 0; i < N; ++i) {
3250 final InputMethodSubtype subtype = additionalSubtypes[i];
satoked2b24e2011-08-31 18:03:21 +09003251 if (!subtypes.contains(subtype)) {
satoke7c6998e2011-06-03 17:57:59 +09003252 subtypes.add(subtype);
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003253 } else {
3254 Slog.w(TAG, "Duplicated subtype definition found: "
3255 + subtype.getLocale() + ", " + subtype.getMode());
satoke7c6998e2011-06-03 17:57:59 +09003256 }
3257 }
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003258 mAdditionalSubtypesMap.put(imi.getId(), subtypes);
3259 writeAdditionalInputMethodSubtypes(
3260 mAdditionalSubtypesMap, mAdditionalInputMethodSubtypeFile, mMethodMap);
satoke7c6998e2011-06-03 17:57:59 +09003261 }
3262 }
3263
3264 public HashMap<String, List<InputMethodSubtype>> getAllAdditionalInputMethodSubtypes() {
3265 synchronized (mMethodMap) {
Satoshi Kataokae62e6d82012-07-02 18:45:43 +09003266 return mAdditionalSubtypesMap;
satoke7c6998e2011-06-03 17:57:59 +09003267 }
3268 }
3269
3270 private static void writeAdditionalInputMethodSubtypes(
3271 HashMap<String, List<InputMethodSubtype>> allSubtypes, AtomicFile subtypesFile,
3272 HashMap<String, InputMethodInfo> methodMap) {
3273 // Safety net for the case that this function is called before methodMap is set.
3274 final boolean isSetMethodMap = methodMap != null && methodMap.size() > 0;
3275 FileOutputStream fos = null;
3276 try {
3277 fos = subtypesFile.startWrite();
3278 final XmlSerializer out = new FastXmlSerializer();
3279 out.setOutput(fos, "utf-8");
3280 out.startDocument(null, true);
3281 out.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
3282 out.startTag(null, NODE_SUBTYPES);
3283 for (String imiId : allSubtypes.keySet()) {
3284 if (isSetMethodMap && !methodMap.containsKey(imiId)) {
3285 Slog.w(TAG, "IME uninstalled or not valid.: " + imiId);
3286 continue;
3287 }
3288 out.startTag(null, NODE_IMI);
3289 out.attribute(null, ATTR_ID, imiId);
3290 final List<InputMethodSubtype> subtypesList = allSubtypes.get(imiId);
3291 final int N = subtypesList.size();
3292 for (int i = 0; i < N; ++i) {
3293 final InputMethodSubtype subtype = subtypesList.get(i);
3294 out.startTag(null, NODE_SUBTYPE);
3295 out.attribute(null, ATTR_ICON, String.valueOf(subtype.getIconResId()));
3296 out.attribute(null, ATTR_LABEL, String.valueOf(subtype.getNameResId()));
3297 out.attribute(null, ATTR_IME_SUBTYPE_LOCALE, subtype.getLocale());
3298 out.attribute(null, ATTR_IME_SUBTYPE_MODE, subtype.getMode());
3299 out.attribute(null, ATTR_IME_SUBTYPE_EXTRA_VALUE, subtype.getExtraValue());
3300 out.attribute(null, ATTR_IS_AUXILIARY,
3301 String.valueOf(subtype.isAuxiliary() ? 1 : 0));
3302 out.endTag(null, NODE_SUBTYPE);
3303 }
3304 out.endTag(null, NODE_IMI);
3305 }
3306 out.endTag(null, NODE_SUBTYPES);
3307 out.endDocument();
3308 subtypesFile.finishWrite(fos);
3309 } catch (java.io.IOException e) {
3310 Slog.w(TAG, "Error writing subtypes", e);
3311 if (fos != null) {
3312 subtypesFile.failWrite(fos);
3313 }
3314 }
3315 }
3316
3317 private static void readAdditionalInputMethodSubtypes(
3318 HashMap<String, List<InputMethodSubtype>> allSubtypes, AtomicFile subtypesFile) {
3319 if (allSubtypes == null || subtypesFile == null) return;
3320 allSubtypes.clear();
3321 FileInputStream fis = null;
3322 try {
3323 fis = subtypesFile.openRead();
3324 final XmlPullParser parser = Xml.newPullParser();
3325 parser.setInput(fis, null);
3326 int type = parser.getEventType();
3327 // Skip parsing until START_TAG
3328 while ((type = parser.next()) != XmlPullParser.START_TAG
3329 && type != XmlPullParser.END_DOCUMENT) {}
3330 String firstNodeName = parser.getName();
3331 if (!NODE_SUBTYPES.equals(firstNodeName)) {
3332 throw new XmlPullParserException("Xml doesn't start with subtypes");
3333 }
3334 final int depth =parser.getDepth();
3335 String currentImiId = null;
3336 ArrayList<InputMethodSubtype> tempSubtypesArray = null;
3337 while (((type = parser.next()) != XmlPullParser.END_TAG
3338 || parser.getDepth() > depth) && type != XmlPullParser.END_DOCUMENT) {
3339 if (type != XmlPullParser.START_TAG)
3340 continue;
3341 final String nodeName = parser.getName();
3342 if (NODE_IMI.equals(nodeName)) {
3343 currentImiId = parser.getAttributeValue(null, ATTR_ID);
3344 if (TextUtils.isEmpty(currentImiId)) {
3345 Slog.w(TAG, "Invalid imi id found in subtypes.xml");
3346 continue;
3347 }
3348 tempSubtypesArray = new ArrayList<InputMethodSubtype>();
3349 allSubtypes.put(currentImiId, tempSubtypesArray);
3350 } else if (NODE_SUBTYPE.equals(nodeName)) {
3351 if (TextUtils.isEmpty(currentImiId) || tempSubtypesArray == null) {
3352 Slog.w(TAG, "IME uninstalled or not valid.: " + currentImiId);
3353 continue;
3354 }
3355 final int icon = Integer.valueOf(
3356 parser.getAttributeValue(null, ATTR_ICON));
3357 final int label = Integer.valueOf(
3358 parser.getAttributeValue(null, ATTR_LABEL));
3359 final String imeSubtypeLocale =
3360 parser.getAttributeValue(null, ATTR_IME_SUBTYPE_LOCALE);
3361 final String imeSubtypeMode =
3362 parser.getAttributeValue(null, ATTR_IME_SUBTYPE_MODE);
3363 final String imeSubtypeExtraValue =
3364 parser.getAttributeValue(null, ATTR_IME_SUBTYPE_EXTRA_VALUE);
satok4a28bde2011-06-29 21:03:40 +09003365 final boolean isAuxiliary = "1".equals(String.valueOf(
3366 parser.getAttributeValue(null, ATTR_IS_AUXILIARY)));
satoke7c6998e2011-06-03 17:57:59 +09003367 final InputMethodSubtype subtype =
3368 new InputMethodSubtype(label, icon, imeSubtypeLocale,
3369 imeSubtypeMode, imeSubtypeExtraValue, isAuxiliary);
3370 tempSubtypesArray.add(subtype);
3371 }
3372 }
3373 } catch (XmlPullParserException e) {
3374 Slog.w(TAG, "Error reading subtypes: " + e);
3375 return;
3376 } catch (java.io.IOException e) {
3377 Slog.w(TAG, "Error reading subtypes: " + e);
3378 return;
3379 } catch (NumberFormatException e) {
3380 Slog.w(TAG, "Error reading subtypes: " + e);
3381 return;
3382 } finally {
3383 if (fis != null) {
3384 try {
3385 fis.close();
3386 } catch (java.io.IOException e1) {
3387 Slog.w(TAG, "Failed to close.");
3388 }
3389 }
3390 }
3391 }
3392 }
3393
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003394 @Override
3395 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
3396 if (mContext.checkCallingOrSelfPermission(android.Manifest.permission.DUMP)
3397 != PackageManager.PERMISSION_GRANTED) {
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003398
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003399 pw.println("Permission Denial: can't dump InputMethodManager from from pid="
3400 + Binder.getCallingPid()
3401 + ", uid=" + Binder.getCallingUid());
3402 return;
3403 }
3404
3405 IInputMethod method;
3406 ClientState client;
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003407
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003408 final Printer p = new PrintWriterPrinter(pw);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003409
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003410 synchronized (mMethodMap) {
3411 p.println("Current Input Method Manager state:");
3412 int N = mMethodList.size();
3413 p.println(" Input Methods:");
3414 for (int i=0; i<N; i++) {
3415 InputMethodInfo info = mMethodList.get(i);
3416 p.println(" InputMethod #" + i + ":");
3417 info.dump(p, " ");
3418 }
3419 p.println(" Clients:");
3420 for (ClientState ci : mClients.values()) {
3421 p.println(" Client " + ci + ":");
3422 p.println(" client=" + ci.client);
3423 p.println(" inputContext=" + ci.inputContext);
3424 p.println(" sessionRequested=" + ci.sessionRequested);
3425 p.println(" curSession=" + ci.curSession);
3426 }
The Android Open Source Project10592532009-03-18 17:39:46 -07003427 p.println(" mCurMethodId=" + mCurMethodId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003428 client = mCurClient;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07003429 p.println(" mCurClient=" + client + " mCurSeq=" + mCurSeq);
3430 p.println(" mCurFocusedWindow=" + mCurFocusedWindow);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003431 p.println(" mCurId=" + mCurId + " mHaveConnect=" + mHaveConnection
3432 + " mBoundToMethod=" + mBoundToMethod);
3433 p.println(" mCurToken=" + mCurToken);
3434 p.println(" mCurIntent=" + mCurIntent);
3435 method = mCurMethod;
3436 p.println(" mCurMethod=" + mCurMethod);
3437 p.println(" mEnabledSession=" + mEnabledSession);
3438 p.println(" mShowRequested=" + mShowRequested
3439 + " mShowExplicitlyRequested=" + mShowExplicitlyRequested
3440 + " mShowForced=" + mShowForced
3441 + " mInputShown=" + mInputShown);
Dianne Hackborncc278702009-09-02 23:07:23 -07003442 p.println(" mSystemReady=" + mSystemReady + " mScreenOn=" + mScreenOn);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003443 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003444
Jeff Brownb88102f2010-09-08 11:49:43 -07003445 p.println(" ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003446 if (client != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003447 pw.flush();
3448 try {
3449 client.client.asBinder().dump(fd, args);
3450 } catch (RemoteException e) {
3451 p.println("Input method client dead: " + e);
3452 }
Jeff Brownb88102f2010-09-08 11:49:43 -07003453 } else {
3454 p.println("No input method client.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003455 }
Doug Zongkerab5c49c2009-12-04 10:31:43 -08003456
Jeff Brownb88102f2010-09-08 11:49:43 -07003457 p.println(" ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003458 if (method != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003459 pw.flush();
3460 try {
3461 method.asBinder().dump(fd, args);
3462 } catch (RemoteException e) {
3463 p.println("Input method service dead: " + e);
3464 }
Jeff Brownb88102f2010-09-08 11:49:43 -07003465 } else {
3466 p.println("No input method service.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003467 }
3468 }
3469}