源码分析 - EventBus

2020-12-25  本文已影响0人  Android小悟空

1、使用

event:

public class Event {

  public String message;
}

Subscriber:

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        EventBus.getDefault().register(this);
//      EventBus bus = EventBus.builder().logNoSubscriberMessages(true).build();
//      bus.register(this);

        findViewById(R.id.txv).setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                startActivity(new Intent(MainActivity.this,SecondActivity.class));
            }
        });
    }

    @Override
    protected void onDestroy() {
        super.onDestroy();
        EventBus.getDefault().unregister(this);
    }

    @Subscribe(threadMode = ThreadMode.MAIN, sticky = true,priority = 0)
    public void onGetMessage(Event event){
        Log.e("tbg",event.message);
    }

    @Subscribe(threadMode = ThreadMode.MAIN, sticky = true,priority = 1)
    public void onGetMessage2(Event event){
        Log.e("tbg2",event.message);
    }
}

Publisher:

public class SecondActivity extends Activity {

    @Override
    protected void onCreate(@Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        findViewById(R.id.txv).setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Event event = new Event();
                event.message = "dunzhixuan";
                EventBus.getDefault().postSticky(event);
                EventBus.getDefault().post(event);
            }
        });
    }
}

EventBus采用的是观察者模式:如技术图所示
EventBus中的三个角色

Event:事件,它可以是任意类型,EventBus会根据事件类型进行全局的通知。
Subscriber:事件订阅者,在EventBus 3.0之前我们必须定义以onEvent开头的那几个方法,分别是onEvent、onEventMainThread、onEventBackgroundThread和onEventAsync,而在3.0之后事件处理的方法名可以随意取,不过需要加上注解@subscribe,并且指定线程模型,默认是POSTING。
Publisher:事件的发布者,可以在任意线程里发布事件。一般情况下,使用EventBus.getDefault()就可以得到一个EventBus对象,然后再调用post(Object)方法即可。

Eventbus是一种事件总线机制

@Subscribe中的三个参数:

threadModule:

sticky -- 是否是粘性事件:
true:是粘性事件 -- 在发送Event后register也可以收到Event
false:默认。不是粘性事件
priority -- 优先级
默认为0,数值约大,优先级越高

2、源码分析

核心类:
==EventBus==:连接Publisher和Subscriber(观察者类)的中间桥

核心参数:

核心方法:EventBus.getDefault().register(this);

SubscriberMethod

保存了我们的被@Subscriber修饰的方法的所有内容(可以理解为一个Bean类)

Subscription

包含了我们的观察者类subscriber和被@Subscribe注解修饰的观察方法的信息

Poster的实现类里(mainThreadPoster/backgroundPoster/asyncPoster)

线程不满足时将Event放入队列里,通过handler机制来在线程满足时调用invoke方法

流程分析

1、 mainThreadPoster:
①、做equeue操作,
②、调用Handler机制:sendMessage、handleMessage
2、backgroundPoster:
backgroundPoster在 Executor的execute()方法 上添加了 synchronized关键字 并设立 了控制标记flag,保证任一时间只且仅能有一个任务会被线程池执行。
3、asyncPoster:
在单独一个线程中执行 由EventBusBuilder中的newCachedThreadPool执行

注意:equeue是将event和event对应的Subscription作为参数创建一个单链表PendingPost类压入(equeue)到Poster的实现类里;

总结:

EventBus使用了观察者模式,来进行消息的发送和处理,可以通过声明不同的threadModule来在不同的线程进行消息的处理。
EventBus可以通过线程安全的单例模式创建一个默认的EventBus或者通过Builder模式创建一个自定义的EventBus类。
在调用register时,做了两件事
1、会为EventBus的核心参数subscriptionsByEventType进行赋值,subscriptionsByEventType是一个map,map的value是一个Subscription的CopyOnWriteArrayList,Subscription里面存储了观察者类和被@Subscriber修饰的方法的一切属性
在存储这个Subscription的list的时候,会根据priority优先级来确定存放位置。
2、判断是否是粘性事件,如果是粘性事件,那么从粘性事件列表里取出来event来调用postToSubscription来处理event

在postSticky里,将event都放入了粘性事件列表里
在post中,最终调用到了postToSubscription,根据不同的threadModule来做不同的处理。
上一篇下一篇

猜你喜欢

热点阅读