📄 directpastrynode.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.direct;import java.util.Hashtable;import rice.environment.Environment;import rice.environment.logging.Logger;import rice.p2p.commonapi.*;import rice.p2p.commonapi.appsocket.AppSocketReceiver;import rice.p2p.commonapi.rawserialization.InputBuffer;import rice.pastry.*;import rice.pastry.Id;import rice.pastry.NodeHandle;import rice.pastry.client.PastryAppl;import rice.pastry.join.InitiateJoin;import rice.pastry.messaging.Message;import rice.pastry.routing.RouteMessage;import rice.selector.Timer;/** * Direct pastry node. Subclasses PastryNode, and does about nothing else. * * @version $Id: DirectPastryNode.java 3274 2006-05-15 16:17:47Z jeffh $ * @author Sitaram Iyer */public class DirectPastryNode extends PastryNode { private NetworkSimulator simulator; /** * DESCRIBE THE FIELD */ protected boolean alive = true; NodeRecord record; /** * DESCRIBE THE FIELD */ protected Timer timer; Hashtable nodeHandles = new Hashtable(); /** * Used for proximity calculation of DirectNodeHandle. This will probably go * away when we switch to a byte-level protocol. */ public static DirectPastryNode currentNode = null; /** * Constructor for DirectPastryNode. * * @param id DESCRIBE THE PARAMETER * @param sim DESCRIBE THE PARAMETER * @param e DESCRIBE THE PARAMETER * @param nr DESCRIBE THE PARAMETER */ public DirectPastryNode(Id id, NetworkSimulator sim, Environment e, NodeRecord nr) { super(id, e); timer = e.getSelectorManager().getTimer(); simulator = sim; record = nr; } /** * Gets the Alive attribute of the DirectPastryNode object * * @return The Alive value */ public boolean isAlive() { return alive; } /** * Gets the Logger attribute of the DirectPastryNode object * * @return The Logger value */ public Logger getLogger() { return logger; } /** * DESCRIBE THE METHOD * * @param bootstrap DESCRIBE THE PARAMETER */ public void doneNode(NodeHandle bootstrap) { initiateJoin(bootstrap); } /** * DESCRIBE THE METHOD */ public void destroy() { super.destroy(); alive = false; setReady(false); simulator.removeNode(this); } /** * DESCRIBE THE METHOD * * @param bootstrap DESCRIBE THE PARAMETER */ public final void initiateJoin(NodeHandle bootstrap) { NodeHandle[] boots = new NodeHandle[1]; boots[0] = bootstrap; initiateJoin(boots); } /** * Sends an InitiateJoin message to itself. * * @param bootstrap Node handle to bootstrap with. */ public final void initiateJoin(NodeHandle[] bootstrap) { if (bootstrap != null && bootstrap[0] != null) { simulator.deliverMessage(new InitiateJoin(bootstrap), this);// this.receiveMessage(new InitiateJoin(bootstrap)); } else { setReady(); // no bootstrap node, so ready immediately } } /** * Called from PastryNode after the join succeeds. */ public final void nodeIsReady() { } /** * Schedule the specified message to be sent to the local node after a * specified delay. Useful to provide timeouts. * * @param msg a message that will be delivered to the local node after the * specified delay * @param delay time in milliseconds before message is to be delivered * @return the scheduled event object; can be used to cancel the message */ public ScheduledMessage scheduleMsg(Message msg, long delay) { return simulator.deliverMessage(msg, this, (int) delay); } /** * Schedule the specified message for repeated fixed-delay delivery to the * local node, beginning after the specified delay. Subsequent executions take * place at approximately regular intervals separated by the specified period. * Useful to initiate periodic tasks. * * @param msg a message that will be delivered to the local node after the * specified delay * @param delay time in milliseconds before message is to be delivered * @param period time in milliseconds between successive message deliveries * @return the scheduled event object; can be used to cancel the message */ public ScheduledMessage scheduleMsg(Message msg, long delay, long period) { return simulator.deliverMessage(msg, this, (int) delay, (int) period); } /** * Schedule the specified message for repeated fixed-rate delivery to the * local node, beginning after the specified delay. Subsequent executions take * place at approximately regular intervals, separated by the specified * period. * * @param msg a message that will be delivered to the local node after the * specified delay * @param delay time in milliseconds before message is to be delivered * @param period time in milliseconds between successive message deliveries * @return the scheduled event object; can be used to cancel the message */ public ScheduledMessage scheduleMsgAtFixedRate(Message msg, long delay, long period) { return simulator.deliverMessageFixedRate(msg, this, (int) delay, (int) period); } /** * DESCRIBE THE METHOD * * @param newHandle DESCRIBE THE PARAMETER * @return DESCRIBE THE RETURN VALUE */ public NodeHandle coalesce(NodeHandle newHandle) { NodeHandle ret = (NodeHandle) nodeHandles.get(newHandle); if (ret == null) { nodeHandles.put(newHandle, newHandle); ret = newHandle; } return ret; } /** * DESCRIBE THE METHOD * * @param msg DESCRIBE THE PARAMETER */ public synchronized void receiveMessage(Message msg) {// System.out.println("setting currentNode from "+currentNode+" to "+this+" on "+Thread.currentThread()); if (!getEnvironment().getSelectorManager().isSelectorThread()) { simulator.deliverMessage(msg, this); return; } DirectPastryNode temp = currentNode;// if ((currentNode != null) && (currentNode != this))// throw new RuntimeException("receiveMessage called recursively!");// System.out.println("currentNode != null"); currentNode = this; super.receiveMessage(msg); currentNode = temp; } /** * DESCRIBE THE METHOD * * @param rm DESCRIBE THE PARAMETER */ public synchronized void route(RouteMessage rm) { if (!getEnvironment().getSelectorManager().isSelectorThread()) { simulator.deliverMessage(rm, this); return; } DirectPastryNode temp = currentNode; currentNode = this; super.receiveMessage(rm); currentNode = temp; } /** * DESCRIBE THE METHOD * * @param handle DESCRIBE THE PARAMETER * @param message DESCRIBE THE PARAMETER */ public void send(NodeHandle handle, Message message) { handle.receiveMessage(message); } /** * DESCRIBE THE METHOD * * @param remoteNode DESCRIBE THE PARAMETER * @param receiver DESCRIBE THE PARAMETER * @param appl DESCRIBE THE PARAMETER * @param timeout DESCRIBE THE PARAMETER */ public void connect(NodeHandle remoteNode, AppSocketReceiver receiver, PastryAppl appl, int timeout) { DirectNodeHandle dnh = (DirectNodeHandle) remoteNode; simulator.enqueueDelivery(new DirectAppSocket(dnh, receiver, appl, simulator).getAcceptorDelivery()); } /** * DESCRIBE THE METHOD * * @param buf DESCRIBE THE PARAMETER * @return DESCRIBE THE RETURN VALUE */ public NodeHandle readNodeHandle(InputBuffer buf) { throw new RuntimeException("Should not be called."); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -