using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; using Model; namespace Hotfix { public class Timer { public long Id { get; set; } public long Time { get; set; } public TaskCompletionSource tcs; } [ObjectEvent(EntityEventId.TimerComponent)] public class TimerComponent: Component, IUpdate { private readonly Dictionary timers = new Dictionary(); /// /// key: time, value: timer id /// private readonly MultiMap timeId = new MultiMap(); private readonly Queue timeoutTimer = new Queue(); public void Update() { long timeNow = TimeHelper.Now(); foreach (long time in this.timeId.Keys) { if (time > timeNow) { break; } this.timeoutTimer.Enqueue(time); } while (this.timeoutTimer.Count > 0) { long key = this.timeoutTimer.Dequeue(); long[] timeOutId = this.timeId.GetAll(key); foreach (long id in timeOutId) { Timer timer; if (!this.timers.TryGetValue(id, out timer)) { continue; } this.Remove(id); timer.tcs.SetResult(true); } } } private void Remove(long id) { Timer timer; if (!this.timers.TryGetValue(id, out timer)) { return; } this.timers.Remove(id); this.timeId.Remove(timer.Time, timer.Id); } public Task WaitTillAsync(long tillTime, CancellationToken cancellationToken) { TaskCompletionSource tcs = new TaskCompletionSource(); Timer timer = new Timer { Id = IdGenerater.GenerateId(), Time = tillTime, tcs = tcs }; this.timers[timer.Id] = timer; this.timeId.Add(timer.Time, timer.Id); cancellationToken.Register(() => { this.Remove(timer.Id); }); return tcs.Task; } public Task WaitTillAsync(long tillTime) { TaskCompletionSource tcs = new TaskCompletionSource(); Timer timer = new Timer { Id = IdGenerater.GenerateId(), Time = tillTime, tcs = tcs }; this.timers[timer.Id] = timer; this.timeId.Add(timer.Time, timer.Id); return tcs.Task; } public Task WaitAsync(long time, CancellationToken cancellationToken) { TaskCompletionSource tcs = new TaskCompletionSource(); Timer timer = new Timer { Id = IdGenerater.GenerateId(), Time = TimeHelper.Now() + time, tcs = tcs }; this.timers[timer.Id] = timer; this.timeId.Add(timer.Time, timer.Id); cancellationToken.Register(() => { this.Remove(timer.Id); }); return tcs.Task; } public Task WaitAsync(long time) { TaskCompletionSource tcs = new TaskCompletionSource(); Timer timer = new Timer { Id = IdGenerater.GenerateId(), Time = TimeHelper.Now() + time, tcs = tcs }; this.timers[timer.Id] = timer; this.timeId.Add(timer.Time, timer.Id); return tcs.Task; } } }