EventBus的构造方法
我们无论是注册还是发送都要先进行构造,先看看构造方法,其实与ARouter一样,使用的都是双重检查模式
public static EventBus getDefault() {
EventBus instance = defaultInstance;
if (instance == null) {
Class var1 = EventBus.class;
synchronized(EventBus.class) {
instance = defaultInstance;
if (instance == null) {
instance = defaultInstance = new EventBus();
}
}
}
return instance;
}
我们看到返回的单例是一个EventBus,它的构造方法又是什么
public EventBus() {
this(DEFAULT_BUILDER);
}
DEFAULT_BUILDER是默认的EventBusBuilder,用来构造EventBus
private static final EventBusBuilder DEFAULT_BUILDER = new EventBusBuilder();
this则调用了另一个方法
EventBus(EventBusBuilder builder) {
this.currentPostingThreadState = new ThreadLocal<PostingThreadState>() {
protected PostingThreadState initialValue() {
return new PostingThreadState();
}
};
this.logger = builder.getLogger();
this.subscriptionsByEventType = new HashMap();
this.typesBySubscriber = new HashMap();
this.stickyEvents = new ConcurrentHashMap();
this.mainThreadSupport = builder.getMainThreadSupport();
this.mainThreadPoster = this.mainThreadSupport != null ? this.mainThreadSupport.createPoster(this) : null;
this.backgroundPoster = new BackgroundPoster(this);
this.asyncPoster = new AsyncPoster(this);
this.indexCount = builder.subscriberInfoIndexes != null ? builder.subscriberInfoIndexes.size() : 0;
this.subscriberMethodFinder = new SubscriberMethodFinder(builder.subscriberInfoIndexes, builder.strictMethodVerification, builder.ignoreGeneratedIndex);
this.logSubscriberExceptions = builder.logSubscriberExceptions;
this.logNoSubscriberMessages = builder.logNoSubscriberMessages;
this.sendSubscriberExceptionEvent = builder.sendSubscriberExceptionEvent;
this.sendNoSubscriberEvent = builder.sendNoSubscriberEvent;
this.throwSubscriberException = builder.throwSubscriberException;
this.eventInheritance = builder.eventInheritance;
this.executorService = builder.executorService;
}
通过使用建造者模式进行配置
订阅者注册
获取到之后先来看看注册者的方法
public void register(Object subscriber) {
if (AndroidDependenciesDetector.isAndroidSDKAvailable() && !AndroidDependenciesDetector.areAndroidComponentsAvailable()) {
throw new RuntimeException("It looks like you are using EventBus on Android, make sure to add the \"eventbus\" Android library to your dependencies.");
} else {
Class<?> subscriberClass = subscriber.getClass();
List<SubscriberMethod> subscriberMethods = this.subscriberMethodFinder.findSubscriberMethods(subscriberClass);//1
synchronized(this) {
Iterator var5 = subscriberMethods.iterator();
while(var5.hasNext()) {
SubscriberMethod subscriberMethod = (SubscriberMethod)var5.next();
this.subscribe(subscriber, subscriberMethod);//2
}
}
}
}
这段代码干了三件事:
检查 Android 依赖:首先检查是否在 Android 环境中运行,并且是否缺少必要的 Android 组件。如果检测到这种情况,会抛出一个 RuntimeException
,提示用户需要在项目的依赖中添加 EventBus
的 Android 库。这是因为 EventBus
的核心库可能不包含所有 Android 特定的类和资源,需要额外的 Android 库来支持。
获取订阅者类和查找订阅方法:获取订阅者对象的类类型,并使用 subscriberMethodFinder
查找这个类中所有标记有 @Subscribe
注解的方法。这些方法将作为事件的订阅点。
订阅方法注册:这个同步块确保在多线程环境中,对订阅者方法的注册是线程安全的。使用迭代器遍历所有找到的订阅方法,对于每个订阅方法,调用 subscribe
方法将订阅者和订阅方法注册到 EventBus
中。subscribe
方法会将订阅者和对应的方法添加到内部的数据结构中,以便在事件发生时能够调用正确的方法。
-
查找订阅者的订阅方法
先看上面注释1处的代码,使用
findSubscriberMethods
方法找到一个SubscriberMethod
的集合,也就是传进来的订阅者的所有订阅方法,接下来遍历订阅者的订阅方法来完成订阅者的注册操作。
SubscriberMethod
主要用来保存订阅方法中的Method对象、线程模式、事件类型、优先级、是否为黏性事件等属性。
看看方法的具体实现:
List<SubscriberMethod> findSubscriberMethods(Class<?> subscriberClass) {
//从 METHOD_CACHE 缓存中获取与给定的 subscriberClass 相关联的订阅者方法列表 subscriberMethods。METHOD_CACHE 是一个缓存,用于存储类到其订阅者方法的映射,以提高性能。
List<SubscriberMethod> subscriberMethods = (List)METHOD_CACHE.get(subscriberClass);//1
if (subscriberMethods != null) {
return subscriberMethods;
} else {
//如果 ignoreGeneratedIndex 配置为 true,则使用反射来查找订阅者方法(findUsingReflection 方法)。
if (this.ignoreGeneratedIndex) {
subscriberMethods = this.findUsingReflection(subscriberClass);
} else {
//使用预先生成的索引来查找订阅者方法(findUsingInfo 方法)。
subscriberMethods = this.findUsingInfo(subscriberClass);//3
}
if (subscriberMethods.isEmpty()) {
throw new EventBusException("Subscriber " + subscriberClass + " and its super classes have no public methods with the @Subscribe annotation");
} else {
METHOD_CACHE.put(subscriberClass, subscriberMethods);//2
return subscriberMethods;
}
}
}
注释1处是从缓存当中查找是否有订阅方法的集合,如果找到了就直接返回,如果没有就开始查找,根据ignoreGeneratedIndex
属性选择以什么方式进行查找,这个属性就代表了是否忽略注解器生成的MyEventBusIndex
。
MyEventBusIndex
是一个由EventBus
自动生成的类,用于在编译时通过注解处理器生成索引,加速事件订阅者的注册过程。这个类实现了SubscriberInfoIndex
接口,包含了一个静态的Map
,该Map
存储了所有订阅者类与其对应的SubscriberInfo
对象。
ignoreGeneratedIndex
的默认值为false,可以通过EventBusBuilder
来设置它的值。上面提到会先在缓存当中寻找,到底在什么时候会将其放在缓存当中,看看注释2,当我们找到订阅方法的集合之后就将其放到缓存当中,方便下一次直接使用缓存当中的。我们一般会使用默认false的情况,即执行的是注释3处的代码:
private List<SubscriberMethod> findUsingInfo(Class<?> subscriberClass) {
//创建并初始化了一个 FindState 对象,用于记录查找过程中的状态,包括当前处理的类、订阅者信息等。
FindState findState = this.prepareFindState();
//将FindState对象设置为处理传入的subscriberClass类
findState.initForSubscriber(subscriberClass);
for(; findState.clazz != null; findState.moveToSuperclass()) {
findState.subscriberInfo = this.getSubscriberInfo(findState);//1从索引中获取当前类的 SubscriberInfo 对象,该对象包含了类中所有订阅方法的信息。
if (findState.subscriberInfo != null) {
//如果找到了 SubscriberInfo 对象,获取其中的订阅方法数组。遍历这些订阅方法,对于每个方法,使用 findState.checkAdd 方法检查是否应该添加到结果列表中。如果检查通过,将该方法添加到 findState.subscriberMethods 列表中。
//从预先生成的索引中获取当前类的 SubscriberInfo 对象,该对象包含了类中所有订阅方法的信息。
SubscriberMethod[] array = findState.subscriberInfo.getSubscriberMethods();//2
SubscriberMethod[] var4 = array;
int var5 = array.length;
//如果找到了 SubscriberInfo 对象,获取其中的订阅方法数组,并遍历这些订阅方法。
for(int var6 = 0; var6 < var5; ++var6) {
SubscriberMethod subscriberMethod = var4[var6];
if (findState.checkAdd(subscriberMethod.method, subscriberMethod.eventType)) {
//对于每个订阅方法,使用 findState.checkAdd 方法检查是否应该添加到结果列表中。如果检查通过,将该方法添加到 findState.subscriberMethods 列表中
findState.subscriberMethods.add(subscriberMethod);
}
}
} else {
//如果没有找到 SubscriberInfo 对象,使用反射来在单个类中查找订阅者方法(findUsingReflectionInSingleClass 方法)
this.findUsingReflectionInSingleClass(findState);//3
}
}
return this.getMethodsAndRelease(findState);
}
在注释1处我们通过getSubscriberInfo
方法获取到订阅者的信息。在我们开始查找订阅者方法的时候并没忽略注解器为我们生成的索引MyEventIndex
。如果我们通过EventBusBuilder
配置了MyEventIndex
,便会得到subscriberInfo
。
在注释2的地方,得到订阅方法的相关信息,如果没有配置EventBusIndex
便会执行注释3处的代码。
在注释3处调用findUsingReflectionInSingleClass
方法,将订阅方法保存到findState
当中、
最后通过getMethodsAndRelease
方法对findState
做回收处理并返回订阅方法的List
集合,由于我们在一般注册的时候并没有设置EventBusIndex
,因此一般执行的都是注释3处的代码,接下来就看看这里的代码:
private void findUsingReflectionInSingleClass(FindState findState) {
Method[] methods;
try {
methods = findState.clazz.getDeclaredMethods();//1
} catch (Throwable var13) {
......
}
Method[] var3 = methods;
int var4 = methods.length;
//遍历一个类中的所有方法,并检查这些方法是否符合作为事件订阅者方法的条件
for(int var14 = 0; var14 < var4; ++var14) {
Method method = var3[var14];
int modifiers = method.getModifiers();
if ((modifiers & 1) != 0 && (modifiers & 5192) == 0) {
Class<?>[] parameterTypes = method.getParameterTypes();
if (parameterTypes.length == 1) {
Subscribe subscribeAnnotation = (Subscribe)method.getAnnotation(Subscribe.class);
if (subscribeAnnotation != null) {
Class<?> eventType = parameterTypes[0];
if (findState.checkAdd(method, eventType)) {
ThreadMode threadMode = subscribeAnnotation.threadMode();
findState.subscriberMethods.add(new SubscriberMethod(method, eventType, threadMode, subscribeAnnotation.priority(), subscribeAnnotation.sticky()));
}
}
} else if (this.strictMethodVerification && method.isAnnotationPresent(Subscribe.class)) {
String methodName = method.getDeclaringClass().getName() + "." + method.getName();
throw new EventBusException("@Subscribe method " + methodName + "must have exactly 1 parameter but has " + parameterTypes.length);
}
} else if (this.strictMethodVerification && method.isAnnotationPresent(Subscribe.class)) {
String methodName = method.getDeclaringClass().getName() + "." + method.getName();
throw new EventBusException(methodName + " is a illegal @Subscribe method: must be public, non-static, and non-abstract");
}
}
}
在上面注释1的地方就通过反射来获取订阅者中所有的方法,并根据方法的类型、参数和注解来找到订阅方法。找到之后将其信息保存到findState
中。
挺复杂的就对上面的代码做一个简单的解释吧,上面就是我们要对方法进行注册就要先让其找到所要注册的方法,即对得到返回信息的处理方法。代码会先在缓存区看是否能找到之前缓存的订阅方法,直接将其返回,但是若没有我们就要开始寻找订阅者的订阅方法,进一步去寻找所要注册的方法,则先获取订阅者的所有方法,根据各个属性以及注解筛选所需注册的订阅方法,这样就获取到了。这时就会提到为什么之前我们可以在缓存区获取到,是因为之前没有注册过因此没有信息,此时获取之后就会放到缓存区方便下一次获取。
- 订阅者的注册方法
上面已经获取到所有的订阅方法就应该进行注册了,再返回到一开始的register
方法当中,在注释2subscribe
方法当中对订阅方法进行注册,注意是通过循环将一个个方法进行注册的
//传进来的即为订阅者(class)和订阅方法(method)
private void subscribe(Object subscriber, SubscriberMethod subscriberMethod) {
//subscriberMethod 是一个对象,它包含了关于一个订阅者方法的信息,比如这个方法所属的类、方法名、参数类型等。subscriberMethod.eventType 是 subscriberMethod 对象的一个属性,它指定了该订阅方法能够处理的事件类型(本质是一个class,就是我们传进来的方法作为了class)。
Class<?> eventType = subscriberMethod.eventType;
Subscription newSubscription = new Subscription(subscriber, subscriberMethod);//1
//尝试从 subscriptionsByEventType 映射中获取对应事件类型的订阅列表(映射(Map)的目的是快速地根据事件类型查找到所有注册了该事件类型的订阅者)
CopyOnWriteArrayList<Subscription> subscriptions = (CopyOnWriteArrayList)this.subscriptionsByEventType.get(eventType);//2
if (subscriptions == null) {
subscriptions = new CopyOnWriteArrayList();
this.subscriptionsByEventType.put(eventType, subscriptions);
//判断订阅者是否已经被注册
} else if (subscriptions.contains(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 || subscriberMethod.priority > ((Subscription)subscriptions.get(i)).subscriberMethod.priority) {
subscriptions.add(i, newSubscription);//3
break;
}
}
//试图从 typesBySubscriber 映射中检索与给定的 subscriber 相关联的值,即订阅者订阅的所有事件类型的列表
List<Class<?>> subscribedEvents = (List)this.typesBySubscriber.get(subscriber);//4
if (subscribedEvents == null) {
subscribedEvents = new ArrayList();
this.typesBySubscriber.put(subscriber, subscribedEvents);
}
((List)subscribedEvents).add(eventType);
if (subscriberMethod.sticky) {
//eventInheritance 是 EventBus 框架中的一个配置选项,用于控制事件发布时是否考虑事件类型的继承关系。具体来说,这个选项决定了 EventBus 在处理事件时是否将事件的父类或接口也视为有效的事件类型进行分发
if (this.eventInheritance) {
//黏性事件的处理
Set<Map.Entry<Class<?>, Object>> entries = this.stickyEvents.entrySet();
Iterator var9 = entries.iterator();
while(var9.hasNext()) {
Map.Entry<Class<?>, Object> entry = (Map.Entry)var9.next();
Class<?> candidateEventType = (Class)entry.getKey();
if (eventType.isAssignableFrom(candidateEventType)) {
Object stickyEvent = entry.getValue();
this.checkPostStickyEventToSubscription(newSubscription, stickyEvent);
}
}
} else {
Object stickyEvent = this.stickyEvents.get(eventType);
this.checkPostStickyEventToSubscription(newSubscription, stickyEvent);
}
}
}
注释1处通过subscriber
(订阅者)与subscriberMethod
(订阅方法)创建一个Subscription
(订阅对象)。
注释2处根据eventType
(事件类型)获取到订阅对象集合。若果为null就重新进行创建并将Subscription
根据eventType
保存在subscriptionsByEventType
(Map集合)当中。
这行代码的作用是从 EventBus 的内部映射中检索与特定事件类型相关联的订阅者列表,并将其存储在
subscriptions
变量中。如果这个列表还不存在,subscriptions
将为null
,这时 EventBus 需要创建一个新的CopyOnWriteArrayList
并将其添加到映射中。如果列表已存在,subscriptions
将包含所有已经订阅了该事件类型的订阅者。
注释3处按照订阅方法的优先级插入到订阅对象集合中,完成订阅方法的注册。
注释4通过subscriber
获取subscribedEvents
(事件类型集合),如果为空则重新进行创建,并将eventType
添加到subscribedEvents
当中,并根据subscriber
将subscribedEvents
存储在typeBySubscriber
(Map集合)。
当这个方法为黏性事件,则从stickyEvents
事件保存队列中取出该事件类型的事件发送给当前订阅者。
这部分做了两件事情:
- 将
Subscriptions
根据EventType
封装到subscriptionsByEventType
中,将subscribedEvents
(subscribedEvents
是 EventBus 中的一个数据结构,它用于记录一个订阅者(subscriber)订阅了哪些事件类型。)根据subscriber
封装到typesBySubscriber
中
subscriptionsByEventType
- 目的:
subscriptionsByEventType
用于将每个事件类型映射到一个订阅者列表。这个列表中的每个元素都是Subscription
对象,代表一个订阅者对特定事件类型的兴趣。- 封装过程
- 当一个订阅者(
subscriber
)订阅了一个事件类型(eventType
),EventBus 会创建一个Subscription
对象,它包含了订阅者对象和订阅方法(SubscriberMethod
)。- EventBus 会查找
subscriptionsByEventType
中是否存在该事件类型的键。如果不存在,它会创建一个新的CopyOnWriteArrayList
并将其与事件类型关联。- 然后,EventBus 将新的
Subscription
对象添加到对应事件类型的列表中。- 结果:这样,当一个事件被发布时,EventBus 可以通过事件类型快速找到所有订阅了该事件类型的订阅者,并触发相应的订阅方法。
typesBySubscriber
- 目的:
typesBySubscriber
用于将每个订阅者映射到一个事件类型列表。这个列表包含了订阅者订阅的所有事件类型。- 封装过程
- 当一个订阅者订阅了一个或多个事件类型时,EventBus 会查找
typesBySubscriber
中是否存在该订阅者的键。如果不存在,它会创建一个新的List
并将其与订阅者对象关联。- 然后,EventBus 将新的事件类型添加到对应订阅者的列表中。
- 对粘性事件的处理
总结:
事件的发送
我们获取到EventBus对象之后就可以根据post
方法进行提交
public void post(Object event) {
//从 currentPostingThreadState 原子引用中获取当前线程的 PostingThreadState 对象。PostingThreadState保存着事件队列和线程状态信息
PostingThreadState postingState = (PostingThreadState)this.currentPostingThreadState.get();
//获取事件队列,并将当前事件插入事件队列
List<Object> eventQueue = postingState.eventQueue;
eventQueue.add(event);
//如果当前线程的 isPosting 标志为 false,表示当前线程还没有开始发布事件
if (!postingState.isPosting) {
//设置 isPosting 标志为 true,表示开始发布事件。同时,设置 isMainThread 标志,表示是否在主线程发布事件。
postingState.isMainThread = this.isMainThread();
postingState.isPosting = true;
//如果 PostingThreadState 的 canceled 标志为 true,表示之前有发布操作被取消,抛出异常
if (postingState.canceled) {
throw new EventBusException("Internal error. Abort state was not reset");
}
try {
//使用 while 循环处理事件队列中的所有事件。每次循环调用 postSingleEvent 方法处理队列中的第一个事件,并将其从队列中移除。
while(!eventQueue.isEmpty()) {
this.postSingleEvent(eventQueue.remove(0), postingState);
}
} finally {
//设置 isPosting 标志为 false,表示完成事件发布。同时,将 isMainThread 标志设置为 false
postingState.isPosting = false;
postingState.isMainThread = false;
}
}
}
postingState.isMainThread = false
的作用:
- 重置状态:无论事件发布过程是否成功,都需要确保
isMainThread
标志被重置,以反映当前线程的实际状态,为下一次事件发布准备正确的上下文信息。- 避免状态污染:如果在事件发布过程中发生异常或其他问题,没有正确重置
isMainThread
可能会导致后续事件发布错误地认为它们发生在主线程上,从而影响事件的正确分发和处理。
我们看到最终使用的是postSingleEvent
方法进行事件的发布
private void postSingleEvent(Object event, PostingThreadState postingState) throws Error {
Class<?> eventClass = event.getClass();
//这个布尔变量用于跟踪是否找到了匹配的订阅者
boolean subscriptionFound = false;
//eventInheritance表示是否向上查找事件的父类,默认为true,可以使用EventBusBuilder进行配置
if (this.eventInheritance) {
//如果 EventBus 配置为考虑事件继承(eventInheritance 为 true),则查找事件类及其所有父类和接口,将它们作为可能的事件类型。
List<Class<?>> eventTypes = lookupAllEventTypes(eventClass);
int countTypes = eventTypes.size();
for(int h = 0; h < countTypes; ++h) {
//遍历所有事件类型,并对每种类型调用 postSingleEventForEventType 方法。|= 运算符用于累加订阅者是否找到的标志。
Class<?> clazz = (Class)eventTypes.get(h);
subscriptionFound |= this.postSingleEventForEventType(event, postingState, clazz);
}
} else {
//如果不考虑事件继承,直接使用事件对象的类类型调用 postSingleEventForEventType 方法。
subscriptionFound = this.postSingleEventForEventType(event, postingState, eventClass);
}
//找不到该事件的异常处理
if (!subscriptionFound) {
//如果没有找到任何订阅者,且配置为记录无订阅者消息(logNoSubscriberMessages 为 true),则记录一条日志消息。
if (this.logNoSubscriberMessages) {
this.logger.log(Level.FINE, "No subscribers registered for event " + eventClass);
}
//如果没有找到任何订阅者,且配置为发送无订阅者事件(sendNoSubscriberEvent 为 true),且事件类型不是 NoSubscriberEvent 或 SubscriberExceptionEvent,则发布一个 NoSubscriberEvent 事件,通知监听无订阅者事件的订阅者。
if (this.sendNoSubscriberEvent && eventClass != NoSubscriberEvent.class && eventClass != SubscriberExceptionEvent.class) {
this.post(new NoSubscriberEvent(this, event));
}
}
}
当eventInheritance
为true的时候则通过lookupAllEventTypes
找到所有的父类事件并存在List
当中,然后通过postSingleEventForEventType
方法对事件逐一处理,接下来看看postSingleEventForEventType
方法。
private boolean postSingleEventForEventType(Object event, PostingThreadState postingState, Class<?> eventClass) {
//这段代码在同步块中获取与事件类型 eventClass 相关联的订阅者列表 subscriptions。使用 synchronized 确保线程安全,避免在多线程环境下发生并发修改异常。
CopyOnWriteArrayList subscriptions;
synchronized(this) {
subscriptions = (CopyOnWriteArrayList)this.subscriptionsByEventType.get(eventClass);
}
if (subscriptions != null && !subscriptions.isEmpty()) {
Iterator var5 = subscriptions.iterator();
while(var5.hasNext()) {
Subscription subscription = (Subscription)var5.next();
//在 PostingThreadState 中设置当前事件和订阅关系,以便在发布过程中跟踪状态。
postingState.event = event;
postingState.subscription = subscription;
boolean aborted;
try {
//调用 postToSubscription 方法将事件发布给当前订阅者。
this.postToSubscription(subscription, event, postingState.isMainThread);
aborted = postingState.canceled;
} finally {
//在 try-finally 块中,无论发布成功与否,都清理 PostingThreadState,重置事件和订阅关系,并清除取消标志
postingState.event = null;
postingState.subscription = null;
postingState.canceled = false;
}
if (aborted) {
break;
}
}
return true;
} else {
return false;
}
}
接下来看看postToSubscription
方法:
//
private void postToSubscription(Subscription subscription, Object event, boolean isMainThread) {
//据订阅方法中指定的线程模式(ThreadMode)来决定如何处理事件的投递
switch (subscription.subscriberMethod.threadMode) {
//如果线程模式是 POSTING,则直接在当前线程调用订阅者的方法(invokeSubscriber)。
case POSTING:
this.invokeSubscriber(subscription, event);
break;
//如果线程模式是 MAIN,并且当前是主线程(isMainThread 为 true),则直接调用订阅者的方法
//如果不在主线程,则将事件和订阅者信息加入主线程队列(mainThreadPoster),以便稍后在主线程中处理
case MAIN:
if (isMainThread) {
this.invokeSubscriber(subscription, event);
} else {
this.mainThreadPoster.enqueue(subscription, event);
}
break;
//如果线程模式是 MAIN_ORDERED,并且 mainThreadPoster 不为 null,则将事件和订阅者信息加入主线程队列。
//如果 mainThreadPoster 为 null,则直接调用订阅者的方法。
case MAIN_ORDERED:
if (this.mainThreadPoster != null) {
this.mainThreadPoster.enqueue(subscription, event);
} else {
this.invokeSubscriber(subscription, event);
}
break;
//如果线程模式是 BACKGROUND,并且在主线程,则将事件和订阅者信息加入后台线程队列(backgroundPoster)。
//如果不在主线程,则直接调用订阅者的方法。
case BACKGROUND:
if (isMainThread) {
this.backgroundPoster.enqueue(subscription, event);
} else {
this.invokeSubscriber(subscription, event);
}
break;
//如果线程模式是 ASYNC,则将事件和订阅者信息加入异步队列(asyncPoster),以便在另一个线程中异步处理
case ASYNC:
this.asyncPoster.enqueue(subscription, event);
break;
default:
throw new IllegalStateException("Unknown thread mode: " + subscription.subscriberMethod.threadMode);
}
}
mainThreadPoster
是HanderPoster
类型的,继承自Handler
,通过Handler
将订阅方法切换到主线程执行
订阅者取消注册
取消注册则需要调用unregister
方法:
//unregister 方法被声明为 synchronized,这意味着在同一时间只能有一个线程执行这个方法。这是为了确保在多线程环境下对 EventBus 进行修改时的线程安全
public synchronized void unregister(Object subscriber) {
//从 typesBySubscriber 映射中获取与订阅者对象 subscriber 相关联的事件类型列表 subscribedTypes
List<Class<?>> subscribedTypes = (List)this.typesBySubscriber.get(subscriber);
if (subscribedTypes != null) {
Iterator var3 = subscribedTypes.iterator();
//对于每个事件类型,调用 unsubscribeByEventType 方法从 subscriptionsByEventType 映射中移除订阅者。
while(var3.hasNext()) {
Class<?> eventType = (Class)var3.next();
this.unsubscribeByEventType(subscriber, eventType);
}
//注销完成后,从 typesBySubscriber 映射中移除订阅者对象,表示该订阅者不再订阅任何事件。
this.typesBySubscriber.remove(subscriber);
} else {
this.logger.log(Level.WARNING, "Subscriber to unregister was not registered before: " + subscriber.getClass());
}
}
调用 unsubscribeByEventType
方法从 subscriptionsByEventType
映射中移除订阅者:
private void unsubscribeByEventType(Object subscriber, Class<?> eventType) {
//从 subscriptionsByEventType 映射中获取与事件类型 eventType 相关联的订阅列表 subscriptions。
List<Subscription> subscriptions = (List)this.subscriptionsByEventType.get(eventType);
if (subscriptions != null) {
int size = subscriptions.size();
for(int i = 0; i < size; ++i) {
Subscription subscription = (Subscription)subscriptions.get(i);
//如果当前 Subscription 对象的 subscriber 属性与传入的 subscriber 参数匹配,表示找到了要注销的订阅者。
if (subscription.subscriber == subscriber) {
//将匹配的 Subscription 对象标记为非活跃状态(active = false),表示这个订阅者不再接收事件。
subscription.active = false;
//从 subscriptions 列表中移除这个 Subscription 对象。
subscriptions.remove(i);
--i;
--size;
}
}
}
}
文章到这里就结束了!
感谢阅读