84 lines
3.4 KiB
C#
84 lines
3.4 KiB
C#
using NoSugarNet.ClientCoreNet.Standard2.Manager;
|
|
using NoSugarNet.ClientCoreNet.Standard2.Network;
|
|
using ServerCore.Manager;
|
|
using static NoSugarNet.ClientCoreNet.Standard2.Manager.LogManager;
|
|
|
|
namespace NoSugarNet.ClientCoreNet.Standard2
|
|
{
|
|
public class AppNoSugarNet
|
|
{
|
|
public static string TokenStr;
|
|
public static long RID = -1;
|
|
public static string IP;
|
|
public static int Port;
|
|
public static LogManager log;
|
|
public static NetworkHelper networkHelper;
|
|
public static AppLogin login;
|
|
public static AppChat chat;
|
|
public static AppLocalClient local;
|
|
public static UserDataManager user;
|
|
public static System.Timers.Timer _SpeedCheckTimeTimer;//速度检测计时器
|
|
public static int TimerInterval = 1000;//计时器间隔
|
|
static NetStatus netStatus;
|
|
|
|
#region 委托和事件
|
|
public delegate void OnUpdateStatusHandler(NetStatus Status);
|
|
public static event OnUpdateStatusHandler OnUpdateStatus;
|
|
#endregion
|
|
|
|
public static void Init(OnLogHandler onLog = null)
|
|
{
|
|
log = new LogManager();
|
|
if(onLog != null)
|
|
LogManager.OnLog += onLog;
|
|
networkHelper = new NetworkHelper();
|
|
login = new AppLogin();
|
|
chat = new AppChat();
|
|
local = new AppLocalClient();
|
|
user = new UserDataManager();
|
|
netStatus = new NetStatus();
|
|
_SpeedCheckTimeTimer = new System.Timers.Timer();
|
|
_SpeedCheckTimeTimer.Interval = TimerInterval;
|
|
_SpeedCheckTimeTimer.Elapsed += Checktimer_Elapsed;
|
|
_SpeedCheckTimeTimer.AutoReset = true;
|
|
}
|
|
|
|
public static void Connect(string IP, int port)
|
|
{
|
|
if (networkHelper.Init(IP, port))
|
|
_SpeedCheckTimeTimer.Enabled = true;
|
|
else
|
|
_SpeedCheckTimeTimer.Enabled = false;
|
|
}
|
|
|
|
public static void Close()
|
|
{
|
|
local.StopAll();
|
|
networkHelper.CloseConntect();
|
|
AppNoSugarNet.log.Info("停止");
|
|
_SpeedCheckTimeTimer.Enabled = false;
|
|
}
|
|
|
|
static void Checktimer_Elapsed(object sender, System.Timers.ElapsedEventArgs e)
|
|
{
|
|
local.GetCurrLenght(out long resultReciveAllLenght, out long resultSendAllLenght);
|
|
local.GetClientCount(out int ClientUserCount, out int TunnelCount);
|
|
|
|
NetStatus resutnetStatus = new NetStatus()
|
|
{
|
|
TunnelCount = TunnelCount,
|
|
ClientUserCount = ClientUserCount,
|
|
srcSendAllLenght = resultSendAllLenght,
|
|
srcReciveAllLenght = resultReciveAllLenght,
|
|
srcReciveSecSpeed = (resultReciveAllLenght - netStatus.srcReciveAllLenght) / (TimerInterval / 1000),
|
|
srcSendSecSpeed = (resultSendAllLenght - netStatus.srcSendAllLenght) / (TimerInterval / 1000),
|
|
tSendAllLenght = local.tSendAllLenght,
|
|
tReciveAllLenght = local.tReciveAllLenght,
|
|
tSendSecSpeed = (local.tSendAllLenght - netStatus.tSendAllLenght) / (TimerInterval / 1000),
|
|
tReciveSecSpeed = (local.tReciveAllLenght - netStatus.tReciveAllLenght) / (TimerInterval / 1000),
|
|
};
|
|
netStatus = resutnetStatus;
|
|
OnUpdateStatus?.Invoke(resutnetStatus);
|
|
}
|
|
}
|
|
} |