am ba212e9d: Add a facility to dump the dictionary contents while closing
* commit 'ba212e9d76b021dfb99239e55f860693dac6723b': Add a facility to dump the dictionary contents while closingmain
commit
9a6200eab8
|
@ -55,7 +55,7 @@ abstract public class ExpandableBinaryDictionary extends Dictionary {
|
||||||
|
|
||||||
// TODO: Remove.
|
// TODO: Remove.
|
||||||
/** Whether to call binary dictionary dynamically updating methods. */
|
/** Whether to call binary dictionary dynamically updating methods. */
|
||||||
public static boolean ENABLE_BINARY_DICTIONARY_DYNAMIC_UPDATE = true;
|
public static final boolean ENABLE_BINARY_DICTIONARY_DYNAMIC_UPDATE = true;
|
||||||
|
|
||||||
private static final int TIMEOUT_FOR_READ_OPS_IN_MILLISECONDS = 100;
|
private static final int TIMEOUT_FOR_READ_OPS_IN_MILLISECONDS = 100;
|
||||||
|
|
||||||
|
@ -733,4 +733,19 @@ abstract public class ExpandableBinaryDictionary extends Dictionary {
|
||||||
public boolean isTerminatedForTests() {
|
public boolean isTerminatedForTests() {
|
||||||
return getExecutor(mFilename).isTerminated();
|
return getExecutor(mFilename).isTerminated();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@UsedForTesting
|
||||||
|
protected void runAfterGcForDebug(final Runnable r) {
|
||||||
|
getExecutor(mFilename).executePrioritized(new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
try {
|
||||||
|
mBinaryDictionary.flushWithGC();
|
||||||
|
r.run();
|
||||||
|
} finally {
|
||||||
|
mFilenameDictionaryUpdateController.mIsRegenerating.set(false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -46,6 +46,7 @@ public abstract class DecayingExpandableBinaryDictionaryBase extends ExpandableB
|
||||||
private static final String TAG = DecayingExpandableBinaryDictionaryBase.class.getSimpleName();
|
private static final String TAG = DecayingExpandableBinaryDictionaryBase.class.getSimpleName();
|
||||||
public static final boolean DBG_SAVE_RESTORE = false;
|
public static final boolean DBG_SAVE_RESTORE = false;
|
||||||
private static final boolean DBG_STRESS_TEST = false;
|
private static final boolean DBG_STRESS_TEST = false;
|
||||||
|
private static final boolean DBG_DUMP_ON_CLOSE = false;
|
||||||
private static final boolean PROFILE_SAVE_RESTORE = LatinImeLogger.sDBG;
|
private static final boolean PROFILE_SAVE_RESTORE = LatinImeLogger.sDBG;
|
||||||
|
|
||||||
/** Any pair being typed or picked */
|
/** Any pair being typed or picked */
|
||||||
|
@ -82,6 +83,9 @@ public abstract class DecayingExpandableBinaryDictionaryBase extends ExpandableB
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void close() {
|
public void close() {
|
||||||
|
if (DBG_DUMP_ON_CLOSE) {
|
||||||
|
dumpAllWordsForDebug();
|
||||||
|
}
|
||||||
if (!ExpandableBinaryDictionary.ENABLE_BINARY_DICTIONARY_DYNAMIC_UPDATE) {
|
if (!ExpandableBinaryDictionary.ENABLE_BINARY_DICTIONARY_DYNAMIC_UPDATE) {
|
||||||
closeBinaryDictionary();
|
closeBinaryDictionary();
|
||||||
}
|
}
|
||||||
|
@ -221,6 +225,55 @@ public abstract class DecayingExpandableBinaryDictionaryBase extends ExpandableB
|
||||||
mSessions.remove(session);
|
mSessions.remove(session);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@UsedForTesting
|
||||||
|
public void dumpAllWordsForDebug() {
|
||||||
|
runAfterGcForDebug(new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
dumpAllWordsForDebugLocked();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
private void dumpAllWordsForDebugLocked() {
|
||||||
|
Log.d(TAG, "dumpAllWordsForDebug started.");
|
||||||
|
final OnAddWordListener listener = new OnAddWordListener() {
|
||||||
|
@Override
|
||||||
|
public void setUnigram(final String word, final String shortcutTarget,
|
||||||
|
final int frequency, final int shortcutFreq) {
|
||||||
|
Log.d(TAG, "load unigram: " + word + "," + frequency);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void setBigram(final String word0, final String word1, final int frequency) {
|
||||||
|
if (word0.length() < Constants.DICTIONARY_MAX_WORD_LENGTH
|
||||||
|
&& word1.length() < Constants.DICTIONARY_MAX_WORD_LENGTH) {
|
||||||
|
Log.d(TAG, "load bigram: " + word0 + "," + word1 + "," + frequency);
|
||||||
|
} else {
|
||||||
|
Log.d(TAG, "Skip inserting a too long bigram: " + word0 + "," + word1 + ","
|
||||||
|
+ frequency);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// Load the dictionary from binary file
|
||||||
|
final File dictFile = new File(mContext.getFilesDir(), mFileName);
|
||||||
|
final DictDecoder dictDecoder = FormatSpec.getDictDecoder(dictFile,
|
||||||
|
DictDecoder.USE_BYTEARRAY);
|
||||||
|
if (dictDecoder == null) {
|
||||||
|
// This is an expected condition: we don't have a user history dictionary for this
|
||||||
|
// language yet. It will be created sometime later.
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
dictDecoder.openDictBuffer();
|
||||||
|
UserHistoryDictIOUtils.readDictionaryBinary(dictDecoder, listener);
|
||||||
|
} catch (IOException e) {
|
||||||
|
Log.d(TAG, "IOException on opening a bytebuffer", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@UsedForTesting
|
@UsedForTesting
|
||||||
public void clearAndFlushDictionary() {
|
public void clearAndFlushDictionary() {
|
||||||
// Clear the node structure on memory
|
// Clear the node structure on memory
|
||||||
|
|
Loading…
Reference in New Issue