aboutsummaryrefslogtreecommitdiff
path: root/javatests/dagger/internal/codegen/goldens/ProductionComponentProcessorTest_productionScope_injectConstructor_FAST_INIT_MODE_test.DaggerParent
blob: ab89babec6d929faaa7e41a9c7382c3a6315ef9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
package test;

import dagger.internal.DaggerGenerated;
import dagger.internal.DoubleCheck;
import dagger.internal.Provider;
import dagger.producers.internal.CancellationListener;
import javax.annotation.processing.Generated;

@DaggerGenerated
@Generated(
    value = "dagger.internal.codegen.ComponentProcessor",
    comments = "https://dagger.dev"
)
@SuppressWarnings({
    "unchecked",
    "rawtypes",
    "KotlinInternal",
    "KotlinInternalInJava",
    "cast"
})
final class DaggerParent {
  private DaggerParent() {
  }

  public static Builder builder() {
    return new Builder();
  }

  public static Parent create() {
    return new Builder().build();
  }

  static final class Builder {
    private Builder() {
    }

    public Parent build() {
      return new ParentImpl();
    }
  }

  private static final class ChildImpl implements Child, CancellationListener {
    private final ParentImpl parentImpl;

    private final ChildImpl childImpl = this;

    private ChildImpl(ParentImpl parentImpl) {
      this.parentImpl = parentImpl;


    }

    @Override
    public ProductionScoped productionScoped() {
      return parentImpl.productionScopedProvider.get();
    }

    @Override
    public void onProducerFutureCancelled(boolean mayInterruptIfRunning) {


    }
  }

  private static final class ParentImpl implements Parent, CancellationListener {
    private final ParentImpl parentImpl = this;

    private Provider<ProductionScoped> productionScopedProvider;

    private ParentImpl() {

      initialize();

    }

    @SuppressWarnings("unchecked")
    private void initialize() {
      this.productionScopedProvider = DoubleCheck.provider(new SwitchingProvider<ProductionScoped>(parentImpl, 0));
    }

    @Override
    public Child child() {
      return new ChildImpl(parentImpl);
    }

    @Override
    public void onProducerFutureCancelled(boolean mayInterruptIfRunning) {


    }

    private static final class SwitchingProvider<T> implements Provider<T> {
      private final ParentImpl parentImpl;

      private final int id;

      SwitchingProvider(ParentImpl parentImpl, int id) {
        this.parentImpl = parentImpl;
        this.id = id;
      }

      @SuppressWarnings("unchecked")
      @Override
      public T get() {
        switch (id) {
          case 0: // test.ProductionScoped 
          return (T) new ProductionScoped();

          default: throw new AssertionError(id);
        }
      }
    }
  }
}