| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- using System;
- using System.IO;
- using System.Net;
- namespace ET
- {
- [FriendClass(typeof(NetKcpComponent))]
- public static class NetKcpComponentSystem
- {
- [ObjectSystem]
- public class NetKcpComponentAwakeSystem: AwakeSystem<NetKcpComponent, int>
- {
- public override void Awake(NetKcpComponent self, int sessionStreamDispatcherType)
- {
- self.SessionStreamDispatcherType = sessionStreamDispatcherType;
-
- self.Service = new KService(NetThreadComponent.Instance.ThreadSynchronizationContext, ServiceType.Outer);
- self.Service.ErrorCallback += (channelId, error) => self.OnError(channelId, error);
- self.Service.ReadCallback += (channelId, Memory) => self.OnRead(channelId, Memory);
- NetThreadComponent.Instance.Add(self.Service);
- }
- }
- [ObjectSystem]
- public class NetKcpComponentAwake1System: AwakeSystem<NetKcpComponent, IPEndPoint, int>
- {
- public override void Awake(NetKcpComponent self, IPEndPoint address, int sessionStreamDispatcherType)
- {
- self.SessionStreamDispatcherType = sessionStreamDispatcherType;
-
- self.Service = new KService(NetThreadComponent.Instance.ThreadSynchronizationContext, address, ServiceType.Outer);
- self.Service.ErrorCallback += (channelId, error) => self.OnError(channelId, error);
- self.Service.ReadCallback += (channelId, Memory) => self.OnRead(channelId, Memory);
- self.Service.AcceptCallback += (channelId, IPAddress) => self.OnAccept(channelId, IPAddress);
- NetThreadComponent.Instance.Add(self.Service);
- }
- }
- [ObjectSystem]
- public class NetKcpComponentDestroySystem: DestroySystem<NetKcpComponent>
- {
- public override void Destroy(NetKcpComponent self)
- {
- NetThreadComponent.Instance.Remove(self.Service);
- self.Service.Destroy();
- }
- }
-
- public static void OnRead(this NetKcpComponent self, long channelId, MemoryStream memoryStream)
- {
- Session session = self.GetChild<Session>(channelId);
- if (session == null)
- {
- return;
- }
- session.LastRecvTime = TimeHelper.ClientNow();
- SessionStreamDispatcher.Instance.Dispatch(self.SessionStreamDispatcherType, session, memoryStream);
- }
- public static void OnError(this NetKcpComponent self, long channelId, int error)
- {
- Session session = self.GetChild<Session>(channelId);
- if (session == null)
- {
- return;
- }
- session.Error = error;
- session.Dispose();
- }
- // 这个channelId是由CreateAcceptChannelId生成的
- public static void OnAccept(this NetKcpComponent self, long channelId, IPEndPoint ipEndPoint)
- {
- Session session = self.AddChildWithId<Session, AService>(channelId, self.Service);
- session.RemoteAddress = ipEndPoint;
- // 挂上这个组件,5秒就会删除session,所以客户端验证完成要删除这个组件。该组件的作用就是防止外挂一直连接不发消息也不进行权限验证
- session.AddComponent<SessionAcceptTimeoutComponent>();
- // 客户端连接,2秒检查一次recv消息,10秒没有消息则断开
- session.AddComponent<SessionIdleCheckerComponent, int>(NetThreadComponent.checkInteral);
- }
- public static Session Get(this NetKcpComponent self, long id)
- {
- Session session = self.GetChild<Session>(id);
- return session;
- }
- public static Session Create(this NetKcpComponent self, IPEndPoint realIPEndPoint)
- {
- long channelId = RandomHelper.RandInt64();
- Session session = self.AddChildWithId<Session, AService>(channelId, self.Service);
- session.RemoteAddress = realIPEndPoint;
- session.AddComponent<SessionIdleCheckerComponent, int>(NetThreadComponent.checkInteral);
-
- self.Service.GetOrCreate(session.Id, realIPEndPoint);
- return session;
- }
-
- public static Session Create(this NetKcpComponent self, IPEndPoint routerIPEndPoint, IPEndPoint realIPEndPoint, uint localConn)
- {
- long channelId = self.Service.CreateConnectChannelId(localConn);
- Session session = self.AddChildWithId<Session, AService>(channelId, self.Service);
- session.RemoteAddress = realIPEndPoint;
- session.AddComponent<SessionIdleCheckerComponent, int>(NetThreadComponent.checkInteral);
- self.Service.GetOrCreate(session.Id, routerIPEndPoint);
- return session;
- }
- }
- }
|