Annotation processor: Say less, mean more.

Yep, generating code at compile time.

The process of generating code at compile time to handle the annotations is called Annotation Processing .

I will do a simple use case, explaining all what’s happening.

The use case:I hate to type:activity.

getSupportFragmentManager().

beginTransaction().

replace(R.

id.

someId,SomeFragment.

newInstance()).

commit()for each fragment that I need to start.

Someone here would be right to say that what do we need the annotations for, but this article is for “academical” reasons, not for providing some best practice or refactor.

Setup:First of all, you must know that creating an annotation and handling it, you need separated modules.

That’s because we need to tell gradle that there is some code that needs to be imported and the other code that works as a compiler.

To create a new module in Android Studio go to File->New->Module and select Java Library.

Note, Android Library is not necessary in this case.

Choose Android library when you are creating a custom view class or whatever.

So let’s go :I have created 2 more modules except from my current Android app module.

I named my modules Browser since they I will basically navigate through app fragments.

Let’s start with the easy one: Create the desired annotation:There are 2 important things here: The @Target which does the check if I have annotated my desired component, in my case a CLASS .

If I annotate a method or a filed it will show an error, and the @Retention which determines how an annotation is stored in binary output (from Kotlin documentation).

There are 3 kinds of AnnotationRetention s:For the moment, I’m just letting it to source because I don’t need any of those other options.

Go to the browser_compiler and open its build.

gradle to import these libraries:We will explain other dependencies later.

For the moment just notice importing the above module in order to handle that Annotation in the compiler module.

Note: don’t forget to add the apply plugin: ‘kotlin-kapt’ ,otherwise, forget about a successful build.

Create a class and extend AbstractProcessor (overriding the methods of course).

Since I am using kotlin metadata library, I am extending the KotlinAbstractProcessor but there is no difference between them, except from accessing some fields directly on this case.

This is why we imported the other module here, to access the annotation.

Work:The work will happen in the process method.

This is where the magic happens:This is where I am talking to the Kotlin compiler and telling it that if there is any thing annotated with @BindFragment annotation apart from a class, show some error message.

Our elementUtils.

getPackageOf(annotatedElement).

toString() will just provide us the annotated class package name, while the annotatedElement.

simpleName().

toString() will just provide us the annotated class name.

Now let’s jump to the startClassGeneration method.

I am using the KotlinPoet library to generate kotlin code on the compile time, but it is not mandatory, you can also type simple strings as long as it is correctly used without and without compile errors.

This is the code:You can read the documentation on what is doing one and what is doing the other.

Details are important:We must annotate this generator class with the @AutoService(Processor::class) .

It just creates a registration file for this custom processor.

Not providing it will force you to include your processor manually in the META-INF directory.

That way it can be accessed through all the project.

Full processor file:The moment of truth:Go to your build.

gradle module app and import both your modules, the browser module as an implementation and the browser_compiler as the processor using kapt.

Note to include kotlin-kapt here also.

Annotate your Fragments with your created annotation:Annotate your second fragment, which you will navigate after a button click in the first fragment:Hit BUILD on your IDE and go to main activity to open the FirstFragmentAnd the FirstFragment , on the button click will have this code:Done!Conclusion:There is plenty to learn on generating code at compile time and this includes me too.

I want to start creating a real library, once I feel confident on this.

Happy processing!.. More details

Leave a Reply