ProtalServer.cs 59 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198
  1. using Dapper;
  2. using EVCB_OCPP.Domain;
  3. using EVCB_OCPP.Packet.Features;
  4. using EVCB_OCPP.Packet.Messages;
  5. using EVCB_OCPP.Packet.Messages.Basic;
  6. using EVCB_OCPP.Packet.Messages.Core;
  7. using EVCB_OCPP.WSServer.Dto;
  8. using EVCB_OCPP.WSServer.Helper;
  9. using EVCB_OCPP.WSServer.Message;
  10. using EVCB_OCPP.WSServer.Service;
  11. using Microsoft.Extensions.Hosting;
  12. using Newtonsoft.Json;
  13. using System.Data;
  14. using System.Diagnostics;
  15. using System.Security.Authentication;
  16. using System.Xml.Linq;
  17. using NLog;
  18. using Microsoft.Extensions.Configuration;
  19. using Microsoft.EntityFrameworkCore;
  20. using Microsoft.Extensions.DependencyInjection;
  21. using Microsoft.AspNetCore.Builder;
  22. using NLog.Extensions.Logging;
  23. using Microsoft.Data.SqlClient;
  24. using System.Collections.Concurrent;
  25. using Microsoft.Extensions.Logging;
  26. using EVCB_OCPP.WSServer.Service.WsService;
  27. using System.Net.WebSockets;
  28. using EVCB_OCPP.Domain.ConnectionFactory;
  29. using EVCB_OCPP.WSServer.Service.DbService;
  30. using EVCB_OCPP.Packet.Messages.SubTypes;
  31. using System.Linq;
  32. using Azure;
  33. namespace EVCB_OCPP.WSServer
  34. {
  35. public class DestroyRequest : IRequest
  36. {
  37. public string Action { get; set; }
  38. public bool TransactionRelated()
  39. {
  40. return false;
  41. }
  42. public bool Validate()
  43. {
  44. return true;
  45. }
  46. }
  47. public class ProtalServer : IHostedService
  48. {
  49. //static private ILogger logger = NLog.LogManager.GetCurrentClassLogger();
  50. public ProtalServer(
  51. ILogger<ProtalServer> logger
  52. , IConfiguration configuration
  53. //, IDbContextFactory<MainDBContext> maindbContextFactory
  54. , IMainDbService mainDbService
  55. //, IDbContextFactory<ConnectionLogDBContext> connectionLogdbContextFactory
  56. , ISqlConnectionFactory<WebDBConetext> webDbConnectionFactory
  57. , ISqlConnectionFactory<MainDBContext> mainDbConnectionFactory
  58. , IHostEnvironment environment
  59. //, IOCPPWSServerFactory ocppWSServerFactory
  60. , IConnectionLogdbService connectionLogdbService
  61. , WebDbService webDbService
  62. , ServerMessageService serverMessageService
  63. , IServiceProvider serviceProvider
  64. , OcppWebsocketService websocketService
  65. , ConfirmWaitingMessageSerevice confirmWaitingMessageSerevice
  66. //, StationConfigService stationConfigService
  67. , OuterHttpClient httpClient
  68. , EnvCheckService envCheckService)
  69. {
  70. _ct = _cts.Token;
  71. this.logger = logger;
  72. this.configuration = configuration;
  73. //this.maindbContextFactory = maindbContextFactory;
  74. this.mainDbService = mainDbService;
  75. //this.webDbConnectionFactory = webDbConnectionFactory;
  76. //this.connectionLogdbContextFactory = connectionLogdbContextFactory;
  77. //this.ocppWSServerFactory = ocppWSServerFactory;
  78. this.connectionLogdbService = connectionLogdbService;
  79. this.webDbService = webDbService;
  80. this.messageService = serverMessageService;
  81. this.websocketService = websocketService;
  82. this.confirmWaitingMessageSerevice = confirmWaitingMessageSerevice;
  83. this.serviceProvider = serviceProvider;
  84. //this.stationConfigService = stationConfigService;
  85. this.httpClient = httpClient;
  86. isInDocker = !string.IsNullOrEmpty(configuration["DOTNET_RUNNING_IN_CONTAINER"]);
  87. // = configuration.GetConnectionString("WebDBContext");
  88. this.profileHandler = serviceProvider.GetService<ProfileHandler>();// new ProfileHandler(configuration, serviceProvider);
  89. _loadingBalanceService = new LoadingBalanceService(mainDbConnectionFactory, webDbConnectionFactory);
  90. envCheckService.CheckVariable();
  91. WarmUpLog();
  92. }
  93. #region private fields
  94. private OuterHttpClient httpClient;
  95. private DateTime lastcheckdt = DateTime.UtcNow.AddSeconds(-20);
  96. private ConcurrentDictionary<string, WsClientData> clientDic = new ConcurrentDictionary<string, WsClientData>();
  97. //private readonly Object _lockClientDic = new object();
  98. //private readonly Object _lockConfirmPacketList = new object();
  99. private readonly ILogger<ProtalServer> logger;
  100. private readonly IConfiguration configuration;
  101. private readonly IServiceProvider serviceProvider;
  102. //private readonly IDbContextFactory<MainDBContext> maindbContextFactory;
  103. private readonly IMainDbService mainDbService;
  104. //private readonly ISqlConnectionFactory<WebDBConetext> webDbConnectionFactory;
  105. //private readonly IDbContextFactory<ConnectionLogDBContext> connectionLogdbContextFactory;
  106. //private readonly IOCPPWSServerFactory ocppWSServerFactory;
  107. private readonly IConnectionLogdbService connectionLogdbService;
  108. private readonly WebDbService webDbService;
  109. private readonly ServerMessageService messageService;
  110. private readonly OcppWebsocketService websocketService;
  111. private readonly ConfirmWaitingMessageSerevice confirmWaitingMessageSerevice;
  112. //private readonly StationConfigService stationConfigService;
  113. private readonly ProfileHandler profileHandler;//= new ProfileHandler();
  114. //private readonly string webConnectionString;// = ConfigurationManager.ConnectionStrings["WebDBContext"].ConnectionString;
  115. private readonly bool isInDocker;
  116. //private List<NeedConfirmMessage> needConfirmPacketList = new List<NeedConfirmMessage>();
  117. private DateTime checkUpdateDt = DateTime.UtcNow;
  118. private DateTime _CheckFeeDt = DateTime.UtcNow;
  119. private DateTime _CheckLBDt = DateTime.UtcNow;
  120. private DateTime _CheckDenyListDt = DateTime.UtcNow.AddDays(-1);
  121. private readonly LoadingBalanceService _loadingBalanceService;// = new LoadingBalanceService();
  122. private List<StationInfoDto> _StationInfo = new List<StationInfoDto>();
  123. private readonly List<string> needConfirmActions = new List<string>()
  124. {
  125. "GetConfiguration",
  126. "ChangeConfiguration",
  127. "RemoteStartTransaction",
  128. "RemoteStopTransaction",
  129. "ChangeAvailability",
  130. "ClearCache",
  131. "DataTransfer",
  132. "Reset",
  133. "UnlockConnector",
  134. "TriggerMessage",
  135. "GetDiagnostics",
  136. "UpdateFirmware",
  137. "GetLocalListVersion",
  138. "SendLocalList",
  139. "SetChargingProfile",
  140. "ClearChargingProfile",
  141. "GetCompositeSchedule",
  142. "ReserveNow",
  143. "CancelReservation",
  144. "ExtendedTriggerMessage"
  145. };
  146. private readonly List<Profile> profiles = new List<Profile>()
  147. {
  148. new CoreProfile(),
  149. new FirmwareManagementProfile(),
  150. new ReservationProfile(),
  151. new RemoteTriggerProfile(),
  152. new SmartChargingProfile(),
  153. new LocalAuthListManagementProfile(),
  154. new SecurityProfile(),
  155. };
  156. private CancellationTokenSource _cts = new CancellationTokenSource();
  157. private CancellationToken _ct;
  158. private Semaphore bootSemaphore = new Semaphore(10, 10);
  159. #endregion
  160. internal Dictionary<string, WsClientData> GetClientDic()
  161. {
  162. Dictionary<string, WsClientData> toReturn = null;
  163. toReturn = new Dictionary<string, WsClientData>(clientDic);
  164. return toReturn;
  165. }
  166. internal IReadOnlyList<Profile> Profiles => profiles.AsReadOnly();
  167. internal LoadingBalanceService LoadingBalanceService => _loadingBalanceService;
  168. internal ProfileHandler ProfileHandler => profileHandler;
  169. internal readonly List<Func<WsClientData, CancellationToken, Task>> InitActions = new List<Func<WsClientData, CancellationToken, Task>>();
  170. public async Task StartAsync(CancellationToken cancellationToken)
  171. {
  172. GlobalConfig.DenyModelNames = await webDbService.GetDenyModelNames(cancellationToken);
  173. Start();
  174. return;
  175. }
  176. public Task StopAsync(CancellationToken cancellationToken)
  177. {
  178. return Task.CompletedTask;
  179. }
  180. internal void UpdateClientDisplayPrice(string key,string price)
  181. {
  182. clientDic[key].DisplayPrice = price;
  183. }
  184. internal void SendMsg(WsClientData session, string msg, string messageType, string errorMsg = "")
  185. {
  186. Send(session,msg,messageType,errorMsg);
  187. }
  188. internal void Start()
  189. {
  190. Console.WriteLine("Starting Server...");
  191. if (!GlobalConfig.LoadAPPConfig(configuration))
  192. {
  193. Console.WriteLine("Please check App.Config setting .");
  194. return;
  195. }
  196. StartWsService();
  197. //OpenNetwork();
  198. //RunHttpConsoleService();
  199. return;
  200. if (!isInDocker)
  201. {
  202. Task consoleReadTask = new Task(RunConsoleInteractive);
  203. consoleReadTask.Start();
  204. //RunConsoleInteractive();
  205. return;
  206. }
  207. }
  208. private void StartWsService()
  209. {
  210. websocketService.NewSessionConnected += AppServer_NewSessionConnected;
  211. }
  212. private void StopWsService()
  213. {
  214. websocketService.NewSessionConnected -= AppServer_NewSessionConnected;
  215. }
  216. private async void AppServer_NewSessionConnected(object sender, WsClientData session)
  217. {
  218. logger.LogDebug(string.Format("{0} NewSessionConnected", session.Path));
  219. try
  220. {
  221. bool isNotSupported = session.SecWebSocketProtocol.Contains("ocpp1.6") ? false : session.SecWebSocketProtocol.Contains("ocpp2.0") ? false : true;
  222. if (isNotSupported)
  223. {
  224. //logger.LogDebug(string.Format("ChargeBoxId:{0} SecWebSocketProtocol:{1} NotSupported", session.ChargeBoxId, session.SecWebSocketProtocol));
  225. WriteMachineLog(session, string.Format("SecWebSocketProtocol:{0} NotSupported", session.SecWebSocketProtocol), "Connection", "");
  226. return;
  227. }
  228. TryRemoveDuplicatedSession(session);
  229. clientDic[session.ChargeBoxId] = session;
  230. session.SessionClosed += AppServer_SessionClosed;
  231. session.m_ReceiveData += ReceivedMessageTimeLimited;
  232. // logger.LogDebug("------------New " + (session == null ? "Oops" : session.ChargeBoxId));
  233. WriteMachineLog(session, "NewSessionConnected", "Connection", "");
  234. await mainDbService.UpdateMachineConnectionType(session.ChargeBoxId, session.UriScheme.Contains("wss") ? 2 : 1);
  235. }
  236. catch (Exception ex)
  237. {
  238. logger.LogError(string.Format("NewSessionConnected Ex: {0}", ex.ToString()));
  239. }
  240. }
  241. private void AppServer_SessionClosed(object sender, string closeReason)
  242. {
  243. if (sender is not WsClientData session)
  244. {
  245. return;
  246. }
  247. //session.SessionClosed -= AppServer_SessionClosed;
  248. //session.m_ReceiveData -= ReceivedMessageTimeLimited;
  249. //WriteMachineLog(session, string.Format("CloseReason: {0}", closeReason), "Connection", "");
  250. RemoveClient(session, closeReason);
  251. }
  252. private void TryRemoveDuplicatedSession(WsClientData session)
  253. {
  254. if (clientDic.ContainsKey(session.ChargeBoxId))
  255. {
  256. var oldSession = clientDic[session.ChargeBoxId];
  257. //WriteMachineLog(oldSession, "Duplicate Logins", "Connection", "");
  258. RemoveClient(oldSession, "Duplicate Logins");
  259. }
  260. }
  261. private void RunConsoleInteractive()
  262. {
  263. while (true)
  264. {
  265. if (Console.In is null)
  266. {
  267. break;
  268. }
  269. var input = Console.ReadLine();
  270. switch (input.ToLower())
  271. {
  272. case "stop":
  273. Console.WriteLine("Command stop");
  274. Stop();
  275. break;
  276. case "gc":
  277. Console.WriteLine("Command GC");
  278. GC.Collect();
  279. break;
  280. case "lc":
  281. {
  282. Console.WriteLine("Command List Clients");
  283. Dictionary<string, WsClientData> _copyClientDic = null;
  284. _copyClientDic = new Dictionary<string, WsClientData>(clientDic);
  285. var list = _copyClientDic.Select(c => c.Value).ToList();
  286. int i = 1;
  287. foreach (var c in list)
  288. {
  289. Console.WriteLine(i + ":" + c.ChargeBoxId + " " + c.SessionID);
  290. i++;
  291. }
  292. }
  293. break;
  294. case "lcn":
  295. {
  296. Console.WriteLine("Command List Customer Name");
  297. Dictionary<string, WsClientData> _copyClientDic = null;
  298. _copyClientDic = new Dictionary<string, WsClientData>(clientDic);
  299. var lcn = clientDic.Select(c => c.Value.CustomerName).Distinct().ToList();
  300. int iLcn = 1;
  301. foreach (var c in lcn)
  302. {
  303. Console.WriteLine(iLcn + ":" + c + ":" + clientDic.Where(z => z.Value.CustomerName == c).Count().ToString());
  304. iLcn++;
  305. }
  306. }
  307. break;
  308. case "help":
  309. Console.WriteLine("Command help!!");
  310. Console.WriteLine("lcn : List Customer Name");
  311. Console.WriteLine("gc : GC Collect");
  312. Console.WriteLine("lc : List Clients");
  313. Console.WriteLine("cls : clear console");
  314. Console.WriteLine("silent : silent");
  315. Console.WriteLine("show : show log");
  316. // logger.Info("rcl : show Real Connection Limit");
  317. break;
  318. case "cls":
  319. Console.WriteLine("Command clear");
  320. Console.Clear();
  321. break;
  322. case "silent":
  323. Console.WriteLine("Command silent");
  324. //var xe = XElement.Load("NLog.config");
  325. //var xns = xe.GetDefaultNamespace();
  326. //var minlevelattr = xe.Descendants(xns + "rules").Elements(xns + "logger")
  327. // .Where(c => c.Attribute("writeTo").Value.Equals("console")).Attributes("minlevel").FirstOrDefault();
  328. //if (minlevelattr != null)
  329. //{
  330. // minlevelattr.Value = "Warn";
  331. //}
  332. //xe.Save("NLog.config");
  333. foreach (var rule in LogManager.Configuration.LoggingRules)
  334. {
  335. if (rule.RuleName != "ConsoleLog")
  336. {
  337. continue;
  338. }
  339. var isTargetRule = rule.Targets.Any(x => x.Name.ToLower() == "console");
  340. if (isTargetRule)
  341. {
  342. rule.SetLoggingLevels(NLog.LogLevel.Warn, NLog.LogLevel.Off);
  343. }
  344. }
  345. break;
  346. case "show":
  347. Console.WriteLine("Command show");
  348. //var xe1 = XElement.Load("NLog.config");
  349. //var xns1 = xe1.GetDefaultNamespace();
  350. //var minlevelattr1 = xe1.Descendants(xns1 + "rules").Elements(xns1 + "logger")
  351. // .Where(c => c.Attribute("writeTo").Value.Equals("console")).Attributes("minlevel").FirstOrDefault();
  352. //if (minlevelattr1 != null)
  353. //{
  354. // minlevelattr1.Value = "trace";
  355. //}
  356. //xe1.Save("NLog.config");
  357. foreach (var rule in LogManager.Configuration.LoggingRules)
  358. {
  359. if (rule.RuleName != "ConsoleLog")
  360. {
  361. continue;
  362. }
  363. var isTargetRule = rule.Targets.Any(x => x.Name.ToLower() == "console");
  364. if (isTargetRule)
  365. {
  366. rule.SetLoggingLevels(NLog.LogLevel.Trace, NLog.LogLevel.Off);
  367. }
  368. }
  369. break;
  370. case "rcl":
  371. break;
  372. default:
  373. break;
  374. }
  375. }
  376. }
  377. internal void Stop()
  378. {
  379. _cts?.Cancel();
  380. }
  381. async private void ReceivedMessageTimeLimited(object sender, string rawdata)
  382. {
  383. if (sender is not WsClientData session)
  384. {
  385. return;
  386. }
  387. CancellationTokenSource tokenSource = new();
  388. var task = ReceivedMessage(session, rawdata);
  389. var completedTask = await Task.WhenAny(task, Task.Delay(90_000, tokenSource.Token));
  390. if (completedTask != task)
  391. {
  392. logger.LogCritical("Process timeout: {0} ", rawdata);
  393. await task;
  394. return;
  395. }
  396. tokenSource.Cancel();
  397. return;
  398. }
  399. async private Task ReceivedMessage(WsClientData session, string rawdata)
  400. {
  401. try
  402. {
  403. BasicMessageHandler msgAnalyser = new BasicMessageHandler();
  404. MessageResult analysisResult = msgAnalyser.AnalysisReceiveData(session, rawdata);
  405. WriteMachineLog(session, rawdata,
  406. 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);
  407. if (session.ResetSecurityProfile)
  408. {
  409. logger.LogError(string.Format("[{0}] ChargeBoxId:{1} ResetSecurityProfile", DateTime.UtcNow, session.ChargeBoxId));
  410. RemoveClient(session, "ResetSecurityProfile");
  411. return;
  412. }
  413. if (!analysisResult.Success)
  414. {
  415. //解析RawData就發生錯誤
  416. if (!string.IsNullOrEmpty(analysisResult.CallErrorMsg))
  417. {
  418. Send(session, analysisResult.CallErrorMsg, string.Format("{0} {1}", analysisResult.Action, "Error"));
  419. }
  420. else
  421. {
  422. if (analysisResult.Message == null)
  423. {
  424. string replyMsg = BasicMessageHandler.GenerateCallError(analysisResult.UUID, OCPPErrorCodes.InternalError, OCPPErrorDescription.InternalError);
  425. string errorMsg = string.Empty;
  426. if (analysisResult.Exception != null)
  427. {
  428. errorMsg = analysisResult.Exception.ToString();
  429. }
  430. Send(session, replyMsg, string.Format("{0} {1}", "unknown", "Error"), "EVSE's sent essage has parsed Failed. ");
  431. }
  432. else
  433. {
  434. BaseMessage _baseMsg = analysisResult.Message as BaseMessage;
  435. string replyMsg = BasicMessageHandler.GenerateCallError(_baseMsg.Id, OCPPErrorCodes.InternalError, OCPPErrorDescription.InternalError);
  436. string errorMsg = string.Empty;
  437. if (analysisResult.Exception != null)
  438. {
  439. errorMsg = analysisResult.Exception.ToString();
  440. }
  441. Send(session, replyMsg, string.Format("{0} {1}", analysisResult.Action, "Error"), errorMsg);
  442. }
  443. }
  444. }
  445. else
  446. {
  447. switch (analysisResult.Id)
  448. {
  449. case BasicMessageHandler.TYPENUMBER_CALL:
  450. {
  451. if (!session.ISOCPP20)
  452. {
  453. Actions action = Convertor.GetAction(analysisResult.Action);
  454. try
  455. {
  456. await ProcessRequestMessage(analysisResult, session, action);
  457. }
  458. catch (Exception e)
  459. {
  460. logger.LogError($"Processing {action} exception!");
  461. throw;
  462. }
  463. }
  464. else
  465. {
  466. EVCB_OCPP20.Packet.Features.Actions action = Convertor.GetActionby20(analysisResult.Action);
  467. MessageResult result = new MessageResult() { Success = true };
  468. //ocpp20 處理
  469. switch (action)
  470. {
  471. case EVCB_OCPP20.Packet.Features.Actions.BootNotification:
  472. {
  473. EVCB_OCPP20.Packet.Messages.BootNotificationRequest _request = (EVCB_OCPP20.Packet.Messages.IRequest)analysisResult.Message as EVCB_OCPP20.Packet.Messages.BootNotificationRequest;
  474. var confirm = new EVCB_OCPP20.Packet.Messages.BootNotificationResponse() { CurrentTime = DateTime.UtcNow, Interval = 180, Status = EVCB_OCPP20.Packet.DataTypes.EnumTypes.RegistrationStatusEnumType.Pending };
  475. result.Message = confirm;
  476. result.Success = true;
  477. string response = BasicMessageHandler.GenerateConfirmationofOCPP20(analysisResult.UUID, (EVCB_OCPP20.Packet.Messages.IConfirmation)result.Message);
  478. Send(session, response, string.Format("{0} {1}", analysisResult.Action, "Response"), result.Exception == null ? string.Empty : result.Exception.ToString());
  479. var request = new EVCB_OCPP20.Packet.Messages.SetNetworkProfileRequest()
  480. {
  481. ConfigurationSlot = 1,
  482. ConnectionData = new EVCB_OCPP20.Packet.DataTypes.NetworkConnectionProfileType()
  483. {
  484. OcppVersion = EVCB_OCPP20.Packet.DataTypes.EnumTypes.OCPPVersionEnumType.OCPP20,
  485. OcppTransport = EVCB_OCPP20.Packet.DataTypes.EnumTypes.OCPPTransportEnumType.JSON,
  486. MessageTimeout = 30,
  487. OcppCsmsUrl = session.UriScheme == "ws" ? GlobalConfig.OCPP20_WSUrl : GlobalConfig.OCPP20_WSSUrl,
  488. OcppInterface = EVCB_OCPP20.Packet.DataTypes.EnumTypes.OCPPInterfaceEnumType.Wired0
  489. }
  490. };
  491. var uuid = session.queue20.store(request);
  492. string requestText = BasicMessageHandler.GenerateRequestofOCPP20(uuid, "SetNetworkProfile", request);
  493. Send(session, requestText, "SetNetworkProfile");
  494. }
  495. break;
  496. default:
  497. {
  498. logger.LogError(string.Format("We don't implement messagetype:{0} of raw data :{1} by {2}", analysisResult.Id, rawdata, session.ChargeBoxId));
  499. }
  500. break;
  501. }
  502. }
  503. }
  504. break;
  505. case BasicMessageHandler.TYPENUMBER_CALLRESULT:
  506. {
  507. if (!session.ISOCPP20)
  508. {
  509. Actions action = Convertor.GetAction(analysisResult.Action);
  510. ProcessConfirmationMessage(analysisResult, session, action);
  511. }
  512. else
  513. {
  514. EVCB_OCPP20.Packet.Features.Actions action = Convertor.GetActionby20(analysisResult.Action);
  515. MessageResult result = new MessageResult() { Success = true };
  516. //ocpp20 處理
  517. switch (action)
  518. {
  519. case EVCB_OCPP20.Packet.Features.Actions.SetNetworkProfile:
  520. {
  521. EVCB_OCPP20.Packet.Messages.SetNetworkProfileResponse response = (EVCB_OCPP20.Packet.Messages.IConfirmation)analysisResult.Message as EVCB_OCPP20.Packet.Messages.SetNetworkProfileResponse;
  522. if (response.Status == EVCB_OCPP20.Packet.DataTypes.EnumTypes.SetNetworkProfileStatusEnumType.Accepted)
  523. {
  524. var request = new EVCB_OCPP20.Packet.Messages.SetVariablesRequest()
  525. {
  526. SetVariableData = new List<EVCB_OCPP20.Packet.DataTypes.SetVariableDataType>()
  527. {
  528. new EVCB_OCPP20.Packet.DataTypes.SetVariableDataType()
  529. {
  530. Component=new EVCB_OCPP20.Packet.DataTypes.ComponentType()
  531. {
  532. Name="OCPPCommCtrlr",
  533. },
  534. AttributeType= EVCB_OCPP20.Packet.DataTypes.EnumTypes.AttributeEnumType.Actual,
  535. AttributeValue= JsonConvert.SerializeObject(new List<int>(){ 1 }),
  536. Variable=new EVCB_OCPP20.Packet.DataTypes.VariableType()
  537. {
  538. Name="NetworkConfigurationPriority",
  539. }
  540. }
  541. }
  542. };
  543. var uuid = session.queue20.store(request);
  544. string requestText = BasicMessageHandler.GenerateRequestofOCPP20(uuid, "SetVariables", request);
  545. Send(session, requestText, "SetVariables");
  546. }
  547. }
  548. break;
  549. case EVCB_OCPP20.Packet.Features.Actions.SetVariables:
  550. {
  551. EVCB_OCPP20.Packet.Messages.SetVariablesResponse response = (EVCB_OCPP20.Packet.Messages.IConfirmation)analysisResult.Message as EVCB_OCPP20.Packet.Messages.SetVariablesResponse;
  552. if (response.SetVariableResult[0].AttributeStatus == EVCB_OCPP20.Packet.DataTypes.EnumTypes.SetVariableStatusEnumType.RebootRequired)
  553. {
  554. var request = new EVCB_OCPP20.Packet.Messages.ResetRequest()
  555. {
  556. Type = EVCB_OCPP20.Packet.DataTypes.EnumTypes.ResetEnumType.OnIdle
  557. };
  558. var uuid = session.queue20.store(request);
  559. string requestText = BasicMessageHandler.GenerateRequestofOCPP20(uuid, "Reset", request);
  560. Send(session, requestText, "Reset");
  561. }
  562. }
  563. break;
  564. default:
  565. {
  566. logger.LogError(string.Format("We don't implement messagetype:{0} of raw data :{1} by {2}", analysisResult.Id, rawdata, session.ChargeBoxId));
  567. }
  568. break;
  569. }
  570. }
  571. }
  572. break;
  573. case BasicMessageHandler.TYPENUMBER_CALLERROR:
  574. {
  575. //只處理 丟出Request 收到Error的訊息
  576. if (analysisResult.Success && analysisResult.Message != null)
  577. {
  578. Actions action = Convertor.GetAction(analysisResult.Action);
  579. ProcessErrorMessage(analysisResult, session, action);
  580. }
  581. }
  582. break;
  583. default:
  584. {
  585. logger.LogError(string.Format("Can't analyze messagetype:{0} of raw data :{1} by {2}", analysisResult.Id, rawdata, session.ChargeBoxId));
  586. }
  587. break;
  588. }
  589. }
  590. }
  591. catch (Exception ex)
  592. {
  593. if (ex.InnerException != null)
  594. {
  595. logger.LogError(string.Format("{0} **Inner Exception :{1} ", session.ChargeBoxId + rawdata, ex.ToString()));
  596. }
  597. else
  598. {
  599. logger.LogError(string.Format("{0} **Exception :{1} ", session.ChargeBoxId, ex.ToString()));
  600. }
  601. }
  602. finally
  603. {
  604. await Task.Delay(10);
  605. }
  606. }
  607. private async Task ProcessRequestMessage(MessageResult analysisResult, WsClientData session, Actions action)
  608. {
  609. Stopwatch outter_stopwatch = Stopwatch.StartNew();
  610. //BasicMessageHandler msgAnalyser = new BasicMessageHandler();
  611. if (!session.IsCheckIn && action != Actions.BootNotification)
  612. {
  613. if (analysisResult.Message is IRequest request && !request.TransactionRelated())
  614. {
  615. string response = BasicMessageHandler.GenerateCallError(analysisResult.UUID, OCPPErrorCodes.GenericError, OCPPErrorDescription.NotChecked);
  616. Send(session, response, string.Format("{0} {1}", analysisResult.Action, "Error"));
  617. }
  618. }
  619. else
  620. {
  621. var profileName = profiles.Where(x => x.IsExisted(analysisResult.Action)).Select(x => x.Name).FirstOrDefault();
  622. switch (profileName)
  623. {
  624. case "Core":
  625. {
  626. var replyResult = await profileHandler.ExecuteCoreRequest(action, session, (IRequest)analysisResult.Message).ConfigureAwait(false);
  627. var sendTimer = Stopwatch.StartNew();
  628. if (replyResult.Success)
  629. {
  630. string response = BasicMessageHandler.GenerateConfirmation(analysisResult.UUID, (IConfirmation)replyResult.Message);
  631. Send(session, response, string.Format("{0} {1}", analysisResult.Action, "Confirmation"), replyResult.Exception == null ? string.Empty : replyResult.Exception.ToString());
  632. if (action == Actions.BootNotification &&
  633. replyResult.Message is BootNotificationConfirmation bootNotificationConfirmation &&
  634. analysisResult.Message is BootNotificationRequest bootNotificationRequest)
  635. {
  636. session.ChargePointVendor = bootNotificationRequest.chargePointVendor;
  637. if (session.BootStatus == BootStatus.Startup
  638. //&& bootSemaphore.WaitOne(0)
  639. )
  640. {
  641. session.BootStatus = BootStatus.Initializing;
  642. session.AddTask(StartInitializeEVSE(session));
  643. }
  644. if (bootNotificationConfirmation.status == Packet.Messages.SubTypes.RegistrationStatus.Accepted)
  645. {
  646. session.IsCheckIn = true;
  647. var sendTask = async () => await messageService.SendDataTransferRequest(
  648. session.ChargeBoxId,
  649. messageId: "ID_FirmwareVersion",
  650. vendorId: "Phihong Technology",
  651. data: string.Empty);
  652. await sendTask();
  653. //await confirmWaitingMessageSerevice.SendAndWaitUntilResultAsync(sendTask, session.DisconnetCancellationToken);
  654. }
  655. }
  656. if (action == Actions.Authorize && replyResult.Message is AuthorizeConfirmation)
  657. {
  658. var authorizeRequest = (IRequest)analysisResult.Message as AuthorizeRequest;
  659. if (session.UserDisplayPrices.ContainsKey(authorizeRequest.idTag))
  660. {
  661. await messageService.SendDataTransferRequest(
  662. session.ChargeBoxId,
  663. messageId: "SetUserPrice",
  664. vendorId: "Phihong Technology",
  665. data: JsonConvert.SerializeObject(
  666. new
  667. {
  668. idToken = authorizeRequest.idTag,
  669. price = session.UserDisplayPrices[authorizeRequest.idTag]
  670. })
  671. );
  672. }
  673. }
  674. }
  675. else
  676. {
  677. if (action == Actions.StopTransaction && replyResult.CallErrorMsg == "Reject Response Message")
  678. {
  679. //do nothing
  680. logger.LogWarning(replyResult.Exception.ToString());
  681. }
  682. else
  683. {
  684. string response = BasicMessageHandler.GenerateCallError(analysisResult.UUID, OCPPErrorCodes.InternalError, OCPPErrorDescription.InternalError);
  685. string errorMsg = replyResult.Exception != null ? replyResult.Exception.ToString() : string.Empty;
  686. Send(session, response, string.Format("{0} {1}", analysisResult.Action, "Error"), errorMsg);
  687. }
  688. }
  689. sendTimer.Stop();
  690. if(sendTimer.ElapsedMilliseconds/1000 > 1)
  691. {
  692. logger.LogCritical("ProcessRequestMessage Send Cost {time} sec", sendTimer.ElapsedMilliseconds / 1000);
  693. }
  694. if (action == Actions.StartTransaction)
  695. {
  696. var stationId = await _loadingBalanceService.GetStationIdByMachineId(session.MachineId);
  697. var _powerDic = await _loadingBalanceService.GetSettingPower(stationId);
  698. if (_powerDic != null)
  699. {
  700. foreach (var kv in _powerDic)
  701. {
  702. try
  703. {
  704. if (kv.Value.HasValue)
  705. {
  706. profileHandler.SetChargingProfile(kv.Key, kv.Value.Value, Packet.Messages.SubTypes.ChargingRateUnitType.W);
  707. }
  708. }
  709. catch (Exception ex)
  710. {
  711. logger.LogError(string.Format("Set Profile Exception: {0}", ex.ToString()));
  712. }
  713. }
  714. }
  715. }
  716. if (action == Actions.StopTransaction)
  717. {
  718. var stationId = await _loadingBalanceService.GetStationIdByMachineId(session.MachineId);
  719. var _powerDic = await _loadingBalanceService.GetSettingPower(stationId);
  720. if (_powerDic != null)
  721. {
  722. foreach (var kv in _powerDic)
  723. {
  724. try
  725. {
  726. if (kv.Value.HasValue)
  727. {
  728. profileHandler.SetChargingProfile(kv.Key, kv.Value.Value, Packet.Messages.SubTypes.ChargingRateUnitType.W);
  729. }
  730. }
  731. catch (Exception ex)
  732. {
  733. logger.LogError(string.Format("Set Profile Exception: {0}", ex.ToString()));
  734. }
  735. }
  736. }
  737. }
  738. }
  739. break;
  740. case "FirmwareManagement":
  741. {
  742. var replyResult = await profileHandler.ExecuteFirmwareManagementRequest(action, session, (IRequest)analysisResult.Message);
  743. if (replyResult.Success)
  744. {
  745. string response = BasicMessageHandler.GenerateConfirmation(analysisResult.UUID, (IConfirmation)replyResult.Message);
  746. Send(session, response, string.Format("{0} {1}", analysisResult.Action, "Confirmation", replyResult.Exception == null ? string.Empty : replyResult.Exception.ToString()));
  747. }
  748. else
  749. {
  750. string response = BasicMessageHandler.GenerateCallError(analysisResult.UUID, OCPPErrorCodes.InternalError, OCPPErrorDescription.InternalError);
  751. string errorMsg = replyResult.Exception != null ? replyResult.Exception.ToString() : string.Empty;
  752. Send(session, response, string.Format("{0} {1}", analysisResult.Action, "Error"), errorMsg);
  753. }
  754. }
  755. break;
  756. case "Security":
  757. {
  758. var replyResult = profileHandler.ExecuteSecurityRequest(action, session, (IRequest)analysisResult.Message);
  759. if (replyResult.Success)
  760. {
  761. string response = BasicMessageHandler.GenerateConfirmation(analysisResult.UUID, (IConfirmation)replyResult.Message);
  762. Send(session, response, string.Format("{0} {1}", analysisResult.Action, "Confirmation", replyResult.Exception == null ? string.Empty : replyResult.Exception.ToString()));
  763. }
  764. else
  765. {
  766. string response = BasicMessageHandler.GenerateCallError(analysisResult.UUID, OCPPErrorCodes.InternalError, OCPPErrorDescription.InternalError);
  767. string errorMsg = replyResult.Exception != null ? replyResult.Exception.ToString() : string.Empty;
  768. Send(session, response, string.Format("{0} {1}", analysisResult.Action, "Error"), errorMsg);
  769. }
  770. }
  771. break;
  772. default:
  773. {
  774. string replyMsg = BasicMessageHandler.GenerateCallError(analysisResult.UUID, OCPPErrorCodes.InternalError, OCPPErrorDescription.InternalError);
  775. string errorMsg = string.Format("Couldn't find action name: {0} of profile", action);
  776. Send(session, replyMsg, string.Format("{0} {1}", analysisResult.Action, "Error"), errorMsg);
  777. }
  778. break;
  779. }
  780. }
  781. outter_stopwatch.Stop();
  782. if (outter_stopwatch.ElapsedMilliseconds > 1000)
  783. {
  784. logger.LogCritical("ProcessRequestMessage {action} too long {time} sec", action.ToString(), outter_stopwatch.ElapsedMilliseconds / 1000);
  785. }
  786. }
  787. async private void ProcessConfirmationMessage(MessageResult analysisResult, WsClientData session, Actions action)
  788. {
  789. BasicMessageHandler msgAnalyser = new BasicMessageHandler();
  790. if (await confirmWaitingMessageSerevice.TryConfirmMessage(analysisResult))
  791. {
  792. var profileName = profiles.Where(x => x.IsExisted(analysisResult.Action)).Select(x => x.Name).FirstOrDefault();
  793. MessageResult confirmResult = null;
  794. switch (profileName)
  795. {
  796. case "Core":
  797. {
  798. confirmResult = await profileHandler.ExecuteCoreConfirm(action, session, (IConfirmation)analysisResult.Message, analysisResult.RequestId);
  799. }
  800. break;
  801. case "FirmwareManagement":
  802. {
  803. confirmResult = await profileHandler.ExecuteFirmwareManagementConfirm(action, session, (IConfirmation)analysisResult.Message, analysisResult.RequestId);
  804. }
  805. break;
  806. case "RemoteTrigger":
  807. {
  808. confirmResult = await profileHandler.ExecuteRemoteTriggerConfirm(action, session, (IConfirmation)analysisResult.Message, analysisResult.RequestId);
  809. }
  810. break;
  811. case "Reservation":
  812. {
  813. confirmResult = await profileHandler.ExecuteReservationConfirm(action, session, (IConfirmation)analysisResult.Message, analysisResult.RequestId);
  814. }
  815. break;
  816. case "LocalAuthListManagement":
  817. {
  818. confirmResult = await profileHandler.ExecuteLocalAuthListManagementConfirm(action, session, (IConfirmation)analysisResult.Message, analysisResult.RequestId);
  819. }
  820. break;
  821. case "SmartCharging":
  822. {
  823. confirmResult = await profileHandler.ExecuteSmartChargingConfirm(action, session, (IConfirmation)analysisResult.Message, analysisResult.RequestId);
  824. }
  825. break;
  826. case "Security":
  827. {
  828. confirmResult = profileHandler.ExecuteSecurityConfirm(action, session, (IConfirmation)analysisResult.Message, analysisResult.RequestId);
  829. }
  830. break;
  831. default:
  832. {
  833. string replyMsg = BasicMessageHandler.GenerateCallError(analysisResult.UUID, OCPPErrorCodes.InternalError, OCPPErrorDescription.InternalError);
  834. string errorMsg = string.Format("Couldn't find action name: {0} of profile", action);
  835. Send(session, replyMsg, string.Format("{0} {1}", analysisResult.Action, "Error"), errorMsg);
  836. }
  837. break;
  838. }
  839. if (confirmResult == null || !confirmResult.Success)
  840. {
  841. logger.LogError(string.Format("Action:{0} MessageId:{1} ExecuteConfirm Error:{2} ",
  842. analysisResult.Action, analysisResult.UUID, confirmResult.Exception.ToString()));
  843. }
  844. }
  845. else
  846. {
  847. string replyMsg = BasicMessageHandler.GenerateCallError(analysisResult.UUID, OCPPErrorCodes.InternalError, OCPPErrorDescription.InternalError);
  848. string errorMsg = string.Format("Action:{0} MessageId:{1} didn't exist in confirm message", analysisResult.Action, analysisResult.UUID);
  849. Send(session, replyMsg, string.Format("{0} {1}", analysisResult.Action, "Error"), errorMsg);
  850. }
  851. }
  852. private async void ProcessErrorMessage(MessageResult analysisResult, WsClientData session, Actions action)
  853. {
  854. BasicMessageHandler msgAnalyser = new BasicMessageHandler();
  855. if (await confirmWaitingMessageSerevice.TryConfirmMessage(analysisResult))
  856. {
  857. var profileName = profiles.Where(x => x.IsExisted(analysisResult.Action)).Select(x => x.Name).FirstOrDefault();
  858. switch (profileName)
  859. {
  860. case "Core":
  861. {
  862. _ = profileHandler.ReceivedCoreError(action, analysisResult.ReceivedErrorCode, session, analysisResult.RequestId);
  863. }
  864. break;
  865. case "FirmwareManagement":
  866. {
  867. _ = profileHandler.ReceivedFirmwareManagementError(action, analysisResult.ReceivedErrorCode, session, analysisResult.RequestId);
  868. }
  869. break;
  870. case "RemoteTrigger":
  871. {
  872. _ = profileHandler.ReceivedRemoteTriggerError(action, analysisResult.ReceivedErrorCode, session, analysisResult.RequestId);
  873. }
  874. break;
  875. case "Reservation":
  876. {
  877. _ = profileHandler.ExecuteReservationError(action, analysisResult.ReceivedErrorCode, session, analysisResult.RequestId);
  878. }
  879. break;
  880. case "LocalAuthListManagement":
  881. {
  882. _ = profileHandler.ReceivedLocalAuthListManagementError(action, analysisResult.ReceivedErrorCode, session, analysisResult.RequestId);
  883. }
  884. break;
  885. case "SmartCharging":
  886. {
  887. _ = profileHandler.ReceivedSmartChargingError(action, analysisResult.ReceivedErrorCode, session, analysisResult.RequestId);
  888. }
  889. break;
  890. default:
  891. {
  892. string replyMsg = BasicMessageHandler.GenerateCallError(analysisResult.UUID, OCPPErrorCodes.InternalError, OCPPErrorDescription.InternalError);
  893. string errorMsg = string.Format("Couldn't find action name: {0} of profile", action);
  894. Send(session, replyMsg, string.Format("{0} {1}", analysisResult.Action, "Error"), errorMsg);
  895. }
  896. break;
  897. }
  898. }
  899. else
  900. {
  901. string replyMsg = BasicMessageHandler.GenerateCallError(analysisResult.UUID, OCPPErrorCodes.InternalError, OCPPErrorDescription.InternalError);
  902. string errorMsg = string.Format("Action:{0} MessageId:{1} didn't exist in confirm message", analysisResult.Action, analysisResult.UUID);
  903. Send(session, replyMsg, string.Format("{0} {1}", analysisResult.Action, "Error"), errorMsg);
  904. }
  905. }
  906. private async Task StartInitializeEVSE(WsClientData session)
  907. {
  908. try
  909. {
  910. await InitializeEVSE(session);
  911. }
  912. catch (Exception e)
  913. {
  914. logger.LogCritical("StartInitializeEVSE:{errormsg}", e.Message);
  915. logger.LogCritical("StartInitializeEVSE:{errorStackTrace}", e.StackTrace);
  916. }
  917. finally
  918. {
  919. session.BootStatus = BootStatus.Pending;
  920. //bootSemaphore.Release();
  921. }
  922. }
  923. private async Task InitializeEVSE(WsClientData session)
  924. {
  925. // Pending mode 下發設定
  926. string connectorType = await mainDbService.GetMachineConnectorType(session.ChargeBoxId, session.DisconnetCancellationToken);
  927. if (!string.IsNullOrEmpty(connectorType) &&
  928. (connectorType.Contains("6") || connectorType.Contains("7") || connectorType.Contains("8") || connectorType.Contains("9")))
  929. {
  930. session.IsAC = false;
  931. }
  932. await mainDbService.SetMachineConnectionType(session.ChargeBoxId, session.UriScheme.Contains("wss") ? 2 : 1, session.DisconnetCancellationToken);
  933. string requestId = string.Empty;
  934. var displayPriceText = await webDbService.SetDefaultFee(session);
  935. UpdateClientDisplayPrice(session.ChargeBoxId, displayPriceText);
  936. Func<string, Task<string>> sendTask;
  937. sendTask = async (string serialNo) => await messageService.SendGetEVSEConfigureRequest(session.ChargeBoxId, serialNo: serialNo);
  938. var response = await confirmWaitingMessageSerevice.SendAndWaitUntilResultAsync(sendTask, session.DisconnetCancellationToken);
  939. if (!string.IsNullOrEmpty(displayPriceText))
  940. {
  941. sendTask = async (string serialNo) => await messageService.SendChangeConfigurationRequest(
  942. session.ChargeBoxId, key: "DefaultPrice", value: displayPriceText, serialNo: serialNo);
  943. await confirmWaitingMessageSerevice.SendAndWaitUntilResultAsync(sendTask, session.DisconnetCancellationToken);
  944. }
  945. if (session.CustomerId == new Guid("298918C0-6BB5-421A-88CC-4922F918E85E") || session.CustomerId == new Guid("9E6BFDCC-09FB-4DAB-A428-43FE507600A3"))
  946. {
  947. await messageService.SendChangeConfigurationRequest(
  948. session.ChargeBoxId, key: "TimeOffset", value: "+08:00");
  949. }
  950. if (session.CustomerId == new Guid("D57D5BCC-C5B0-4031-A7AE-7516E00CB028"))
  951. {
  952. await messageService.SendChangeConfigurationRequest(
  953. session.ChargeBoxId, key: "StopTransactionOnInvalidId", value: "True");
  954. }
  955. //foreach (var initFunction in InitActions)
  956. for (var index = 0; index < InitActions.Count; index++)
  957. {
  958. var initFunction = InitActions[index];
  959. await initFunction(session, session.DisconnetCancellationToken);
  960. }
  961. //await StationConfigService?.CheckAndUpdateEvseConfig(session, session.DisconnetCancellationToken);
  962. }
  963. private void Send(WsClientData session, string msg, string messageType, string errorMsg = "")
  964. {
  965. try
  966. {
  967. if (session != null)
  968. {
  969. WriteMachineLog(session, msg, messageType, errorMsg, true);
  970. session.Send(msg);
  971. }
  972. }
  973. catch (Exception ex)
  974. {
  975. logger.LogError(string.Format("Send Ex:{0}", ex.ToString()));
  976. }
  977. }
  978. internal async void RemoveClient(WsClientData session, string reason)
  979. {
  980. if (session == null)
  981. {
  982. return;
  983. }
  984. if (!string.IsNullOrEmpty(session.MachineId))
  985. logger.LogTrace("RemoveClient[{0}]:{1}", session.ChargeBoxId, reason);
  986. WriteMachineLog(session, string.Format("CloseReason: {0}", reason), "Connection", "");
  987. //if (session.Connected)
  988. //{
  989. // session.Close(CloseReason.ServerShutdown);
  990. //}
  991. RemoveClientDic(session);
  992. try
  993. {
  994. session.SessionClosed -= AppServer_SessionClosed;
  995. session.m_ReceiveData -= ReceivedMessageTimeLimited;
  996. if (session.State == WebSocketState.Open)
  997. {
  998. await session.Close();
  999. }
  1000. // session.Close(CloseReason.ServerShutdown);
  1001. }
  1002. catch (Exception ex)
  1003. {
  1004. //logger.LogWarning("Close client socket error!!");
  1005. logger.LogWarning(string.Format("Close client socket error!! {0} Msg:{1}", session.ChargeBoxId, ex.Message));
  1006. }
  1007. if (session != null)
  1008. {
  1009. session = null;
  1010. }
  1011. }
  1012. private void RemoveClientDic(WsClientData session)
  1013. {
  1014. if (string.IsNullOrEmpty(session.ChargeBoxId))
  1015. {
  1016. return;
  1017. }
  1018. if (clientDic.ContainsKey(session.ChargeBoxId))
  1019. {
  1020. if (clientDic[session.ChargeBoxId].SessionID == session.SessionID)
  1021. {
  1022. logger.LogDebug(String.Format("ChargeBoxId:{0} Remove SessionId:{1} Removed SessionId:{2}", session.ChargeBoxId, session.SessionID, clientDic[session.ChargeBoxId].SessionID));
  1023. clientDic.Remove(session.ChargeBoxId, out _);
  1024. logger.LogTrace("RemoveClient ContainsKey " + session.ChargeBoxId);
  1025. }
  1026. }
  1027. }
  1028. private void WarmUpLog()
  1029. {
  1030. connectionLogdbService.WarmUpLog();
  1031. }
  1032. private void WriteMachineLog(WsClientData WsClientData, string data, string messageType, string errorMsg = "", bool isSent = false)
  1033. {
  1034. try
  1035. {
  1036. if (WsClientData == null || string.IsNullOrEmpty(data)) return;
  1037. if (WsClientData.ChargeBoxId == null)
  1038. {
  1039. logger.LogCritical(WsClientData.Path.ToString() + "]********************session ChargeBoxId null sessionId=" + WsClientData.SessionID);
  1040. }
  1041. connectionLogdbService.WriteMachineLog(WsClientData, data, messageType, errorMsg, isSent);
  1042. }
  1043. catch (Exception ex)
  1044. {
  1045. //Console.WriteLine(ex.ToString());
  1046. logger.LogError(ex,ex.Message);
  1047. }
  1048. }
  1049. }
  1050. }