@@ -12,12 +12,12 @@ import com.apollographql.apollo3.cache.normalized.normalizedCache
12
12
import com.apollographql.apollo3.cache.normalized.sql.SqlNormalizedCacheFactory
13
13
import com.apollographql.apollo3.exception.ApolloException
14
14
import com.apollographql.apollo3.network.okHttpClient
15
- import com.ismartcoding.lib.logcat.LogCat
16
15
import com.ismartcoding.lib.channel.sendEvent
16
+ import com.ismartcoding.lib.logcat.LogCat
17
17
import com.ismartcoding.plain.MainApp
18
- import com.ismartcoding.plain.features.BoxConnectivityStateChangedEvent
19
18
import com.ismartcoding.plain.data.UIDataCache
20
19
import com.ismartcoding.plain.db.DBox
20
+ import com.ismartcoding.plain.features.BoxConnectivityStateChangedEvent
21
21
import com.ismartcoding.plain.features.bluetooth.BluetoothUtil
22
22
import com.ismartcoding.plain.features.bluetooth.SmartBTDevice
23
23
import kotlinx.coroutines.sync.Mutex
@@ -27,7 +27,11 @@ object BoxApi {
27
27
private var clients = mutableMapOf<String , ApolloClient >()
28
28
private val mutex = Mutex ()
29
29
30
- suspend fun <D : Mutation .Data > mixMutateAsync (mutation : Mutation <D >, box : DBox ? = UIDataCache .current().box, timeout : Int = HttpApiTimeout .DEFAULT_SECONDS ): GraphqlApiResult <D > {
30
+ suspend fun <D : Mutation .Data > mixMutateAsync (
31
+ mutation : Mutation <D >,
32
+ box : DBox ? = UIDataCache .current().box,
33
+ timeout : Int = HttpApiTimeout .DEFAULT_SECONDS ,
34
+ ): GraphqlApiResult <D > {
31
35
if (box == null ) {
32
36
return GraphqlApiResult (null , BoxUnreachableException ())
33
37
}
@@ -46,7 +50,11 @@ object BoxApi {
46
50
return r
47
51
}
48
52
49
- suspend fun <D : Query .Data > mixQueryAsync (query : Query <D >, box : DBox ? = UIDataCache .current().box, timeout : Int = HttpApiTimeout .DEFAULT_SECONDS ): GraphqlApiResult <D > {
53
+ suspend fun <D : Query .Data > mixQueryAsync (
54
+ query : Query <D >,
55
+ box : DBox ? = UIDataCache .current().box,
56
+ timeout : Int = HttpApiTimeout .DEFAULT_SECONDS ,
57
+ ): GraphqlApiResult <D > {
50
58
if (box == null ) {
51
59
return GraphqlApiResult (null , BoxUnreachableException ())
52
60
}
@@ -74,19 +82,24 @@ object BoxApi {
74
82
return r
75
83
}
76
84
77
- private suspend fun <D : Query .Data > queryAsync (query : Query <D >, box : DBox , timeout : Int ): GraphqlApiResult <D > {
85
+ private suspend fun <D : Query .Data > queryAsync (
86
+ query : Query <D >,
87
+ box : DBox ,
88
+ timeout : Int ,
89
+ ): GraphqlApiResult <D > {
78
90
val boxIP = box.getBoxIP()
79
91
if (boxIP.isEmpty()) {
80
92
UIDataCache .current().boxNetworkReachable = false
81
93
return GraphqlApiResult (null , BoxUnreachableException ())
82
94
}
83
95
84
- val response = try {
85
- getOrCreateClient(box.id, boxIP, box.token, timeout).query(query).fetchPolicy(FetchPolicy .NetworkFirst ).execute()
86
- } catch (e: ApolloException ) {
87
- e.printStackTrace()
88
- return GraphqlApiResult (null , e)
89
- }
96
+ val response =
97
+ try {
98
+ getOrCreateClient(box.id, boxIP, box.token, timeout).query(query).fetchPolicy(FetchPolicy .NetworkFirst ).execute()
99
+ } catch (e: ApolloException ) {
100
+ e.printStackTrace()
101
+ return GraphqlApiResult (null , e)
102
+ }
90
103
91
104
if (response.isFromCache) {
92
105
if (UIDataCache .current().boxNetworkReachable != false ) {
@@ -112,7 +125,10 @@ object BoxApi {
112
125
}
113
126
}
114
127
115
- private suspend fun <D : Operation .Data > callBluetoothApiAsync (operation : Operation <D >, box : DBox ): ApolloResponse <D >? {
128
+ private suspend fun <D : Operation .Data > callBluetoothApiAsync (
129
+ operation : Operation <D >,
130
+ box : DBox ,
131
+ ): ApolloResponse <D >? {
116
132
if (! BluetoothUtil .ensurePermissionAsync()) {
117
133
return null
118
134
}
@@ -140,35 +156,46 @@ object BoxApi {
140
156
return " https://$boxIP :8443/public"
141
157
}
142
158
143
- private suspend fun <D : Mutation .Data > mutateAsync (mutation : Mutation <D >, box : DBox , timeout : Int ): GraphqlApiResult <D > {
159
+ private suspend fun <D : Mutation .Data > mutateAsync (
160
+ mutation : Mutation <D >,
161
+ box : DBox ,
162
+ timeout : Int ,
163
+ ): GraphqlApiResult <D > {
144
164
val boxIP = box.getBoxIP()
145
165
if (boxIP.isEmpty()) {
146
166
return GraphqlApiResult (null , BoxUnreachableException ())
147
167
}
148
- val response = try {
149
- getOrCreateClient(box.id, boxIP, box.token, timeout).mutation(mutation).execute()
150
- } catch (e: ApolloException ) {
151
- e.printStackTrace()
152
- return GraphqlApiResult (null , e)
153
- }
168
+ val response =
169
+ try {
170
+ getOrCreateClient(box.id, boxIP, box.token, timeout).mutation(mutation).execute()
171
+ } catch (e: ApolloException ) {
172
+ e.printStackTrace()
173
+ return GraphqlApiResult (null , e)
174
+ }
154
175
155
176
return GraphqlApiResult (response, null )
156
177
}
157
178
158
- private fun getOrCreateClient (boxId : String , ip : String , token : String , timeout : Int ): ApolloClient {
179
+ private fun getOrCreateClient (
180
+ boxId : String ,
181
+ ip : String ,
182
+ token : String ,
183
+ timeout : Int ,
184
+ ): ApolloClient {
159
185
val key = " $boxId :$ip :$timeout "
160
186
var apolloClient = clients[key]
161
187
if (apolloClient != null ) {
162
188
return apolloClient
163
189
}
164
190
165
- apolloClient = ApolloClient .Builder ()
166
- .serverUrl(" https://$ip :8443/graphql" )
167
- .okHttpClient(HttpClientManager .createCryptoHttpClient(token, timeout))
168
- .normalizedCache(SqlNormalizedCacheFactory (MainApp .instance, " apollo_${boxId} .db" ))
169
- .addCustomScalarAdapter(com.ismartcoding.plain.type.Time .type, com.apollographql.apollo3.adapter.DateAdapter )
170
- .build()
191
+ apolloClient =
192
+ ApolloClient .Builder ()
193
+ .serverUrl(" https://$ip :8443/graphql" )
194
+ .okHttpClient(HttpClientManager .createCryptoHttpClient(token, timeout))
195
+ .normalizedCache(SqlNormalizedCacheFactory (MainApp .instance, " apollo_$boxId .db" ))
196
+ .addCustomScalarAdapter(com.ismartcoding.plain.type.Time .type, com.apollographql.apollo3.adapter.DateAdapter )
197
+ .build()
171
198
clients[key] = apolloClient
172
199
return apolloClient
173
200
}
174
- }
201
+ }
0 commit comments