You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Zero/ZeroLevel/Services/Network/SocketClient.cs

514 lines
17 KiB

6 years ago
using System;
using System.Collections.Concurrent;
using System.Net;
using System.Net.Sockets;
using System.Threading;
5 years ago
using ZeroLevel.Services.Pools;
6 years ago
using ZeroLevel.Services.Serialization;
namespace ZeroLevel.Network
6 years ago
{
5 years ago
public class SocketClient
: BaseSocket, ISocketClient
6 years ago
{
#region Private
5 years ago
private class IncomingFrame
5 years ago
{
5 years ago
private IncomingFrame() { }
5 years ago
public FrameType type;
public int identity;
public byte[] data;
5 years ago
public static IncomingFrame NewFrame() => new IncomingFrame();
5 years ago
}
5 years ago
private class SendFrame
5 years ago
{
5 years ago
private SendFrame() { }
5 years ago
public bool isRequest;
public int identity;
public byte[] data;
5 years ago
public static SendFrame NewFrame() => new SendFrame();
5 years ago
}
6 years ago
private Socket _clientSocket;
private NetworkStream _stream;
5 years ago
6 years ago
private FrameParser _parser = new FrameParser();
5 years ago
private readonly RequestBuffer _requests = new RequestBuffer();
private bool _socket_freezed = false; // используется для связи сервер-клиент, запрещает пересоздание сокета
private int _current_heartbeat_period_in_ms = 0;
5 years ago
private long _heartbeat_key = -1;
6 years ago
private long _last_rw_time = DateTime.UtcNow.Ticks;
private readonly byte[] _buffer = new byte[DEFAULT_RECEIVE_BUFFER_SIZE];
private readonly object _reconnection_lock = new object();
5 years ago
private Thread _sendThread;
private Thread _receiveThread;
private BlockingCollection<IncomingFrame> _incoming_queue = new BlockingCollection<IncomingFrame>();
private BlockingCollection<SendFrame> _send_queue = new BlockingCollection<SendFrame>(BaseSocket.MAX_SEND_QUEUE_SIZE);
5 years ago
private ObjectPool<IncomingFrame> _incoming_frames_pool = new ObjectPool<IncomingFrame>(() => IncomingFrame.NewFrame());
private ObjectPool<SendFrame> _send_frames_pool = new ObjectPool<SendFrame>(() => SendFrame.NewFrame());
#endregion Private
6 years ago
5 years ago
public IRouter Router { get; }
6 years ago
public bool IsEmptySendQueue { get { return _send_queue.Count == 0; } }
public SocketClient(IPEndPoint ep, IRouter router)
6 years ago
{
5 years ago
Router = router;
6 years ago
Endpoint = ep;
5 years ago
_parser.OnIncoming += _parser_OnIncoming;
5 years ago
StartInternalThreads();
EnsureConnection();
5 years ago
}
6 years ago
public SocketClient(Socket socket, IRouter router)
5 years ago
{
5 years ago
Router = router;
5 years ago
_socket_freezed = true;
_clientSocket = socket;
_stream = new NetworkStream(_clientSocket, true);
5 years ago
Endpoint = (IPEndPoint)_clientSocket.RemoteEndPoint;
_parser.OnIncoming += _parser_OnIncoming;
5 years ago
StartInternalThreads();
Working();
_stream.BeginRead(_buffer, 0, DEFAULT_RECEIVE_BUFFER_SIZE, ReceiveAsyncCallback, null);
}
private void StartInternalThreads()
{
6 years ago
_sendThread = new Thread(SendFramesJob);
_sendThread.IsBackground = true;
5 years ago
_sendThread.Start();
5 years ago
_receiveThread = new Thread(IncomingFramesJob);
_receiveThread.IsBackground = true;
_receiveThread.Start();
6 years ago
}
5 years ago
#region API
public event Action<ISocketClient> OnConnect = (_) => { };
public event Action<ISocketClient> OnDisconnect = (_) => { };
5 years ago
public IPEndPoint Endpoint { get; }
public void Request(Frame frame, Action<byte[]> callback, Action<string> fail = null)
6 years ago
{
5 years ago
if (frame == null) throw new ArgumentNullException(nameof(frame));
5 years ago
var data = NetworkPacketFactory.Reqeust(MessageSerializer.Serialize(frame), out int id);
frame.Release();
if (!_send_queue.IsAddingCompleted)
6 years ago
{
5 years ago
while (_send_queue.Count >= MAX_SEND_QUEUE_SIZE)
{
5 years ago
Thread.Sleep(1);
5 years ago
}
_requests.RegisterForFrame(id, callback, fail);
5 years ago
var sf = _send_frames_pool.Allocate();
sf.isRequest = true;
sf.identity = id;
sf.data = data;
_send_queue.Add(sf);
5 years ago
6 years ago
}
}
5 years ago
public void ForceConnect()
{
EnsureConnection();
}
public void Send(Frame frame)
6 years ago
{
5 years ago
if (frame == null) throw new ArgumentNullException(nameof(frame));
5 years ago
var data = NetworkPacketFactory.Message(MessageSerializer.Serialize(frame));
frame.Release();
if (!_send_queue.IsAddingCompleted)
6 years ago
{
5 years ago
while (_send_queue.Count >= MAX_SEND_QUEUE_SIZE)
6 years ago
{
5 years ago
Thread.Sleep(1);
6 years ago
}
5 years ago
var sf = _send_frames_pool.Allocate();
sf.isRequest = false;
sf.identity = 0;
sf.data = data;
_send_queue.Add(sf);
6 years ago
}
5 years ago
}
5 years ago
5 years ago
public void Response(byte[] data, int identity)
{
if (data == null) throw new ArgumentNullException(nameof(data));
if (!_send_queue.IsAddingCompleted)
6 years ago
{
5 years ago
while (_send_queue.Count >= MAX_SEND_QUEUE_SIZE)
6 years ago
{
5 years ago
Thread.Sleep(1);
6 years ago
}
5 years ago
var sf = _send_frames_pool.Allocate();
sf.isRequest = false;
sf.identity = 0;
sf.data = NetworkPacketFactory.Response(data, identity);
_send_queue.Add(sf);
6 years ago
}
}
5 years ago
public void UseKeepAlive(TimeSpan period)
6 years ago
{
5 years ago
if (_heartbeat_key != -1)
6 years ago
{
5 years ago
Sheduller.Remove(_heartbeat_key);
6 years ago
}
5 years ago
if (period != TimeSpan.Zero && period.TotalMilliseconds > MINIMUM_HEARTBEAT_UPDATE_PERIOD_MS)
6 years ago
{
5 years ago
_current_heartbeat_period_in_ms = (int)period.TotalMilliseconds;
_heartbeat_key = Sheduller.RemindEvery(period, Heartbeat);
6 years ago
}
5 years ago
else
6 years ago
{
5 years ago
_current_heartbeat_period_in_ms = 0;
6 years ago
}
}
5 years ago
#endregion
6 years ago
5 years ago
#region Private methods
5 years ago
private void _parser_OnIncoming(FrameType type, int identity, byte[] data)
{
try
{
if (type == FrameType.KeepAlive) return;
5 years ago
var inc_frame = _incoming_frames_pool.Allocate();
inc_frame.data = data;
inc_frame.type = type;
inc_frame.identity = identity;
_incoming_queue.Add(inc_frame);
6 years ago
}
5 years ago
catch (Exception ex)
{
Log.Error(ex, $"[SocketClient._parser_OnIncoming]");
}
6 years ago
}
6 years ago
private bool TryConnect()
{
5 years ago
if (Status == SocketClientStatus.Working)
6 years ago
{
return true;
}
5 years ago
if (Status == SocketClientStatus.Disposed)
6 years ago
{
return false;
}
6 years ago
if (_clientSocket != null)
{
try
{
_stream?.Close();
_stream?.Dispose();
_clientSocket.Dispose();
}
catch
{
/* ignore */
}
_clientSocket = null;
_stream = null;
}
try
{
_clientSocket = MakeClientSocket();
6 years ago
_clientSocket.Connect(Endpoint);
6 years ago
_stream = new NetworkStream(_clientSocket, true);
_stream.BeginRead(_buffer, 0, DEFAULT_RECEIVE_BUFFER_SIZE, ReceiveAsyncCallback, null);
}
catch (Exception ex)
{
Log.SystemError(ex, "[SocketClient.TryConnect] Connection fault");
6 years ago
Broken();
6 years ago
return false;
}
6 years ago
Working();
5 years ago
OnConnect(this);
6 years ago
return true;
}
public void EnsureConnection()
{
5 years ago
if (_socket_freezed)
{
return;
}
6 years ago
lock (_reconnection_lock)
{
5 years ago
if (Status == SocketClientStatus.Disposed)
6 years ago
{
throw new ObjectDisposedException("connection");
}
5 years ago
if (Status != SocketClientStatus.Working)
6 years ago
{
if (false == TryConnect())
{
throw new Exception("No connection");
6 years ago
}
}
}
}
5 years ago
private void Heartbeat()
6 years ago
{
5 years ago
try
{
EnsureConnection();
}
catch (Exception ex)
{
Log.SystemError(ex, "[SocketClient.Heartbeat.EnsureConnection]");
Broken();
OnDisconnect(this);
5 years ago
return;
}
_requests.TestForTimeouts();
try
6 years ago
{
5 years ago
var info = _send_frames_pool.Allocate();
info.isRequest = false;
info.identity = 0;
info.data = NetworkPacketFactory.KeepAliveMessage();
5 years ago
_send_queue.Add(info);
5 years ago
}
catch (Exception ex)
{
Log.SystemError(ex, "[SocketClient.Heartbeat.Request]");
}
var diff_request_ms = ((DateTime.UtcNow.Ticks - _last_rw_time) / TimeSpan.TicksPerMillisecond);
if (diff_request_ms > (_current_heartbeat_period_in_ms * 2))
{
var port = (_clientSocket.LocalEndPoint as IPEndPoint)?.Port;
Log.Debug($"[SocketClient.Heartbeat] server disconnected, because last data was more thas {diff_request_ms} ms ago. Client port {port}");
Broken();
6 years ago
}
}
5 years ago
private void ReceiveAsyncCallback(IAsyncResult ar)
6 years ago
{
try
5 years ago
{
5 years ago
var count = _stream.EndRead(ar);
if (count > 0)
{
_parser.Push(_buffer, count);
_last_rw_time = DateTime.UtcNow.Ticks;
}
else
{
5 years ago
// TODO or not TODO
Thread.Sleep(1);
}
EnsureConnection();
5 years ago
_stream.BeginRead(_buffer, 0, DEFAULT_RECEIVE_BUFFER_SIZE, ReceiveAsyncCallback, null);
6 years ago
}
5 years ago
catch (ObjectDisposedException)
6 years ago
{
5 years ago
/// Nothing
6 years ago
}
catch (Exception ex)
{
5 years ago
Log.SystemError(ex, $"[SocketClient.ReceiveAsyncCallback] Error read data");
6 years ago
Broken();
5 years ago
OnDisconnect(this);
}
}
5 years ago
5 years ago
private void IncomingFramesJob()
{
IncomingFrame frame = default(IncomingFrame);
while (Status != SocketClientStatus.Disposed && !_send_queue.IsCompleted)
{
try
{
frame = _incoming_queue.Take();
}
catch (Exception ex)
{
Log.SystemError(ex, "[SocketClient.IncomingFramesJob] _incoming_queue.Take");
if (Status != SocketClientStatus.Disposed)
{
_incoming_queue.Dispose();
_incoming_queue = new BlockingCollection<IncomingFrame>();
}
5 years ago
if (frame != null)
{
_incoming_frames_pool.Free(frame);
}
5 years ago
continue;
}
try
{
switch (frame.type)
{
case FrameType.Message:
Router?.HandleMessage(MessageSerializer.Deserialize<Frame>(frame.data), this);
break;
case FrameType.Request:
{
Router?.HandleRequest(MessageSerializer.Deserialize<Frame>(frame.data), this, frame.identity, (id, response) =>
{
if (response != null)
{
this.Response(response, id);
}
});
}
break;
case FrameType.Response:
{
_requests.Success(frame.identity, frame.data);
}
break;
}
}
catch (Exception ex)
{
Log.SystemError(ex, "[SocketClient.IncomingFramesJob] Handle frame");
}
5 years ago
finally
{
_incoming_frames_pool.Free(frame);
}
5 years ago
}
}
5 years ago
private void SendFramesJob()
{
5 years ago
SendFrame frame = null;
5 years ago
int unsuccess = 0;
5 years ago
while (Status != SocketClientStatus.Disposed && !_send_queue.IsCompleted)
5 years ago
{
try
{
frame = _send_queue.Take();
}
catch (Exception ex)
{
Log.SystemError(ex, "[SocketClient.SendFramesJob] send_queue.Take");
5 years ago
if (Status != SocketClientStatus.Disposed)
{
_send_queue.Dispose();
_send_queue = new BlockingCollection<SendFrame>();
}
5 years ago
if (frame != null)
{
_send_frames_pool.Free(frame);
}
5 years ago
continue;
}
5 years ago
while (_stream?.CanWrite == false || Status != SocketClientStatus.Working)
5 years ago
{
try
{
EnsureConnection();
}
catch (Exception ex)
{
5 years ago
Log.SystemError(ex, "[SocketClient.SendFramesJob] Connection broken");
5 years ago
}
if (Status == SocketClientStatus.Disposed)
{
return;
}
if (Status == SocketClientStatus.Broken)
{
unsuccess++;
if (unsuccess > 30) unsuccess = 30;
}
if (Status == SocketClientStatus.Working)
{
unsuccess = 0;
5 years ago
break;
5 years ago
}
Thread.Sleep(unsuccess * 128);
}
5 years ago
try
5 years ago
{
5 years ago
if (frame.isRequest)
5 years ago
{
5 years ago
_requests.StartSend(frame.identity);
5 years ago
}
5 years ago
_stream.Write(frame.data, 0, frame.data.Length);
_last_rw_time = DateTime.UtcNow.Ticks;
}
catch (Exception ex)
{
Log.SystemError(ex, $"[SocketClient.SendFramesJob] _stream.Write");
Broken();
OnDisconnect(this);
5 years ago
}
5 years ago
finally
{
_send_frames_pool.Free(frame);
}
5 years ago
}
}
5 years ago
#endregion
6 years ago
#region Helper
6 years ago
private static Socket MakeClientSocket()
{
var s = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
s.SetIPProtectionLevel(IPProtectionLevel.Unrestricted);
s.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.DontLinger, true);
return s;
}
/* TODO to test
public async Task<int> ReadAsync(byte[] buffer, int offset, int count, CancellationToken cancellationToken)
{
try
{
// Workaround for: https://github.com/dotnet/corefx/issues/24430
using (cancellationToken.Register(Dispose))
{
if (cancellationToken.IsCancellationRequested)
{
return 0;
}
return await _stream.ReadAsync(buffer, offset, count, cancellationToken).ConfigureAwait(false);
}
}
catch (IOException exception)
{
if (exception.InnerException is SocketException socketException)
{
ExceptionDispatchInfo.Capture(socketException).Throw();
}
throw;
}
}
*/
#endregion Helper
6 years ago
public override void Dispose()
{
5 years ago
if (Status == SocketClientStatus.Working)
6 years ago
{
5 years ago
OnDisconnect(this);
6 years ago
}
6 years ago
Disposed();
6 years ago
Sheduller.Remove(_heartbeat_key);
_stream?.Close();
_stream?.Dispose();
}
}
5 years ago
}

Powered by TurnKey Linux.