-
Notifications
You must be signed in to change notification settings - Fork 125
/
Copy pathlink.dart
421 lines (375 loc) · 14.8 KB
/
link.dart
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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
import "dart:async";
import "dart:convert";
import "package:gql_exec/gql_exec.dart";
import "package:gql_link/gql_link.dart";
import "package:gql_websocket_link/gql_websocket_link.dart";
import "package:meta/meta.dart";
import "package:rxdart/rxdart.dart";
import "package:uuid/uuid.dart";
import "package:web_socket_channel/status.dart" as websocket_status;
import "package:web_socket_channel/web_socket_channel.dart";
final uuid = Uuid();
typedef ChannelGenerator = FutureOr<WebSocketChannel> Function();
typedef GraphQLSocketMessageDecoder = FutureOr<Map<String, dynamic>>? Function(
dynamic message);
typedef GraphQLSocketMessageEncoder = FutureOr<String> Function(
Map<String, dynamic> message);
@immutable
class RequestId extends ContextEntry {
final String id;
const RequestId(this.id);
@override
List<Object> get fieldsForEquality => [id];
}
/// Possible connection states of the [WebSocketLink].
enum ConnectionState {
/// The [WebSocketLink] is closed.
closed,
/// The [WebSocketLink] is currently connecting.
connecting,
/// The [WebSocketLink] has an opened connection.
open,
}
/// A Universal WebSocket [Link] implementation to support the
/// WebSocket-GraphQL transport.
/// It supports subscriptions, query and mutation operations as well.
///
/// NOTE: the actual socket connection will only get established after
/// a [Request] is handled by this [WebSocketLink].
class WebSocketLink extends Link {
WebSocketChannel? _channel;
// Current active subscriptions
final _requests = <Request>[];
// subscriptions that need to be re-initialized after channel reconnect
final _reConnectRequests = <Request>[];
/// A function that returns a `WebSocketChannel`.
/// This is useful if you have dynamic Auth token and want to regenerate it after the socket has disconnected.
late ChannelGenerator _channelGenerator;
/// Serializer used to serialize request
final RequestSerializer serializer;
/// Response parser
ResponseParser parser;
/// A function that encodes the request message to json string before sending it over the network.
final GraphQLSocketMessageEncoder graphQLSocketMessageEncoder;
static String _defaultGraphQLSocketMessageEncoder(
Map<String, dynamic> message) =>
json.encode(message);
/// A function that decodes the incoming http response to `Map<String, dynamic>`,
/// the decoded map will be then passes to the `RequestSerializer`.
/// It is recommended for performance to decode the response using `compute` function.
/// ```
/// graphQLSocketMessageDecoder : (dynamic message) async => await compute(jsonDecode, message as String) as Map<String, dynamic>,
/// ```
final GraphQLSocketMessageDecoder graphQLSocketMessageDecoder;
static Map<String, dynamic> _defaultGraphQLSocketMessageDecoder(
dynamic message) =>
json.decode(message as String) as Map<String, dynamic>;
/// Automatically recreate the channel when connection is lost,
/// and re send all active subscriptions. `true` by default.
bool autoReconnect;
Timer? _reconnectTimer;
/// The interval between reconnects, the default value is 10 seconds.
final Duration reconnectInterval;
/// Payload to be sent with the connection_init request
/// Must be able to `json.encode(initialPayload)`.
final dynamic initialPayload;
/// The duration after which the connection is considered unstable,
/// because no keep alive message was received from the server in the given time-frame.
/// The connection to the server will be closed.
/// If the value is null this is ignored, By default this is null.
final Duration? inactivityTimeout;
/// Tracks state of the connection state.
final BehaviorSubject<ConnectionState> _connectionStateController =
BehaviorSubject<ConnectionState>.seeded(ConnectionState.closed);
final StreamController<GraphQLSocketMessage> _messagesController =
StreamController<GraphQLSocketMessage>.broadcast();
StreamSubscription<ConnectionKeepAlive>? _keepAliveSubscription;
/// Completes when the [WebSocketLink] is disposed.
/// Non-null when the Link is closing or already closed with [_close].
Completer<void>? _disposedCompleter;
/// true when the [WebSocketLink] can't send any more messages.
/// This happends after calling [dispose] or when [autoReconnect] is false
/// and the web socket disconnected.
bool get isDisabled => _disposedCompleter != null;
/// A stream that notifies about changes of the current connection state.
Stream<ConnectionState> get connectionStateStream =>
_connectionStateController.stream;
/// Initialize the [WebSocketLink] with a [uri].
/// You can customize the headers & protocols by passing [channelGenerator],
/// if [channelGenerator] is passed, [uri] must be null.
/// [channelGenerator] is a function that returns [WebSocketChannel] or [IOWebSocketChannel] or [HtmlWebSocketChannel].
/// You can also pass custom [RequestSerializer serializer] & [ResponseParser parser].
/// Also [initialPayload] to be passed with the first request to the GraphQL server.
WebSocketLink(
String? uri, {
ChannelGenerator? channelGenerator,
this.autoReconnect = true,
this.reconnectInterval = const Duration(seconds: 10),
this.serializer = const RequestSerializer(),
this.parser = const ResponseParser(),
this.graphQLSocketMessageEncoder = _defaultGraphQLSocketMessageEncoder,
this.graphQLSocketMessageDecoder = _defaultGraphQLSocketMessageDecoder,
this.initialPayload,
this.inactivityTimeout,
}) : assert((uri == null && channelGenerator != null) ||
(uri != null && channelGenerator == null)) {
_channelGenerator =
channelGenerator ?? () => WebSocketChannel.connect(Uri.parse(uri!));
}
@override
Stream<Response> request(Request request, [forward]) async* {
final String id = uuid.v4();
final requestWithContext = request.withContextEntry<RequestId>(
RequestId(id),
);
_requests.add(requestWithContext);
if (_connectionStateController.value == ConnectionState.closed) {
await _connect();
}
final StreamController<Response> response = StreamController();
StreamSubscription<GraphQLSocketMessage>? messagesSubscription;
response.onListen = () {
final Stream<ConnectionState> waitForConnectedState =
_connectionStateController
.where((state) => state == ConnectionState.open)
.take(1);
waitForConnectedState.listen((_) {
// listen for response messages
messagesSubscription = _messagesController.stream
.where((message) =>
(message is SubscriptionData && message.id == id) ||
(message is SubscriptionError && message.id == id) ||
(message is SubscriptionComplete && message.id == id))
.takeWhile((_) => !response.isClosed)
.listen(
(message) {
if (message is SubscriptionData || message is SubscriptionError) {
try {
final parsed = _parseMessage(message);
if (parsed.data == null && parsed.errors == null) {
throw WebSocketLinkServerException(
originalException: null,
parsedResponse: parsed,
requestMessage: null,
);
}
response.add(parsed);
} catch (e) {
response.addError(e);
}
} else if (message is SubscriptionComplete) {
response.close();
}
},
onError: response.addError,
onDone: response.close,
);
// Send the request.
_write(
StartOperation(
id,
serializer.serializeRequest(requestWithContext),
),
).catchError(response.addError);
});
};
response.onCancel = () {
if (isDisabled) {
return;
}
messagesSubscription?.cancel();
_write(StopOperation(id)).catchError(response.addError);
_requests.removeWhere((e) => e.context.entry<RequestId>()!.id == id);
};
yield* response.stream;
}
/// Connects to the server.
Future<void> _connect() async {
try {
_connectionStateController.add(ConnectionState.connecting);
_channel = await _channelGenerator();
_reconnectTimer?.cancel();
_channel!.stream.listen((dynamic message) async {
// Mark the connection as [open] and can be used.
if (_connectionStateController.value != ConnectionState.open) {
_connectionStateController.add(ConnectionState.open);
}
final parsedMessage = await _parseSocketMessage(message);
_messagesController.add(parsedMessage);
if (parsedMessage is ConnectionAck) {
_reConnectRequests.forEach((request) {
// Send the request.
_write(
StartOperation(
request.context.entry<RequestId>()!.id,
serializer.serializeRequest(request),
),
).catchError(_messagesController.addError);
});
_reConnectRequests.clear();
}
}, onDone: () {
if (isDisabled) {
// already disposed
return;
}
_connectionStateController.add(ConnectionState.closed);
if (autoReconnect) {
_reConnectRequests.clear();
_reConnectRequests.addAll(_requests);
if (_reconnectTimer?.isActive != true) {
_reconnectTimer = Timer.periodic(reconnectInterval, (timer) {
if (_connectionStateController.value == ConnectionState.closed) {
_connect();
}
});
}
} else {
_close();
}
}, onError: (Object error) {
_messagesController.addError(error);
});
if (initialPayload is Function) {
final dynamic payload = await initialPayload();
await _write(InitOperation(payload))
.catchError(_messagesController.addError);
} else {
await _write(InitOperation(initialPayload))
.catchError(_messagesController.addError);
}
// inactivityTimeout
if (inactivityTimeout != null) {
_keepAliveSubscription = _messagesController.stream
.where(
(GraphQLSocketMessage message) => message is ConnectionKeepAlive,
)
.map<ConnectionKeepAlive>(
(message) => message as ConnectionKeepAlive)
.timeout(inactivityTimeout!, onTimeout: (_) {
_channel!.sink.close(websocket_status.normalClosure);
}).listen(null);
}
} catch (e, stackTrace) {
if (e is LinkException) {
rethrow;
} else {
throw WebSocketLinkServerException(
originalException: e,
originalStackTrace: stackTrace,
parsedResponse: null,
requestMessage: null,
);
}
}
}
Response _parseMessage(GraphQLSocketMessage message) {
try {
return parser.parseResponse(message.toJson());
} catch (e, stackTrace) {
throw WebSocketLinkParserException(
originalException: e,
originalStackTrace: stackTrace,
message: message,
);
}
}
Future<void> _write(final GraphQLSocketMessage message) async {
// We can send during [connecting] & [connected].
if (_connectionStateController.value == ConnectionState.closed) {
throw WebSocketLinkServerException(
originalException: null,
parsedResponse: null,
requestMessage: message,
);
}
final encodedMessage = await graphQLSocketMessageEncoder(message.toJson());
_channel!.sink.add(encodedMessage);
}
Future<GraphQLSocketMessage> _parseSocketMessage(dynamic message) async {
try {
final Map<String, dynamic> map =
await graphQLSocketMessageDecoder(message)!;
final String type = (map["type"] ?? "unknown") as String;
final dynamic payload = map["payload"] ?? <String, dynamic>{};
final String id = (map["id"] ?? "none") as String;
switch (type) {
case MessageTypes.connectionAck:
return ConnectionAck();
case MessageTypes.connectionError:
return ConnectionError(payload);
case MessageTypes.connectionKeepAlive:
return ConnectionKeepAlive();
case MessageTypes.data:
final dynamic data = payload["data"];
final dynamic errors = payload["errors"];
final dynamic extensions = payload["extensions"];
return SubscriptionData(id, data, errors, extensions);
case MessageTypes.error:
List<Map<String, Object?>>? _tryCastErrors(List<Object?> list) {
final allAreErrors = list.every(
(map) =>
map is Map<String, Object?> &&
map["message"] is String &&
(map["path"] is List?) &&
(map["locations"] is List?) &&
(map["extensions"] is Map<String, Object?>?),
);
return allAreErrors ? list.cast() : null;
}
Object? extensions;
List<Map<String, Object?>>? errors;
if (payload is List) {
errors = _tryCastErrors(payload);
} else if (payload is Map) {
if (payload["errors"] is List) {
extensions = payload["extensions"];
errors = _tryCastErrors(payload["errors"] as List);
} else {
errors = _tryCastErrors([payload]);
// only pass root level extensions if they weren't passed as
// extensions in the error
if (errors == null) {
extensions = payload["extensions"];
}
}
}
return SubscriptionError(id, payload, errors, extensions);
case MessageTypes.complete:
return SubscriptionComplete(id);
default:
return UnknownData(map);
}
} catch (e, s) {
throw WebSocketLinkServerException(
originalException: e,
originalStackTrace: s,
parsedResponse: null,
requestMessage: null,
);
}
}
/// Close the WebSocket channel.
Future<void> _close() async {
if (_disposedCompleter != null) {
return _disposedCompleter!.future;
}
_disposedCompleter = Completer();
_reconnectTimer?.cancel();
await _keepAliveSubscription?.cancel();
await _channel?.sink.close(websocket_status.normalClosure);
_connectionStateController.add(ConnectionState.closed);
await _connectionStateController.close();
await _messagesController.close();
_disposedCompleter!.complete();
}
/// Disposes the underlying channel explicitly.
/// Only use this, if you want to disconnect from the current server
/// in favour of another one. If that's the case,
/// create a new [WebSocketLink] instance.
@override
Future<void> dispose() async {
await _close();
_channel = null;
}
}