/src/pgrid/communication/PGridProxyImpl.java

https://gitlab.com/libpgrid/p-grid · Java · 193 lines · 139 code · 37 blank · 17 comment · 20 complexity · 71c1362202775bbd0140e22a9ee654cc MD5 · raw file

  1. package pgrid.communication;
  2. import org.omg.CORBA.ORB;
  3. import org.slf4j.Logger;
  4. import org.slf4j.LoggerFactory;
  5. import pgrid.PGridP2P;
  6. import pgrid.communication.CORBAServices.*;
  7. import pgrid.communication.CORBAUtilities.Deserializer;
  8. import pgrid.communication.CORBAUtilities.Serializer;
  9. import pgrid.core.PGridHost;
  10. import pgrid.core.PGridPeer;
  11. import pgrid.core.RoutingTable;
  12. import java.net.InetAddress;
  13. /**
  14. * Here I'll gather all the classes that have to do with sending a request from
  15. * the local peer to a remote peer.
  16. * Needs a factory.
  17. * <p/>
  18. * TODO: Process org.omg.CORBA.COMM_FAILURE exception (go repair the remote node that is!)
  19. *
  20. * @author Vourlakis Nikolas <nvourlakis@gmail.com>
  21. */
  22. public class PGridProxyImpl implements PGridProxy {
  23. // TODO: must be created from factory
  24. private static final Logger logger_ = LoggerFactory.getLogger(PGridProxyImpl.class);
  25. private final ORB orb_;
  26. private final PGridP2P p2p_;
  27. private final PGridHost localhost_;
  28. public PGridProxyImpl(PGridP2P p2p, ORB orb) {
  29. p2p_ = p2p;
  30. orb_ = orb;
  31. localhost_ = p2p_.getLocalHost();
  32. }
  33. @Override
  34. public boolean isOnline(String address, int port) {
  35. if (address == null) {
  36. throw new NullPointerException("Address cannot be null.");
  37. }
  38. if (port < 0) {
  39. throw new IllegalArgumentException("Port must be positive.");
  40. }
  41. logger_.info("Asking CORBA layer if {}:{} is online", address, port);
  42. CORBAGeneralOperations operations = getGeneralOperationsRef(address, port);
  43. p2p_.timedLocalEvent();
  44. boolean result = operations.isOnline(Serializer.serializePGridHost(localhost_));
  45. p2p_.timedRemoteEvent(Deserializer.deserializePGridHost(operations.peer()));
  46. logger_.debug("Result received.");
  47. return result;
  48. }
  49. @Override
  50. public boolean isOnline(InetAddress address, int port) {
  51. if (address == null) {
  52. throw new NullPointerException("Address cannot be null.");
  53. }
  54. if (port < 0) {
  55. throw new IllegalArgumentException("Port must be positive.");
  56. }
  57. return isOnline(address.getHostAddress(), port);
  58. }
  59. @Override
  60. public PGridHost getRemoteHost(String address, int port) {
  61. if (address == null) {
  62. throw new NullPointerException("Address cannot be null.");
  63. }
  64. if (port < 0) {
  65. throw new IllegalArgumentException("Port must be positive.");
  66. }
  67. logger_.info("Asking CORBA layer who is on {}:{}", address, port);
  68. CORBAGeneralOperations operations = getGeneralOperationsRef(address, port);
  69. p2p_.timedLocalEvent();
  70. PeerReference serializedHost = operations.getPeer(Serializer.serializePGridHost(localhost_));
  71. PGridHost remoteHost = Deserializer.deserializePGridHost(serializedHost);
  72. p2p_.timedRemoteEvent(remoteHost);
  73. logger_.debug("PeerReference received.");
  74. return remoteHost;
  75. }
  76. @Override
  77. public RoutingTable getRemoteRT(String address, int port) {
  78. if (address == null) {
  79. throw new NullPointerException("Address cannot be null.");
  80. }
  81. if (port < 0) {
  82. throw new IllegalArgumentException("Port must be positive.");
  83. }
  84. logger_.info("Asking CORBA layer for the routing table of {}:{}", address, port);
  85. CORBAGeneralOperations operations = getGeneralOperationsRef(address, port);
  86. p2p_.timedLocalEvent();
  87. PeerReference[] serializedRT = operations.getRoutingTable(Serializer.serializePGridHost(localhost_));
  88. logger_.debug("PeerReference array received.");
  89. p2p_.timedRemoteEvent(Deserializer.deserializePGridHost(operations.peer()));
  90. RoutingTable rt = Deserializer.deserializeRoutingTable(serializedRT);
  91. logger_.debug("Routing table constructed successfully.");
  92. return rt;
  93. }
  94. @Override
  95. public String maintenanceState(PGridHost remoteHost) {
  96. if (remoteHost == null) {
  97. throw new NullPointerException();
  98. }
  99. logger_.info("Asking CORBA layer for maintenance state of {}", remoteHost);
  100. CORBAMaintenance maintenance =
  101. getMaintenanceRef(remoteHost.getAddress().getHostName(), remoteHost.getPort());
  102. p2p_.timedLocalEvent();
  103. String state = maintenance.maintenanceState(Serializer.serializePGridHost(localhost_));
  104. p2p_.timedRemoteEvent(Deserializer.deserializePGridHost(maintenance.peer()));
  105. logger_.debug("Received maintenance state: {}", state);
  106. return state;
  107. }
  108. @Override
  109. public PGridPeer exchangeInfo(PGridHost remoteHost, PGridHost localHost, RoutingTable localRT) {
  110. if (remoteHost == null || localHost == null || localRT == null) {
  111. throw new NullPointerException();
  112. }
  113. logger_.info("Asking CORBA layer for exchange information of {}", remoteHost);
  114. CORBAMaintenance maintenance =
  115. getMaintenanceRef(remoteHost.getAddress().getHostAddress(), remoteHost.getPort());
  116. p2p_.timedLocalEvent();
  117. ExchangeInfo localInfo = new ExchangeInfo(
  118. Serializer.serializePGridHost(localHost),
  119. Serializer.serializeRoutingTable(localRT));
  120. ExchangeInfo remoteInfo = maintenance.exchangeInfo(localInfo);
  121. PGridPeer remotePeer = Deserializer.deserializeExchangeInfo(remoteInfo);
  122. p2p_.timedRemoteEvent(remotePeer.getHost());
  123. logger_.debug("Received exchange information for {}", remotePeer.getHost());
  124. return remotePeer;
  125. }
  126. @Override
  127. public PGridHost getFailedPeer(PGridHost remoteHost) {
  128. return null;
  129. }
  130. @Override
  131. public void waitingSolution(PGridHost remoteHost, PGridHost localHost) {
  132. }
  133. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  134. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  135. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  136. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  137. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  138. private CORBAGeneralOperations getGeneralOperationsRef(String address, int port) {
  139. String[] generalOpsID = CORBAGeneralOperationsHelper.id().split(":");
  140. String corbaloc = "corbaloc:iiop:[" +
  141. address + "]:" + port + "/" + generalOpsID[1];
  142. //"/pgrid/communication/CORBAServices/CORBAGeneralOperations";
  143. logger_.debug("CORBALOC: {}", corbaloc);
  144. org.omg.CORBA.Object object = orb_.string_to_object(corbaloc);
  145. return CORBAGeneralOperationsHelper.narrow(object);
  146. }
  147. private CORBAMaintenance getMaintenanceRef(String address, int port) {
  148. String[] maintenanceID = CORBAMaintenanceHelper.id().split(":");
  149. String corbaloc = "corbaloc:iiop:[" +
  150. address + "]:" + port + "/" + maintenanceID[1];
  151. //"/pgrid/communication/CORBAServices/CORBAMaintenance";
  152. logger_.debug("CORBALOC: {}", corbaloc);
  153. org.omg.CORBA.Object object = orb_.string_to_object(corbaloc);
  154. return CORBAMaintenanceHelper.narrow(object);
  155. }
  156. }