ProtalServer.cs 69 KB

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