QuoteSubscribeHelper.cs 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. //using Muchinfo.Communication;
  2. //using Muchinfo.Messages;
  3. //using Muchinfo.MTPClient.Data.Enums;
  4. //using Muchinfo.MTPClient.Data.Model;
  5. //using Muchinfo.MTPClient.Infrastructure.Cache;
  6. //using Muchinfo.MTPClient.Infrastructure.EntityHelpers;
  7. //using Muchinfo.MTPClient.Infrastructure.LinkProxy;
  8. //using Muchinfo.MTPClient.Infrastructure.Utilities;
  9. //using Muchinfo.Quote;
  10. //using System.Collections.Generic;
  11. //using System.Linq;
  12. //using System.Text;
  13. //namespace Muchinfo.MTPClient.UI.Utilities
  14. //{
  15. // public class QuoteSubscribeHelper
  16. // {
  17. // /// <summary>
  18. // /// 验证字符串
  19. // /// </summary>
  20. // private static readonly string _validateString = "0NDH6bf+zvHG99Hp1qTC6w==";
  21. // private static Dictionary<string, string> dicGoodsSort; //商品标志,商品组键值对。
  22. // #region Constructors
  23. // public static void Initialize()
  24. // {
  25. // }
  26. // /// <summary>
  27. // /// Initializes a new instance of the <see cref="QuoteSubscribeHelper"/> class.
  28. // /// </summary>
  29. // public static void InitializeProxy()
  30. // {
  31. // //组验证包
  32. // var validDatagram = new Datagram { Tag = 33, Tag2 = 999 };
  33. // Encoding encoding = Encoding.GetEncoding("GB2312");
  34. // validDatagram.SetData(encoding.GetBytes(_validateString));
  35. // var client = LinkManager.Instance.QuotationTcpLinkProxy;
  36. // if (client == null) return;
  37. // client.DatagramRecieved -= QuoteClient_DatagramReceived;
  38. // client.DatagramRecieved += QuoteClient_DatagramReceived;
  39. // client.Send(validDatagram);
  40. // }
  41. // #endregion Constructors
  42. // #region Methods
  43. // #region Public Static Methods
  44. // /// <summary>
  45. // /// 执行与释放或重置非托管资源相关的应用程序定义的任务。
  46. // /// </summary>
  47. // public static void Dispose()
  48. // {
  49. // }
  50. // #endregion Public Static Methods
  51. // #region Private Static Methods
  52. // /// <summary>
  53. // /// 实时行情订阅回发事件
  54. // /// </summary>
  55. // /// <param name="sender">The source of the event.</param>
  56. // /// <param name="e">The <see cref="DatagramEventArgs"/> instance containing the event data.</param>
  57. // private static void QuoteClient_DatagramReceived(object sender, DatagramEventArgs e)
  58. // {
  59. // var message = (PrimaryFunction)e.Datagram.Tag;
  60. // switch (message)
  61. // {
  62. // case PrimaryFunction.Quote:
  63. // {
  64. // var realTimeProxy = LinkManager.Instance.QuotationTcpLinkProxy;
  65. // if (realTimeProxy == null) return;
  66. // byte[] buffer = realTimeProxy.Resolver.ToByteArray(e.Datagram);
  67. // UpdateQuoteGoodses(QuoteConverter.FromBuffer(buffer));
  68. // }
  69. // break;
  70. // case PrimaryFunction.Query:
  71. // SetGoodsSorts(e.Datagram);
  72. // break;
  73. // }
  74. // }
  75. // /// <summary>
  76. // /// Updates the source.
  77. // /// </summary>
  78. // /// <param name="quotes">The quotes.</param>
  79. // private static void UpdateQuoteGoodses(QuoteTik[] quotes)
  80. // {
  81. // var quoteList = quotes.ToQuoteGoodsList();
  82. // if (quoteList == null || !quoteList.Any()) return;
  83. // var tempGoodses = new List<QuoteGoods>();
  84. // foreach (var realTimeGoods in quoteList)
  85. // {
  86. // var quoteGoods =
  87. // CacheManager.CacheGoodsBaseInfos.FirstOrDefault(
  88. // (goods) =>
  89. // goods.ExchangeCode == realTimeGoods.ExchangeCode &&
  90. // goods.GoodsCode.ToUpper() == realTimeGoods.GoodsCode.ToUpper());
  91. // if (quoteGoods == null) continue;
  92. // quoteGoods.UpdateFrom(realTimeGoods);
  93. // tempGoodses.Add(quoteGoods);
  94. // }
  95. // ////发送实时行情消息
  96. // ApplicationParameter.QuotationMessenger.Send<List<QuoteGoods>>(tempGoodses,
  97. // MessengerTokens.ReceiveRealTimeQuote);
  98. // }
  99. // /// <summary>
  100. // /// 设置商品的分组
  101. // /// </summary>
  102. // /// <param name="datagram"></param>
  103. // private static void SetGoodsSorts(Datagram datagram)
  104. // {
  105. // string xml = MessageDataResolver.FromDatagram(datagram);
  106. // XmlDataSet pRs = MessageDataResolver.ToXmlDataSet(xml);
  107. // dicGoodsSort = new Dictionary<string, string>(); //商品标志,商品组键值对。
  108. // foreach (var item in pRs[0])
  109. // {
  110. // string goodsCode = string.Empty;
  111. // if (item.Contains("SecCode") &&
  112. // !string.IsNullOrEmpty(item["SecCode"].Value.ToString()) &&
  113. // item["SecCode"].Value.ToString() != "N/A")
  114. // {
  115. // goodsCode = item["SecCode"].Value.ToString();
  116. // var zeroIndex = goodsCode.IndexOf('\0', 0);
  117. // if (zeroIndex > 0)
  118. // {
  119. // goodsCode = goodsCode.Substring(0, zeroIndex);
  120. // }
  121. // }
  122. // string exchange = string.Empty;
  123. // if (item.Contains("Exchange") &&
  124. // !string.IsNullOrEmpty(item["Exchange"].Value.ToString()) &&
  125. // item["Exchange"].Value.ToString() != "N/A")
  126. // {
  127. // exchange = item["Exchange"].Value.ToString();
  128. // }
  129. // string goodsgroup = "0";
  130. // if (item.Contains("Sort") &&
  131. // !string.IsNullOrEmpty(item["Sort"].Value.ToString()) &&
  132. // item["Sort"].Value.ToString() != "N/A")
  133. // {
  134. // goodsgroup = item["Sort"].Value.ToString();
  135. // }
  136. // string symbol = exchange.PadLeft(3, ' ') + goodsCode.PadLeft(6, ' ').ToUpper();
  137. // dicGoodsSort[symbol] = goodsgroup;
  138. // }
  139. // foreach (var qouteGoods in CacheManager.CacheGoodsBaseInfos) //设置商品组
  140. // {
  141. // if (dicGoodsSort.ContainsKey(qouteGoods.Symbol.ToUpper()))
  142. // {
  143. // qouteGoods.Sort = dicGoodsSort[qouteGoods.Symbol];
  144. // }
  145. // }
  146. // }
  147. // /// <summary>
  148. // /// 订阅行情
  149. // /// </summary>
  150. // public static void QuoteSubscribe()
  151. // {
  152. // var goodsList = CacheManager.CacheGoodsBaseInfos;
  153. // var client = LinkManager.Instance.QuotationTcpLinkProxy;
  154. // if (client == null) return;
  155. // var datagram = new Datagram
  156. // {
  157. // Tag = (byte)PrimaryFunction.QuoteHistory,
  158. // Tag2 = (ushort)QuoteHistoryMessage.Subscribe
  159. // };
  160. // var bytes = !goodsList.Any() ? null : goodsList.ToList().ToQuoteDatagramBytes();
  161. // datagram.SetData(bytes);
  162. // client.Send(datagram);
  163. // if (dicGoodsSort != null)
  164. // {
  165. // foreach (var qouteGoods in CacheManager.CacheGoodsBaseInfos) //设置商品组
  166. // {
  167. // if (dicGoodsSort.ContainsKey(qouteGoods.Symbol.ToUpper()))
  168. // {
  169. // qouteGoods.Sort = dicGoodsSort[qouteGoods.Symbol];
  170. // }
  171. // }
  172. // }
  173. // }
  174. // #endregion Private Static Methods
  175. // #endregion Methods
  176. // }
  177. //}