Android EventBus基础入门及源码分析

—— 迷茫是什么?迷茫是大事干不了,小事不想干。能力配不上欲望,才华配不上梦想。

前言

时隔多年,那些曾经学过且用过的知识早已记忆模糊。如果不反复研究学习,使用起来也会很生涩,如新知识一样。本编为巩固EventBus所写。一个人为什么要努力,因为喜欢的东西很贵想去的地方都很远,想爱的人很完美。

一、简介

官方文档:https://greenrobot.org/eventbus/documentation/

Github:https://github.com/greenrobot/EventBus

(1)是什么:是一个事件发布/订阅的轻量级框架。基于观察者模式,实现组件间的通讯。代码简洁且解耦。

(2)有什么用:可以替代传统的Intent,Handler,Broadcast或接口函数。

​二、基本使用

(1)添加依赖 (不是最新) 基于以前学过的版本

implementation 'org.greenrobot:eventbus:3.0.0'

(2)定义消息事件(可以配置传递参数)

public static class MessageEvent { /* Additional fields if needed */ }

(3)定义接收事件的线程方法(发送的事件,将在该方法中收到)

@Subscribe(threadMode = ThreadMode.MAIN)  
public void onMessageEvent(MessageEvent event) {/* Do something */};

(4)EventBus初始化 (与广播相似,需要订阅与取消)

 @Override
 public void onStart() {
     super.onStart();
     EventBus.getDefault().register(this);
 }

 @Override
 public void onStop() {
     super.onStop();
     EventBus.getDefault().unregister(this);
 }

(5)发送事件

EventBus.getDefault().post(new MessageEvent());

(6)添加混淆

-keepattributes *Annotation*
-keepclassmembers class * {
    @org.greenrobot.eventbus.Subscribe <methods>;
}
-keep enum org.greenrobot.eventbus.ThreadMode { *; }

# Only required if you use AsyncExecutor
-keepclassmembers class * extends org.greenrobot.eventbus.util.ThrowableFailureEvent {
    <init>(java.lang.Throwable);
}

简单的整理了一下 。正确姿势参考官方文档。

三、源码分析

(1)EventBus.getDefault()

* 单例模式 双重效验锁  线程安全 懒加载
public static EventBus getDefault() {
   if (defaultInstance == null) {
       synchronized (EventBus.class) {
          if (defaultInstance == null) {
              defaultInstance = new EventBus();
          }
       }
    }
    return defaultInstance;
}

* 使用构建者配置EventBus 属性
    private static final EventBusBuilder DEFAULT_BUILDER = new EventBusBuilder();
    public EventBus() {
        this(DEFAULT_BUILDER);
    }

    * 属性简介
   EventBus(EventBusBuilder builder) {
        * 保存Event集合
        subscriptionsByEventType = new HashMap<>();
        typesBySubscriber = new HashMap<>();
        stickyEvents = new ConcurrentHashMap<>();
        * 线程调度
        mainThreadPoster = new HandlerPoster(this, Looper.getMainLooper(), 10);
        backgroundPoster = new BackgroundPoster(this);
        asyncPoster = new AsyncPoster(this);
        * 索引
        indexCount = builder.subscriberInfoIndexes != null ? builder.subscriberInfoIndexes.size() : 0;
        * EventBus订阅方法
        subscriberMethodFinder = new SubscriberMethodFinder(builder.subscriberInfoIndexes,
                builder.strictMethodVerification, builder.ignoreGeneratedIndex);
        * EventBus日志
        logSubscriberExceptions = builder.logSubscriberExceptions;
        logNoSubscriberMessages = builder.logNoSubscriberMessages;
        sendSubscriberExceptionEvent = builder.sendSubscriberExceptionEvent;
        * 无消息发送
        sendNoSubscriberEvent = builder.sendNoSubscriberEvent;
        * 异常事件
        throwSubscriberException = builder.throwSubscriberException;
        * EventBus继承关系
        eventInheritance = builder.eventInheritance;
        * 线程池
        executorService = builder.executorService;
    }

(2)EventBus.getDefault().register(this)

* 注册给定的订阅方以接收事件
public void register(Object subscriber) {
    * 利用反射获取订阅的类
    Class<?> subscriberClass = subscriber.getClass();
    * 根据订阅的类找到 该类下的订阅方法   -> 1
    List<SubscriberMethod> subscriberMethods = subscriberMethodFinder.findSubscriberMethods(subscriberClass);
    synchronized (this) {
        * 便利所有的订阅方法
        for (SubscriberMethod subscriberMethod : subscriberMethods) {
                        * --> 2
            subscribe(subscriber, subscriberMethod);
        }
    }
}

1.subscriberMethodFinder.findSubscriberMethods(subscriberClass)

* 获取所有的订阅方法
List<SubscriberMethod> findSubscriberMethods(Class<?> subscriberClass) {
    * 判断是否已缓存
    List<SubscriberMethod> subscriberMethods = METHOD_CACHE.get(subscriberClass);
    if (subscriberMethods != null) {
        return subscriberMethods;
    }
    * ignoreGeneratedIndex 忽略生成的索引 默认为false
    if (ignoreGeneratedIndex) {
        subscriberMethods = findUsingReflection(subscriberClass);
    } else {
        * 通过反射获取到订阅方法列表 -> 1.1
        subscriberMethods = findUsingInfo(subscriberClass);
    }
    * 订阅方法列表为空时 抛出异常
    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);
        return subscriberMethods;
    }
}

1.1.findUsingInfo(Class<?> subscriberClass)

* 通过反射获取到订阅方法列表
private List<SubscriberMethod> findUsingInfo(Class<?> subscriberClass) {
    * 创建FindState 并初始化
    FindState findState = prepareFindState();
    findState.initForSubscriber(subscriberClass);
    while (findState.clazz != null) {
        * 判断findState是否已经有缓存订阅信息
        findState.subscriberInfo = getSubscriberInfo(findState);
        if (findState.subscriberInfo != null) {
            SubscriberMethod[] array = findState.subscriberInfo.getSubscriberMethods();
            for (SubscriberMethod subscriberMethod : array) {
                if (findState.checkAdd(subscriberMethod.method, subscriberMethod.eventType)) {
                    findState.subscriberMethods.add(subscriberMethod);
                }
            }
        } else {
            * 利用反射机制 将订阅方法信息 存储在findState 中
            findUsingReflectionInSingleClass(findState);
        }
        * 移除订阅类
        findState.moveToSuperclass();
    }
    * 回收FindState对象,获取订阅方法列表
    return getMethodsAndRelease(findState);
}

2.subscribe(Object subscriber, SubscriberMethod subscriberMethod)

* 判断是否已经注册/订阅过该事件
* 按照优先级缓存订阅事件
* 判断是否已经缓存在typesBySubscriber中 
* 判断是否是粘性事件  并分发粘性事件

private void subscribe(Object subscriber, SubscriberMethod subscriberMethod) {
    * 订阅方法类型
    Class&lt<?> 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);
        }
    }
    * 按照优先级缓存订阅事件  subscriptionsByEventType
    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;
        }
    }
    * 判断是否已经缓存在typesBySubscriber中  
    List<Class<?>> subscribedEvents = typesBySubscriber.get(subscriber);
    if (subscribedEvents == null) {
        subscribedEvents = new ArrayList<>();
        typesBySubscriber.put(subscriber, subscribedEvents);
    }
    subscribedEvents.add(eventType);
    * 判断是否是粘性事件  并分发粘性事件
    if (subscriberMethod.sticky) {
        if (eventInheritance) {
            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);
            * 分发事件  -->2.1
            checkPostStickyEventToSubscription(newSubscription, stickyEvent);
        }
    }
}

2.1checkPostStickyEventToSubscription(Subscription newSubscription, Object stickyEvent)

 * 判断粘性事件是否为空  
private void checkPostStickyEventToSubscription(Subscription newSubscription, Object stickyEvent) {
    if (stickyEvent != null) {
        // If the subscriber is trying to abort the event, it will fail (event is not tracked in posting state)
        // --> Strange corner case, which we don't take care of here.
        postToSubscription(newSubscription, stickyEvent, Looper.getMainLooper() == Looper.myLooper());
    }
}
* 根据线程模式进行事件分发
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);
    }
}

* 利用反射 执行订阅方法
void invokeSubscriber(Subscription subscription, Object event) {
    try {
        subscription.subscriberMethod.method.invoke(subscription.subscriber, event);
    } catch (InvocationTargetException e) {
        handleSubscriberException(subscription, event, e.getCause());
    } catch (IllegalAccessException e) {
        throw new IllegalStateException("Unexpected exception", e);
    }
}

*  将事件添加到 PendingPostQueue 队列中  执行handler 从队列冲取出消息进行处理 并利用反射 执行订阅方法 
void enqueue(Subscription subscription, Object event) {
    PendingPost pendingPost = PendingPost.obtainPendingPost(subscription, event);
    synchronized (this) {
        queue.enqueue(pendingPost);
        if (!handlerActive) {
            handlerActive = true;
            if (!sendMessage(obtainMessage())) {
                throw new EventBusException("Could not send handler message");
            }
        }
    }
}

总结:

1.利用反射获取到订阅类的所有订阅方法

2.判断是否已经注册/订阅过该事件

3.按照优先级缓存订阅事件

4.判断是否是粘性事件 并分发粘性事件 (1)同一个线程 利用反射 执行订阅方法 (2)不同线程 将事件添加到 PendingPostQueue 队列中 执行handler 从队列冲取出消息进行处理 并利用反射 执行订阅方法

(3)EventBus.getDefault().post(new MessageEvent());

* 发送事件
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()) {
                * 循环分发事件 -->1
                postSingleEvent(eventQueue.remove(0), postingState);
            }
        } finally {
            postingState.isPosting = false;
            postingState.isMainThread = false;
        }
    }
}

1.postSingleEvent(eventQueue.remove(0), postingState);

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);   
                        * --> 2
            subscriptionFound |= postSingleEventForEventType(event, postingState, clazz);
        }
    } else {
        subscriptionFound = postSingleEventForEventType(event, postingState, eventClass);
    }
    * 若没有找到订阅方法 则调用NoSubscriberEvent
    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));
        }
    }
}

2.postSingleEventForEventType(Object event, PostingThreadState postingState, Class<?> eventClass)

* 从subscriptionsByEventType中获取订阅方法
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;
}

总结:

1.获取当前线程的信息,将事件添加到当前线程的队列中

2.判断是否正在分发 不是则执行postSingleEvent 分发事件

3.判断是否有继承关系

是:获取所有类的对象 包含父类与接口 调用postSingleEventForEventType分发事件

否:调用postSingleEventForEventType分发事件

4.若没有找到订阅方法 则分发给NoSubscriberEvent

介绍到这里就结束了 睡觉去了

四、内容推荐

若您发现文章中存在错误或不足的地方,希望您能指出!

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,362评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,330评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,247评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,560评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,580评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,569评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,929评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,587评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,840评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,596评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,678评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,366评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,945评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,929评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,165评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,271评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,403评论 2 342

推荐阅读更多精彩内容

  • 前言 成为一名优秀的Android开发,需要一份完备的知识体系,在这里,让我们一起成长为自己所想的那样~。 不知不...
    hpc阅读 606评论 0 0
  • EventBus是一款用于传递事件的开源框架,首次使用就被其极低的耦合性给折服,同时它也支持订阅方法的线程指定。最...
    zskingking阅读 578评论 0 8
  • 功能 EventBus 是一个 Android 事件发布/订阅框架,通过解耦发布者和订阅者简化 Android 事...
    maimingliang阅读 1,178评论 0 14
  • EventBus源码分析 Android开发中我们最常用到的可以说就是EventBus了,今天我们来深入研究一下E...
    BlackFlag阅读 507评论 3 4
  • 流程分析 EventBus 是一个发布 / 订阅的事件总线,总线可以有一个也可以有多个。总共包含4个成分:发布者,...
    thomasyoungs阅读 215评论 0 0