-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathSocketUpdatesManager.kt
261 lines (224 loc) · 9.26 KB
/
SocketUpdatesManager.kt
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
package org.p2p.wallet.updates
import androidx.core.net.toUri
import com.google.gson.JsonObject
import timber.log.Timber
import java.util.concurrent.Executors
import kotlin.properties.Delegates.observable
import kotlinx.coroutines.CoroutineDispatcher
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.Job
import kotlinx.coroutines.NonCancellable
import kotlinx.coroutines.asCoroutineDispatcher
import kotlinx.coroutines.delay
import kotlinx.coroutines.launch
import kotlinx.coroutines.plus
import kotlinx.coroutines.withContext
import kotlinx.coroutines.withTimeout
import org.p2p.core.BuildConfig.rpcPoolApiKey
import org.p2p.core.common.di.AppScope
import org.p2p.core.network.ConnectionManager
import org.p2p.core.network.environment.NetworkEnvironment
import org.p2p.core.network.environment.NetworkEnvironmentManager
import org.p2p.solanaj.model.types.RpcMapRequest
import org.p2p.solanaj.model.types.RpcRequest
import org.p2p.solanaj.ws.SocketClientCreateResult
import org.p2p.solanaj.ws.SocketStateListener
import org.p2p.solanaj.ws.SubscriptionEventListener
import org.p2p.solanaj.ws.SubscriptionSocketClient
import org.p2p.solanaj.ws.SubscriptionSocketClientFactory
import org.p2p.solanaj.ws.impl.SocketClientException
import org.p2p.wallet.common.feature_toggles.toggles.remote.SocketSubscriptionsFeatureToggle
private const val DELAY_MS = 5000L
private const val TAG = "SocketUpdatesManager"
class SocketUpdatesManager(
appScope: AppScope,
private val environmentManager: NetworkEnvironmentManager,
private val connectionStateProvider: ConnectionManager,
private val updateHandlers: List<SubscriptionUpdateHandler>,
private val socketEnabledFeatureToggle: SocketSubscriptionsFeatureToggle,
private val initDispatcher: CoroutineDispatcher = Executors.newSingleThreadExecutor().asCoroutineDispatcher()
) : CoroutineScope by (appScope + initDispatcher), SocketStateListener, SubscriptionUpdatesManager {
private val networkEnvironment: NetworkEnvironment
get() = environmentManager.loadCurrentEnvironment()
private var client: SubscriptionSocketClient? = null
private var connectionJob: Job? = null
private val observers = mutableListOf<SubscriptionUpdatesStateObserver>()
private var state: SocketState by observable(SocketState.DISCONNECTED) { _, oldValue, newValue ->
if (oldValue != newValue) observers.lastOrNull()?.onUpdatesStateChanged(newValue)
}
private val socketFactory = SubscriptionSocketClientFactory()
private var isStarted = false
override fun start() {
if (isStarted || !socketEnabledFeatureToggle.isFeatureEnabled) {
Timber.tag(TAG).i(
"Unable to start socket manager: isStarted=$isStarted flag=${socketEnabledFeatureToggle.value}"
)
return
}
Timber.tag(TAG).i("Starting update manager")
launch { startActual() }
}
override fun stop() {
launch(NonCancellable) { stopActual() }
}
override suspend fun restart() {
withContext(initDispatcher) { stopActual() }
start()
}
override fun isStarted(): Boolean = isStarted
override fun addUpdatesStateObserver(observer: SubscriptionUpdatesStateObserver) {
launch {
observer.onUpdatesStateChanged(state)
observers.add(observer)
}
}
override fun removeUpdatesStateObserver(observer: SubscriptionUpdatesStateObserver) {
launch { observers.remove(observer) }
}
override fun addSubscription(request: RpcRequest, updateType: SocketSubscriptionUpdateType) {
Timber.tag(TAG).d("add subscription for request, client = $client")
val listener = createEventListener(updateType)
client?.addSubscription(request, listener)
}
override fun addSubscription(request: RpcMapRequest, updateType: SocketSubscriptionUpdateType) {
Timber.tag(TAG).d("add subscription for request, client = $client")
val listener = createEventListener(updateType)
client?.addSubscription(request, listener)
}
private fun createEventListener(updateType: SocketSubscriptionUpdateType): SubscriptionEventListener =
SubscriptionEventListener { data: JsonObject ->
launch(Dispatchers.Default) {
Timber.tag(TAG).d("New socket event triggered($updateType): $data")
updateHandlers.forEach {
it.onUpdate(updateType, data)
}
}
}
override fun removeSubscription(request: RpcRequest) {
client?.removeSubscription(request)
}
override fun removeSubscription(request: RpcMapRequest) {
client?.removeSubscription(request)
}
override fun onWebSocketPong() {
Timber.tag(TAG).d("Server pong")
}
override fun onConnected() {
Timber.tag(TAG).i("Socket client is successfully connected")
connectionJob?.cancel()
connectionJob = launch {
state = SocketState.CONNECTED
while (true) {
client?.ping()
delay(DELAY_MS)
}
}
}
override fun onFailed(exception: Exception) {
Timber.tag(TAG).d("Event updates connection is failed: $exception")
if (state == SocketState.CONNECTING) {
launch { state = SocketState.CONNECTING_FAILED }
} else {
restartInternal()
}
}
override fun onClientClosed(code: Int, message: String) {
Timber.tag(TAG).i("Event updates connection is closed: $message")
isStarted = false
state = SocketState.DISCONNECTED
}
private suspend fun startActual() {
isStarted = true
when (state) {
SocketState.DISCONNECTED,
SocketState.INITIALIZATION_FAILED,
SocketState.CONNECTING_FAILED ->
connectSocketClient()
SocketState.INITIALIZING ->
Timber.tag(TAG).i("Trying to start update manager while it is initializing")
SocketState.CONNECTING ->
Timber.tag(TAG).i("Trying to start update manager while it is connecting")
SocketState.CONNECTED ->
Timber.tag(TAG).i("Trying to start update manager while it is connected")
}
}
private fun stopActual() {
if (!isStarted) {
Timber.tag(TAG).i("Trying to stop update manager while it is already stopped")
} else {
isStarted = false
Timber.tag(TAG).i("Stopping update manager")
disconnectSocketClient()
}
}
private suspend fun connectSocketClient() {
if (state == SocketState.CONNECTED) {
Timber.tag(TAG).i("Trying to connect update manager while it is already connected")
return
}
state = SocketState.INITIALIZING
Timber.tag(TAG).i("Connecting: Waiting for network")
try {
withTimeout(DELAY_MS) { connectionStateProvider.connectionStatus.value }
Timber.tag(TAG).i("Connecting: Network OK, initializing update handlers")
updateHandlers.forEach { it.initialize() }
} catch (e: Throwable) {
Timber.tag(TAG).i(SocketClientException(e), "Awaiting network failed")
state = SocketState.INITIALIZATION_FAILED
return
}
state = SocketState.CONNECTING
Timber.tag(TAG).i("Connecting: Update handlers are initialized, connecting to event stream")
try {
val validatedEndpoint = createValidatedEndpoint()
when (val result = socketFactory.create(validatedEndpoint, this)) {
is SocketClientCreateResult.Created -> {
client = result.instance
if (client?.isSocketOpen == false) {
client?.connect()
Timber.tag(TAG).i("Connection created for : $client")
}
state = SocketState.CONNECTED
}
is SocketClientCreateResult.Reused -> {
client = result.instance
client?.reconnect()
Timber.tag(TAG).i("Connection reused for : $client")
state = SocketState.CONNECTED
}
is SocketClientCreateResult.Failed -> throw result
}
} catch (e: Throwable) {
Timber.tag(TAG).e(SocketClientException(e), "Connecting failed")
state = SocketState.CONNECTING_FAILED
}
}
private fun createValidatedEndpoint(): String {
val endpoint = networkEnvironment.endpoint
return if (networkEnvironment == NetworkEnvironment.RPC_POOL) {
endpoint.toUri()
.buildUpon()
.appendEncodedPath(rpcPoolApiKey)
.toString()
} else {
endpoint
}
}
private fun disconnectSocketClient() {
client?.close()
state = SocketState.DISCONNECTED
Timber.tag(TAG).i("Disconnected from socket client")
}
private fun restartInternal() {
if (!isStarted) {
Timber.tag(TAG).i("Stopped")
} else {
Timber.tag(TAG).i("Reconnecting")
launch {
delay(DELAY_MS)
client?.reconnect()
}
}
}
}