diff --git a/src/net/micode/notes/data/Contact.java b/src/net/micode/notes/data/Contact.java index d97ac5d..659de00 100644 --- a/src/net/micode/notes/data/Contact.java +++ b/src/net/micode/notes/data/Contact.java @@ -25,10 +25,19 @@ import android.util.Log; import java.util.HashMap; +/** + * Contact类用于从系统联系人数据库中查询电话号码对应的联系人姓名, + * 并提供内存缓存以提高重复查询的性能。 + */ public class Contact { + // 内存缓存:键为电话号码,值为对应的联系人姓名 private static HashMap sContactCache; private static final String TAG = "Contact"; + /** + * 查询联系人的SQL WHERE子句模板,用于匹配电话号码并确保数据类型正确。 + * 其中"+"会在运行时被替换为格式化后的最小匹配号码。 + */ private static final String CALLER_ID_SELECTION = "PHONE_NUMBERS_EQUAL(" + Phone.NUMBER + ",?) AND " + Data.MIMETYPE + "='" + Phone.CONTENT_ITEM_TYPE + "'" + " AND " + Data.RAW_CONTACT_ID + " IN " @@ -36,38 +45,56 @@ public class Contact { + " FROM phone_lookup" + " WHERE min_match = '+')"; + /** + * 根据电话号码查询对应的联系人姓名,优先从缓存中获取以提高性能。 + * + * @param context 应用上下文,用于访问内容提供者 + * @param phoneNumber 待查询的电话号码 + * @return 匹配的联系人姓名,如果未找到则返回null + */ public static String getContact(Context context, String phoneNumber) { + // 初始化缓存(如果尚未初始化) if(sContactCache == null) { sContactCache = new HashMap(); } + // 检查缓存中是否已有记录 if(sContactCache.containsKey(phoneNumber)) { return sContactCache.get(phoneNumber); } + // 格式化查询条件,将模板中的"+"替换为实际的最小匹配号码 String selection = CALLER_ID_SELECTION.replace("+", PhoneNumberUtils.toCallerIDMinMatch(phoneNumber)); + + // 执行数据库查询 Cursor cursor = context.getContentResolver().query( - Data.CONTENT_URI, - new String [] { Phone.DISPLAY_NAME }, - selection, - new String[] { phoneNumber }, - null); + Data.CONTENT_URI, // 查询联系人数据的URI + new String [] { Phone.DISPLAY_NAME }, // 只需要获取联系人姓名 + selection, // 使用格式化后的查询条件 + new String[] { phoneNumber }, // 查询参数 + null // 不使用排序 + ); + // 处理查询结果 if (cursor != null && cursor.moveToFirst()) { try { + // 获取联系人姓名并添加到缓存 String name = cursor.getString(0); sContactCache.put(phoneNumber, name); return name; } catch (IndexOutOfBoundsException e) { + // 处理可能的索引越界异常 Log.e(TAG, " Cursor get string error " + e.toString()); return null; } finally { + // 确保关闭游标,避免资源泄漏 cursor.close(); } } else { + // 未找到匹配的联系人 Log.d(TAG, "No contact matched with number:" + phoneNumber); return null; } } -} +} \ No newline at end of file