📄 standardjoinprotocol.java
字号:
/*************************************************************************"FreePastry" Peer-to-Peer Application Development Substrate Copyright 2002, Rice University. All rights reserved.Redistribution and use in source and binary forms, with or withoutmodification, are permitted provided that the following conditions aremet:- Redistributions of source code must retain the above copyrightnotice, this list of conditions and the following disclaimer.- Redistributions in binary form must reproduce the above copyrightnotice, this list of conditions and the following disclaimer in thedocumentation and/or other materials provided with the distribution.- Neither the name of Rice University (RICE) nor the names of itscontributors may be used to endorse or promote products derived fromthis software without specific prior written permission.This software is provided by RICE and the contributors on an "as is"basis, without any representations or warranties of any kind, expressor implied including, but not limited to, representations orwarranties of non-infringement, merchantability or fitness for aparticular purpose. In no event shall RICE or contributors be liablefor any direct, indirect, incidental, special, exemplary, orconsequential damages (including, but not limited to, procurement ofsubstitute goods or services; loss of use, data, or profits; orbusiness interruption) however caused and on any theory of liability,whether in contract, strict liability, or tort (including negligenceor otherwise) arising in any way out of the use of this software, evenif advised of the possibility of such damage.********************************************************************************/package rice.pastry.standard;import rice.environment.logging.Logger;import rice.p2p.commonapi.rawserialization.*;import rice.pastry.*;import rice.pastry.messaging.*;import rice.pastry.leafset.*;import rice.pastry.routing.*;import rice.pastry.client.PastryAppl;import rice.pastry.join.*;import java.io.IOException;import java.util.*;/** * An implementation of a simple join protocol. * * @version $Id: StandardJoinProtocol.java 3274 2006-05-15 16:17:47Z jeffh $ * @author Peter Druschel * @author Andrew Ladd * @author Rongmei Zhang * @author Y. Charlie Hu */public class StandardJoinProtocol extends PastryAppl { /** * DESCRIBE THE FIELD */ protected NodeHandle localHandle; /** * DESCRIBE THE FIELD */ protected RoutingTable routeTable; /** * DESCRIBE THE FIELD */ protected LeafSet leafSet; /** * Constructor. * * @param lh the local node handle. * @param ln DESCRIBE THE PARAMETER * @param rt DESCRIBE THE PARAMETER * @param ls DESCRIBE THE PARAMETER */ public StandardJoinProtocol(PastryNode ln, NodeHandle lh, RoutingTable rt, LeafSet ls) { this(ln, lh, rt, ls, null); } /** * Constructor for StandardJoinProtocol. * * @param ln DESCRIBE THE PARAMETER * @param lh DESCRIBE THE PARAMETER * @param rt DESCRIBE THE PARAMETER * @param ls DESCRIBE THE PARAMETER * @param md DESCRIBE THE PARAMETER */ public StandardJoinProtocol(PastryNode ln, NodeHandle lh, RoutingTable rt, LeafSet ls, MessageDeserializer md) { super(ln, null, JoinAddress.getCode(), md == null ? new SJPDeserializer(ln) : md); localHandle = lh; routeTable = rt; leafSet = ls; } /** * Get address. * * @return gets the address. */ public int getAddress() { return JoinAddress.getCode(); } /** * Can be overloaded to do additional things before going ready. For example, * verifying that other nodes are aware of us, so that consistent routing is * guaranteed. */ protected void setReady() { thePastryNode.setReady(); } /** * Receives a message from the outside world. * * @param msg the message that was received. */ public void receiveMessage(Message msg) { if (msg instanceof JoinRequest) { JoinRequest jr = (JoinRequest) msg; NodeHandle nh = jr.getHandle(); // if (nh.isAlive() == true) // the handle is alive if (jr.accepted() == false) { // this is the terminal node on the request path // leafSet.put(nh); if (thePastryNode.isReady()) { jr.acceptJoin(localHandle, leafSet); nh.receiveMessage(jr); } else { if (logger.level <= Logger.INFO) { logger.log( "NOTE: Dropping incoming JoinRequest " + jr + " because local node is not ready!"); } } } else { // this is the node that initiated the join request in the first // place NodeHandle jh = jr.getJoinHandle(); // the node we joined to. if (jh.getId().equals(localHandle.getId()) && !jh.equals(localHandle)) { if (logger.level <= Logger.WARNING) { logger.log( "NodeId collision, unable to join: " + localHandle + ":" + jh); } } else if (jh.isAlive() == true) { // the join handle is alive routeTable.put(jh); // add the num. closest node to the routing table // update local RT, then broadcast rows to our peers broadcastRows(jr); // now update the local leaf set BroadcastLeafSet bls = new BroadcastLeafSet(jh, jr.getLeafSet(), BroadcastLeafSet.JoinInitial); localHandle.receiveMessage(bls); // we have now successfully joined the ring, set the local node ready setReady(); } } } else if (msg instanceof RouteMessage) { // a join request message at an intermediate node RouteMessage rm = (RouteMessage) msg; try { JoinRequest jr = (JoinRequest) rm.unwrap(deserializer); Id localId = localHandle.getNodeId(); NodeHandle jh = jr.getHandle(); Id nid = jh.getNodeId(); if (!jh.equals(localHandle)) { int base = thePastryNode.getRoutingTable().baseBitLength(); int msdd = localId.indexOfMSDD(nid, base); int last = jr.lastRow(); for (int i = last - 1; msdd > 0 && i >= msdd; i--) { RouteSet[] row = routeTable.getRow(i); jr.pushRow(row); } rm.routeMessage(localHandle); } } catch (IOException ioe) { if (logger.level <= Logger.SEVERE) { logger.logException("StandardJoinProtocol.receiveMessage()", ioe); } } } else if (msg instanceof InitiateJoin) { // request from the local node to // join InitiateJoin ij = (InitiateJoin) msg; NodeHandle nh = ij.getHandle(); if (nh == null) { if (logger.level <= Logger.SEVERE) { logger.log( "ERROR: Cannot join ring. All bootstraps are faulty."); } } else { if (nh.isAlive() == true) { JoinRequest jr = new JoinRequest(localHandle, thePastryNode.getRoutingTable().baseBitLength()); RouteMessage rm = new RouteMessage(localHandle.getNodeId(), jr); rm.getOptions().setRerouteIfSuspected(false); rm.setPrevNode(localHandle); try { nh.bootstrap(rm); } catch (IOException ioe) { if (logger.level <= Logger.SEVERE) { logger.logException("Error bootstrapping.", ioe); } } } } } } /** * Broadcasts the route table rows. * * @param jr the join row. */ public void broadcastRows(JoinRequest jr) { // NodeId localId = localHandle.getNodeId(); int n = jr.numRows(); // send the rows to the RouteSetProtocol on the local node for (int i = jr.lastRow(); i < n; i++) { RouteSet row[] = jr.getRow(i); if (row != null) { BroadcastRouteRow brr = new BroadcastRouteRow(localHandle, row); localHandle.receiveMessage(brr); } } // now broadcast the rows to our peers in each row for (int i = jr.lastRow(); i < n; i++) { RouteSet row[] = jr.getRow(i); BroadcastRouteRow brr = new BroadcastRouteRow(localHandle, row); for (int j = 0; j < row.length; j++) { RouteSet rs = row[j]; if (rs == null) { continue; } // send to closest nodes only NodeHandle nh = rs.closestNode(); if (nh != null) { nh.receiveMessage(brr); } /* * int m = rs.size(); for (int k=0; k<m; k++) { NodeHandle nh = * rs.get(k); * * nh.receiveMessage(brr); } */ } } } /** * Should not be called becasue we are overriding the receiveMessage() * interface anyway. * * @param msg DESCRIBE THE PARAMETER */ public void messageForAppl(Message msg) { throw new RuntimeException("Should not be called."); } /** * We always want to receive messages. * * @return DESCRIBE THE RETURN VALUE */ public boolean deliverWhenNotReady() { return true; } /** * DESCRIBE THE CLASS * * @version $Id: pretty.settings 2305 2005-03-11 20:22:33Z jeffh $ * @author jeffh */ static class SJPDeserializer extends PJavaSerializedDeserializer { /** * Constructor for SJPDeserializer. * * @param pn DESCRIBE THE PARAMETER */ public SJPDeserializer(PastryNode pn) { super(pn); } /** * DESCRIBE THE METHOD * * @param buf DESCRIBE THE PARAMETER * @param type DESCRIBE THE PARAMETER * @param priority DESCRIBE THE PARAMETER * @param sender DESCRIBE THE PARAMETER * @return DESCRIBE THE RETURN VALUE * @exception IOException DESCRIBE THE EXCEPTION */ public Message deserialize(InputBuffer buf, short type, byte priority, NodeHandle sender) throws IOException { switch (type) { case JoinRequest.TYPE: return new JoinRequest(buf, pn, (NodeHandle) sender); } return null; } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -