2013-01-29 09:05:33 +00:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2013-06-23 16:11:32 +00:00
|
|
|
package com.android.inputmethod.latin.utils;
|
2013-01-29 09:05:33 +00:00
|
|
|
|
2013-02-03 17:21:54 +00:00
|
|
|
import android.content.ContentValues;
|
2013-01-29 09:05:33 +00:00
|
|
|
import android.content.Context;
|
2013-01-29 07:34:14 +00:00
|
|
|
import android.content.res.AssetManager;
|
2013-01-29 09:05:33 +00:00
|
|
|
import android.content.res.Resources;
|
2014-01-10 03:05:24 +00:00
|
|
|
import android.text.TextUtils;
|
2013-01-29 09:05:33 +00:00
|
|
|
import android.util.Log;
|
|
|
|
|
2014-09-19 05:30:26 +00:00
|
|
|
import com.android.inputmethod.annotations.UsedForTesting;
|
2013-06-23 16:11:32 +00:00
|
|
|
import com.android.inputmethod.latin.AssetFileAddress;
|
|
|
|
import com.android.inputmethod.latin.BinaryDictionaryGetter;
|
|
|
|
import com.android.inputmethod.latin.R;
|
2014-11-06 11:29:29 +00:00
|
|
|
import com.android.inputmethod.latin.common.LocaleUtils;
|
2015-02-05 21:27:36 +00:00
|
|
|
import com.android.inputmethod.latin.define.DecoderSpecificConstants;
|
2014-02-04 12:36:04 +00:00
|
|
|
import com.android.inputmethod.latin.makedict.DictionaryHeader;
|
2014-03-05 10:42:53 +00:00
|
|
|
import com.android.inputmethod.latin.makedict.UnsupportedFormatException;
|
2014-01-10 03:05:24 +00:00
|
|
|
import com.android.inputmethod.latin.settings.SpacingAndPunctuations;
|
2013-01-29 09:05:33 +00:00
|
|
|
|
|
|
|
import java.io.File;
|
2014-03-05 10:42:53 +00:00
|
|
|
import java.io.IOException;
|
2013-01-29 07:34:14 +00:00
|
|
|
import java.util.ArrayList;
|
2013-06-06 06:52:13 +00:00
|
|
|
import java.util.Iterator;
|
2013-01-29 09:05:33 +00:00
|
|
|
import java.util.Locale;
|
2013-07-05 08:57:01 +00:00
|
|
|
import java.util.concurrent.TimeUnit;
|
2013-01-29 09:05:33 +00:00
|
|
|
|
2014-11-17 09:07:35 +00:00
|
|
|
import javax.annotation.Nonnull;
|
|
|
|
import javax.annotation.Nullable;
|
|
|
|
|
2013-01-29 09:05:33 +00:00
|
|
|
/**
|
|
|
|
* This class encapsulates the logic for the Latin-IME side of dictionary information management.
|
|
|
|
*/
|
|
|
|
public class DictionaryInfoUtils {
|
|
|
|
private static final String TAG = DictionaryInfoUtils.class.getSimpleName();
|
2013-06-23 16:11:32 +00:00
|
|
|
private static final String RESOURCE_PACKAGE_NAME = R.class.getPackage().getName();
|
2013-01-29 09:05:33 +00:00
|
|
|
private static final String DEFAULT_MAIN_DICT = "main";
|
|
|
|
private static final String MAIN_DICT_PREFIX = "main_";
|
2015-02-13 03:56:46 +00:00
|
|
|
private static final String DECODER_DICT_SUFFIX = DecoderSpecificConstants.DECODER_DICT_SUFFIX;
|
2013-01-29 09:05:33 +00:00
|
|
|
// 6 digits - unicode is limited to 21 bits
|
|
|
|
private static final int MAX_HEX_DIGITS_FOR_CODEPOINT = 6;
|
|
|
|
|
2013-01-29 07:34:14 +00:00
|
|
|
public static class DictionaryInfo {
|
2013-02-03 17:21:54 +00:00
|
|
|
private static final String LOCALE_COLUMN = "locale";
|
|
|
|
private static final String WORDLISTID_COLUMN = "id";
|
|
|
|
private static final String LOCAL_FILENAME_COLUMN = "filename";
|
2013-02-23 09:35:21 +00:00
|
|
|
private static final String DESCRIPTION_COLUMN = "description";
|
2013-02-03 17:21:54 +00:00
|
|
|
private static final String DATE_COLUMN = "date";
|
|
|
|
private static final String FILESIZE_COLUMN = "filesize";
|
|
|
|
private static final String VERSION_COLUMN = "version";
|
2014-11-17 09:07:35 +00:00
|
|
|
@Nonnull
|
2013-02-23 09:35:21 +00:00
|
|
|
public final String mId;
|
2014-11-17 09:07:35 +00:00
|
|
|
@Nonnull
|
2013-01-29 07:34:14 +00:00
|
|
|
public final Locale mLocale;
|
2014-11-17 09:07:35 +00:00
|
|
|
@Nullable
|
2013-02-23 09:35:21 +00:00
|
|
|
public final String mDescription;
|
2014-11-17 09:07:35 +00:00
|
|
|
@Nonnull
|
2013-01-29 07:34:14 +00:00
|
|
|
public final AssetFileAddress mFileAddress;
|
|
|
|
public final int mVersion;
|
2014-11-17 09:07:35 +00:00
|
|
|
|
|
|
|
public DictionaryInfo(@Nonnull final String id, @Nonnull final Locale locale,
|
|
|
|
@Nullable final String description, @Nonnull final AssetFileAddress fileAddress,
|
|
|
|
final int version) {
|
2013-02-23 04:49:48 +00:00
|
|
|
mId = id;
|
2013-01-29 07:34:14 +00:00
|
|
|
mLocale = locale;
|
2013-02-23 09:35:21 +00:00
|
|
|
mDescription = description;
|
2013-01-29 07:34:14 +00:00
|
|
|
mFileAddress = fileAddress;
|
|
|
|
mVersion = version;
|
2013-02-03 17:21:54 +00:00
|
|
|
}
|
2014-11-17 09:07:35 +00:00
|
|
|
|
2013-02-03 17:21:54 +00:00
|
|
|
public ContentValues toContentValues() {
|
|
|
|
final ContentValues values = new ContentValues();
|
|
|
|
values.put(WORDLISTID_COLUMN, mId);
|
|
|
|
values.put(LOCALE_COLUMN, mLocale.toString());
|
2013-02-23 09:35:21 +00:00
|
|
|
values.put(DESCRIPTION_COLUMN, mDescription);
|
2013-02-03 17:21:54 +00:00
|
|
|
values.put(LOCAL_FILENAME_COLUMN, mFileAddress.mFilename);
|
2013-07-05 08:57:01 +00:00
|
|
|
values.put(DATE_COLUMN, TimeUnit.MILLISECONDS.toSeconds(
|
|
|
|
new File(mFileAddress.mFilename).lastModified()));
|
2013-02-03 17:21:54 +00:00
|
|
|
values.put(FILESIZE_COLUMN, mFileAddress.mLength);
|
|
|
|
values.put(VERSION_COLUMN, mVersion);
|
|
|
|
return values;
|
2013-01-29 07:34:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-29 09:05:33 +00:00
|
|
|
private DictionaryInfoUtils() {
|
|
|
|
// Private constructor to forbid instantation of this helper class.
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns whether we may want to use this character as part of a file name.
|
|
|
|
*
|
|
|
|
* This basically only accepts ascii letters and numbers, and rejects everything else.
|
|
|
|
*/
|
|
|
|
private static boolean isFileNameCharacter(int codePoint) {
|
|
|
|
if (codePoint >= 0x30 && codePoint <= 0x39) return true; // Digit
|
|
|
|
if (codePoint >= 0x41 && codePoint <= 0x5A) return true; // Uppercase
|
|
|
|
if (codePoint >= 0x61 && codePoint <= 0x7A) return true; // Lowercase
|
|
|
|
return codePoint == '_'; // Underscore
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Escapes a string for any characters that may be suspicious for a file or directory name.
|
|
|
|
*
|
|
|
|
* Concretely this does a sort of URL-encoding except it will encode everything that's not
|
|
|
|
* alphanumeric or underscore. (true URL-encoding leaves alone characters like '*', which
|
|
|
|
* we cannot allow here)
|
|
|
|
*/
|
|
|
|
// TODO: create a unit test for this method
|
|
|
|
public static String replaceFileNameDangerousCharacters(final String name) {
|
|
|
|
// This assumes '%' is fully available as a non-separator, normal
|
|
|
|
// character in a file name. This is probably true for all file systems.
|
|
|
|
final StringBuilder sb = new StringBuilder();
|
|
|
|
final int nameLength = name.length();
|
|
|
|
for (int i = 0; i < nameLength; i = name.offsetByCodePoints(i, 1)) {
|
|
|
|
final int codePoint = name.codePointAt(i);
|
|
|
|
if (DictionaryInfoUtils.isFileNameCharacter(codePoint)) {
|
|
|
|
sb.appendCodePoint(codePoint);
|
|
|
|
} else {
|
|
|
|
sb.append(String.format((Locale)null, "%%%1$0" + MAX_HEX_DIGITS_FOR_CODEPOINT + "x",
|
|
|
|
codePoint));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return sb.toString();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper method to get the top level cache directory.
|
|
|
|
*/
|
|
|
|
private static String getWordListCacheDirectory(final Context context) {
|
|
|
|
return context.getFilesDir() + File.separator + "dicts";
|
|
|
|
}
|
|
|
|
|
2013-04-25 09:14:40 +00:00
|
|
|
/**
|
|
|
|
* Helper method to get the top level temp directory.
|
|
|
|
*/
|
|
|
|
public static String getWordListTempDirectory(final Context context) {
|
|
|
|
return context.getFilesDir() + File.separator + "tmp";
|
|
|
|
}
|
|
|
|
|
2013-01-29 09:05:33 +00:00
|
|
|
/**
|
|
|
|
* Reverse escaping done by replaceFileNameDangerousCharacters.
|
|
|
|
*/
|
2014-11-17 09:07:35 +00:00
|
|
|
@Nonnull
|
|
|
|
public static String getWordListIdFromFileName(@Nonnull final String fname) {
|
2013-01-29 09:05:33 +00:00
|
|
|
final StringBuilder sb = new StringBuilder();
|
|
|
|
final int fnameLength = fname.length();
|
|
|
|
for (int i = 0; i < fnameLength; i = fname.offsetByCodePoints(i, 1)) {
|
|
|
|
final int codePoint = fname.codePointAt(i);
|
|
|
|
if ('%' != codePoint) {
|
|
|
|
sb.appendCodePoint(codePoint);
|
|
|
|
} else {
|
|
|
|
// + 1 to pass the % sign
|
|
|
|
final int encodedCodePoint = Integer.parseInt(
|
|
|
|
fname.substring(i + 1, i + 1 + MAX_HEX_DIGITS_FOR_CODEPOINT), 16);
|
|
|
|
i += MAX_HEX_DIGITS_FOR_CODEPOINT;
|
|
|
|
sb.appendCodePoint(encodedCodePoint);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return sb.toString();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper method to the list of cache directories, one for each distinct locale.
|
|
|
|
*/
|
|
|
|
public static File[] getCachedDirectoryList(final Context context) {
|
|
|
|
return new File(DictionaryInfoUtils.getWordListCacheDirectory(context)).listFiles();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the category for a given file name.
|
|
|
|
*
|
|
|
|
* This parses the file name, extracts the category, and returns it. See
|
|
|
|
* {@link #getMainDictId(Locale)} and {@link #isMainWordListId(String)}.
|
|
|
|
* @return The category as a string or null if it can't be found in the file name.
|
|
|
|
*/
|
2014-11-17 09:07:35 +00:00
|
|
|
@Nullable
|
|
|
|
public static String getCategoryFromFileName(@Nonnull final String fileName) {
|
2013-01-29 09:05:33 +00:00
|
|
|
final String id = getWordListIdFromFileName(fileName);
|
|
|
|
final String[] idArray = id.split(BinaryDictionaryGetter.ID_CATEGORY_SEPARATOR);
|
|
|
|
// An id is supposed to be in format category:locale, so splitting on the separator
|
|
|
|
// should yield a 2-elements array
|
2014-11-17 09:07:35 +00:00
|
|
|
if (2 != idArray.length) {
|
|
|
|
return null;
|
|
|
|
}
|
2013-01-29 09:05:33 +00:00
|
|
|
return idArray[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Find out the cache directory associated with a specific locale.
|
|
|
|
*/
|
|
|
|
private static String getCacheDirectoryForLocale(final String locale, final Context context) {
|
|
|
|
final String relativeDirectoryName = replaceFileNameDangerousCharacters(locale);
|
|
|
|
final String absoluteDirectoryName = getWordListCacheDirectory(context) + File.separator
|
|
|
|
+ relativeDirectoryName;
|
|
|
|
final File directory = new File(absoluteDirectoryName);
|
|
|
|
if (!directory.exists()) {
|
|
|
|
if (!directory.mkdirs()) {
|
|
|
|
Log.e(TAG, "Could not create the directory for locale" + locale);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return absoluteDirectoryName;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generates a file name for the id and locale passed as an argument.
|
|
|
|
*
|
|
|
|
* In the current implementation the file name returned will always be unique for
|
|
|
|
* any id/locale pair, but please do not expect that the id can be the same for
|
|
|
|
* different dictionaries with different locales. An id should be unique for any
|
|
|
|
* dictionary.
|
|
|
|
* The file name is pretty much an URL-encoded version of the id inside a directory
|
|
|
|
* named like the locale, except it will also escape characters that look dangerous
|
|
|
|
* to some file systems.
|
|
|
|
* @param id the id of the dictionary for which to get a file name
|
|
|
|
* @param locale the locale for which to get the file name as a string
|
|
|
|
* @param context the context to use for getting the directory
|
|
|
|
* @return the name of the file to be created
|
|
|
|
*/
|
|
|
|
public static String getCacheFileName(String id, String locale, Context context) {
|
|
|
|
final String fileName = replaceFileNameDangerousCharacters(id);
|
|
|
|
return getCacheDirectoryForLocale(locale, context) + File.separator + fileName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static boolean isMainWordListId(final String id) {
|
|
|
|
final String[] idArray = id.split(BinaryDictionaryGetter.ID_CATEGORY_SEPARATOR);
|
|
|
|
// An id is supposed to be in format category:locale, so splitting on the separator
|
|
|
|
// should yield a 2-elements array
|
2014-11-17 09:07:35 +00:00
|
|
|
if (2 != idArray.length) {
|
|
|
|
return false;
|
|
|
|
}
|
2013-01-29 09:05:33 +00:00
|
|
|
return BinaryDictionaryGetter.MAIN_DICTIONARY_CATEGORY.equals(idArray[0]);
|
|
|
|
}
|
|
|
|
|
2014-11-21 08:58:50 +00:00
|
|
|
/**
|
|
|
|
* Find out whether a dictionary is available for this locale.
|
|
|
|
* @param context the context on which to check resources.
|
|
|
|
* @param locale the locale to check for.
|
|
|
|
* @return whether a (non-placeholder) dictionary is available or not.
|
|
|
|
*/
|
|
|
|
public static boolean isDictionaryAvailable(final Context context, final Locale locale) {
|
|
|
|
final Resources res = context.getResources();
|
|
|
|
return 0 != getMainDictionaryResourceIdIfAvailableForLocale(res, locale);
|
|
|
|
}
|
|
|
|
|
2013-01-29 09:05:33 +00:00
|
|
|
/**
|
|
|
|
* Helper method to return a dictionary res id for a locale, or 0 if none.
|
2014-10-15 14:23:30 +00:00
|
|
|
* @param res resources for the app
|
2013-01-29 09:05:33 +00:00
|
|
|
* @param locale dictionary locale
|
|
|
|
* @return main dictionary resource id
|
|
|
|
*/
|
|
|
|
public static int getMainDictionaryResourceIdIfAvailableForLocale(final Resources res,
|
|
|
|
final Locale locale) {
|
|
|
|
int resId;
|
|
|
|
// Try to find main_language_country dictionary.
|
|
|
|
if (!locale.getCountry().isEmpty()) {
|
2015-02-13 03:56:46 +00:00
|
|
|
final String dictLanguageCountry = MAIN_DICT_PREFIX
|
|
|
|
+ locale.toString().toLowerCase(Locale.ROOT) + DECODER_DICT_SUFFIX;
|
2013-01-29 09:05:33 +00:00
|
|
|
if ((resId = res.getIdentifier(
|
|
|
|
dictLanguageCountry, "raw", RESOURCE_PACKAGE_NAME)) != 0) {
|
|
|
|
return resId;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Try to find main_language dictionary.
|
2015-02-13 03:56:46 +00:00
|
|
|
final String dictLanguage = MAIN_DICT_PREFIX + locale.getLanguage() + DECODER_DICT_SUFFIX;
|
2013-01-29 09:05:33 +00:00
|
|
|
if ((resId = res.getIdentifier(dictLanguage, "raw", RESOURCE_PACKAGE_NAME)) != 0) {
|
|
|
|
return resId;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Not found, return 0
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a main dictionary resource id
|
2014-10-15 14:23:30 +00:00
|
|
|
* @param res resources for the app
|
2013-01-29 09:05:33 +00:00
|
|
|
* @param locale dictionary locale
|
|
|
|
* @return main dictionary resource id
|
|
|
|
*/
|
|
|
|
public static int getMainDictionaryResourceId(final Resources res, final Locale locale) {
|
|
|
|
int resourceId = getMainDictionaryResourceIdIfAvailableForLocale(res, locale);
|
2014-11-17 09:07:35 +00:00
|
|
|
if (0 != resourceId) {
|
|
|
|
return resourceId;
|
|
|
|
}
|
2015-02-24 01:25:08 +00:00
|
|
|
return res.getIdentifier(DEFAULT_MAIN_DICT + DecoderSpecificConstants.DECODER_DICT_SUFFIX,
|
|
|
|
"raw", RESOURCE_PACKAGE_NAME);
|
2013-01-29 09:05:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the id associated with the main word list for a specified locale.
|
|
|
|
*
|
|
|
|
* Word lists stored in Android Keyboard's resources are referred to as the "main"
|
|
|
|
* word lists. Since they can be updated like any other list, we need to assign a
|
|
|
|
* unique ID to them. This ID is just the name of the language (locale-wise) they
|
|
|
|
* are for, and this method returns this ID.
|
|
|
|
*/
|
|
|
|
public static String getMainDictId(final Locale locale) {
|
|
|
|
// This works because we don't include by default different dictionaries for
|
|
|
|
// different countries. This actually needs to return the id that we would
|
|
|
|
// like to use for word lists included in resources, and the following is okay.
|
|
|
|
return BinaryDictionaryGetter.MAIN_DICTIONARY_CATEGORY +
|
|
|
|
BinaryDictionaryGetter.ID_CATEGORY_SEPARATOR + locale.getLanguage().toString();
|
|
|
|
}
|
2014-10-15 14:23:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns whether a main dictionary is readily available for this locale.
|
|
|
|
*
|
|
|
|
* This does not query the content provider.
|
|
|
|
*
|
|
|
|
* @param context context to open files upon
|
|
|
|
* @param locale dictionary locale
|
|
|
|
* @return true if a dictionary is available right away, false otherwise
|
|
|
|
*/
|
|
|
|
public static boolean hasReadilyAvailableMainDictionaryForLocale(final Context context,
|
|
|
|
final Locale locale) {
|
|
|
|
final Resources res = context.getResources();
|
|
|
|
if (0 != getMainDictionaryResourceIdIfAvailableForLocale(res, locale)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
final String fileName = getCacheFileName(getMainDictId(locale), locale.toString(), context);
|
|
|
|
return new File(fileName).exists();
|
|
|
|
}
|
2013-01-29 09:05:33 +00:00
|
|
|
|
2014-02-04 12:36:04 +00:00
|
|
|
public static DictionaryHeader getDictionaryFileHeaderOrNull(final File file) {
|
2014-03-05 10:42:53 +00:00
|
|
|
return getDictionaryFileHeaderOrNull(file, 0, file.length());
|
|
|
|
}
|
|
|
|
|
|
|
|
private static DictionaryHeader getDictionaryFileHeaderOrNull(final File file,
|
|
|
|
final long offset, final long length) {
|
|
|
|
try {
|
|
|
|
final DictionaryHeader header =
|
|
|
|
BinaryDictionaryUtils.getHeaderWithOffsetAndLength(file, offset, length);
|
|
|
|
return header;
|
|
|
|
} catch (UnsupportedFormatException e) {
|
|
|
|
return null;
|
|
|
|
} catch (IOException e) {
|
|
|
|
return null;
|
|
|
|
}
|
2013-01-29 09:05:33 +00:00
|
|
|
}
|
2013-01-29 07:34:14 +00:00
|
|
|
|
2014-01-06 08:56:49 +00:00
|
|
|
/**
|
|
|
|
* Returns information of the dictionary.
|
|
|
|
*
|
|
|
|
* @param fileAddress the asset dictionary file address.
|
|
|
|
* @return information of the specified dictionary.
|
|
|
|
*/
|
2015-02-24 23:45:10 +00:00
|
|
|
@Nullable
|
2013-01-29 07:34:14 +00:00
|
|
|
private static DictionaryInfo createDictionaryInfoFromFileAddress(
|
|
|
|
final AssetFileAddress fileAddress) {
|
2015-02-24 23:45:10 +00:00
|
|
|
// TODO: Read the header and update the version number for the new dictionaries.
|
|
|
|
// This will make sure that the dictionary version is updated in the database.
|
2014-03-05 10:42:53 +00:00
|
|
|
final DictionaryHeader header = getDictionaryFileHeaderOrNull(
|
2013-01-29 07:34:14 +00:00
|
|
|
new File(fileAddress.mFilename), fileAddress.mOffset, fileAddress.mLength);
|
2014-01-06 08:56:49 +00:00
|
|
|
if (header == null) {
|
|
|
|
return null;
|
|
|
|
}
|
2014-11-17 09:07:35 +00:00
|
|
|
final String id = header.mIdString;
|
|
|
|
final Locale locale = LocaleUtils.constructLocaleFromString(header.mLocaleString);
|
2013-02-23 09:35:21 +00:00
|
|
|
final String description = header.getDescription();
|
2014-11-17 09:07:35 +00:00
|
|
|
final String version = header.mVersionString;
|
2013-02-23 09:35:21 +00:00
|
|
|
return new DictionaryInfo(id, locale, description, fileAddress, Integer.parseInt(version));
|
2013-01-29 07:34:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private static void addOrUpdateDictInfo(final ArrayList<DictionaryInfo> dictList,
|
|
|
|
final DictionaryInfo newElement) {
|
2013-06-06 06:52:13 +00:00
|
|
|
final Iterator<DictionaryInfo> iter = dictList.iterator();
|
|
|
|
while (iter.hasNext()) {
|
|
|
|
final DictionaryInfo thisDictInfo = iter.next();
|
|
|
|
if (thisDictInfo.mLocale.equals(newElement.mLocale)) {
|
|
|
|
if (newElement.mVersion <= thisDictInfo.mVersion) {
|
2013-01-29 07:34:14 +00:00
|
|
|
return;
|
|
|
|
}
|
2013-06-06 06:52:13 +00:00
|
|
|
iter.remove();
|
2013-01-29 07:34:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
dictList.add(newElement);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static ArrayList<DictionaryInfo> getCurrentDictionaryFileNameAndVersionInfo(
|
|
|
|
final Context context) {
|
2014-05-23 11:18:17 +00:00
|
|
|
final ArrayList<DictionaryInfo> dictList = new ArrayList<>();
|
2013-01-29 07:34:14 +00:00
|
|
|
|
|
|
|
// Retrieve downloaded dictionaries
|
|
|
|
final File[] directoryList = getCachedDirectoryList(context);
|
2013-02-03 17:21:54 +00:00
|
|
|
if (null != directoryList) {
|
|
|
|
for (final File directory : directoryList) {
|
|
|
|
final String localeString = getWordListIdFromFileName(directory.getName());
|
2014-11-17 09:07:35 +00:00
|
|
|
final File[] dicts = BinaryDictionaryGetter.getCachedWordLists(
|
|
|
|
localeString, context);
|
2013-02-03 17:21:54 +00:00
|
|
|
for (final File dict : dicts) {
|
|
|
|
final String wordListId = getWordListIdFromFileName(dict.getName());
|
2014-11-17 09:07:35 +00:00
|
|
|
if (!DictionaryInfoUtils.isMainWordListId(wordListId)) {
|
|
|
|
continue;
|
|
|
|
}
|
2013-02-03 17:21:54 +00:00
|
|
|
final Locale locale = LocaleUtils.constructLocaleFromString(localeString);
|
|
|
|
final AssetFileAddress fileAddress = AssetFileAddress.makeFromFile(dict);
|
|
|
|
final DictionaryInfo dictionaryInfo =
|
|
|
|
createDictionaryInfoFromFileAddress(fileAddress);
|
|
|
|
// Protect against cases of a less-specific dictionary being found, like an
|
|
|
|
// en dictionary being used for an en_US locale. In this case, the en dictionary
|
|
|
|
// should be used for en_US but discounted for listing purposes.
|
2014-11-17 09:07:35 +00:00
|
|
|
if (dictionaryInfo == null || !dictionaryInfo.mLocale.equals(locale)) {
|
|
|
|
continue;
|
|
|
|
}
|
2013-02-03 17:21:54 +00:00
|
|
|
addOrUpdateDictInfo(dictList, dictionaryInfo);
|
|
|
|
}
|
2013-01-29 07:34:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Retrieve files from assets
|
|
|
|
final Resources resources = context.getResources();
|
|
|
|
final AssetManager assets = resources.getAssets();
|
|
|
|
for (final String localeString : assets.getLocales()) {
|
|
|
|
final Locale locale = LocaleUtils.constructLocaleFromString(localeString);
|
|
|
|
final int resourceId =
|
|
|
|
DictionaryInfoUtils.getMainDictionaryResourceIdIfAvailableForLocale(
|
|
|
|
context.getResources(), locale);
|
2014-11-17 09:07:35 +00:00
|
|
|
if (0 == resourceId) {
|
|
|
|
continue;
|
|
|
|
}
|
2013-01-29 07:34:14 +00:00
|
|
|
final AssetFileAddress fileAddress =
|
|
|
|
BinaryDictionaryGetter.loadFallbackResource(context, resourceId);
|
|
|
|
final DictionaryInfo dictionaryInfo = createDictionaryInfoFromFileAddress(fileAddress);
|
|
|
|
// Protect against cases of a less-specific dictionary being found, like an
|
|
|
|
// en dictionary being used for an en_US locale. In this case, the en dictionary
|
|
|
|
// should be used for en_US but discounted for listing purposes.
|
2015-02-24 23:45:10 +00:00
|
|
|
// TODO: Remove dictionaryInfo == null when the static LMs have the headers.
|
|
|
|
if (dictionaryInfo == null || !dictionaryInfo.mLocale.equals(locale)) {
|
2014-11-17 09:07:35 +00:00
|
|
|
continue;
|
|
|
|
}
|
2013-01-29 07:34:14 +00:00
|
|
|
addOrUpdateDictInfo(dictList, dictionaryInfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
return dictList;
|
|
|
|
}
|
2014-01-10 03:05:24 +00:00
|
|
|
|
2014-09-19 05:30:26 +00:00
|
|
|
@UsedForTesting
|
2014-01-10 03:05:24 +00:00
|
|
|
public static boolean looksValidForDictionaryInsertion(final CharSequence text,
|
|
|
|
final SpacingAndPunctuations spacingAndPunctuations) {
|
2014-11-17 09:07:35 +00:00
|
|
|
if (TextUtils.isEmpty(text)) {
|
|
|
|
return false;
|
|
|
|
}
|
2014-01-10 03:05:24 +00:00
|
|
|
final int length = text.length();
|
2015-02-05 21:27:36 +00:00
|
|
|
if (length > DecoderSpecificConstants.DICTIONARY_MAX_WORD_LENGTH) {
|
2014-01-25 00:32:28 +00:00
|
|
|
return false;
|
|
|
|
}
|
2014-01-10 03:05:24 +00:00
|
|
|
int i = 0;
|
|
|
|
int digitCount = 0;
|
|
|
|
while (i < length) {
|
|
|
|
final int codePoint = Character.codePointAt(text, i);
|
|
|
|
final int charCount = Character.charCount(codePoint);
|
|
|
|
i += charCount;
|
|
|
|
if (Character.isDigit(codePoint)) {
|
|
|
|
// Count digits: see below
|
|
|
|
digitCount += charCount;
|
|
|
|
continue;
|
|
|
|
}
|
2014-11-17 09:07:35 +00:00
|
|
|
if (!spacingAndPunctuations.isWordCodePoint(codePoint)) {
|
|
|
|
return false;
|
|
|
|
}
|
2014-01-10 03:05:24 +00:00
|
|
|
}
|
|
|
|
// We reject strings entirely comprised of digits to avoid using PIN codes or credit
|
|
|
|
// card numbers. It would come in handy for word prediction though; a good example is
|
|
|
|
// when writing one's address where the street number is usually quite discriminative,
|
|
|
|
// as well as the postal code.
|
|
|
|
return digitCount < length;
|
|
|
|
}
|
2013-01-29 09:05:33 +00:00
|
|
|
}
|