Skip to content
Snippets Groups Projects
Commit 7c2ea3df authored by Tadashi G. Takaoka's avatar Tadashi G. Takaoka Committed by Android Git Automerger
Browse files

am 20239759: Merge "Small optimization for readability"

* commit '20239759':
  Small optimization for readability
parents ce597c13 20239759
No related branches found
No related tags found
No related merge requests found
...@@ -178,42 +178,43 @@ public final class KeyboardLayoutSet { ...@@ -178,42 +178,43 @@ public final class KeyboardLayoutSet {
private Keyboard getKeyboard(final ElementParams elementParams, final KeyboardId id) { private Keyboard getKeyboard(final ElementParams elementParams, final KeyboardId id) {
final SoftReference<Keyboard> ref = sKeyboardCache.get(id); final SoftReference<Keyboard> ref = sKeyboardCache.get(id);
Keyboard keyboard = (ref == null) ? null : ref.get(); final Keyboard cachedKeyboard = (ref == null) ? null : ref.get();
if (keyboard == null) { if (cachedKeyboard != null) {
final KeyboardBuilder<KeyboardParams> builder = if (DEBUG_CACHE) {
new KeyboardBuilder<KeyboardParams>(mContext, new KeyboardParams()); Log.d(TAG, "keyboard cache size=" + sKeyboardCache.size() + ": HIT id=" + id);
if (id.isAlphabetKeyboard()) {
builder.setAutoGenerate(sKeysCache);
}
final int keyboardXmlId = elementParams.mKeyboardXmlId;
builder.load(keyboardXmlId, id);
if (mParams.mDisableTouchPositionCorrectionDataForTest) {
builder.disableTouchPositionCorrectionDataForTest();
} }
builder.setProximityCharsCorrectionEnabled( return cachedKeyboard;
elementParams.mProximityCharsCorrectionEnabled); }
keyboard = builder.build();
sKeyboardCache.put(id, new SoftReference<Keyboard>(keyboard)); final KeyboardBuilder<KeyboardParams> builder =
if ((id.mElementId == KeyboardId.ELEMENT_ALPHABET new KeyboardBuilder<KeyboardParams>(mContext, new KeyboardParams());
|| id.mElementId == KeyboardId.ELEMENT_ALPHABET_AUTOMATIC_SHIFTED) if (id.isAlphabetKeyboard()) {
&& !mParams.mIsSpellChecker) { builder.setAutoGenerate(sKeysCache);
// We only forcibly cache the primary, "ALPHABET", layouts. }
for (int i = sForcibleKeyboardCache.length - 1; i >= 1; --i) { final int keyboardXmlId = elementParams.mKeyboardXmlId;
sForcibleKeyboardCache[i] = sForcibleKeyboardCache[i - 1]; builder.load(keyboardXmlId, id);
} if (mParams.mDisableTouchPositionCorrectionDataForTest) {
sForcibleKeyboardCache[0] = keyboard; builder.disableTouchPositionCorrectionDataForTest();
if (DEBUG_CACHE) { }
Log.d(TAG, "forcing caching of keyboard with id=" + id); builder.setProximityCharsCorrectionEnabled(elementParams.mProximityCharsCorrectionEnabled);
} final Keyboard keyboard = builder.build();
sKeyboardCache.put(id, new SoftReference<Keyboard>(keyboard));
if ((id.mElementId == KeyboardId.ELEMENT_ALPHABET
|| id.mElementId == KeyboardId.ELEMENT_ALPHABET_AUTOMATIC_SHIFTED)
&& !mParams.mIsSpellChecker) {
// We only forcibly cache the primary, "ALPHABET", layouts.
for (int i = sForcibleKeyboardCache.length - 1; i >= 1; --i) {
sForcibleKeyboardCache[i] = sForcibleKeyboardCache[i - 1];
} }
sForcibleKeyboardCache[0] = keyboard;
if (DEBUG_CACHE) { if (DEBUG_CACHE) {
Log.d(TAG, "keyboard cache size=" + sKeyboardCache.size() + ": " Log.d(TAG, "forcing caching of keyboard with id=" + id);
+ ((ref == null) ? "LOAD" : "GCed") + " id=" + id);
} }
} else if (DEBUG_CACHE) {
Log.d(TAG, "keyboard cache size=" + sKeyboardCache.size() + ": HIT id=" + id);
} }
if (DEBUG_CACHE) {
Log.d(TAG, "keyboard cache size=" + sKeyboardCache.size() + ": "
+ ((ref == null) ? "LOAD" : "GCed") + " id=" + id);
}
return keyboard; return keyboard;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment