`

Android 2.3 SD卡挂载流程浅析(六)

 
阅读更多
在这五篇文章中,简单的分析了将SD卡插入的消息从底层传递到了上层的流程,但并没有深入分析毕竟我的目的是理清一条清晰的消息传递路线,最终目标是再系统的设置界面中显示出来,因此,本文将继续分析该流程。但是本文的分析又不同于前面五篇文章,因为本文是通过从上到下来分析,将分析流程反过来。

1.首先找到系统设置的源码。

路径:AndroidSorceCode2.3/package/app/Settings/src/com/android/settings/deviceinfo/Memory.java

该文件其实就是我们打开系统设置-存储的一个界面,如下图:


在设置中点击存储便进入到Memory的界面,如下:


如果已经插入SD卡并且系统已经挂载了的话,这里会有显示。也就是说我们的最终目标在这里,SD卡的挂载信息是如何传递到这里的。我们继续回到Memory.java文件中。我们要如何知道一步该做什么呢?我们先在Eclipse中的logcat添加TAG名为Memory的TAG,然后插入SD卡,我们会发现有以下log输出:

这就是我们需要的关键点,因为这句log是从Memory.java中输出的,因此我们首先要找到该log的出处:

view plain
  1. <spanstyle="font-size:18px;">StorageEventListenermStorageListener=newStorageEventListener(){
  2. @Override
  3. publicvoidonStorageStateChanged(Stringpath,StringoldState,StringnewState){
  4. Log.i(TAG,"Receivedstoragestatechangednotificationthat"+
  5. path+"changedstatefrom"+oldState+
  6. "to"+newState);
  7. updateMemoryStatus();
  8. }
  9. };</span>

从以上代码中可以知道,这里就是输出关键log的地方,换句话说当我们插入SD卡的时候,系统触发这个onStroageStateChanged()方法,在该方法中一并执行了updateMemoryStatus()方法,我们跟踪进入updateMemoryStatus()方法看看,根据这名字我们大致可以猜测其作用是更新存储设备的状态信息:
view plain
  1. privatevoidupdateMemoryStatus(){
  2. Stringstatus=Environment.getExternalStorageState();
  3. StringreadOnly="";
  4. if(status.equals(Environment.MEDIA_MOUNTED_READ_ONLY)){
  5. status=Environment.MEDIA_MOUNTED;
  6. readOnly=mRes.getString(R.string.read_only);
  7. }
  8. if(status.equals(Environment.MEDIA_MOUNTED)){
  9. if(!Environment.isExternalStorageRemovable()){
  10. //Thisdevicehasbuilt-instoragethatisnotremovable.
  11. //Thereisnoreasonfortheusertounmountit.
  12. if(mSdMountToggleAdded){
  13. mSdMountPreferenceGroup.removePreference(mSdMountToggle);
  14. mSdMountToggleAdded=false;
  15. }
  16. }
  17. try{
  18. Filepath=Environment.getExternalStorageDirectory();
  19. StatFsstat=newStatFs(path.getPath());
  20. longblockSize=stat.getBlockSize();
  21. longtotalBlocks=stat.getBlockCount();
  22. longavailableBlocks=stat.getAvailableBlocks();
  23. mSdSize.setSummary(formatSize(totalBlocks*blockSize));
  24. mSdAvail.setSummary(formatSize(availableBlocks*blockSize)+readOnly);
  25. mSdMountToggle.setEnabled(true);
  26. mSdMountToggle.setTitle(mRes.getString(R.string.sd_eject));
  27. mSdMountToggle.setSummary(mRes.getString(R.string.sd_eject_summary));
  28. }catch(IllegalArgumentExceptione){
  29. //thiscanoccuriftheSDcardisremoved,butwehaven'treceivedthe
  30. //ACTION_MEDIA_REMOVEDIntentyet.
  31. status=Environment.MEDIA_REMOVED;
  32. }
  33. }else{
  34. mSdSize.setSummary(mRes.getString(R.string.sd_unavailable));
  35. mSdAvail.setSummary(mRes.getString(R.string.sd_unavailable));
  36. if(!Environment.isExternalStorageRemovable()){
  37. if(status.equals(Environment.MEDIA_UNMOUNTED)){
  38. if(!mSdMountToggleAdded){
  39. mSdMountPreferenceGroup.addPreference(mSdMountToggle);
  40. mSdMountToggleAdded=true;
  41. }
  42. }
  43. }
  44. if(status.equals(Environment.MEDIA_UNMOUNTED)||
  45. status.equals(Environment.MEDIA_NOFS)||
  46. status.equals(Environment.MEDIA_UNMOUNTABLE)){
  47. mSdMountToggle.setEnabled(true);
  48. mSdMountToggle.setTitle(mRes.getString(R.string.sd_mount));
  49. mSdMountToggle.setSummary(mRes.getString(R.string.sd_mount_summary));
  50. }else{
  51. mSdMountToggle.setEnabled(false);
  52. mSdMountToggle.setTitle(mRes.getString(R.string.sd_mount));
  53. mSdMountToggle.setSummary(mRes.getString(R.string.sd_insert_summary));
  54. }
  55. }
  56. Filepath=Environment.getDataDirectory();
  57. StatFsstat=newStatFs(path.getPath());
  58. longblockSize=stat.getBlockSize();
  59. longavailableBlocks=stat.getAvailableBlocks();
  60. findPreference("memory_internal_avail").setSummary(formatSize(availableBlocks*blockSize));
  61. }

果然不出我们所料,这里也就是真正更新设置-存储界面里面信息的方法。

2.跟着源码中的Memory.java顺藤摸瓜

我们回到StorageEventListener实例化对象的地方:

view plain
  1. StorageEventListenermStorageListener=newStorageEventListener(){
  2. @Override
  3. publicvoidonStorageStateChanged(Stringpath,StringoldState,StringnewState){
  4. Log.i(TAG,"Receivedstoragestatechangednotificationthat"+
  5. path+"changedstatefrom"+oldState+
  6. "to"+newState);
  7. updateMemoryStatus();
  8. }
  9. };

通过代码我们可以知道,StorageEventListener是一个抽象类,在这里通过实例化自己的对象并用匿名内部类实现了自己定义中的抽象方法。我接着回到Memory.java中的onCreate()方法中:
view plain
  1. if(mStorageManager==null){
  2. mStorageManager=(StorageManager)getSystemService(Context.STORAGE_SERVICE);
  3. mStorageManager.registerListener(mStorageListener);
  4. }

在这里我们可以看到,StorageEventListener的对象mStorageListener通过StorageManager的方法registerListener()完成注册。这里我们需要详细了解一下这个注册的过程,因为这里所谓的注册就为后面的触发埋下了伏笔,注册存储事件监听器(StorageEventListener)的目的就是为了在存储设备状态发生改变并触发事件的时候,接收并处理这些事件。

(1).mStorageManager初始化

view plain
  1. mStorageManager=(StorageManager)getSystemService(Context.STORAGE_SERVICE);
我直接跟踪getSystemService()方法,首先会跳转到Activity.java中的getSystemService()方法中:
view plain
  1. @Override
  2. publicObjectgetSystemService(Stringname){
  3. if(getBaseContext()==null){
  4. thrownewIllegalStateException(
  5. "SystemservicesnotavailabletoActivitiesbeforeonCreate()");
  6. }
  7. if(WINDOW_SERVICE.equals(name)){
  8. returnmWindowManager;
  9. }elseif(SEARCH_SERVICE.equals(name)){
  10. ensureSearchManager();
  11. returnmSearchManager;
  12. }
  13. returnsuper.getSystemService(name);
  14. }

这里因为不满足if的判断条件,因此会返回调用父类的getSystemService方法。接下来继续跟踪到其父类中的getSystemService方法中查看,这里的Activity继承了ContextThemeWrapper这个类:
view plain
  1. @Override
  2. publicObjectgetSystemService(Stringname){
  3. if(LAYOUT_INFLATER_SERVICE.equals(name)){
  4. if(mInflater==null){
  5. mInflater=LayoutInflater.from(mBase).cloneInContext(this);
  6. }
  7. returnmInflater;
  8. }
  9. returnmBase.getSystemService(name);
  10. }

根据if的判断条件来看,这里还是不会满足判断条件。如果这里我们继续点击getSystemService()方法去跟踪的话我们会发现,我们来到了一个抽象类Context类中。该类中的getSystemService()方法也是一个抽象方法,那么到这里我们已经无法分析了吗?非也非也。如果细心的话我们会发现这里的getSystemService()方法前面有一个mBase对象,该对象是Context的,因为抽象类不可能有自己的实例化对象,因此根据多态性可以知道,这里的mBase肯定是其子类的对象,因此我们需要找到该子类。

(2)getSystemService()峰回路转

我们首先看看这个mBase的定义,直接跳转过去可以看到:

view plain
  1. privateContextmBase;
  2. ...
  3. publicContextThemeWrapper(Contextbase,intthemeres){
  4. super(base);
  5. mBase=base;
  6. mThemeResource=themeres;
  7. }
  8. @OverrideprotectedvoidattachBaseContext(ContextnewBase){
  9. super.attachBaseContext(newBase);
  10. mBase=newBase;
  11. }

这里只截取了其中部分,但我已经可以看到给mBase赋值的地方有两处,这里该怎么断定呢?按照常理我们先去跟踪ContextThemeWrapper构造方法的调用处,直接在Eclipse对该方法点击右键,选择Open Call Hierarchy,这样就会出现调用该方法的地方,这样一步步跟踪下去似乎越来越乱,因为调转点实在是太多了,因此先就此打住。我们回过头先查看这里的attachBaseContext方法,通过同样的方法(因为自己也是第一次分析,很多东西都不懂,只能自己摸着石头过河,高手请勿见笑)。我们直接跳转会来到Activity中的attach()方法中:

view plain
  1. finalvoidattach(Contextcontext,ActivityThreadaThread,
  2. Instrumentationinstr,IBindertoken,intident,
  3. Applicationapplication,Intentintent,ActivityInfoinfo,
  4. CharSequencetitle,Activityparent,Stringid,
  5. ObjectlastNonConfigurationInstance,
  6. HashMap<String,Object>lastNonConfigurationChildInstances,
  7. Configurationconfig){
  8. attachBaseContext(context);//这里调用

这里截取了部分代码,只抓取了我们需要的部分,这里发现如果调用了attach()方法的话会传递一个Context的对象,那么我们继续跟踪,在Activity的performLaunchActivity方法中我们发现了attach()方法的调用处:
view plain
  1. activity.attach(appContext,this,getInstrumentation(),r.token,
  2. r.ident,app,r.intent,r.activityInfo,title,r.parent,
  3. r.embeddedID,r.lastNonConfigurationInstance,
  4. r.lastNonConfigurationChildInstances,config);

通过以上代码我们可以发现这里传递了一个appContext参数,跟踪此参数,可以看到:
view plain
  1. ContextImplappContext=newContextImpl();

原来是ContextImpl的对象,原来应该传入的对象是Context的,这里传入的却是ContextImpl的对象,因此不用想我们也知道,ContextImpl肯定是Context的子类,跟踪过去一看,果不其然:
view plain
  1. classContextImplextendsContext

既然ContextImpl继承了Context类,并将自己的对象作为参数传递进去,那么前面的mBase对象就应该是ContextImpl的对象,因此调用的getSystemService()方法也应该在ContextImpl类中有覆写。直接搜索可以找到:
view plain
  1. @Override
  2. publicObjectgetSystemService(Stringname){
  3. if(WINDOW_SERVICE.equals(name)){
  4. returnWindowManagerImpl.getDefault();
  5. }elseif(LAYOUT_INFLATER_SERVICE.equals(name)){
  6. synchronized(mSync){
  7. LayoutInflaterinflater=mLayoutInflater;
  8. if(inflater!=null){
  9. returninflater;
  10. }
  11. mLayoutInflater=inflater=
  12. PolicyManager.makeNewLayoutInflater(getOuterContext());
  13. returninflater;
  14. }
  15. }elseif(SENSOR_SERVICE.equals(name)){
  16. returngetSensorManager();
  17. ......
  18. }elseif(STORAGE_SERVICE.equals(name)){
  19. returngetStorageManager();//这里是我们所需要的
  20. }elseif(USB_SERVICE.equals(name)){
  21. returngetUsbManager();
  22. }elseif(VIBRATOR_SERVICE.equals(name)){
  23. returngetVibrator();
  24. }
  25. ......
  26. returnnull;
  27. }

原来,我们梦里寻她千百度,蓦然回首,getSystemService()竟然藏在此处。因为我们在Memory.java中传递过来的是STORAGE_SERVICE,因此这里会执行getStorageManager()方法。

(3).继续探索getStorageManager()

继续跟踪getStorageManager()方法我们会看到:

view plain
  1. privateStorageManagergetStorageManager(){
  2. synchronized(mSync){
  3. if(mStorageManager==null){
  4. try{
  5. mStorageManager=newStorageManager(mMainThread.getHandler().getLooper());
  6. }catch(RemoteExceptionrex){
  7. Log.e(TAG,"FailedtocreateStorageManager",rex);
  8. mStorageManager=null;
  9. }
  10. }
  11. }
  12. returnmStorageManager;
  13. }

通过该方法可以看到,返回的是一个StorageManager对象。但我们需要关注的是StorageManager(mMainThread.getHandler().getLooper())在这个方法中传递的参数是ActivityThread的handler中的looper。继续跟踪此方法就可以来到StorageManager的带参构造函数:

view plain
  1. publicStorageManager(LoopertgtLooper)throwsRemoteException{
  2. mMountService=IMountService.Stub.asInterface(ServiceManager.getService("mount"));
  3. if(mMountService==null){
  4. Log.e(TAG,"Unabletoconnecttomountservice!-isitrunningyet?");
  5. return;
  6. }
  7. mTgtLooper=tgtLooper;
  8. mBinderListener=newMountServiceBinderListener();
  9. mMountService.registerListener(mBinderListener);
  10. }

在该方法中,首先初始化了IMountService的对象,因为目前自己对Binder这一块还不是很熟悉,因此只能凭借自己的理解来分析。我们先去看看ServiceManager.getService("mount")方法:
view plain
  1. publicstaticIBindergetService(Stringname){
  2. try{
  3. IBinderservice=sCache.get(name);
  4. if(service!=null){
  5. returnservice;
  6. }else{
  7. returngetIServiceManager().getService(name);
  8. }
  9. }catch(RemoteExceptione){
  10. Log.e(TAG,"erroringetService",e);
  11. }
  12. returnnull;
  13. }

“该方法将返回一个服务的引用,这个服务的名称就是我们传递进去的参数名称。如果这个服务不存在的话将返回null。”源码注释里面是这么说的,但我们就从代码中可以知道,实际上返回的是一个IBinder的对象。

接着调用回到StorageManager的构造函数中的IMountService.Stub.asInterface()方法:

view plain
  1. publicstaticIMountServiceasInterface(IBinderobj){
  2. if(obj==null){
  3. returnnull;
  4. }
  5. IInterfaceiin=obj.queryLocalInterface(DESCRIPTOR);
  6. if(iin!=null&&iininstanceofIMountService){
  7. return(IMountService)iin;
  8. }
  9. returnnewIMountService.Stub.Proxy(obj);
  10. }

“该方法将一个IBinder对象转换成一个IMountService接口,如果必要的话将通过代理来实现”,这里所说的代理指的是Proxy()方法。

这里又需要跳转到obj.queryLocaIInterface()方法中(PS:大家不要觉得枯燥,作为一个新手很多东西我也是第一次接触因此可能会走很多弯路,但过程还是很精彩的):

view plain
  1. publicIInterfacequeryLocalInterface(Stringdescriptor);

很明显,这是一个在IBinder中的接口,因为Binder类实现了IBinder接口,因此我们直接去Binder类中查找该方法:
view plain
  1. publicIInterfacequeryLocalInterface(Stringdescriptor){
  2. if(mDescriptor.equals(descriptor)){
  3. returnmOwner;
  4. }
  5. returnnull;
  6. }

以上方法的作用是,根据传入的描述符返回一个IInterface的mOwner对象,该mOwner对象在Binder类中有方法带参数传递如下:
view plain
  1. publicvoidattachInterface(IInterfaceowner,Stringdescriptor){
  2. mOwner=owner;
  3. mDescriptor=descriptor;
  4. }

分析到这一步,我相信大家都头都晕了吧(不管你晕不晕,我反正是晕了,休息休息...)。
*************************************************分割线*********************************************************

休息好了,我们继续分析吧。

因为IInterface实际上也是一个接口,因此不可能实例化对象来传递,所以这里我们也不用想,只要找到其子类那么传递的对象就是其子类实例化的对象。但是要怎么找呢?我们这里的descriptor是“IMountService”因此我们可以在IMountService.java中寻找线索:

view plain
  1. publicinterfaceIMountServiceextendsIInterface{
  2. /**Local-sideIPCimplementationstubclass.*/
  3. publicstaticabstractclassStubextendsBinderimplementsIMountService{
  4. privatestaticclassProxyimplementsIMountService{
  5. privateIBindermRemote;
  6. Proxy(IBinderremote){
  7. mRemote=remote;
  8. }
  9. ...省略
  10. /**Constructthestubatattachittotheinterface.*/
  11. publicStub(){
  12. attachInterface(this,DESCRIPTOR);
  13. }
  14. ...省略

这里可以看到IMountService继承了IInterface并且其内部类Stub还继承了Binder并实现了IMountService。(这里会涉及到了Android中的AIDL即Android Interface Defenition Language的知识,关于AIDL我会在博客中另起文章介绍并结合源码分析。
虽然通过以上代码的分析,但似乎已经是死胡同了,那么接下来该肿么办呢?

(4).切莫误入歧途
我们回到StorageManager的带参构造函数中(别忘了我们从这里开始分支的):
view plain
  1. publicStorageManager(LoopertgtLooper)throwsRemoteException{
  2. mMountService=IMountService.Stub.asInterface(ServiceManager.getService("mount"));
  3. if(mMountService==null){
  4. Log.e(TAG,"Unabletoconnecttomountservice!-isitrunningyet?");
  5. return;
  6. }
  7. mTgtLooper=tgtLooper;
  8. mBinderListener=newMountServiceBinderListener();
  9. mMountService.registerListener(mBinderListener);
  10. }
因为刚分析到第一句mMountService的实例化,通过以上的分析,我们将实例化对象锁定到了IMountService中的内部类Stub身上。因为分析不动了,那么我们先看看下一句关键代码吧:
view plain
  1. mMountService.registerListener(mBinderListener);
这里调用的是IMountService中的方法,因为该类是一个接口,因此不可能去执行其中的registerListener()方法。前面我们在StorageManager中提到了,在IMountService的对象mMountService实例化的过程中,最终IMountService.Stub有关系,mMountService实际上是传递的IMountService.Stub对象的引用。因此这里调用registerListener()方法的时候会去IMountService.Stub中查找有没有registerListener()方法,在Stub中有如下代码:
view plain
  1. publicvoidregisterListener(IMountServiceListenerlistener)throwsRemoteException{
  2. Parcel_data=Parcel.obtain();
  3. Parcel_reply=Parcel.obtain();
  4. try{
  5. _data.writeInterfaceToken(DESCRIPTOR);
  6. _data.writeStrongBinder((listener!=null?listener.asBinder():null));
  7. mRemote.transact(Stub.TRANSACTION_registerListener,_data,_reply,0);
  8. _reply.readException();
  9. }finally{
  10. _reply.recycle();
  11. _data.recycle();
  12. }
  13. }

估计很多朋友看到这里又晕了,“这是又是什么东西啊...“
大家请勿惊慌,因为在Android中涉及到很多设计思路,这里就是其中之一——Android中的IPC机制。这里我会展开去说这个东西的原理以及如何实现的,因为我们的目标并不是它,所以我们只需要了解其大概意思就行了。
在IMountService.Stub中的registerListener()方法中,实现了对数据的封装并发送。那么哪里会接收呢?

(5).神秘的接收者
那么到底是谁来接收呢?答案是:MountService.java
这里的接收需要有一点AIDL的知识,这一点我回在后面的博文中加入实例以及和源码的分析。
MountService继承了IMountService.Stub并覆写了其中的registerListener()方法,真正调用的也就是MountService中的registerListener()方法:
view plain
  1. publicvoidregisterListener(IMountServiceListenerlistener){
  2. synchronized(mListeners){
  3. MountServiceBinderListenerbl=newMountServiceBinderListener(listener);
  4. try{
  5. listener.asBinder().linkToDeath(bl,0);
  6. mListeners.add(bl);
  7. }catch(RemoteExceptionrex){
  8. Slog.e(TAG,"Failedtolinktolistenerdeath");
  9. }
  10. }
  11. }
首先是一个同步块,然后是MountServiceBinderListener对象的声明以及实例化,但这里的MountServiceBinderListener和StorageManager中的可不是同一个哦。现在我们已经从StorageManager跳转到了MountService,我们回过头再看看我们在StorageManager中的调用吧:
view plain
  1. publicStorageManager(LoopertgtLooper)throwsRemoteException{
  2. mMountService=IMountService.Stub.asInterface(ServiceManager.getService("mount"));
  3. if(mMountService==null){
  4. Log.e(TAG,"Unabletoconnecttomountservice!-isitrunningyet?");
  5. return;
  6. }
  7. mTgtLooper=tgtLooper;
  8. mBinderListener=newMountServiceBinderListener();
  9. mMountService.registerListener(mBinderListener);
  10. }

细心的朋友已经发现了吧!对,没错,我们传递的参数分明是MountServiceBinderListener的对象,而在MountService中的registerListener接收的参数却是IMountServiceListener类型的。这是怎么回事呢?我们可以在StorageManager中跟踪MountServiceBinderListener类,会发现:
view plain
  1. privateclassMountServiceBinderListenerextendsIMountServiceListener.Stub

原来MountServiceBinderListener继承了IMountServiceListener.Stub,而Stub有实现了IMountServiceListener,因此根据多态性,参数为IMountServiceListener可以接收为MountServiceBinderListener的对象。
接下来我们回到MountService中的registerListener方法中,继续分析:
view plain
  1. <fontxmlns="http://www.w3.org/1999/xhtml"size="4"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml">MountServiceBinderListenerbl=newMountServiceBinderListener(listener);
  2. </font></font></font></font></font></font></font></font>
这里是MountService中的MountServiceBinderListener,直接跟踪过去会发现:
view plain
  1. <fontxmlns="http://www.w3.org/1999/xhtml"size="4"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml">privatefinalclassMountServiceBinderListenerimplementsIBinder.DeathRecipient{
  2. finalIMountServiceListenermListener;
  3. MountServiceBinderListener(IMountServiceListenerlistener){
  4. mListener=listener;
  5. }
  6. ...省略
  7. }</font></font></font></font></font></font></font>

在这个MountServiceBinderListener的构造函数中,相当于对IMountServiceListener对象进行了实例化,而实例化的对象就是StorageManager中传递过来的MountServiceBinderListener对象。
接着分析后面的代码:
view plain
  1. <fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml">listener.asBinder().linkToDeath(bl,0);
  2. mListeners.add(bl);</font></font></font></font></font></font></font>

这两句代码的意思就是注册一个IBinder进程死亡标志,该方法用来接收进程退出的消息,然后执行然后执行mListeners.add(bl);将bl对象加入Arraylist中。
(6).胜利的曙光
经过前面那么长,注意啊,是那么长的分析,我们回到到原点:
view plain
  1. <fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml">if(mStorageManager==null){
  2. mStorageManager=(StorageManager)getSystemService(Context.STORAGE_SERVICE);
  3. mStorageManager.registerListener(mStorageListener);
  4. }</font></font></font></font></font></font></font></font></font></font></font></font></font></font></font></font></font>
我们刚刚分析完第一句,T_T,只是第一句啊。。。。。。
牢骚话不多说了,我们继续分析,接下来跳转到mStorageManager.registerListener()方法中:
view plain
  1. <fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml">publicvoidregisterListener(StorageEventListenerlistener){
  2. if(listener==null){
  3. return;
  4. }
  5. synchronized(mListeners){
  6. mListeners.add(newListenerDelegate(listener));
  7. }
  8. }</font></font></font></font></font></font></font></font></font></font></font></font></font></font></font></font></font>

继续跳转到ListenerDelegate()方法中:
view plain
  1. <fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml"><fontxmlns="http://www.w3.org/1999/xhtml">ListenerDelegate(StorageEventListenerlistener){
  2. mStorageEventListener=listener;
  3. mHandler=newHandler(mTgtLooper){
  4. @Override
  5. publicvoidhandleMessage(Messagemsg){
  6. StorageEvente=(StorageEvent)msg.obj;
  7. if(msg.what==StorageEvent.EVENT_UMS_CONNECTION_CHANGED){
  8. UmsConnectionChangedStorageEventev=(UmsConnectionChangedStorageEvent)e;
  9. mStorageEventListener.onUsbMassStorageConnectionChanged(ev.available);
  10. }elseif(msg.what==StorageEvent.EVENT_STORAGE_STATE_CHANGED){
  11. StorageStateChangedStorageEventev=(StorageStateChangedStorageEvent)e;
  12. mStorageEventListener.onStorageStateChanged(ev.path,ev.oldState,ev.newState);
  13. }else{
  14. Log.e(TAG,"Unsupportedevent"+msg.what);
  15. }
  16. }
  17. };
  18. }</font></font></font></font></font></font></font></font></font></font></font></font></font></font></font></font></font></font></font></font></font></font></font></font></font></font></font></font></font></font></font></font></font></font></font></font></font>

根据以上代码可以知道,这里是将StorageEventListener的对象传入ListenerDelegate的构造函数,并返回一个ListenerDelegate的对象,将该返回的对象加入ArrayList<ListenerDelegate>中。我们可以看到在ListenerDelegate类的构造函数中有一个handleMessage,用于接收handler传递的消息。这一步分析到这里也就完成了,相当于监听的初始化已经完成。
后文将继续分析,敬请关注...
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics