ActorLocationSenderComponentSystem.cs 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. using System;
  2. using System.IO;
  3. using MongoDB.Bson;
  4. namespace ET.Server
  5. {
  6. [Invoke(TimerInvokeType.ActorLocationSenderChecker)]
  7. public class ActorLocationSenderChecker: ATimer<ActorLocationSenderComponent>
  8. {
  9. protected override void Run(ActorLocationSenderComponent self)
  10. {
  11. try
  12. {
  13. self.Check();
  14. }
  15. catch (Exception e)
  16. {
  17. Log.Error($"move timer error: {self.Id}\n{e}");
  18. }
  19. }
  20. }
  21. [ObjectSystem]
  22. public class ActorLocationSenderComponentAwakeSystem: AwakeSystem<ActorLocationSenderComponent>
  23. {
  24. protected override void Awake(ActorLocationSenderComponent self)
  25. {
  26. ActorLocationSenderComponent.Instance = self;
  27. // 每10s扫描一次过期的actorproxy进行回收,过期时间是2分钟
  28. // 可能由于bug或者进程挂掉,导致ActorLocationSender发送的消息没有确认,结果无法自动删除,每一分钟清理一次这种ActorLocationSender
  29. self.CheckTimer = TimerComponent.Instance.NewRepeatedTimer(10 * 1000, TimerInvokeType.ActorLocationSenderChecker, self);
  30. }
  31. }
  32. [ObjectSystem]
  33. public class ActorLocationSenderComponentDestroySystem: DestroySystem<ActorLocationSenderComponent>
  34. {
  35. protected override void Destroy(ActorLocationSenderComponent self)
  36. {
  37. ActorLocationSenderComponent.Instance = null;
  38. TimerComponent.Instance?.Remove(ref self.CheckTimer);
  39. }
  40. }
  41. [FriendOf(typeof(ActorLocationSenderComponent))]
  42. [FriendOf(typeof(ActorLocationSender))]
  43. public static class ActorLocationSenderComponentSystem
  44. {
  45. public static void Check(this ActorLocationSenderComponent self)
  46. {
  47. using (ListComponent<long> list = ListComponent<long>.Create())
  48. {
  49. long timeNow = TimeHelper.ServerNow();
  50. foreach ((long key, Entity value) in self.Children)
  51. {
  52. ActorLocationSender actorLocationMessageSender = (ActorLocationSender) value;
  53. if (timeNow > actorLocationMessageSender.LastSendOrRecvTime + ActorLocationSenderComponent.TIMEOUT_TIME)
  54. {
  55. list.Add(key);
  56. }
  57. }
  58. foreach (long id in list)
  59. {
  60. self.Remove(id);
  61. }
  62. }
  63. }
  64. private static ActorLocationSender GetOrCreate(this ActorLocationSenderComponent self, long id)
  65. {
  66. if (id == 0)
  67. {
  68. throw new Exception($"actor id is 0");
  69. }
  70. if (self.Children.TryGetValue(id, out Entity actorLocationSender))
  71. {
  72. return (ActorLocationSender) actorLocationSender;
  73. }
  74. actorLocationSender = self.AddChildWithId<ActorLocationSender>(id);
  75. return (ActorLocationSender) actorLocationSender;
  76. }
  77. private static void Remove(this ActorLocationSenderComponent self, long id)
  78. {
  79. if (!self.Children.TryGetValue(id, out Entity actorMessageSender))
  80. {
  81. return;
  82. }
  83. actorMessageSender.Dispose();
  84. }
  85. public static void Send(this ActorLocationSenderComponent self, long entityId, IActorRequest message)
  86. {
  87. self.Call(entityId, message).Coroutine();
  88. }
  89. public static async ETTask<IActorResponse> Call(this ActorLocationSenderComponent self, long entityId, IActorRequest iActorRequest)
  90. {
  91. ActorLocationSender actorLocationSender = self.GetOrCreate(entityId);
  92. // 先序列化好
  93. int rpcId = ActorMessageSenderComponent.Instance.GetRpcId();
  94. iActorRequest.RpcId = rpcId;
  95. long actorLocationSenderInstanceId = actorLocationSender.InstanceId;
  96. using (await CoroutineLockComponent.Instance.Wait(CoroutineLockType.ActorLocationSender, entityId))
  97. {
  98. if (actorLocationSender.InstanceId != actorLocationSenderInstanceId)
  99. {
  100. throw new RpcException(ErrorCore.ERR_ActorTimeout, $"{iActorRequest}");
  101. }
  102. // 队列中没处理的消息返回跟上个消息一样的报错
  103. if (actorLocationSender.Error == ErrorCore.ERR_NotFoundActor)
  104. {
  105. return ActorHelper.CreateResponse(iActorRequest, actorLocationSender.Error);
  106. }
  107. try
  108. {
  109. return await self.CallInner(actorLocationSender, rpcId, iActorRequest);
  110. }
  111. catch (RpcException)
  112. {
  113. self.Remove(actorLocationSender.Id);
  114. throw;
  115. }
  116. catch (Exception e)
  117. {
  118. self.Remove(actorLocationSender.Id);
  119. throw new Exception($"{iActorRequest}", e);
  120. }
  121. }
  122. }
  123. private static async ETTask<IActorResponse> CallInner(this ActorLocationSenderComponent self, ActorLocationSender actorLocationSender, int rpcId, IActorRequest iActorRequest)
  124. {
  125. int failTimes = 0;
  126. long instanceId = actorLocationSender.InstanceId;
  127. actorLocationSender.LastSendOrRecvTime = TimeHelper.ServerNow();
  128. while (true)
  129. {
  130. if (actorLocationSender.ActorId == 0)
  131. {
  132. actorLocationSender.ActorId = await LocationProxyComponent.Instance.Get(actorLocationSender.Id);
  133. if (actorLocationSender.InstanceId != instanceId)
  134. {
  135. throw new RpcException(ErrorCore.ERR_ActorLocationSenderTimeout2, $"{iActorRequest}");
  136. }
  137. }
  138. if (actorLocationSender.ActorId == 0)
  139. {
  140. return ActorHelper.CreateResponse(iActorRequest, ErrorCore.ERR_NotFoundActor);
  141. }
  142. IActorResponse response = await ActorMessageSenderComponent.Instance.Call(actorLocationSender.ActorId, rpcId, iActorRequest, false);
  143. if (actorLocationSender.InstanceId != instanceId)
  144. {
  145. throw new RpcException(ErrorCore.ERR_ActorLocationSenderTimeout3, $"{iActorRequest}");
  146. }
  147. switch (response.Error)
  148. {
  149. case ErrorCore.ERR_NotFoundActor:
  150. {
  151. // 如果没找到Actor,重试
  152. ++failTimes;
  153. if (failTimes > 20)
  154. {
  155. Log.Debug($"actor send message fail, actorid: {actorLocationSender.Id}");
  156. actorLocationSender.Error = ErrorCore.ERR_NotFoundActor;
  157. // 这里不能删除actor,要让后面等待发送的消息也返回ERR_NotFoundActor,直到超时删除
  158. return response;
  159. }
  160. // 等待0.5s再发送
  161. await TimerComponent.Instance.WaitAsync(500);
  162. if (actorLocationSender.InstanceId != instanceId)
  163. {
  164. throw new RpcException(ErrorCore.ERR_ActorLocationSenderTimeout4, $"{iActorRequest}");
  165. }
  166. actorLocationSender.ActorId = 0;
  167. continue;
  168. }
  169. case ErrorCore.ERR_ActorTimeout:
  170. {
  171. throw new RpcException(response.Error, $"{iActorRequest}");
  172. }
  173. }
  174. if (ErrorCore.IsRpcNeedThrowException(response.Error))
  175. {
  176. throw new RpcException(response.Error, $"Message: {response.Message} Request: {iActorRequest}");
  177. }
  178. return response;
  179. }
  180. }
  181. }
  182. }