-
Notifications
You must be signed in to change notification settings - Fork 37
/
MarketListener.cs
168 lines (148 loc) · 6.76 KB
/
MarketListener.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Reactive;
using System.Reactive.Linq;
using BetfairNG.Data;
using System.Reactive.Disposables;
using System.Collections.Concurrent;
using System.Threading;
namespace BetfairNG
{
public class MarketListener
{
private static MarketListener listener = null;
private int connectionCount;
private PriceProjection priceProjection;
private BetfairClient client;
private static DateTime lastRequestStart;
private static DateTime latestDataRequestStart = DateTime.Now;
private static DateTime latestDataRequestFinish = DateTime.Now;
private static object lockObj = new object();
private ConcurrentDictionary<string, IObservable<MarketBook>> markets =
new ConcurrentDictionary<string, IObservable<MarketBook>>();
private ConcurrentDictionary<string, IObserver<MarketBook>> observers =
new ConcurrentDictionary<string, IObserver<MarketBook>>();
private MarketListener(BetfairClient client,
PriceProjection priceProjection,
int connectionCount)
{
this.client = client;
this.priceProjection = priceProjection;
this.connectionCount = connectionCount;
Task.Run(() => PollMarketBooks());
}
public static MarketListener Create(BetfairClient client,
PriceProjection priceProjection,
int connectionCount)
{
if (listener == null)
listener = new MarketListener(client, priceProjection, connectionCount);
return listener;
}
public IObservable<Runner> SubscribeRunner(string marketId, long selectionId)
{
var marketTicks = SubscribeMarketBook(marketId);
var observable = Observable.Create<Runner>(
(IObserver<Runner> observer) =>
{
var subscription = marketTicks.Subscribe(tick =>
{
var runner = tick.Runners.First(c => c.SelectionId == selectionId);
// attach the book
runner.MarketBook = tick;
observer.OnNext(runner);
});
return Disposable.Create(() => subscription.Dispose());
})
.Publish()
.RefCount();
return observable;
}
public IObservable<MarketBook> SubscribeMarketBook(string marketId)
{
IObservable<MarketBook> market;
if (markets.TryGetValue(marketId, out market))
return market;
var observable = Observable.Create<MarketBook>(
(IObserver<MarketBook> observer) =>
{
observers.AddOrUpdate(marketId, observer, (key, existingVal) => existingVal);
return Disposable.Create(() =>
{
IObserver<MarketBook> ob;
IObservable<MarketBook> o;
markets.TryRemove(marketId, out o);
observers.TryRemove(marketId, out ob);
});
})
.Publish()
.RefCount();
markets.AddOrUpdate(marketId, observable, (key, existingVal) => existingVal);
return observable;
}
// TODO:// replace this with the Rx scheduler
private void PollMarketBooks()
{
for (int i = 0; i < connectionCount;i++)
{
Task.Run(() =>
{
while (true)
{
if (markets.Count > 0)
{
// TODO:// look at spinwait or signalling instead of this
while (connectionCount > 1 && DateTime.Now.Subtract(lastRequestStart).TotalMilliseconds < (1000 / connectionCount))
{
int waitMs = (1000 / connectionCount) - (int)DateTime.Now.Subtract(lastRequestStart).TotalMilliseconds;
Thread.Sleep(waitMs > 0 ? waitMs : 0);
}
lock (lockObj)
lastRequestStart = DateTime.Now;
var book = client.ListMarketBook(markets.Keys.ToList(), this.priceProjection).Result;
if (!book.HasError)
{
// we may have fresher data than the response to this request
if (book.RequestStart < latestDataRequestStart && book.LastByte > latestDataRequestFinish)
continue;
else
{
lock (lockObj)
{
latestDataRequestStart = book.RequestStart;
latestDataRequestFinish = book.LastByte;
}
}
foreach (var market in book.Response)
{
IObserver<MarketBook> o;
if (observers.TryGetValue(market.MarketId, out o))
{
// check to see if the market is finished
if (market.Status == MarketStatus.CLOSED ||
market.Status == MarketStatus.INACTIVE)
o.OnCompleted();
else
o.OnNext(market);
}
}
}
else
{
foreach (var observer in observers)
observer.Value.OnError(book.Error);
}
}
else
// TODO:// will die with rx scheduler
Thread.Sleep(500);
}
});
Thread.Sleep(1000 / connectionCount);
}
}
}
}