From ab146531c0710ad46ac347d280b14c798f732a12 Mon Sep 17 00:00:00 2001 From: linyuh Date: Tue, 19 Dec 2017 11:28:51 -0800 Subject: Support dual alphabets in smart dial. Bug: 30215380,70633239 Test: CompositeSmartDialMapTest, LatinSmartDialMapTest, RussianSmartDialMapTest, SmartDialNameMatcherTest PiperOrigin-RevId: 179580982 Change-Id: I5e4c3e61f0dfdc6ca1e80a93bb985ffec08dd8b0 --- .../com/android/dialer/smartdial/SmartDialMap.java | 97 ++++++++++++++++------ 1 file changed, 70 insertions(+), 27 deletions(-) (limited to 'java/com/android/dialer/smartdial/SmartDialMap.java') diff --git a/java/com/android/dialer/smartdial/SmartDialMap.java b/java/com/android/dialer/smartdial/SmartDialMap.java index 9638929a6..bc5c9ea72 100644 --- a/java/com/android/dialer/smartdial/SmartDialMap.java +++ b/java/com/android/dialer/smartdial/SmartDialMap.java @@ -16,45 +16,88 @@ package com.android.dialer.smartdial; -/** - * Note: These methods currently take characters as arguments. For future planned language support, - * they will need to be changed to use codepoints instead of characters. - * - *

http://docs.oracle.com/javase/6/docs/api/java/lang/String.html#codePointAt(int) - * - *

If/when this change is made, LatinSmartDialMap(which operates on chars) will continue to work - * by simply casting from a codepoint to a character. - */ -public interface SmartDialMap { +import android.support.v4.util.SimpleArrayMap; +import com.google.common.base.Optional; + +/** Definition for utilities that supports smart dial in different languages. */ +@SuppressWarnings("Guava") +abstract class SmartDialMap { - /* - * Returns true if the provided character can be mapped to a key on the dialpad + /** + * Returns true if the provided character can be mapped to a key on the dialpad. + * + *

The provided character is expected to be a normalized character. See {@link + * SmartDialMap#normalizeCharacter(char)} for details. */ - boolean isValidDialpadCharacter(char ch); + protected boolean isValidDialpadCharacter(char ch) { + return isValidDialpadAlphabeticChar(ch) || isValidDialpadNumericChar(ch); + } - /* - * Returns true if the provided character is a letter, and can be mapped to a key on the dialpad + /** + * Returns true if the provided character is a letter and can be mapped to a key on the dialpad. + * + *

The provided character is expected to be a normalized character. See {@link + * SmartDialMap#normalizeCharacter(char)} for details. */ - boolean isValidDialpadAlphabeticChar(char ch); + protected boolean isValidDialpadAlphabeticChar(char ch) { + return getCharToKeyMap().containsKey(ch); + } - /* - * Returns true if the provided character is a digit, and can be mapped to a key on the dialpad + /** + * Returns true if the provided character is a digit, and can be mapped to a key on the dialpad. */ - boolean isValidDialpadNumericChar(char ch); + protected boolean isValidDialpadNumericChar(char ch) { + return '0' <= ch && ch <= '9'; + } - /* - * Get the index of the key on the dialpad which the character corresponds to + /** + * Get the index of the key on the dialpad which the character corresponds to. + * + *

The provided character is expected to be a normalized character. See {@link + * SmartDialMap#normalizeCharacter(char)} for details. + * + *

An {@link Optional#absent()} is returned if the provided character can't be mapped to a key + * on the dialpad. */ - byte getDialpadIndex(char ch); + protected Optional getDialpadIndex(char ch) { + if (isValidDialpadNumericChar(ch)) { + return Optional.of((byte) (ch - '0')); + } - /* - * Get the actual numeric character on the dialpad which the character corresponds to + if (isValidDialpadAlphabeticChar(ch)) { + return Optional.of((byte) (getCharToKeyMap().get(ch) - '0')); + } + + return Optional.absent(); + } + + /** + * Get the actual numeric character on the dialpad which the character corresponds to. + * + *

The provided character is expected to be a normalized character. See {@link + * SmartDialMap#normalizeCharacter(char)} for details. + * + *

An {@link Optional#absent()} is returned if the provided character can't be mapped to a key + * on the dialpad. */ - char getDialpadNumericCharacter(char ch); + protected Optional getDialpadNumericCharacter(char ch) { + return isValidDialpadAlphabeticChar(ch) + ? Optional.of(getCharToKeyMap().get(ch)) + : Optional.absent(); + } - /* + /** * Converts uppercase characters to lower case ones, and on a best effort basis, strips accents * from accented characters. + * + *

An {@link Optional#absent()} is returned if the provided character can't be mapped to a key + * on the dialpad. + */ + abstract Optional normalizeCharacter(char ch); + + /** + * Returns a map in which each key is a normalized character and the corresponding value is a + * dialpad key. */ - char normalizeCharacter(char ch); + abstract SimpleArrayMap getCharToKeyMap(); } -- cgit v1.2.3