TcpServerRouter.cs 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. using CommonLang.Log;
  2. using CommonNetwork_ICE.Util;
  3. using CommonServer_ICE.Session;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Text;
  8. namespace CommonServer_ICE.Server
  9. {
  10. /// <summary>
  11. /// TCP网关服务器启动处理
  12. /// </summary>
  13. class TcpServerRouter : Ice.Application
  14. {
  15. private static Logger log = LoggerFactory.GetLogger("TcpServerRouter");
  16. // TCP服务器对象
  17. private IceTcpServer tcpServer;
  18. private Ice.ObjectAdapter adapter;
  19. public TcpServerRouter(IceTcpServer tcpServer)
  20. {
  21. this.tcpServer = tcpServer;
  22. }
  23. /// <summary>
  24. /// 启动TCP网关接收处理
  25. /// </summary>
  26. /// <param name="args"></param>
  27. /// <returns></returns>
  28. public override int run(string[] args)
  29. {
  30. try
  31. {
  32. adapter = Ice.Application.communicator().createObjectAdapter(Constants.TCP_SERVER_INSTANCE_NAME);
  33. TcpSessionManager tcpSessionManager = new TcpSessionManager(tcpServer);
  34. adapter.add(tcpSessionManager, Ice.Application.communicator().stringToIdentity(Constants.TCP_SERVER_SESSION_MANAGER_INSTANCE_NAME));
  35. adapter.activate();
  36. log.Info("ICE TCP服务器启动侦听,IP【" + tcpServer.getServerConfig().Ip + "】端口【" + tcpServer.getServerConfig().Port + "】。");
  37. adapter.getCommunicator().waitForShutdown();
  38. }
  39. catch (Exception e)
  40. {
  41. Exception innerEx = e.InnerException;
  42. string msg = "";
  43. if (innerEx != null)
  44. {
  45. msg = innerEx.Message;
  46. }
  47. else
  48. {
  49. msg = e.Message;
  50. }
  51. log.Error("ICE服务器启动异常:" + msg);
  52. return -1;
  53. }
  54. return 0;
  55. }
  56. /// <summary>
  57. /// 关闭服务器,释放资源
  58. /// </summary>
  59. public void Dispose()
  60. {
  61. if (adapter != null)
  62. {
  63. adapter.getCommunicator().destroy();
  64. }
  65. }
  66. }
  67. }