using NLog; using OCPPServer.Protocol; using OCPPServer.SubProtocol; using SuperSocket.SocketBase; using SuperSocket.SocketBase.Config; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Xml.Linq; using EVCB_OCPP.Packet.Messages.Basic; using EVCB_OCPP.Packet.Messages.Core; using EVCB_OCPP.WSServer.Message; using EVCB_OCPP.Packet.Messages; using EVCB_OCPP.Domain; using EVCB_OCPP.Domain.Models.Database; using System.Threading; using System.Data.Entity; using EVCB_OCPP.Packet.Features; using EVCB_OCPP.Packet.Features.Core; using Newtonsoft.Json; using OCPPPackage.Profiles; using System.Threading.Tasks; using EVCB_OCPP.WSServer.Helper; using System.Data.SqlClient; using EVCB_OCPP.Packet.Messages.FirmwareManagement; using EVCB_OCPP.Packet.Messages.RemoteTrigger; using System.Configuration; using System.Net; using System.Net.Security; using System.Security.Cryptography.X509Certificates; namespace EVCB_OCPP.WSServer { internal class ProtalServer { static private ILogger logger = NLog.LogManager.GetCurrentClassLogger(); private Dictionary clientDic = new Dictionary(); private readonly Object _lockClientDic = new object(); private readonly Object _lockConfirmPacketList = new object(); private ProfileHandler profileHandler = new ProfileHandler(); private List needConfirmPacketList = new List(); private DateTime checkUpdateDt = DateTime.Now; private List needConfirmActions = new List() { "GetConfiguration", "ChangeConfiguration", "RemoteStartTransaction", "RemoteStopTransaction", "ChangeAvailability", "ClearCache", "DataTransfer", "Reset", "UnlockConnector", "TriggerMessage", "GetDiagnostics", "UpdateFirmware", "GetLocalListVersion", "SendLocalList", "SetChargingProfile", "ClearChargingProfile", "GetCompositeSchedule", "ReserveNow", "CancelReservation", }; private List profiles = new List() { new CoreProfile(), new FirmwareManagementProfile(), new ReservationProfile(), new RemoteTriggerProfile(), new SmartChargingProfile(), new LocalAuthListManagementProfile() }; private CancellationTokenSource _cts = new CancellationTokenSource(); private CancellationToken _ct; internal ProtalServer() { _ct = _cts.Token; WarmUpLog(); } internal void Start() { if (!GlobalConfig.LoadAPPConfig()) { Console.WriteLine("Please check App.Config setting ."); return; } OpenNetwork(); Task serverCommandTask = new Task(ServerMessageTrigger, _ct); serverCommandTask.Start(); Task serverUpdateTask = new Task(ServerUpdateTrigger, _ct); serverUpdateTask.Start(); Task serverHealthTask = new Task(HealthAlarmTrigger, _ct); // serverHealthTask.Start(); while (true) { var input = Console.ReadLine(); switch (input.ToLower()) { case "stop": logger.Info("Command stop"); Stop(); break; case "gc": logger.Info("Command GC"); GC.Collect(); break; case "lc": { logger.Info("Command List Clients"); Dictionary _copyClientDic = null; lock (_lockClientDic) { _copyClientDic = new Dictionary(clientDic); } var list = _copyClientDic.Select(c => c.Value).ToList(); int i = 1; foreach (var c in list) { logger.Info(i + ":" + c.ChargeBoxId + " " + c.SessionID); i++; } } break; case "lcn": { logger.Info("Command List Customer Name"); Dictionary _copyClientDic = null; lock (_lockClientDic) { _copyClientDic = new Dictionary(clientDic); } var lcn = clientDic.Select(c => c.Value.CustomerName).Distinct().ToList(); int iLcn = 1; foreach (var c in lcn) { logger.Info(iLcn + ":" + c + ":" + clientDic.Where(z => z.Value.CustomerName == c).Count().ToString()); iLcn++; } } break; case "help": logger.Info("Command help!!"); logger.Info("lcn : List Customer Name"); logger.Info("gc : GC Collect"); logger.Info("lc : List Clients"); logger.Info("cls : clear console"); logger.Info("silent : silent"); logger.Info("show : show log"); // logger.Info("rcl : show Real Connection Limit"); break; case "cls": logger.Info("Command clear"); Console.Clear(); break; case "silent": logger.Info("Command silent"); var xe = XElement.Load("NLog.config"); var xns = xe.GetDefaultNamespace(); var minlevelattr = xe.Descendants(xns + "rules").Elements(xns + "logger") .Where(c => c.Attribute("writeTo").Value.Equals("console")).Attributes("minlevel").FirstOrDefault(); if (minlevelattr != null) { minlevelattr.Value = "info"; } xe.Save("NLog.config"); break; case "show": logger.Info("Command show"); var xe1 = XElement.Load("NLog.config"); var xns1 = xe1.GetDefaultNamespace(); var minlevelattr1 = xe1.Descendants(xns1 + "rules").Elements(xns1 + "logger") .Where(c => c.Attribute("writeTo").Value.Equals("console")).Attributes("minlevel").FirstOrDefault(); if (minlevelattr1 != null) { minlevelattr1.Value = "trace"; } xe1.Save("NLog.config"); break; case "rcl": break; default: break; } } } internal void Stop() { if (_cts != null) { _cts.Cancel(); } } private void CheckEVSEConfigure(string chargeBoxId) { int skipCount = 0; int takeCount = 8; using (var db = new MainDBContext()) { string maxKeys = StandardConfiguration.AllConfigs.Skip(skipCount).Take(1).FirstOrDefault(); if (maxKeys == StandardConfiguration.GetConfigurationMaxKeys) { var _Configure = db.MachineConfigure.Where(x => x.ChargeBoxId == chargeBoxId && x.ConfigureName == maxKeys).Select(x => new { ConfigureSetting = x.ConfigureSetting, ConfigureName = x.ConfigureName }).FirstOrDefault(); if (_Configure != null) { int cp_ConfiureCount = 0; int.TryParse(_Configure.ConfigureSetting, out cp_ConfiureCount); takeCount = takeCount > cp_ConfiureCount ? cp_ConfiureCount : takeCount; skipCount = 1; if (string.IsNullOrEmpty(_Configure.ConfigureSetting)) return; } } while (StandardConfiguration.AllConfigs.Count > skipCount) { string _key = StandardConfiguration.AllConfigs.Skip(skipCount).Take(1).FirstOrDefault(); var _Configure = db.MachineConfigure.Where(x => x.ChargeBoxId == chargeBoxId && x.ConfigureName == _key).Select(x => new { ConfigureSetting = x.ConfigureSetting, ConfigureName = x.ConfigureName }).FirstOrDefault(); takeCount = StandardConfiguration.AllConfigs.Count - skipCount > takeCount ? takeCount : StandardConfiguration.AllConfigs.Count - skipCount; var _keys = StandardConfiguration.AllConfigs.Skip(skipCount).Take(takeCount).ToList(); // Console.WriteLine("===============Skip:" + skipCount); if (_Configure == null) { // Console.WriteLine("_Configure == null===============Skip:" + skipCount); db.ServerMessage.Add(new ServerMessage() { ChargeBoxId = chargeBoxId, CreatedBy = "Server", CreatedOn = DateTime.Now, OutAction = Actions.GetConfiguration.ToString(), OutRequest = JsonConvert.SerializeObject( new GetConfigurationRequest() { key = _keys }, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore, Formatting = Formatting.None }), SerialNo = Guid.NewGuid().ToString(), InMessage = string.Empty }); db.SaveChanges(); } skipCount = skipCount + takeCount; } } } private void OpenNetwork() { //載入OCPP Protocol var appServer = new OCPPWSServer(new List() { new OCPPSubProtocol(), new OCPPSubProtocol(" ocpp1.6") }); List llistener = new List(); //System.Net.IPAddress.Any.ToString() // llistener.Add(new ListenerConfig { Ip = "", Port = Convert.ToInt32(wssserverPort), Backlog = 100, Security = serverSecurity }); llistener.Add(new ListenerConfig { Ip = System.Net.IPAddress.Any.ToString(), Port = Convert.ToInt32(GlobalConfig.GetWS_Port()), Backlog = 100, Security = "None" }); llistener.Add(new ListenerConfig { Ip = System.Net.IPAddress.Any.ToString(), Port = Convert.ToInt32(GlobalConfig.GetWSS_Port()), Backlog = 100, Security = "tls" }); var config = ConfigurationManager.GetSection("superSocket") as IConfigurationSource; ICertificateConfig Certificate = config.Servers.ElementAt(0).Certificate; IEnumerable listeners = llistener; //設定server config var serverConfig = new ServerConfig { //Port = Convert.ToInt32(2012), //Ip = "172.17.40.13", MaxRequestLength = 4096, //Security = serverSecurity, Certificate = Certificate, Listeners = listeners, }; //Setup with listening port if (!appServer.Setup(serverConfig, logFactory: new OCPPLogFactory())) { Console.WriteLine("Failed to setup!"); return; } appServer.NewSessionConnected += AppServer_NewSessionConnected; appServer.SessionClosed += AppServer_SessionClosed; //Try to start the appServer if (!appServer.Start()) { Console.WriteLine("Failed to start!"); Console.ReadKey(); return; } } private void AppServer_SessionClosed(ClientData session, CloseReason value) { // Console.WriteLine(session.RemoteEndPoint.Address); WriteMachineLog(session, string.Format("CloseReason: {0}", value), "Connection", ""); RemoveClient(session); // close Connection } private void AppServer_NewSessionConnected(ClientData session) { try { lock (_lockClientDic) { bool isNotSupported = session.SecWebSocketProtocol.Contains("ocpp1.6") ? false : true; if (isNotSupported) { logger.Debug(string.Format("ChargeBoxId:{0} SecWebSocketProtocol:{1} NotSupported", session.ChargeBoxId, session.SecWebSocketProtocol)); WriteMachineLog(session, string.Format("SecWebSocketProtocol:{0} NotSupported", session.SecWebSocketProtocol), "Connection", ""); return; } ClientData _removeClient = null; clientDic.TryGetValue(session.ChargeBoxId, out _removeClient); if (_removeClient != null) { WriteMachineLog(_removeClient, "Duplicate Logins", "Connection", ""); _removeClient.Close(CloseReason.ServerShutdown); RemoveClient(_removeClient); } session.IsCheckIn = true; clientDic.Add(session.ChargeBoxId, session); session.m_ReceiveData += new ClientData.OCPPClientDataEventHandler(ReceivedMessage); logger.Debug("------------New " + (session == null ? "Oops" : session.ChargeBoxId)); WriteMachineLog(session, "NewSessionConnected", "Connection", ""); using (var db = new MainDBContext()) { var machine = db.Machine.Where(x => x.ChargeBoxId == session.ChargeBoxId).FirstOrDefault(); if (machine != null) { machine.ConnectionType = session.Origin.Contains("https") ? 2 : 1; db.SaveChanges(); } } CheckEVSEConfigure(session.ChargeBoxId); } } catch (Exception ex) { logger.Error(string.Format("NewSessionConnected Ex: {0}", ex.ToString())); } } private void ReceivedMessage(ClientData session, string rawdata) { BasicMessageHandler msgAnalyser = new BasicMessageHandler(); MessageResult analysisResult = msgAnalyser.AnalysisReceiveData(session, rawdata); WriteMachineLog(session, rawdata, string.Format("{0} {1}", string.IsNullOrEmpty(analysisResult.Action) ? "unknown" : analysisResult.Action, analysisResult.Id == 2 ? "Request" : (analysisResult.Id == 3 ? "Confirmation" : "Error")), string.IsNullOrEmpty(analysisResult.CallErrorMsg) ? "" : analysisResult.Exception.Message); if (!analysisResult.Success) { //解析RawData就發生錯誤 if (!string.IsNullOrEmpty(analysisResult.CallErrorMsg)) { Send(session, analysisResult.CallErrorMsg, string.Format("{0} {1}", analysisResult.Action, "Error")); } else { BaseMessage _baseMsg = analysisResult.Message as BaseMessage; string replyMsg = msgAnalyser.GenerateCallError(_baseMsg.Id, OCPPErrorCodes.InternalError, OCPPErrorDescription.InternalError); string errorMsg = string.Empty; if (analysisResult.Exception != null) { errorMsg = analysisResult.Exception.ToString(); } Send(session, replyMsg, string.Format("{0} {1}", analysisResult.Action, "Error"), errorMsg); } } else { Actions action = Convertor.GetAction(analysisResult.Action); switch (analysisResult.Id) { case BasicMessageHandler.TYPENUMBER_CALL: { ProcessRequestMessage(analysisResult, session, action); } break; case BasicMessageHandler.TYPENUMBER_CALLRESULT: { ProcessConfirmationMessage(analysisResult, session, action); } break; case BasicMessageHandler.TYPENUMBER_CALLERROR: { //只處理 丟出Request 收到Error的訊息 if (analysisResult.Success) { ProcessErrorMessage(analysisResult, session, action); } } break; default: { logger.Error(string.Format("Can't analyze messagetype:{0} of raw data :{1} by {2}", analysisResult.Id, rawdata, session.ChargeBoxId)); } break; } } } private void ProcessRequestMessage(MessageResult analysisResult, ClientData session, Actions action) { BasicMessageHandler msgAnalyser = new BasicMessageHandler(); if (!session.IsCheckIn && action != Actions.BootNotification) { string response = msgAnalyser.GenerateCallError(analysisResult.UUID, OCPPErrorCodes.GenericError, OCPPErrorDescription.NotChecked); Send(session, response, string.Format("{0} {1}", analysisResult.Action, "Error")); } else { var profileName = profiles.Where(x => x.IsExisted(analysisResult.Action)).Select(x => x.Name).FirstOrDefault(); switch (profileName) { case "Core": { bool oldstatus = session.IsCheckIn; var replyResult = profileHandler.ExecuteCoreRequest(action, session, (IRequest)analysisResult.Message); if (replyResult.Success) { string response = msgAnalyser.GenerateConfirmation(analysisResult.UUID, (IConfirmation)replyResult.Message); Send(session, response, string.Format("{0} {1}", analysisResult.Action, "Confirmation")); if (action == Actions.BootNotification && replyResult.Message is BootNotificationConfirmation) { if (((BootNotificationConfirmation)replyResult.Message).status == Packet.Messages.SubTypes.RegistrationStatus.Accepted) { session.IsCheckIn = true; if (!oldstatus) { using (var db = new MainDBContext()) { var machine = db.Machine.Where(x => x.ChargeBoxId == session.ChargeBoxId).FirstOrDefault(); if (machine != null) { machine.ConnectionType = session.Origin.Contains("https") ? 2 : 1; db.SaveChanges(); } } // CheckEVSEConfigure(session.ChargeBoxId); } } } } else { string response = msgAnalyser.GenerateCallError(analysisResult.UUID, OCPPErrorCodes.InternalError, OCPPErrorDescription.InternalError); string errorMsg = replyResult.Exception != null ? replyResult.Exception.ToString() : string.Empty; Send(session, response, string.Format("{0} {1}", analysisResult.Action, "Error"), errorMsg); } } break; case "FirmwareManagement": { var replyResult = profileHandler.ExecuteFirmwareManagementRequest(action, session, (IRequest)analysisResult.Message); if (replyResult.Success) { string response = msgAnalyser.GenerateConfirmation(analysisResult.UUID, (IConfirmation)replyResult.Message); Send(session, response, string.Format("{0} {1}", analysisResult.Action, "Confirmation")); } else { string response = msgAnalyser.GenerateCallError(analysisResult.UUID, OCPPErrorCodes.InternalError, OCPPErrorDescription.InternalError); string errorMsg = replyResult.Exception != null ? replyResult.Exception.ToString() : string.Empty; Send(session, response, string.Format("{0} {1}", analysisResult.Action, "Error"), errorMsg); } } break; default: { string replyMsg = msgAnalyser.GenerateCallError(analysisResult.UUID, OCPPErrorCodes.InternalError, OCPPErrorDescription.InternalError); string errorMsg = string.Format("Couldn't find action name: {0} of profile", action); Send(session, replyMsg, string.Format("{0} {1}", analysisResult.Action, "Error"), errorMsg); } break; } } } private void ProcessConfirmationMessage(MessageResult analysisResult, ClientData session, Actions action) { BasicMessageHandler msgAnalyser = new BasicMessageHandler(); if (ReConfirmMessage(analysisResult)) { var profileName = profiles.Where(x => x.IsExisted(analysisResult.Action)).Select(x => x.Name).FirstOrDefault(); MessageResult confirmResult = null; switch (profileName) { case "Core": { confirmResult = profileHandler.ExecuteCoreConfirm(action, session, (IConfirmation)analysisResult.Message, analysisResult.RequestId); } break; case "FirmwareManagement": { confirmResult = profileHandler.ExecuteFirmwareManagementConfirm(action, session, (IConfirmation)analysisResult.Message, analysisResult.RequestId); } break; case "RemoteTrigger": { confirmResult = profileHandler.ExecuteRemoteTriggerConfirm(action, session, (IConfirmation)analysisResult.Message, analysisResult.RequestId); } break; case "Reservation": { confirmResult = profileHandler.ExecuteReservationConfirm(action, session, (IConfirmation)analysisResult.Message, analysisResult.RequestId); } break; case "LocalAuthListManagement": { confirmResult = profileHandler.ExecuteLocalAuthListManagementConfirm(action, session, (IConfirmation)analysisResult.Message, analysisResult.RequestId); } break; case "SmartCharging": { confirmResult = profileHandler.ExecuteSmartChargingConfirm(action, session, (IConfirmation)analysisResult.Message, analysisResult.RequestId); } break; default: { string replyMsg = msgAnalyser.GenerateCallError(analysisResult.UUID, OCPPErrorCodes.InternalError, OCPPErrorDescription.InternalError); string errorMsg = string.Format("Couldn't find action name: {0} of profile", action); Send(session, replyMsg, string.Format("{0} {1}", analysisResult.Action, "Error"), errorMsg); } break; } if (confirmResult == null || !confirmResult.Success) { logger.Error(string.Format("Action:{0} MessageId:{1} ExecuteConfirm Error:{2} ", analysisResult.Action, analysisResult.UUID, confirmResult.Exception.ToString())); } } else { string replyMsg = msgAnalyser.GenerateCallError(analysisResult.UUID, OCPPErrorCodes.InternalError, OCPPErrorDescription.InternalError); string errorMsg = string.Format("Action:{0} MessageId:{1} didn't exist in confirm message", analysisResult.Action, analysisResult.UUID); Send(session, replyMsg, string.Format("{0} {1}", analysisResult.Action, "Error"), errorMsg); } } private void ProcessErrorMessage(MessageResult analysisResult, ClientData session, Actions action) { BasicMessageHandler msgAnalyser = new BasicMessageHandler(); if (ReConfirmMessage(analysisResult)) { var profileName = profiles.Where(x => x.IsExisted(analysisResult.Action)).Select(x => x.Name).FirstOrDefault(); switch (profileName) { case "Core": { profileHandler.ReceivedCoreError(action, analysisResult.ReceivedErrorCode, session, analysisResult.RequestId); } break; case "FirmwareManagement": { profileHandler.ReceivedFirmwareManagementError(action, analysisResult.ReceivedErrorCode, session, analysisResult.RequestId); } break; case "RemoteTrigger": { profileHandler.ReceivedRemoteTriggerError(action, analysisResult.ReceivedErrorCode, session, analysisResult.RequestId); } break; case "Reservation": { profileHandler.ExecuteReservationError(action, analysisResult.ReceivedErrorCode, session, analysisResult.RequestId); } break; case "LocalAuthListManagement": { profileHandler.ReceivedLocalAuthListManagementError(action, analysisResult.ReceivedErrorCode, session, analysisResult.RequestId); } break; case "SmartCharging": { profileHandler.ReceivedSmartChargingError(action, analysisResult.ReceivedErrorCode, session, analysisResult.RequestId); } break; default: { string replyMsg = msgAnalyser.GenerateCallError(analysisResult.UUID, OCPPErrorCodes.InternalError, OCPPErrorDescription.InternalError); string errorMsg = string.Format("Couldn't find action name: {0} of profile", action); Send(session, replyMsg, string.Format("{0} {1}", analysisResult.Action, "Error"), errorMsg); } break; } } else { string replyMsg = msgAnalyser.GenerateCallError(analysisResult.UUID, OCPPErrorCodes.InternalError, OCPPErrorDescription.InternalError); string errorMsg = string.Format("Action:{0} MessageId:{1} didn't exist in confirm message", analysisResult.Action, analysisResult.UUID); Send(session, replyMsg, string.Format("{0} {1}", analysisResult.Action, "Error"), errorMsg); } } private void Send(ClientData session, string msg, string messageType, string errorMsg = "") { try { if (session != null) { WriteMachineLog(session, msg, messageType, errorMsg, true); session.Send(msg); } } catch (Exception ex) { logger.Error(string.Format("Send Ex:{0}", ex.ToString())); } } async private void ServerUpdateTrigger() { for (; ; ) { if (_ct.IsCancellationRequested) { break; } var min_Interval = (DateTime.Now - checkUpdateDt).TotalMinutes; if (min_Interval > 3) { BasicMessageHandler msgAnalyser = new BasicMessageHandler(); Dictionary _copyClientDic = null; lock (_lockClientDic) { _copyClientDic = new Dictionary(clientDic); } checkUpdateDt = DateTime.Now; using (var db = new MainDBContext()) { //var needUpdateChargers = db.Machine.Where(x => x.FW_AssignedMachineVersionId.HasValue == true && // x.FW_AssignedMachineVersionId != x.FW_VersionReport && x.Online == true) // .Select(x => new { x.Id, x.ChargeBoxId, x.FW_AssignedMachineVersionId }).ToList(); var needUpdateChargers = db.Machine.Where(x => x.FW_AssignedMachineVersionId.HasValue == true && x.FW_AssignedMachineVersionId != x.FW_VersionReport && x.Online == true) .Select(x => x.ChargeBoxId).AsNoTracking().ToList(); foreach (var chargeBoxId in needUpdateChargers) { try { ClientData session; if (_copyClientDic.TryGetValue(chargeBoxId, out session)) { string requestId = Guid.NewGuid().ToString(); // using (var db = new MainDBContext()) if (session.IsCheckIn) { var _request = new TriggerMessageRequest() { requestedMessage = Packet.Messages.SubTypes.MessageTrigger.FirmwareStatusNotification }; var uuid = session.queue.store(_request); string rawRequest = msgAnalyser.GenerateRequest(uuid, _request.Action, _request); Send(session, rawRequest, string.Format("{0} {1}", _request.Action, "Request"), ""); #region OCTT ,測試韌體更新方式 //--------------------> OCTT ,測試韌體更新方式 //{ // var machine = db.Machine.Where(x => x.FW_AssignedMachineVersionId.HasValue == true && // x.FW_AssignedMachineVersionId != x.FW_VersionReport && x.ChargeBoxId == session.ChargeBoxId) // .Select(x => new { x.Id, x.FW_AssignedMachineVersionId }).FirstOrDefault(); // if (machine != null) // { // var mv = db.MachineVersion.Include(c => c.PublishVersion) // .Include(c => c.PublishVersion.PublishVersionFiles) // .Include(c => c.PublishVersion.PublishVersionFiles.Select(z => z.UploadFile)) // .Where(c => c.Id == machine.FW_AssignedMachineVersionId.Value).First(); // string downloadUrl = mv.PublishVersion.PublishVersionFiles.FirstOrDefault().UploadFile.FileUrl; // var _updateFWrequest = new UpdateFirmwareRequest() // { // location = new Uri(downloadUrl), // retries = 3, // retrieveDate = DateTime.Now, // retryInterval = 10 // }; // db.MachineOperateRecord.Add(new MachineOperateRecord() // { // CreatedOn = DateTime.Now, // ChargeBoxId = session.ChargeBoxId, // SerialNo = requestId, // RequestContent = JsonConvert.SerializeObject(_updateFWrequest, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore, Formatting = Formatting.None }), // EVSE_Status = 0, // EVSE_Value = "Fw Version:" + machine.FW_AssignedMachineVersionId, // Status = 0, // RequestType = 0, // }); // db.ServerMessage.Add(new ServerMessage() // { // ChargeBoxId = session.ChargeBoxId, // CreatedBy = "Server", // CreatedOn = DateTime.Now, // OutAction = _updateFWrequest.Action.ToString(), // OutRequest = JsonConvert.SerializeObject(_updateFWrequest, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore, Formatting = Formatting.None }), // SerialNo = requestId, // InMessage = string.Empty // }); // db.SaveChanges(); // } //} #endregion } } } catch (Exception ex) { logger.Error(string.Format("serverUpdateTrigger ChargeBoxId:{0} Ex:{1}", chargeBoxId, ex.ToString())); } } } await Task.Delay(1000); // Thread.CurrentThread.Join(1000); } } } async private void ServerMessageTrigger() { for (; ; ) { if (_ct.IsCancellationRequested) { break; } try { RemoveConfirmMessage(); BasicMessageHandler msgAnalyser = new BasicMessageHandler(); using (var db = new MainDBContext()) { DateTime startDt = DateTime.Now.AddSeconds(-30); DateTime dt = new DateTime(1991, 1, 1); //Console.WriteLine(string.Format("{0} IN", DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss"))); var commandList = db.ServerMessage.Where(c => c.ReceivedOn == dt && c.UpdatedOn == dt && c.CreatedOn >= startDt && c.CreatedOn <= DateTime.Now).AsNoTracking().ToList(); //處理主機傳送的有指令 var cmdMachineList = commandList.Select(c => c.ChargeBoxId).Distinct().ToList(); if (commandList.Count > 0) { Console.WriteLine(string.Format("Now:{0} commandList Count:{1} ", DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss"), commandList.Count)); } foreach (var charger_SN in cmdMachineList) { ClientData session; string uuid = string.Empty; if (clientDic.TryGetValue(charger_SN, out session)) { Console.WriteLine(string.Format("charger_SN:{0} startDt:{1} CreatedOn:{2}", charger_SN, startDt.ToString("yyyy/MM/dd HH:mm:ss"), DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss"))); if (session.IsCheckIn) { var cmdList = commandList.Where(c => c.ChargeBoxId == charger_SN).ToList(); foreach (var item in cmdList) { IRequest request = null; Actions action = Actions.None; Enum.TryParse(item.OutAction, out action); Type _RequestType = null; for (int i = 0; i < profiles.Count; i++) { var feature = profiles[i].GetFeaturebyAction(item.OutAction); if (feature != null) { _RequestType = feature.GetRequestType(); break; } } if (_RequestType != null) { request = JsonConvert.DeserializeObject(item.OutRequest, _RequestType) as IRequest; uuid = session.queue.store(request); string rawRequest = msgAnalyser.GenerateRequest(uuid, item.OutAction, request); Send(session, rawRequest, string.Format("{0} {1}", action, "Request"), ""); } AddConfirmMessage(charger_SN, item.Id, item.SerialNo, item.OutAction, uuid); #region 更新資料表單一欄位 var _UpdatedItem = new ServerMessage() { Id = item.Id, UpdatedOn = DateTime.Now }; db.Configuration.AutoDetectChangesEnabled = false;//自動呼叫DetectChanges()比對所有的entry集合的每一個屬性Properties的新舊值 db.Configuration.ValidateOnSaveEnabled = false;// 因為Entity有些欄位必填,若不避開會有Validate錯誤 // var _UpdatedItem = db.ServerMessage.Where(x => x.Id == item.Id).FirstOrDefault(); db.ServerMessage.Attach(_UpdatedItem); _UpdatedItem.UpdatedOn = DateTime.Now; db.Entry(_UpdatedItem).Property(x => x.UpdatedOn).IsModified = true;// 可以直接使用這方式強制某欄位要更新,只是查詢集合耗效能而己 db.SaveChanges(); #endregion } } } } db.ChangeTracker.DetectChanges(); } await Task.Delay(1000); // Thread.CurrentThread.Join(1000); } catch (Exception ex) { logger.Error(string.Format("ServerMessageTrigger Ex:{0}", ex.ToString())); } } } async private void HealthAlarmTrigger() { } private void AddConfirmMessage(string chargePointSerialNumber, int table_id, string requestId, string action, string msg_id) { NeedConfirmMessage _needConfirmMsg = new NeedConfirmMessage(); _needConfirmMsg.Id = table_id; _needConfirmMsg.SentAction = action; _needConfirmMsg.SentOn = DateTime.Now; _needConfirmMsg.SentTimes = 1; _needConfirmMsg.ChargePointSerialNumber = chargePointSerialNumber; _needConfirmMsg.RequestId = requestId; _needConfirmMsg.SentUniqueId = msg_id; if (needConfirmActions.Contains(action)) { lock (_lockConfirmPacketList) { needConfirmPacketList.Add(_needConfirmMsg); if (action == "GetConfiguration") { Console.WriteLine("AddConfirmMessage: " + msg_id); } } } } private void RemoveConfirmMessage() { var before_3mins = DateTime.Now.AddMinutes(-3); lock (_lockConfirmPacketList) { var removeList = needConfirmPacketList.Where(x => x.SentTimes == 0 || x.SentOn < before_3mins).ToList(); foreach (var item in removeList) { needConfirmPacketList.Remove(item); } } } private bool ReConfirmMessage(MessageResult analysisResult) { bool confirmed = false; if (needConfirmActions.Contains(analysisResult.Action)) { if (analysisResult.Action == "GetConfiguration") { Console.WriteLine("ReConfirmMessage: " + analysisResult.UUID); } NeedConfirmMessage foundRequest = null; lock (_lockConfirmPacketList) { foundRequest = needConfirmPacketList.Where(x => x.SentUniqueId == analysisResult.UUID).FirstOrDefault(); } if (foundRequest != null && foundRequest.Id > 0) { foundRequest.SentTimes = 0; foundRequest.SentInterval = 0; analysisResult.RequestId = foundRequest.RequestId; using (var db = new MainDBContext()) { var sc = db.ServerMessage.Where(x => x.Id == foundRequest.Id).FirstOrDefault(); sc.InMessage = JsonConvert.SerializeObject(analysisResult.Message, Formatting.None); sc.ReceivedOn = DateTime.Now; db.SaveChanges(); Console.WriteLine(string.Format("Now:{0} ServerMessage Id:{1} ", DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss"), foundRequest.Id)); } confirmed = true; } else if (analysisResult.Action == Actions.TriggerMessage.ToString()) { confirmed = true; } else { logger.Error(string.Format("Received no record Action:{0} MessageId:{1} ", analysisResult.Action, analysisResult.UUID)); } } return confirmed; } private void RemoveClient(ClientData session) { Console.WriteLine("*********"); if (session != null) { logger.Trace("RemoveClient[" + session.ChargeBoxId + "]"); RemoveClientDic(session); try { session.m_ReceiveData -= new ClientData.OCPPClientDataEventHandler(ReceivedMessage); // session.Close(CloseReason.ServerShutdown); } catch (Exception ex) { //logger.Warn("Close client socket error!!"); logger.Warn(string.Format("Close client socket error!! {0} Msg:{1}", session.ChargeBoxId, ex.Message)); } if (session != null) { session = null; } } } private void RemoveClientDic(ClientData session) { if (!string.IsNullOrEmpty(session.ChargeBoxId)) { lock (_lockClientDic) { if (clientDic.ContainsKey(session.ChargeBoxId)) { if(clientDic[session.ChargeBoxId].SessionID == session.SessionID) { logger.Debug(String.Format("ChargeBoxId:{0} Remove SessionId:{1} Removed SessionId:{2}", session.ChargeBoxId, session.SessionID, clientDic[session.ChargeBoxId].SessionID)); clientDic.Remove(session.ChargeBoxId); logger.Trace("RemoveClient ContainsKey " + session.ChargeBoxId); } } } } } private void WarmUpLog() { using (var log = new ConnectionLogDBContext()) { log.MachineConnectionLog.ToList(); } } private void WriteMachineLog(ClientData clientData, string data, string messageType, string errorMsg = "", bool isSent = false) { try { if (clientData == null || string.IsNullOrEmpty(data)) return; using (var db = new ConnectionLogDBContext()) { string sp = "[dbo].[uspInsertMachineConnectionLog] @CreatedOn," + "@ChargeBoxId,@MessageType,@Data,@Msg,@IsSent,@EVSEEndPoint,@Session"; var dd = DateTime.Now; SqlParameter[] parameter = { new SqlParameter("CreatedOn",dd), new SqlParameter("ChargeBoxId",clientData.ChargeBoxId.Replace("'","''")), new SqlParameter("MessageType",messageType.Replace("'","''")), new SqlParameter("Data",data.Replace("'","''")), new SqlParameter("Msg",errorMsg.Replace("'","''")), new SqlParameter("IsSent",isSent), new SqlParameter("EVSEEndPoint",clientData.RemoteEndPoint==null?"123":clientData.RemoteEndPoint.ToString()), new SqlParameter("Session",clientData.SessionID==null?"123":clientData.SessionID) }; db.Database.ExecuteSqlCommand(sp, parameter); } } catch (Exception ex) { Console.WriteLine(ex.ToString()); } } } }