当前位置:   article > 正文

Android开源框架--Dagger2详解

dagger2

功名只向马上取,真是英雄一丈夫

一,定义

我们知道在一个类中,通常会定义其他类型的变量,这个变量就是我们所说的“依赖“。

对一个类的变量进行初始化,有两种方式。第一种,这个类自己进行初始化;第二种,其他外部的类帮你进行初始化。

其中第二种方式,由外部类进行初始化的方式就是我们所说的”依赖注入“。由于他是由外部来控制,因此又叫做”控制反转“。依赖注入和非依赖注入的区别就是,变量初始化工作是由谁来做的。前面我们提到过的创建型设计模式,工厂模式、builder模式,带参数的构造函数等,都是依赖注入。

因此,实际上我们一直都在使用“依赖注入“,对它其实并不陌生。而Dagger2的定位就是提供了用注解的方式来配置依赖的方法。因此Dagger2并不是提供依赖注入的能力,而是为依赖注入提供一种更简单的方法。
谷歌新推出的hilt相比于dagger2来说,使用起来要方便易懂的多,那么我们为什么还要去学习dagger2呢?因为dagger2与hilt的关系,就相当于okhttp3与retrofit2的关系。hilt只是对于dagger2的二次封装。而且现在许多大型的互联网项目使用的依然是dagger2,所以我们非常有必要去了解dagger2。

二,角色介绍

1,object:需要被创建的对象

2,module: 主要用来提供对象

3,component:用于组织module并进行注入

三,基本使用

1,在app的build.gradle下面添加依赖:

  1. implementation 'com.google.dagger:dagger:2.4'
  2. annotationProcessor 'com.google.dagger:dagger-compiler:2.4'

如果报错:Unable to load class 'javax.annotation.Generated'.

再添加依赖:

  1. implementation'javax.annotation:javax.annotation-api:1.3.2'
  2. annotationProcessor("javax.annotation:javax.annotation-api:1.3.2")

2,创建一个用于注入的对象:

  1. public class YuanZhen {
  2. }

3,创建一个module,用来提供YuanZhen

  1. @Module
  2. public class YuanZhenModule {
  3. @Provides
  4. public YuanZhen providerYuanZhen(){
  5. //后面所有需要YuanZhen对象的地方,都在这里提供
  6. return new YuanZhen();
  7. }
  8. }

4,创建component,用于组织module并进行注入

  1. @Component(modules = {YuanZhenModule.class})
  2. public interface MyComponent {
  3. void injectMainActivity(MainActivity mainActivity);
  4. }

5,注入到activity

  1. public class MainActivity extends AppCompatActivity {
  2. @Inject
  3. YuanZhen yuanZhen;
  4. @Override
  5. protected void onCreate(Bundle savedInstanceState) {
  6. super.onCreate(savedInstanceState);
  7. setContentView(R.layout.activity_main);
  8. }
  9. }

6,编译项目,让APT生成需要的文件

关于APT不了解的,可以参考文章android注解之APT和javapoet_android javapoet-CSDN博客

7,使用:

  1. public class MainActivity extends AppCompatActivity {
  2. @Inject
  3. YuanZhen yuanZhen;
  4. @Override
  5. protected void onCreate(Bundle savedInstanceState) {
  6. super.onCreate(savedInstanceState);
  7. setContentView(R.layout.activity_main);
  8. // DaggerMyComponent.create().injectMainActivity(this);
  9. DaggerMyComponent.builder().yuanZhenModule(new YuanZhenModule()).build().injectMainActivity(this);
  10. System.out.println("yz----"+yuanZhen.hashCode());
  11. }
  12. }

最后输出:

上面就是APT的基本使用,两种方式都可以

四,源码分析

对于源码的分析,主要是分析APT生成的三个文件

从 DaggerMyComponent.builder().yuanZhenModule(new YuanZhenModule()).build().injectMainActivity(this);

我们可以看出,一定是采用了Buidler建造者模式,不清楚的可以参考文章Android设计模式--Builder建造者模式-CSDN博客

首先分析DaggerMyComponent.builder()

  1. public static Builder builder() {
  2. return new Builder();
  3. }

可以看到是new了一个Buidler,我们再来看下Builder

  1. public static final class Builder {
  2. private YuanZhenModule yuanZhenModule;
  3. private Builder() {}
  4. public MyComponent build() {
  5. if (yuanZhenModule == null) {
  6. this.yuanZhenModule = new YuanZhenModule();
  7. }
  8. return new DaggerMyComponent(this);
  9. }
  10. public Builder yuanZhenModule(YuanZhenModule yuanZhenModule) {
  11. this.yuanZhenModule = Preconditions.checkNotNull(yuanZhenModule);
  12. return this;
  13. }

 可以看到DaggerMyComponent.builder().yuanZhenModule(new YuanZhenModule())是将我们新创建的YuanZhenModule传入到了Builder里面。

然后 DaggerMyComponent.builder().yuanZhenModule(new YuanZhenModule()).build()则是创建了一个DaggerMyComponent对象。

  1. private DaggerMyComponent(Builder builder) {
  2. assert builder != null;
  3. initialize(builder);
  4. }

在DaggerMyComponent的构造函数中,调用了initialize方法。

  1. private void initialize(final Builder builder) {
  2. this.providerYuanZhenProvider =
  3. YuanZhenModule_ProviderYuanZhenFactory.create(builder.yuanZhenModule);
  4. this.mainActivityMembersInjector =
  5. MainActivity_MembersInjector.create(providerYuanZhenProvider);
  6. }

在initialize方法中,调用了YuanZhenModule_ProviderYuanZhenFactory的create方法,这是一个工厂模式,不清楚的请参考Android设计模式--工厂模式-CSDN博客

再来看看YuanZhenModule_ProviderYuanZhenFactory的create方法

  1. public static Factory<YuanZhen> create(YuanZhenModule module) {
  2. return new YuanZhenModule_ProviderYuanZhenFactory(module);
  3. }

创建了一个YuanZhenModule_ProviderYuanZhenFactory对象,接下来继续看YuanZhenModule_ProviderYuanZhenFactory的构造方法:

  1. public YuanZhenModule_ProviderYuanZhenFactory(YuanZhenModule module) {
  2. assert module != null;
  3. this.module = module;
  4. }

也就是将yuanZhenModule这个对象传递给了YuanZhenModule_ProviderYuanZhenFactory

然后我们继续回到initialize方法,看看 this.mainActivityMembersInjector =
      MainActivity_MembersInjector.create(providerYuanZhenProvider)的实现

  1. public static MembersInjector<MainActivity> create(Provider<YuanZhen> yuanZhenProvider) {
  2. return new MainActivity_MembersInjector(yuanZhenProvider);
  3. }

创建了一个MainActivity_MembersInjector对象,看看其构造方法:

  1. public MainActivity_MembersInjector(Provider<YuanZhen> yuanZhenProvider) {
  2. assert yuanZhenProvider != null;
  3. this.yuanZhenProvider = yuanZhenProvider;
  4. }

将刚才创建的YuanZhenModule_ProviderYuanZhenFactory对象传递给了MainActivity_MembersInjector;

最后 我们来看下

DaggerMyComponent.builder().yuanZhenModule(new YuanZhenModule()).build().injectMainActivity(this);

  1. @Override
  2. public void injectMainActivity(MainActivity mainActivity) {
  3. mainActivityMembersInjector.injectMembers(mainActivity);
  4. }

调用了MainActivity_MembersInjector的injectMembers方法

  1. @Override
  2. public void injectMembers(MainActivity instance) {
  3. if (instance == null) {
  4. throw new NullPointerException("Cannot inject members into a null reference");
  5. }
  6. instance.yuanZhen = yuanZhenProvider.get();
  7. }

然后又调用了YuanZhenModule_ProviderYuanZhenFactory的get方法

  1. @Override
  2. public YuanZhen get() {
  3. return Preconditions.checkNotNull(
  4. module.providerYuanZhen(), "Cannot return null from a non-@Nullable @Provides method");
  5. }

在get方法中,最终调用了我们自己写的module的providerYuanZhen方法:

  1. @Module
  2. public class YuanZhenModule {
  3. @Provides
  4. public YuanZhen providerYuanZhen(){
  5. //后面所有需要YuanZhen对象的地方,都在这里提供
  6. return new YuanZhen();
  7. }
  8. }

这样就通过APT生成的代码,自动帮我们创建了对象。

五,单例使用

1,创建一个注解:

  1. @Scope
  2. @Documented
  3. @Retention(RUNTIME)
  4. public @interface AppScope {}

2,在component和Module中使用注解

  1. @AppScope
  2. @Component(modules = {YuanZhenModule.class})
  3. public interface MyComponent {
  4. void injectMainActivity(MainActivity mainActivity);
  5. }
  1. @AppScope
  2. @Module
  3. public class YuanZhenModule {
  4. @AppScope
  5. @Provides
  6. public YuanZhen providerYuanZhen(){
  7. //后面所有需要YuanZhen对象的地方,都在这里提供
  8. return new YuanZhen();
  9. }
  10. }

3,在application中创建component 保证component是唯一的

  1. public class MyApplication extends Application {
  2. private MyComponent myComponent;
  3. @Override
  4. public void onCreate() {
  5. super.onCreate();
  6. myComponent= DaggerMyComponent.builder()
  7. .yuanZhenModule(new YuanZhenModule())
  8. .build();
  9. }
  10. public MyComponent getMyComonent(){
  11. return myComponent;
  12. }
  13. }

4,验证:

  1. public class MainActivity extends AppCompatActivity {
  2. @Inject
  3. YuanZhen yuanZhen;
  4. @Inject
  5. YuanZhen yuanZhen2;
  6. @Override
  7. protected void onCreate(Bundle savedInstanceState) {
  8. super.onCreate(savedInstanceState);
  9. setContentView(R.layout.activity_main);
  10. ((MyApplication)getApplication()).getMyComonent().injectMainActivity(this);
  11. System.out.println("yz------"+yuanZhen.hashCode());
  12. System.out.println("yz------"+yuanZhen2.hashCode());
  13. }
  14. }

输出:

六,多个component组合依赖 

如果我们一个类有好几个对象需要依赖的话,dagger2是不能使用多个Component同时注入同一个类中的,这种情况需要进行Component的组合

新建一个object对象:

  1. public class YuanZhen2 {
  2. }

创建新的注解:

  1. @Scope
  2. @Documented
  3. @Retention(RUNTIME)
  4. public @interface AppScope2 {
  5. }

创建module:

  1. @AppScope2
  2. @Module
  3. public class YuanZhen2Module {
  4. @AppScope2
  5. @Provides
  6. public CuiJing provideYuanZhen2(){
  7. return new YuanZhen2();
  8. }
  9. }

创建component:

  1. @AppScope2
  2. @Component(modules = {YuanZhen2Module.class})
  3. public interface YuanZhen2Component {
  4. YuanZhen2 providerYuanZhen2();
  5. }

进行依赖:

  1. @AppScope
  2. @Component(modules = {YuanZhenModule.class},dependencies = {YuanZhen2Component.class})
  3. public interface MyComponent {
  4. void injectMainActivity(MainActivity mainActivity);
  5. }

使用:

  1. public class MainActivity extends AppCompatActivity {
  2. @Inject
  3. YuanZhen yuanZhen;
  4. @Inject
  5. YuanZhen2 yuanZhen2;
  6. @Override
  7. protected void onCreate(Bundle savedInstanceState) {
  8. super.onCreate(savedInstanceState);
  9. setContentView(R.layout.activity_main);
  10. // DaggerMyComponent.create().injectMainActivity(this);
  11. DaggerMyComponent.builder().yuanZhenModule(new YuanZhenModule()).yuanZhen2Component(DaggerYuanZhen2Component.create()).build().injectMainActivity(this);
  12. System.out.println("yz----"+yuanZhen.hashCode());
  13. System.out.println("yz----"+yuanZhen2.hashCode());
  14. }
  15. }

输出:

注意:

1.多个component上面的scope不能相同

2.没有scope的组件不能去依赖有scope的组件

七,总结

dagger2源码使用到的主要是APT框架,工厂模式和builder模式,dagger2的使用较为复杂,但是现在很多主流app都在使用,所以掌握还是很有必要的。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/589758
推荐阅读
相关标签
  

闽ICP备14008679号