|
@@ -40,6 +40,7 @@ using Microsoft.Data.SqlClient;
|
|
using System.Collections.ObjectModel;
|
|
using System.Collections.ObjectModel;
|
|
using System.Collections.Concurrent;
|
|
using System.Collections.Concurrent;
|
|
using EVCB_OCPP.WSServer.SuperSocket;
|
|
using EVCB_OCPP.WSServer.SuperSocket;
|
|
|
|
+using Microsoft.Extensions.Logging;
|
|
|
|
|
|
namespace EVCB_OCPP.WSServer
|
|
namespace EVCB_OCPP.WSServer
|
|
{
|
|
{
|
|
@@ -60,13 +61,16 @@ namespace EVCB_OCPP.WSServer
|
|
|
|
|
|
public class ProtalServer : IHostedService
|
|
public class ProtalServer : IHostedService
|
|
{
|
|
{
|
|
- static private ILogger logger = NLog.LogManager.GetCurrentClassLogger();
|
|
|
|
|
|
+ //static private ILogger logger = NLog.LogManager.GetCurrentClassLogger();
|
|
|
|
|
|
public ProtalServer(
|
|
public ProtalServer(
|
|
- IConfiguration configuration
|
|
|
|
|
|
+ ILogger<ProtalServer> logger
|
|
|
|
+ ,IConfiguration configuration
|
|
, IDbContextFactory<MainDBContext> maindbContextFactory
|
|
, IDbContextFactory<MainDBContext> maindbContextFactory
|
|
, IMainDbService mainDbService
|
|
, IMainDbService mainDbService
|
|
, IDbContextFactory<ConnectionLogDBContext> connectionLogdbContextFactory
|
|
, IDbContextFactory<ConnectionLogDBContext> connectionLogdbContextFactory
|
|
|
|
+ , SqlConnectionFactory<WebDBConetext> webDbConnectionFactory
|
|
|
|
+ , SqlConnectionFactory<MainDBContext> mainDbConnectionFactory
|
|
, IHostEnvironment environment
|
|
, IHostEnvironment environment
|
|
, IOCPPWSServerFactory ocppWSServerFactory
|
|
, IOCPPWSServerFactory ocppWSServerFactory
|
|
, IConnectionLogdbService connectionLogdbService
|
|
, IConnectionLogdbService connectionLogdbService
|
|
@@ -74,19 +78,20 @@ namespace EVCB_OCPP.WSServer
|
|
,IServiceProvider serviceProvider)
|
|
,IServiceProvider serviceProvider)
|
|
{
|
|
{
|
|
_ct = _cts.Token;
|
|
_ct = _cts.Token;
|
|
-
|
|
|
|
|
|
+ this.logger = logger;
|
|
this.configuration = configuration;
|
|
this.configuration = configuration;
|
|
this.maindbContextFactory = maindbContextFactory;
|
|
this.maindbContextFactory = maindbContextFactory;
|
|
this.mainDbService = mainDbService;
|
|
this.mainDbService = mainDbService;
|
|
|
|
+ this.webDbConnectionFactory = webDbConnectionFactory;
|
|
//this.connectionLogdbContextFactory = connectionLogdbContextFactory;
|
|
//this.connectionLogdbContextFactory = connectionLogdbContextFactory;
|
|
this.ocppWSServerFactory = ocppWSServerFactory;
|
|
this.ocppWSServerFactory = ocppWSServerFactory;
|
|
this.connectionLogdbService = connectionLogdbService;
|
|
this.connectionLogdbService = connectionLogdbService;
|
|
this.webDbService = webDbService;
|
|
this.webDbService = webDbService;
|
|
isInDocker = !string.IsNullOrEmpty(configuration["DOTNET_RUNNING_IN_CONTAINER"]);
|
|
isInDocker = !string.IsNullOrEmpty(configuration["DOTNET_RUNNING_IN_CONTAINER"]);
|
|
|
|
|
|
- webConnectionString = configuration.GetConnectionString("WebDBContext");
|
|
|
|
|
|
+ // = configuration.GetConnectionString("WebDBContext");
|
|
this.profileHandler = serviceProvider.GetService<ProfileHandler>();// new ProfileHandler(configuration, serviceProvider);
|
|
this.profileHandler = serviceProvider.GetService<ProfileHandler>();// new ProfileHandler(configuration, serviceProvider);
|
|
- _loadingBalanceService = new LoadingBalanceService(configuration);
|
|
|
|
|
|
+ _loadingBalanceService = new LoadingBalanceService(mainDbConnectionFactory, webDbConnectionFactory );
|
|
|
|
|
|
WarmUpLog();
|
|
WarmUpLog();
|
|
}
|
|
}
|
|
@@ -97,17 +102,19 @@ namespace EVCB_OCPP.WSServer
|
|
private ConcurrentDictionary<string, ClientData> clientDic = new ConcurrentDictionary<string, ClientData>();
|
|
private ConcurrentDictionary<string, ClientData> clientDic = new ConcurrentDictionary<string, ClientData>();
|
|
//private readonly Object _lockClientDic = new object();
|
|
//private readonly Object _lockClientDic = new object();
|
|
private readonly Object _lockConfirmPacketList = new object();
|
|
private readonly Object _lockConfirmPacketList = new object();
|
|
|
|
+ private readonly ILogger<ProtalServer> logger;
|
|
private readonly IConfiguration configuration;
|
|
private readonly IConfiguration configuration;
|
|
//private readonly IServiceProvider serviceProvider;
|
|
//private readonly IServiceProvider serviceProvider;
|
|
private readonly IDbContextFactory<MainDBContext> maindbContextFactory;
|
|
private readonly IDbContextFactory<MainDBContext> maindbContextFactory;
|
|
private readonly IMainDbService mainDbService;
|
|
private readonly IMainDbService mainDbService;
|
|
|
|
+ private readonly SqlConnectionFactory<WebDBConetext> webDbConnectionFactory;
|
|
|
|
|
|
//private readonly IDbContextFactory<ConnectionLogDBContext> connectionLogdbContextFactory;
|
|
//private readonly IDbContextFactory<ConnectionLogDBContext> connectionLogdbContextFactory;
|
|
private readonly IOCPPWSServerFactory ocppWSServerFactory;
|
|
private readonly IOCPPWSServerFactory ocppWSServerFactory;
|
|
private readonly IConnectionLogdbService connectionLogdbService;
|
|
private readonly IConnectionLogdbService connectionLogdbService;
|
|
private readonly WebDbService webDbService;
|
|
private readonly WebDbService webDbService;
|
|
private readonly ProfileHandler profileHandler;//= new ProfileHandler();
|
|
private readonly ProfileHandler profileHandler;//= new ProfileHandler();
|
|
- private readonly string webConnectionString;// = ConfigurationManager.ConnectionStrings["WebDBContext"].ConnectionString;
|
|
|
|
|
|
+ //private readonly string webConnectionString;// = ConfigurationManager.ConnectionStrings["WebDBContext"].ConnectionString;
|
|
private readonly bool isInDocker;
|
|
private readonly bool isInDocker;
|
|
private List<NeedConfirmMessage> needConfirmPacketList = new List<NeedConfirmMessage>();
|
|
private List<NeedConfirmMessage> needConfirmPacketList = new List<NeedConfirmMessage>();
|
|
private DateTime checkUpdateDt = DateTime.UtcNow;
|
|
private DateTime checkUpdateDt = DateTime.UtcNow;
|
|
@@ -316,7 +323,7 @@ namespace EVCB_OCPP.WSServer
|
|
|
|
|
|
if (isTargetRule)
|
|
if (isTargetRule)
|
|
{
|
|
{
|
|
- rule.SetLoggingLevels(LogLevel.Warn, LogLevel.Off);
|
|
|
|
|
|
+ rule.SetLoggingLevels(NLog.LogLevel.Warn, NLog.LogLevel.Off);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
break;
|
|
@@ -343,7 +350,7 @@ namespace EVCB_OCPP.WSServer
|
|
|
|
|
|
if (isTargetRule)
|
|
if (isTargetRule)
|
|
{
|
|
{
|
|
- rule.SetLoggingLevels(LogLevel.Trace, LogLevel.Off);
|
|
|
|
|
|
+ rule.SetLoggingLevels(NLog.LogLevel.Trace, NLog.LogLevel.Off);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
break;
|
|
@@ -386,7 +393,7 @@ namespace EVCB_OCPP.WSServer
|
|
List<string> toReturn = new List<string>() { "Command List Clients" };
|
|
List<string> toReturn = new List<string>() { "Command List Clients" };
|
|
Dictionary<string, ClientData> _copyClientDic = null;
|
|
Dictionary<string, ClientData> _copyClientDic = null;
|
|
_copyClientDic = new Dictionary<string, ClientData>(clientDic);
|
|
_copyClientDic = new Dictionary<string, ClientData>(clientDic);
|
|
- var list = _copyClientDic.Select(c => c.Value).Where(x=>x.IsPending = false).ToList();
|
|
|
|
|
|
+ var list = _copyClientDic.Select(c => c.Value).ToList();
|
|
int i = 1;
|
|
int i = 1;
|
|
foreach (var c in list)
|
|
foreach (var c in list)
|
|
{
|
|
{
|
|
@@ -422,7 +429,7 @@ namespace EVCB_OCPP.WSServer
|
|
|
|
|
|
if (isTargetRule)
|
|
if (isTargetRule)
|
|
{
|
|
{
|
|
- rule.SetLoggingLevels(LogLevel.Warn, LogLevel.Off);
|
|
|
|
|
|
+ rule.SetLoggingLevels(NLog.LogLevel.Warn, NLog.LogLevel.Off);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return "Command silent";
|
|
return "Command silent";
|
|
@@ -440,12 +447,26 @@ namespace EVCB_OCPP.WSServer
|
|
|
|
|
|
if (isTargetRule)
|
|
if (isTargetRule)
|
|
{
|
|
{
|
|
- rule.SetLoggingLevels(LogLevel.Trace, LogLevel.Off);
|
|
|
|
|
|
+ rule.SetLoggingLevels(NLog.LogLevel.Trace, NLog.LogLevel.Off);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return "Command show";
|
|
return "Command show";
|
|
});
|
|
});
|
|
|
|
|
|
|
|
+ app.MapGet("/threads", () => {
|
|
|
|
+ ThreadPool.GetMaxThreads(out var maxWorkerThread,out var maxCompletionPortThreads);
|
|
|
|
+ ThreadPool.GetAvailableThreads(out var avaliableWorkerThread, out var avaliableCompletionPortThreads);
|
|
|
|
+ return $"WorkerThread:{avaliableWorkerThread}/{maxWorkerThread} CompletionPortThreads{avaliableCompletionPortThreads}/{maxCompletionPortThreads}";
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ app.MapPost("/threads", (int min, int max) => {
|
|
|
|
+ ThreadPool.GetMaxThreads(out var maxWorkerThread, out var maxCompletionPortThreads);
|
|
|
|
+ ThreadPool.GetAvailableThreads(out var avaliableWorkerThread, out var avaliableCompletionPortThreads);
|
|
|
|
+ ThreadPool.SetMinThreads(min, 0);
|
|
|
|
+ ThreadPool.SetMaxThreads(max, maxCompletionPortThreads);
|
|
|
|
+ return $"WorkerThread:{avaliableWorkerThread}/{maxWorkerThread} CompletionPortThreads{avaliableCompletionPortThreads}/{maxCompletionPortThreads}";
|
|
|
|
+ });
|
|
|
|
+
|
|
app.Urls.Add("http://*:54088");
|
|
app.Urls.Add("http://*:54088");
|
|
|
|
|
|
_ = app.RunAsync();
|
|
_ = app.RunAsync();
|
|
@@ -453,10 +474,7 @@ namespace EVCB_OCPP.WSServer
|
|
|
|
|
|
internal void Stop()
|
|
internal void Stop()
|
|
{
|
|
{
|
|
- if (_cts != null)
|
|
|
|
- {
|
|
|
|
- _cts.Cancel();
|
|
|
|
- }
|
|
|
|
|
|
+ _cts?.Cancel();
|
|
}
|
|
}
|
|
|
|
|
|
private async void CheckEVSEConfigure(string chargeBoxId)
|
|
private async void CheckEVSEConfigure(string chargeBoxId)
|
|
@@ -502,11 +520,12 @@ namespace EVCB_OCPP.WSServer
|
|
//Ip = "172.17.40.13",
|
|
//Ip = "172.17.40.13",
|
|
MaxRequestLength = 204800,
|
|
MaxRequestLength = 204800,
|
|
//Security = serverSecurity,
|
|
//Security = serverSecurity,
|
|
- Certificate = Certificate,
|
|
|
|
|
|
+ //Certificate = Certificate,
|
|
Listeners = listeners,
|
|
Listeners = listeners,
|
|
// LogAllSocketException = true,
|
|
// LogAllSocketException = true,
|
|
KeepAliveTime = 10,
|
|
KeepAliveTime = 10,
|
|
// LogBasicSessionActivity = true
|
|
// LogBasicSessionActivity = true
|
|
|
|
+ //Security = "None"
|
|
};
|
|
};
|
|
|
|
|
|
//Setup with listening port
|
|
//Setup with listening port
|
|
@@ -537,7 +556,7 @@ namespace EVCB_OCPP.WSServer
|
|
|
|
|
|
private async void AppServer_NewSessionConnected(ClientData session)
|
|
private async void AppServer_NewSessionConnected(ClientData session)
|
|
{
|
|
{
|
|
- logger.Debug(string.Format("{0} NewSessionConnected", session.Path));
|
|
|
|
|
|
+ logger.LogDebug(string.Format("{0} NewSessionConnected", session.Path));
|
|
|
|
|
|
try
|
|
try
|
|
{
|
|
{
|
|
@@ -578,7 +597,7 @@ namespace EVCB_OCPP.WSServer
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
catch (Exception ex)
|
|
{
|
|
{
|
|
- logger.Error(string.Format("NewSessionConnected Ex: {0}", ex.ToString()));
|
|
|
|
|
|
+ logger.LogError(string.Format("NewSessionConnected Ex: {0}", ex.ToString()));
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
@@ -592,7 +611,7 @@ namespace EVCB_OCPP.WSServer
|
|
|
|
|
|
if (completedTask != task)
|
|
if (completedTask != task)
|
|
{
|
|
{
|
|
- logger.Fatal("Process timeout: {0} ", rawdata);
|
|
|
|
|
|
+ logger.LogCritical("Process timeout: {0} ", rawdata);
|
|
await task;
|
|
await task;
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
@@ -613,7 +632,7 @@ namespace EVCB_OCPP.WSServer
|
|
|
|
|
|
if (session.ResetSecurityProfile)
|
|
if (session.ResetSecurityProfile)
|
|
{
|
|
{
|
|
- logger.Error(string.Format("[{0}] ChargeBoxId:{1} ResetSecurityProfile", DateTime.UtcNow, session.ChargeBoxId));
|
|
|
|
|
|
+ logger.LogError(string.Format("[{0}] ChargeBoxId:{1} ResetSecurityProfile", DateTime.UtcNow, session.ChargeBoxId));
|
|
RemoveClient(session);
|
|
RemoveClient(session);
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
@@ -671,7 +690,7 @@ namespace EVCB_OCPP.WSServer
|
|
}
|
|
}
|
|
catch (Exception e)
|
|
catch (Exception e)
|
|
{
|
|
{
|
|
- logger.Error($"Processing {action} exception!");
|
|
|
|
|
|
+ logger.LogError($"Processing {action} exception!");
|
|
throw;
|
|
throw;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -717,7 +736,7 @@ namespace EVCB_OCPP.WSServer
|
|
break;
|
|
break;
|
|
default:
|
|
default:
|
|
{
|
|
{
|
|
- logger.Error(string.Format("We don't implement messagetype:{0} of raw data :{1} by {2}", analysisResult.Id, rawdata, session.ChargeBoxId));
|
|
|
|
|
|
+ logger.LogError(string.Format("We don't implement messagetype:{0} of raw data :{1} by {2}", analysisResult.Id, rawdata, session.ChargeBoxId));
|
|
}
|
|
}
|
|
break;
|
|
break;
|
|
}
|
|
}
|
|
@@ -797,7 +816,7 @@ namespace EVCB_OCPP.WSServer
|
|
break;
|
|
break;
|
|
default:
|
|
default:
|
|
{
|
|
{
|
|
- logger.Error(string.Format("We don't implement messagetype:{0} of raw data :{1} by {2}", analysisResult.Id, rawdata, session.ChargeBoxId));
|
|
|
|
|
|
+ logger.LogError(string.Format("We don't implement messagetype:{0} of raw data :{1} by {2}", analysisResult.Id, rawdata, session.ChargeBoxId));
|
|
}
|
|
}
|
|
break;
|
|
break;
|
|
}
|
|
}
|
|
@@ -818,7 +837,7 @@ namespace EVCB_OCPP.WSServer
|
|
break;
|
|
break;
|
|
default:
|
|
default:
|
|
{
|
|
{
|
|
- logger.Error(string.Format("Can't analyze messagetype:{0} of raw data :{1} by {2}", analysisResult.Id, rawdata, session.ChargeBoxId));
|
|
|
|
|
|
+ logger.LogError(string.Format("Can't analyze messagetype:{0} of raw data :{1} by {2}", analysisResult.Id, rawdata, session.ChargeBoxId));
|
|
}
|
|
}
|
|
break;
|
|
break;
|
|
|
|
|
|
@@ -833,13 +852,13 @@ namespace EVCB_OCPP.WSServer
|
|
|
|
|
|
if (ex.InnerException != null)
|
|
if (ex.InnerException != null)
|
|
{
|
|
{
|
|
- logger.Error(string.Format("{0} **Inner Exception :{1} ", session.ChargeBoxId + rawdata, ex.ToString()));
|
|
|
|
|
|
+ logger.LogError(string.Format("{0} **Inner Exception :{1} ", session.ChargeBoxId + rawdata, ex.ToString()));
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|
|
else
|
|
else
|
|
{
|
|
{
|
|
- logger.Error(string.Format("{0} **Exception :{1} ", session.ChargeBoxId, ex.ToString()));
|
|
|
|
|
|
+ logger.LogError(string.Format("{0} **Exception :{1} ", session.ChargeBoxId, ex.ToString()));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -946,7 +965,7 @@ namespace EVCB_OCPP.WSServer
|
|
sendTimer.Stop();
|
|
sendTimer.Stop();
|
|
if(sendTimer.ElapsedMilliseconds/1000 > 1)
|
|
if(sendTimer.ElapsedMilliseconds/1000 > 1)
|
|
{
|
|
{
|
|
- logger.Fatal("ProcessRequestMessage Send Cost {time} sec", sendTimer.ElapsedMilliseconds / 1000);
|
|
|
|
|
|
+ logger.LogCritical("ProcessRequestMessage Send Cost {time} sec", sendTimer.ElapsedMilliseconds / 1000);
|
|
}
|
|
}
|
|
|
|
|
|
if (action == Actions.StartTransaction)
|
|
if (action == Actions.StartTransaction)
|
|
@@ -966,7 +985,7 @@ namespace EVCB_OCPP.WSServer
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
catch (Exception ex)
|
|
{
|
|
{
|
|
- logger.Error(string.Format("Set Profile Exception: {0}", ex.ToString()));
|
|
|
|
|
|
+ logger.LogError(string.Format("Set Profile Exception: {0}", ex.ToString()));
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
}
|
|
@@ -990,7 +1009,7 @@ namespace EVCB_OCPP.WSServer
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
catch (Exception ex)
|
|
{
|
|
{
|
|
- logger.Error(string.Format("Set Profile Exception: {0}", ex.ToString()));
|
|
|
|
|
|
+ logger.LogError(string.Format("Set Profile Exception: {0}", ex.ToString()));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -1048,7 +1067,7 @@ namespace EVCB_OCPP.WSServer
|
|
outter_stopwatch.Stop();
|
|
outter_stopwatch.Stop();
|
|
if (outter_stopwatch.ElapsedMilliseconds > 1000)
|
|
if (outter_stopwatch.ElapsedMilliseconds > 1000)
|
|
{
|
|
{
|
|
- logger.Fatal("ProcessRequestMessage {action} too long {time} sec", action.ToString(), outter_stopwatch.ElapsedMilliseconds / 1000);
|
|
|
|
|
|
+ logger.LogCritical("ProcessRequestMessage {action} too long {time} sec", action.ToString(), outter_stopwatch.ElapsedMilliseconds / 1000);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -1109,7 +1128,7 @@ namespace EVCB_OCPP.WSServer
|
|
|
|
|
|
if (confirmResult == null || !confirmResult.Success)
|
|
if (confirmResult == null || !confirmResult.Success)
|
|
{
|
|
{
|
|
- logger.Error(string.Format("Action:{0} MessageId:{1} ExecuteConfirm Error:{2} ",
|
|
|
|
|
|
+ logger.LogError(string.Format("Action:{0} MessageId:{1} ExecuteConfirm Error:{2} ",
|
|
analysisResult.Action, analysisResult.UUID, confirmResult.Exception.ToString()));
|
|
analysisResult.Action, analysisResult.UUID, confirmResult.Exception.ToString()));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -1193,7 +1212,7 @@ namespace EVCB_OCPP.WSServer
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
catch (Exception ex)
|
|
{
|
|
{
|
|
- logger.Error(string.Format("Send Ex:{0}", ex.ToString()));
|
|
|
|
|
|
+ logger.LogError(string.Format("Send Ex:{0}", ex.ToString()));
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
@@ -1209,7 +1228,7 @@ namespace EVCB_OCPP.WSServer
|
|
try
|
|
try
|
|
{
|
|
{
|
|
|
|
|
|
- using (SqlConnection conn = new SqlConnection(webConnectionString))
|
|
|
|
|
|
+ using (SqlConnection conn = webDbConnectionFactory.Create())
|
|
{
|
|
{
|
|
var parameters = new DynamicParameters();
|
|
var parameters = new DynamicParameters();
|
|
parameters.Add("@MachineId", client.MachineId, DbType.String, ParameterDirection.Input, 36);
|
|
parameters.Add("@MachineId", client.MachineId, DbType.String, ParameterDirection.Input, 36);
|
|
@@ -1263,7 +1282,7 @@ namespace EVCB_OCPP.WSServer
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
catch (Exception ex)
|
|
{
|
|
{
|
|
- logger.Error("SetDefaultFee", ex.ToString());
|
|
|
|
|
|
+ logger.LogError("SetDefaultFee", ex.ToString());
|
|
}
|
|
}
|
|
|
|
|
|
return displayPriceText;
|
|
return displayPriceText;
|
|
@@ -1343,7 +1362,7 @@ namespace EVCB_OCPP.WSServer
|
|
}
|
|
}
|
|
else
|
|
else
|
|
{
|
|
{
|
|
- logger.Error(string.Format("Received no record Action:{0} MessageId:{1} ", analysisResult.Action, analysisResult.UUID));
|
|
|
|
|
|
+ logger.LogError(string.Format("Received no record Action:{0} MessageId:{1} ", analysisResult.Action, analysisResult.UUID));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -1361,7 +1380,7 @@ namespace EVCB_OCPP.WSServer
|
|
}
|
|
}
|
|
|
|
|
|
if (!string.IsNullOrEmpty(session.MachineId))
|
|
if (!string.IsNullOrEmpty(session.MachineId))
|
|
- logger.Trace("RemoveClient[" + session.ChargeBoxId + "]");
|
|
|
|
|
|
+ logger.LogTrace("RemoveClient[" + session.ChargeBoxId + "]");
|
|
|
|
|
|
if (session.Connected)
|
|
if (session.Connected)
|
|
{
|
|
{
|
|
@@ -1377,7 +1396,7 @@ namespace EVCB_OCPP.WSServer
|
|
catch (Exception ex)
|
|
catch (Exception ex)
|
|
{
|
|
{
|
|
//logger.LogWarning("Close client socket error!!");
|
|
//logger.LogWarning("Close client socket error!!");
|
|
- logger.Warn(string.Format("Close client socket error!! {0} Msg:{1}", session.ChargeBoxId, ex.Message));
|
|
|
|
|
|
+ logger.LogWarning(string.Format("Close client socket error!! {0} Msg:{1}", session.ChargeBoxId, ex.Message));
|
|
}
|
|
}
|
|
|
|
|
|
if (session != null)
|
|
if (session != null)
|
|
@@ -1397,10 +1416,10 @@ namespace EVCB_OCPP.WSServer
|
|
{
|
|
{
|
|
if (clientDic[session.ChargeBoxId].SessionID == session.SessionID)
|
|
if (clientDic[session.ChargeBoxId].SessionID == session.SessionID)
|
|
{
|
|
{
|
|
- logger.Debug(String.Format("ChargeBoxId:{0} Remove SessionId:{1} Removed SessionId:{2}", session.ChargeBoxId, session.SessionID, clientDic[session.ChargeBoxId].SessionID));
|
|
|
|
|
|
+ logger.LogDebug(String.Format("ChargeBoxId:{0} Remove SessionId:{1} Removed SessionId:{2}", session.ChargeBoxId, session.SessionID, clientDic[session.ChargeBoxId].SessionID));
|
|
|
|
|
|
clientDic.Remove(session.ChargeBoxId, out _);
|
|
clientDic.Remove(session.ChargeBoxId, out _);
|
|
- logger.Trace("RemoveClient ContainsKey " + session.ChargeBoxId);
|
|
|
|
|
|
+ logger.LogTrace("RemoveClient ContainsKey " + session.ChargeBoxId);
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
}
|
|
@@ -1420,14 +1439,15 @@ namespace EVCB_OCPP.WSServer
|
|
|
|
|
|
if (clientData.ChargeBoxId == null)
|
|
if (clientData.ChargeBoxId == null)
|
|
{
|
|
{
|
|
- logger.Fatal(clientData.Path + "]********************session ChargeBoxId null sessionId=" + clientData.SessionID);
|
|
|
|
|
|
+ logger.LogCritical(clientData.Path + "]********************session ChargeBoxId null sessionId=" + clientData.SessionID);
|
|
}
|
|
}
|
|
|
|
|
|
connectionLogdbService.WriteMachineLog(clientData, data, messageType, errorMsg, isSent);
|
|
connectionLogdbService.WriteMachineLog(clientData, data, messageType, errorMsg, isSent);
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
catch (Exception ex)
|
|
{
|
|
{
|
|
- Console.WriteLine(ex.ToString());
|
|
|
|
|
|
+ //Console.WriteLine(ex.ToString());
|
|
|
|
+ logger.LogError(ex,ex.Message);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|