今天从工厂接收到一个BUG是:自己管理的模块暗码信息查询功能失效。
分析问题
其实这个模块问题做久了感觉也没什么难度,只是这是个新的问题导致我不知道如何去下手。(之前都是改改暗码拉出来的界面或者添加暗码等等)
*首先,分析问题之前我并没有对这个流程有多少了解,只知道是有Dialer,对暗码格式判断然后发送个广播,有暗码APK接收做处理
*解决完问题之后回想起来感觉还是蛮简单的,犹豫要不要写这种博客。
解决问题
*抓LOG
SecretCode.java
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
public class ....SecretCode extends BroadcastReceiver{ public void onReceive(Context context, Intent intent){ ... if (intent.getAction().equals(SECRET_CODE_ACTION)) { android.util.Log.d("InfoService", "type = " + type); if (type != null) { Intent i = new Intent(InfoService.ACTION_BROADCAST); i.putExtra("edit_input", type); context.sendBroadcast(i); return; } } } } } } |
InfoService.java
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
public class InfoService extends Service{ private static final String TAG = "InfoService"; public static final String ACTION_BROADCAST = "com.---.InfoService"; public static final String CAT_INTERNEL_VERSION = "*#86436*#"; public static final String CAT_CUSTOM_VERSION = "*#84666*#"; public static final String CAT_DEVICES_VERSION = "*#0661#"; private static final String CAT_MMX_CUSTOM_VERSION = "*#8375#"; private static final String CAT_PK_CUSTOM_VERSION = "*#79#"; private static final String CAT_WIKO_CUSTOM_VERSION = "*#*#563412#*#*"; private static final String CAT_BLU_PCB_VERSION="*#999*#"; private static final String CAT_BLU_DEVICE_VERSION="*#888*#"; private static final String CAT_PK_CUSTOM_VERSION2 = "*#*#79#*#*"; private BroadcastReceiver mReceiver; @Override public IBinder onBind(Intent intent){ return null; } public void onCreate(){ super.onCreate(); mReceiver = new InfoReceiver(); IntentFilter filter = new IntentFilter(); filter.addAction(ACTION_BROADCAST); registerReceiver(mReceiver, filter); Log.i(TAG, "registerReceiver: InfoReceiver"); } private class InfoReceiver extends BroadcastReceiver{ @Override public void onReceive(Context context, Intent intent){ final String action = intent.getAction(); Log.i(TAG, "receive:"+action); if(action.equals(ACTION_BROADCAST)){ dobackRun(context, intent); } } } dobackRun(context, intent); //暗码逻辑实现 public void onDestroy(){ super.onDestroy(); if(mReceiver != null){ unregisterReceiver(mReceiver); mReceiver = null; } } } |
代码很简单,由InfoService这个服务动态注册一个广播接受者,然后...SecretCode这个接收者接收到由Dialer发送的广播之后进行简单的逻辑判断处理(有些省略)继续发送一个广播。再有后台InfoService接收处理。
看到这,大概就把该模块简单的理清楚了,那为什么暗码功能失效呢?
通过抓Log知道,...SecretCode这个接收者是由静态注册,这个接收广播没有问题,但是由它发送的广播InfoReceiver接收不到,一直以为是广播被截获了,导致接收不到,在这上面也花了很长时间,无从验证广播的截获。
之后,也没有从这一角度去分析问题了,抱着试一试的态度,我通过下面这两条adb命令定位到是InfoService这个服务没有启动才导致的动态注册的广播不能接受,从而暗码功能失效
1 2 |
adb shell am startservice -n com.---.productInfo/com.---.productInfo.InfoService adb shell am stopservice -n com.---.productInfo/com.---.productInfo.InfoService |
BootReceiver.java
1 2 3 4 5 6 7 8 9 10 11 |
public class BootReceiver extends BroadcastReceiver{ private static final String TAG = "---ProductInfoBootReceiver"; @Override public void onReceive(Context context, Intent intent){ if(intent.getAction().equals(Intent.ACTION_BOOT_COMPLETED)){ Log.i(TAG, "----BootReceiver---"); context.startService(new Intent(context,InfoService.class)); } } } |
这个服务是由接收到开机广播来启动的,没有启动当然是没有接收到开机广播,通过Log看,很多没有接收到开机广播接收者,因为是共平台的,其他的项目没有这个问题,而就这个订单有暗码失效,那么多人改这个平台代码,鬼知道是哪里改出了问题,就先把问题丢给性能优化的人了。