编译时注解处理器AnnotationProcessor的使用

2018-01-27  本文已影响3956人  砺雪凝霜
前言

在前面写的EventBus的源码解析的文章中提到了编译时注解的概念,在编译期EventBusAnnotationProcessor会生成一个MyEventIndex的java类文件,并把带有@subscribe的方法信息保存在该方法中,并在注册的时候获取订阅方法信息,那么编译器注解是如何工作的?下面就给大家讲讲究竟这是个什么东西吧。

什么是注解?

从JDK5开始,Java增加了注解,注解是代理里特殊的标记,这些标记可以在编译、类加载、运行时被读取,并执行相应的处理。通过使用注解,开发人员可以在不改变原有逻辑的情况下,在源文件中嵌入一些补充信息。代码分析工具,开发工具和部署工具可以通过这些补充信息进行验证,处理或者进行部署。

注解的分类

(1)标注注解

(2)元注解
用来标注其它注解而创建的新注解,元注解的类型有以下几种:

其中@Target注解的取值是一个ElementType类型的枚举,其中有一下几种取值,对应不同的对象范围。

其中@Retention注解有3种类型,分别表示不同级别的保留策略。

AnnotationProcessor的使用

(1)新建annotations库

apply plugin: 'java'

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
}

sourceCompatibility = "1.7"
targetCompatibility = "1.7"

@Target(ElementType.FIELD)
@Retention(RetentionPolicy.CLASS)
public @interface BindView {
    int value() default 0;
}

(2)新建processor 库

apply plugin: 'java'

dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    compile project(path: ':annotations')
}

sourceCompatibility = "1.7"
targetCompatibility = "1.7"
package com.mtime.processor;

import com.mtime.annotations.BindView;

import java.io.BufferedWriter;
import java.io.IOException;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.util.Set;

import javax.annotation.processing.AbstractProcessor;
import javax.annotation.processing.Messager;
import javax.annotation.processing.ProcessingEnvironment;
import javax.annotation.processing.RoundEnvironment;
import javax.annotation.processing.SupportedAnnotationTypes;

import javax.annotation.processing.SupportedSourceVersion;
import javax.lang.model.SourceVersion;
import javax.lang.model.element.Element;
import javax.lang.model.element.ElementKind;
import javax.lang.model.element.TypeElement;
import javax.tools.Diagnostic;

@SupportedSourceVersion(SourceVersion.RELEASE_7)
@SupportedAnnotationTypes("com.mtime.annotations.BindView")

public class ButterKnifeProcessor extends AbstractProcessor {
    private Messager mMessage;

    @Override
    public synchronized void init(ProcessingEnvironment processingEnvironment) {
        super.init(processingEnvironment);
        mMessage = processingEnvironment.getMessager();

    }


    @Override
    public boolean process(Set<? extends TypeElement> set, RoundEnvironment roundEnvironment) {
        for(Element element : roundEnvironment.getElementsAnnotatedWith(BindView.class)){
            if(element.getKind() == ElementKind.FIELD){
                mMessage.printMessage(Diagnostic.Kind.NOTE,"printMessage : " + element.toString());

            }
        }
        return true;
    }


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


    @Override
    public SourceVersion getSupportedSourceVersion() {
        return SourceVersion.latestSupported();
    }

}

ButterKnifeProcessor 注解处理器中所有方法介绍如下:

为了能使用注解处理器,需要用一个服务器文件来注册它,现在我们就来创建这个服务器文件,首先在processor库的main目录下新建resources资源文件夹,接下来在resources文件夹下新建META-INF/services目录文件夹。最后在META-INF/ services中创建javax.annotation.processing.Processor文件,文件的内容是我们上面定义的com.mtime.processor.ButterKnifeProcessor类的完整路径。

processor的注册.png

(3) 主项目中调用

 android {
    compileSdkVersion 26
  defaultConfig {
        applicationId "com.mtime.myprocessor"
  minSdkVersion 15
  targetSdkVersion 26
  versionCode 1
  versionName "1.0"
  testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  javaCompileOptions{
            annotationProcessorOptions.includeCompileClasspath = true
  }
    }
public class MainActivity extends Activity {
    @BindView(R.id.tv_text)
    TextView textView;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }
}

最后我们可以看看gradle打印出的日志信息下:

日志信息.png

也就是说我们获取到了包含@BindView注解的field textView,那么我们就可以通过反射的方式对其进行初始化,这也是butterKnife框架的开发原理。EventBus其原理也是一样的,在编译的时候就把注解信息给保存下来,这就省了我们在代码中寻找注解的开销,这也是注解类框架非常流行的原因,使用很小的开销,就可以方便我们不用地去写一些重复性的代码。
github地址:https://github.com/Fredlxy/AnnotationProcessorDemo.git

上一篇 下一篇

猜你喜欢

热点阅读