12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169 |
- using Dapper;
- using EVCB_OCPP.Domain;
- using EVCB_OCPP.Packet.Features;
- using EVCB_OCPP.Packet.Messages;
- using EVCB_OCPP.Packet.Messages.Basic;
- using EVCB_OCPP.Packet.Messages.Core;
- using EVCB_OCPP.WSServer.Dto;
- using EVCB_OCPP.WSServer.Helper;
- using EVCB_OCPP.WSServer.Message;
- using EVCB_OCPP.WSServer.Service;
- using Microsoft.Extensions.Hosting;
- using Newtonsoft.Json;
- using System.Data;
- using System.Diagnostics;
- using System.Security.Authentication;
- using System.Xml.Linq;
- using NLog;
- using Microsoft.Extensions.Configuration;
- using Microsoft.EntityFrameworkCore;
- using Microsoft.Extensions.DependencyInjection;
- using Microsoft.AspNetCore.Builder;
- using NLog.Extensions.Logging;
- using Microsoft.Data.SqlClient;
- using System.Collections.Concurrent;
- using Microsoft.Extensions.Logging;
- using EVCB_OCPP.WSServer.Service.WsService;
- using System.Net.WebSockets;
- using EVCB_OCPP.Domain.ConnectionFactory;
- using EVCB_OCPP.WSServer.Service.DbService;
- using EVCB_OCPP.Packet.Messages.SubTypes;
- using System.Linq;
- using Azure;
- namespace EVCB_OCPP.WSServer
- {
- public class DestroyRequest : IRequest
- {
- public string Action { get; set; }
- public bool TransactionRelated()
- {
- return false;
- }
- public bool Validate()
- {
- return true;
- }
- }
- public class ProtalServer : IHostedService
- {
- //static private ILogger logger = NLog.LogManager.GetCurrentClassLogger();
- public ProtalServer(
- ILogger<ProtalServer> logger
- , IConfiguration configuration
- //, IDbContextFactory<MainDBContext> maindbContextFactory
- , IMainDbService mainDbService
- //, IDbContextFactory<ConnectionLogDBContext> connectionLogdbContextFactory
- , ISqlConnectionFactory<WebDBConetext> webDbConnectionFactory
- , ISqlConnectionFactory<MainDBContext> mainDbConnectionFactory
- , IHostEnvironment environment
- //, IOCPPWSServerFactory ocppWSServerFactory
- , IConnectionLogdbService connectionLogdbService
- , WebDbService webDbService
- , ServerMessageService serverMessageService
- , IServiceProvider serviceProvider
- , OcppWebsocketService websocketService
- , ConfirmWaitingMessageSerevice confirmWaitingMessageSerevice
- //, StationConfigService stationConfigService
- , OuterHttpClient httpClient)
- {
- _ct = _cts.Token;
- this.logger = logger;
- this.configuration = configuration;
- //this.maindbContextFactory = maindbContextFactory;
- this.mainDbService = mainDbService;
- //this.webDbConnectionFactory = webDbConnectionFactory;
- //this.connectionLogdbContextFactory = connectionLogdbContextFactory;
- //this.ocppWSServerFactory = ocppWSServerFactory;
- this.connectionLogdbService = connectionLogdbService;
- this.webDbService = webDbService;
- this.messageService = serverMessageService;
- this.websocketService = websocketService;
- this.confirmWaitingMessageSerevice = confirmWaitingMessageSerevice;
- this.serviceProvider = serviceProvider;
- //this.stationConfigService = stationConfigService;
- this.httpClient = httpClient;
- isInDocker = !string.IsNullOrEmpty(configuration["DOTNET_RUNNING_IN_CONTAINER"]);
- // = configuration.GetConnectionString("WebDBContext");
- this.profileHandler = serviceProvider.GetService<ProfileHandler>();// new ProfileHandler(configuration, serviceProvider);
- _loadingBalanceService = new LoadingBalanceService(mainDbConnectionFactory, webDbConnectionFactory);
- WarmUpLog();
- }
- #region private fields
- private OuterHttpClient httpClient;
- private DateTime lastcheckdt = DateTime.UtcNow.AddSeconds(-20);
- private ConcurrentDictionary<string, WsClientData> clientDic = new ConcurrentDictionary<string, WsClientData>();
- //private readonly Object _lockClientDic = new object();
- //private readonly Object _lockConfirmPacketList = new object();
- private readonly ILogger<ProtalServer> logger;
- private readonly IConfiguration configuration;
- private readonly IServiceProvider serviceProvider;
- //private readonly IDbContextFactory<MainDBContext> maindbContextFactory;
- private readonly IMainDbService mainDbService;
- //private readonly ISqlConnectionFactory<WebDBConetext> webDbConnectionFactory;
- //private readonly IDbContextFactory<ConnectionLogDBContext> connectionLogdbContextFactory;
- //private readonly IOCPPWSServerFactory ocppWSServerFactory;
- private readonly IConnectionLogdbService connectionLogdbService;
- private readonly WebDbService webDbService;
- private readonly ServerMessageService messageService;
- private readonly OcppWebsocketService websocketService;
- private readonly ConfirmWaitingMessageSerevice confirmWaitingMessageSerevice;
- //private readonly StationConfigService stationConfigService;
- private readonly ProfileHandler profileHandler;//= new ProfileHandler();
- //private readonly string webConnectionString;// = ConfigurationManager.ConnectionStrings["WebDBContext"].ConnectionString;
- private readonly bool isInDocker;
- //private List<NeedConfirmMessage> needConfirmPacketList = new List<NeedConfirmMessage>();
- private DateTime checkUpdateDt = DateTime.UtcNow;
- private DateTime _CheckFeeDt = DateTime.UtcNow;
- private DateTime _CheckLBDt = DateTime.UtcNow;
- private DateTime _CheckDenyListDt = DateTime.UtcNow.AddDays(-1);
- private readonly LoadingBalanceService _loadingBalanceService;// = new LoadingBalanceService();
- private List<StationInfoDto> _StationInfo = new List<StationInfoDto>();
- private readonly List<string> needConfirmActions = new List<string>()
- {
- "GetConfiguration",
- "ChangeConfiguration",
- "RemoteStartTransaction",
- "RemoteStopTransaction",
- "ChangeAvailability",
- "ClearCache",
- "DataTransfer",
- "Reset",
- "UnlockConnector",
- "TriggerMessage",
- "GetDiagnostics",
- "UpdateFirmware",
- "GetLocalListVersion",
- "SendLocalList",
- "SetChargingProfile",
- "ClearChargingProfile",
- "GetCompositeSchedule",
- "ReserveNow",
- "CancelReservation",
- "ExtendedTriggerMessage"
- };
- private readonly List<Profile> profiles = new List<Profile>()
- {
- new CoreProfile(),
- new FirmwareManagementProfile(),
- new ReservationProfile(),
- new RemoteTriggerProfile(),
- new SmartChargingProfile(),
- new LocalAuthListManagementProfile(),
- new SecurityProfile(),
- };
- private CancellationTokenSource _cts = new CancellationTokenSource();
- private CancellationToken _ct;
- #endregion
- internal Dictionary<string, WsClientData> GetClientDic()
- {
- Dictionary<string, WsClientData> toReturn = null;
- toReturn = new Dictionary<string, WsClientData>(clientDic);
- return toReturn;
- }
- internal IReadOnlyList<Profile> Profiles => profiles.AsReadOnly();
- internal LoadingBalanceService LoadingBalanceService => _loadingBalanceService;
- internal ProfileHandler ProfileHandler => profileHandler;
- internal readonly List<Func<WsClientData, CancellationToken, Task>> InitActions = new List<Func<WsClientData, CancellationToken, Task>>();
- public async Task StartAsync(CancellationToken cancellationToken)
- {
- GlobalConfig.DenyModelNames = await webDbService.GetDenyModelNames(cancellationToken);
- Start();
- return;
- }
- public Task StopAsync(CancellationToken cancellationToken)
- {
- return Task.CompletedTask;
- }
- internal void UpdateClientDisplayPrice(string key,string price)
- {
- clientDic[key].DisplayPrice = price;
- }
- internal void SendMsg(WsClientData session, string msg, string messageType, string errorMsg = "")
- {
- Send(session,msg,messageType,errorMsg);
- }
- internal void Start()
- {
- Console.WriteLine("Starting Server...");
- if (!GlobalConfig.LoadAPPConfig(configuration))
- {
- Console.WriteLine("Please check App.Config setting .");
- return;
- }
- StartWsService();
- //OpenNetwork();
- //RunHttpConsoleService();
- return;
- if (!isInDocker)
- {
- Task consoleReadTask = new Task(RunConsoleInteractive);
- consoleReadTask.Start();
- //RunConsoleInteractive();
- return;
- }
- }
- private void StartWsService()
- {
- websocketService.NewSessionConnected += AppServer_NewSessionConnected;
- }
- private void StopWsService()
- {
- websocketService.NewSessionConnected -= AppServer_NewSessionConnected;
- }
- private async void AppServer_NewSessionConnected(object sender, WsClientData session)
- {
- logger.LogDebug(string.Format("{0} NewSessionConnected", session.Path));
- try
- {
- bool isNotSupported = session.SecWebSocketProtocol.Contains("ocpp1.6") ? false : session.SecWebSocketProtocol.Contains("ocpp2.0") ? false : true;
- if (isNotSupported)
- {
- //logger.LogDebug(string.Format("ChargeBoxId:{0} SecWebSocketProtocol:{1} NotSupported", session.ChargeBoxId, session.SecWebSocketProtocol));
- WriteMachineLog(session, string.Format("SecWebSocketProtocol:{0} NotSupported", session.SecWebSocketProtocol), "Connection", "");
- return;
- }
- TryRemoveDuplicatedSession(session);
- clientDic[session.ChargeBoxId] = session;
- session.SessionClosed += AppServer_SessionClosed;
- session.m_ReceiveData += ReceivedMessageTimeLimited;
- // logger.LogDebug("------------New " + (session == null ? "Oops" : session.ChargeBoxId));
- WriteMachineLog(session, "NewSessionConnected", "Connection", "");
- await mainDbService.UpdateMachineConnectionType(session.ChargeBoxId, session.UriScheme.Contains("wss") ? 2 : 1);
- }
- catch (Exception ex)
- {
- logger.LogError(string.Format("NewSessionConnected Ex: {0}", ex.ToString()));
- }
- }
- private void AppServer_SessionClosed(object sender, string closeReason)
- {
- if (sender is not WsClientData session)
- {
- return;
- }
- //session.SessionClosed -= AppServer_SessionClosed;
- //session.m_ReceiveData -= ReceivedMessageTimeLimited;
- //WriteMachineLog(session, string.Format("CloseReason: {0}", closeReason), "Connection", "");
- RemoveClient(session, closeReason);
- }
- private void TryRemoveDuplicatedSession(WsClientData session)
- {
- if (clientDic.ContainsKey(session.ChargeBoxId))
- {
- var oldSession = clientDic[session.ChargeBoxId];
- //WriteMachineLog(oldSession, "Duplicate Logins", "Connection", "");
- RemoveClient(oldSession, "Duplicate Logins");
- }
- }
- private void RunConsoleInteractive()
- {
- while (true)
- {
- if (Console.In is null)
- {
- break;
- }
- var input = Console.ReadLine();
- switch (input.ToLower())
- {
- case "stop":
- Console.WriteLine("Command stop");
- Stop();
- break;
- case "gc":
- Console.WriteLine("Command GC");
- GC.Collect();
- break;
- case "lc":
- {
- Console.WriteLine("Command List Clients");
- Dictionary<string, WsClientData> _copyClientDic = null;
- _copyClientDic = new Dictionary<string, WsClientData>(clientDic);
- var list = _copyClientDic.Select(c => c.Value).ToList();
- int i = 1;
- foreach (var c in list)
- {
- Console.WriteLine(i + ":" + c.ChargeBoxId + " " + c.SessionID);
- i++;
- }
- }
- break;
- case "lcn":
- {
- Console.WriteLine("Command List Customer Name");
- Dictionary<string, WsClientData> _copyClientDic = null;
- _copyClientDic = new Dictionary<string, WsClientData>(clientDic);
- var lcn = clientDic.Select(c => c.Value.CustomerName).Distinct().ToList();
- int iLcn = 1;
- foreach (var c in lcn)
- {
- Console.WriteLine(iLcn + ":" + c + ":" + clientDic.Where(z => z.Value.CustomerName == c).Count().ToString());
- iLcn++;
- }
- }
- break;
- case "help":
- Console.WriteLine("Command help!!");
- Console.WriteLine("lcn : List Customer Name");
- Console.WriteLine("gc : GC Collect");
- Console.WriteLine("lc : List Clients");
- Console.WriteLine("cls : clear console");
- Console.WriteLine("silent : silent");
- Console.WriteLine("show : show log");
- // logger.Info("rcl : show Real Connection Limit");
- break;
- case "cls":
- Console.WriteLine("Command clear");
- Console.Clear();
- break;
- case "silent":
- Console.WriteLine("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 = "Warn";
- //}
- //xe.Save("NLog.config");
- foreach (var rule in LogManager.Configuration.LoggingRules)
- {
- if (rule.RuleName != "ConsoleLog")
- {
- continue;
- }
- var isTargetRule = rule.Targets.Any(x => x.Name.ToLower() == "console");
- if (isTargetRule)
- {
- rule.SetLoggingLevels(NLog.LogLevel.Warn, NLog.LogLevel.Off);
- }
- }
- break;
- case "show":
- Console.WriteLine("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");
- foreach (var rule in LogManager.Configuration.LoggingRules)
- {
- if (rule.RuleName != "ConsoleLog")
- {
- continue;
- }
- var isTargetRule = rule.Targets.Any(x => x.Name.ToLower() == "console");
- if (isTargetRule)
- {
- rule.SetLoggingLevels(NLog.LogLevel.Trace, NLog.LogLevel.Off);
- }
- }
- break;
- case "rcl":
- break;
- default:
- break;
- }
- }
- }
- internal void Stop()
- {
- _cts?.Cancel();
- }
- async private void ReceivedMessageTimeLimited(object sender, string rawdata)
- {
- if (sender is not WsClientData session)
- {
- return;
- }
- CancellationTokenSource tokenSource = new();
- var task = ReceivedMessage(session, rawdata);
- var completedTask = await Task.WhenAny(task, Task.Delay(90_000, tokenSource.Token));
- if (completedTask != task)
- {
- logger.LogCritical("Process timeout: {0} ", rawdata);
- await task;
- return;
- }
- tokenSource.Cancel();
- return;
- }
- async private Task ReceivedMessage(WsClientData session, string rawdata)
- {
- try
- {
- 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")), analysisResult.Exception == null ? "" : analysisResult.Exception.Message);
- if (session.ResetSecurityProfile)
- {
- logger.LogError(string.Format("[{0}] ChargeBoxId:{1} ResetSecurityProfile", DateTime.UtcNow, session.ChargeBoxId));
- RemoveClient(session, "ResetSecurityProfile");
- return;
- }
- if (!analysisResult.Success)
- {
- //解析RawData就發生錯誤
- if (!string.IsNullOrEmpty(analysisResult.CallErrorMsg))
- {
- Send(session, analysisResult.CallErrorMsg, string.Format("{0} {1}", analysisResult.Action, "Error"));
- }
- else
- {
- if (analysisResult.Message == null)
- {
- string replyMsg = BasicMessageHandler.GenerateCallError(analysisResult.UUID, OCPPErrorCodes.InternalError, OCPPErrorDescription.InternalError);
- string errorMsg = string.Empty;
- if (analysisResult.Exception != null)
- {
- errorMsg = analysisResult.Exception.ToString();
- }
- Send(session, replyMsg, string.Format("{0} {1}", "unknown", "Error"), "EVSE's sent essage has parsed Failed. ");
- }
- else
- {
- BaseMessage _baseMsg = analysisResult.Message as BaseMessage;
- string replyMsg = BasicMessageHandler.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
- {
- switch (analysisResult.Id)
- {
- case BasicMessageHandler.TYPENUMBER_CALL:
- {
- if (!session.ISOCPP20)
- {
- Actions action = Convertor.GetAction(analysisResult.Action);
- try
- {
- await ProcessRequestMessage(analysisResult, session, action);
- }
- catch (Exception e)
- {
- logger.LogError($"Processing {action} exception!");
- throw;
- }
- }
- else
- {
- EVCB_OCPP20.Packet.Features.Actions action = Convertor.GetActionby20(analysisResult.Action);
- MessageResult result = new MessageResult() { Success = true };
- //ocpp20 處理
- switch (action)
- {
- case EVCB_OCPP20.Packet.Features.Actions.BootNotification:
- {
- EVCB_OCPP20.Packet.Messages.BootNotificationRequest _request = (EVCB_OCPP20.Packet.Messages.IRequest)analysisResult.Message as EVCB_OCPP20.Packet.Messages.BootNotificationRequest;
- var confirm = new EVCB_OCPP20.Packet.Messages.BootNotificationResponse() { CurrentTime = DateTime.UtcNow, Interval = 180, Status = EVCB_OCPP20.Packet.DataTypes.EnumTypes.RegistrationStatusEnumType.Pending };
- result.Message = confirm;
- result.Success = true;
- string response = BasicMessageHandler.GenerateConfirmationofOCPP20(analysisResult.UUID, (EVCB_OCPP20.Packet.Messages.IConfirmation)result.Message);
- Send(session, response, string.Format("{0} {1}", analysisResult.Action, "Response"), result.Exception == null ? string.Empty : result.Exception.ToString());
- var request = new EVCB_OCPP20.Packet.Messages.SetNetworkProfileRequest()
- {
- ConfigurationSlot = 1,
- ConnectionData = new EVCB_OCPP20.Packet.DataTypes.NetworkConnectionProfileType()
- {
- OcppVersion = EVCB_OCPP20.Packet.DataTypes.EnumTypes.OCPPVersionEnumType.OCPP20,
- OcppTransport = EVCB_OCPP20.Packet.DataTypes.EnumTypes.OCPPTransportEnumType.JSON,
- MessageTimeout = 30,
- OcppCsmsUrl = session.UriScheme == "ws" ? GlobalConfig.OCPP20_WSUrl : GlobalConfig.OCPP20_WSSUrl,
- OcppInterface = EVCB_OCPP20.Packet.DataTypes.EnumTypes.OCPPInterfaceEnumType.Wired0
- }
- };
- var uuid = session.queue20.store(request);
- string requestText = BasicMessageHandler.GenerateRequestofOCPP20(uuid, "SetNetworkProfile", request);
- Send(session, requestText, "SetNetworkProfile");
- }
- break;
- default:
- {
- logger.LogError(string.Format("We don't implement messagetype:{0} of raw data :{1} by {2}", analysisResult.Id, rawdata, session.ChargeBoxId));
- }
- break;
- }
- }
- }
- break;
- case BasicMessageHandler.TYPENUMBER_CALLRESULT:
- {
- if (!session.ISOCPP20)
- {
- Actions action = Convertor.GetAction(analysisResult.Action);
- ProcessConfirmationMessage(analysisResult, session, action);
- }
- else
- {
- EVCB_OCPP20.Packet.Features.Actions action = Convertor.GetActionby20(analysisResult.Action);
- MessageResult result = new MessageResult() { Success = true };
- //ocpp20 處理
- switch (action)
- {
- case EVCB_OCPP20.Packet.Features.Actions.SetNetworkProfile:
- {
- EVCB_OCPP20.Packet.Messages.SetNetworkProfileResponse response = (EVCB_OCPP20.Packet.Messages.IConfirmation)analysisResult.Message as EVCB_OCPP20.Packet.Messages.SetNetworkProfileResponse;
- if (response.Status == EVCB_OCPP20.Packet.DataTypes.EnumTypes.SetNetworkProfileStatusEnumType.Accepted)
- {
- var request = new EVCB_OCPP20.Packet.Messages.SetVariablesRequest()
- {
- SetVariableData = new List<EVCB_OCPP20.Packet.DataTypes.SetVariableDataType>()
- {
- new EVCB_OCPP20.Packet.DataTypes.SetVariableDataType()
- {
- Component=new EVCB_OCPP20.Packet.DataTypes.ComponentType()
- {
- Name="OCPPCommCtrlr",
- },
- AttributeType= EVCB_OCPP20.Packet.DataTypes.EnumTypes.AttributeEnumType.Actual,
- AttributeValue= JsonConvert.SerializeObject(new List<int>(){ 1 }),
- Variable=new EVCB_OCPP20.Packet.DataTypes.VariableType()
- {
- Name="NetworkConfigurationPriority",
- }
- }
- }
- };
- var uuid = session.queue20.store(request);
- string requestText = BasicMessageHandler.GenerateRequestofOCPP20(uuid, "SetVariables", request);
- Send(session, requestText, "SetVariables");
- }
- }
- break;
- case EVCB_OCPP20.Packet.Features.Actions.SetVariables:
- {
- EVCB_OCPP20.Packet.Messages.SetVariablesResponse response = (EVCB_OCPP20.Packet.Messages.IConfirmation)analysisResult.Message as EVCB_OCPP20.Packet.Messages.SetVariablesResponse;
- if (response.SetVariableResult[0].AttributeStatus == EVCB_OCPP20.Packet.DataTypes.EnumTypes.SetVariableStatusEnumType.RebootRequired)
- {
- var request = new EVCB_OCPP20.Packet.Messages.ResetRequest()
- {
- Type = EVCB_OCPP20.Packet.DataTypes.EnumTypes.ResetEnumType.OnIdle
- };
- var uuid = session.queue20.store(request);
- string requestText = BasicMessageHandler.GenerateRequestofOCPP20(uuid, "Reset", request);
- Send(session, requestText, "Reset");
- }
- }
- break;
- default:
- {
- logger.LogError(string.Format("We don't implement messagetype:{0} of raw data :{1} by {2}", analysisResult.Id, rawdata, session.ChargeBoxId));
- }
- break;
- }
- }
- }
- break;
- case BasicMessageHandler.TYPENUMBER_CALLERROR:
- {
- //只處理 丟出Request 收到Error的訊息
- if (analysisResult.Success && analysisResult.Message != null)
- {
- Actions action = Convertor.GetAction(analysisResult.Action);
- ProcessErrorMessage(analysisResult, session, action);
- }
- }
- break;
- default:
- {
- logger.LogError(string.Format("Can't analyze messagetype:{0} of raw data :{1} by {2}", analysisResult.Id, rawdata, session.ChargeBoxId));
- }
- break;
- }
- }
- }
- catch (Exception ex)
- {
- if (ex.InnerException != null)
- {
- logger.LogError(string.Format("{0} **Inner Exception :{1} ", session.ChargeBoxId + rawdata, ex.ToString()));
- }
- else
- {
- logger.LogError(string.Format("{0} **Exception :{1} ", session.ChargeBoxId, ex.ToString()));
- }
- }
- finally
- {
- await Task.Delay(10);
- }
- }
- private async Task ProcessRequestMessage(MessageResult analysisResult, WsClientData session, Actions action)
- {
- Stopwatch outter_stopwatch = Stopwatch.StartNew();
- //BasicMessageHandler msgAnalyser = new BasicMessageHandler();
- if (!session.IsCheckIn && action != Actions.BootNotification)
- {
- string response = BasicMessageHandler.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":
- {
- var replyResult = await profileHandler.ExecuteCoreRequest(action, session, (IRequest)analysisResult.Message).ConfigureAwait(false);
- var sendTimer = Stopwatch.StartNew();
- if (replyResult.Success)
- {
- string response = BasicMessageHandler.GenerateConfirmation(analysisResult.UUID, (IConfirmation)replyResult.Message);
- Send(session, response, string.Format("{0} {1}", analysisResult.Action, "Confirmation"), replyResult.Exception == null ? string.Empty : replyResult.Exception.ToString());
- if (action == Actions.BootNotification && replyResult.Message is BootNotificationConfirmation bootNotificationConfirmation)
- {
- if (session.BootStatus == BootStatus.Startup)
- {
- session.BootStatus = BootStatus.Initializing;
- session.AddTask(StartInitializeEVSE(session));
- }
- if (bootNotificationConfirmation.status == Packet.Messages.SubTypes.RegistrationStatus.Accepted)
- {
- session.IsCheckIn = true;
- var sendTask = async () => await messageService.SendDataTransferRequest(
- session.ChargeBoxId,
- messageId: "ID_FirmwareVersion",
- vendorId: "Phihong Technology",
- data: string.Empty);
- await sendTask();
- //await confirmWaitingMessageSerevice.SendAndWaitUntilResultAsync(sendTask, session.DisconnetCancellationToken);
- }
- }
- if (action == Actions.Authorize && replyResult.Message is AuthorizeConfirmation)
- {
- var authorizeRequest = (IRequest)analysisResult.Message as AuthorizeRequest;
- if (session.UserDisplayPrices.ContainsKey(authorizeRequest.idTag))
- {
- await messageService.SendDataTransferRequest(
- session.ChargeBoxId,
- messageId: "SetUserPrice",
- vendorId: "Phihong Technology",
- data: JsonConvert.SerializeObject(
- new
- {
- idToken = authorizeRequest.idTag,
- price = session.UserDisplayPrices[authorizeRequest.idTag]
- })
- );
- }
- }
- }
- else
- {
- if (action == Actions.StopTransaction && replyResult.CallErrorMsg == "Reject Response Message")
- {
- //do nothing
- logger.LogWarning(replyResult.Exception.ToString());
- }
- else
- {
- string response = BasicMessageHandler.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);
- }
- }
- sendTimer.Stop();
- if(sendTimer.ElapsedMilliseconds/1000 > 1)
- {
- logger.LogCritical("ProcessRequestMessage Send Cost {time} sec", sendTimer.ElapsedMilliseconds / 1000);
- }
- if (action == Actions.StartTransaction)
- {
- var stationId = await _loadingBalanceService.GetStationIdByMachineId(session.MachineId);
- var _powerDic = await _loadingBalanceService.GetSettingPower(stationId);
- if (_powerDic != null)
- {
- foreach (var kv in _powerDic)
- {
- try
- {
- if (kv.Value.HasValue)
- {
- profileHandler.SetChargingProfile(kv.Key, kv.Value.Value, Packet.Messages.SubTypes.ChargingRateUnitType.W);
- }
- }
- catch (Exception ex)
- {
- logger.LogError(string.Format("Set Profile Exception: {0}", ex.ToString()));
- }
- }
- }
- }
- if (action == Actions.StopTransaction)
- {
- var stationId = await _loadingBalanceService.GetStationIdByMachineId(session.MachineId);
- var _powerDic = await _loadingBalanceService.GetSettingPower(stationId);
- if (_powerDic != null)
- {
- foreach (var kv in _powerDic)
- {
- try
- {
- if (kv.Value.HasValue)
- {
- profileHandler.SetChargingProfile(kv.Key, kv.Value.Value, Packet.Messages.SubTypes.ChargingRateUnitType.W);
- }
- }
- catch (Exception ex)
- {
- logger.LogError(string.Format("Set Profile Exception: {0}", ex.ToString()));
- }
- }
- }
- }
- }
- break;
- case "FirmwareManagement":
- {
- var replyResult = await profileHandler.ExecuteFirmwareManagementRequest(action, session, (IRequest)analysisResult.Message);
- if (replyResult.Success)
- {
- string response = BasicMessageHandler.GenerateConfirmation(analysisResult.UUID, (IConfirmation)replyResult.Message);
- Send(session, response, string.Format("{0} {1}", analysisResult.Action, "Confirmation", replyResult.Exception == null ? string.Empty : replyResult.Exception.ToString()));
- }
- else
- {
- string response = BasicMessageHandler.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 "Security":
- {
- var replyResult = profileHandler.ExecuteSecurityRequest(action, session, (IRequest)analysisResult.Message);
- if (replyResult.Success)
- {
- string response = BasicMessageHandler.GenerateConfirmation(analysisResult.UUID, (IConfirmation)replyResult.Message);
- Send(session, response, string.Format("{0} {1}", analysisResult.Action, "Confirmation", replyResult.Exception == null ? string.Empty : replyResult.Exception.ToString()));
- }
- else
- {
- string response = BasicMessageHandler.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 = BasicMessageHandler.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;
- }
- }
- outter_stopwatch.Stop();
- if (outter_stopwatch.ElapsedMilliseconds > 1000)
- {
- logger.LogCritical("ProcessRequestMessage {action} too long {time} sec", action.ToString(), outter_stopwatch.ElapsedMilliseconds / 1000);
- }
- }
- async private void ProcessConfirmationMessage(MessageResult analysisResult, WsClientData session, Actions action)
- {
- BasicMessageHandler msgAnalyser = new BasicMessageHandler();
- if (await confirmWaitingMessageSerevice.TryConfirmMessage(analysisResult))
- {
- var profileName = profiles.Where(x => x.IsExisted(analysisResult.Action)).Select(x => x.Name).FirstOrDefault();
- MessageResult confirmResult = null;
- switch (profileName)
- {
- case "Core":
- {
- confirmResult = await profileHandler.ExecuteCoreConfirm(action, session, (IConfirmation)analysisResult.Message, analysisResult.RequestId);
- }
- break;
- case "FirmwareManagement":
- {
- confirmResult = await profileHandler.ExecuteFirmwareManagementConfirm(action, session, (IConfirmation)analysisResult.Message, analysisResult.RequestId);
- }
- break;
- case "RemoteTrigger":
- {
- confirmResult = await profileHandler.ExecuteRemoteTriggerConfirm(action, session, (IConfirmation)analysisResult.Message, analysisResult.RequestId);
- }
- break;
- case "Reservation":
- {
- confirmResult = await profileHandler.ExecuteReservationConfirm(action, session, (IConfirmation)analysisResult.Message, analysisResult.RequestId);
- }
- break;
- case "LocalAuthListManagement":
- {
- confirmResult = await profileHandler.ExecuteLocalAuthListManagementConfirm(action, session, (IConfirmation)analysisResult.Message, analysisResult.RequestId);
- }
- break;
- case "SmartCharging":
- {
- confirmResult = await profileHandler.ExecuteSmartChargingConfirm(action, session, (IConfirmation)analysisResult.Message, analysisResult.RequestId);
- }
- break;
- case "Security":
- {
- confirmResult = profileHandler.ExecuteSecurityConfirm(action, session, (IConfirmation)analysisResult.Message, analysisResult.RequestId);
- }
- break;
- default:
- {
- string replyMsg = BasicMessageHandler.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.LogError(string.Format("Action:{0} MessageId:{1} ExecuteConfirm Error:{2} ",
- analysisResult.Action, analysisResult.UUID, confirmResult.Exception.ToString()));
- }
- }
- else
- {
- string replyMsg = BasicMessageHandler.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 async void ProcessErrorMessage(MessageResult analysisResult, WsClientData session, Actions action)
- {
- BasicMessageHandler msgAnalyser = new BasicMessageHandler();
- if (await confirmWaitingMessageSerevice.TryConfirmMessage(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 = BasicMessageHandler.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 = BasicMessageHandler.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 async Task StartInitializeEVSE(WsClientData session)
- {
- await InitializeEVSE(session);
- session.BootStatus = BootStatus.Pending;
- }
- private async Task InitializeEVSE(WsClientData session)
- {
- // Pending mode 下發設定
- string connectorType = await mainDbService.GetMachineConnectorType(session.ChargeBoxId, session.DisconnetCancellationToken);
- if (!string.IsNullOrEmpty(connectorType) &&
- (connectorType.Contains("6") || connectorType.Contains("7") || connectorType.Contains("8") || connectorType.Contains("9")))
- {
- session.IsAC = false;
- }
- await mainDbService.SetMachineConnectionType(session.ChargeBoxId, session.UriScheme.Contains("wss") ? 2 : 1, session.DisconnetCancellationToken);
- string requestId = string.Empty;
- MessageResult response = null;
- Func<Task<string>> sendTask = null;
- var displayPriceText = await webDbService.SetDefaultFee(session);
- UpdateClientDisplayPrice(session.ChargeBoxId, displayPriceText);
- if (!string.IsNullOrEmpty(displayPriceText))
- {
- sendTask = async () => await messageService.SendChangeConfigurationRequest(
- session.ChargeBoxId, key: "DefaultPrice", value: displayPriceText);
- await confirmWaitingMessageSerevice.SendAndWaitUntilResultAsync(sendTask, session.DisconnetCancellationToken);
- }
- if (session.CustomerId == new Guid("298918C0-6BB5-421A-88CC-4922F918E85E") || session.CustomerId == new Guid("9E6BFDCC-09FB-4DAB-A428-43FE507600A3"))
- {
- await messageService.SendChangeConfigurationRequest(
- session.ChargeBoxId, key: "TimeOffset", value: "+08:00");
- }
- if (session.CustomerId == new Guid("D57D5BCC-C5B0-4031-A7AE-7516E00CB028"))
- {
- await messageService.SendChangeConfigurationRequest(
- session.ChargeBoxId, key: "StopTransactionOnInvalidId", value: "True");
- }
- foreach (var initFunction in InitActions)
- {
- await initFunction(session, session.DisconnetCancellationToken);
- }
- //await StationConfigService?.CheckAndUpdateEvseConfig(session, session.DisconnetCancellationToken);
- }
- private void Send(WsClientData session, string msg, string messageType, string errorMsg = "")
- {
- try
- {
- if (session != null)
- {
- WriteMachineLog(session, msg, messageType, errorMsg, true);
- session.Send(msg);
- }
- }
- catch (Exception ex)
- {
- logger.LogError(string.Format("Send Ex:{0}", ex.ToString()));
- }
- }
- internal async void RemoveClient(WsClientData session, string reason)
- {
- if (session == null)
- {
- return;
- }
- if (!string.IsNullOrEmpty(session.MachineId))
- logger.LogTrace("RemoveClient[{0}]:{1}", session.ChargeBoxId, reason);
- WriteMachineLog(session, string.Format("CloseReason: {0}", reason), "Connection", "");
- //if (session.Connected)
- //{
- // session.Close(CloseReason.ServerShutdown);
- //}
- RemoveClientDic(session);
- try
- {
- session.SessionClosed -= AppServer_SessionClosed;
- session.m_ReceiveData -= ReceivedMessageTimeLimited;
- if (session.State == WebSocketState.Open)
- {
- await session.Close();
- }
- // session.Close(CloseReason.ServerShutdown);
- }
- catch (Exception ex)
- {
- //logger.LogWarning("Close client socket error!!");
- logger.LogWarning(string.Format("Close client socket error!! {0} Msg:{1}", session.ChargeBoxId, ex.Message));
- }
- if (session != null)
- {
- session = null;
- }
- }
- private void RemoveClientDic(WsClientData session)
- {
- if (string.IsNullOrEmpty(session.ChargeBoxId))
- {
- return;
- }
- if (clientDic.ContainsKey(session.ChargeBoxId))
- {
- if (clientDic[session.ChargeBoxId].SessionID == session.SessionID)
- {
- logger.LogDebug(String.Format("ChargeBoxId:{0} Remove SessionId:{1} Removed SessionId:{2}", session.ChargeBoxId, session.SessionID, clientDic[session.ChargeBoxId].SessionID));
- clientDic.Remove(session.ChargeBoxId, out _);
- logger.LogTrace("RemoveClient ContainsKey " + session.ChargeBoxId);
- }
- }
- }
- private void WarmUpLog()
- {
- connectionLogdbService.WarmUpLog();
- }
- private void WriteMachineLog(WsClientData WsClientData, string data, string messageType, string errorMsg = "", bool isSent = false)
- {
- try
- {
- if (WsClientData == null || string.IsNullOrEmpty(data)) return;
- if (WsClientData.ChargeBoxId == null)
- {
- logger.LogCritical(WsClientData.Path.ToString() + "]********************session ChargeBoxId null sessionId=" + WsClientData.SessionID);
- }
- connectionLogdbService.WriteMachineLog(WsClientData, data, messageType, errorMsg, isSent);
- }
- catch (Exception ex)
- {
- //Console.WriteLine(ex.ToString());
- logger.LogError(ex,ex.Message);
- }
- }
- }
- }
|