|
@@ -8,27 +8,18 @@ using EVCB_OCPP.WSServer.Message;
|
|
using EVCB_OCPP.WSServer.Service;
|
|
using EVCB_OCPP.WSServer.Service;
|
|
using Microsoft.Extensions.Hosting;
|
|
using Microsoft.Extensions.Hosting;
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json;
|
|
-
|
|
|
|
-using OCPPServer.Protocol;
|
|
|
|
-using OCPPServer.SubProtocol;
|
|
|
|
-using SuperSocket.SocketBase;
|
|
|
|
-using SuperSocket.SocketBase.Config;
|
|
|
|
using System.Data;
|
|
using System.Data;
|
|
using System.Diagnostics;
|
|
using System.Diagnostics;
|
|
-using System.Security.Authentication;
|
|
|
|
using System.Xml.Linq;
|
|
using System.Xml.Linq;
|
|
using NLog;
|
|
using NLog;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.Configuration;
|
|
-using Microsoft.Extensions.DependencyInjection;
|
|
|
|
-using Microsoft.AspNetCore.Builder;
|
|
|
|
-using NLog.Extensions.Logging;
|
|
|
|
using System.Collections.Concurrent;
|
|
using System.Collections.Concurrent;
|
|
-using EVCB_OCPP.WSServer.SuperSocket;
|
|
|
|
|
|
+
|
|
using Microsoft.Extensions.Logging;
|
|
using Microsoft.Extensions.Logging;
|
|
using System.Net.WebSockets;
|
|
using System.Net.WebSockets;
|
|
-using SuperWebSocket;
|
|
|
|
using System.Net;
|
|
using System.Net;
|
|
using System.Text;
|
|
using System.Text;
|
|
|
|
+using EVCB_OCPP.WSServer.Service.WsService;
|
|
|
|
|
|
namespace EVCB_OCPP.WSServer
|
|
namespace EVCB_OCPP.WSServer
|
|
{
|
|
{
|
|
@@ -55,7 +46,6 @@ namespace EVCB_OCPP.WSServer
|
|
ILogger<ProtalServer> logger
|
|
ILogger<ProtalServer> logger
|
|
, IConfiguration configuration
|
|
, IConfiguration configuration
|
|
, IMainDbService mainDbService
|
|
, IMainDbService mainDbService
|
|
- , IOCPPWSServerFactory ocppWSServerFactory
|
|
|
|
, IConnectionLogdbService connectionLogdbService
|
|
, IConnectionLogdbService connectionLogdbService
|
|
, LoadingBalanceService loadingBalanceService
|
|
, LoadingBalanceService loadingBalanceService
|
|
, ServerMessageService serverMessageService
|
|
, ServerMessageService serverMessageService
|
|
@@ -67,7 +57,6 @@ namespace EVCB_OCPP.WSServer
|
|
this.logger = logger;
|
|
this.logger = logger;
|
|
this.configuration = configuration;
|
|
this.configuration = configuration;
|
|
this.mainDbService = mainDbService;
|
|
this.mainDbService = mainDbService;
|
|
- this.ocppWSServerFactory = ocppWSServerFactory;
|
|
|
|
this.connectionLogdbService = connectionLogdbService;
|
|
this.connectionLogdbService = connectionLogdbService;
|
|
this.webDbService = webDbService;
|
|
this.webDbService = webDbService;
|
|
this.httpClient = httpClient;
|
|
this.httpClient = httpClient;
|
|
@@ -90,7 +79,6 @@ namespace EVCB_OCPP.WSServer
|
|
private readonly IConfiguration configuration;
|
|
private readonly IConfiguration configuration;
|
|
private readonly IMainDbService mainDbService;
|
|
private readonly IMainDbService mainDbService;
|
|
|
|
|
|
- private readonly IOCPPWSServerFactory ocppWSServerFactory;
|
|
|
|
private readonly IConnectionLogdbService connectionLogdbService;
|
|
private readonly IConnectionLogdbService connectionLogdbService;
|
|
private readonly WebDbService webDbService;
|
|
private readonly WebDbService webDbService;
|
|
private readonly ProfileHandler profileHandler;
|
|
private readonly ProfileHandler profileHandler;
|
|
@@ -349,64 +337,8 @@ namespace EVCB_OCPP.WSServer
|
|
|
|
|
|
private void StartWsService()
|
|
private void StartWsService()
|
|
{
|
|
{
|
|
-
|
|
|
|
- //載入OCPP Protocol
|
|
|
|
- //appServer = ocppWSServerFactory.Create(new List<OCPPSubProtocol>() { new OCPPSubProtocol(), new OCPPSubProtocol(" ocpp1.6"), new OCPPSubProtocol("ocpp2.0") });
|
|
|
|
- //var appServer = new OCPPWSServer(new List<OCPPSubProtocol>() { new OCPPSubProtocol(), new OCPPSubProtocol(" ocpp1.6"), new OCPPSubProtocol("ocpp2.0") });
|
|
|
|
-
|
|
|
|
- //List<IListenerConfig> llistener = new List<IListenerConfig>();
|
|
|
|
-
|
|
|
|
- //if (GlobalConfig.GetWS_Port() != 0)
|
|
|
|
- //{
|
|
|
|
- // llistener.Add(new ListenerConfig { Ip = System.Net.IPAddress.Any.ToString(), Port = GlobalConfig.GetWS_Port(), Backlog = 100, Security = "None" });
|
|
|
|
- //}
|
|
|
|
-
|
|
|
|
- //foreach (var securityport in GlobalConfig.GetWSS_Ports())
|
|
|
|
- //{
|
|
|
|
- // llistener.Add(new ListenerConfig { Ip = System.Net.IPAddress.Any.ToString(), Port = securityport, Backlog = 100, Security = SslProtocols.Tls12.ToString() });
|
|
|
|
- //}
|
|
|
|
-
|
|
|
|
- //var config = ConfigurationManager.GetSection("superSocket") as IConfigurationSource;\
|
|
|
|
- //var certificate = configuration.GetSection("superSocket").GetSection("Servers:0").GetSection("Certificate").Get<CertificateConfig>();
|
|
|
|
- //var certificate = configuration.GetSection("SuperSocketServerCertificate").Get<CertificateConfig>();
|
|
|
|
- //ICertificateConfig Certificate = certificate;
|
|
|
|
- //IEnumerable<IListenerConfig> listeners = llistener;
|
|
|
|
-
|
|
|
|
- //設定server config
|
|
|
|
- var serverConfig = new ServerConfig
|
|
|
|
- {
|
|
|
|
- SendingQueueSize = 10,
|
|
|
|
- //Port = Convert.ToInt32(2012),
|
|
|
|
- //Ip = "172.17.40.13",
|
|
|
|
- MaxRequestLength = 204800,
|
|
|
|
- //Security = serverSecurity,
|
|
|
|
- //Certificate = Certificate,
|
|
|
|
- //Listeners = listeners,
|
|
|
|
- // LogAllSocketException = true,
|
|
|
|
- KeepAliveTime = 10,
|
|
|
|
- // LogBasicSessionActivity = true
|
|
|
|
- //Security = "None"
|
|
|
|
- };
|
|
|
|
-
|
|
|
|
- //Setup with listening port
|
|
|
|
- //if (!appServer.Setup(serverConfig, logFactory: new NLogLoggerFactory()))
|
|
|
|
- //{
|
|
|
|
- // //Console.WriteLine("Failed to setup!");
|
|
|
|
- // logger.LogCritical("Failed to setup!");
|
|
|
|
- // return;
|
|
|
|
- //}
|
|
|
|
-
|
|
|
|
websocketService.ValidateHandshake = WebsocketServiceValidateHandshake;
|
|
websocketService.ValidateHandshake = WebsocketServiceValidateHandshake;
|
|
websocketService.NewSessionConnected += AppServer_NewSessionConnected;
|
|
websocketService.NewSessionConnected += AppServer_NewSessionConnected;
|
|
-
|
|
|
|
-
|
|
|
|
- //Try to start the appServer
|
|
|
|
- //if (!appServer.Start())
|
|
|
|
- //{
|
|
|
|
- // logger.LogCritical("Failed to start!");
|
|
|
|
- // //Console.ReadKey();
|
|
|
|
- // return;
|
|
|
|
- //}
|
|
|
|
}
|
|
}
|
|
|
|
|
|
private void StopWsService()
|
|
private void StopWsService()
|
|
@@ -451,7 +383,7 @@ namespace EVCB_OCPP.WSServer
|
|
string sb = responseBuilder.ToString();
|
|
string sb = responseBuilder.ToString();
|
|
byte[] data = Encoding.UTF8.GetBytes(sb);
|
|
byte[] data = Encoding.UTF8.GetBytes(sb);
|
|
|
|
|
|
- ((IWebSocketSession)session).SendRawData(data, 0, data.Length);
|
|
|
|
|
|
+ session.SendRawData(data, 0, data.Length);
|
|
logger.LogTrace(sb);
|
|
logger.LogTrace(sb);
|
|
return false;
|
|
return false;
|
|
}
|
|
}
|
|
@@ -487,7 +419,7 @@ namespace EVCB_OCPP.WSServer
|
|
responseBuilder.AppendWithCrCf();
|
|
responseBuilder.AppendWithCrCf();
|
|
string sb = responseBuilder.ToString();
|
|
string sb = responseBuilder.ToString();
|
|
byte[] data = Encoding.UTF8.GetBytes(sb);
|
|
byte[] data = Encoding.UTF8.GetBytes(sb);
|
|
- ((IWebSocketSession)session).SendRawData(data, 0, data.Length);
|
|
|
|
|
|
+ session.SendRawData(data, 0, data.Length);
|
|
|
|
|
|
logger.LogInformation(sb);
|
|
logger.LogInformation(sb);
|
|
return false;
|
|
return false;
|
|
@@ -515,7 +447,7 @@ namespace EVCB_OCPP.WSServer
|
|
string sb = responseBuilder.ToString();
|
|
string sb = responseBuilder.ToString();
|
|
byte[] data = Encoding.UTF8.GetBytes(sb);
|
|
byte[] data = Encoding.UTF8.GetBytes(sb);
|
|
|
|
|
|
- ((IWebSocketSession)session).SendRawData(data, 0, data.Length);
|
|
|
|
|
|
+ session.SendRawData(data, 0, data.Length);
|
|
logger.LogInformation(sb);
|
|
logger.LogInformation(sb);
|
|
return false;
|
|
return false;
|
|
}
|
|
}
|
|
@@ -579,7 +511,7 @@ namespace EVCB_OCPP.WSServer
|
|
string sb = responseBuilder.ToString();
|
|
string sb = responseBuilder.ToString();
|
|
byte[] data = Encoding.UTF8.GetBytes(sb);
|
|
byte[] data = Encoding.UTF8.GetBytes(sb);
|
|
|
|
|
|
- ((IWebSocketSession)session).SendRawData(data, 0, data.Length);
|
|
|
|
|
|
+ session.SendRawData(data, 0, data.Length);
|
|
logger.LogInformation(sb);
|
|
logger.LogInformation(sb);
|
|
return false;
|
|
return false;
|
|
}
|
|
}
|
|
@@ -648,8 +580,12 @@ namespace EVCB_OCPP.WSServer
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
- async private void ReceivedMessageTimeLimited(WsClientData session, string rawdata)
|
|
|
|
|
|
+ async private void ReceivedMessageTimeLimited(object sender , string rawdata)
|
|
{
|
|
{
|
|
|
|
+ if (sender is not WsClientData session)
|
|
|
|
+ {
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
CancellationTokenSource tokenSource = new();
|
|
CancellationTokenSource tokenSource = new();
|
|
var task = ReceivedMessage(session, rawdata);
|
|
var task = ReceivedMessage(session, rawdata);
|
|
var completedTask = await Task.WhenAny(task, Task.Delay(90_000, tokenSource.Token));
|
|
var completedTask = await Task.WhenAny(task, Task.Delay(90_000, tokenSource.Token));
|