mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
Remove unnecessary dictionary pack code
This commit is contained in:
parent
7de251b71d
commit
83ad0dcf94
@ -153,13 +153,6 @@
|
||||
</intent-filter>
|
||||
</receiver>
|
||||
|
||||
<receiver android:name="DictionaryPackInstallBroadcastReceiver"
|
||||
android:exported="false">
|
||||
<intent-filter>
|
||||
<action android:name="org.futo.inputmethod.dictionarypack.aosp.UNKNOWN_CLIENT"/>
|
||||
</intent-filter>
|
||||
</receiver>
|
||||
|
||||
<service
|
||||
android:name="androidx.work.impl.foreground.SystemForegroundService"
|
||||
android:foregroundServiceType="specialUse"
|
||||
|
@ -1,72 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2013 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 org.futo.inputmethod.dictionarypack;
|
||||
|
||||
/**
|
||||
* A class to group constants for dictionary pack usage.
|
||||
*
|
||||
* This class only defines constants. It should not make any references to outside code as far as
|
||||
* possible, as it's used to separate cleanly the keyboard code from the dictionary pack code; this
|
||||
* is needed in particular to cleanly compile regression tests.
|
||||
*/
|
||||
public class DictionaryPackConstants {
|
||||
/**
|
||||
* The root domain for the dictionary pack, upon which authorities and actions will append
|
||||
* their own distinctive strings.
|
||||
*/
|
||||
private static final String DICTIONARY_DOMAIN = "org.futo.inputmethod.dictionarypack.aosp";
|
||||
|
||||
/**
|
||||
* Authority for the ContentProvider protocol.
|
||||
*/
|
||||
// TODO: find some way to factorize this string with the one in the resources
|
||||
public static final String AUTHORITY = DICTIONARY_DOMAIN;
|
||||
|
||||
/**
|
||||
* The action of the intent for publishing that new dictionary data is available.
|
||||
*/
|
||||
// TODO: make this different across different packages. A suggested course of action is
|
||||
// to use the package name inside this string.
|
||||
// NOTE: The appended string should be uppercase like all other actions, but it's not for
|
||||
// historical reasons.
|
||||
public static final String NEW_DICTIONARY_INTENT_ACTION = DICTIONARY_DOMAIN + ".newdict";
|
||||
|
||||
/**
|
||||
* The action of the intent sent by the dictionary pack to ask for a client to make
|
||||
* itself known. This is used when the settings activity is brought up for a client the
|
||||
* dictionary pack does not know about.
|
||||
*/
|
||||
public static final String UNKNOWN_DICTIONARY_PROVIDER_CLIENT = DICTIONARY_DOMAIN
|
||||
+ ".UNKNOWN_CLIENT";
|
||||
|
||||
// In the above intents, the name of the string extra that contains the name of the client
|
||||
// we want information about.
|
||||
public static final String DICTIONARY_PROVIDER_CLIENT_EXTRA = "client";
|
||||
|
||||
/**
|
||||
* The action of the intent to tell the dictionary provider to update now.
|
||||
*/
|
||||
public static final String UPDATE_NOW_INTENT_ACTION = DICTIONARY_DOMAIN
|
||||
+ ".UPDATE_NOW";
|
||||
|
||||
/**
|
||||
* The intent action to inform the dictionary provider to initialize the db
|
||||
* and update now.
|
||||
*/
|
||||
public static final String INIT_AND_UPDATE_NOW_INTENT_ACTION = DICTIONARY_DOMAIN
|
||||
+ ".INIT_AND_UPDATE_NOW";
|
||||
}
|
@ -1,568 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2011 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 org.futo.inputmethod.latin;
|
||||
|
||||
import android.content.ContentProviderClient;
|
||||
import android.content.ContentResolver;
|
||||
import android.content.ContentValues;
|
||||
import android.content.Context;
|
||||
import android.content.res.AssetFileDescriptor;
|
||||
import android.database.Cursor;
|
||||
import android.net.Uri;
|
||||
import android.os.RemoteException;
|
||||
import android.text.TextUtils;
|
||||
import android.util.Log;
|
||||
|
||||
import org.futo.inputmethod.dictionarypack.DictionaryPackConstants;
|
||||
import org.futo.inputmethod.dictionarypack.MD5Calculator;
|
||||
import org.futo.inputmethod.latin.common.FileUtils;
|
||||
import org.futo.inputmethod.latin.define.DecoderSpecificConstants;
|
||||
import org.futo.inputmethod.latin.utils.DictionaryInfoUtils;
|
||||
import org.futo.inputmethod.latin.utils.DictionaryInfoUtils.DictionaryInfo;
|
||||
import org.futo.inputmethod.latin.utils.FileTransforms;
|
||||
import org.futo.inputmethod.latin.utils.MetadataFileUriGetter;
|
||||
|
||||
import java.io.BufferedInputStream;
|
||||
import java.io.BufferedOutputStream;
|
||||
import java.io.Closeable;
|
||||
import java.io.File;
|
||||
import java.io.FileInputStream;
|
||||
import java.io.FileNotFoundException;
|
||||
import java.io.FileOutputStream;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
import java.util.Locale;
|
||||
|
||||
/**
|
||||
* Group class for static methods to help with creation and getting of the binary dictionary
|
||||
* file from the dictionary provider
|
||||
*/
|
||||
public final class BinaryDictionaryFileDumper {
|
||||
private static final String TAG = BinaryDictionaryFileDumper.class.getSimpleName();
|
||||
private static final boolean DEBUG = false;
|
||||
|
||||
/**
|
||||
* The size of the temporary buffer to copy files.
|
||||
*/
|
||||
private static final int FILE_READ_BUFFER_SIZE = 8192;
|
||||
// TODO: make the following data common with the native code
|
||||
private static final byte[] MAGIC_NUMBER_VERSION_1 =
|
||||
new byte[] { (byte)0x78, (byte)0xB1, (byte)0x00, (byte)0x00 };
|
||||
private static final byte[] MAGIC_NUMBER_VERSION_2 =
|
||||
new byte[] { (byte)0x9B, (byte)0xC1, (byte)0x3A, (byte)0xFE };
|
||||
|
||||
private static final boolean SHOULD_VERIFY_MAGIC_NUMBER =
|
||||
DecoderSpecificConstants.SHOULD_VERIFY_MAGIC_NUMBER;
|
||||
private static final boolean SHOULD_VERIFY_CHECKSUM =
|
||||
DecoderSpecificConstants.SHOULD_VERIFY_CHECKSUM;
|
||||
|
||||
private static final String DICTIONARY_PROJECTION[] = { "id" };
|
||||
|
||||
private static final String QUERY_PARAMETER_MAY_PROMPT_USER = "mayPrompt";
|
||||
private static final String QUERY_PARAMETER_TRUE = "true";
|
||||
private static final String QUERY_PARAMETER_DELETE_RESULT = "result";
|
||||
private static final String QUERY_PARAMETER_SUCCESS = "success";
|
||||
private static final String QUERY_PARAMETER_FAILURE = "failure";
|
||||
|
||||
// Using protocol version 2 to communicate with the dictionary pack
|
||||
private static final String QUERY_PARAMETER_PROTOCOL = "protocol";
|
||||
private static final String QUERY_PARAMETER_PROTOCOL_VALUE = "2";
|
||||
|
||||
// The path fragment to append after the client ID for dictionary info requests.
|
||||
private static final String QUERY_PATH_DICT_INFO = "dict";
|
||||
// The path fragment to append after the client ID for dictionary datafile requests.
|
||||
private static final String QUERY_PATH_DATAFILE = "datafile";
|
||||
// The path fragment to append after the client ID for updating the metadata URI.
|
||||
private static final String QUERY_PATH_METADATA = "metadata";
|
||||
private static final String INSERT_METADATA_CLIENT_ID_COLUMN = "clientid";
|
||||
private static final String INSERT_METADATA_METADATA_URI_COLUMN = "uri";
|
||||
private static final String INSERT_METADATA_METADATA_ADDITIONAL_ID_COLUMN = "additionalid";
|
||||
|
||||
// Prevents this class to be accidentally instantiated.
|
||||
private BinaryDictionaryFileDumper() {
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns a URI builder pointing to the dictionary pack.
|
||||
*
|
||||
* This creates a URI builder able to build a URI pointing to the dictionary
|
||||
* pack content provider for a specific dictionary id.
|
||||
*/
|
||||
public static Uri.Builder getProviderUriBuilder(final String path) {
|
||||
return new Uri.Builder().scheme(ContentResolver.SCHEME_CONTENT)
|
||||
.authority(DictionaryPackConstants.AUTHORITY).appendPath(path);
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the content URI builder for a specified type.
|
||||
*
|
||||
* Supported types include QUERY_PATH_DICT_INFO, which takes the locale as
|
||||
* the extraPath argument, and QUERY_PATH_DATAFILE, which needs a wordlist ID
|
||||
* as the extraPath argument.
|
||||
*
|
||||
* @param clientId the clientId to use
|
||||
* @param contentProviderClient the instance of content provider client
|
||||
* @param queryPathType the path element encoding the type
|
||||
* @param extraPath optional extra argument for this type (typically word list id)
|
||||
* @return a builder that can build the URI for the best supported protocol version
|
||||
* @throws RemoteException if the client can't be contacted
|
||||
*/
|
||||
private static Uri.Builder getContentUriBuilderForType(final String clientId,
|
||||
final ContentProviderClient contentProviderClient, final String queryPathType,
|
||||
final String extraPath) throws RemoteException {
|
||||
// Check whether protocol v2 is supported by building a v2 URI and calling getType()
|
||||
// on it. If this returns null, v2 is not supported.
|
||||
final Uri.Builder uriV2Builder = getProviderUriBuilder(clientId);
|
||||
uriV2Builder.appendPath(queryPathType);
|
||||
uriV2Builder.appendPath(extraPath);
|
||||
uriV2Builder.appendQueryParameter(QUERY_PARAMETER_PROTOCOL,
|
||||
QUERY_PARAMETER_PROTOCOL_VALUE);
|
||||
if (null != contentProviderClient.getType(uriV2Builder.build())) return uriV2Builder;
|
||||
// Protocol v2 is not supported, so create and return the protocol v1 uri.
|
||||
return getProviderUriBuilder(extraPath);
|
||||
}
|
||||
|
||||
/**
|
||||
* Queries a content provider for the list of word lists for a specific locale
|
||||
* available to copy into Latin IME.
|
||||
*/
|
||||
private static List<WordListInfo> getWordListWordListInfos(final Locale locale,
|
||||
final Context context, final boolean hasDefaultWordList) {
|
||||
final String clientId = context.getString(R.string.dictionary_pack_client_id);
|
||||
final ContentProviderClient client = context.getContentResolver().
|
||||
acquireContentProviderClient(getProviderUriBuilder("").build());
|
||||
if (null == client) return Collections.<WordListInfo>emptyList();
|
||||
Cursor cursor = null;
|
||||
try {
|
||||
final Uri.Builder builder = getContentUriBuilderForType(clientId, client,
|
||||
QUERY_PATH_DICT_INFO, locale.toString());
|
||||
if (!hasDefaultWordList) {
|
||||
builder.appendQueryParameter(QUERY_PARAMETER_MAY_PROMPT_USER,
|
||||
QUERY_PARAMETER_TRUE);
|
||||
}
|
||||
final Uri queryUri = builder.build();
|
||||
final boolean isProtocolV2 = (QUERY_PARAMETER_PROTOCOL_VALUE.equals(
|
||||
queryUri.getQueryParameter(QUERY_PARAMETER_PROTOCOL)));
|
||||
|
||||
cursor = client.query(queryUri, DICTIONARY_PROJECTION, null, null, null);
|
||||
if (isProtocolV2 && null == cursor) {
|
||||
reinitializeClientRecordInDictionaryContentProvider(context, client, clientId);
|
||||
cursor = client.query(queryUri, DICTIONARY_PROJECTION, null, null, null);
|
||||
}
|
||||
if (null == cursor) return Collections.<WordListInfo>emptyList();
|
||||
if (cursor.getCount() <= 0 || !cursor.moveToFirst()) {
|
||||
return Collections.<WordListInfo>emptyList();
|
||||
}
|
||||
final ArrayList<WordListInfo> list = new ArrayList<>();
|
||||
do {
|
||||
final String wordListId = cursor.getString(0);
|
||||
final String wordListLocale = cursor.getString(1);
|
||||
final String wordListRawChecksum = cursor.getString(2);
|
||||
if (TextUtils.isEmpty(wordListId)) continue;
|
||||
list.add(new WordListInfo(wordListId, wordListLocale, wordListRawChecksum));
|
||||
} while (cursor.moveToNext());
|
||||
return list;
|
||||
} catch (RemoteException e) {
|
||||
// The documentation is unclear as to in which cases this may happen, but it probably
|
||||
// happens when the content provider got suddenly killed because it crashed or because
|
||||
// the user disabled it through Settings.
|
||||
Log.e(TAG, "RemoteException: communication with the dictionary pack cut", e);
|
||||
return Collections.<WordListInfo>emptyList();
|
||||
} catch (Exception e) {
|
||||
// A crash here is dangerous because crashing here would brick any encrypted device -
|
||||
// we need the keyboard to be up and working to enter the password, so we don't want
|
||||
// to die no matter what. So let's be as safe as possible.
|
||||
Log.e(TAG, "Unexpected exception communicating with the dictionary pack", e);
|
||||
return Collections.<WordListInfo>emptyList();
|
||||
} finally {
|
||||
if (null != cursor) {
|
||||
cursor.close();
|
||||
}
|
||||
client.release();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Helper method to encapsulate exception handling.
|
||||
*/
|
||||
private static AssetFileDescriptor openAssetFileDescriptor(
|
||||
final ContentProviderClient providerClient, final Uri uri) {
|
||||
try {
|
||||
return providerClient.openAssetFile(uri, "r");
|
||||
} catch (FileNotFoundException e) {
|
||||
// I don't want to log the word list URI here for security concerns. The exception
|
||||
// contains the name of the file, so let's not pass it to Log.e here.
|
||||
Log.e(TAG, "Could not find a word list from the dictionary provider."
|
||||
/* intentionally don't pass the exception (see comment above) */);
|
||||
return null;
|
||||
} catch (RemoteException e) {
|
||||
Log.e(TAG, "Can't communicate with the dictionary pack", e);
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Stages a word list the id of which is passed as an argument. This will write the file
|
||||
* to the cache file name designated by its id and locale, overwriting it if already present
|
||||
* and creating it (and its containing directory) if necessary.
|
||||
*/
|
||||
private static void installWordListToStaging(final String wordlistId, final String locale,
|
||||
final String rawChecksum, final ContentProviderClient providerClient,
|
||||
final Context context) {
|
||||
final int COMPRESSED_CRYPTED_COMPRESSED = 0;
|
||||
final int CRYPTED_COMPRESSED = 1;
|
||||
final int COMPRESSED_CRYPTED = 2;
|
||||
final int COMPRESSED_ONLY = 3;
|
||||
final int CRYPTED_ONLY = 4;
|
||||
final int NONE = 5;
|
||||
final int MODE_MIN = COMPRESSED_CRYPTED_COMPRESSED;
|
||||
final int MODE_MAX = NONE;
|
||||
|
||||
final String clientId = context.getString(R.string.dictionary_pack_client_id);
|
||||
final Uri.Builder wordListUriBuilder;
|
||||
try {
|
||||
wordListUriBuilder = getContentUriBuilderForType(clientId,
|
||||
providerClient, QUERY_PATH_DATAFILE, wordlistId /* extraPath */);
|
||||
} catch (RemoteException e) {
|
||||
Log.e(TAG, "Can't communicate with the dictionary pack", e);
|
||||
return;
|
||||
}
|
||||
final String finalFileName =
|
||||
DictionaryInfoUtils.getStagingFileName(wordlistId, locale, context);
|
||||
String tempFileName;
|
||||
try {
|
||||
tempFileName = BinaryDictionaryGetter.getTempFileName(wordlistId, context);
|
||||
} catch (IOException e) {
|
||||
Log.e(TAG, "Can't open the temporary file", e);
|
||||
return;
|
||||
}
|
||||
|
||||
for (int mode = MODE_MIN; mode <= MODE_MAX; ++mode) {
|
||||
final InputStream originalSourceStream;
|
||||
InputStream inputStream = null;
|
||||
InputStream uncompressedStream = null;
|
||||
InputStream decryptedStream = null;
|
||||
BufferedInputStream bufferedInputStream = null;
|
||||
File outputFile = null;
|
||||
BufferedOutputStream bufferedOutputStream = null;
|
||||
AssetFileDescriptor afd = null;
|
||||
final Uri wordListUri = wordListUriBuilder.build();
|
||||
try {
|
||||
// Open input.
|
||||
afd = openAssetFileDescriptor(providerClient, wordListUri);
|
||||
// If we can't open it at all, don't even try a number of times.
|
||||
if (null == afd) return;
|
||||
originalSourceStream = afd.createInputStream();
|
||||
// Open output.
|
||||
outputFile = new File(tempFileName);
|
||||
// Just to be sure, delete the file. This may fail silently, and return false: this
|
||||
// is the right thing to do, as we just want to continue anyway.
|
||||
outputFile.delete();
|
||||
// Get the appropriate decryption method for this try
|
||||
switch (mode) {
|
||||
case COMPRESSED_CRYPTED_COMPRESSED:
|
||||
uncompressedStream =
|
||||
FileTransforms.getUncompressedStream(originalSourceStream);
|
||||
decryptedStream = FileTransforms.getDecryptedStream(uncompressedStream);
|
||||
inputStream = FileTransforms.getUncompressedStream(decryptedStream);
|
||||
break;
|
||||
case CRYPTED_COMPRESSED:
|
||||
decryptedStream = FileTransforms.getDecryptedStream(originalSourceStream);
|
||||
inputStream = FileTransforms.getUncompressedStream(decryptedStream);
|
||||
break;
|
||||
case COMPRESSED_CRYPTED:
|
||||
uncompressedStream =
|
||||
FileTransforms.getUncompressedStream(originalSourceStream);
|
||||
inputStream = FileTransforms.getDecryptedStream(uncompressedStream);
|
||||
break;
|
||||
case COMPRESSED_ONLY:
|
||||
inputStream = FileTransforms.getUncompressedStream(originalSourceStream);
|
||||
break;
|
||||
case CRYPTED_ONLY:
|
||||
inputStream = FileTransforms.getDecryptedStream(originalSourceStream);
|
||||
break;
|
||||
case NONE:
|
||||
inputStream = originalSourceStream;
|
||||
break;
|
||||
}
|
||||
bufferedInputStream = new BufferedInputStream(inputStream);
|
||||
bufferedOutputStream = new BufferedOutputStream(new FileOutputStream(outputFile));
|
||||
checkMagicAndCopyFileTo(bufferedInputStream, bufferedOutputStream);
|
||||
bufferedOutputStream.flush();
|
||||
bufferedOutputStream.close();
|
||||
|
||||
if (SHOULD_VERIFY_CHECKSUM) {
|
||||
final String actualRawChecksum = MD5Calculator.checksum(
|
||||
new BufferedInputStream(new FileInputStream(outputFile)));
|
||||
Log.i(TAG, "Computed checksum for downloaded dictionary. Expected = "
|
||||
+ rawChecksum + " ; actual = " + actualRawChecksum);
|
||||
if (!TextUtils.isEmpty(rawChecksum) && !rawChecksum.equals(actualRawChecksum)) {
|
||||
throw new IOException(
|
||||
"Could not decode the file correctly : checksum differs");
|
||||
}
|
||||
}
|
||||
|
||||
// move the output file to the final staging file.
|
||||
final File finalFile = new File(finalFileName);
|
||||
if (!FileUtils.renameTo(outputFile, finalFile)) {
|
||||
Log.e(TAG, String.format("Failed to rename from %s to %s.",
|
||||
outputFile.getAbsoluteFile(), finalFile.getAbsoluteFile()));
|
||||
}
|
||||
|
||||
wordListUriBuilder.appendQueryParameter(QUERY_PARAMETER_DELETE_RESULT,
|
||||
QUERY_PARAMETER_SUCCESS);
|
||||
if (0 >= providerClient.delete(wordListUriBuilder.build(), null, null)) {
|
||||
Log.e(TAG, "Could not have the dictionary pack delete a word list");
|
||||
}
|
||||
Log.d(TAG, "Successfully copied file for wordlist ID " + wordlistId);
|
||||
// Success! Close files (through the finally{} clause) and return.
|
||||
return;
|
||||
} catch (Exception e) {
|
||||
if (DEBUG) {
|
||||
Log.e(TAG, "Can't open word list in mode " + mode, e);
|
||||
}
|
||||
if (null != outputFile) {
|
||||
// This may or may not fail. The file may not have been created if the
|
||||
// exception was thrown before it could be. Hence, both failure and
|
||||
// success are expected outcomes, so we don't check the return value.
|
||||
outputFile.delete();
|
||||
}
|
||||
// Try the next method.
|
||||
} finally {
|
||||
// Ignore exceptions while closing files.
|
||||
closeAssetFileDescriptorAndReportAnyException(afd);
|
||||
closeCloseableAndReportAnyException(inputStream);
|
||||
closeCloseableAndReportAnyException(uncompressedStream);
|
||||
closeCloseableAndReportAnyException(decryptedStream);
|
||||
closeCloseableAndReportAnyException(bufferedInputStream);
|
||||
closeCloseableAndReportAnyException(bufferedOutputStream);
|
||||
}
|
||||
}
|
||||
|
||||
// We could not copy the file at all. This is very unexpected.
|
||||
// I'd rather not print the word list ID to the log out of security concerns
|
||||
Log.e(TAG, "Could not copy a word list. Will not be able to use it.");
|
||||
// If we can't copy it we should warn the dictionary provider so that it can mark it
|
||||
// as invalid.
|
||||
reportBrokenFileToDictionaryProvider(providerClient, clientId, wordlistId);
|
||||
}
|
||||
|
||||
public static boolean reportBrokenFileToDictionaryProvider(
|
||||
final ContentProviderClient providerClient, final String clientId,
|
||||
final String wordlistId) {
|
||||
try {
|
||||
final Uri.Builder wordListUriBuilder = getContentUriBuilderForType(clientId,
|
||||
providerClient, QUERY_PATH_DATAFILE, wordlistId /* extraPath */);
|
||||
wordListUriBuilder.appendQueryParameter(QUERY_PARAMETER_DELETE_RESULT,
|
||||
QUERY_PARAMETER_FAILURE);
|
||||
if (0 >= providerClient.delete(wordListUriBuilder.build(), null, null)) {
|
||||
Log.e(TAG, "Unable to delete a word list.");
|
||||
}
|
||||
} catch (RemoteException e) {
|
||||
Log.e(TAG, "Communication with the dictionary provider was cut", e);
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
// Ideally the two following methods should be merged, but AssetFileDescriptor does not
|
||||
// implement Closeable although it does implement #close(), and Java does not have
|
||||
// structural typing.
|
||||
private static void closeAssetFileDescriptorAndReportAnyException(
|
||||
final AssetFileDescriptor file) {
|
||||
try {
|
||||
if (null != file) file.close();
|
||||
} catch (Exception e) {
|
||||
Log.e(TAG, "Exception while closing a file", e);
|
||||
}
|
||||
}
|
||||
|
||||
private static void closeCloseableAndReportAnyException(final Closeable file) {
|
||||
try {
|
||||
if (null != file) file.close();
|
||||
} catch (Exception e) {
|
||||
Log.e(TAG, "Exception while closing a file", e);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Queries a content provider for word list data for some locale and stage the returned files
|
||||
*
|
||||
* This will query a content provider for word list data for a given locale, and copy the
|
||||
* files locally so that they can be mmap'ed. This may overwrite previously cached word lists
|
||||
* with newer versions if a newer version is made available by the content provider.
|
||||
* @throw FileNotFoundException if the provider returns non-existent data.
|
||||
* @throw IOException if the provider-returned data could not be read.
|
||||
*/
|
||||
public static void installDictToStagingFromContentProvider(final Locale locale,
|
||||
final Context context, final boolean hasDefaultWordList) {
|
||||
final ContentProviderClient providerClient;
|
||||
try {
|
||||
providerClient = context.getContentResolver().
|
||||
acquireContentProviderClient(getProviderUriBuilder("").build());
|
||||
} catch (final SecurityException e) {
|
||||
Log.e(TAG, "No permission to communicate with the dictionary provider", e);
|
||||
return;
|
||||
}
|
||||
if (null == providerClient) {
|
||||
Log.e(TAG, "Can't establish communication with the dictionary provider");
|
||||
return;
|
||||
}
|
||||
try {
|
||||
final List<WordListInfo> idList = getWordListWordListInfos(locale, context,
|
||||
hasDefaultWordList);
|
||||
for (WordListInfo id : idList) {
|
||||
installWordListToStaging(id.mId, id.mLocale, id.mRawChecksum, providerClient,
|
||||
context);
|
||||
}
|
||||
} finally {
|
||||
providerClient.release();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Downloads the dictionary if it was never requested/used.
|
||||
*
|
||||
* @param locale locale to download
|
||||
* @param context the context for resources and providers.
|
||||
* @param hasDefaultWordList whether the default wordlist exists in the resources.
|
||||
*/
|
||||
public static void downloadDictIfNeverRequested(final Locale locale,
|
||||
final Context context, final boolean hasDefaultWordList) {
|
||||
getWordListWordListInfos(locale, context, hasDefaultWordList);
|
||||
}
|
||||
|
||||
/**
|
||||
* Copies the data in an input stream to a target file if the magic number matches.
|
||||
*
|
||||
* If the magic number does not match the expected value, this method throws an
|
||||
* IOException. Other usual conditions for IOException or FileNotFoundException
|
||||
* also apply.
|
||||
*
|
||||
* @param input the stream to be copied.
|
||||
* @param output an output stream to copy the data to.
|
||||
*/
|
||||
public static void checkMagicAndCopyFileTo(final BufferedInputStream input,
|
||||
final BufferedOutputStream output) throws FileNotFoundException, IOException {
|
||||
// Check the magic number
|
||||
final int length = MAGIC_NUMBER_VERSION_2.length;
|
||||
final byte[] magicNumberBuffer = new byte[length];
|
||||
final int readMagicNumberSize = input.read(magicNumberBuffer, 0, length);
|
||||
if (readMagicNumberSize < length) {
|
||||
throw new IOException("Less bytes to read than the magic number length");
|
||||
}
|
||||
if (SHOULD_VERIFY_MAGIC_NUMBER) {
|
||||
if (!Arrays.equals(MAGIC_NUMBER_VERSION_2, magicNumberBuffer)) {
|
||||
if (!Arrays.equals(MAGIC_NUMBER_VERSION_1, magicNumberBuffer)) {
|
||||
throw new IOException("Wrong magic number for downloaded file");
|
||||
}
|
||||
}
|
||||
}
|
||||
output.write(magicNumberBuffer);
|
||||
|
||||
// Actually copy the file
|
||||
final byte[] buffer = new byte[FILE_READ_BUFFER_SIZE];
|
||||
for (int readBytes = input.read(buffer); readBytes >= 0; readBytes = input.read(buffer)) {
|
||||
output.write(buffer, 0, readBytes);
|
||||
}
|
||||
input.close();
|
||||
}
|
||||
|
||||
private static void reinitializeClientRecordInDictionaryContentProvider(final Context context,
|
||||
final ContentProviderClient client, final String clientId) throws RemoteException {
|
||||
final String metadataFileUri = MetadataFileUriGetter.getMetadataUri(context);
|
||||
Log.i(TAG, "reinitializeClientRecordInDictionaryContentProvider() : MetadataFileUri = "
|
||||
+ metadataFileUri);
|
||||
final String metadataAdditionalId = MetadataFileUriGetter.getMetadataAdditionalId(context);
|
||||
// Tell the content provider to reset all information about this client id
|
||||
final Uri metadataContentUri = getProviderUriBuilder(clientId)
|
||||
.appendPath(QUERY_PATH_METADATA)
|
||||
.appendQueryParameter(QUERY_PARAMETER_PROTOCOL, QUERY_PARAMETER_PROTOCOL_VALUE)
|
||||
.build();
|
||||
client.delete(metadataContentUri, null, null);
|
||||
// Update the metadata URI
|
||||
final ContentValues metadataValues = new ContentValues();
|
||||
metadataValues.put(INSERT_METADATA_CLIENT_ID_COLUMN, clientId);
|
||||
metadataValues.put(INSERT_METADATA_METADATA_URI_COLUMN, metadataFileUri);
|
||||
metadataValues.put(INSERT_METADATA_METADATA_ADDITIONAL_ID_COLUMN, metadataAdditionalId);
|
||||
client.insert(metadataContentUri, metadataValues);
|
||||
|
||||
// Update the dictionary list.
|
||||
final Uri dictionaryContentUriBase = getProviderUriBuilder(clientId)
|
||||
.appendPath(QUERY_PATH_DICT_INFO)
|
||||
.appendQueryParameter(QUERY_PARAMETER_PROTOCOL, QUERY_PARAMETER_PROTOCOL_VALUE)
|
||||
.build();
|
||||
final ArrayList<DictionaryInfo> dictionaryList =
|
||||
DictionaryInfoUtils.getCurrentDictionaryFileNameAndVersionInfo(context);
|
||||
final int length = dictionaryList.size();
|
||||
for (int i = 0; i < length; ++i) {
|
||||
final DictionaryInfo info = dictionaryList.get(i);
|
||||
Log.i(TAG, "reinitializeClientRecordInDictionaryContentProvider() : Insert " + info);
|
||||
client.insert(Uri.withAppendedPath(dictionaryContentUriBase, info.mId),
|
||||
info.toContentValues());
|
||||
}
|
||||
|
||||
// Read from metadata file in resources to get the baseline dictionary info.
|
||||
// This ensures we start with a valid list of available dictionaries.
|
||||
final int metadataResourceId = context.getResources().getIdentifier("metadata",
|
||||
"raw", DictionaryInfoUtils.RESOURCE_PACKAGE_NAME);
|
||||
if (metadataResourceId == 0) {
|
||||
Log.w(TAG, "Missing metadata.json resource");
|
||||
return;
|
||||
}
|
||||
InputStream inputStream = null;
|
||||
try {
|
||||
inputStream = context.getResources().openRawResource(metadataResourceId);
|
||||
// UpdateHandler.handleMetadata(context, inputStream, clientId);
|
||||
} catch (Exception e) {
|
||||
Log.w(TAG, "Failed to read metadata.json from resources", e);
|
||||
} finally {
|
||||
if (inputStream != null) {
|
||||
try {
|
||||
inputStream.close();
|
||||
} catch (IOException e) {
|
||||
Log.w(TAG, "Failed to close metadata.json", e);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Initialize a client record with the dictionary content provider.
|
||||
*
|
||||
* This merely acquires the content provider and calls
|
||||
* #reinitializeClientRecordInDictionaryContentProvider.
|
||||
*
|
||||
* @param context the context for resources and providers.
|
||||
* @param clientId the client ID to use.
|
||||
*/
|
||||
public static void initializeClientRecordHelper(final Context context, final String clientId) {
|
||||
try {
|
||||
final ContentProviderClient client = context.getContentResolver().
|
||||
acquireContentProviderClient(getProviderUriBuilder("").build());
|
||||
if (null == client) return;
|
||||
reinitializeClientRecordInDictionaryContentProvider(context, client, clientId);
|
||||
} catch (RemoteException e) {
|
||||
Log.e(TAG, "Cannot contact the dictionary content provider", e);
|
||||
}
|
||||
}
|
||||
}
|
@ -241,19 +241,6 @@ final public class BinaryDictionaryGetter {
|
||||
*/
|
||||
public static ArrayList<AssetFileAddress> getDictionaryFiles(final Locale locale,
|
||||
final Context context, boolean notifyDictionaryPackForUpdates, boolean fallback) {
|
||||
if (notifyDictionaryPackForUpdates) {
|
||||
final boolean hasDefaultWordList = DictionaryInfoUtils.isDictionaryAvailable(
|
||||
context, locale);
|
||||
// It makes sure that the first time keyboard comes up and the dictionaries are reset,
|
||||
// the DB is populated with the appropriate values for each locale. Helps in downloading
|
||||
// the dictionaries when the user enables and switches new languages before the
|
||||
// DictionaryService runs.
|
||||
BinaryDictionaryFileDumper.downloadDictIfNeverRequested(
|
||||
locale, context, hasDefaultWordList);
|
||||
|
||||
// Move a staging files to the cache ddirectories if any.
|
||||
DictionaryInfoUtils.moveStagingFilesIfExists(context);
|
||||
}
|
||||
final File[] cachedWordLists = getCachedWordLists(locale.toString(), context);
|
||||
final String mainDictId = DictionaryInfoUtils.getMainDictId(locale);
|
||||
final DictPackSettings dictPackSettings = new DictPackSettings(context);
|
||||
|
@ -91,38 +91,6 @@ public final class DictionaryFactory {
|
||||
public static void killDictionary(final Context context, final AssetFileAddress f) {
|
||||
if (f.pointsToPhysicalFile()) {
|
||||
f.deleteUnderlyingFile();
|
||||
// Warn the dictionary provider if the dictionary came from there.
|
||||
final ContentProviderClient providerClient;
|
||||
try {
|
||||
providerClient = context.getContentResolver().acquireContentProviderClient(
|
||||
BinaryDictionaryFileDumper.getProviderUriBuilder("").build());
|
||||
} catch (final SecurityException e) {
|
||||
Log.e(TAG, "No permission to communicate with the dictionary provider", e);
|
||||
return;
|
||||
}
|
||||
if (null == providerClient) {
|
||||
Log.e(TAG, "Can't establish communication with the dictionary provider");
|
||||
return;
|
||||
}
|
||||
final String wordlistId =
|
||||
DictionaryInfoUtils.getWordListIdFromFileName(new File(f.mFilename).getName());
|
||||
// TODO: this is a reasonable last resort, but it is suboptimal.
|
||||
// The following will remove the entry for this dictionary with the dictionary
|
||||
// provider. When the metadata is downloaded again, we will try downloading it
|
||||
// again.
|
||||
// However, in the practice that will mean the user will find themselves without
|
||||
// the new dictionary. That's fine for languages where it's included in the APK,
|
||||
// but for other languages it will leave the user without a dictionary at all until
|
||||
// the next update, which may be a few days away.
|
||||
// Ideally, we would trigger a new download right away, and use increasing retry
|
||||
// delays for this particular id/version combination.
|
||||
// Then again, this is expected to only ever happen in case of human mistake. If
|
||||
// the wrong file is on the server, the following is still doing the right thing.
|
||||
// If it's a file left over from the last version however, it's not great.
|
||||
BinaryDictionaryFileDumper.reportBrokenFileToDictionaryProvider(
|
||||
providerClient,
|
||||
context.getString(R.string.dictionary_pack_client_id),
|
||||
wordlistId);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1,141 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2011 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 org.futo.inputmethod.latin;
|
||||
|
||||
import org.futo.inputmethod.dictionarypack.DictionaryPackConstants;
|
||||
import org.futo.inputmethod.latin.utils.TargetPackageInfoGetterTask;
|
||||
|
||||
import android.content.BroadcastReceiver;
|
||||
import android.content.Context;
|
||||
import android.content.Intent;
|
||||
import android.content.pm.PackageInfo;
|
||||
import android.content.pm.PackageManager;
|
||||
import android.content.pm.ProviderInfo;
|
||||
import android.net.Uri;
|
||||
import android.util.Log;
|
||||
|
||||
/**
|
||||
* Receives broadcasts pertaining to dictionary management and takes the appropriate action.
|
||||
*
|
||||
* This object receives three types of broadcasts.
|
||||
* - Package installed/added. When a dictionary provider application is added or removed, we
|
||||
* need to query the dictionaries.
|
||||
* - New dictionary broadcast. The dictionary provider broadcasts new dictionary availability. When
|
||||
* this happens, we need to re-query the dictionaries.
|
||||
* - Unknown client. If the dictionary provider is in urgent need of data about some client that
|
||||
* it does not know, it sends this broadcast. When we receive this, we need to tell the dictionary
|
||||
* provider about ourselves. This happens when the settings for the dictionary pack are accessed,
|
||||
* but Latin IME never got a chance to register itself.
|
||||
*/
|
||||
public final class DictionaryPackInstallBroadcastReceiver extends BroadcastReceiver {
|
||||
private static final String TAG = DictionaryPackInstallBroadcastReceiver.class.getSimpleName();
|
||||
|
||||
final LatinIMELegacy mService;
|
||||
|
||||
public DictionaryPackInstallBroadcastReceiver() {
|
||||
// This empty constructor is necessary for the system to instantiate this receiver.
|
||||
// This happens when the dictionary pack says it can't find a record for our client,
|
||||
// which happens when the dictionary pack settings are called before the keyboard
|
||||
// was ever started once.
|
||||
Log.i(TAG, "Latin IME dictionary broadcast receiver instantiated from the framework.");
|
||||
mService = null;
|
||||
}
|
||||
|
||||
public DictionaryPackInstallBroadcastReceiver(final LatinIMELegacy service) {
|
||||
mService = service;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onReceive(Context context, Intent intent) {
|
||||
final String action = intent.getAction();
|
||||
final PackageManager manager = context.getPackageManager();
|
||||
|
||||
// We need to reread the dictionary if a new dictionary package is installed.
|
||||
if (action.equals(Intent.ACTION_PACKAGE_ADDED)) {
|
||||
if (null == mService) {
|
||||
Log.e(TAG, "Called with intent " + action + " but we don't know the service: this "
|
||||
+ "should never happen");
|
||||
return;
|
||||
}
|
||||
final Uri packageUri = intent.getData();
|
||||
if (null == packageUri) return; // No package name : we can't do anything
|
||||
final String packageName = packageUri.getSchemeSpecificPart();
|
||||
if (null == packageName) return;
|
||||
// TODO: do this in a more appropriate place
|
||||
TargetPackageInfoGetterTask.removeCachedPackageInfo(packageName);
|
||||
final PackageInfo packageInfo;
|
||||
try {
|
||||
packageInfo = manager.getPackageInfo(packageName, PackageManager.GET_PROVIDERS);
|
||||
} catch (android.content.pm.PackageManager.NameNotFoundException e) {
|
||||
return; // No package info : we can't do anything
|
||||
}
|
||||
final ProviderInfo[] providers = packageInfo.providers;
|
||||
if (null == providers) return; // No providers : it is not a dictionary.
|
||||
|
||||
// Search for some dictionary pack in the just-installed package. If found, reread.
|
||||
for (ProviderInfo info : providers) {
|
||||
if (DictionaryPackConstants.AUTHORITY.equals(info.authority)) {
|
||||
mService.resetSuggestMainDict();
|
||||
return;
|
||||
}
|
||||
}
|
||||
// If we come here none of the authorities matched the one we searched for.
|
||||
// We can exit safely.
|
||||
return;
|
||||
} else if (action.equals(Intent.ACTION_PACKAGE_REMOVED)
|
||||
&& !intent.getBooleanExtra(Intent.EXTRA_REPLACING, false)) {
|
||||
if (null == mService) {
|
||||
Log.e(TAG, "Called with intent " + action + " but we don't know the service: this "
|
||||
+ "should never happen");
|
||||
return;
|
||||
}
|
||||
// When the dictionary package is removed, we need to reread dictionary (to use the
|
||||
// next-priority one, or stop using a dictionary at all if this was the only one,
|
||||
// since this is the user request).
|
||||
// If we are replacing the package, we will receive ADDED right away so no need to
|
||||
// remove the dictionary at the moment, since we will do it when we receive the
|
||||
// ADDED broadcast.
|
||||
|
||||
// TODO: Only reload dictionary on REMOVED when the removed package is the one we
|
||||
// read dictionary from?
|
||||
mService.resetSuggestMainDict();
|
||||
} else if (action.equals(DictionaryPackConstants.NEW_DICTIONARY_INTENT_ACTION)) {
|
||||
if (null == mService) {
|
||||
Log.e(TAG, "Called with intent " + action + " but we don't know the service: this "
|
||||
+ "should never happen");
|
||||
return;
|
||||
}
|
||||
mService.resetSuggestMainDict();
|
||||
} else if (action.equals(DictionaryPackConstants.UNKNOWN_DICTIONARY_PROVIDER_CLIENT)) {
|
||||
if (null != mService) {
|
||||
// Careful! This is returning if the service is NOT null. This is because we
|
||||
// should come here instantiated by the framework in reaction to a broadcast of
|
||||
// the above action, so we should gave gone through the no-args constructor.
|
||||
Log.e(TAG, "Called with intent " + action + " but we have a reference to the "
|
||||
+ "service: this should never happen");
|
||||
return;
|
||||
}
|
||||
// The dictionary provider does not know about some client. We check that it's really
|
||||
// us that it needs to know about, and if it's the case, we register with the provider.
|
||||
final String wantedClientId =
|
||||
intent.getStringExtra(DictionaryPackConstants.DICTIONARY_PROVIDER_CLIENT_EXTRA);
|
||||
final String myClientId = context.getString(R.string.dictionary_pack_client_id);
|
||||
if (!wantedClientId.equals(myClientId)) return; // Not for us
|
||||
BinaryDictionaryFileDumper.initializeClientRecordHelper(context, myClientId);
|
||||
}
|
||||
}
|
||||
}
|
@ -284,11 +284,9 @@ class LatinIME : InputMethodService(), LifecycleOwner, ViewModelStoreOwner, Save
|
||||
getSettingBlocking(SubtypesSetting).firstOrNull()
|
||||
}
|
||||
|
||||
if(activeSubtype != null) {
|
||||
if(activeSubtype != currentSubtype) {
|
||||
currentSubtype = activeSubtype
|
||||
changeInputMethodSubtype(Subtypes.convertToSubtype(activeSubtype))
|
||||
}
|
||||
if(activeSubtype != null && activeSubtype != currentSubtype) {
|
||||
currentSubtype = activeSubtype
|
||||
changeInputMethodSubtype(Subtypes.convertToSubtype(activeSubtype))
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -62,7 +62,6 @@ import org.futo.inputmethod.accessibility.AccessibilityUtils;
|
||||
import org.futo.inputmethod.annotations.UsedForTesting;
|
||||
import org.futo.inputmethod.compat.ViewOutlineProviderCompatUtils;
|
||||
import org.futo.inputmethod.compat.ViewOutlineProviderCompatUtils.InsetsUpdater;
|
||||
import org.futo.inputmethod.dictionarypack.DictionaryPackConstants;
|
||||
import org.futo.inputmethod.event.Event;
|
||||
import org.futo.inputmethod.event.HardwareEventDecoder;
|
||||
import org.futo.inputmethod.event.HardwareKeyboardEventDecoder;
|
||||
@ -104,7 +103,6 @@ import org.futo.inputmethod.latin.xlm.LanguageModelFacilitator;
|
||||
import java.io.FileDescriptor;
|
||||
import java.io.PrintWriter;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.Locale;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
|
||||
@ -184,10 +182,6 @@ public class LatinIMELegacy implements KeyboardActionListener,
|
||||
// Used for re-initialize keyboard layout after onConfigurationChange.
|
||||
@Nullable private Context mDisplayContext;
|
||||
|
||||
// Object for reacting to adding/removing a dictionary pack.
|
||||
private final BroadcastReceiver mDictionaryPackInstallReceiver =
|
||||
new DictionaryPackInstallBroadcastReceiver(this);
|
||||
|
||||
private final BroadcastReceiver mDictionaryDumpBroadcastReceiver =
|
||||
new DictionaryDumpBroadcastReceiver(this);
|
||||
|
||||
@ -627,17 +621,6 @@ public class LatinIMELegacy implements KeyboardActionListener,
|
||||
filter.addAction(AudioManager.RINGER_MODE_CHANGED_ACTION);
|
||||
ContextCompat.registerReceiver(mInputMethodService, mRingerModeChangeReceiver, filter, ContextCompat.RECEIVER_EXPORTED);
|
||||
|
||||
// Register to receive installation and removal of a dictionary pack.
|
||||
final IntentFilter packageFilter = new IntentFilter();
|
||||
packageFilter.addAction(Intent.ACTION_PACKAGE_ADDED);
|
||||
packageFilter.addAction(Intent.ACTION_PACKAGE_REMOVED);
|
||||
packageFilter.addDataScheme(SCHEME_PACKAGE);
|
||||
ContextCompat.registerReceiver(mInputMethodService, mDictionaryPackInstallReceiver, packageFilter, ContextCompat.RECEIVER_EXPORTED);
|
||||
|
||||
final IntentFilter newDictFilter = new IntentFilter();
|
||||
newDictFilter.addAction(DictionaryPackConstants.NEW_DICTIONARY_INTENT_ACTION);
|
||||
ContextCompat.registerReceiver(mInputMethodService, mDictionaryPackInstallReceiver, newDictFilter, ContextCompat.RECEIVER_NOT_EXPORTED);
|
||||
|
||||
final IntentFilter dictDumpFilter = new IntentFilter();
|
||||
dictDumpFilter.addAction(DictionaryDumpBroadcastReceiver.DICTIONARY_DUMP_INTENT_ACTION);
|
||||
ContextCompat.registerReceiver(mInputMethodService, mDictionaryDumpBroadcastReceiver, dictDumpFilter, ContextCompat.RECEIVER_NOT_EXPORTED);
|
||||
@ -752,14 +735,12 @@ public class LatinIMELegacy implements KeyboardActionListener,
|
||||
mSettings.onDestroy();
|
||||
mInputMethodService.unregisterReceiver(mHideSoftInputReceiver);
|
||||
mInputMethodService.unregisterReceiver(mRingerModeChangeReceiver);
|
||||
mInputMethodService.unregisterReceiver(mDictionaryPackInstallReceiver);
|
||||
mInputMethodService.unregisterReceiver(mDictionaryDumpBroadcastReceiver);
|
||||
mStatsUtilsManager.onDestroy(mInputMethodService);
|
||||
}
|
||||
|
||||
@UsedForTesting
|
||||
public void recycle() {
|
||||
mInputMethodService.unregisterReceiver(mDictionaryPackInstallReceiver);
|
||||
mInputMethodService.unregisterReceiver(mDictionaryDumpBroadcastReceiver);
|
||||
mInputMethodService.unregisterReceiver(mRingerModeChangeReceiver);
|
||||
mInputLogic.recycle();
|
||||
|
@ -166,7 +166,6 @@ public class LanguageModelFacilitator(
|
||||
val emoji = emojiData.emojiAliases[word.lowercase()]
|
||||
|
||||
if(emoji != null) {
|
||||
//Log.i("LanguageModelFacilitator", "Found emoji ${emoji.emoji} for $word")
|
||||
return SuggestedWordInfo(
|
||||
emoji.emoji,
|
||||
"",
|
||||
|
Loading…
Reference in New Issue
Block a user