ProtalServer.cs 73 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543
  1. using EVCB_OCPP.Domain;
  2. using EVCB_OCPP.Domain.Models.Database;
  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.Packet.Messages.RemoteTrigger;
  8. using EVCB_OCPP.WSServer.Helper;
  9. using EVCB_OCPP.WSServer.Message;
  10. using EVCB_OCPP.WSServer.Service;
  11. using Newtonsoft.Json;
  12. using NLog;
  13. using OCPPServer.Protocol;
  14. using OCPPServer.SubProtocol;
  15. using SuperSocket.SocketBase;
  16. using SuperSocket.SocketBase.Config;
  17. using System;
  18. using System.Collections.Generic;
  19. using System.Configuration;
  20. using System.Data.Entity;
  21. using System.Data.SqlClient;
  22. using System.Diagnostics;
  23. using System.Linq;
  24. using System.Security.Authentication;
  25. using System.Threading;
  26. using System.Threading.Tasks;
  27. using System.Xml.Linq;
  28. namespace EVCB_OCPP.WSServer
  29. {
  30. public class DestroyRequest : IRequest
  31. {
  32. public string Action { get; set; }
  33. public bool TransactionRelated()
  34. {
  35. return false;
  36. }
  37. public bool Validate()
  38. {
  39. return true;
  40. }
  41. }
  42. internal class ProtalServer
  43. {
  44. static private ILogger logger = NLog.LogManager.GetCurrentClassLogger();
  45. private DateTime lastcheckdt = DateTime.Now.AddSeconds(-20);
  46. private Dictionary<string, ClientData> clientDic = new Dictionary<string, ClientData>();
  47. private readonly Object _lockClientDic = new object();
  48. private readonly Object _lockConfirmPacketList = new object();
  49. private ProfileHandler profileHandler = new ProfileHandler();
  50. private List<NeedConfirmMessage> needConfirmPacketList = new List<NeedConfirmMessage>();
  51. private DateTime checkUpdateDt = DateTime.Now;
  52. private LoadingBalanceService _loadingBalanceService = new LoadingBalanceService();
  53. private List<string> needConfirmActions = new List<string>()
  54. {
  55. "GetConfiguration",
  56. "ChangeConfiguration",
  57. "RemoteStartTransaction",
  58. "RemoteStopTransaction",
  59. "ChangeAvailability",
  60. "ClearCache",
  61. "DataTransfer",
  62. "Reset",
  63. "UnlockConnector",
  64. "TriggerMessage",
  65. "GetDiagnostics",
  66. "UpdateFirmware",
  67. "GetLocalListVersion",
  68. "SendLocalList",
  69. "SetChargingProfile",
  70. "ClearChargingProfile",
  71. "GetCompositeSchedule",
  72. "ReserveNow",
  73. "CancelReservation",
  74. "ExtendedTriggerMessage"
  75. };
  76. private List<Profile> profiles = new List<Profile>()
  77. {
  78. new CoreProfile(),
  79. new FirmwareManagementProfile(),
  80. new ReservationProfile(),
  81. new RemoteTriggerProfile(),
  82. new SmartChargingProfile(),
  83. new LocalAuthListManagementProfile(),
  84. new SecurityProfile(),
  85. };
  86. private CancellationTokenSource _cts = new CancellationTokenSource();
  87. private CancellationToken _ct;
  88. private string _ocpp20NetworkSetting = "";
  89. internal ProtalServer()
  90. {
  91. _ct = _cts.Token;
  92. WarmUpLog();
  93. }
  94. internal void Start()
  95. {
  96. if (!GlobalConfig.LoadAPPConfig())
  97. {
  98. Console.WriteLine("Please check App.Config setting .");
  99. return;
  100. }
  101. OpenNetwork();
  102. Task serverCommandTask = new Task(ServerMessageTrigger, _ct);
  103. serverCommandTask.Start();
  104. Task serverUpdateTask = new Task(ServerUpdateTrigger, _ct);
  105. serverUpdateTask.Start();
  106. Task serverBeatTask = new Task(HeartBeatCheckTrigger, _ct);
  107. serverBeatTask.Start();
  108. Task serverHealthTask = new Task(HealthCheckTrigger, _ct);
  109. serverHealthTask.Start();
  110. var ocpp20NetworkSetting = new EVCB_OCPP20.Packet.Messages.SetNetworkProfileRequest()
  111. {
  112. ConfigurationSlot = 0,
  113. ConnectionData = new EVCB_OCPP20.Packet.DataTypes.NetworkConnectionProfileType()
  114. {
  115. OcppVersion = EVCB_OCPP20.Packet.DataTypes.EnumTypes.OCPPVersionEnumType.OCPP20,
  116. OcppTransport = EVCB_OCPP20.Packet.DataTypes.EnumTypes.OCPPTransportEnumType.JSON,
  117. MessageTimeout = 30,
  118. OcppCsmsUrl = "ws://ocpp.phihong.com.tw:5004",
  119. OcppInterface = EVCB_OCPP20.Packet.DataTypes.EnumTypes.OCPPInterfaceEnumType.Wired0
  120. }
  121. };
  122. _ocpp20NetworkSetting = JsonConvert.SerializeObject(ocpp20NetworkSetting, Formatting.None);
  123. while (true)
  124. {
  125. var input = Console.ReadLine();
  126. switch (input.ToLower())
  127. {
  128. case "stop":
  129. logger.Info("Command stop");
  130. Stop();
  131. break;
  132. case "gc":
  133. logger.Info("Command GC");
  134. GC.Collect();
  135. break;
  136. case "lc":
  137. {
  138. logger.Info("Command List Clients");
  139. Dictionary<string, ClientData> _copyClientDic = null;
  140. lock (_lockClientDic)
  141. {
  142. _copyClientDic = new Dictionary<string, ClientData>(clientDic);
  143. }
  144. var list = _copyClientDic.Select(c => c.Value).ToList();
  145. int i = 1;
  146. foreach (var c in list)
  147. {
  148. logger.Info(i + ":" + c.ChargeBoxId + " " + c.SessionID);
  149. i++;
  150. }
  151. }
  152. break;
  153. case "lcn":
  154. {
  155. logger.Info("Command List Customer Name");
  156. Dictionary<string, ClientData> _copyClientDic = null;
  157. lock (_lockClientDic)
  158. {
  159. _copyClientDic = new Dictionary<string, ClientData>(clientDic);
  160. }
  161. var lcn = clientDic.Select(c => c.Value.CustomerId).Distinct().ToList();
  162. int iLcn = 1;
  163. foreach (var c in lcn)
  164. {
  165. logger.Info(iLcn + ":" + c + ":" + clientDic.Where(z => z.Value.CustomerId == c).Count().ToString());
  166. iLcn++;
  167. }
  168. }
  169. break;
  170. case "help":
  171. logger.Info("Command help!!");
  172. logger.Info("lcn : List Customer Name");
  173. logger.Info("gc : GC Collect");
  174. logger.Info("lc : List Clients");
  175. logger.Info("cls : clear console");
  176. logger.Info("silent : silent");
  177. logger.Info("show : show log");
  178. // logger.Info("rcl : show Real Connection Limit");
  179. break;
  180. case "cls":
  181. logger.Info("Command clear");
  182. Console.Clear();
  183. break;
  184. case "silent":
  185. logger.Info("Command silent");
  186. var xe = XElement.Load("NLog.config");
  187. var xns = xe.GetDefaultNamespace();
  188. var minlevelattr = xe.Descendants(xns + "rules").Elements(xns + "logger")
  189. .Where(c => c.Attribute("writeTo").Value.Equals("console")).Attributes("minlevel").FirstOrDefault();
  190. if (minlevelattr != null)
  191. {
  192. minlevelattr.Value = "info";
  193. }
  194. xe.Save("NLog.config");
  195. break;
  196. case "show":
  197. logger.Info("Command show");
  198. var xe1 = XElement.Load("NLog.config");
  199. var xns1 = xe1.GetDefaultNamespace();
  200. var minlevelattr1 = xe1.Descendants(xns1 + "rules").Elements(xns1 + "logger")
  201. .Where(c => c.Attribute("writeTo").Value.Equals("console")).Attributes("minlevel").FirstOrDefault();
  202. if (minlevelattr1 != null)
  203. {
  204. minlevelattr1.Value = "trace";
  205. }
  206. xe1.Save("NLog.config");
  207. break;
  208. case "rcl":
  209. break;
  210. default:
  211. break;
  212. }
  213. }
  214. }
  215. internal void Stop()
  216. {
  217. if (_cts != null)
  218. {
  219. _cts.Cancel();
  220. }
  221. }
  222. private void CheckVersion(string chargeBoxId)
  223. {
  224. if (string.IsNullOrEmpty(chargeBoxId)) return;
  225. using (var db = new MainDBContext())
  226. {
  227. db.ServerMessage.Add(new ServerMessage()
  228. {
  229. ChargeBoxId = chargeBoxId,
  230. CreatedBy = "Server",
  231. CreatedOn = DateTime.Now,
  232. OutAction = Actions.DataTransfer.ToString(),
  233. OutRequest = JsonConvert.SerializeObject(
  234. new DataTransferRequest()
  235. {
  236. messageId = "ID_FirmwareVersion",
  237. vendorId = "Phihong Technology"
  238. },
  239. new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore, Formatting = Formatting.None }),
  240. SerialNo = Guid.NewGuid().ToString(),
  241. InMessage = string.Empty
  242. });
  243. db.SaveChanges();
  244. }
  245. }
  246. private void CheckEVSEConfigure(string chargeBoxId)
  247. {
  248. if (string.IsNullOrEmpty(chargeBoxId)) return;
  249. using (var db = new MainDBContext())
  250. {
  251. db.ServerMessage.Add(new ServerMessage()
  252. {
  253. ChargeBoxId = chargeBoxId,
  254. CreatedBy = "Server",
  255. CreatedOn = DateTime.Now,
  256. OutAction = Actions.GetConfiguration.ToString(),
  257. OutRequest = JsonConvert.SerializeObject(
  258. new GetConfigurationRequest()
  259. {
  260. key = new List<string>()
  261. },
  262. new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore, Formatting = Formatting.None }),
  263. SerialNo = Guid.NewGuid().ToString(),
  264. InMessage = string.Empty
  265. }); ;
  266. db.SaveChanges();
  267. }
  268. }
  269. private void OpenNetwork()
  270. {
  271. //載入OCPP Protocol
  272. var appServer = new OCPPWSServer(new List<OCPPSubProtocol>() { new OCPPSubProtocol(), new OCPPSubProtocol(" ocpp1.6"), new OCPPSubProtocol("ocpp2.0") });
  273. List<IListenerConfig> llistener = new List<IListenerConfig>();
  274. //System.Net.IPAddress.Any.ToString()
  275. // llistener.Add(new ListenerConfig { Ip = "", Port = Convert.ToInt32(wssserverPort), Backlog = 100, Security = serverSecurity });
  276. llistener.Add(new ListenerConfig { Ip = System.Net.IPAddress.Any.ToString(), Port = Convert.ToInt32(GlobalConfig.GetWS_Port()), Backlog = 100, Security = "None" });
  277. llistener.Add(new ListenerConfig { Ip = System.Net.IPAddress.Any.ToString(), Port = Convert.ToInt32(GlobalConfig.GetWSS_Port()), Backlog = 100, Security = SslProtocols.Tls12.ToString() });
  278. // llistener.Add(new ListenerConfig { Ip = System.Net.IPAddress.Any.ToString(), Port = Convert.ToInt32(GlobalConfig.GetWSS_Port()), Backlog = 100, Security = SslProtocols.Tls11.ToString() });
  279. var config = ConfigurationManager.GetSection("superSocket") as IConfigurationSource;
  280. ICertificateConfig Certificate = config.Servers.ElementAt(0).Certificate;
  281. IEnumerable<IListenerConfig> listeners = llistener;
  282. //設定server config
  283. var serverConfig = new ServerConfig
  284. {
  285. //Port = Convert.ToInt32(2012),
  286. //Ip = "172.17.40.13",
  287. MaxRequestLength = 4096,
  288. //Security = serverSecurity,
  289. Certificate = Certificate,
  290. Listeners = listeners,
  291. // LogAllSocketException = true,
  292. KeepAliveTime = 10,
  293. // LogBasicSessionActivity = true
  294. };
  295. //Setup with listening port
  296. if (!appServer.Setup(serverConfig, logFactory: new OCPPLogFactory()))
  297. {
  298. Console.WriteLine("Failed to setup!");
  299. return;
  300. }
  301. appServer.NewSessionConnected += AppServer_NewSessionConnected;
  302. appServer.SessionClosed += AppServer_SessionClosed;
  303. //Try to start the appServer
  304. if (!appServer.Start())
  305. {
  306. Console.WriteLine("Failed to start!");
  307. Console.ReadKey();
  308. return;
  309. }
  310. }
  311. private void AppServer_SessionClosed(ClientData session, CloseReason value)
  312. {
  313. // Console.WriteLine(session.RemoteEndPoint.Address);
  314. WriteMachineLog(session, string.Format("CloseReason: {0}", value), "Connection", "");
  315. RemoveClient(session);
  316. // close Connection
  317. }
  318. private void AppServer_NewSessionConnected(ClientData session)
  319. {
  320. try
  321. {
  322. lock (_lockClientDic)
  323. {
  324. bool isNotSupported = session.SecWebSocketProtocol.Contains("ocpp1.6") ? false : session.SecWebSocketProtocol.Contains("ocpp2.0") ? false : true;
  325. if (isNotSupported)
  326. {
  327. //logger.Debug(string.Format("ChargeBoxId:{0} SecWebSocketProtocol:{1} NotSupported", session.ChargeBoxId, session.SecWebSocketProtocol));
  328. WriteMachineLog(session, string.Format("SecWebSocketProtocol:{0} NotSupported", session.SecWebSocketProtocol), "Connection", "");
  329. return;
  330. }
  331. ClientData _removeClient = null;
  332. clientDic.TryGetValue(session.ChargeBoxId, out _removeClient);
  333. if (_removeClient != null)
  334. {
  335. WriteMachineLog(_removeClient, "Duplicate Logins", "Connection", "");
  336. _removeClient.Close(CloseReason.ServerShutdown);
  337. RemoveClient(_removeClient);
  338. }
  339. session.IsCheckIn = true;
  340. clientDic.Add(session.ChargeBoxId, session);
  341. session.m_ReceiveData += new ClientData.OCPPClientDataEventHandler<ClientData, String>(ReceivedMessage);
  342. // logger.Debug("------------New " + (session == null ? "Oops" : session.ChargeBoxId));
  343. WriteMachineLog(session, "NewSessionConnected", "Connection", "");
  344. using (var db = new MainDBContext())
  345. {
  346. var machine = db.Machine.Where(x => x.ChargeBoxId == session.ChargeBoxId).FirstOrDefault();
  347. if (machine != null)
  348. {
  349. machine.ConnectionType = session.Origin.Contains("https") ? 2 : 1;
  350. db.SaveChanges();
  351. }
  352. }
  353. // CheckEVSEConfigure(session.ChargeBoxId);
  354. }
  355. }
  356. catch (Exception ex)
  357. {
  358. logger.Error(string.Format("NewSessionConnected Ex: {0}", ex.ToString()));
  359. }
  360. }
  361. async private void ReceivedMessage(ClientData session, string rawdata)
  362. {
  363. try
  364. {
  365. BasicMessageHandler msgAnalyser = new BasicMessageHandler();
  366. MessageResult analysisResult = msgAnalyser.AnalysisReceiveData(session, rawdata);
  367. WriteMachineLog(session, rawdata,
  368. 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);
  369. if (session.ResetSecurityProfile)
  370. {
  371. logger.Error(string.Format("[{0}] ChargeBoxId:{1} ResetSecurityProfile", DateTime.Now, session.ChargeBoxId));
  372. RemoveClient(session);
  373. return;
  374. }
  375. if (!analysisResult.Success)
  376. {
  377. //解析RawData就發生錯誤
  378. if (!string.IsNullOrEmpty(analysisResult.CallErrorMsg))
  379. {
  380. Send(session, analysisResult.CallErrorMsg, string.Format("{0} {1}", analysisResult.Action, "Error"));
  381. }
  382. else
  383. {
  384. if (analysisResult.Message == null)
  385. {
  386. string replyMsg = BasicMessageHandler.GenerateCallError(analysisResult.UUID, OCPPErrorCodes.InternalError, OCPPErrorDescription.InternalError);
  387. string errorMsg = string.Empty;
  388. if (analysisResult.Exception != null)
  389. {
  390. errorMsg = analysisResult.Exception.ToString();
  391. }
  392. Send(session, replyMsg, string.Format("{0} {1}", "unknown", "Error"), "EVSE's sent essage has parsed Failed. ");
  393. }
  394. else
  395. {
  396. BaseMessage _baseMsg = analysisResult.Message as BaseMessage;
  397. string replyMsg = BasicMessageHandler.GenerateCallError(_baseMsg.Id, OCPPErrorCodes.InternalError, OCPPErrorDescription.InternalError);
  398. string errorMsg = string.Empty;
  399. if (analysisResult.Exception != null)
  400. {
  401. errorMsg = analysisResult.Exception.ToString();
  402. }
  403. Send(session, replyMsg, string.Format("{0} {1}", analysisResult.Action, "Error"), errorMsg);
  404. }
  405. }
  406. }
  407. else
  408. {
  409. //if (session.ISOCPP20 && !(analysisResult.Action != Actions.BootNotification.ToString() || analysisResult.Action != Actions.Heartbeat.ToString()))
  410. //{
  411. // Send(session, "Backend doesn't support this message.", string.Format("{0} {1}", analysisResult.Action, "Error"));
  412. // return;
  413. //}
  414. switch (analysisResult.Id)
  415. {
  416. case BasicMessageHandler.TYPENUMBER_CALL:
  417. {
  418. if (!session.ISOCPP20)
  419. {
  420. Actions action = Convertor.GetAction(analysisResult.Action);
  421. ProcessRequestMessage(analysisResult, session, action);
  422. }
  423. else
  424. {
  425. EVCB_OCPP20.Packet.Features.Actions action = Convertor.GetActionby20(analysisResult.Action);
  426. MessageResult result = new MessageResult() { Success = true };
  427. //ocpp20 處理
  428. switch (action)
  429. {
  430. case EVCB_OCPP20.Packet.Features.Actions.BootNotification:
  431. {
  432. EVCB_OCPP20.Packet.Messages.BootNotificationRequest _request = (EVCB_OCPP20.Packet.Messages.IRequest)analysisResult.Message as EVCB_OCPP20.Packet.Messages.BootNotificationRequest;
  433. var confirm = new EVCB_OCPP20.Packet.Messages.BootNotificationResponse() { CurrentTime = DateTime.Now, Interval = 180, Status = EVCB_OCPP20.Packet.DataTypes.EnumTypes.RegistrationStatusEnumType.Pending };
  434. result.Message = confirm;
  435. result.Success = true;
  436. string response = BasicMessageHandler.GenerateConfirmationofOCPP20(analysisResult.UUID, (EVCB_OCPP20.Packet.Messages.IConfirmation)result.Message);
  437. Send(session, response, string.Format("{0} {1}", analysisResult.Action, "Response"), result.Exception == null ? string.Empty : result.Exception.ToString());
  438. var request = new EVCB_OCPP20.Packet.Messages.SetNetworkProfileRequest()
  439. {
  440. ConfigurationSlot = 1,
  441. ConnectionData = new EVCB_OCPP20.Packet.DataTypes.NetworkConnectionProfileType()
  442. {
  443. OcppVersion = EVCB_OCPP20.Packet.DataTypes.EnumTypes.OCPPVersionEnumType.OCPP20,
  444. OcppTransport = EVCB_OCPP20.Packet.DataTypes.EnumTypes.OCPPTransportEnumType.JSON,
  445. MessageTimeout = 30,
  446. OcppCsmsUrl = "ws://ocpp.phihong.com.tw:5004",
  447. OcppInterface = EVCB_OCPP20.Packet.DataTypes.EnumTypes.OCPPInterfaceEnumType.Wired0
  448. }
  449. };
  450. var uuid = session.queue20.store(request);
  451. string requestText = BasicMessageHandler.GenerateRequestofOCPP20(uuid, "SetNetworkProfile", request);
  452. Send(session, requestText, "SetNetworkProfile");
  453. }
  454. break;
  455. default:
  456. {
  457. logger.Error(string.Format("We don't implement messagetype:{0} of raw data :{1} by {2}", analysisResult.Id, rawdata, session.ChargeBoxId));
  458. }
  459. break;
  460. }
  461. }
  462. }
  463. break;
  464. case BasicMessageHandler.TYPENUMBER_CALLRESULT:
  465. {
  466. if (!session.ISOCPP20)
  467. {
  468. Actions action = Convertor.GetAction(analysisResult.Action);
  469. ProcessConfirmationMessage(analysisResult, session, action);
  470. }
  471. else
  472. {
  473. EVCB_OCPP20.Packet.Features.Actions action = Convertor.GetActionby20(analysisResult.Action);
  474. MessageResult result = new MessageResult() { Success = true };
  475. //ocpp20 處理
  476. switch (action)
  477. {
  478. case EVCB_OCPP20.Packet.Features.Actions.SetNetworkProfile:
  479. {
  480. EVCB_OCPP20.Packet.Messages.SetNetworkProfileResponse response = (EVCB_OCPP20.Packet.Messages.IConfirmation)analysisResult.Message as EVCB_OCPP20.Packet.Messages.SetNetworkProfileResponse;
  481. if (response.Status == EVCB_OCPP20.Packet.DataTypes.EnumTypes.SetNetworkProfileStatusEnumType.Accepted)
  482. {
  483. var request = new EVCB_OCPP20.Packet.Messages.SetVariablesRequest()
  484. {
  485. SetVariableData = new List<EVCB_OCPP20.Packet.DataTypes.SetVariableDataType>()
  486. {
  487. new EVCB_OCPP20.Packet.DataTypes.SetVariableDataType()
  488. {
  489. Component=new EVCB_OCPP20.Packet.DataTypes.ComponentType()
  490. {
  491. Name="OCPPCommCtrlr",
  492. },
  493. AttributeType= EVCB_OCPP20.Packet.DataTypes.EnumTypes.AttributeEnumType.Actual,
  494. AttributeValue= JsonConvert.SerializeObject(new List<int>(){ 1 }),
  495. Variable=new EVCB_OCPP20.Packet.DataTypes.VariableType()
  496. {
  497. Name="NetworkConfigurationPriority",
  498. }
  499. }
  500. }
  501. };
  502. var uuid = session.queue20.store(request);
  503. string requestText = BasicMessageHandler.GenerateRequestofOCPP20(uuid, "SetVariables", request);
  504. Send(session, requestText, "SetVariables");
  505. }
  506. }
  507. break;
  508. case EVCB_OCPP20.Packet.Features.Actions.SetVariables:
  509. {
  510. EVCB_OCPP20.Packet.Messages.SetVariablesResponse response = (EVCB_OCPP20.Packet.Messages.IConfirmation)analysisResult.Message as EVCB_OCPP20.Packet.Messages.SetVariablesResponse;
  511. if (response.SetVariableResult[0].AttributeStatus == EVCB_OCPP20.Packet.DataTypes.EnumTypes.SetVariableStatusEnumType.RebootRequired)
  512. {
  513. var request = new EVCB_OCPP20.Packet.Messages.ResetRequest()
  514. {
  515. Type = EVCB_OCPP20.Packet.DataTypes.EnumTypes.ResetEnumType.OnIdle
  516. };
  517. var uuid = session.queue20.store(request);
  518. string requestText = BasicMessageHandler.GenerateRequestofOCPP20(uuid, "Reset", request);
  519. Send(session, requestText, "Reset");
  520. }
  521. }
  522. break;
  523. default:
  524. {
  525. logger.Error(string.Format("We don't implement messagetype:{0} of raw data :{1} by {2}", analysisResult.Id, rawdata, session.ChargeBoxId));
  526. }
  527. break;
  528. }
  529. }
  530. }
  531. break;
  532. case BasicMessageHandler.TYPENUMBER_CALLERROR:
  533. {
  534. //只處理 丟出Request 收到Error的訊息
  535. if (analysisResult.Success && analysisResult.Message != null)
  536. {
  537. Actions action = Convertor.GetAction(analysisResult.Action);
  538. ProcessErrorMessage(analysisResult, session, action);
  539. }
  540. }
  541. break;
  542. default:
  543. {
  544. logger.Error(string.Format("Can't analyze messagetype:{0} of raw data :{1} by {2}", analysisResult.Id, rawdata, session.ChargeBoxId));
  545. }
  546. break;
  547. }
  548. }
  549. await Task.Delay(10);
  550. }
  551. catch (Exception ex)
  552. {
  553. logger.Error(string.Format("**Exception :{0} ", ex.ToString()));
  554. if (ex.InnerException != null)
  555. {
  556. logger.Error(string.Format("**Inner exception :{0} ", ex.InnerException.ToString()));
  557. }
  558. }
  559. }
  560. async private void ProcessRequestMessage(MessageResult analysisResult, ClientData session, Actions action)
  561. {
  562. BasicMessageHandler msgAnalyser = new BasicMessageHandler();
  563. if (!session.IsCheckIn && action != Actions.BootNotification)
  564. {
  565. string response = BasicMessageHandler.GenerateCallError(analysisResult.UUID, OCPPErrorCodes.GenericError, OCPPErrorDescription.NotChecked);
  566. Send(session, response, string.Format("{0} {1}", analysisResult.Action, "Error"));
  567. }
  568. else
  569. {
  570. var profileName = profiles.Where(x => x.IsExisted(analysisResult.Action)).Select(x => x.Name).FirstOrDefault();
  571. switch (profileName)
  572. {
  573. case "Core":
  574. {
  575. var replyResult = await profileHandler.ExecuteCoreRequest(action, session, (IRequest)analysisResult.Message).ConfigureAwait(false);
  576. if (replyResult.Success)
  577. {
  578. string response = BasicMessageHandler.GenerateConfirmation(analysisResult.UUID, (IConfirmation)replyResult.Message);
  579. Send(session, response, string.Format("{0} {1}", analysisResult.Action, "Confirmation"), replyResult.Exception == null ? string.Empty : replyResult.Exception.ToString());
  580. if (action == Actions.BootNotification && replyResult.Message is BootNotificationConfirmation)
  581. {
  582. if (((BootNotificationConfirmation)replyResult.Message).status == Packet.Messages.SubTypes.RegistrationStatus.Accepted)
  583. {
  584. using (var db = new MainDBContext())
  585. {
  586. var machine = db.Machine.Where(x => x.ChargeBoxId == session.ChargeBoxId).FirstOrDefault();
  587. if (machine != null)
  588. {
  589. machine.ConnectionType = session.Origin.Contains("https") ? 2 : 1;
  590. db.SaveChanges();
  591. }
  592. }
  593. CheckVersion(session.ChargeBoxId);
  594. CheckEVSEConfigure(session.ChargeBoxId);
  595. }
  596. }
  597. }
  598. else
  599. {
  600. string response = BasicMessageHandler.GenerateCallError(analysisResult.UUID, OCPPErrorCodes.InternalError, OCPPErrorDescription.InternalError);
  601. string errorMsg = replyResult.Exception != null ? replyResult.Exception.ToString() : string.Empty;
  602. Send(session, response, string.Format("{0} {1}", analysisResult.Action, "Error"), errorMsg);
  603. }
  604. if (action == Actions.StartTransaction)
  605. {
  606. var stationId = _loadingBalanceService.GetStationIdByMachineId(session.MachineId);
  607. var _powerDic = _loadingBalanceService.GetSettingPower(stationId, session.MachineId);
  608. if (_powerDic != null)
  609. {
  610. foreach (var kv in _powerDic)
  611. {
  612. try
  613. {
  614. string chargeBoxId = string.Empty;
  615. //set profile
  616. lock (_lockClientDic)
  617. {
  618. chargeBoxId = clientDic.Where(x => x.Value.MachineId == kv.Key).Select(x => x.Value.ChargeBoxId).FirstOrDefault();
  619. }
  620. if (chargeBoxId != null && kv.Value.HasValue)
  621. {
  622. profileHandler.SetChargingProfile(chargeBoxId, kv.Value.Value, Packet.Messages.SubTypes.ChargingRateUnitType.W);
  623. }
  624. }
  625. catch (Exception ex)
  626. {
  627. logger.Error(string.Format("Set Profile Exception: {0}", ex.ToString()));
  628. }
  629. }
  630. }
  631. }
  632. if (action == Actions.StopTransaction)
  633. {
  634. var stationId = _loadingBalanceService.GetStationIdByMachineId(session.MachineId);
  635. if (_loadingBalanceService.IsNeedtoCancelSetting(stationId, session.MachineId, session.ChargeBoxId))
  636. {
  637. //Clear current profile
  638. profileHandler.ClearChargingProfile(session.ChargeBoxId);
  639. var _powerDic = _loadingBalanceService.GetRerangeSettingPower(stationId);
  640. if (_powerDic != null)
  641. {
  642. foreach (var kv in _powerDic)
  643. {
  644. try
  645. {
  646. string chargeBoxId = string.Empty;
  647. //set profile
  648. lock (_lockClientDic)
  649. {
  650. chargeBoxId = clientDic.Where(x => x.Value.MachineId == kv.Key).Select(x => x.Value.ChargeBoxId).FirstOrDefault();
  651. }
  652. if (chargeBoxId != null && kv.Value.HasValue)
  653. {
  654. profileHandler.SetChargingProfile(chargeBoxId, kv.Value.Value, Packet.Messages.SubTypes.ChargingRateUnitType.W);
  655. }
  656. }
  657. catch (Exception ex)
  658. {
  659. logger.Error(string.Format("Set Profile Exception: {0}", ex.ToString()));
  660. }
  661. }
  662. }
  663. }
  664. }
  665. }
  666. break;
  667. case "FirmwareManagement":
  668. {
  669. var replyResult = profileHandler.ExecuteFirmwareManagementRequest(action, session, (IRequest)analysisResult.Message);
  670. if (replyResult.Success)
  671. {
  672. string response = BasicMessageHandler.GenerateConfirmation(analysisResult.UUID, (IConfirmation)replyResult.Message);
  673. Send(session, response, string.Format("{0} {1}", analysisResult.Action, "Confirmation", replyResult.Exception == null ? string.Empty : replyResult.Exception.ToString()));
  674. }
  675. else
  676. {
  677. string response = BasicMessageHandler.GenerateCallError(analysisResult.UUID, OCPPErrorCodes.InternalError, OCPPErrorDescription.InternalError);
  678. string errorMsg = replyResult.Exception != null ? replyResult.Exception.ToString() : string.Empty;
  679. Send(session, response, string.Format("{0} {1}", analysisResult.Action, "Error"), errorMsg);
  680. }
  681. }
  682. break;
  683. case "Security":
  684. {
  685. var replyResult = profileHandler.ExecuteSecurityRequest(action, session, (IRequest)analysisResult.Message);
  686. if (replyResult.Success)
  687. {
  688. string response = BasicMessageHandler.GenerateConfirmation(analysisResult.UUID, (IConfirmation)replyResult.Message);
  689. Send(session, response, string.Format("{0} {1}", analysisResult.Action, "Confirmation", replyResult.Exception == null ? string.Empty : replyResult.Exception.ToString()));
  690. }
  691. else
  692. {
  693. string response = BasicMessageHandler.GenerateCallError(analysisResult.UUID, OCPPErrorCodes.InternalError, OCPPErrorDescription.InternalError);
  694. string errorMsg = replyResult.Exception != null ? replyResult.Exception.ToString() : string.Empty;
  695. Send(session, response, string.Format("{0} {1}", analysisResult.Action, "Error"), errorMsg);
  696. }
  697. }
  698. break;
  699. default:
  700. {
  701. string replyMsg = BasicMessageHandler.GenerateCallError(analysisResult.UUID, OCPPErrorCodes.InternalError, OCPPErrorDescription.InternalError);
  702. string errorMsg = string.Format("Couldn't find action name: {0} of profile", action);
  703. Send(session, replyMsg, string.Format("{0} {1}", analysisResult.Action, "Error"), errorMsg);
  704. }
  705. break;
  706. }
  707. }
  708. }
  709. private void ProcessConfirmationMessage(MessageResult analysisResult, ClientData session, Actions action)
  710. {
  711. BasicMessageHandler msgAnalyser = new BasicMessageHandler();
  712. if (ReConfirmMessage(analysisResult))
  713. {
  714. var profileName = profiles.Where(x => x.IsExisted(analysisResult.Action)).Select(x => x.Name).FirstOrDefault();
  715. MessageResult confirmResult = null;
  716. switch (profileName)
  717. {
  718. case "Core":
  719. {
  720. confirmResult = profileHandler.ExecuteCoreConfirm(action, session, (IConfirmation)analysisResult.Message, analysisResult.RequestId);
  721. }
  722. break;
  723. case "FirmwareManagement":
  724. {
  725. confirmResult = profileHandler.ExecuteFirmwareManagementConfirm(action, session, (IConfirmation)analysisResult.Message, analysisResult.RequestId);
  726. }
  727. break;
  728. case "RemoteTrigger":
  729. {
  730. confirmResult = profileHandler.ExecuteRemoteTriggerConfirm(action, session, (IConfirmation)analysisResult.Message, analysisResult.RequestId);
  731. }
  732. break;
  733. case "Reservation":
  734. {
  735. confirmResult = profileHandler.ExecuteReservationConfirm(action, session, (IConfirmation)analysisResult.Message, analysisResult.RequestId);
  736. }
  737. break;
  738. case "LocalAuthListManagement":
  739. {
  740. confirmResult = profileHandler.ExecuteLocalAuthListManagementConfirm(action, session, (IConfirmation)analysisResult.Message, analysisResult.RequestId);
  741. }
  742. break;
  743. case "SmartCharging":
  744. {
  745. confirmResult = profileHandler.ExecuteSmartChargingConfirm(action, session, (IConfirmation)analysisResult.Message, analysisResult.RequestId);
  746. }
  747. break;
  748. case "Security":
  749. {
  750. confirmResult = profileHandler.ExecuteSecurityConfirm(action, session, (IConfirmation)analysisResult.Message, analysisResult.RequestId);
  751. }
  752. break;
  753. default:
  754. {
  755. string replyMsg = BasicMessageHandler.GenerateCallError(analysisResult.UUID, OCPPErrorCodes.InternalError, OCPPErrorDescription.InternalError);
  756. string errorMsg = string.Format("Couldn't find action name: {0} of profile", action);
  757. Send(session, replyMsg, string.Format("{0} {1}", analysisResult.Action, "Error"), errorMsg);
  758. }
  759. break;
  760. }
  761. if (confirmResult == null || !confirmResult.Success)
  762. {
  763. logger.Error(string.Format("Action:{0} MessageId:{1} ExecuteConfirm Error:{2} ",
  764. analysisResult.Action, analysisResult.UUID, confirmResult.Exception.ToString()));
  765. }
  766. }
  767. else
  768. {
  769. string replyMsg = BasicMessageHandler.GenerateCallError(analysisResult.UUID, OCPPErrorCodes.InternalError, OCPPErrorDescription.InternalError);
  770. string errorMsg = string.Format("Action:{0} MessageId:{1} didn't exist in confirm message", analysisResult.Action, analysisResult.UUID);
  771. Send(session, replyMsg, string.Format("{0} {1}", analysisResult.Action, "Error"), errorMsg);
  772. }
  773. }
  774. private void ProcessErrorMessage(MessageResult analysisResult, ClientData session, Actions action)
  775. {
  776. BasicMessageHandler msgAnalyser = new BasicMessageHandler();
  777. if (ReConfirmMessage(analysisResult))
  778. {
  779. var profileName = profiles.Where(x => x.IsExisted(analysisResult.Action)).Select(x => x.Name).FirstOrDefault();
  780. switch (profileName)
  781. {
  782. case "Core":
  783. {
  784. profileHandler.ReceivedCoreError(action, analysisResult.ReceivedErrorCode, session, analysisResult.RequestId);
  785. }
  786. break;
  787. case "FirmwareManagement":
  788. {
  789. profileHandler.ReceivedFirmwareManagementError(action, analysisResult.ReceivedErrorCode, session, analysisResult.RequestId);
  790. }
  791. break;
  792. case "RemoteTrigger":
  793. {
  794. profileHandler.ReceivedRemoteTriggerError(action, analysisResult.ReceivedErrorCode, session, analysisResult.RequestId);
  795. }
  796. break;
  797. case "Reservation":
  798. {
  799. profileHandler.ExecuteReservationError(action, analysisResult.ReceivedErrorCode, session, analysisResult.RequestId);
  800. }
  801. break;
  802. case "LocalAuthListManagement":
  803. {
  804. profileHandler.ReceivedLocalAuthListManagementError(action, analysisResult.ReceivedErrorCode, session, analysisResult.RequestId);
  805. }
  806. break;
  807. case "SmartCharging":
  808. {
  809. profileHandler.ReceivedSmartChargingError(action, analysisResult.ReceivedErrorCode, session, analysisResult.RequestId);
  810. }
  811. break;
  812. default:
  813. {
  814. string replyMsg = BasicMessageHandler.GenerateCallError(analysisResult.UUID, OCPPErrorCodes.InternalError, OCPPErrorDescription.InternalError);
  815. string errorMsg = string.Format("Couldn't find action name: {0} of profile", action);
  816. Send(session, replyMsg, string.Format("{0} {1}", analysisResult.Action, "Error"), errorMsg);
  817. }
  818. break;
  819. }
  820. }
  821. else
  822. {
  823. string replyMsg = BasicMessageHandler.GenerateCallError(analysisResult.UUID, OCPPErrorCodes.InternalError, OCPPErrorDescription.InternalError);
  824. string errorMsg = string.Format("Action:{0} MessageId:{1} didn't exist in confirm message", analysisResult.Action, analysisResult.UUID);
  825. Send(session, replyMsg, string.Format("{0} {1}", analysisResult.Action, "Error"), errorMsg);
  826. }
  827. }
  828. private void Send(ClientData session, string msg, string messageType, string errorMsg = "")
  829. {
  830. try
  831. {
  832. if (session != null)
  833. {
  834. WriteMachineLog(session, msg, messageType, errorMsg, true);
  835. session.Send(msg);
  836. }
  837. }
  838. catch (Exception ex)
  839. {
  840. logger.Error(string.Format("Send Ex:{0}", ex.ToString()));
  841. }
  842. }
  843. async private void ServerUpdateTrigger()
  844. {
  845. for (; ; )
  846. {
  847. if (_ct.IsCancellationRequested)
  848. {
  849. break;
  850. }
  851. var min_Interval = (DateTime.Now - checkUpdateDt).TotalMinutes;
  852. if (min_Interval > 3)
  853. {
  854. BasicMessageHandler msgAnalyser = new BasicMessageHandler();
  855. Dictionary<string, ClientData> _copyClientDic = null;
  856. lock (_lockClientDic)
  857. {
  858. _copyClientDic = new Dictionary<string, ClientData>(clientDic);
  859. }
  860. checkUpdateDt = DateTime.Now;
  861. using (var db = new MainDBContext())
  862. {
  863. //var needUpdateChargers = db.Machine.Where(x => x.FW_AssignedMachineVersionId.HasValue == true &&
  864. // x.FW_AssignedMachineVersionId != x.FW_VersionReport && x.Online == true)
  865. // .Select(x => new { x.Id, x.ChargeBoxId, x.FW_AssignedMachineVersionId }).ToList();
  866. var needUpdateChargers = db.Machine.Where(x => x.FW_AssignedVersion.HasValue == true &&
  867. x.FW_AssignedVersion != x.FW_VersionReport && x.Online == true)
  868. .Select(x => x.ChargeBoxId).AsNoTracking().ToList();
  869. foreach (var chargeBoxId in needUpdateChargers)
  870. {
  871. try
  872. {
  873. ClientData session;
  874. if (_copyClientDic.TryGetValue(chargeBoxId, out session))
  875. {
  876. string requestId = Guid.NewGuid().ToString();
  877. // using (var db = new MainDBContext())
  878. if (session.IsCheckIn && !session.ISOCPP20)
  879. {
  880. var _request = new TriggerMessageRequest()
  881. {
  882. requestedMessage = Packet.Messages.SubTypes.MessageTrigger.FirmwareStatusNotification
  883. };
  884. var uuid = session.queue.store(_request);
  885. string rawRequest = BasicMessageHandler.GenerateRequest(uuid, _request.Action, _request);
  886. Send(session, rawRequest, string.Format("{0} {1}", _request.Action, "Request"), "");
  887. #region OCTT ,測試韌體更新方式
  888. //--------------------> OCTT ,測試韌體更新方式
  889. //{
  890. // var machine = db.Machine.Where(x => x.FW_AssignedMachineVersionId.HasValue == true &&
  891. // x.FW_AssignedMachineVersionId != x.FW_VersionReport && x.ChargeBoxId == session.ChargeBoxId)
  892. // .Select(x => new { x.Id, x.FW_AssignedMachineVersionId }).FirstOrDefault();
  893. // if (machine != null)
  894. // {
  895. // var mv = db.MachineVersion.Include(c => c.PublishVersion)
  896. // .Include(c => c.PublishVersion.PublishVersionFiles)
  897. // .Include(c => c.PublishVersion.PublishVersionFiles.Select(z => z.UploadFile))
  898. // .Where(c => c.Id == machine.FW_AssignedMachineVersionId.Value).First();
  899. // string downloadUrl = mv.PublishVersion.PublishVersionFiles.FirstOrDefault().UploadFile.FileUrl;
  900. // var _updateFWrequest = new UpdateFirmwareRequest()
  901. // {
  902. // location = new Uri(downloadUrl),
  903. // retries = 3,
  904. // retrieveDate = DateTime.Now,
  905. // retryInterval = 10
  906. // };
  907. // db.MachineOperateRecord.Add(new MachineOperateRecord()
  908. // {
  909. // CreatedOn = DateTime.Now,
  910. // ChargeBoxId = session.ChargeBoxId,
  911. // SerialNo = requestId,
  912. // RequestContent = JsonConvert.SerializeObject(_updateFWrequest, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore, Formatting = Formatting.None }),
  913. // EVSE_Status = 0,
  914. // EVSE_Value = "Fw Version:" + machine.FW_AssignedMachineVersionId,
  915. // Status = 0,
  916. // RequestType = 0,
  917. // });
  918. // db.ServerMessage.Add(new ServerMessage()
  919. // {
  920. // ChargeBoxId = session.ChargeBoxId,
  921. // CreatedBy = "Server",
  922. // CreatedOn = DateTime.Now,
  923. // OutAction = _updateFWrequest.Action.ToString(),
  924. // OutRequest = JsonConvert.SerializeObject(_updateFWrequest, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore, Formatting = Formatting.None }),
  925. // SerialNo = requestId,
  926. // InMessage = string.Empty
  927. // });
  928. // db.SaveChanges();
  929. // }
  930. //}
  931. #endregion
  932. }
  933. }
  934. }
  935. catch (Exception ex)
  936. {
  937. logger.Error(string.Format("serverUpdateTrigger ChargeBoxId:{0} Ex:{1}", chargeBoxId, ex.ToString()));
  938. }
  939. }
  940. }
  941. await Task.Delay(1000);
  942. // Thread.CurrentThread.Join(1000);
  943. }
  944. }
  945. }
  946. async private void ServerMessageTrigger()
  947. {
  948. for (; ; )
  949. {
  950. if (_ct.IsCancellationRequested)
  951. {
  952. break;
  953. }
  954. try
  955. {
  956. RemoveConfirmMessage();
  957. BasicMessageHandler msgAnalyser = new BasicMessageHandler();
  958. using (var db = new MainDBContext())
  959. {
  960. DateTime startDt = DateTime.Now.AddSeconds(-30);
  961. DateTime dt = new DateTime(1991, 1, 1);
  962. DateTime currentTime = DateTime.Now;
  963. var commandList = db.ServerMessage.Where(c => c.ReceivedOn == dt && c.UpdatedOn == dt && c.CreatedOn >= startDt && c.CreatedOn <= currentTime).AsNoTracking().ToList();
  964. //處理主機傳送的有指令
  965. var cmdMachineList = commandList.Select(c => c.ChargeBoxId).Distinct().ToList();
  966. if (commandList.Count > 0)
  967. {
  968. // Console.WriteLine(string.Format("Now:{0} commandList Count:{1} ", DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss"), commandList.Count));
  969. }
  970. foreach (var charger_SN in cmdMachineList)
  971. {
  972. ClientData session;
  973. string uuid = string.Empty;
  974. if (clientDic.TryGetValue(charger_SN, out session))
  975. {
  976. 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")));
  977. if (session.IsCheckIn && !session.ISOCPP20)
  978. {
  979. var cmdList = commandList.Where(c => c.ChargeBoxId == charger_SN).ToList();
  980. foreach (var item in cmdList)
  981. {
  982. IRequest request = null;
  983. Actions action = Actions.None;
  984. Enum.TryParse(item.OutAction, out action);
  985. Type _RequestType = null;
  986. for (int i = 0; i < profiles.Count; i++)
  987. {
  988. var feature = profiles[i].GetFeaturebyAction(item.OutAction);
  989. if (feature != null)
  990. {
  991. _RequestType = feature.GetRequestType();
  992. break;
  993. }
  994. }
  995. if (_RequestType != null && item.CreatedBy != "Destroyer")
  996. {
  997. request = JsonConvert.DeserializeObject(item.OutRequest, _RequestType) as IRequest;
  998. uuid = session.queue.store(request);
  999. string rawRequest = BasicMessageHandler.GenerateRequest(uuid, item.OutAction, request);
  1000. Send(session, rawRequest, string.Format("{0} {1}", action, "Request"), "");
  1001. }
  1002. if (item.CreatedBy == "Destroyer")
  1003. {
  1004. Console.WriteLine("********************************");
  1005. if (_RequestType != null)
  1006. {
  1007. request = Activator.CreateInstance(_RequestType) as IRequest;
  1008. Console.WriteLine("++++++++++++++++++++++++++++++++++++++++");
  1009. uuid = session.queue.store(request);
  1010. string rawRequest = BasicMessageHandler.GenerateDestroyRequest(uuid, item.OutAction, item.OutRequest);
  1011. Send(session, rawRequest, string.Format("{0} {1}", action, "Request"), "");
  1012. }
  1013. else
  1014. {
  1015. string rawRequest = BasicMessageHandler.GenerateDestroyRequest(Guid.NewGuid().ToString(), item.OutAction, item.OutRequest);
  1016. Send(session, rawRequest, string.Format("{0} {1}", action, "Request"), "");
  1017. }
  1018. }
  1019. AddConfirmMessage(charger_SN, item.Id, item.SerialNo, item.OutAction, uuid);
  1020. #region 更新資料表單一欄位
  1021. var _UpdatedItem = new ServerMessage() { Id = item.Id, UpdatedOn = DateTime.Now };
  1022. db.Configuration.AutoDetectChangesEnabled = false;//自動呼叫DetectChanges()比對所有的entry集合的每一個屬性Properties的新舊值
  1023. db.Configuration.ValidateOnSaveEnabled = false;// 因為Entity有些欄位必填,若不避開會有Validate錯誤
  1024. // var _UpdatedItem = db.ServerMessage.Where(x => x.Id == item.Id).FirstOrDefault();
  1025. db.ServerMessage.Attach(_UpdatedItem);
  1026. _UpdatedItem.UpdatedOn = DateTime.Now;
  1027. db.Entry(_UpdatedItem).Property(x => x.UpdatedOn).IsModified = true;// 可以直接使用這方式強制某欄位要更新,只是查詢集合耗效能而己
  1028. db.SaveChanges();
  1029. #endregion
  1030. }
  1031. }
  1032. }
  1033. }
  1034. }
  1035. await Task.Delay(1000);
  1036. // Thread.CurrentThread.Join(1000);
  1037. }
  1038. catch (Exception ex)
  1039. {
  1040. logger.Error(string.Format("ServerMessageTrigger Ex:{0}", ex.ToString()));
  1041. }
  1042. }
  1043. }
  1044. async private void HeartBeatCheckTrigger()
  1045. {
  1046. for (; ; )
  1047. {
  1048. if (_ct.IsCancellationRequested)
  1049. {
  1050. break;
  1051. }
  1052. try
  1053. {
  1054. if (DateTime.Now.Subtract(lastcheckdt).TotalSeconds > 30)
  1055. {
  1056. lastcheckdt = DateTime.Now;
  1057. Stopwatch watch = new Stopwatch();
  1058. Dictionary<string, ClientData> _copyClientDic = null;
  1059. lock (_lockClientDic)
  1060. {
  1061. _copyClientDic = new Dictionary<string, ClientData>(clientDic);
  1062. }
  1063. var cdt = DateTime.Now;
  1064. var clients = _copyClientDic.Where(x => x.Value.LastActiveTime > cdt.AddSeconds(-120)).Select(x => x.Value).ToList();
  1065. watch.Start();
  1066. foreach (var session in clients)
  1067. {
  1068. using (var db = new MainDBContext())
  1069. {
  1070. var machine = new Machine() { Id = session.MachineId };
  1071. if (machine != null)
  1072. {
  1073. db.Configuration.AutoDetectChangesEnabled = false;
  1074. db.Configuration.ValidateOnSaveEnabled = false;
  1075. db.Machine.Attach(machine);
  1076. machine.HeartbeatUpdatedOn = DateTime.Now;
  1077. machine.ConnectionType = session.UriScheme.Equals("wss") ? 2 : 1;
  1078. db.Entry(machine).Property(x => x.HeartbeatUpdatedOn).IsModified = true;
  1079. db.Entry(machine).Property(x => x.ConnectionType).IsModified = true;
  1080. await db.SaveChangesAsync();
  1081. }
  1082. }
  1083. }
  1084. watch.Stop();
  1085. if (watch.ElapsedMilliseconds / 1000 > 5)
  1086. {
  1087. logger.Fatal("Update HeartBeatCheckTrigger cost " + watch.ElapsedMilliseconds / 1000 + " seconds.");
  1088. }
  1089. }
  1090. await Task.Delay(10000);
  1091. }
  1092. catch (Exception ex)
  1093. {
  1094. Console.WriteLine("***********************************************************");
  1095. logger.Error(string.Format("HeartBeatCheckTrigger Ex:{0}", ex.ToString()));
  1096. }
  1097. }
  1098. }
  1099. async private void HealthCheckTrigger()
  1100. {
  1101. for (; ; )
  1102. {
  1103. if (_ct.IsCancellationRequested)
  1104. {
  1105. break;
  1106. }
  1107. try
  1108. {
  1109. Dictionary<string, ClientData> _copyClientDic = null;
  1110. lock (_lockClientDic)
  1111. {
  1112. _copyClientDic = new Dictionary<string, ClientData>(clientDic);
  1113. }
  1114. var removeClients = _copyClientDic.Where(x => x.Value.LastActiveTime < DateTime.Now.AddSeconds(-300)).Select(x => x.Value).ToList();
  1115. foreach (var session in removeClients)
  1116. {
  1117. Console.WriteLine(string.Format("Server forced to shut down ChargeBox ({0}: LastActiveTime{1})", session.ChargeBoxId, session.LastActiveTime));
  1118. RemoveClient(session);
  1119. }
  1120. await Task.Delay(60000);
  1121. }
  1122. catch (Exception ex)
  1123. {
  1124. logger.Error(string.Format("HealthAlarmTrigger Ex:{0}", ex.ToString()));
  1125. }
  1126. }
  1127. }
  1128. private void AddConfirmMessage(string chargePointSerialNumber, int table_id, string requestId, string action, string msg_id)
  1129. {
  1130. NeedConfirmMessage _needConfirmMsg = new NeedConfirmMessage();
  1131. _needConfirmMsg.Id = table_id;
  1132. _needConfirmMsg.SentAction = action;
  1133. _needConfirmMsg.SentOn = DateTime.Now;
  1134. _needConfirmMsg.SentTimes = 1;
  1135. _needConfirmMsg.ChargePointSerialNumber = chargePointSerialNumber;
  1136. _needConfirmMsg.RequestId = requestId;
  1137. _needConfirmMsg.SentUniqueId = msg_id;
  1138. if (needConfirmActions.Contains(action))
  1139. {
  1140. lock (_lockConfirmPacketList)
  1141. {
  1142. needConfirmPacketList.Add(_needConfirmMsg);
  1143. if (action == "GetConfiguration")
  1144. {
  1145. Console.WriteLine("AddConfirmMessage: " + msg_id);
  1146. }
  1147. }
  1148. }
  1149. }
  1150. private void RemoveConfirmMessage()
  1151. {
  1152. var before_3mins = DateTime.Now.AddMinutes(-3);
  1153. lock (_lockConfirmPacketList)
  1154. {
  1155. var removeList = needConfirmPacketList.Where(x => x.SentTimes == 0 || x.SentOn < before_3mins).ToList();
  1156. foreach (var item in removeList)
  1157. {
  1158. needConfirmPacketList.Remove(item);
  1159. }
  1160. }
  1161. }
  1162. private bool ReConfirmMessage(MessageResult analysisResult)
  1163. {
  1164. bool confirmed = false;
  1165. if (needConfirmActions.Contains(analysisResult.Action))
  1166. {
  1167. if (analysisResult.Action == "GetConfiguration")
  1168. {
  1169. Console.WriteLine("ReConfirmMessage: " + analysisResult.UUID);
  1170. }
  1171. NeedConfirmMessage foundRequest = null;
  1172. lock (_lockConfirmPacketList)
  1173. {
  1174. foundRequest = needConfirmPacketList.Where(x => x.SentUniqueId == analysisResult.UUID).FirstOrDefault();
  1175. }
  1176. if (foundRequest != null && foundRequest.Id > 0)
  1177. {
  1178. foundRequest.SentTimes = 0;
  1179. foundRequest.SentInterval = 0;
  1180. analysisResult.RequestId = foundRequest.RequestId;
  1181. using (var db = new MainDBContext())
  1182. {
  1183. var sc = db.ServerMessage.Where(x => x.Id == foundRequest.Id).FirstOrDefault();
  1184. sc.InMessage = JsonConvert.SerializeObject(analysisResult.Message, Formatting.None);
  1185. sc.ReceivedOn = DateTime.Now;
  1186. db.SaveChanges();
  1187. // Console.WriteLine(string.Format("Now:{0} ServerMessage Id:{1} ", DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss"), foundRequest.Id));
  1188. }
  1189. confirmed = true;
  1190. }
  1191. else if (analysisResult.Action == Actions.TriggerMessage.ToString())
  1192. {
  1193. confirmed = true;
  1194. }
  1195. else
  1196. {
  1197. logger.Error(string.Format("Received no record Action:{0} MessageId:{1} ", analysisResult.Action, analysisResult.UUID));
  1198. }
  1199. }
  1200. return confirmed;
  1201. }
  1202. private void RemoveClient(ClientData session)
  1203. {
  1204. Console.WriteLine("*********");
  1205. if (session != null)
  1206. {
  1207. logger.Trace("RemoveClient[" + session.ChargeBoxId + "]");
  1208. if (session.Connected)
  1209. {
  1210. session.Close(CloseReason.ServerShutdown);
  1211. }
  1212. RemoveClientDic(session);
  1213. try
  1214. {
  1215. session.m_ReceiveData -= new ClientData.OCPPClientDataEventHandler<ClientData, String>(ReceivedMessage);
  1216. // session.Close(CloseReason.ServerShutdown);
  1217. }
  1218. catch (Exception ex)
  1219. {
  1220. //logger.Warn("Close client socket error!!");
  1221. logger.Warn(string.Format("Close client socket error!! {0} Msg:{1}", session.ChargeBoxId, ex.Message));
  1222. }
  1223. if (session != null)
  1224. {
  1225. session = null;
  1226. }
  1227. }
  1228. }
  1229. private void RemoveClientDic(ClientData session)
  1230. {
  1231. if (!string.IsNullOrEmpty(session.ChargeBoxId))
  1232. {
  1233. lock (_lockClientDic)
  1234. {
  1235. if (clientDic.ContainsKey(session.ChargeBoxId))
  1236. {
  1237. if (clientDic[session.ChargeBoxId].SessionID == session.SessionID)
  1238. {
  1239. logger.Debug(String.Format("ChargeBoxId:{0} Remove SessionId:{1} Removed SessionId:{2}", session.ChargeBoxId, session.SessionID, clientDic[session.ChargeBoxId].SessionID));
  1240. clientDic.Remove(session.ChargeBoxId);
  1241. logger.Trace("RemoveClient ContainsKey " + session.ChargeBoxId);
  1242. }
  1243. }
  1244. }
  1245. }
  1246. }
  1247. private void WarmUpLog()
  1248. {
  1249. using (var log = new ConnectionLogDBContext())
  1250. {
  1251. log.MachineConnectionLog.ToList();
  1252. }
  1253. }
  1254. private void WriteMachineLog(ClientData clientData, string data, string messageType, string errorMsg = "", bool isSent = false)
  1255. {
  1256. try
  1257. {
  1258. if (clientData == null || string.IsNullOrEmpty(data)) return;
  1259. if (clientData.ChargeBoxId == null)
  1260. {
  1261. logger.Fatal(clientData.Path + "]********************session ChargeBoxId null sessionId=" + clientData.SessionID);
  1262. }
  1263. using (var db = new ConnectionLogDBContext())
  1264. {
  1265. string sp = "[dbo].[uspInsertMachineConnectionLog] @CreatedOn," +
  1266. "@ChargeBoxId,@MessageType,@Data,@Msg,@IsSent,@EVSEEndPoint,@Session";
  1267. var dd = DateTime.UtcNow;
  1268. SqlParameter[] parameter =
  1269. {
  1270. new SqlParameter("CreatedOn",dd),
  1271. new SqlParameter("ChargeBoxId",clientData.ChargeBoxId==null?"unknown":clientData.ChargeBoxId.Replace("'","''")),
  1272. new SqlParameter("MessageType",messageType.Replace("'","''")),
  1273. new SqlParameter("Data",data.Replace("'","''")),
  1274. new SqlParameter("Msg",errorMsg.Replace("'","''")),
  1275. new SqlParameter("IsSent",isSent),
  1276. new SqlParameter("EVSEEndPoint",clientData.RemoteEndPoint==null?"123":clientData.RemoteEndPoint.ToString()),
  1277. new SqlParameter("Session",clientData.SessionID==null?"123":clientData.SessionID)
  1278. };
  1279. db.Database.ExecuteSqlCommand(sp, parameter);
  1280. }
  1281. }
  1282. catch (Exception ex)
  1283. {
  1284. Console.WriteLine(ex.ToString());
  1285. }
  1286. }
  1287. }
  1288. }