ePOST API

rice.pastry.leafset
Class SimilarSet

java.lang.Object
  extended by java.util.Observable
      extended by rice.pastry.leafset.SimilarSet
All Implemented Interfaces:
java.io.Serializable, java.util.Observer, NodeHandleSet, NodeSetEventSource, NodeSetI

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

A set of nodes, ordered by numerical distance of their nodeId from the local nodeId

Version:
$Id: SimilarSet.java 2913 2006-01-11 19:52:58Z jeffh $
Author:
Andrew Ladd, Peter Druschel
See Also:
Serialized Form

Constructor Summary
SimilarSet(LeafSet leafSet, NodeHandle localNode, int size, boolean cw)
          Constructor.
 
Method Summary
 void addNodeSetListener(NodeSetListener listener)
           
 void addObserver(java.util.Observer o)
          Deprecated. use addNodeSetListener
 void deleteObserver(java.util.Observer o)
          Deprecated. use removeNodeSetListener
 NodeHandle get(int i)
          Gets the ith element in the set.
 NodeHandle get(NodeHandle nh)
           
 NodeHandle get(NodeId nid)
          Finds the NodeHandle associated with the NodeId.
 java.util.Collection getCollection()
          This is thread safe, in that it won't throw an error if not properly synchronized.
 NodeHandle getHandle(Id id)
          Finds the NodeHandle associated with the NodeId.
 NodeHandle getHandle(int i)
          Gets the ith element in the set.
 int getIndex(NodeHandle nh)
           
 int getIndex(NodeId nid)
          Gets the index of the element with the given node id.
 int getIndexHandle(Id id)
          Gets the index of the element with the given node id.
 boolean member(NodeHandle nid)
          Verifies if the set contains this particular id.
 boolean member(NodeId nid)
           
 boolean memberHandle(Id id)
          Verifies if the set contains this particular id.
 int mostSimilar(Id nid)
          Impl that doesn't produce garbage Numerically closest node to a given a node.
 boolean put(NodeHandle handle)
          Puts a NodeHandle into the set.
 boolean putHandle(NodeHandle handle)
          Puts a NodeHandle into the set.
protected  NodeHandle remove(int i)
          Removes a node id and its handle from the set.
 NodeHandle remove(NodeHandle nh)
          Removes a node id and its handle from the set.
 NodeHandle remove(NodeId nid)
          Removes a node id and its handle from the set.
 NodeHandle removeHandle(Id id)
          Removes a node id and its handle from the set.
 void removeNodeSetListener(NodeSetListener listener)
           
 int size()
          Gets the current size of this set.
protected  void swap(int i, int j)
          swap two elements
 boolean test(NodeHandle handle)
          Test if a NodeHandle belongs into 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
clearChanged, countObservers, 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

SimilarSet

public SimilarSet(LeafSet leafSet,
                  NodeHandle localNode,
                  int size,
                  boolean cw)
Constructor.

Parameters:
localNode - the local node
size - the size of the similar set.
cw - true if this is the clockwise leafset half
Method Detail

swap

protected void swap(int i,
                    int j)
swap two elements

Parameters:
i - the index of the first element
j - the indes of the second element

test

public boolean test(NodeHandle handle)
Test if a NodeHandle belongs into the set. Predicts if a put would succeed.

Parameters:
handle - the handle to test.
Returns:
true if a put would succeed, false otherwise.

put

public boolean put(NodeHandle handle)
Puts a NodeHandle into the set.

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

addObserver

public void addObserver(java.util.Observer o)
Deprecated. use addNodeSetListener

Generates too many objects to use this interface

Overrides:
addObserver in class java.util.Observable

deleteObserver

public void deleteObserver(java.util.Observer o)
Deprecated. use removeNodeSetListener

Generates too many objects to use this interface

Overrides:
deleteObserver in class java.util.Observable

addNodeSetListener

public void addNodeSetListener(NodeSetListener listener)
Specified by:
addNodeSetListener in interface NodeSetEventSource

removeNodeSetListener

public void removeNodeSetListener(NodeSetListener listener)
Specified by:
removeNodeSetListener in interface NodeSetEventSource

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)

get

public NodeHandle get(NodeId nid)
Finds the NodeHandle associated with the NodeId.

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

get

public NodeHandle get(NodeHandle nh)

get

public NodeHandle get(int i)
Gets the ith element in the set.

Specified by:
get in interface NodeSetI
Parameters:
i - an index. i == -1 refers to the local node
Returns:
the handle associated with that id or null if no such handle is found.

member

public boolean member(NodeHandle nid)
Verifies if the set contains this particular id.

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

member

public boolean member(NodeId nid)

remove

public NodeHandle remove(NodeId nid)
Removes a node id and its handle from the set.

Parameters:
nid - the node to remove.
Returns:
the node handle removed or null if nothing.

remove

public NodeHandle remove(NodeHandle nh)
Description copied from interface: NodeSetI
Removes a node id and its handle from the set.

Specified by:
remove in interface NodeSetI
Returns:
the node handle removed or null if nothing.

remove

protected NodeHandle remove(int i)
Removes a node id and its handle from the set.

Parameters:
i - the index of the node to remove.
Returns:
the node handle removed or null if nothing.

getIndex

public int getIndex(NodeId nid)
Gets the index of the element with the given node id.

Specified by:
getIndex in interface NodeSetI
Parameters:
nid - the node id.
Returns:
the index or -1 if the element does not exist.

getIndex

public int getIndex(NodeHandle nh)
Specified by:
getIndex in interface NodeSetI

size

public int size()
Gets the current size of this set.

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

mostSimilar

public int mostSimilar(Id nid)
Impl that doesn't produce garbage Numerically closest node to a given a node. Returns -1 if the local nodeId is the most similar and returns an index otherwise.

Parameters:
nid - a node id.
Returns:
-1 if the local nodeId is most similar, else the index of the most similar node.

putHandle

public boolean putHandle(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 NodeHandle getHandle(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 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(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 NodeHandle removeHandle(Id id)
Removes a node id and its handle from the set.

Specified by:
removeHandle in interface NodeHandleSet
Parameters:
nid - the node to remove.
Returns:
the node handle removed or null if nothing.

getIndexHandle

public int getIndexHandle(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.
Throws:
java.util.NoSuchElementException

getCollection

public java.util.Collection getCollection()
This is thread safe, in that it won't throw an error if not properly synchronized.

Returns:

ePOST API

Copyright © 2001-2005 - Rice Pastry.