EventBus原理分析(简单)

灵感来源:多线程模块:http://blog.mcxiaoke.com/

下面是两个类,直接copy过去run就好了,接下来说下里面要注意的一些坑

首先,创建一个注解,用来为后续的方法筛选做准备,然后创建一个类A拥有register,post,unregister三个方法,顺便给上注解;

然后创建一个类B,构造函数就是放入A,通过一个方法findMethod将A中的所有方法都接受,这是最基础的,然后通过筛选将注解过的方法进行整合返回一个Set因为Set里面不允许重复;

在A中的register方法中运行B.findMethod(),这样就OK了,然后在A的post方法中随便传一个对象C,和返回的Set方法中的参数做匹配,然后用method.invoke方法将C传入到对应的方法并执行;

完结撒花!!!!!

public class Bus {

private static classSingletonHolder {

static finalBusINSTANCE=newBus();

}

public staticBus getDefault() {

returnSingletonHolder.INSTANCE;

}

privateMap>mMethodMap=newWeakHashMap>();

public voidregister(finalObject target) {

if(mMethodMap.containsKey(target)) {

System.err.println("target "+ target +" is already registered");

return;

}

Set methods = Helper.findAnnotatedMethods(target.getClass(),BusReceiver.class);

if(methods ==null|| methods.isEmpty()) {

return;

}

mMethodMap.put(target, methods);

}

public voidunregister(finalObject target) {

System.out.println("unregister() target="+ target);

mMethodMap.remove(target);

}

public void post(Object event) {

finalClass eventClass = event.getClass();

intsentCount =0;

for(Map.Entry> entry :mMethodMap.entrySet()) {

finalObject target = entry.getKey();

finalSet methods = entry.getValue();

if(methods ==null|| methods.isEmpty()) {

continue;

}

for(Method method : methods) {

Class parameterClass = method.getParameterTypes()[0];

if(parameterClass.isAssignableFrom(eventClass)) {

try{

System.out.println("post event to "

+ target +"."+ method.getName());

method.invoke(target, event);

sentCount++;

}catch(IllegalAccessException e) {

e.printStackTrace();

}catch(InvocationTargetException e) {

e.printStackTrace();

}

}

}

}

if(sentCount ==0) {

System.err.println("no receiver found for event: "+ event);

}

}

}




@Target(ElementType.METHOD)

@Retention(RetentionPolicy.RUNTIME)

public@interfaceBusReceiver{

}





public classBusDemo {

public static voidmain(String[] args) {

finalBusDemo demo =newBusDemo();

Bus bus = Bus.getDefault();

bus.register(demo);

bus.post(newTom());

//        bus.post(new Object());

//        bus.post("SomeEvent");

//        bus.post(12345);

//        bus.post(new Exception("Error"));

}

@BusReceiver

public voidonReceiveRunnableNotPost(Runnable event) {

System.out.println("onReceiveRunnableNotPost() event="+ event);

}

@BusReceiver

public voidonObjectEvent(Object event) {

System.out.println("onObjectReceive() event="+ event);

}

@BusReceiver

public voidonExceptionEvent(Exception event) {

System.out.println("onExceptionEvent() event="+ event);

}

@BusReceiver

public voidonStringReceive(String event) {

System.out.println("onStringReceive() event="+ event);

}

@BusReceiver

public voidonInteger(Integer event) {

System.out.println("onInteger() event="+ event);

}

@BusReceiver

public voidonPerson(Person event) {

event.output();

}

}





final classHelper {

private static booleanshouldSkipClass(finalClass clazz) {

finalString clsName = clazz.getName();

returnObject.class.equals(clazz)

|| clsName.startsWith("java.")

|| clsName.startsWith("javax.")

|| clsName.startsWith("android.")

|| clsName.startsWith("com.android.");

}

private static booleanisAnnotatedMethod(finalMethod method,

finalClass annotation) {

// must has annotation

if(!method.isAnnotationPresent(annotation)) {

return false;

}

// must be public

if(!Modifier.isPublic(method.getModifiers())) {

return false;

}

// must not static

if(Modifier.isStatic(method.getModifiers())) {

return false;

}

// must not be volatile

// fix getDeclaredMethods bug, if method in base class,

// it returns duplicate method,

// one is normal, the other is the same but with volatile modifier

if(Modifier.isVolatile(method.getModifiers())) {

return false;

}

// must has only one parameter

if(method.getParameterTypes().length!=1) {

return false;

}

return true;

}

public staticSet findAnnotatedMethods(finalClass type,

finalClass annotation) {

Class clazz = type;

finalSet methods =newHashSet();

while(!shouldSkipClass(clazz)) {

finalMethod[] allMethods = clazz.getDeclaredMethods();

for(finalMethod method : allMethods) {

if(isAnnotatedMethod(method, annotation)) {

methods.add(method);

}

}

// search more methods in super class

clazz = clazz.getSuperclass();

}

returnmethods;

}

public static voiddumpMethod(finalMethod method) {

finalStringBuilder builder =newStringBuilder();

builder.append("------------------------------\n");

builder.append("MethodName: ").append(method.getName()).append("\n");

builder.append("ParameterTypes:{");

for(Class cls : method.getParameterTypes()) {

builder.append(cls.getName()).append(", ");

}

builder.append("}\n");

builder.append("GenericParameterTypes:{");

for(Type cls : method.getGenericParameterTypes()) {

builder.append(cls.getClass()).append(", ");

}

builder.append("}\n");

builder.append("TypeParameters:{");

for(TypeVariable cls : method.getTypeParameters()) {

builder.append(cls.getName()).append(", ");

}

builder.append("}\n");

builder.append("DeclaredAnnotations:{");

for(Annotation cls : method.getDeclaredAnnotations()) {

builder.append(cls).append(", ");

}

builder.append("}\n");

builder.append("Annotations:{");

for(Annotation cls : method.getAnnotations()) {

builder.append(cls).append(", ");

}

builder.append("}\n");

builder.append("ExceptionTypes:{");

for(Class cls : method.getExceptionTypes()) {

builder.append(cls.getName()).append(", ");

;

}

builder.append("}\n");

builder.append("ReturnType: ").append(method.getReturnType());

builder.append("\nGenericReturnType: ").append(method.getGenericReturnType());

builder.append("\nDeclaringClass: ").append(method.getDeclaringClass());

builder.append("\n");

System.out.println(builder.toString());

}

}

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

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,580评论 18 139
  • 1. Java基础部分 基础部分的顺序:基本语法,类相关的语法,内部类的语法,继承相关的语法,异常的语法,线程的语...
    子非鱼_t_阅读 31,559评论 18 399
  • 项目到了一定阶段会出现一种甜蜜的负担:业务的不断发展与人员的流动性越来越大,代码维护与测试回归流程越来越繁琐。这个...
    fdacc6a1e764阅读 3,158评论 0 6
  • 转至元数据结尾创建: 董潇伟,最新修改于: 十二月 23, 2016 转至元数据起始第一章:isa和Class一....
    40c0490e5268阅读 1,678评论 0 9
  • 多态 任何域的访问操作都将有编译器解析,如果某个方法是静态的,它的行为就不具有多态性 java默认对象的销毁顺序与...
    yueyue_projects阅读 931评论 0 1