Revert "Test refactoring"

This reverts commit 7d7090b4c9.
pull/1/head
Ogoun 4 years ago
parent 7d7090b4c9
commit 20cf9aef40

@ -1,89 +1,60 @@
using System; using System;
using System.Collections.Concurrent; using System.Collections.Concurrent;
using System.Collections.Generic; using System.Collections.Generic;
using ZeroLevel.Services.Pools;
namespace ZeroLevel.Network namespace ZeroLevel.Network
{ {
internal sealed class RequestBuffer internal sealed class RequestBuffer
{ {
private ConcurrentDictionary<long, Action<byte[]>> _callbacks = new ConcurrentDictionary<long, Action<byte[]>>(); private ConcurrentDictionary<long, RequestInfo> _requests = new ConcurrentDictionary<long, RequestInfo>();
private ConcurrentDictionary<long, Action<string>> _fallbacks = new ConcurrentDictionary<long, Action<string>>(); private static ObjectPool<RequestInfo> _ri_pool = new ObjectPool<RequestInfo>(() => new RequestInfo());
private ConcurrentDictionary<long, long> _timeouts = new ConcurrentDictionary<long, long>();
public void RegisterForFrame(int identity, Action<byte[]> callback, Action<string> fallback = null) public void RegisterForFrame(int identity, Action<byte[]> callback, Action<string> fail = null)
{ {
if (callback != null) var ri = _ri_pool.Allocate();
{ ri.Reset(callback, fail);
_callbacks.TryAdd(identity, callback); _requests[identity] = ri;
}
if (fallback != null)
{
_fallbacks.TryAdd(identity, fallback);
}
} }
public void Fail(long identity, string message) public void Fail(long frameId, string message)
{ {
Action<string> rec; RequestInfo ri;
if (_fallbacks.TryRemove(identity, out rec)) if (_requests.TryRemove(frameId, out ri))
{ {
try ri.Fail(message);
{ _ri_pool.Free(ri);
rec(message);
}
catch (Exception ex)
{
Log.Error(ex, $"Fail invoke fallback for request '{identity}' with message '{message ?? string.Empty}'");
}
rec = null;
} }
} }
public void Success(long identity, byte[] data) public void Success(long frameId, byte[] data)
{ {
Action<byte[]> rec; RequestInfo ri;
if (_callbacks.TryRemove(identity, out rec)) if (_requests.TryRemove(frameId, out ri))
{ {
try ri.Success(data);
{ _ri_pool.Free(ri);
rec(data);
}
catch (Exception ex)
{
Log.Error(ex, $"Fail invoke callback for request '{identity}'. Response size '{data?.Length ?? 0}'");
}
rec = null;
} }
} }
public void StartSend(long identity) public void StartSend(long frameId)
{ {
if (_callbacks.ContainsKey(identity) RequestInfo ri;
|| _fallbacks.ContainsKey(identity)) if (_requests.TryGetValue(frameId, out ri))
{ {
_timeouts.TryAdd(identity, DateTime.UtcNow.Ticks); ri.StartSend();
} }
} }
public void Timeout(List<long> identities) public void Timeout(List<long> frameIds)
{ {
long t; RequestInfo ri;
Action<string> rec; for (int i = 0; i < frameIds.Count; i++)
foreach (var id in identities)
{ {
if (_fallbacks.TryRemove(id, out rec)) if (_requests.TryRemove(frameIds[i], out ri))
{ {
try _ri_pool.Free(ri);
{
rec("Timeout");
}
catch (Exception ex)
{
Log.Error(ex, $"Fail invoke fallback for request '{id}' by timeout");
}
rec = null;
} }
_timeouts.TryRemove(id, out t);
} }
} }
@ -91,9 +62,10 @@ namespace ZeroLevel.Network
{ {
var now_ticks = DateTime.UtcNow.Ticks; var now_ticks = DateTime.UtcNow.Ticks;
var to_remove = new List<long>(); var to_remove = new List<long>();
foreach (var pair in _timeouts) foreach (var pair in _requests)
{ {
var diff = now_ticks - pair.Value; if (pair.Value.Sended == false) continue;
var diff = now_ticks - pair.Value.Timestamp;
if (diff > BaseSocket.MAX_REQUEST_TIME_TICKS) if (diff > BaseSocket.MAX_REQUEST_TIME_TICKS)
{ {
to_remove.Add(pair.Key); to_remove.Add(pair.Key);

Loading…
Cancel
Save

Powered by TurnKey Linux.