forked from QuantBox/QuantBox_XAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathXApi.MarketData.cs
146 lines (127 loc) · 4.84 KB
/
XApi.MarketData.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
using QuantBox.XAPI.Interface;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
namespace QuantBox.XAPI.Callback
{
public partial class XApi : IXMarketData
{
public DelegateOnRtnDepthMarketData OnRtnDepthMarketData
{
get { return OnRtnDepthMarketData_; }
set { OnRtnDepthMarketData_ = value; }
}
// 这种写法的主要目的是求快
private DelegateOnRtnDepthMarketData OnRtnDepthMarketData_;
public DelegateOnFilterSubscribe OnFilterSubscribe
{
get { return OnFilterSubscribe_; }
set { OnFilterSubscribe_ = value; }
}
// 这种写法的主要目的是求快
private DelegateOnFilterSubscribe OnFilterSubscribe_;
#region 已经订阅的行情
public int MaxSubscribedInstrumentsCount;
public int SubscribedInstrumentsCount
{
get
{
lock (locker)
{
int cnt = 0;
foreach (var kv in _SubscribedInstruments)
{
cnt += kv.Value.Count;
}
return cnt;
}
}
}
public bool SubscribedInstrumentsContains(string szInstrument, string szExchange)
{
lock (locker)
{
HashSet<string> instruments;
if(_SubscribedInstruments.TryGetValue(szExchange, out instruments))
{
return instruments.Contains(szInstrument);
}
return false;
}
}
private Dictionary<string, HashSet<string>> _SubscribedInstruments = new Dictionary<string, HashSet<string>>();
public Dictionary<string, HashSet<string>> SubscribedInstruments
{
get
{
lock (locker)
{
return _SubscribedInstruments;
}
}
}
#endregion
#region 订阅行情
public virtual void Subscribe(string szInstrument, string szExchange)
{
lock (locker)
{
IntPtr szInstrumentPtr = Marshal.StringToHGlobalAnsi(szInstrument);
IntPtr szExchangePtr = Marshal.StringToHGlobalAnsi(szExchange);
proxy.XRequest((byte)RequestType.Subscribe, Handle, IntPtr.Zero, 0, 0,
szInstrumentPtr, 0, szExchangePtr, 0, IntPtr.Zero, 0);
HashSet<string> instruments;
if(!_SubscribedInstruments.TryGetValue(szExchange, out instruments))
{
instruments = new HashSet<string>();
_SubscribedInstruments[szExchange] = instruments;
}
szInstrument.Split(new char[2] { ';', ',' }).ToList().ForEach(x =>
{
instruments.Add(x);
});
Marshal.FreeHGlobal(szInstrumentPtr);
Marshal.FreeHGlobal(szExchangePtr);
}
}
public virtual void Unsubscribe(string szInstrument, string szExchange)
{
lock (locker)
{
IntPtr szInstrumentPtr = Marshal.StringToHGlobalAnsi(szInstrument);
IntPtr szExchangePtr = Marshal.StringToHGlobalAnsi(szExchange);
proxy.XRequest((byte)RequestType.Unsubscribe, Handle, IntPtr.Zero, 0, 0,
szInstrumentPtr, 0, szExchangePtr, 0, IntPtr.Zero, 0);
HashSet<string> instruments;
if (!_SubscribedInstruments.TryGetValue(szExchange, out instruments))
{
instruments = new HashSet<string>();
_SubscribedInstruments[szExchange] = instruments;
}
szInstrument.Split(new char[2] { ';', ',' }).ToList().ForEach(x =>
{
instruments.Remove(x);
});
Marshal.FreeHGlobal(szInstrumentPtr);
Marshal.FreeHGlobal(szExchangePtr);
}
}
#endregion
private void _OnRtnDepthMarketData(IntPtr ptr1,int size1,double double1)
{
// 求快,这个地方不判断
//if (OnRtnDepthMarketData_ == null)
// return;
DepthMarketDataNClass cls = PInvokeUtility.GetDepthMarketDataNClass(ptr1);
OnRtnDepthMarketData(this, ref cls);
}
private bool _OnFilterSubscribe(double double1, int size1, int size2, int size3, IntPtr ptr1)
{
if (OnFilterSubscribe_ == null)
return true;
return OnFilterSubscribe_(this, (ExchangeType)double1, size1, size2, size3, ptr1);
}
}
}