SessionManager.cs 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. using CommonNetwork_ICE.Common;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using CommonNetwork_ICE.Util;
  7. using CommonServer.Server;
  8. using CommonServer.Protocol;
  9. using CommonLang.Log;
  10. using CommonServer_ICE.Server;
  11. namespace CommonServer_ICE.Session
  12. {
  13. /// <summary>
  14. /// 服务器端Session管理器
  15. /// </summary>
  16. internal class SessionManager
  17. {
  18. private static Logger log = LoggerFactory.GetLogger("SessionManager");
  19. private static Dictionary<string, ISession> sessionMap = new Dictionary<string, ISession>();
  20. private static Dictionary<string, ISession> sessionMapByID = new Dictionary<string, ISession>();
  21. private static IceServerSessionExpireTask sessionExpireTask;
  22. /// <summary>
  23. /// 判断序列号为键的会话是否存在
  24. /// </summary>
  25. /// <param name="sessionId">序列号键</param>
  26. /// <returns></returns>
  27. public static ISession getSession(string sessionId)
  28. {
  29. ISession ret;
  30. if (sessionMapByID.TryGetValue(sessionId, out ret ))
  31. {
  32. return ret;
  33. }
  34. return null;
  35. }
  36. /// <summary>
  37. /// 根据IP地址和端口判断是否存在某个会话
  38. /// </summary>
  39. /// <param name="ip"></param>
  40. /// <param name="port"></param>
  41. /// <returns></returns>
  42. public static ISession getSession(String ip, int port, int recvPort)
  43. {
  44. string key = getSessionStrKey(ip, port, recvPort);
  45. ISession ret;
  46. if (sessionMap.TryGetValue(key, out ret))
  47. {
  48. return ret;
  49. }
  50. return null;
  51. }
  52. /// <summary>
  53. /// IP地址和端口为键增加会话
  54. /// </summary>
  55. /// <param name="ip"></param>
  56. /// <param name="port"></param>
  57. /// <param name="session"></param>
  58. private static void addSession(String ip, IceServerIoSession ioSession)
  59. {
  60. string key = getSessionStrKey(ip, ioSession.ClientSentDataPort, ioSession.ClientRecvDataPort);
  61. sessionMap.Add(key, ioSession);
  62. sessionMapByID.Add(ioSession.ID, ioSession);
  63. log.Info("新增会话,键:" + key);
  64. }
  65. /// <summary>
  66. /// 删除会话
  67. /// </summary>
  68. /// <param name="session"></param>
  69. public static void removeSession(ISession session)
  70. {
  71. IceServerIoSession ioSession = (IceServerIoSession)session;
  72. IceConfig config = ioSession.Connector.GetConnectorConfig();
  73. string key = getSessionStrKey(config.RemoteIp, ioSession.ClientSentDataPort, ioSession.ClientRecvDataPort);
  74. if (sessionMap.ContainsKey(key))
  75. {
  76. sessionMap.Remove(key);
  77. sessionMapByID.Remove(session.ID);
  78. }
  79. }
  80. /// <summary>
  81. /// 判断指定会话是否存在
  82. /// </summary>
  83. /// <param name="session"></param>
  84. /// <returns></returns>
  85. public static bool hasSession(ISession session)
  86. {
  87. return hasSession(session.ID);
  88. }
  89. /// <summary>
  90. /// 判断指定序列号的会话是否存在
  91. /// </summary>
  92. /// <param name="sessionId"></param>
  93. /// <returns></returns>
  94. public static bool hasSession(string sessionId)
  95. {
  96. if (sessionMapByID.ContainsKey(sessionId))
  97. {
  98. return true;
  99. }
  100. return false;
  101. }
  102. /// <summary>
  103. /// 判断传入会话对象是否存在
  104. /// </summary>
  105. /// <param name="session"></param>
  106. /// <returns></returns>
  107. public static bool hasSession(IceServerIoSession session)
  108. {
  109. IceConfig config = session.Connector.GetConnectorConfig();
  110. return hasSession(config.RemoteIp, session.ClientSentDataPort, session.ClientRecvDataPort);
  111. }
  112. /// <summary>
  113. /// IP地址和端口为键获取会话
  114. /// </summary>
  115. /// <param name="ip"></param>
  116. /// <param name="port"></param>
  117. /// <returns></returns>
  118. public static bool hasSession(String ip, int port, int recvPort)
  119. {
  120. string key = getSessionStrKey(ip, port, recvPort);
  121. if (sessionMap.ContainsKey(key))
  122. {
  123. return true;
  124. }
  125. return false;
  126. }
  127. /// <summary>
  128. /// 获取所有会话
  129. /// </summary>
  130. /// <returns></returns>
  131. public static List<ISession> getAllSession()
  132. {
  133. return sessionMap.Values.ToList();
  134. }
  135. /// <summary>
  136. /// 创建Session
  137. /// </summary>
  138. /// <param name="server"></param>
  139. /// <param name="codec"></param>
  140. /// <param name="ip"></param>
  141. /// <param name="port"></param>
  142. /// <returns></returns>
  143. public static IceServerIoSession createSession(IceConnectServer server, String ip, int port, int recvPort)
  144. {
  145. IceServerIoSession session = new IceServerIoSession(server);
  146. session.ClientSentDataPort = port;
  147. session.ClientRecvDataPort = recvPort;
  148. addSession(ip, session);
  149. return session;
  150. }
  151. /// <summary>
  152. /// 生成基于IP地址和端口的会话存储键
  153. /// </summary>
  154. /// <param name="recvPort">发送方侦听端口</param>
  155. /// <returns></returns>
  156. private static string getSessionStrKey(String ip, int port, int recvPort)
  157. {
  158. return ip + ":" + recvPort;
  159. //return ip + ":" + port + ":" + recvPort;
  160. }
  161. /// <summary>
  162. /// 启动会话过期检测线程
  163. /// </summary>
  164. public static void StartSessionExpireTask()
  165. {
  166. sessionExpireTask = new IceServerSessionExpireTask();
  167. sessionExpireTask.Start();
  168. }
  169. /// <summary>
  170. /// 关闭会话过期检测线程
  171. /// </summary>
  172. public static void EndSessionExpireTask()
  173. {
  174. sessionExpireTask.End();
  175. }
  176. }
  177. }