ARouter讲解1-InterceptorProcessor

概述

这是讲解Arouter的一篇文章,从源码级别带你分析,看这篇文章前,你需要知道一点 AbstractProcessor处理注解的技巧。

InterceptorProcessor 注解

@Target({ElementType.TYPE})
@Retention(RetentionPolicy.CLASS)
public @interface Interceptor {
    /**
     * 权重值,值越小权重越大
     */
    int priority();

    /**
     * The name of interceptor, may be used to generate javadoc.
     */
    String name() default "Default";
}

在使用path进行路由时,可以对其进行拦截,例如拦截添加额外参数等。

功能概述

这里讲解一个主要逻辑,想要关心具体实现的可以往下看,主要就是找到所有被 Interceptor 注解的类,生成一个类似下面这样的类,等到Arouter初始化的时候调用loadInto,这样就把值放到我们指定的 Map<Integer, Class<? extends IInterceptor>> 中了。至于拦截器什么时候调用,我们后面几篇文章再讲。

public class ARouter$$Interceptors$$modulejava implements IInterceptorGroup {
  @Override
  public void loadInto(Map<Integer, Class<? extends IInterceptor>> interceptors) {
    interceptors.put(7, Test1Interceptor.class);
    interceptors.put(90, TestInterceptor90.class);
  }
}

功能详情

@AutoService(Processor.class)

这是google的auto-service-annotation,主要就是帮助我们生成META-INF/services/javax.annotation.processing.Processor文件,要不然这东西就要自己手动写了。

image-20210510231418242.png
@SupportedAnnotationTypes(ANNOTATION_TYPE_INTECEPTOR)

ANNOTATION_TYPE_INTECEPTOR 的值就是 com.alibaba.android.arouter.facade.annotation.Interceptor,表示需要处理的注解类型

之前的写法是下面这样的

@Override
public Set<String> getSupportedAnnotationTypes() {
    return super.getSupportedAnnotationTypes();
}

从1.6之后可以使用注解了,给你看看super的调用,实际商还是获取 SupportedAnnotationTypes 注解,大家以后使用注解就可以了。

public Set<String> getSupportedAnnotationTypes() {
        SupportedAnnotationTypes sat = this.getClass().getAnnotation(SupportedAnnotationTypes.class);
        if  (sat == null) {
            if (isInitialized())
                processingEnv.getMessager().printMessage(Diagnostic.Kind.WARNING,
                                                         "No SupportedAnnotationTypes annotation " +
                                                         "found on " + this.getClass().getName() +
                                                         ", returning an empty set.");
            return Collections.emptySet();
        }
        else
            return arrayToSet(sat.value());
    }
@Override
public synchronized void init(ProcessingEnvironment processingEnv) {
    super.init(processingEnv);
    // 获取被com.alibaba.android.arouter.facade.template.IInterceptor
    iInterceptor = elementUtils.getTypeElement(Consts.IINTERCEPTOR).asType();
}

重点方法就是下面的 process 方法了,我们知道java语言中有包(PACKAGE)、枚举(ENUM)、类(CLASS,不是枚举类)、注解(ANNOTATION_TYPE)、接口(INTERFACE)、字段(FIELD)、方法或者构造含函数的参数(PARAMETER)、本地变量(LOCAL_VARIABLE)、方法(METHOD)、构造函数(CONSTRUCTOR)等。

这些组成了java程序,这每个种类就叫一个Element。

  • Set<Modifier> getModifiers() 获取该Element的修饰符(public,static等)
  • ElementKind getKind() 获取该Element是哪个种类(ElementKind)
  • Name getSimpleName() 获取该Element的名称
  • Element getEnclosingElement() 如果Element是一个顶层类或者接口(TypeElement),就返回包Element(PackageElement),如果是包Element,就返回null
  • List<? extends Element> getEnclosedElements() 返回被该Element包裹的其他Element,比如类可以包含构造函数Element,字段Element,方法Element等。
  • <A extends Annotation> A getAnnotation(Class<A> annotationType) 获取该Element上指定的注解。
  • TypeMirror asType()

从Element可以获取到当前element是java语言的哪个结构,比如 int age,这个可以是一个字段(FIELD)、或者方法参数(PARAMETER),但是你怎么知道这是什么类型?是String还是int,还是long,这个时候就可以使用asType,变成 TypeMirror,通过使用getKind()方法,就知道age是一个 INT 类型。

@Override
public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) {
    if (CollectionUtils.isNotEmpty(annotations)) {
        // 先获取被 Interceptor 注解的元素
        Set<? extends Element> elements = roundEnv.getElementsAnnotatedWith(Interceptor.class);
        try {
            parseInterceptors(elements);
        } catch (Exception e) {
            logger.error(e);
        }
        return true;  // 返回true表示这个我处理了,不会交给后面的注解器处理了
    }

    return false;
}
private void parseInterceptors(Set<? extends Element> elements) throws IOException {
    if (CollectionUtils.isNotEmpty(elements)) {

        // Verify and cache, sort incidentally.
        // 遍历每个被 Interceptor 注解的元素
        for (Element element : elements) {
        
            // 校验一下,element 必须被 Interceptor 注解过,而且必须直接实现 com.alibaba.android.arouter.facade.annotation.Interceptor 接口
            // 这里需要注意的是直接实现
            if (verify(element)) {  // Check the interceptor meta
                // 取出 Interceptor 注解的值
                Interceptor interceptor = element.getAnnotation(Interceptor.class);
                // 看来不能有2个一样权重的 Interceptor
                Element lastInterceptor = interceptors.get(interceptor.priority());
                if (null != lastInterceptor) { // Added, throw exceptions
                    throw new IllegalArgumentException(
                            String.format(Locale.getDefault(), "More than one interceptors use same priority [%d], They are [%s] and [%s].",
                                    interceptor.priority(),
                                    lastInterceptor.getSimpleName(),
                                    element.getSimpleName())
                    );
                }
                // 存起来
                interceptors.put(interceptor.priority(), element);
            } else {
                logger.error("A interceptor verify failed, its " + element.asType());
            }
        }

        // Interface of ARouter.
        // com.alibaba.android.arouter.facade.template.IInterceptor
        TypeElement type_ITollgate = elementUtils.getTypeElement(IINTERCEPTOR);
        
         // com.alibaba.android.arouter.facade.template.IInterceptorGroup
        TypeElement type_ITollgateGroup = elementUtils.getTypeElement(IINTERCEPTOR_GROUP);

        /**
         *  生成一个输入类型,后面给方法中的参数
         *
         *  ```Map<Integer, Class<? extends ITollgate>>```
         */
        ParameterizedTypeName inputMapTypeOfTollgate = ParameterizedTypeName.get(
                ClassName.get(Map.class),
                ClassName.get(Integer.class),
                ParameterizedTypeName.get(
                        ClassName.get(Class.class),
                        WildcardTypeName.subtypeOf(ClassName.get(type_ITollgate))
                )
        );

        //输入参数的名字
        ParameterSpec tollgateParamSpec = ParameterSpec.builder(inputMapTypeOfTollgate, "interceptors").build();

        //生成方法名 loadInto
        MethodSpec.Builder loadIntoMethodOfTollgateBuilder = MethodSpec.methodBuilder(METHOD_LOAD_INTO)
                .addAnnotation(Override.class)
                .addModifiers(PUBLIC)
                .addParameter(tollgateParamSpec);

        // Generate
        if (null != interceptors && interceptors.size() > 0) {
            // Build method body
            for (Map.Entry<Integer, Element> entry : interceptors.entrySet()) {
                
                loadIntoMethodOfTollgateBuilder.addStatement("interceptors.put(" + entry.getKey() + ", $T.class)", ClassName.get((TypeElement) entry.getValue()));
            }
        }

        // Write to disk(Write file even interceptors is empty.)
        // demo中的模块名称是module-java,被处理后   moduleName = moduleName.replaceAll("[^0-9a-zA-Z_]+", "");,就是  modulejava
        // 包名 com.alibaba.android.arouter.routes
        // 类名 ARouter$$Interceptors$$modulejava
        JavaFile.builder(PACKAGE_OF_GENERATE_FILE,
                TypeSpec.classBuilder(NAME_OF_INTERCEPTOR + SEPARATOR + moduleName)
                        .addModifiers(PUBLIC)
                        .addJavadoc(WARNING_TIPS)
                        .addMethod(loadIntoMethodOfTollgateBuilder.build())
                        .addSuperinterface(ClassName.get(type_ITollgateGroup))
                        .build()
        ).build().writeTo(mFiler);

        logger.info(">>> Interceptor group write over. <<<");
    }
}
image-20210511002311714.png

经过注解处理器,生成文件的内容就是

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

推荐阅读更多精彩内容