在EventBus3.0中,之前版本的onEvent()、onEventAsync()、onEventBackground()、onEventMainThread() 分别对应 @Subscrible 、@Subscrible(threadMode = ThreadMode.ASYNC)、@Subscribe(threadMode = ThreadMode.BACKGROUND)、@Subscribe(threadMode = ThreadMode.MAIN) ,订阅者的方法名可以随意(之前是要以onEvent开头)。EventBus 3中在未声明threadMode时,默认的线程模式为ThreadMode.POSTING。在EventBus3中,如果在@Subscrible标注的方法中,如果程序出错,不会立即使程序crash,而是由EventBus拦截异常,并打印错误日志。
事件是可以设置优先级的,我们可以在高优先级的事件处理中,将事件传递拦截下来,经过实际测试,只能在 threadMode = ThreadMode.POSTING 的注释方法中才能拦截事件。
事件的优先级处理:
接收事件方法可以通过@Subscribe(priority = 1) 来接收。
priority的值来决定接收事件的顺序,数值越高优先级越大,默认优先级为0.
(注意这里优先级设置只有在同一个线程模型才有效)
@Subscribe(threadMode = ThreadMode.ASYNC,priority = 4)
public void onAsync(EventBusEvents.FirstEvent firstEvent) {
Log.e("zy", "onEventAsync-->"+"priority = 4," + Thread.currentThread().getId());
tv_asy.setText(Thread.currentThread().getName()+"---->"+Thread.currentThread().getId());
}
@Subscribe(threadMode = ThreadMode.ASYNC,priority = 2)
public void onAsync1(EventBusEvents.FirstEvent firstEvent) {
Log.e("zy", "onEventAsync1-->"+"priority = 2," + Thread.currentThread().getId());
tv_asy.setText(Thread.currentThread().getName()+"---->"+Thread.currentThread().getId());
}
除了上面讲的普通事件外,EventBus还支持发送黏性事件。简单讲,就是在发送事件之后再订阅该事件也能收到该事件.粘性事件能够收到订阅之前发送的消息。但是它只能收到最新的一次消息,比如说在未订阅之前已经发送了多条黏性消息了,然后再订阅只能收到最近的一条消息。
发送事件
EventBus.getDefault().postSticky(you event);
订阅粘性事件 默认sticky为false
@Subscribe(sticky = true)
public void onPostThread(Event.Message msg) {
…..
}
一般使用EventBus的组件类,类似下面这种方式:
public class SampleComponent extends Fragment
{
@Override
public void onCreate(Bundle savedInstanceState)
{
// 双锁单例模式
super.onCreate(savedInstanceState);
EventBus.getDefault().register(this);
}
public void onEventMainThread(param)
{
}
public void onEvent(param)
{
}
public void onEventBackgroundThread(param)
{
}
public void onEventAsync(param)
{
}
@Override
public void onDestroy()
{
super.onDestroy();
EventBus.getDefault().unregister(this);
}
}
大多情况下,都会在onCreate中进行register,在onDestory中进行unregister ,其中 EventBus.getDefault()是饿汉双锁单例模式;
我们来看看四种订阅函数
onEvent:事件在哪个线程发布出来,onEvent就会在这个线程运行,onEvent方法不能执行耗时操作,否则容易导致事件分发延迟
onEventMainThread:不论事件是在哪个线程中发布出来的,onEventMainThread都会在UI线程中执行,接收事件就会在UI线程中运行,不能执行耗时操作
onEventBackground:如果事件是在UI线程中发布出来的,那么onEventBackground就会在子线程中运行,如果事件本来就是子线程中发布出来的,那么onEventBackground函数直接在该子线程中执行
onEventAsync:使用这个函数作为订阅函数,那么无论事件在哪个线程发布,都会创建新的子线程在执行onEventAsync
使用EventBus应该注意以下几点:
同一个onEvent函数不能被注册两次,所以不能在一个类中注册同时还在父类中注册。
消息的接收是根据参数中的类名来决定执行哪一个接收处理方法的。即:订阅者的处理方法是根据订阅事件的类型来确定订阅函数的。
每个事件可以有多个订阅者。
当Post一个事件时,这个事件类的父类的事件也会被Post。
所有事件处理方法必需是public void类型的,并且只有一个参数表示EventType。
调用很简单,一句话,你也可以叫发布,只要把这个param发布出去,EventBus会在它内部存储的方法中,进行扫描,找到参数匹配的,就使用反射进行调用。
现在有没有觉得,撇开专业术语:其实EventBus就是在内部存储了一堆onEvent开头的方法,然后post的时候,根据post传入的参数,去找到匹配的方法,反射调用之。
那么,我告诉你,它内部使用了Map进行存储,键就是参数的Class类型。知道是这个类型,那么你觉得根据post传入的参数进行查找还是个事么?
下面我们就去看看EventBus的register和post真面目。
EventBus的使用都在这里了,实在是很简单,但是如果我们在此基础上理解EvnetBus的原理,那么我们就能非常轻松的使用EventBus了。
就从EvnetBus的入口开始看吧:EventBus.register
public void register(Object subscriber) {
register(subscriber, DEFAULT_METHOD_NAME, false, 0);
}
其实调用的就是同名函数register,它的四个参数意义分别是:
subscriber:就是要注册的一个订阅者,
methodName:就是订阅者默认的订阅函数名,其实就是“onEvent”
sticky:表示是否是粘性的,一般默认都是false,除非你调用registerSticky方法了
priority:表示事件的优先级,默认就行,
接下来我们就看看这个函数具体干了什么
List findSubscriberMethods(Class> subscriberClass, String eventMethodName) {
//通过订阅者类名+"."+"onEvent"创建一个key
String key = subscriberClass.getName() + '.' + eventMethodName;
List subscriberMethods;
synchronized (methodCache) {
//判断是否有缓存,有缓存直接返回缓存
subscriberMethods = methodCache.get(key);
}
//第一次进来subscriberMethods肯定是Null
if (subscriberMethods != null) {
return subscriberMethods;
}
subscriberMethods = new ArrayList();
Class> clazz = subscriberClass;
HashSet<String> eventTypesFound = new HashSet<String>();
StringBuilder methodKeyBuilder = new StringBuilder();
while (clazz != null) {
String name = clazz.getName();
//过滤掉系统类
if (name.startsWith("java.") || name.startsWith("javax.") || name.startsWith("android.")) {
// Skip system classes, this just degrades performance
break;
}
// Starting with EventBus 2.2 we enforced methods to be public (might change with annotations again)
//通过反射,获取到订阅者的所有方法
Method[] methods = clazz.getMethods();
for (Method method : methods) {
String methodName = method.getName();
//只找以onEvent开头的方法
if (methodName.startsWith(eventMethodName)) {
int modifiers = method.getModifiers();
//判断订阅者是否是public的,并且是否有修饰符,看来订阅者只能是public的,并且不能被final,static等修饰
if ((modifiers & Modifier.PUBLIC) != 0 && (modifiers & MODIFIERS_IGNORE) == 0) {
//获得订阅函数的参数
Class>[] parameterTypes = method.getParameterTypes();
//看了参数的个数只能是1个
if (parameterTypes.length == 1) {
//获取onEvent后面的部分
String modifierString = methodName.substring(eventMethodName.length());
ThreadMode threadMode;
if (modifierString.length() == 0) {
//订阅函数为onEvnet
//记录线程模型为PostThread,意义就是发布事件和接收事件在同一个线程执行,详细可以参考我对于四个订阅函数不同点分析
threadMode = ThreadMode.PostThread;
} else if (modifierString.equals("MainThread")) {
//对应onEventMainThread
threadMode = ThreadMode.MainThread;
} else if (modifierString.equals("BackgroundThread")) {
//对应onEventBackgrondThread
threadMode = ThreadMode.BackgroundThread;
} else if (modifierString.equals("Async")) {
//对应onEventAsync
threadMode = ThreadMode.Async;
} else {
if (skipMethodVerificationForClasses.containsKey(clazz)) {
continue;
} else {
throw new EventBusException("Illegal onEvent method, check for typos: " + method);
}
}
//获取参数类型,其实就是接收事件的类型
Class> eventType = parameterTypes[0];
methodKeyBuilder.setLength(0);
methodKeyBuilder.append(methodName);
methodKeyBuilder.append('>').append(eventType.getName());
String methodKey = methodKeyBuilder.toString();
if (eventTypesFound.add(methodKey)) {
// Only add if not already found in a sub class
//封装一个订阅方法对象,这个对象包含Method对象,threadMode对象,eventType对象
subscriberMethods.add(new SubscriberMethod(method, threadMode, eventType));
}
}
} else if (!skipMethodVerificationForClasses.containsKey(clazz)) {
Log.d(EventBus.TAG, "Skipping method (not public, static or abstract): " + clazz + "."
+ methodName);
}
}
}
//看了还会遍历父类的订阅函数
clazz = clazz.getSuperclass();
}
//最后加入缓存,第二次使用直接从缓存拿
if (subscriberMethods.isEmpty()) {
throw new EventBusException("Subscriber " + subscriberClass + " has no public methods called "
+ eventMethodName);
} else {
synchronized (methodCache) {
methodCache.put(key, subscriberMethods);
}
return subscriberMethods;
}
}
对于这个方法的讲解都在注释里面了,这里就不在重复叙述了,到了这里我们就找到了一个订阅者的所有的订阅方法
我们回到register方法:
for (SubscriberMethod subscriberMethod : subscriberMethods) {
subscribe(subscriber, subscriberMethod, sticky, priority);
}
对每一个订阅方法,对其调用subscribe方法,进入该方法看看到底干了什么
private void subscribe(Object subscriber, SubscriberMethod subscriberMethod, boolean sticky, int priority) {
subscribed = true;
//从订阅方法中拿到订阅事件的类型
Class> eventType = subscriberMethod.eventType;
//通过订阅事件类型,找到所有的订阅(Subscription),订阅中包含了订阅者,订阅方法
CopyOnWriteArrayList subscriptions = subscriptionsByEventType.get(eventType);
//创建一个新的订阅
Subscription newSubscription = new Subscription(subscriber, subscriberMethod, priority);
//将新建的订阅加入到这个事件类型对应的所有订阅列表
if (subscriptions == null) {
//如果该事件目前没有订阅列表,那么创建并加入该订阅
subscriptions = new CopyOnWriteArrayList();
subscriptionsByEventType.put(eventType, subscriptions);
} else {
//如果有订阅列表,检查是否已经加入过
for (Subscription subscription : subscriptions) {
if (subscription.equals(newSubscription)) {
throw new EventBusException("Subscriber " + subscriber.getClass() + " already registered to event "
+ eventType);
}
}
}
//根据优先级插入订阅
int size = subscriptions.size();
for (int i = 0; i <= size; i++) {
if (i == size || newSubscription.priority > subscriptions.get(i).priority) {
subscriptions.add(i, newSubscription);
break;
}
}
//将这个订阅事件加入到订阅者的订阅事件列表中
List> subscribedEvents = typesBySubscriber.get(subscriber);
if (subscribedEvents == null) {
subscribedEvents = new ArrayList>();
typesBySubscriber.put(subscriber, subscribedEvents);
}
subscribedEvents.add(eventType);
//这个是对粘性事件的,暂时不讨论
if (sticky) {
Object stickyEvent;
synchronized (stickyEvents) {
stickyEvent = stickyEvents.get(eventType);
}
if (stickyEvent != null) {
postToSubscription(newSubscription, stickyEvent, Looper.getMainLooper() == Looper.myLooper());
}
}
}
好了,到这里差不多register方法分析完了,大致流程就是这样的,我们总结一下:
1、找到被注册者中所有的订阅方法。
2、依次遍历订阅方法,找到EventBus中eventType对应的订阅列表,然后根据当前订阅者和订阅方法创建一个新的订阅加入到订阅列表
3、找到EvnetBus中subscriber订阅的事件列表,将eventType加入到这个事件列表。
所以对于任何一个订阅者,我们可以找到它的 订阅事件类型列表,通过这个订阅事件类型,可以找到在订阅者中的订阅函数。
public void post(Object event) {
//这个EventBus中只有一个,差不多是个单例吧,具体不用细究
PostingThreadState postingState = currentPostingThreadState.get();
List
post里面没有什么具体逻辑,它的功能主要是调用postSingleEvent完成的,进入到这个函数看看吧
private void postSingleEvent(Object event, PostingThreadState postingState) throws Error {
Class extends Object> eventClass = event.getClass();
//找到eventClass对应的事件,包含父类对应的事件和接口对应的事件
List> eventTypes = findEventTypes(eventClass);
boolean subscriptionFound = false;
int countTypes = eventTypes.size();
for (int h = 0; h < countTypes; h++) {
Class> clazz = eventTypes.get(h);
CopyOnWriteArrayList subscriptions;
synchronized (this) {
//找到订阅事件对应的订阅,这个是通过register加入的(还记得吗....)
subscriptions = subscriptionsByEventType.get(clazz);
}
if (subscriptions != null && !subscriptions.isEmpty()) {
for (Subscription subscription : subscriptions) {
postingState.event = event;
postingState.subscription = subscription;
boolean aborted = false;
try {
//对每个订阅调用该方法
postToSubscription(subscription, event, postingState.isMainThread);
aborted = postingState.canceled;
} finally {
postingState.event = null;
postingState.subscription = null;
postingState.canceled = false;
}
if (aborted) {
break;
}
}
subscriptionFound = true;
}
}
//如果没有订阅发现,那么会Post一个NoSubscriberEvent事件
if (!subscriptionFound) {
Log.d(TAG, "No subscribers registered for event " + eventClass);
if (eventClass != NoSubscriberEvent.class && eventClass != SubscriberExceptionEvent.class) {
post(new NoSubscriberEvent(this, event));
}
}
}
这个方法有个核心方法 postToSubscription方法,进入看看吧
**private void postToSubscription(Subscription subscription, Object event, boolean isMainThread) {
//第一个参数就是传入的订阅,第二个参数就是对于的分发事件,第三个参数非常关键:是否在主线程
switch (subscription.subscriberMethod.threadMode) {
//这个threadMode是怎么传入的,仔细想想?是不是根据onEvent,onEventMainThread,onEventBackground,onEventAsync决定的?
case PostThread:
//直接在本线程中调用订阅函数
invokeSubscriber(subscription, event);
break;
case MainThread:
if (isMainThread) {
//如果直接在主线程,那么直接在本现场中调用订阅函数
invokeSubscriber(subscription, event);
} else {
//如果不在主线程,那么通过handler实现在主线程中执行,具体我就不跟踪了
mainThreadPoster.enqueue(subscription, event);
}
break;
case BackgroundThread:
if (isMainThread) {
//如果主线程,创建一个runnable丢入线程池中
backgroundPoster.enqueue(subscription, event);
} else {
//如果子线程,则直接调用
invokeSubscriber(subscription, event);
}
break;
case Async:
//不论什么线程,直接丢入线程池
asyncPoster.enqueue(subscription, event);
break;
default:
throw new IllegalStateException("Unknown thread mode: " + subscription.subscriberMethod.threadMode);
}
}
**