25
25
@ SuppressWarnings ({"PMD.TooManyStaticImports" , "checkstyle:NoFinalizer" })
26
26
public class FlagdProvider extends EventProvider {
27
27
private static final String FLAGD_PROVIDER = "flagD Provider" ;
28
-
29
- private final ReadWriteLock lock = new ReentrantReadWriteLock ();
30
28
private final Resolver flagResolver ;
31
- private ProviderState state = ProviderState . NOT_READY ;
32
- private boolean initialized = false ;
29
+ private volatile boolean initialized = false ;
30
+ private volatile boolean connected = false ;
33
31
34
32
private EvaluationContext evaluationContext ;
35
33
@@ -52,14 +50,14 @@ public FlagdProvider() {
52
50
public FlagdProvider (final FlagdOptions options ) {
53
51
switch (options .getResolverType ().asString ()) {
54
52
case Config .RESOLVER_IN_PROCESS :
55
- this .flagResolver = new InProcessResolver (options , this ::setState );
53
+ this .flagResolver = new InProcessResolver (options , this ::isConnected , this :: onResolverConnectionChanged );
56
54
break ;
57
55
case Config .RESOLVER_RPC :
58
56
this .flagResolver =
59
57
new GrpcResolver (options ,
60
58
new Cache (options .getCacheType (), options .getMaxCacheSize ()),
61
- this ::getState ,
62
- this ::setState );
59
+ this ::isConnected ,
60
+ this ::onResolverConnectionChanged );
63
61
break ;
64
62
default :
65
63
throw new IllegalStateException (
@@ -86,24 +84,13 @@ public synchronized void shutdown() {
86
84
87
85
try {
88
86
this .flagResolver .shutdown ();
89
- this .initialized = false ;
90
87
} catch (Exception e ) {
91
88
log .error ("Error during shutdown {}" , FLAGD_PROVIDER , e );
92
- }
93
- }
94
-
95
- @ Override
96
- public ProviderState getState () {
97
- Lock l = this .lock .readLock ();
98
- try {
99
- l .lock ();
100
- return this .state ;
101
89
} finally {
102
- l . unlock () ;
90
+ this . initialized = false ;
103
91
}
104
92
}
105
93
106
-
107
94
@ Override
108
95
public Metadata getMetadata () {
109
96
return () -> FLAGD_PROVIDER ;
@@ -142,49 +129,32 @@ private EvaluationContext mergeContext(final EvaluationContext clientCallCtx) {
142
129
return clientCallCtx ;
143
130
}
144
131
145
- private void setState (ProviderState newState , List <String > changedFlagsKeys ) {
146
- ProviderState oldState ;
147
- Lock l = this .lock .writeLock ();
148
- try {
149
- l .lock ();
150
- oldState = this .state ;
151
- this .state = newState ;
152
- } finally {
153
- l .unlock ();
154
- }
155
- this .handleStateTransition (oldState , newState , changedFlagsKeys );
132
+ private boolean isConnected () {
133
+ return this .connected ;
156
134
}
157
135
158
- private void handleStateTransition (ProviderState oldState , ProviderState newState , List <String > changedFlagKeys ) {
159
- // we got initialized
160
- if (ProviderState .NOT_READY .equals (oldState ) && ProviderState .READY .equals (newState )) {
161
- // nothing to do, the SDK emits the events
162
- log .debug ("Init completed" );
163
- return ;
164
- }
165
- // we got shutdown, not checking oldState as behavior remains the same for shutdown
166
- if (ProviderState .NOT_READY .equals (newState )) {
167
- // nothing to do
168
- log .debug ("shutdown completed" );
169
- return ;
170
- }
136
+ private void onResolverConnectionChanged (boolean newConnectedState , List <String > changedFlagKeys ) {
137
+ boolean previous = connected ;
138
+ boolean current = newConnectedState ;
139
+ this .connected = newConnectedState ;
140
+
171
141
// configuration changed
172
- if (ProviderState . READY . equals ( oldState ) && ProviderState . READY . equals ( newState ) ) {
142
+ if (initialized && previous && current ) {
173
143
log .debug ("Configuration changed" );
174
144
ProviderEventDetails details = ProviderEventDetails .builder ().flagsChanged (changedFlagKeys )
175
145
.message ("configuration changed" ).build ();
176
146
this .emitProviderConfigurationChanged (details );
177
147
return ;
178
148
}
179
149
// there was an error
180
- if (ProviderState . READY . equals ( oldState ) && ProviderState . ERROR . equals ( newState ) ) {
150
+ if (initialized && previous && ! current ) {
181
151
log .debug ("There has been an error" );
182
152
ProviderEventDetails details = ProviderEventDetails .builder ().message ("there has been an error" ).build ();
183
153
this .emitProviderError (details );
184
154
return ;
185
155
}
186
- // we recover from an error
187
- if (ProviderState . ERROR . equals ( oldState ) && ProviderState . READY . equals ( newState ) ) {
156
+ // we recovered from an error
157
+ if (initialized && ! previous && current ) {
188
158
log .debug ("Recovered from error" );
189
159
ProviderEventDetails details = ProviderEventDetails .builder ().message ("recovered from error" ).build ();
190
160
this .emitProviderReady (details );
0 commit comments