ObjectWait.cs 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. namespace ET
  5. {
  6. public static class WaitTypeError
  7. {
  8. public const int Success = 0;
  9. public const int Destroy = 1;
  10. public const int Cancel = 2;
  11. public const int Timeout = 3;
  12. }
  13. public interface IWaitType
  14. {
  15. int Error
  16. {
  17. get;
  18. set;
  19. }
  20. }
  21. [FriendOf(typeof(ObjectWait))]
  22. public static class ObjectWaitSystem
  23. {
  24. [ObjectSystem]
  25. public class ObjectWaitAwakeSystem: AwakeSystem<ObjectWait>
  26. {
  27. protected override void Awake(ObjectWait self)
  28. {
  29. self.tcss.Clear();
  30. }
  31. }
  32. [ObjectSystem]
  33. public class ObjectWaitDestroySystem: DestroySystem<ObjectWait>
  34. {
  35. protected override void Destroy(ObjectWait self)
  36. {
  37. foreach (object v in self.tcss.Values.ToArray())
  38. {
  39. ((IDestroyRun) v).SetResult();
  40. }
  41. }
  42. }
  43. private interface IDestroyRun
  44. {
  45. void SetResult();
  46. }
  47. private class ResultCallback<K>: IDestroyRun where K : struct, IWaitType
  48. {
  49. private ETTask<K> tcs;
  50. public ResultCallback()
  51. {
  52. this.tcs = ETTask<K>.Create(true);
  53. }
  54. public bool IsDisposed
  55. {
  56. get
  57. {
  58. return this.tcs == null;
  59. }
  60. }
  61. public ETTask<K> Task => this.tcs;
  62. public void SetResult(K k)
  63. {
  64. var t = tcs;
  65. this.tcs = null;
  66. t.SetResult(k);
  67. }
  68. public void SetResult()
  69. {
  70. var t = tcs;
  71. this.tcs = null;
  72. t.SetResult(new K() { Error = WaitTypeError.Destroy });
  73. }
  74. }
  75. public static async ETTask<T> Wait<T>(this ObjectWait self, ETCancellationToken cancellationToken = null) where T : struct, IWaitType
  76. {
  77. ResultCallback<T> tcs = new ResultCallback<T>();
  78. Type type = typeof (T);
  79. self.tcss.Add(type, tcs);
  80. void CancelAction()
  81. {
  82. self.Notify(new T() { Error = WaitTypeError.Cancel });
  83. }
  84. T ret;
  85. try
  86. {
  87. cancellationToken?.Add(CancelAction);
  88. ret = await tcs.Task;
  89. }
  90. finally
  91. {
  92. cancellationToken?.Remove(CancelAction);
  93. }
  94. return ret;
  95. }
  96. public static async ETTask<T> Wait<T>(this ObjectWait self, int timeout, ETCancellationToken cancellationToken = null) where T : struct, IWaitType
  97. {
  98. ResultCallback<T> tcs = new ResultCallback<T>();
  99. async ETTask WaitTimeout()
  100. {
  101. await TimerComponent.Instance.WaitAsync(timeout, cancellationToken);
  102. if (cancellationToken.IsCancel())
  103. {
  104. return;
  105. }
  106. if (tcs.IsDisposed)
  107. {
  108. return;
  109. }
  110. self.Notify(new T() { Error = WaitTypeError.Timeout });
  111. }
  112. WaitTimeout().Coroutine();
  113. self.tcss.Add(typeof (T), tcs);
  114. void CancelAction()
  115. {
  116. self.Notify(new T() { Error = WaitTypeError.Cancel });
  117. }
  118. T ret;
  119. try
  120. {
  121. cancellationToken?.Add(CancelAction);
  122. ret = await tcs.Task;
  123. }
  124. finally
  125. {
  126. cancellationToken?.Remove(CancelAction);
  127. }
  128. return ret;
  129. }
  130. public static void Notify<T>(this ObjectWait self, T obj) where T : struct, IWaitType
  131. {
  132. Type type = typeof (T);
  133. if (!self.tcss.TryGetValue(type, out object tcs))
  134. {
  135. return;
  136. }
  137. self.tcss.Remove(type);
  138. ((ResultCallback<T>) tcs).SetResult(obj);
  139. }
  140. }
  141. [ComponentOf]
  142. public class ObjectWait: Entity, IAwake, IDestroy
  143. {
  144. public Dictionary<Type, object> tcss = new Dictionary<Type, object>();
  145. }
  146. }