blob: f6ccbc005a246249303416d02946c2acb2eef577 [file] [log] [blame]
/*
* Copyright (C) 2019 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.car.settings.testutils;
import android.provider.Settings;
import android.view.inputmethod.InputMethodInfo;
import android.view.inputmethod.InputMethodManager;
import android.view.inputmethod.InputMethodSubtype;
import androidx.annotation.Nullable;
import com.android.car.settings.inputmethod.InputMethodUtil;
import org.robolectric.RuntimeEnvironment;
import org.robolectric.annotation.Implementation;
import org.robolectric.annotation.Implements;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;
@Implements(value = InputMethodManager.class)
public class ShadowInputMethodManager extends org.robolectric.shadows.ShadowInputMethodManager {
private List<InputMethodInfo> mInputMethodList;
private Map<String, InputMethodInfo> mInputMethodMap;
private List<InputMethodSubtype> mInputMethodSubtypes;
public void setEnabledInputMethodList(@Nullable List<InputMethodInfo> inputMethodInfos) {
String concatenatedInputMethodIds = createInputMethodIdString(inputMethodInfos.stream().map(
imi -> imi.getId()).collect(Collectors.toList()).toArray(
new String[inputMethodInfos.size()]));
Settings.Secure.putString(RuntimeEnvironment.application.getContentResolver(),
Settings.Secure.ENABLED_INPUT_METHODS, concatenatedInputMethodIds);
addInputMethodInfosToMap(inputMethodInfos);
}
@Implementation
protected List<InputMethodInfo> getEnabledInputMethodList() {
List<InputMethodInfo> enabledInputMethodList = new ArrayList<>();
String inputMethodIdString = Settings.Secure.getString(
RuntimeEnvironment.application.getContentResolver(),
Settings.Secure.ENABLED_INPUT_METHODS);
if (inputMethodIdString == null || inputMethodIdString.isEmpty()) {
return enabledInputMethodList;
}
InputMethodUtil.sInputMethodSplitter.setString(inputMethodIdString);
while (InputMethodUtil.sInputMethodSplitter.hasNext()) {
enabledInputMethodList.add(mInputMethodMap.get(InputMethodUtil.sInputMethodSplitter
.next()));
}
return enabledInputMethodList;
}
public void setEnabledInputMethodSubtypeList(List<InputMethodSubtype> list) {
mInputMethodSubtypes = list;
}
@Implementation
protected List<InputMethodSubtype> getEnabledInputMethodSubtypeList(InputMethodInfo imi,
boolean allowsImplicitlySelectedSubtypes) {
return mInputMethodSubtypes;
}
public void setInputMethodList(List<InputMethodInfo> inputMethodInfos) {
mInputMethodList = inputMethodInfos;
if (inputMethodInfos == null) {
return;
}
addInputMethodInfosToMap(inputMethodInfos);
}
@Implementation
protected List<InputMethodInfo> getInputMethodList() {
return mInputMethodList;
}
private static String createInputMethodIdString(String... ids) {
int size = ids == null ? 0 : ids.length;
if (size == 1) {
return ids[0];
}
StringBuilder builder = new StringBuilder();
for (int i = 0; i < size; i++) {
builder.append(ids[i]);
if (i != size - 1) {
builder.append(InputMethodUtil.INPUT_METHOD_DELIMITER);
}
}
return builder.toString();
}
private void addInputMethodInfosToMap(List<InputMethodInfo> inputMethodInfos) {
if (mInputMethodMap == null || mInputMethodMap.size() == 0) {
mInputMethodMap = inputMethodInfos.stream().collect(Collectors.toMap(
InputMethodInfo::getId, imi -> imi));
return;
}
inputMethodInfos.forEach(imi -> {
mInputMethodMap.put(imi.getId(), imi);
});
}
}