ClientData.cs 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. 
  2. using EVCB_OCPP.Packet.Messages.Basic;
  3. using EVCB_OCPP.WSServer.Dto;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Collections.ObjectModel;
  7. using System.Threading.Tasks;
  8. using SuperWebSocket;
  9. using SuperSocket.SocketBase;
  10. using EVCB_OCPP.WSServer.Service;
  11. using System.Net.WebSockets;
  12. namespace OCPPServer.Protocol
  13. {
  14. public class WsClientData : WsSession, IDisposable
  15. { /// <summary>
  16. /// 根據unique id來儲存.取出OCPP Request
  17. /// </summary>
  18. public Queue queue = new Queue();
  19. public EVCB_OCPP20.Packet.Messages.Basic.Queue queue20 = new EVCB_OCPP20.Packet.Messages.Basic.Queue();
  20. public bool? IsPending { set; get; }
  21. public bool IsCheckIn { set; get; } = false;
  22. public string ChargeBoxId { set; get; }
  23. public Guid CustomerId { get; set; }
  24. public string MachineId { set; get; }
  25. public bool ISOCPP20 { set; get; }
  26. public bool ResetSecurityProfile { set; get; }
  27. public bool IsAC { set; get; } = true;
  28. #region Billing
  29. public Dictionary<string, string> UserPrices { set; get; } = new Dictionary<string, string>();
  30. public Dictionary<string, string> UserDisplayPrices { set; get; } = new Dictionary<string, string>();
  31. public List<ChargingPrice> ChargingPrices { set; get; }
  32. /// <summary>
  33. /// 電樁顯示費率
  34. /// </summary>
  35. public string DisplayPrice { set; get; }
  36. /// <summary>
  37. /// 充電費率 以小時計費
  38. /// </summary>
  39. public decimal ChargingFeebyHour { set; get; }
  40. /// <summary>
  41. /// 停車費率 以小時計費
  42. /// </summary>
  43. public decimal ParkingFee { set; get; }
  44. /// <summary>
  45. /// 電樁是否計費
  46. /// </summary>
  47. public bool IsBilling { set; get; }
  48. /// <summary>
  49. /// 收費方式 1: 以度計費 2:以小時計費
  50. /// </summary>
  51. public int BillingMethod { set; get; }
  52. /// <summary>
  53. /// 電樁適用幣別
  54. /// </summary>
  55. public string Currency { get; internal set; }
  56. #endregion
  57. public string CustomerName { get; set; }
  58. public DateTime LastActiveTime { get; set; }
  59. public string StationId { set; get; }
  60. public new event ClientData.OCPPClientDataEventHandler<WsClientData, string> m_ReceiveData;
  61. public WsClientData()
  62. {
  63. ChargeBoxId = SessionID;
  64. MachineId = SessionID;
  65. base.m_ReceiveData += WsClientData_m_ReceiveData;
  66. }
  67. /// <summary>
  68. /// Sends the raw binary data to client.
  69. /// </summary>
  70. /// <param name="data">The data.</param>
  71. /// <param name="offset">The offset.</param>
  72. /// <param name="length">The length.</param>
  73. public void SendRawData(byte[] data, int offset, int length)
  74. {
  75. base.Send(data, offset, length);
  76. }
  77. private void WsClientData_m_ReceiveData(WsSession clientdata, string msg)
  78. {
  79. m_ReceiveData.Invoke(this, msg);
  80. }
  81. public void Dispose()
  82. {
  83. base.m_ReceiveData -= WsClientData_m_ReceiveData;
  84. }
  85. }
  86. public class ClientData : WebSocketSession<ClientData>
  87. { /// <summary>
  88. /// 根據unique id來儲存.取出OCPP Request
  89. /// </summary>
  90. public Queue queue = new Queue();
  91. public EVCB_OCPP20.Packet.Messages.Basic.Queue queue20 = new EVCB_OCPP20.Packet.Messages.Basic.Queue();
  92. public bool? IsPending { set; get; }
  93. public bool IsCheckIn { set; get; }
  94. public string ChargeBoxId { set; get; }
  95. public Guid CustomerId { get; set; }
  96. public string MachineId { set; get; }
  97. public bool ISOCPP20 { set; get; }
  98. public bool ResetSecurityProfile { set; get; }
  99. public bool IsAC { set; get; }
  100. #region Billing
  101. public Dictionary<string,string> UserPrices { set; get; }
  102. public Dictionary<string, string> UserDisplayPrices { set; get; }
  103. public List<ChargingPrice> ChargingPrices { set; get; }
  104. /// <summary>
  105. /// 電樁顯示費率
  106. /// </summary>
  107. public string DisplayPrice { set; get; }
  108. /// <summary>
  109. /// 充電費率 以小時計費
  110. /// </summary>
  111. public decimal ChargingFeebyHour { set; get; }
  112. /// <summary>
  113. /// 停車費率 以小時計費
  114. /// </summary>
  115. public decimal ParkingFee { set; get; }
  116. /// <summary>
  117. /// 電樁是否計費
  118. /// </summary>
  119. public bool IsBilling { set; get; }
  120. /// <summary>
  121. /// 收費方式 1: 以度計費 2:以小時計費
  122. /// </summary>
  123. public int BillingMethod { set; get; }
  124. /// <summary>
  125. /// 電樁適用幣別
  126. /// </summary>
  127. public string Currency { get; internal set; }
  128. #endregion
  129. public string CustomerName { get; set; }
  130. public string StationId { set; get; }
  131. public delegate void OCPPClientDataEventHandler<ClientData, String>(ClientData clientdata, String msg);
  132. public event OCPPClientDataEventHandler<ClientData, String> m_ReceiveData;
  133. public ClientData()
  134. {
  135. IsAC = true;
  136. IsCheckIn = false;
  137. ChargeBoxId = SessionID;
  138. MachineId = SessionID;
  139. UserPrices = new Dictionary<string, string>();
  140. UserDisplayPrices = new Dictionary<string, string>();
  141. }
  142. /// <summary>
  143. /// Sends the raw binary data to client.
  144. /// </summary>
  145. /// <param name="data">The data.</param>
  146. /// <param name="offset">The offset.</param>
  147. /// <param name="length">The length.</param>
  148. public void SendRawData(byte[] data, int offset, int length)
  149. {
  150. base.Send(data, offset, length);
  151. }
  152. //receive data event trigger
  153. public void ReceiveData(ClientData clientdata, string msg)
  154. {
  155. if (m_ReceiveData != null)
  156. m_ReceiveData(clientdata, msg);
  157. }
  158. /// <summary>
  159. /// Called when [session closed].
  160. /// </summary>
  161. /// <param name="reason">The reason.</param>
  162. protected override void OnSessionClosed(CloseReason reason)
  163. {
  164. }
  165. }
  166. }