using EVCB_OCPP.Packet.Messages.Basic; using SuperSocket.SocketBase; using SuperWebSocket; using System; namespace OCPPServer.Protocol { public class ClientData : WebSocketSession { /// /// 根據unique id來儲存.取出OCPP Request /// public Queue queue = new Queue(); public EVCB_OCPP20.Packet.Messages.Basic.Queue queue20 = new EVCB_OCPP20.Packet.Messages.Basic.Queue(); public bool IsPending { set; get; } public bool IsCheckIn { set; get; } public string ChargeBoxId { set; get; } public Guid CustomerId { get; set; } public string MachineId { set; get; } public bool ISOCPP20 { set; get; } public bool ResetSecurityProfile { set; get; } public string FeeDescription { set; get; } public string CustomerName { get; set; } public string Currency { get; internal set; } public delegate void OCPPClientDataEventHandler(ClientData clientdata, String msg); public event OCPPClientDataEventHandler m_ReceiveData; public ClientData() { IsPending = false; IsCheckIn = false; ChargeBoxId = SessionID; MachineId = SessionID; } /// /// Sends the raw binary data to client. /// /// The data. /// The offset. /// The length. public void SendRawData(byte[] data, int offset, int length) { base.Send(data, offset, length); } //receive data event trigger public void ReceiveData(ClientData clientdata, string msg) { if (m_ReceiveData != null) m_ReceiveData(clientdata, msg); } /// /// Called when [session closed]. /// /// The reason. protected override void OnSessionClosed(CloseReason reason) { } } }