ProtalServer.cs 75 KB

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