IceTcpServer.cs 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. using CommonLang.Log;
  2. using CommonLang.Protocol;
  3. using CommonNetwork_ICE.Util;
  4. using CommonServer.Protocol;
  5. using CommonServer.Server;
  6. using CommonServer_ICE.handler;
  7. using CommonServer_ICE.Msg;
  8. using CommonServer_ICE.Session;
  9. using Slice;
  10. using System;
  11. using System.Collections.Generic;
  12. using System.Linq;
  13. using System.Text;
  14. namespace CommonServer_ICE.Server
  15. {
  16. /// <summary>
  17. /// ICE的TCP消息委托处理实现类
  18. /// </summary>
  19. public sealed class IceTcpServer : IceConnectServer
  20. {
  21. private static Logger log = LoggerFactory.GetLogger("IceTcpServer");
  22. private TcpServerRouter routerAdapter;
  23. public IceTcpServer(IPackageCodec codec)
  24. : base(codec)
  25. {
  26. }
  27. /// <summary>
  28. /// 启动ICE服务器
  29. /// </summary>
  30. /// <returns></returns>
  31. internal override void StartIceServer()
  32. {
  33. routerAdapter = new TcpServerRouter(this);
  34. try
  35. {
  36. int result = routerAdapter.main(new string[0], getInitData());
  37. if (result != 0)
  38. {
  39. throw new Exception("启动失败。");
  40. }
  41. }
  42. catch (Exception e)
  43. {
  44. throw e;
  45. }
  46. }
  47. /// <summary>
  48. /// 获取传输类型
  49. /// </summary>
  50. /// <returns></returns>
  51. internal override int getCommType()
  52. {
  53. return Constants.COMM_TYPE_TCP;
  54. }
  55. /// <summary>
  56. /// 初始化ICE TCP参数
  57. /// </summary>
  58. /// <returns></returns>
  59. private Ice.InitializationData getInitData()
  60. {
  61. Ice.InitializationData initData = new Ice.InitializationData();
  62. Ice.Properties props = Ice.Util.createProperties();
  63. props.setProperty(Constants.TCP_SERVER_INSTANCE_NAME + ".Endpoints", "tcp -h " + getServerConfig().Ip + " -p " + getServerConfig().Port);
  64. initData.properties = props;
  65. return initData;
  66. }
  67. /// <summary>
  68. /// 返回会话总数量
  69. /// </summary>
  70. public override int SessionCount
  71. {
  72. get { return TcpSessionManager.getSessionCount(); }
  73. }
  74. /// <summary>
  75. /// 会话管理器
  76. /// </summary>
  77. internal TcpSessionManager TcpSessionManager
  78. {
  79. private get;
  80. set;
  81. }
  82. //广播消息
  83. public override void Broadcast(IMessage message)
  84. {
  85. List<ISession> sessionList = TcpSessionManager.getAllSession();
  86. foreach (ISession session in sessionList)
  87. {
  88. session.Send(message);
  89. }
  90. }
  91. /// <summary>
  92. /// 判断某个Session是否存在
  93. /// </summary>
  94. /// <param name="session"></param>
  95. /// <returns></returns>
  96. public override bool HasSession(ISession session)
  97. {
  98. return TcpSessionManager.hasSession(session);
  99. }
  100. /// <summary>
  101. /// 获取单个Session
  102. /// </summary>
  103. /// <param name="sessionID"></param>
  104. /// <returns></returns>
  105. public override ISession GetSessionByID(string sessionID)
  106. {
  107. return TcpSessionManager.getSession(sessionID);
  108. }
  109. /// <summary>
  110. /// 获取所有Session
  111. /// </summary>
  112. /// <returns></returns>
  113. public override IEnumerable<ISession> GetSessions()
  114. {
  115. if (TcpSessionManager == null)
  116. {
  117. return new List<ISession>();
  118. }
  119. return TcpSessionManager.getAllSession();
  120. }
  121. /// <summary>
  122. /// 释放服务器资源
  123. /// </summary>
  124. public override void Dispose()
  125. {
  126. log.Info("关闭服务器,释放各种资源");
  127. // 关闭所有Session消息接收通道
  128. if (TcpSessionManager != null)
  129. {
  130. List<ISession> sessionList = TcpSessionManager.getAllSession();
  131. foreach (ISession session in sessionList)
  132. {
  133. session.Disconnect(true);
  134. }
  135. }
  136. if (routerAdapter != null)
  137. {
  138. routerAdapter.Dispose();
  139. }
  140. this.serverListener.OnDestory();
  141. }
  142. }
  143. }