using System; using System.Collections.Generic; using Common.Helper; using MongoDB.Bson; namespace Common.Base { public class TimerManager { private class Timer { public ObjectId Id { get; set; } public long Time { get; set; } public Action Action { get; set; } } private readonly Dictionary timers = new Dictionary(); /// /// key: time, value: timer id /// private readonly MultiMap timeGuid = new MultiMap(); public ObjectId Add(long time, Action action) { Timer timer = new Timer { Id = ObjectId.GenerateNewId(), Time = time, Action = action }; this.timers[timer.Id] = timer; this.timeGuid.Add(timer.Time, timer.Id); return timer.Id; } public void Update(ObjectId id, long time) { Timer timer; if (!this.timers.TryGetValue(id, out timer)) { return; } this.timeGuid.Remove(timer.Time, timer.Id); timer.Time = time; this.timeGuid.Add(timer.Time, timer.Id); } public void Remove(ObjectId id) { Timer timer; if (!this.timers.TryGetValue(id, out timer)) { return; } this.timers.Remove(timer.Id); this.timeGuid.Remove(timer.Time, timer.Id); } public void Refresh() { long timeNow = TimeHelper.Now(); var timeoutTimer = new List(); foreach (long time in this.timeGuid.Keys) { if (time > timeNow) { break; } timeoutTimer.Add(time); } foreach (long key in timeoutTimer) { ObjectId[] timeoutIds = this.timeGuid.GetAll(key); foreach (ObjectId id in timeoutIds) { Timer timer; if (!this.timers.TryGetValue(id, out timer)) { continue; } this.Remove(id); timer.Action(); } } } } }