EmulateLagging.cs 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. using CommonLang.Log;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading;
  7. namespace CommonServer.SSocket.SuperSocket
  8. {
  9. public class EmulateLagging
  10. {
  11. private Logger log = LoggerFactory.GetLogger("EmulateLagging");
  12. private Thread mEmuLagThread;
  13. private bool running = true;
  14. private int mLagMinTimeMS;
  15. private int mLagMaxTimeMS;
  16. private Queue<EmuPack> emu_lag_queue = new Queue<EmuPack>();
  17. private Random random = new Random();
  18. public bool EmulateLag
  19. {
  20. get { return mLagMinTimeMS > 0; }
  21. }
  22. public EmulateLagging()
  23. {
  24. this.mEmuLagThread = new Thread(loop);
  25. }
  26. public void SetEmulateLaggingMS(int min, int max)
  27. {
  28. this.mLagMinTimeMS = Math.Min(min, max);
  29. this.mLagMaxTimeMS = Math.Max(min, max);
  30. }
  31. public void GetEmulateLaggingMS(out int min, out int max)
  32. {
  33. min = this.mLagMinTimeMS;
  34. max = this.mLagMaxTimeMS;
  35. }
  36. public void Start()
  37. {
  38. this.running = true;
  39. this.mEmuLagThread.Start();
  40. }
  41. public void Pause()
  42. {
  43. }
  44. public void Resume()
  45. {
  46. }
  47. public void Dispose()
  48. {
  49. this.running = false;
  50. if (mEmuLagThread.IsAlive)
  51. {
  52. lock (emu_lag_queue)
  53. {
  54. Monitor.Pulse(emu_lag_queue);
  55. }
  56. this.mEmuLagThread.Join();
  57. }
  58. }
  59. public void SendDelay(Session session, byte[] buff, int offset, int length)
  60. {
  61. lock (emu_lag_queue)
  62. {
  63. emu_lag_queue.Enqueue(new EmuPack(session, buff, offset, length));
  64. Monitor.Pulse(emu_lag_queue);
  65. }
  66. }
  67. private void loop()
  68. {
  69. while (running)
  70. {
  71. try
  72. {
  73. lock (emu_lag_queue)
  74. {
  75. Monitor.Wait(emu_lag_queue);
  76. while (emu_lag_queue.Count > 0)
  77. {
  78. EmuPack pak = emu_lag_queue.Dequeue();
  79. pak.session.Send(pak.buff, pak.offset, pak.length);
  80. }
  81. }
  82. Thread.Sleep(random.Next(mLagMinTimeMS, mLagMaxTimeMS));
  83. }
  84. catch(Exception err)
  85. {
  86. log.Error(err.Message, err);
  87. }
  88. }
  89. }
  90. private struct EmuPack
  91. {
  92. public Session session;
  93. public byte[] buff;
  94. public int offset;
  95. public int length;
  96. public EmuPack(Session session, byte[] buff, int offset, int length)
  97. {
  98. this.session = session;
  99. this.buff = buff;
  100. this.offset = offset;
  101. this.length = length;
  102. }
  103. }
  104. }
  105. }