⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 distpastrynode.java

📁 pastry的java实现的2.0b版
💻 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.dist;import java.net.InetSocketAddress;import java.util.*;import rice.*;import rice.environment.Environment;import rice.environment.logging.Logger;import rice.pastry.*;import rice.pastry.join.InitiateJoin;import rice.pastry.leafset.InitiateLeafSetMaintenance;import rice.pastry.messaging.Message;import rice.pastry.routing.InitiateRouteSetMaintenance;import rice.persistence.PersistentStorage;import rice.selector.SelectorManager;import rice.selector.Timer;import sun.misc.SignalHandler;/** * Class which represents the abstraction of a "real" pastry node. Designed to * be extended by the protocol implementation (i.e. RMI or Socket) desired. * * @version $Id: DistPastryNode.java 3274 2006-05-15 16:17:47Z jeffh $ * @author Alan Mislove */public abstract class DistPastryNode extends PastryNode {  // Period (in seconds) at which the leafset and routeset maintenance tasks, respectively, are invoked.  // 0 means never.  /**   * DESCRIBE THE FIELD   */  protected int leafSetMaintFreq, routeSetMaintFreq;  // timer that supports scheduled messages  /**   * DESCRIBE THE FIELD   */  protected Timer timer;  // = SelectorManager.getSelectorManager().getTimer();//new Timer(true);  // the list of network listeners  private Vector listeners;  // join retransmission stuff  private ScheduledMessage joinEvent;  /**   * DESCRIBE THE FIELD   */  protected ScheduledMessage leafSetRoutineMaintenance = null;  /**   * DESCRIBE THE FIELD   */  protected ScheduledMessage routeSetRoutineMaintenance = null;  // the list of errors  private static Vector errors = new Vector();  /**   * Constructor, with NodeId. Need to set the node's ID before this node is   * inserted as localHandle.localNode.   *   * @param id DESCRIBE THE PARAMETER   * @param e DESCRIBE THE PARAMETER   */  protected DistPastryNode(Id id, Environment e) {    super(id, e);    timer = e.getSelectorManager().getTimer();//    timer = new Timer(true);    // uses deamon thread, so it terminates once other threads have terminated    this.listeners = new Vector();  }  /**   * Gets the Timer attribute of the DistPastryNode object   *   * @return The Timer value   */  public Timer getTimer() {    return timer;  }  /**   * Gets the NetworkListeners attribute of the DistPastryNode object   *   * @return The NetworkListeners value   */  protected NetworkListener[] getNetworkListeners() {    return (NetworkListener[]) listeners.toArray(new NetworkListener[0]);  }  /**   * Adds a feature to the NetworkListener attribute of the DistPastryNode   * object   *   * @param listener The feature to be added to the NetworkListener attribute   */  public void addNetworkListener(NetworkListener listener) {    listeners.add(listener);  }  /**   * DESCRIBE THE METHOD   *   * @param addr DESCRIBE THE PARAMETER   */  public void broadcastChannelClosed(InetSocketAddress addr) {    NetworkListener[] listeners = getNetworkListeners();    for (int i = 0; i < listeners.length; i++) {      listeners[i].channelClosed(addr);    }  }  /**   * DESCRIBE THE METHOD   *   * @param addr DESCRIBE THE PARAMETER   * @param reason DESCRIBE THE PARAMETER   */  public void broadcastChannelOpened(InetSocketAddress addr, int reason) {    NetworkListener[] listeners = getNetworkListeners();    for (int i = 0; i < listeners.length; i++) {      listeners[i].channelOpened(addr, reason);    }  }  /**   * DESCRIBE THE METHOD   *   * @param message DESCRIBE THE PARAMETER   * @param dest DESCRIBE THE PARAMETER   * @param size DESCRIBE THE PARAMETER   * @param type DESCRIBE THE PARAMETER   */  public void broadcastSentListeners(Object message, InetSocketAddress dest, int size, int type) {    NetworkListener[] listeners = getNetworkListeners();    for (int i = 0; i < listeners.length; i++) {      listeners[i].dataSent(message, dest, size, type);    }  }  /**   * DESCRIBE THE METHOD   *   * @param message DESCRIBE THE PARAMETER   * @param from DESCRIBE THE PARAMETER   * @param size DESCRIBE THE PARAMETER   * @param type DESCRIBE THE PARAMETER   */  public void broadcastReceivedListeners(Object message, InetSocketAddress from, int size, int type) {    NetworkListener[] listeners = getNetworkListeners();    for (int i = 0; i < listeners.length; i++) {      listeners[i].dataReceived(message, from, size, type);    }  }  /**   * Sends an InitiateJoin message to itself.   *   * @param bootstrap Node handle to bootstrap with.   */  public final void initiateJoin(NodeHandle bootstrap) {    if (logger.level <= Logger.CONFIG) {      logger.log(        "DistPN.initiateJoin()");    }//    if (bootstrap != null && bootstrap[0] != null)    if (bootstrap != null) {      // schedule (re-)transmission of the join message at an exponential backoff      joinEvent = scheduleMsgExpBackoff(new InitiateJoin(bootstrap), 0, 15000, 2);    } else {      setReady();    }    // no bootstrap node, so ready immediately  }  /**   * Called from PastryNode when the join succeeds.   */  public void nodeIsReady() {    if (joinEvent != null) {      joinEvent.cancel();    }    // cancel join retransmissions  }  /**   * Called after the node is initialized.   *   * @param bootstrap DESCRIBE THE PARAMETER   */  public void doneNode(NodeHandle bootstrap) {    if (routeSetMaintFreq > 0) {      // schedule the routeset maintenance event      routeSetRoutineMaintenance = scheduleMsgAtFixedRate(new InitiateRouteSetMaintenance(),        routeSetMaintFreq * 1000, routeSetMaintFreq * 1000);      if (logger.level <= Logger.CONFIG) {        logger.log(          "Scheduling routeSetMaint for " + routeSetMaintFreq * 1000 + "," + routeSetMaintFreq * 1000);      }    }    if (leafSetMaintFreq > 0) {      // schedule the leafset maintenance event      leafSetRoutineMaintenance = scheduleMsgAtFixedRate(new InitiateLeafSetMaintenance(),        leafSetMaintFreq * 1000, leafSetMaintFreq * 1000);      if (logger.level <= Logger.CONFIG) {        logger.log(          "Scheduling leafSetMaint for " + leafSetMaintFreq * 1000 + "," + leafSetMaintFreq * 1000);      }    }  }  /**   * Method which kills a PastryNode (used only for testing). Make sure to call   * super.destroy() !!!   */  public void destroy() {    super.destroy();    leafSetRoutineMaintenance.cancel();    routeSetRoutineMaintenance.cancel();  }  /**   * 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) {    ScheduledMessage sm = new ScheduledMessage(this, msg);    timer.schedule(sm, delay);    return sm;  }  /**   * 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) {    ScheduledMessage sm = new ScheduledMessage(this, msg);    timer.schedule(sm, delay, period);    return sm;  }  /**   * DESCRIBE THE METHOD   *   * @param msg DESCRIBE THE PARAMETER   * @param delay DESCRIBE THE PARAMETER   * @param initialPeriod DESCRIBE THE PARAMETER   * @param expBase DESCRIBE THE PARAMETER   * @return DESCRIBE THE RETURN VALUE   */  public ExponentialBackoffScheduledMessage scheduleMsgExpBackoff(Message msg, long delay, long initialPeriod, double expBase) {    ExponentialBackoffScheduledMessage sm = new ExponentialBackoffScheduledMessage(this, msg, timer, delay, initialPeriod, expBase);    return sm;  }  /**   * 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) {    ScheduledMessage sm = new ScheduledMessage(this, msg);    timer.scheduleAtFixedRate(sm, delay, period);    return sm;  }  /**   * Schedules a job for processing on the dedicated processing thread. CPU   * intensive jobs, such as encryption, erasure encoding, or bloom filter   * creation should never be done in the context of the underlying node's   * thread, and should only be done via this method.   *   * @param task The task to run on the processing thread   * @param command The command to return the result to once it's done   */  public void process(Executable task, Continuation command) {    getEnvironment().getProcessor().process(task, command, getEnvironment().getSelectorManager(), getEnvironment().getTimeSource(), getEnvironment().getLogManager());  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -