|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjist.swans.route.RouteZrpZdp
public class RouteZrpZdp
Zone Routing Protocol: Zone Discovery (sub)Protocol - an alternate IARP.
Nested Class Summary | |
---|---|
private static class |
RouteZrpZdp.LinkEntry
ZDP link entry. |
static class |
RouteZrpZdp.MessageZdp
ZDP (Zone Discovery Protocol) packet. |
private class |
RouteZrpZdp.TimerRefresh
Link refresh timer. |
private class |
RouteZrpZdp.TimerSend
Delayed outgoing send timer. |
Field Summary | |
---|---|
private byte |
compress
compression mode. |
static byte |
COMPRESS_INFINITE
compression constant: inifinite. |
static byte |
COMPRESS_NODE
compression constant: aggregate across single node. |
static byte |
COMPRESS_NONE
compression constant: no aggregation. |
static byte |
COMPRESS_ZONE
compression constant: aggregate across zone. |
static byte |
COMPRESS_ZONE_REVERSE
compression constant: aggregate across zone. |
private java.lang.ref.SoftReference |
computedRoutes
intra-zone routes: Hashtable dst - RouteEntry. |
long |
DELAY
zdp delay time. |
long |
FLUSH
zdp flush time. |
long |
JITTER
zdp update jitter. |
private java.util.Hashtable |
links
zone link state: NetAddress - LinkEntry. |
private java.util.Hashtable |
linksSrcDst
zone link state: src - Vector(dst). |
static org.apache.log4j.Logger |
logZDP
logger for ZDP events. |
private RouteZrpZdp.TimerRefresh |
refreshTimer
refresh/flush timer callback. |
private boolean |
sendScheduled
whether the send timer is active. |
private RouteZrpZdp.TimerSend |
sendTimer
send timer callback. |
private short |
seq
zdp link destination-sequence identifier. |
private RouteZrp |
zrp
reference to zrp routing framework. |
Constructor Summary | |
---|---|
RouteZrpZdp(RouteZrp zrp)
Create a new "default" IARP (ZRP sub-protocol) handler. |
|
RouteZrpZdp(RouteZrp zrp,
java.lang.String config)
Create a new "default" IARP (ZRP sub-protocol) handler. |
Method Summary | |
---|---|
private void |
addLinkSrcDst(NetAddress src,
NetAddress dst)
Add link from source-destination hashes. |
private void |
clearRoutes()
Flush the computed routes. |
java.util.Set |
computeCoverage(NetAddress src,
int depth)
Find the set of nodes within a given distance of source. |
private java.util.Map |
computeDistancesToSource()
Compute distances FROM every node TO source. |
private java.util.Hashtable |
computeRoutes(NetAddress src)
(Re-)Compute a minimum hop route for each node in zone using current link state information. |
private void |
flushLinks()
Remove any links that have flush bit set, and set flush bit on others (clock algorithm). |
private RouteZrpZdp.LinkEntry |
getLink(Link link)
Return link entry. |
private java.util.Collection |
getLinkDsts(NetAddress src)
Get known link destinations for given source address. |
private java.util.Collection |
getLinks()
Return link entries collection. |
java.util.Enumeration |
getLinks(NetAddress src)
Return iterator of links from given source address. |
private java.util.Collection |
getLinkSrcs()
Get known link sources. |
int |
getNumLinks()
Return number of intra-zone links. |
int |
getNumRoutes()
Return number of intra-zone routes. |
java.util.Collection |
getPeripheral()
Return all peripheral nodes. |
NetAddress[] |
getRoute(NetAddress dst)
Return intra-zone route. |
private java.util.Hashtable |
getRoutes()
Return the intra-zone routes, computing them if necessary. |
boolean |
hasRoute(NetAddress dst)
Return whether node is within zone (if IARP has route to it). |
private short |
incLinkSeq()
Increment local link sequence identifier. |
private boolean |
isLinkUp(Link link)
Whether link entry exists. |
void |
linkinfo(Link link,
boolean drop)
Notify IARP of link state change. |
private void |
linkinfo(Link link,
short id,
boolean drop)
Process incoming link information. |
void |
receive(RouteInterface.Zrp.MessageIarp msg,
NetAddress from)
Process incoming IARP packet. |
private void |
removeLink(Link link,
java.util.Iterator it)
Remove link from data structures. |
private void |
removeLinkSrcDst(NetAddress src,
NetAddress dst)
Remove link from source-destination hashes. |
private boolean |
routesComputed()
Return whether routes have already been computed. |
private void |
send()
Transmit a zone-wide link state delta. |
void |
setCompress(byte compress)
Set packet compression mode. |
void |
showLinks()
Display link state. |
void |
showRoutes()
Display in-zone routing table. |
void |
start()
Start running protocol. |
private boolean |
updateLink(Link link,
short id,
boolean drop)
Update link information in data structures. |
private void |
updateLinkSrcDst(NetAddress src,
NetAddress dst,
boolean drop)
Add or remove link from source-destination hashes. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final org.apache.log4j.Logger logZDP
public final long JITTER
public final long DELAY
public final long FLUSH
public static final byte COMPRESS_NONE
public static final byte COMPRESS_NODE
public static final byte COMPRESS_ZONE
public static final byte COMPRESS_ZONE_REVERSE
public static final byte COMPRESS_INFINITE
private RouteZrp zrp
private short seq
private java.util.Hashtable links
private java.util.Hashtable linksSrcDst
private java.lang.ref.SoftReference computedRoutes
private boolean sendScheduled
private RouteZrpZdp.TimerSend sendTimer
private RouteZrpZdp.TimerRefresh refreshTimer
private byte compress
Constructor Detail |
---|
public RouteZrpZdp(RouteZrp zrp)
zrp
- object reference to zrp routing frameworkpublic RouteZrpZdp(RouteZrp zrp, java.lang.String config)
zrp
- object reference to zrp routing frameworkconfig
- configuration stringMethod Detail |
---|
public void setCompress(byte compress)
compress
- packet compression modeprivate void addLinkSrcDst(NetAddress src, NetAddress dst)
src
- link source addressdst
- link destination addressprivate void removeLinkSrcDst(NetAddress src, NetAddress dst)
src
- link source addressdst
- link destination addressprivate void updateLinkSrcDst(NetAddress src, NetAddress dst, boolean drop)
src
- link source addressdst
- link destination addressdrop
- whether to add or remove linkprivate java.util.Collection getLinkSrcs()
private java.util.Collection getLinkDsts(NetAddress src)
src
- link source address
private RouteZrpZdp.LinkEntry getLink(Link link)
link
- link source-destination pair
private boolean isLinkUp(Link link)
link
- link source-destination pair
private boolean updateLink(Link link, short id, boolean drop)
link
- source-destination pairid
- destination sequenced identifierdrop
- whether link failed
private void removeLink(Link link, java.util.Iterator it)
link
- link source-destination pairit
- active iterator of link entries, if anyprivate java.util.Collection getLinks()
private void flushLinks()
public void showLinks()
showLinks
in interface RouteInterface.Zrp.Iarp
private boolean routesComputed()
private java.util.Hashtable getRoutes()
private void clearRoutes()
private java.util.Hashtable computeRoutes(NetAddress src)
src
- local address, center of zone
public void showRoutes()
showRoutes
in interface RouteInterface.Zrp.Iarp
private java.util.Map computeDistancesToSource()
private short incLinkSeq()
private void linkinfo(Link link, short id, boolean drop)
link
- link source-destination pairid
- destination sequenced identifierdrop
- whether link failedprivate void send()
public void receive(RouteInterface.Zrp.MessageIarp msg, NetAddress from)
receive
in interface RouteInterface.Zrp.Iarp
msg
- iarp packetfrom
- source of iarp packetpublic void linkinfo(Link link, boolean drop)
linkinfo
in interface RouteInterface.Zrp.Iarp
link
- link that has changeddrop
- whether link has failed (or been created)public int getNumLinks()
getNumLinks
in interface RouteInterface.Zrp.Iarp
public java.util.Enumeration getLinks(NetAddress src)
getLinks
in interface RouteInterface.Zrp.Iarp
src
- link source address
public boolean hasRoute(NetAddress dst)
hasRoute
in interface RouteInterface.Zrp.Iarp
dst
- destination node
public NetAddress[] getRoute(NetAddress dst)
getRoute
in interface RouteInterface.Zrp.Iarp
dst
- destination node
public int getNumRoutes()
getNumRoutes
in interface RouteInterface.Zrp.Iarp
public java.util.Collection getPeripheral()
getPeripheral
in interface RouteInterface.Zrp.Iarp
public java.util.Set computeCoverage(NetAddress src, int depth)
computeCoverage
in interface RouteInterface.Zrp.Iarp
src
- source nodedepth
- radius
public void start()
start
in interface Protocol
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |