Notification framework层的处理流程分析

转载自:http://fortianwei.iteye.com/blog/1180020

相关文件:

framework/base/core/java/android/app/NotificationManager.java

framework/base/services/java/com/android/server/NotificationManagerService.java{@hide} extends INotificationManager.Stub

framework/base/services/java/com/android/server/StatusBarManagerService.java  extends IStatusBarService.Stub

 

 

framework/base/core/java/com/android/internal/statusbar/StatusBarNotification  implements Parcelable

framework/base/core/java/com/android/internal/statusbar/IStatusBar.aidl

framework/base/core/java/com/android/internal/statusbar/IStatusBarService.aidl

framework/base/core/java/com/android/internal/statusbar/StatusBarNotification.aidl

 

framework/base/packages/SystemUI/src/com/android/systemui/statusbar/StatusBarService.java extends Service implements CommandQueue.Callbacks

framework/base/packages/SystemUI/src/com/android/systemui/statusbar/CommandQueue.java extends IStatusBar.Stub



1>.系统启动的时候:framework/base/services/java/com/android/server/SystemServer.java中:
Java代码   收藏代码
  1.  try {  
  2.         Slog.i(TAG, "Status Bar");    
  3.         statusBar = new StatusBarManagerService(context);  
  4.         ServiceManager.addService(Context.STATUS_BAR_SERVICE, statusBar);  
  5. catch (Throwable e) {  
  6.          Slog.e(TAG, "Failure starting StatusBarManagerService", e);  
  7. }  
  8.           
  9. try {  
  10.         Slog.i(TAG, "Notification Manager");  
  11.          notification = new NotificationManagerService(context, statusBar, lights);  
  12.                         
  13.          ServiceManager.addService(Context.NOTIFICATION_SERVICE, notification);  
  14. catch (Throwable e) {  
  15.          Slog.e(TAG, "Failure starting Notification Manager", e);  
  16. }  
  17.    
 
  注册状态栏管理和通知管理这两个服务。
2>.在StatusBarManagerService.java中,有addNotification,removeNotification,updateNotification等方法用于管理传递给他的通知对象。这个类是一些管理方法,实际执行相关动作的是在IStatusBar.java里面,这个是framework/base/core/java/com/android/internal/statusbar/IStatusBar.aidl自动生成的用于IPC的类。
拿addNotification方法示范:
Java代码   收藏代码
  1. public IBinder addNotification(StatusBarNotification notification) {  
  2.                 synchronized (mNotifications) {  
  3.                 IBinder key = new Binder();  
  4.                 mNotifications.put(key, notification);  
  5.                 if (mBar != null) {  
  6.                 try {  
  7.                     mBar.addNotification(key, notification);  
  8.                   } catch (RemoteException ex) {  
  9.                }  
  10.             }  
  11.             return key;  
  12.         }  
  13.       }  
 这里的mBar其实就是IStatusBar的实例
Java代码   收藏代码
  1. volatile IStatusBar mBar;  
 为了防止NPE,每次使用mBar都先判断是否为null,mBar是在方法registerStatusBar中传递进来的。
Java代码   收藏代码
  1. public void registerStatusBar(IStatusBar bar, StatusBarIconList iconList,  
  2.             List<IBinder> notificationKeys, List<StatusBarNotification> notifications) {  
  3.         enforceStatusBarService();  
  4.   
  5.         Slog.i(TAG, "registerStatusBar bar=" + bar);  
  6.         mBar = bar;  
  7.         synchronized (mIcons) {  
  8.             iconList.copyFrom(mIcons);  
  9.         }  
  10.         synchronized (mNotifications) {  
  11.             for (Map.Entry<IBinder,StatusBarNotification> e: mNotifications.entrySet()) {  
  12.                 notificationKeys.add(e.getKey());  
  13.                 notifications.add(e.getValue());  
  14.             }  
  15.         }  
  16.         }  
 framework/base/packages/SystemUI/src/com/android/systemui/statusbar/CommandQueue.java实现IStatusBar.java接口,
framework/base/packages/SystemUI/src/com/android/systemui/statusbar/StatusBarService.java提供IStatusBar相关服务。
CommandQueue.java中,IStatusBar.java里面对应的方法是用callback的形式调用的,callback的实现当然就在对应的服务提供类也就是StatusBarService.java中提供的啦。
CommandQueue.java中:
Java代码   收藏代码
  1. public void addNotification(IBinder key, StatusBarNotification notification) {  
  2.         synchronized (mList) {  
  3.             NotificationQueueEntry ne = new NotificationQueueEntry();  
  4.             ne.key = key;  
  5.             ne.notification = notification;  
  6.             mHandler.obtainMessage(MSG_ADD_NOTIFICATION, 00, ne).sendToTarget();  
  7.                 //这句话对应的mHandler执行语句是:  
  8.                 //  final NotificationQueueEntry ne = (NotificationQueueEntry)msg.obj;  
  9.             // mCallbacks.addNotification(ne.key, ne.notification);  
  10.                 //也就是调用回调函数里面的addNotification。  
  11.         }  
  12.     }         
 在StatusBarService.java中:
Java代码   收藏代码
  1. mCommandQueue = new CommandQueue(this, iconList);//StatusBarService实现了CommandQueue中的CommandQueue.Callbacks接口  
  2.         mBarService = IStatusBarService.Stub.asInterface(  
  3.                 ServiceManager.getService(Context.STATUS_BAR_SERVICE));  
  4.         try {  
  5.                 //将IStatusBar实现类的对象传递到StatusBarManagerService.java中,这里的mCommandQueue就是上面对应的mBar啦。  
  6.             mBarService.registerStatusBar(mCommandQueue, iconList, notificationKeys, notifications);  
  7.         } catch (RemoteException ex) {  
  8.             // If the system process isn't there we're doomed anyway.  
  9.         }  
 

 最终执行状态栏更新通知等事件都是在实现的CommandQueue.Callbacks里面执行。还是以addNotification为例:

 

Java代码   收藏代码
  1. public void addNotification(IBinder key, StatusBarNotification notification) {  
  2.         boolean shouldTick = true;  
  3.         if (notification.notification.fullScreenIntent != null) {  
  4.             shouldTick = false;  
  5.             Slog.d(TAG, "Notification has fullScreenIntent; sending fullScreenIntent");  
  6.             try {  
  7.                 notification.notification.fullScreenIntent.send();  
  8.             } catch (PendingIntent.CanceledException e) {  
  9.             }  
  10.         }   
  11.   
  12.         StatusBarIconView iconView = addNotificationViews(key, notification);  
  13.         if (iconView == nullreturn;  
  14.           //。。。以下省略N字。  
大致流程就是:调用StatusBarManagerService.java中的addNotification方法->(mBar不为空的话)执行mBar.addNotification(key, notification);->对应的是CommandQueue中的addNotification(IBinder key, StatusBarNotification notification)->CommandQueue中的mCallbacks.addNotification(ne.key, ne.notification);->StatusBarService中的addNotification。

 

3>.上面是提供相关功能的一些类,具体的notification的管理类是framework/base/services/java/com/android/server/NotificationManagerService.java,从该类的定义public class NotificationManagerService extends INotificationManager.Stub可以知道

他是用来实现接口中INotificationManager中定义的相关方法并向外部提供服务的类。主要向外提供public void enqueueNotificationWithTag(String pkg, String tag, int id, Notification notification,int[] idOut)方法。该方法实际上是调用public void enqueueNotificationInternal(String pkg, int callingUid, int callingPid,String tag, int id, Notification notification, int[] idOut),他里面提供了notification的具体处理方法。

摘取部分代码片段看看: 

 

 

Java代码   收藏代码
  1. if (notification.icon != 0) {  
  2.                 StatusBarNotification n = new StatusBarNotification(pkg, id, tag,  
  3.                         r.uid, r.initialPid, notification);  
  4.                 if (old != null && old.statusBarKey != null) {  
  5.                     r.statusBarKey = old.statusBarKey;  
  6.                     long identity = Binder.clearCallingIdentity();  
  7.                     try {  
  8.                         mStatusBar.updateNotification(r.statusBarKey, n);  
  9.                     }  
  10.                     finally {  
  11.                         Binder.restoreCallingIdentity(identity);  
  12.                     }  
  13.                 } else {  
  14.                     //省略。。。  

 

 当判断好需要更新通知的时候调用mStatusBar.updateNotification(r.statusBarKey, n);方法,这个就是StatusBarManagerService.java中的addNotification方法,这样就进入上面所说的处理流程了。

 

 

4>. 在3中的NotificationManagerService.java是管理notification的服务,服务嘛就是用来调用的,调用他的就是大家熟悉的NotificationManager了。

在NotificationManager.java中,有一个隐藏方法,用来得到INotificationManager接口对应的服务提供类,也就是NotificationManagerService了。

 

 

Java代码   收藏代码
  1. /** @hide */  
  2.     static public INotificationManager getService()  
  3.     {  
  4.         if (sService != null) {  
  5.             return sService;  
  6.         }  
  7.         IBinder b = ServiceManager.getService("notification");  
  8.         sService = INotificationManager.Stub.asInterface(b);  
  9.         return sService;  
  10.     }  

 再看看更熟悉的notify方法,其实是执行:

 

Java代码   收藏代码
  1. public void notify(String tag, int id, Notification notification)  
  2.     {  
  3.         int[] idOut = new int[1];  
  4.         INotificationManager service = getService();  
  5.         String pkg = mContext.getPackageName();  
  6.         if (localLOGV) Log.v(TAG, pkg + ": notify(" + id + ", " + notification + ")");  
  7.         try {  
  8.             service.enqueueNotificationWithTag(pkg, tag, id, notification, idOut);  
  9.             if (id != idOut[0]) {  
  10.                 Log.w(TAG, "notify: id corrupted: sent " + id + ", got back " + idOut[0]);  
  11.             }  
  12.         } catch (RemoteException e) {  
  13.         }  
  14.     }  

 service.enqueueNotificationWithTag(pkg, tag, id, notification, idOut);也就是3中提到的那个对外公开的服务方法了,这样就进入了上面提到的处理流程了。





分析比较好的博客地址:http://blog.csdn.net/longwuxu/article/details/25542199

你可能感兴趣的:(Notification framework层的处理流程分析)