using System; namespace ET { public abstract class MessageHandler: HandlerObject, IMHandler where E : Entity where Message : class, IMessage { protected abstract ETTask Run(E entity, Message message); public async ETTask Handle(Entity entity, Address fromAddress, MessageObject actorMessage) { if (actorMessage is not Message msg) { Log.Error($"消息类型转换错误: {actorMessage.GetType().FullName} to {typeof (Message).Name}"); return; } if (entity is not E e) { Log.Error($"Actor类型转换错误: {entity.GetType().FullName} to {typeof (E).Name} --{typeof (Message).FullName}"); return; } await this.Run(e, msg); } public Type GetRequestType() { if (typeof (ILocationMessage).IsAssignableFrom(typeof (Message))) { Log.Error($"message is IActorLocationMessage but handler is AMActorHandler: {typeof (Message)}"); } return typeof (Message); } public Type GetResponseType() { return null; } } public abstract class MessageHandler: HandlerObject, IMHandler where E : Entity where Request : MessageObject, IRequest where Response : MessageObject, IResponse { protected abstract ETTask Run(E unit, Request request, Response response); public async ETTask Handle(Entity entity, Address fromAddress, MessageObject actorMessage) { try { Fiber fiber = entity.Fiber(); if (actorMessage is not Request request) { Log.Error($"消息类型转换错误: {actorMessage.GetType().FullName} to {typeof (Request).Name}"); return; } if (entity is not E ee) { Log.Error($"Actor类型转换错误: {entity.GetType().FullName} to {typeof (E).FullName} --{typeof (Request).FullName}"); return; } int rpcId = request.RpcId; Response response = ObjectPool.Instance.Fetch(); try { await this.Run(ee, request, response); } catch (RpcException exception) { response.Error = exception.Error; response.Message = exception.ToString(); } catch (Exception exception) { response.Error = ErrorCore.ERR_RpcFail; response.Message = exception.ToString(); } response.RpcId = rpcId; fiber.Root.GetComponent().Reply(fromAddress, response); } catch (Exception e) { throw new Exception($"解释消息失败: {actorMessage.GetType().FullName}", e); } } public Type GetRequestType() { if (typeof (ILocationRequest).IsAssignableFrom(typeof (Request))) { Log.Error($"message is IActorLocationMessage but handler is AMActorRpcHandler: {typeof (Request)}"); } return typeof (Request); } public Type GetResponseType() { return typeof (Response); } } }