/trunk/ zonejavastudy --username ypz168/RMITest02_S/src/com/yan/dev/rmi/service/impl/RMIServerImpl.java

https://gitlab.com/BGCX261/zonejavastudy-svn-to-git · Java · 145 lines · 84 code · 20 blank · 41 comment · 0 complexity · d605c5b2efd47f4d6a9005cb164c8bf9 MD5 · raw file

  1. /**
  2. * Copyright(c) 2010-2011 Yan.Dev. All Rights Reserved.
  3. */
  4. package com.yan.dev.rmi.service.impl;
  5. import java.io.File;
  6. import java.io.IOException;
  7. import java.net.MalformedURLException;
  8. import java.rmi.Naming;
  9. import java.rmi.NotBoundException;
  10. import java.rmi.Remote;
  11. import java.rmi.RemoteException;
  12. import java.rmi.registry.LocateRegistry;
  13. import org.apache.xmlbeans.XmlException;
  14. import com.yan.dev.rmi.conf.xsd.RmiconfDocument;
  15. import com.yan.dev.rmi.server.common.Constants;
  16. import com.yan.dev.rmi.service.IRMIServer;
  17. /**
  18. * Comment for RMIServer.java
  19. *
  20. * @author <a href="mailto:yan.dev@hotmail.com">yan.dev</a>
  21. *
  22. * @blog:<a href="http://yan-dev.javaeye.com"><b>yan.dev's Blog</b></a>
  23. * @version 1.0
  24. * @time 2011-3-24 ÉÏÎç10:22:32
  25. */
  26. public class RMIServerImpl implements IRMIServer {
  27. private String ip = Constants.RMI_DEFAULT_IP;
  28. private int port = Constants.RMI_DEFAULT_PORT;
  29. public RMIServerImpl() {
  30. getConf();
  31. try {
  32. registry();
  33. } catch (RemoteException e) {
  34. e.printStackTrace();
  35. }
  36. }
  37. public void getConf() {
  38. File file = new File(Constants.RMI_CONF_FILE);
  39. try {
  40. RmiconfDocument doc = RmiconfDocument.Factory.parse(file);
  41. RmiconfDocument.Rmiconf conf = doc.getRmiconf();
  42. this.port = Integer.parseInt(conf.getPort().toString());
  43. this.ip = conf.getIp().toString();
  44. // System.out.println(port+":"+ip);
  45. conf = null;
  46. doc = null;
  47. } catch (XmlException e) {
  48. e.printStackTrace();
  49. } catch (IOException e) {
  50. e.printStackTrace();
  51. }
  52. }
  53. public void registry() throws RemoteException {
  54. LocateRegistry.createRegistry(this.port);
  55. }
  56. public void bind(String sName, Remote obj) throws RemoteException {
  57. bind(this.ip, this.port, sName, obj);
  58. }
  59. public void bind(String ip, String sName, Remote obj)
  60. throws RemoteException {
  61. bind(ip, this.port, sName, obj);
  62. }
  63. public void bind(String ip, int port, String sName, Remote obj)
  64. throws RemoteException {
  65. try {
  66. Naming.rebind("rmi://" + ip + ":" + port + "/" + sName, obj);
  67. } catch (MalformedURLException e) {
  68. e.printStackTrace();
  69. }
  70. }
  71. /*
  72. * (non-Javadoc)
  73. *
  74. * @see com.yan.dev.rmi.server.IRMIServer#unbind(java.lang.String)
  75. */
  76. @Override
  77. public void unbind(String sName) throws RemoteException {
  78. }
  79. /*
  80. * (non-Javadoc)
  81. *
  82. * @see com.yan.dev.rmi.server.IRMIServer#bind(int, java.lang.String,
  83. * java.rmi.Remote)
  84. */
  85. @Override
  86. public void bind(int port, String sName, Remote obj) throws RemoteException {
  87. bind(this.ip, port, sName, obj);
  88. }
  89. /*
  90. * (non-Javadoc)
  91. *
  92. * @see com.yan.dev.rmi.server.IRMIServer#unbind(int, java.lang.String)
  93. */
  94. @Override
  95. public void unbind(int port, String sName) throws RemoteException {
  96. unbind(this.ip, port, sName);
  97. }
  98. /*
  99. * (non-Javadoc)
  100. *
  101. * @see com.yan.dev.rmi.server.IRMIServer#unbind(java.lang.String,
  102. * java.lang.String)
  103. */
  104. @Override
  105. public void unbind(String ip, String sName) throws RemoteException {
  106. unbind(ip, this.port, sName);
  107. }
  108. /*
  109. * (non-Javadoc)
  110. *
  111. * @see com.yan.dev.rmi.server.IRMIServer#unbind(java.lang.String, int,
  112. * java.lang.String)
  113. */
  114. @Override
  115. public void unbind(String ip, int port, String sName)
  116. throws RemoteException {
  117. try {
  118. Naming.unbind("rmi://" + ip + ":" + port + "/" + sName);
  119. } catch (MalformedURLException e) {
  120. e.printStackTrace();
  121. } catch (NotBoundException e) {
  122. e.printStackTrace();
  123. }
  124. }
  125. }