当前位置:网站首页>Analysis of eventbus source code
Analysis of eventbus source code
2022-07-05 09:15:00 【Xu Jiajia 233】
summary
This article is suitable for EventBus have interest in , Or have been right EventBus Readers with certain use experience .
If the reader has not used it before EventBus, It is recommended to read the author's previous article :
register
Key logic :
Traverse the currently registered class , Get which used eventBus Method of annotation .
Register these methods to two HashMap in , Namely subscriptionsByEventType and typesBySubscriber. adopt synchronized Lock , To ensure thread safety .
subscriptionsByEventType:key yes eventType,value yes List
typesBySubscriber:key Is a registered object ,value yes ListMethod execution , Will judge whether there is stcky event , If any, it will trigger directly .
public void register(Object subscriber) {
Class<?> subscriberClass = subscriber.getClass();
List<SubscriberMethod> subscriberMethods = subscriberMethodFinder.findSubscriberMethods(subscriberClass);
synchronized (this) {
for (SubscriberMethod subscriberMethod : subscriberMethods) {
subscribe(subscriber, subscriberMethod);
}
}
}
// Must be called in synchronized block
private void subscribe(Object subscriber, SubscriberMethod subscriberMethod) {
Class<?> eventType = subscriberMethod.eventType;
Subscription newSubscription = new Subscription(subscriber, subscriberMethod);
CopyOnWriteArrayList<Subscription> subscriptions = subscriptionsByEventType.get(eventType);
if (subscriptions == null) {
subscriptions = new CopyOnWriteArrayList<>();
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 > subscriptions.get(i).subscriberMethod.priority) {
subscriptions.add(i, newSubscription);
break;
}
}
List<Class<?>> subscribedEvents = typesBySubscriber.get(subscriber);
if (subscribedEvents == null) {
subscribedEvents = new ArrayList<>();
typesBySubscriber.put(subscriber, subscribedEvents);
}
subscribedEvents.add(eventType);
if (subscriberMethod.sticky) {
if (eventInheritance) {
// Existing sticky events of all subclasses of eventType have to be considered.
// Note: Iterating over all events may be inefficient with lots of sticky events,
// thus data structure should be changed to allow a more efficient lookup
// (e.g. an additional map storing sub classes of super classes: Class -> List<Class>).
Set<Map.Entry<Class<?>, Object>> entries = stickyEvents.entrySet();
for (Map.Entry<Class<?>, Object> entry : entries) {
Class<?> candidateEventType = entry.getKey();
if (eventType.isAssignableFrom(candidateEventType)) {
Object stickyEvent = entry.getValue();
checkPostStickyEventToSubscription(newSubscription, stickyEvent);
}
}
} else {
Object stickyEvent = stickyEvents.get(eventType);
checkPostStickyEventToSubscription(newSubscription, stickyEvent);
}
}
}
post
Key logic :
- post The source code does two things , The first thing is to change the current event Add to eventQueue in . The second thing is to change the current thread to posting state .
- posting The status will be processed circularly eventQueue Medium event, Put it in the corresponding subscription In the implementation of .
– lookup subscription The process is : First find and event Related to the class , Then traverse these classes and their related subscription.
public void post(Object event) {
PostingThreadState postingState = currentPostingThreadState.get();
List<Object> eventQueue = postingState.eventQueue;
eventQueue.add(event);
if (!postingState.isPosting) {
postingState.isMainThread = Looper.getMainLooper() == Looper.myLooper();
postingState.isPosting = true;
if (postingState.canceled) {
throw new EventBusException("Internal error. Abort state was not reset");
}
try {
while (!eventQueue.isEmpty()) {
postSingleEvent(eventQueue.remove(0), postingState);
}
} finally {
postingState.isPosting = false;
postingState.isMainThread = false;
}
}
}
private void postSingleEvent(Object event, PostingThreadState postingState) throws Error {
Class<?> eventClass = event.getClass();
boolean subscriptionFound = false;
if (eventInheritance) {
List<Class<?>> eventTypes = lookupAllEventTypes(eventClass);
int countTypes = eventTypes.size();
for (int h = 0; h < countTypes; h++) {
Class<?> clazz = eventTypes.get(h);
subscriptionFound |= postSingleEventForEventType(event, postingState, clazz);
}
} else {
subscriptionFound = postSingleEventForEventType(event, postingState, eventClass);
}
if (!subscriptionFound) {
if (logNoSubscriberMessages) {
Log.d(TAG, "No subscribers registered for event " + eventClass);
}
if (sendNoSubscriberEvent && eventClass != NoSubscriberEvent.class &&
eventClass != SubscriberExceptionEvent.class) {
post(new NoSubscriberEvent(this, event));
}
}
}
private boolean postSingleEventForEventType(Object event, PostingThreadState postingState, Class<?> eventClass) {
CopyOnWriteArrayList<Subscription> subscriptions;
synchronized (this) {
subscriptions = subscriptionsByEventType.get(eventClass);
}
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;
}
}
return true;
}
return false;
}
private boolean postSingleEventForEventType(Object event, PostingThreadState postingState, Class<?> eventClass) {
CopyOnWriteArrayList<Subscription> subscriptions;
synchronized (this) {
subscriptions = subscriptionsByEventType.get(eventClass);
}
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;
}
}
return true;
}
return false;
}
postSticky
Key logic :
- And post comparison ,postSticky Will be will be event Add to stickyEvents This Map in .
- in front register The logic in has been mentioned , When a class is registered , Will judge whether there is stickyEvent, If any, it will trigger directly .
public void postSticky(Object event) {
synchronized (stickyEvents) {
stickyEvents.put(event.getClass(), event);
}
// Should be posted after it is putted, in case the subscriber wants to remove immediately
post(event);
}
Multithreaded logic
Key logic :
- Finally trigger subscription when , Will be in postToSubscription Select the thread to execute .
- POSTING: Trigger directly on the current thread
- MAIN: If the current thread is the main thread , Then trigger directly . If you are not currently in the main thread , Then it will pass handler Throw it to the main thread to execute .
- BACKGROUND: If it is currently a child thread , Then trigger directly . If you are not currently in a child thread , Then it will be thrown to eventBus In the thread pool .
- ASYNC: Throw to eventBus In the thread pool .
private void postToSubscription(Subscription subscription, Object event, boolean isMainThread) {
switch (subscription.subscriberMethod.threadMode) {
case POSTING:
invokeSubscriber(subscription, event);
break;
case MAIN:
if (isMainThread) {
invokeSubscriber(subscription, event);
} else {
mainThreadPoster.enqueue(subscription, event);
}
break;
case BACKGROUND:
if (isMainThread) {
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);
}
}
final class BackgroundPoster implements Runnable {
private final PendingPostQueue queue;
private final EventBus eventBus;
private volatile boolean executorRunning;
BackgroundPoster(EventBus eventBus) {
this.eventBus = eventBus;
queue = new PendingPostQueue();
}
public void enqueue(Subscription subscription, Object event) {
PendingPost pendingPost = PendingPost.obtainPendingPost(subscription, event);
synchronized (this) {
queue.enqueue(pendingPost);
if (!executorRunning) {
executorRunning = true;
eventBus.getExecutorService().execute(this);
}
}
}
@Override
public void run() {
try {
try {
while (true) {
PendingPost pendingPost = queue.poll(1000);
if (pendingPost == null) {
synchronized (this) {
// Check again, this time in synchronized
pendingPost = queue.poll();
if (pendingPost == null) {
executorRunning = false;
return;
}
}
}
eventBus.invokeSubscriber(pendingPost);
}
} catch (InterruptedException e) {
Log.w("Event", Thread.currentThread().getName() + " was interruppted", e);
}
} finally {
executorRunning = false;
}
}
}
边栏推荐
- 阿里云发送短信验证码
- Uni app implements global variables
- My life
- Applet network data request
- My experience from technology to product manager
- 顶会论文看图对比学习(GNN+CL)研究趋势
- Solution to the problems of the 17th Zhejiang University City College Program Design Competition (synchronized competition)
- . Net service governance flow limiting middleware -fireflysoft RateLimit
- The location search property gets the login user name
- Meta tag details
猜你喜欢
混淆矩阵(Confusion Matrix)
Progressive JPEG pictures and related
[beauty of algebra] singular value decomposition (SVD) and its application to linear least squares solution ax=b
The combination of deep learning model and wet experiment is expected to be used for metabolic flux analysis
Introduction Guide to stereo vision (4): DLT direct linear transformation of camera calibration [recommended collection]
Node collaboration and publishing
[code practice] [stereo matching series] Classic ad census: (5) scan line optimization
【ManageEngine】如何利用好OpManager的报表功能
Ros-10 roslaunch summary
TF coordinate transformation of common components of ros-9 ROS
随机推荐
Codeforces round 684 (Div. 2) e - green shopping (line segment tree)
scipy. misc. imread()
Codeworks round 639 (Div. 2) cute new problem solution
Kotlin introductory notes (I) kotlin variables and non variables
Rebuild my 3D world [open source] [serialization-1]
Svgo v3.9.0+
太不好用了,长文章加图文,今后只写小短文
Multiple linear regression (sklearn method)
云计算技术热点
. Net service governance flow limiting middleware -fireflysoft RateLimit
Multiple solutions to one problem, asp Net core application startup initialization n schemes [Part 1]
Information and entropy, all you want to know is here
牛顿迭代法(解非线性方程)
Global configuration tabbar
信息与熵,你想知道的都在这里了
Add discount recharge and discount shadow ticket plug-ins to the resource realization applet
Applet global style configuration window
编辑器-vi、vim的使用
Svg optimization by svgo
Generate confrontation network