am bf6fc495: Merge "Get dynamic dict stats via DictionaryFacilitator"

* commit 'bf6fc4953b6529274f94ecfef967faece8a0003d':
  Get dynamic dict stats via DictionaryFacilitator
main
Keisuke Kuroyanagi 2014-08-25 11:32:57 +00:00 committed by Android Git Automerger
commit 893c1aab3e
1 changed files with 12 additions and 0 deletions

View File

@ -19,6 +19,7 @@ package com.android.inputmethod.latin;
import android.content.Context;
import android.text.TextUtils;
import android.util.Log;
import android.util.Pair;
import android.view.inputmethod.InputMethodSubtype;
import com.android.inputmethod.annotations.UsedForTesting;
@ -656,4 +657,15 @@ public class DictionaryFacilitator {
}
dictToDump.dumpAllWordsForDebug();
}
public ArrayList<Pair<String, DictionaryStats>> getStatsOfEnabledSubDicts() {
final ArrayList<Pair<String, DictionaryStats>> statsOfEnabledSubDicts = new ArrayList<>();
final Dictionaries dictionaries = mDictionaries;
for (final String dictType : SUB_DICT_TYPES) {
final ExpandableBinaryDictionary dictionary = dictionaries.getSubDict(dictType);
if (dictionary == null) continue;
statsOfEnabledSubDicts.add(new Pair<>(dictType, dictionary.getDictionaryStats()));
}
return statsOfEnabledSubDicts;
}
}