mirror of https://github.com/ogoun/Zero.git
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.
150 lines
4.2 KiB
150 lines
4.2 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading;
|
|
using ZeroLevel.Services.Pools;
|
|
|
|
namespace ZeroLevel.Network
|
|
{
|
|
internal sealed class RequestBuffer
|
|
{
|
|
private SpinLock _reqeust_lock = new SpinLock();
|
|
private Dictionary<long, RequestInfo> _requests = new Dictionary<long, RequestInfo>();
|
|
private static ObjectPool<RequestInfo> _ri_pool = new ObjectPool<RequestInfo>(() => new RequestInfo());
|
|
|
|
public void RegisterForFrame(int identity, Action<byte[]> callback, Action<string> fail = null)
|
|
{
|
|
var ri = _ri_pool.Allocate();
|
|
bool take = false;
|
|
try
|
|
{
|
|
_reqeust_lock.Enter(ref take);
|
|
ri.Reset(callback, fail);
|
|
_requests.Add(identity, ri);
|
|
}
|
|
finally
|
|
{
|
|
if (take) _reqeust_lock.Exit(false);
|
|
}
|
|
}
|
|
|
|
public void Fail(long frameId, string message)
|
|
{
|
|
RequestInfo ri = null;
|
|
bool take = false;
|
|
try
|
|
{
|
|
_reqeust_lock.Enter(ref take);
|
|
if (_requests.ContainsKey(frameId))
|
|
{
|
|
ri = _requests[frameId];
|
|
_requests.Remove(frameId);
|
|
}
|
|
}
|
|
finally
|
|
{
|
|
if (take) _reqeust_lock.Exit(false);
|
|
}
|
|
if (ri != null)
|
|
{
|
|
ri.Fail(message);
|
|
_ri_pool.Free(ri);
|
|
}
|
|
}
|
|
|
|
public void Success(long frameId, byte[] data)
|
|
{
|
|
RequestInfo ri = null;
|
|
bool take = false;
|
|
try
|
|
{
|
|
_reqeust_lock.Enter(ref take);
|
|
if (_requests.ContainsKey(frameId))
|
|
{
|
|
ri = _requests[frameId];
|
|
_requests.Remove(frameId);
|
|
}
|
|
}
|
|
finally
|
|
{
|
|
if (take) _reqeust_lock.Exit(false);
|
|
}
|
|
if (ri != null)
|
|
{
|
|
ri.Success(data);
|
|
_ri_pool.Free(ri);
|
|
}
|
|
}
|
|
|
|
public void StartSend(long frameId)
|
|
{
|
|
RequestInfo ri = null;
|
|
bool take = false;
|
|
try
|
|
{
|
|
_reqeust_lock.Enter(ref take);
|
|
if (_requests.ContainsKey(frameId))
|
|
{
|
|
ri = _requests[frameId];
|
|
}
|
|
}
|
|
finally
|
|
{
|
|
if (take) _reqeust_lock.Exit(false);
|
|
}
|
|
if (ri != null)
|
|
{
|
|
ri.StartSend();
|
|
}
|
|
}
|
|
|
|
public void Timeout(List<long> frameIds)
|
|
{
|
|
bool take = false;
|
|
try
|
|
{
|
|
_reqeust_lock.Enter(ref take);
|
|
for (int i = 0; i < frameIds.Count; i++)
|
|
{
|
|
if (_requests.ContainsKey(frameIds[i]))
|
|
{
|
|
_ri_pool.Free(_requests[frameIds[i]]);
|
|
_requests.Remove(frameIds[i]);
|
|
}
|
|
}
|
|
}
|
|
finally
|
|
{
|
|
if (take) _reqeust_lock.Exit(false);
|
|
}
|
|
}
|
|
|
|
public void TestForTimeouts()
|
|
{
|
|
var now_ticks = DateTime.UtcNow.Ticks;
|
|
var to_remove = new List<long>();
|
|
KeyValuePair<long, RequestInfo>[] to_proceed;
|
|
bool take = false;
|
|
try
|
|
{
|
|
_reqeust_lock.Enter(ref take);
|
|
to_proceed = _requests.Select(x => x).ToArray();
|
|
}
|
|
finally
|
|
{
|
|
if (take) _reqeust_lock.Exit(false);
|
|
}
|
|
for (int i = 0; i < to_proceed.Length; i++)
|
|
{
|
|
if (to_proceed[i].Value.Sended == false) continue;
|
|
var diff = now_ticks - to_proceed[i].Value.Timestamp;
|
|
if (diff > BaseSocket.MAX_REQUEST_TIME_TICKS)
|
|
{
|
|
to_remove.Add(to_proceed[i].Key);
|
|
}
|
|
}
|
|
Timeout(to_remove);
|
|
}
|
|
}
|
|
}
|