am cb27d955: Merge "[RF2] Some refactoring and some cleanup"
* commit 'cb27d955f334754e6cad0a5c3f8e13e913803f4a': [RF2] Some refactoring and some cleanupmain
commit
f16f7b2421
|
@ -27,15 +27,13 @@ import java.io.File;
|
|||
import java.io.IOException;
|
||||
import java.util.Map;
|
||||
|
||||
// TODO: Quit extending Dictionary after implementing dynamic binary dictionary.
|
||||
abstract public class AbstractDictionaryWriter extends Dictionary {
|
||||
abstract public class AbstractDictionaryWriter {
|
||||
/** Used for Log actions from this class */
|
||||
private static final String TAG = AbstractDictionaryWriter.class.getSimpleName();
|
||||
|
||||
private final Context mContext;
|
||||
|
||||
public AbstractDictionaryWriter(final Context context, final String dictType) {
|
||||
super(dictType);
|
||||
public AbstractDictionaryWriter(final Context context) {
|
||||
mContext = context;
|
||||
}
|
||||
|
||||
|
|
|
@ -43,8 +43,8 @@ public class DictionaryWriter extends AbstractDictionaryWriter {
|
|||
|
||||
private FusionDictionary mFusionDictionary;
|
||||
|
||||
public DictionaryWriter(final Context context, final String dictType) {
|
||||
super(context, dictType);
|
||||
public DictionaryWriter(final Context context) {
|
||||
super(context);
|
||||
clear();
|
||||
}
|
||||
|
||||
|
@ -92,18 +92,4 @@ public class DictionaryWriter extends AbstractDictionaryWriter {
|
|||
}
|
||||
dictEncoder.writeDictionary(mFusionDictionary, FORMAT_OPTIONS);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ArrayList<SuggestedWordInfo> getSuggestions(final WordComposer composer,
|
||||
final String prevWord, final ProximityInfo proximityInfo,
|
||||
boolean blockOffensiveWords, final int[] additionalFeaturesOptions) {
|
||||
// This class doesn't support suggestion.
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isValidWord(String word) {
|
||||
// This class doesn't support dictionary retrieval.
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -28,7 +28,6 @@ import com.android.inputmethod.latin.SuggestedWords.SuggestedWordInfo;
|
|||
import com.android.inputmethod.latin.utils.AsyncResultHolder;
|
||||
import com.android.inputmethod.latin.utils.CollectionUtils;
|
||||
import com.android.inputmethod.latin.utils.PrioritizedSerialExecutor;
|
||||
import com.android.inputmethod.latin.utils.StringUtils;
|
||||
|
||||
import java.io.File;
|
||||
import java.util.ArrayList;
|
||||
|
@ -66,9 +65,6 @@ abstract public class ExpandableBinaryDictionary extends Dictionary {
|
|||
|
||||
private static final int DICTIONARY_FORMAT_VERSION = 4;
|
||||
|
||||
private static final String SUPPORTS_DYNAMIC_UPDATE =
|
||||
FormatSpec.FileHeader.ATTRIBUTE_VALUE_TRUE;
|
||||
|
||||
/**
|
||||
* A static map of update controllers, each of which records the time of accesses to a single
|
||||
* binary dictionary file and tracks whether the file is regenerating. The key for this map is
|
||||
|
@ -135,11 +131,18 @@ abstract public class ExpandableBinaryDictionary extends Dictionary {
|
|||
*/
|
||||
protected abstract boolean hasContentChanged();
|
||||
|
||||
protected boolean isValidBinaryDictFormatVersion(final int formatVersion) {
|
||||
// TODO: Use ver4 format.
|
||||
protected boolean matchesExpectedBinaryDictFormatVersionForThisType(final int formatVersion) {
|
||||
// This class is using format 2 because it's used by the User and Contacts dictionary
|
||||
// only, which right now use format 2 (dicts using format 4 use Decaying*, which overrides
|
||||
// this method).
|
||||
// TODO: Migrate these dicts to ver4 format, and remove this function.
|
||||
return formatVersion == 2;
|
||||
}
|
||||
|
||||
public boolean hasValidContents() {
|
||||
return mBinaryDictionary.hasValidContents();
|
||||
}
|
||||
|
||||
protected String getFileNameExtentionToOpenDict() {
|
||||
return "";
|
||||
}
|
||||
|
@ -174,11 +177,11 @@ abstract public class ExpandableBinaryDictionary extends Dictionary {
|
|||
}
|
||||
|
||||
private static AbstractDictionaryWriter getDictionaryWriter(final Context context,
|
||||
final String dictType, final boolean isDynamicPersonalizationDictionary) {
|
||||
final boolean isDynamicPersonalizationDictionary) {
|
||||
if (isDynamicPersonalizationDictionary) {
|
||||
return null;
|
||||
} else {
|
||||
return new DictionaryWriter(context, dictType);
|
||||
return new DictionaryWriter(context);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -203,7 +206,7 @@ abstract public class ExpandableBinaryDictionary extends Dictionary {
|
|||
mBinaryDictionary = null;
|
||||
mFilenameDictionaryUpdateController = getDictionaryUpdateController(filename);
|
||||
// Currently, only dynamic personalization dictionary is updatable.
|
||||
mDictionaryWriter = getDictionaryWriter(context, dictType, isUpdatable);
|
||||
mDictionaryWriter = getDictionaryWriter(context, isUpdatable);
|
||||
}
|
||||
|
||||
protected static String getFilenameWithLocale(final String name, final Locale locale) {
|
||||
|
@ -222,9 +225,6 @@ abstract public class ExpandableBinaryDictionary extends Dictionary {
|
|||
mBinaryDictionary.close();
|
||||
mBinaryDictionary = null;
|
||||
}
|
||||
if (mDictionaryWriter != null) {
|
||||
mDictionaryWriter.close();
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
@ -564,7 +564,10 @@ abstract public class ExpandableBinaryDictionary extends Dictionary {
|
|||
mDictionaryWriter.write(mFilename, getHeaderAttributeMap());
|
||||
} else {
|
||||
if (mBinaryDictionary == null || !mBinaryDictionary.isValidDictionary()
|
||||
|| !isValidBinaryDictFormatVersion(mBinaryDictionary.getFormatVersion())) {
|
||||
|| !hasValidContents()
|
||||
// TODO: remove the check below
|
||||
|| !matchesExpectedBinaryDictFormatVersionForThisType(
|
||||
mBinaryDictionary.getFormatVersion())) {
|
||||
final File file = new File(mContext.getFilesDir(), mFilename);
|
||||
file.delete();
|
||||
BinaryDictionary.createEmptyDictFile(file.getAbsolutePath(),
|
||||
|
@ -663,7 +666,9 @@ abstract public class ExpandableBinaryDictionary extends Dictionary {
|
|||
loadBinaryDictionary();
|
||||
}
|
||||
if (mBinaryDictionary != null && !(mBinaryDictionary.isValidDictionary()
|
||||
&& isValidBinaryDictFormatVersion(
|
||||
&& hasValidContents()
|
||||
// TODO: remove the check below
|
||||
&& matchesExpectedBinaryDictFormatVersionForThisType(
|
||||
mBinaryDictionary.getFormatVersion()))) {
|
||||
// Binary dictionary or its format version is not valid. Regenerate the
|
||||
// dictionary file.
|
||||
|
|
|
@ -114,8 +114,10 @@ public abstract class DecayingExpandableBinaryDictionaryBase extends ExpandableB
|
|||
}
|
||||
|
||||
@Override
|
||||
protected boolean isValidBinaryDictFormatVersion(final int formatVersion) {
|
||||
return formatVersion >= REQUIRED_BINARY_DICTIONARY_VERSION;
|
||||
protected boolean matchesExpectedBinaryDictFormatVersionForThisType(final int formatVersion) {
|
||||
// This class is using format 4 because it's used by all version 4 dictionaries.
|
||||
// TODO: remove this when all dynamically generated dicts use version 4.
|
||||
return formatVersion == REQUIRED_BINARY_DICTIONARY_VERSION;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -49,6 +49,7 @@ public final class DictionaryPool extends LinkedBlockingQueue<DictAndKeyboard> {
|
|||
final static ArrayList<SuggestedWordInfo> noSuggestions = CollectionUtils.newArrayList();
|
||||
private final static DictAndKeyboard dummyDict = new DictAndKeyboard(
|
||||
new Dictionary(Dictionary.TYPE_MAIN) {
|
||||
// TODO: this dummy dictionary should be a singleton in the Dictionary class.
|
||||
@Override
|
||||
public ArrayList<SuggestedWordInfo> getSuggestions(final WordComposer composer,
|
||||
final String prevWord, final ProximityInfo proximityInfo,
|
||||
|
|
Loading…
Reference in New Issue