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

📄 profileselector.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.********************************************************************************//* *  Created on Jul 27, 2004 * *  To change the template for this generated file go to *  Window>Preferences>Java>Code Generation>Code and Comments */package rice.selector;import java.io.IOException;import java.nio.channels.SelectionKey;import java.util.ArrayList;import java.util.Collection;import java.util.Collections;import java.util.Comparator;import java.util.Date;import java.util.Enumeration;import java.util.Hashtable;import java.util.Iterator;import rice.environment.logging.*;import rice.environment.logging.LogManager;import rice.environment.time.TimeSource;/** * @version $Id: pretty.settings 2305 2005-03-11 20:22:33Z jeffh $ * @author jeffh To change the template for this generated type comment go to *      Window>Preferences>Java>Code Generation>Code and Comments */public class ProfileSelector extends SelectorManager {  int HEART_BEAT_INTERVAL = 60000;  long lastHeartBeat = 0;  /**   * DESCRIBE THE FIELD   */  public String lastTaskType = null;  /**   * DESCRIBE THE FIELD   */  public String lastTaskClass = null;  /**   * DESCRIBE THE FIELD   */  public String lastTaskToString = null;  /**   * DESCRIBE THE FIELD   */  public long lastTaskHash = 0;  int numInvocationsScheduled = 0;  int numInvocationsExecuted = 0;  int maxInvokes = 0;  // *********************** debugging statistics ****************  /**   * Records how long it takes to receive each type of message.   */  private Hashtable stats = new Hashtable();  /**   * DESCRIBE THE FIELD   */  public static boolean useHeartbeat = true;  /**   * DESCRIBE THE FIELD   */  public static boolean recordStats = true;  /**   * @param instance DESCRIBE THE PARAMETER   * @param timeSource DESCRIBE THE PARAMETER   * @param log DESCRIBE THE PARAMETER   */  public ProfileSelector(String instance, TimeSource timeSource, LogManager log) {    super(instance, timeSource, log);    new Thread(      new Runnable() {        public void run() {          while (true) {            System.out.println("LastTask: type:" + lastTaskType + " class:" + lastTaskClass + " toString():" + lastTaskToString + " hash:" + lastTaskHash);            try {              Thread.sleep(60000);            } catch (InterruptedException ie) {            }          }        }      }, "ProfileSelectorWatchdog").start();  }//  int numLoops = 0;  /**   * DESCRIBE THE METHOD   */  protected void onLoop() {//    numLoops++;//    if (numLoops % 100 == 0) System.out.println("Selector loops:"+numLoops);    if (!useHeartbeat) {      return;    }    long curTime = timeSource.currentTimeMillis();    if ((curTime - lastHeartBeat) > HEART_BEAT_INTERVAL) {      System.out.println("selector heartbeat " + new Date() + " maxInvokes:" + maxInvokes + " invokesSched:" + numInvocationsScheduled + " invokesExe:" + numInvocationsExecuted + " CurrentThread:" + Thread.currentThread() + "@" + System.identityHashCode(Thread.currentThread()));      printStats();      lastHeartBeat = curTime;    }  }  /**   * DESCRIBE THE METHOD   *   * @param d DESCRIBE THE PARAMETER   */  public void invoke(Runnable d) {    synchronized (this) {      numInvocationsScheduled++;      super.invoke(d);    }    //System.out.println("ProfileSelector.invoke("+d.getClass().getName()+"@"+System.identityHashCode(d)+")");//    if (!(d instanceof ConnectionManager.SenderInvokee)) {//      //Thread.dumpStack();//    }    int numInvokes = invocations.size();    if (numInvokes > maxInvokes) {      maxInvokes = numInvokes;    }  }  /**   * Adds a feature to the Stat attribute of the ProfileSelector object   *   * @param s The feature to be added to the Stat attribute   * @param time The feature to be added to the Stat attribute   */  public void addStat(String s, long time) {    if (!recordStats) {      return;    }    Stat st = (Stat) stats.get(s);    if (st == null) {      st = new Stat(s);      stats.put(s, st);    }    st.addTime(time);  }  /**   * DESCRIBE THE METHOD   */  public void printStats() {    if (!recordStats) {      return;    }    ArrayList list = new ArrayList(stats.size());    if (stats != null) {      synchronized (stats) {        Enumeration e = stats.elements();        while (e.hasMoreElements()) {          Stat s = (Stat) e.nextElement();          list.add(s);//          System.out.println("  "+s);        }      }    }    Collections.sort(list,      new Comparator() {        public boolean equals(Object arg0) {          return false;        }        public int compare(Object arg0, Object arg1) {          Stat stat1 = (Stat) arg0;          Stat stat2 = (Stat) arg1;          return (int) (stat2.totalTime - stat1.totalTime);        }      });    Iterator i = list.iterator();    while (i.hasNext()) {      System.out.println("  " + i.next());    }  }  /**   * DESCRIBE THE METHOD   *   * @exception IOException DESCRIBE THE EXCEPTION   */  protected void doSelections() throws IOException {    SelectionKey[] keys = selectedKeys();    for (int i = 0; i < keys.length; i++) {      selector.selectedKeys().remove(keys[i]);      SelectionKeyHandler skh = (SelectionKeyHandler) keys[i].attachment();      if (skh != null) {        // accept        if (keys[i].isValid() && keys[i].isAcceptable()) {          lastTaskType = "Accept";          lastTaskClass = skh.getClass().getName();          lastTaskToString = skh.toString();          lastTaskHash = System.identityHashCode(skh);          long startTime = timeSource.currentTimeMillis();          skh.accept(keys[i]);          int time = (int) (timeSource.currentTimeMillis() - startTime);          lastTaskType = "Accept Complete";          addStat("accepting", time);        }        // connect        if (keys[i].isValid() && keys[i].isConnectable()) {          lastTaskType = "Connect";          lastTaskClass = skh.getClass().getName();          lastTaskToString = skh.toString();          lastTaskHash = System.identityHashCode(skh);          long startTime = timeSource.currentTimeMillis();          skh.connect(keys[i]);          int time = (int) (timeSource.currentTimeMillis() - startTime);          lastTaskType = "Connect Complete";          addStat("connecting", time);        }        // read        if (keys[i].isValid() && keys[i].isReadable()) {          lastTaskType = "Read";          lastTaskClass = skh.getClass().getName();          lastTaskToString = skh.toString();          lastTaskHash = System.identityHashCode(skh);          long startTime = timeSource.currentTimeMillis();          skh.read(keys[i]);          int time = (int) (timeSource.currentTimeMillis() - startTime);          lastTaskType = "Read Complete";//          if (skh instanceof PingManager) {//            addStat("readingUDP",time);//          } else {//            addStat("readingTCP",time);//          }          //addStat("reading",time);        }        // write        if (keys[i].isValid() && keys[i].isWritable()) {          lastTaskType = "Write";          lastTaskClass = skh.getClass().getName();          lastTaskToString = skh.toString();          lastTaskHash = System.identityHashCode(skh);          long startTime = timeSource.currentTimeMillis();          skh.write(keys[i]);          int time = (int) (timeSource.currentTimeMillis() - startTime);          lastTaskType = "Write Complete";//          if (skh instanceof PingManager) {//            addStat("writingUDP",time);//          } else {//            addStat("writingTCP",time);//          }//          addStat("writing",time);        }      } else {        keys[i].channel().close();        keys[i].cancel();      }    }  }  /**   * Method which invokes all pending invocations. This method should *only* be   * called by the selector thread.   */  protected void doInvocations() {    Iterator i;    synchronized (this) {      i = new ArrayList(invocations).iterator();      invocations.clear();    }    Runnable run;    while (i.hasNext()) {      numInvocationsExecuted++;      run = (Runnable) i.next();      //System.out.println("ProfileSelector.doInvocations()"+run.getClass().getName()+"@"+System.identityHashCode(run));      try {        lastTaskType = "Invocation";        lastTaskClass = run.getClass().getName();        lastTaskToString = run.toString();        lastTaskHash = System.identityHashCode(run);        long startTime = timeSource.currentTimeMillis();        run.run();        int time = (int) (timeSource.currentTimeMillis() - startTime);//        if (run instanceof ConnectionManager.SenderInvokee) {//          ConnectionManager.SenderInvokee si = (ConnectionManager.SenderInvokee)run;//          addStat("sending "+si.message.getClass().getName(), time);//        } else {//          addStat(run.getClass().getName(),time);//        }        lastTaskType = "Invocation Complete";      } catch (Exception e) {        if (logger.level <= Logger.SEVERE) {          logger.logException(            "Invoking runnable caused exception " + e + " - continuing", e);        }      }    }    synchronized (this) {      i = new ArrayList(modifyKeys).iterator();    }    SelectionKey key;    while (i.hasNext()) {      key = (SelectionKey) i.next();      if (key.isValid() && (key.attachment() != null)) {        SelectionKeyHandler skh = (SelectionKeyHandler) key.attachment();        lastTaskType = "ModifyKey";        lastTaskClass = skh.getClass().getName();        lastTaskHash = System.identityHashCode(skh);        lastTaskToString = skh.toString();        skh.modifyKey(key);        lastTaskType = "ModifyKey Complete";      }    }  }  /**   * DESCRIBE THE METHOD   */  protected void doInvocations2() {    Runnable run = getInvocation();    while (run != null) {      try {        lastTaskType = "Invocation";        lastTaskClass = run.getClass().getName();        lastTaskToString = run.toString();        lastTaskHash = System.identityHashCode(run);        long startTime = timeSource.currentTimeMillis();        run.run();        int time = (int) (timeSource.currentTimeMillis() - startTime);        addStat(run.getClass().getName(), time);        lastTaskType = "Invocation Complete";      } catch (Exception e) {        if (logger.level <= Logger.SEVERE) {          logger.logException(            "Invoking runnable caused exception " + e + " - continuing", e);        }      }      run = getInvocation();    }    SelectionKey key = getModifyKey();    while (key != null) {      if (key.isValid() && (key.attachment() != null)) {        SelectionKeyHandler skh = (SelectionKeyHandler) key.attachment();        lastTaskType = "ModifyKey";        lastTaskClass = skh.getClass().getName();        lastTaskHash = System.identityHashCode(skh);        lastTaskToString = skh.toString();        skh.modifyKey(key);        lastTaskType = "ModifyKey Complete";      }      key = getModifyKey();    }  }  /**   * A statistic as to how long user code is taking to process a paritcular   * message.   *   * @version $Id: pretty.settings 2305 2005-03-11 20:22:33Z jeffh $   * @author Jeff Hoye   */  class Stat {    int num = 0;    String name = null;    long totalTime = 0;    long maxTime = 0;    /**     * Constructor for Stat.     *     * @param name DESCRIBE THE PARAMETER     */    public Stat(String name) {      this.name = name;    }    /**     * Adds a feature to the Time attribute of the Stat object     *     * @param t The feature to be added to the Time attribute     */    public void addTime(long t) {      num++;      totalTime += t;      if (t > maxTime) {        maxTime = t;      }    }    /**     * DESCRIBE THE METHOD     *     * @return DESCRIBE THE RETURN VALUE     */    public String toString() {      long avgTime = totalTime / num;      return name + "\t maxTime:" + maxTime + "\t avgTime:" + avgTime + "\t numInstances:" + num + "\t totalTime:" + totalTime;    }  }}

⌨️ 快捷键说明

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