Rice Pastry API

rice.pastry.routing
Class RouteSet

java.lang.Object
  |
  +--java.util.Observable
        |
        +--rice.pastry.routing.RouteSet
All Implemented Interfaces:
NodeHandleSet, NodeSetI, java.util.Observer, java.io.Serializable

public class RouteSet
extends java.util.Observable
implements NodeSetI, java.io.Serializable, java.util.Observer

A set of nodes typically stored in the routing table. The set contains a bounded number of the closest node handles. Since proximity value can change unpredictably, we don't keep the set in sorted order.

Version:
$Id: RouteSet.java,v 1.20 2003/05/09 22:47:47 amislove Exp $
Author:
Andrew Ladd, Peter Druschel
See Also:
Serialized Form

Constructor Summary
RouteSet(int maxSize)
          Constructor.
 
Method Summary
 rice.pastry.NodeHandle closestNode()
          Return the closest live node in the set.
 rice.pastry.NodeHandle get(int i)
          Returns the node in the ith position in the set.
 rice.pastry.NodeHandle get(rice.pastry.NodeId nid)
          Returns the node handle with the matching node id or null if none exists.
 rice.p2p.commonapi.NodeHandle getHandle(rice.p2p.commonapi.Id id)
          Finds the NodeHandle associated with the NodeId.
 rice.p2p.commonapi.NodeHandle getHandle(int i)
          Gets the ith element in the set.
 int getIndex(rice.pastry.NodeId nid)
          Get the index of the node id.
 int getIndexHandle(rice.p2p.commonapi.Id id)
          Gets the index of the element with the given node id.
 boolean member(rice.pastry.NodeId nid)
          Membership test.
 boolean memberHandle(rice.p2p.commonapi.Id id)
          Verifies if the set contains this particular id.
 void pingAllNew()
          Pings all new nodes in the RouteSet.
 boolean put(rice.pastry.NodeHandle handle)
          Puts a node into the set.
 boolean putHandle(rice.p2p.commonapi.NodeHandle handle)
          Puts a NodeHandle into the set.
 rice.pastry.NodeHandle remove(rice.pastry.NodeId nid)
          Removes a node from a set.
 rice.p2p.commonapi.NodeHandle removeHandle(rice.p2p.commonapi.Id id)
          Removes a node id and its handle from the set.
 int size()
          Return the current size of the set.
 void update(java.util.Observable o, java.lang.Object arg)
          Is called by the Observer pattern whenever the liveness or proximity of a registered node handle is changed.
 
Methods inherited from class java.util.Observable
addObserver, clearChanged, countObservers, deleteObserver, deleteObservers, hasChanged, notifyObservers, notifyObservers, setChanged
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RouteSet

public RouteSet(int maxSize)
Constructor.

Parameters:
maxSize - the maximum number of nodes that fit in this set.
Method Detail

put

public boolean put(rice.pastry.NodeHandle handle)
Puts a node into the set. The insertion succeeds either if the set is below is maximal size or if the handle is closer than the most distant member in the set.

Specified by:
put in interface NodeSetI
Parameters:
handle - the handle to put.
Returns:
true if the put succeeded, false otherwise.

update

public void update(java.util.Observable o,
                   java.lang.Object arg)
Is called by the Observer pattern whenever the liveness or proximity of a registered node handle is changed.

Specified by:
update in interface java.util.Observer
Parameters:
o - The node handle
arg - the event type (PROXIMITY_CHANGE, DECLARED_LIVE, DECLARED_DEAD)

remove

public rice.pastry.NodeHandle remove(rice.pastry.NodeId nid)
Removes a node from a set.

Specified by:
remove in interface NodeSetI
Parameters:
nid - the node id to remove.
Returns:
the removed handle or null.

member

public boolean member(rice.pastry.NodeId nid)
Membership test.

Specified by:
member in interface NodeSetI
Parameters:
nid - the node id to membership of.
Returns:
true if it is a member, false otherwise.

size

public int size()
Return the current size of the set.

Specified by:
size in interface NodeSetI
Returns:
the size.

pingAllNew

public void pingAllNew()
Pings all new nodes in the RouteSet. No longer- Called from RouteMaintenance.


closestNode

public rice.pastry.NodeHandle closestNode()
Return the closest live node in the set.

Returns:
the closest node, or null if no live node exists in the set.

get

public rice.pastry.NodeHandle get(int i)
Returns the node in the ith position in the set.

Specified by:
get in interface NodeSetI
Parameters:
i - an index.
Returns:
the ith node.

get

public rice.pastry.NodeHandle get(rice.pastry.NodeId nid)
Returns the node handle with the matching node id or null if none exists.

Specified by:
get in interface NodeSetI
Parameters:
nid - the node id.
Returns:
the node handle.

getIndex

public int getIndex(rice.pastry.NodeId nid)
Get the index of the node id.

Specified by:
getIndex in interface NodeSetI
Parameters:
nid - the node id.
Returns:
the node.

putHandle

public boolean putHandle(rice.p2p.commonapi.NodeHandle handle)
Puts a NodeHandle into the set.

Specified by:
putHandle in interface NodeHandleSet
Parameters:
handle - the handle to put.
Returns:
true if the put succeeded, false otherwise.

getHandle

public rice.p2p.commonapi.NodeHandle getHandle(rice.p2p.commonapi.Id id)
Finds the NodeHandle associated with the NodeId.

Specified by:
getHandle in interface NodeHandleSet
Parameters:
id - a node id.
Returns:
the handle associated with that id or null if no such handle is found.

getHandle

public rice.p2p.commonapi.NodeHandle getHandle(int i)
Gets the ith element in the set.

Specified by:
getHandle in interface NodeHandleSet
Parameters:
i - an index.
Returns:
the handle associated with that id or null if no such handle is found.

memberHandle

public boolean memberHandle(rice.p2p.commonapi.Id id)
Verifies if the set contains this particular id.

Specified by:
memberHandle in interface NodeHandleSet
Parameters:
id - a node id.
Returns:
true if that node id is in the set, false otherwise.

removeHandle

public rice.p2p.commonapi.NodeHandle removeHandle(rice.p2p.commonapi.Id id)
Removes a node id and its handle from the set.

Specified by:
removeHandle in interface NodeHandleSet
Returns:
the node handle removed or null if nothing.

getIndexHandle

public int getIndexHandle(rice.p2p.commonapi.Id id)
                   throws java.util.NoSuchElementException
Gets the index of the element with the given node id.

Specified by:
getIndexHandle in interface NodeHandleSet
Parameters:
id - the id.
Returns:
the index or throws a NoSuchElementException.
java.util.NoSuchElementException

Rice Pastry API

Copyright © 2001 - Rice Pastry.


Imprint-Dataprotection