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

📄 ringmessage.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.p2p.multiring.messaging;import java.io.IOException;import java.util.Hashtable;import rice.p2p.commonapi.*;import rice.p2p.commonapi.rawserialization.*;import rice.p2p.multiring.*;import rice.p2p.scribe.*;import rice.p2p.util.JavaSerializedMessage;/** * @(#) RingMessage.java This class the abstraction of a message used internally * by the multiring hierarchy. * * @version $Id: RingMessage.java 3274 2006-05-15 16:17:47Z jeffh $ * @author Alan Mislove */public class RingMessage implements ScribeContent {  /**   * The target of this ring message   */  protected RingId id;  /**   * The internal message to be sent   */  protected RawMessage message;  /**   * The name of the application which sent this message   */  protected String application;  // serialver for backward compatibility  private final static long serialVersionUID = -7097995807488121199L;  /**   * DESCRIBE THE FIELD   */  public final static short TYPE = 1;  /**   * Constructor which takes a unique integer Id   *   * @param id The unique id   * @param message DESCRIBE THE PARAMETER   * @param application DESCRIBE THE PARAMETER   *///  public RingMessage(RingId id, Message message, String application) {//    this(id, message instanceof RawMessage ? (RawMessage) message : new JavaSerializedMessage(message), application);//  }//  public RingMessage(RingId id, RawMessage message, String application) {    this.id = id;    this.message = message;    this.application = application;  }  /**   * TODO: This can probably be done more efficiently, IE, deserialize the   * message on getMessage(). Can do that later.   *   * @param buf   * @param ringEndpoint DESCRIBE THE PARAMETER   * @param endpoints DESCRIBE THE PARAMETER   * @exception IOException DESCRIBE THE EXCEPTION   * @throws IOException   */  public RingMessage(InputBuffer buf, Endpoint ringEndpoint, Hashtable endpoints) throws IOException {    id = new RingId(buf, ringEndpoint);    application = buf.readUTF();    // this code finds the proper deserializer    Endpoint endpoint = (Endpoint) endpoints.get(application);    if (endpoint == null) {      throw new IOException("Couldn't find application:" + application);    }    MessageDeserializer md = endpoint.getDeserializer();    short type = buf.readShort();    byte priority = buf.readByte();    // Jeff - 3/31/06 not sure if this is the correct decision, but I don't know how to get the sender//    NodeHandle sender = endpoint.readNodeHandle(buf);    Message m = md.deserialize(buf, type, priority, null);    if (type == 0) {      message = new JavaSerializedMessage(m);    } else {      message = (RawMessage) m;    }  }  /**   * Method which should return the priority level of this message. The messages   * can range in priority from 0 (highest priority) to Integer.MAX_VALUE   * (lowest) - when sending messages across the wire, the queue is sorted by   * message priority. If the queue reaches its limit, the lowest priority   * messages are discarded. Thus, applications which are very verbose should   * have LOW_PRIORITY or lower, and applications which are somewhat quiet are   * allowed to have MEDIUM_PRIORITY or possibly even HIGH_PRIORITY.   *   * @return This message's priority   */  public byte getPriority() {    return message.getPriority();  }  /**   * Method which returns this messages' id   *   * @return The id of this message   */  public RingId getId() {    return id;  }  /**   * Method which returns this messages' internal message   *   * @return The internal message of this message   */  public RawMessage getMessage() {    return message;  }  /**   * Method which returns this messages' applicaiton name   *   * @return The application name of this message   */  public String getApplication() {    return application;  }  /**   * Gets the Type attribute of the RingMessage object   *   * @return The Type value   */  public short getType() {    return TYPE;  }  /**   * DESCRIBE THE METHOD   *   * @param buf DESCRIBE THE PARAMETER   * @exception IOException DESCRIBE THE EXCEPTION   */  public void serialize(OutputBuffer buf) throws IOException {    id.serialize(buf);    buf.writeUTF(application);    buf.writeShort(message.getType());    buf.writeByte(message.getPriority());//    message.getSender().seria    message.serialize(buf);  }}

⌨️ 快捷键说明

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