forked from StockSharp/StockSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SubscriptionSecurityAllMessageAdapter.cs
480 lines (399 loc) · 13.7 KB
/
SubscriptionSecurityAllMessageAdapter.cs
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
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
namespace StockSharp.Algo
{
using System;
using System.Collections.Generic;
using System.Linq;
using Ecng.Collections;
using Ecng.Common;
using StockSharp.Logging;
using StockSharp.Messages;
using StockSharp.Localization;
/// <summary>
/// Security ALL subscription counter adapter.
/// </summary>
public class SubscriptionSecurityAllMessageAdapter : MessageAdapterWrapper
{
private abstract class BaseSubscription
{
protected BaseSubscription(MarketDataMessage origin)
{
Origin = origin ?? throw new ArgumentNullException(nameof(origin));
}
public MarketDataMessage Origin { get; }
}
private class ChildSubscription : BaseSubscription
{
public ChildSubscription(ParentSubscription parent, MarketDataMessage origin)
: base(origin)
{
Parent = parent ?? throw new ArgumentNullException(nameof(parent));
}
public ParentSubscription Parent { get; }
public SubscriptionStates State { get; set; } = SubscriptionStates.Stopped;
public List<ISubscriptionIdMessage> Suspended { get; } = new List<ISubscriptionIdMessage>();
public CachedSynchronizedDictionary<long, MarketDataMessage> Subscribers { get; } = new CachedSynchronizedDictionary<long, MarketDataMessage>();
}
private class ParentSubscription : BaseSubscription
{
public ParentSubscription(MarketDataMessage origin)
: base(origin)
{
}
public CachedSynchronizedPairSet<long, MarketDataMessage> Alls = new CachedSynchronizedPairSet<long, MarketDataMessage>();
public SynchronizedDictionary<SecurityId, CachedSynchronizedSet<long>> NonAlls = new SynchronizedDictionary<SecurityId, CachedSynchronizedSet<long>>();
public Dictionary<SecurityId, ChildSubscription> Child { get; } = new Dictionary<SecurityId, ChildSubscription>();
}
private readonly SyncObject _sync = new SyncObject();
private readonly Dictionary<long, RefPair<long, SubscriptionStates>> _pendingLoopbacks = new Dictionary<long, RefPair<long, SubscriptionStates>>();
private readonly Dictionary<long, ParentSubscription> _parents = new Dictionary<long, ParentSubscription>();
private readonly Dictionary<long, ParentSubscription> _unsubscribes = new Dictionary<long, ParentSubscription>();
private readonly Dictionary<long, Tuple<ParentSubscription, MarketDataMessage>> _requests = new Dictionary<long, Tuple<ParentSubscription, MarketDataMessage>>();
private readonly List<ChildSubscription> _toFlush = new List<ChildSubscription>();
/// <summary>
/// Initializes a new instance of the <see cref="SubscriptionSecurityAllMessageAdapter"/>.
/// </summary>
/// <param name="innerAdapter">Inner message adapter.</param>
public SubscriptionSecurityAllMessageAdapter(IMessageAdapter innerAdapter)
: base(innerAdapter)
{
}
private void ClearState()
{
lock (_sync)
{
_pendingLoopbacks.Clear();
_parents.Clear();
_unsubscribes.Clear();
_requests.Clear();
_toFlush.Clear();
}
}
/// <inheritdoc />
protected override bool OnSendInMessage(Message message)
{
switch (message.Type)
{
case MessageTypes.Reset:
ClearState();
break;
case MessageTypes.MarketData:
{
var mdMsg = (MarketDataMessage)message;
if (mdMsg.IsSubscribe)
{
var transId = mdMsg.TransactionId;
lock (_sync)
{
if (_pendingLoopbacks.TryGetAndRemove(transId, out var tuple))
{
if (tuple.Second != SubscriptionStates.Stopped)
{
if (tuple.Second == SubscriptionStates.Finished)
{
RaiseNewOutMessage(new SubscriptionFinishedMessage
{
OriginalTransactionId = transId,
});
}
else
{
RaiseNewOutMessage(new SubscriptionResponseMessage
{
OriginalTransactionId = transId,
Error = new InvalidOperationException(LocalizedStrings.SubscriptionInvalidState.Put(transId, tuple.Second)),
});
}
return true;
}
var parent = _parents[tuple.First];
var child = parent.Child[mdMsg.SecurityId];
child.State = SubscriptionStates.Online;
if (child.Suspended.Count > 0)
_toFlush.Add(child);
this.AddDebugLog("New ALL map (active): {0}/{1} TrId={2}", child.Origin.SecurityId, child.Origin.DataType2, mdMsg.TransactionId);
_requests.Add(transId, Tuple.Create(parent, mdMsg.TypedClone()));
// for child subscriptions make online (or finished) immediatelly
RaiseNewOutMessage(mdMsg.CreateResponse());
//RaiseNewOutMessage(mdMsg.CreateResult());
return true;
}
else
{
if (!IsSecurityRequired(mdMsg.DataType2) || mdMsg.SecurityId == default)
{
mdMsg = mdMsg.TypedClone();
var parent = _parents.FirstOrDefault(p => p.Value.Origin.DataType2 == mdMsg.DataType2).Value;
void AddSubscription()
{
if (mdMsg.SecurityId == default)
{
// first ALL is initiator
parent.Alls.Add(transId, mdMsg);
}
else
{
parent.NonAlls.SafeAdd(mdMsg.SecurityId).Add(transId);
}
_requests.Add(transId, Tuple.Create(parent, mdMsg));
}
if (parent == null)
{
parent = new ParentSubscription(mdMsg);
_parents.Add(transId, parent);
AddSubscription();
// do not specify security cause adapter doesn't require it
mdMsg = mdMsg.TypedClone();
Extensions.AllSecurity.CopyEx(mdMsg, false);
message = mdMsg;
this.AddInfoLog("Sec ALL {0} subscribing.", transId);
}
else
{
AddSubscription();
// for child subscriptions make online (or finished) immediatelly
RaiseNewOutMessage(mdMsg.CreateResponse());
//RaiseNewOutMessage(mdMsg.CreateResult());
return true;
}
}
}
}
}
else
{
var originId = mdMsg.OriginalTransactionId;
lock (_sync)
{
var found = false;
if (!_requests.TryGetAndRemove(originId, out var tuple))
break;
//this.AddDebugLog("Sec ALL child {0} unsubscribe.", originId);
var parent = tuple.Item1;
var request = tuple.Item2;
var secId = request.SecurityId;
var transId = request.TransactionId;
if (parent.Alls.RemoveByValue(request))
found = true;
else if (parent.NonAlls.TryGetValue(secId, out var set) && set.Remove(transId))
{
if (set.Count == 0)
parent.NonAlls.Remove(secId);
found = true;
}
else
{
if (parent.Child.TryGetValue(secId, out var child))
{
if (child.Subscribers.Remove(transId))
{
found = true;
if (child.Subscribers.Count == 0)
parent.Child.Remove(secId);
}
}
}
if (found)
{
if (parent.Alls.Count == 0 && parent.NonAlls.Count == 0 && parent.Child.Count == 0)
{
// last unsubscribe is not initial subscription
if (parent.Origin.TransactionId != originId)
{
mdMsg = mdMsg.TypedClone();
mdMsg.OriginalTransactionId = parent.Origin.TransactionId;
message = mdMsg;
}
_unsubscribes.Add(mdMsg.TransactionId, parent);
break;
}
}
RaiseNewOutMessage(mdMsg.CreateResponse(found ? null : new InvalidOperationException(LocalizedStrings.SubscriptionNonExist.Put(originId))));
return true;
}
}
break;
}
}
return base.OnSendInMessage(message);
}
/// <inheritdoc />
protected override void OnInnerAdapterNewOutMessage(Message message)
{
List<Message> extra = null;
switch (message.Type)
{
case MessageTypes.Disconnect:
case ExtendedMessageTypes.ReconnectingFinished:
{
ClearState();
break;
}
case MessageTypes.SubscriptionResponse:
{
var responseMsg = (SubscriptionResponseMessage)message;
var originId = responseMsg.OriginalTransactionId;
if (responseMsg.Error != null)
{
lock (_sync)
{
if (_parents.TryGetAndRemove(originId, out var parent))
{
this.AddErrorLog("Sec ALL {0} error.", parent.Origin.TransactionId);
extra = new List<Message>();
foreach (var child in parent.Child.Values)
{
var childId = child.Origin.TransactionId;
if (_pendingLoopbacks.TryGetValue(childId, out var tuple) && tuple.Second == SubscriptionStates.Stopped)
{
// loopback subscription not yet come, so will reply later
tuple.Second = SubscriptionStates.Error;
}
else
extra.Add(new SubscriptionResponseMessage { OriginalTransactionId = childId, Error = responseMsg.Error });
}
}
else if (_unsubscribes.TryGetAndRemove(originId, out parent))
{
this.AddErrorLog("Sec ALL {0} unsubscribe error.", parent.Origin.TransactionId);
_parents.Remove(parent.Origin.TransactionId);
}
}
}
else
{
if (_unsubscribes.TryGetAndRemove(originId, out var parent))
{
this.AddInfoLog("Sec ALL {0} unsubscribed.", parent.Origin.TransactionId);
_parents.Remove(parent.Origin.TransactionId);
}
}
break;
}
case MessageTypes.SubscriptionFinished:
{
var finishMsg = (SubscriptionFinishedMessage)message;
lock (_sync)
{
if (_parents.TryGetAndRemove(finishMsg.OriginalTransactionId, out var parent))
{
extra = new List<Message>();
foreach (var child in parent.Child.Values)
{
var childId = child.Origin.TransactionId;
if (_pendingLoopbacks.TryGetValue(childId, out var tuple) && tuple.Second == SubscriptionStates.Stopped)
{
// loopback subscription not yet come, so will reply later
tuple.Second = SubscriptionStates.Finished;
}
else
extra.Add(new SubscriptionFinishedMessage { OriginalTransactionId = childId });
}
}
}
break;
}
default:
{
var allMsg = CheckSubscription(ref message);
if (allMsg != null)
base.OnInnerAdapterNewOutMessage(allMsg);
break;
}
}
if (message != null)
base.OnInnerAdapterNewOutMessage(message);
if (extra != null)
{
foreach (var m in extra)
base.OnInnerAdapterNewOutMessage(m);
}
}
private void ApplySubscriptionIds(ISubscriptionIdMessage subscrMsg, ParentSubscription parent, long[] newIds)
{
var ids = subscrMsg.GetSubscriptionIds();
var initialId = parent.Origin.TransactionId;
newIds = newIds.Concat(parent.Alls.CachedKeys);
if (subscrMsg is ISecurityIdMessage secIdMsg && parent.NonAlls.TryGetValue(secIdMsg.SecurityId, out var set))
{
newIds = newIds.Concat(set.Cache);
}
if (ids.Length == 1 && ids[0] == initialId)
subscrMsg.SetSubscriptionIds(newIds);
else
subscrMsg.SetSubscriptionIds(ids.Where(id => id != initialId).Concat(newIds).ToArray());
}
private void ApplySubscriptionIds(ISubscriptionIdMessage subscrMsg, ChildSubscription child)
{
ApplySubscriptionIds(subscrMsg, child.Parent, child.Subscribers.CachedKeys);
}
private SubscriptionSecurityAllMessage CheckSubscription(ref Message message)
{
lock (_sync)
{
if (_toFlush.Count > 0)
{
var childs = _toFlush.CopyAndClear();
foreach (var child in childs)
{
this.AddDebugLog("ALL flush: {0}/{1}, cnt={2}", child.Origin.SecurityId, child.Origin.DataType2, child.Suspended.Count);
foreach (var msg in child.Suspended.CopyAndClear())
{
ApplySubscriptionIds(msg, child);
RaiseNewOutMessage((Message)msg);
}
}
}
if (_parents.Count == 0)
return null;
if (message is ISubscriptionIdMessage subscrMsg && message is ISecurityIdMessage secIdMsg)
{
foreach (var parentId in subscrMsg.GetSubscriptionIds())
{
if (_parents.TryGetValue(parentId, out var parent))
{
// parent subscription has security id (not null)
if (parent.Origin.SecurityId == secIdMsg.SecurityId)
{
ApplySubscriptionIds(subscrMsg, parent, new[] { parent.Origin.TransactionId });
return null;
}
SubscriptionSecurityAllMessage allMsg = null;
if (!parent.Child.TryGetValue(secIdMsg.SecurityId, out var child))
{
allMsg = new SubscriptionSecurityAllMessage();
parent.Origin.CopyTo(allMsg);
allMsg.ParentTransactionId = parentId;
allMsg.TransactionId = TransactionIdGenerator.GetNextId();
allMsg.SecurityId = secIdMsg.SecurityId;
child = new ChildSubscription(parent, allMsg.TypedClone());
child.Subscribers.Add(allMsg.TransactionId, child.Origin);
parent.Child.Add(secIdMsg.SecurityId, child);
allMsg.LoopBack(this, MessageBackModes.Chain);
_pendingLoopbacks.Add(allMsg.TransactionId, RefTuple.Create(parentId, SubscriptionStates.Stopped));
this.AddDebugLog("New ALL map: {0}/{1} TrId={2}-{3}", child.Origin.SecurityId, child.Origin.DataType2, allMsg.ParentTransactionId, allMsg.TransactionId);
}
if (!child.State.IsActive())
{
child.Suspended.Add(subscrMsg);
message = null;
this.AddDebugLog("ALL suspended: {0}/{1}, cnt={2}", child.Origin.SecurityId, child.Origin.DataType2, child.Suspended.Count);
}
else
ApplySubscriptionIds(subscrMsg, child);
return allMsg;
}
}
}
}
return null;
}
/// <summary>
/// Create a copy of <see cref="SubscriptionSecurityAllMessageAdapter"/>.
/// </summary>
/// <returns>Copy.</returns>
public override IMessageChannel Clone()
{
return new SubscriptionSecurityAllMessageAdapter(InnerAdapter.TypedClone());
}
}
}