2011-03-14 18:46:15 +00:00
|
|
|
/*
|
|
|
|
* 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 com.android.inputmethod.latin;
|
|
|
|
|
|
|
|
import android.content.Context;
|
|
|
|
import android.content.res.AssetFileDescriptor;
|
|
|
|
import android.util.Log;
|
|
|
|
|
|
|
|
import java.io.FileNotFoundException;
|
|
|
|
import java.io.IOException;
|
2011-04-27 14:13:11 +00:00
|
|
|
import java.util.Arrays;
|
|
|
|
import java.util.List;
|
2011-03-14 18:46:15 +00:00
|
|
|
import java.util.Locale;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper class to get the address of a mmap'able dictionary file.
|
|
|
|
*/
|
|
|
|
class BinaryDictionaryGetter {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Used for Log actions from this class
|
|
|
|
*/
|
|
|
|
private static final String TAG = BinaryDictionaryGetter.class.getSimpleName();
|
|
|
|
|
|
|
|
// Prevents this from being instantiated
|
|
|
|
private BinaryDictionaryGetter() {}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a file address from a resource, or null if it cannot be opened.
|
|
|
|
*/
|
|
|
|
private static AssetFileAddress loadFallbackResource(Context context, int fallbackResId) {
|
|
|
|
final AssetFileDescriptor afd = context.getResources().openRawResourceFd(fallbackResId);
|
|
|
|
if (afd == null) {
|
|
|
|
Log.e(TAG, "Found the resource but cannot read it. Is it compressed? resId="
|
|
|
|
+ fallbackResId);
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return AssetFileAddress.makeFromFileNameAndOffset(
|
|
|
|
context.getApplicationInfo().sourceDir, afd.getStartOffset(), afd.getLength());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-04-27 14:13:11 +00:00
|
|
|
* Returns a list of file addresses for a given locale, trying relevant methods in order.
|
2011-03-14 18:46:15 +00:00
|
|
|
*
|
2011-04-27 14:13:11 +00:00
|
|
|
* Tries to get binary dictionaries from various sources, in order:
|
|
|
|
* - Uses a private method of getting a private dictionaries, as implemented by the
|
2011-03-14 18:46:15 +00:00
|
|
|
* PrivateBinaryDictionaryGetter class.
|
|
|
|
* If that fails:
|
2011-04-27 14:13:11 +00:00
|
|
|
* - Uses a content provider to get a public dictionary set, as per the protocol described
|
2011-03-14 18:46:15 +00:00
|
|
|
* in BinaryDictionaryFileDumper.
|
|
|
|
* If that fails:
|
|
|
|
* - Gets a file name from the fallback resource passed as an argument.
|
|
|
|
* If that fails:
|
|
|
|
* - Returns null.
|
|
|
|
* @return The address of a valid file, or null.
|
|
|
|
*/
|
2011-04-27 14:13:11 +00:00
|
|
|
public static List<AssetFileAddress> getDictionaryFiles(Locale locale, Context context,
|
2011-03-14 18:46:15 +00:00
|
|
|
int fallbackResId) {
|
2011-04-27 14:13:11 +00:00
|
|
|
// Try first to query a private package signed the same way for private files.
|
|
|
|
final List<AssetFileAddress> privateFiles =
|
|
|
|
PrivateBinaryDictionaryGetter.getDictionaryFiles(locale, context);
|
|
|
|
if (null != privateFiles) {
|
|
|
|
return privateFiles;
|
2011-03-14 18:46:15 +00:00
|
|
|
} else {
|
|
|
|
try {
|
|
|
|
// If that was no-go, try to find a publicly exported dictionary.
|
2011-05-17 13:32:19 +00:00
|
|
|
List<AssetFileAddress> listFromContentProvider =
|
|
|
|
BinaryDictionaryFileDumper.getDictSetFromContentProvider(locale, context);
|
|
|
|
if (null != listFromContentProvider) {
|
|
|
|
return listFromContentProvider;
|
|
|
|
}
|
|
|
|
// If the list is null, fall through and return the fallback
|
2011-03-14 18:46:15 +00:00
|
|
|
} catch (FileNotFoundException e) {
|
|
|
|
Log.e(TAG, "Unable to create dictionary file from provider for locale "
|
|
|
|
+ locale.toString() + ": falling back to internal dictionary");
|
|
|
|
} catch (IOException e) {
|
|
|
|
Log.e(TAG, "Unable to read source data for locale "
|
|
|
|
+ locale.toString() + ": falling back to internal dictionary");
|
|
|
|
}
|
2011-07-19 09:16:34 +00:00
|
|
|
final AssetFileAddress fallbackAsset = loadFallbackResource(context, fallbackResId);
|
|
|
|
if (null == fallbackAsset) return null;
|
|
|
|
return Arrays.asList(fallbackAsset);
|
2011-03-14 18:46:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|