using System; using System.Threading.Tasks; namespace ETModel { public abstract class AMActorHandler: IMActorHandler where E: Entity where Message : class { protected abstract Task Run(E entity, Message message); public async Task Handle(Session session, Entity entity, IActorMessage actorRequest) { Message msg = actorRequest as Message; if (msg == null) { Log.Error($"消息类型转换错误: {actorRequest.GetType().FullName} to {typeof (Message).Name}"); return; } E e = entity as E; if (e == null) { Log.Error($"Actor类型转换错误: {entity.GetType().Name} to {typeof(E).Name}"); return; } int rpcId = actorRequest.RpcId; ActorResponse response = new ActorResponse { RpcId = rpcId }; session.Reply(response); await this.Run(e, msg); } public Type GetMessageType() { return typeof (Message); } } public abstract class AMActorRpcHandler: IMActorHandler where E: Entity where Request: class, IActorRequest where Response : class, IActorResponse { protected static void ReplyError(Response response, Exception e, Action reply) { Log.Error(e); response.Error = ErrorCode.ERR_RpcFail; response.Message = e.ToString(); reply(response); } protected abstract Task Run(E unit, Request message, Action reply); public async Task Handle(Session session, Entity entity, IActorMessage actorRequest) { try { Request request = actorRequest as Request; if (request == null) { Log.Error($"消息类型转换错误: {actorRequest.GetType().FullName} to {typeof (Request).Name}"); return; } E e = entity as E; if (e == null) { Log.Error($"Actor类型转换错误: {entity.GetType().Name} to {typeof(E).Name}"); return; } int rpcId = request.RpcId; await this.Run(e, request, response => { // 等回调回来,session可以已经断开了 if (session.IsDisposed) { return; } response.RpcId = rpcId; session.Reply(response); }); } catch (Exception e) { throw new Exception($"解释消息失败: {actorRequest.GetType().FullName}", e); } } public Type GetMessageType() { return typeof (Request); } } }