| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Net;
- using System.Threading;
- using System.Threading.Tasks;
- namespace Model
- {
- [ObjectSystem]
- public class SessionSystem : ObjectSystem<Session>, IAwake<NetworkComponent, AChannel>, IStart
- {
- public void Awake(NetworkComponent network, AChannel channel)
- {
- this.Get().Awake(network, channel);
- }
- public void Start()
- {
- this.Get().Start();
- }
- }
- public sealed class Session : Entity
- {
- private static uint RpcId { get; set; }
- private AChannel channel;
- private readonly Dictionary<uint, Action<PacketInfo>> requestCallback = new Dictionary<uint, Action<PacketInfo>>();
- private readonly byte[] flagBytes = new byte[1];
- private readonly List<byte[]> byteses = new List<byte[]>() {new byte[0], new byte[0], new byte[0]};
- private readonly List<byte[]> rpcByteses = new List<byte[]>() { new byte[0], new byte[0], new byte[0], new byte[0] };
- public NetworkComponent Network
- {
- get
- {
- return this.GetParent<NetworkComponent>();
- }
- }
- public void Awake(NetworkComponent net, AChannel c)
- {
- this.channel = c;
- this.requestCallback.Clear();
- }
- public void Start()
- {
- this.StartRecv();
- }
- public override void Dispose()
- {
- if (this.Id == 0)
- {
- return;
- }
- long id = this.Id;
- base.Dispose();
- foreach (Action<PacketInfo> action in this.requestCallback.Values.ToArray())
- {
- action.Invoke(new PacketInfo());
- }
- this.channel.Dispose();
- this.Network.Remove(id);
- this.requestCallback.Clear();
- }
- public IPEndPoint RemoteAddress
- {
- get
- {
- return this.channel.RemoteAddress;
- }
- }
- public ChannelType ChannelType
- {
- get
- {
- return this.channel.ChannelType;
- }
- }
- private async void StartRecv()
- {
- while (true)
- {
- if (this.Id == 0)
- {
- return;
- }
- Packet packet;
- try
- {
- packet = await this.channel.Recv();
- if (this.Id == 0)
- {
- return;
- }
- }
- catch (Exception e)
- {
- Log.Error(e.ToString());
- continue;
- }
-
- try
- {
- this.Run(packet);
- }
- catch (Exception e)
- {
- Log.Error(e.ToString());
- }
- }
- }
- private void Run(Packet packet)
- {
- if (packet.Length < Packet.MinSize)
- {
- Log.Error($"message error length < {Packet.MinSize}, ip: {this.RemoteAddress}");
- this.Network.Remove(this.Id);
- return;
- }
- byte flag = packet.Flag();
- ushort opcode = packet.Opcode();
- PacketInfo packetInfo = new PacketInfo
- {
- Opcode = opcode,
- Bytes = packet.Bytes
- };
- if ((flag & 0xC0) > 0)
- {
- uint rpcId = packet.RpcId();
- packetInfo.RpcId = rpcId;
- packetInfo.Index = Packet.RpcIdIndex + 4;
- packetInfo.Length = (ushort)(packet.Length - packetInfo.Index);
- // flag第2位表示这是rpc返回消息
- if ((flag & 0x40) > 0)
- {
- Action<PacketInfo> action;
- if (!this.requestCallback.TryGetValue(rpcId, out action))
- {
- return;
- }
- this.requestCallback.Remove(rpcId);
- action(packetInfo);
- return;
- }
- }
- else
- {
- packetInfo.RpcId = 0;
- packetInfo.Index = Packet.RpcIdIndex;
- packetInfo.Length = (ushort)(packet.Length - packetInfo.Index);
- }
-
- this.Network.MessageDispatcher.Dispatch(this, packetInfo);
- }
- public Task<PacketInfo> Call(ushort opcode, byte[] bytes)
- {
- uint rpcId = ++RpcId;
- var tcs = new TaskCompletionSource<PacketInfo>();
- this.requestCallback[rpcId] = (packetInfo) =>
- {
- try
- {
- tcs.SetResult(packetInfo);
- }
- catch (Exception e)
- {
- tcs.SetException(new Exception($"Rpc Error: {opcode}", e));
- }
- };
- const byte flag = 0x80;
- this.SendMessage(flag, opcode, rpcId, bytes);
- return tcs.Task;
- }
- public Task<PacketInfo> Call(ushort opcode, byte[] bytes, CancellationToken cancellationToken)
- {
- uint rpcId = ++RpcId;
- var tcs = new TaskCompletionSource<PacketInfo>();
- this.requestCallback[rpcId] = (packetInfo) =>
- {
- try
- {
- tcs.SetResult(packetInfo);
- }
- catch (Exception e)
- {
- tcs.SetException(new Exception($"Rpc Error: {opcode}", e));
- }
- };
- cancellationToken.Register(() => { this.requestCallback.Remove(rpcId); });
- const byte flag = 0x80;
- this.SendMessage(flag, opcode, rpcId, bytes);
- return tcs.Task;
- }
- public void Send(ushort opcode, byte[] bytes)
- {
- if (this.Id == 0)
- {
- throw new Exception("session已经被Dispose了");
- }
- const byte flag = 0x00;
- this.SendMessage(flag, opcode, 0, bytes);
- }
- public void Reply(ushort opcode, uint rpcId, byte[] bytes)
- {
- if (this.Id == 0)
- {
- throw new Exception("session已经被Dispose了");
- }
- const byte flag = 0x40;
- this.SendMessage(flag, opcode, rpcId, bytes);
- }
- private void SendMessage(byte flag, ushort opcode, uint rpcId, byte[] bytes)
- {
- this.flagBytes[0] = flag;
- List<byte[]> bb;
- if (rpcId == 0)
- {
- bb = this.byteses;
- bb[0] = flagBytes;
- bb[1] = BitConverter.GetBytes(opcode);
- bb[2] = bytes;
- }
- else
- {
- bb = this.rpcByteses;
- bb[0] = flagBytes;
- bb[1] = BitConverter.GetBytes(opcode);
- bb[2] = BitConverter.GetBytes(rpcId);
- bb[3] = bytes;
- }
-
- #if SERVER
- // 如果是allserver,内部消息不走网络,直接转给session,方便调试时看到整体堆栈
- if (this.Network.AppType == AppType.AllServer)
- {
- Session session = this.Network.Entity.GetComponent<NetInnerComponent>().Get(this.RemoteAddress);
- this.pkt.Length = 0;
- ushort index = 0;
- foreach (var byts in bb)
- {
- Array.Copy(byts, 0, this.pkt.Bytes, index, byts.Length);
- index += (ushort)byts.Length;
- }
- this.pkt.Length = index;
- session.Run(this.pkt);
- return;
- }
- #endif
- channel.Send(bb);
- }
- #if SERVER
- private Packet pkt = new Packet(ushort.MaxValue);
- #endif
- }
- }
|