using System; using System.Collections.Generic; using System.Net; namespace ETModel { public abstract class NetworkComponent : Entity { protected AService Service; public readonly Dictionary Sessions = new Dictionary(); public IMessagePacker MessagePacker { get; set; } public IMessageDispatcher MessageDispatcher { get; set; } public void Awake(NetworkProtocol protocol, int packetSize = Packet.PacketSizeLength4) { switch (protocol) { case NetworkProtocol.KCP: this.Service = new KService() { Parent = this }; break; case NetworkProtocol.TCP: this.Service = new TService(packetSize) { Parent = this }; break; case NetworkProtocol.WebSocket: this.Service = new WService() { Parent = this }; break; } } public void Awake(NetworkProtocol protocol, string address, int packetSize = Packet.PacketSizeLength4) { try { IPEndPoint ipEndPoint; switch (protocol) { case NetworkProtocol.KCP: ipEndPoint = NetworkHelper.ToIPEndPoint(address); this.Service = new KService(ipEndPoint, (channel)=> { this.OnAccept(channel); }) { Parent = this }; break; case NetworkProtocol.TCP: ipEndPoint = NetworkHelper.ToIPEndPoint(address); this.Service = new TService(packetSize, ipEndPoint, (channel)=> { this.OnAccept(channel); }) { Parent = this }; break; case NetworkProtocol.WebSocket: string[] prefixs = address.Split(';'); this.Service = new WService(prefixs, (channel)=> { this.OnAccept(channel); }) { Parent = this }; break; } } catch (Exception e) { throw new Exception($"NetworkComponent Awake Error {address}", e); } } public int Count { get { return this.Sessions.Count; } } public virtual Session OnAccept(AChannel channel) { Session session = EntityFactory.CreateWithParent(this, channel); this.Sessions.Add(session.Id, session); channel.Start(); return session; } public virtual void Remove(long id) { Session session; if (!this.Sessions.TryGetValue(id, out session)) { return; } this.Sessions.Remove(id); session.Dispose(); } public Session Get(long id) { Session session; this.Sessions.TryGetValue(id, out session); return session; } /// /// 创建一个新Session /// public Session Create(IPEndPoint ipEndPoint) { AChannel channel = this.Service.ConnectChannel(ipEndPoint); Session session = EntityFactory.CreateWithParent(this, channel); this.Sessions.Add(session.Id, session); channel.Start(); return session; } /// /// 创建一个新Session /// public Session Create(string address) { AChannel channel = this.Service.ConnectChannel(address); Session session = EntityFactory.CreateWithParent(this, channel); this.Sessions.Add(session.Id, session); channel.Start(); return session; } public void Update() { if (this.Service == null) { return; } this.Service.Update(); } public override void Dispose() { if (this.IsDisposed) { return; } base.Dispose(); this.Service.Dispose(); } } }