|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjist.swans.route.RouteDsr
public class RouteDsr
An implementation of the Dynamic Source Routing protocol.
Nested Class Summary | |
---|---|
private class |
RouteDsr.MaintenanceBufferEntry
Entries in the Maintenance Buffer correspond to messages that have been sent and are currently waiting passive acknowledgement. |
private class |
RouteDsr.RouteReplyTableEntry
An entry in the Gratuitous Route Reply Table. |
private class |
RouteDsr.RouteRequestTableEntry
An entry in the Route Request Table. |
Nested classes/interfaces inherited from interface jist.swans.route.RouteInterface.Dsr |
---|
RouteInterface.Dsr.BufferedPacket |
Nested classes/interfaces inherited from interface jist.swans.route.RouteInterface |
---|
RouteInterface.Aodv, RouteInterface.Dsr, RouteInterface.Zrp |
Field Summary | |
---|---|
private java.util.HashSet |
activeAcks
Set of Short s indicating outstanding acknowledgement requests. |
private java.util.HashSet |
activeRequests
Set of NetAddress es of destinations of currently active
Route Requests. |
static long |
BROADCAST_JITTER
The maximum amount of jitter before sending a packet. |
static long |
GRAT_REPLY_HOLDOFF
The minimum time between sending gratuitous Route Replies. |
private NetAddress |
localAddr
The IP address of this node. |
private static org.apache.log4j.Logger |
log
DSR logger. |
static long |
MAINT_PERIOD
The timeout before retransmitting a packet using network-level acknowledgements. |
private java.util.Hashtable |
maintenanceBuffer
Maintenance Buffer. |
static int |
MAX_MAINT_REXMT
The maximum number of times a packet will be retransmitted using network-level acknowledgements. |
static long |
MAX_REQUEST_PERIOD
The maximum timeout before retransmitting a Route Request. |
static int |
MAX_REQUEST_TABLE_IDS
The maximum number of ID values to store in a single Route Request Table entry. |
static int |
MAX_SALVAGE_COUNT
The maximum number of times a packet can be salvaged. |
static byte |
MAX_TTL
The maximum Time-To-Live for a DSR packet. |
private NetInterface |
netEntity
The interface to the network layer. |
private short |
nextAckId
The next ID number to use when sending an acknowledgement request. |
private short |
nextRequestId
The next ID number to use when sending a route request. |
static long |
PASSIVE_ACK_TIMEOUT
The timeout before retransmitting a packet using passive acknowledgements. |
static long |
REQUEST_PERIOD
The initial timeout before retransmitting a Route Request. |
private java.util.Hashtable |
routeCache
The route cache maps NetAddress es (destinations) to
LinkedList s of arrays of NetAddress es (routes). |
private java.util.HashSet |
routeReplyTable
The Gratuitous Route Reply Table is a set of RouteReplyTableEntry s indicating which nodes have recently
triggered gratuitous Route Replies because of automatic route shortening. |
private java.util.Hashtable |
routeRequestTable
The route request table maps NetAddress es(destinations) to
RouteRequestTableEntry s, which are structures containing various
information used when performing Route Discovery. |
private RouteInterface.Dsr |
self
The proxy interface for this object. |
static long |
SEND_BUFFER_TIMEOUT
The maximum amount of time a packet can remain in the Send Buffer. |
private java.util.LinkedList |
sendBuffer
List of BufferedPacket s waiting to be sent. |
static int |
TRY_PASSIVE_ACKS
The number of times to try retransmission using passive ackknowledgments. |
Constructor Summary | |
---|---|
RouteDsr(NetAddress localAddr)
Creates a new RouteDsr object. |
Method Summary | |
---|---|
private void |
AddRequestId(NetAddress src,
short id)
Enters a new Route Request ID number into the Route Request Table. |
void |
AddRouteReplyEntry(NetAddress originator,
NetAddress lastHop)
Adds a new entry to the Gratuitous Route Reply Table. |
private void |
CheckBuffer(NetAddress dest)
Searches the Send Buffer for any packets intended for the given destination and sends any that are found. |
private void |
CheckForPassiveAck(RouteDsrMsg msg,
NetAddress src,
NetAddress dest,
short protocol,
short id,
short fragOffset)
Checks the given message to see if it matches any of the messages in the Maintenance Buffer for which we are currently awaiting passive passive acknowledgements. |
void |
DeleteBuffer(RouteInterface.Dsr.BufferedPacket msg)
Removes the given BufferedPacket from the Send Buffer. |
void |
DeleteRouteReplyEntry(NetAddress originator,
NetAddress lastHop)
Deletes an entry from the Gratuitous Route Reply Table. |
void |
DiscoverRoute(NetAddress dest,
short requestId)
Initiates a Route Discovery for the given address. |
private void |
ForwardPacket(RouteDsrMsg msg,
RouteDsrMsg.OptionSourceRoute opt,
byte[] optBuf,
NetAddress src,
NetAddress dest,
short protocol,
byte priority,
byte ttl,
short id,
short fragOffset)
Forwards a DSR packet containing a Source Route option to the next intended recipient. |
private void |
ForwardRequest(RouteDsrMsg msg,
RouteDsrMsg.OptionRouteRequest opt,
byte[] optBuf,
NetAddress src,
NetAddress dst,
short protocol,
byte priority,
byte ttl,
short id,
short fragOffset)
Propagates a Route Request to all nodes within range. |
private NetAddress[] |
GetCachedRoute(NetAddress dest)
Retrieves a route from the Route Cache from here to the given node. |
RouteInterface.Dsr |
getProxy()
Gets the proxy interface for this object. |
private RouteDsrMsg.OptionSourceRoute |
GetSourceRoute(RouteDsrMsg msg)
Retrieves the Source Route option from the given DSR message, or null if none exists. |
private void |
HandleAck(RouteDsrMsg.OptionAck opt,
NetAddress dest)
Processes an incoming Acknowledgement option. |
private void |
HandleAckRequest(RouteDsrMsg msg,
RouteDsrMsg.OptionAckRequest opt,
NetAddress src,
NetAddress dst,
RouteDsrMsg.OptionSourceRoute sourceRoute)
Processes an incoming Acknowledgement Request option. |
private void |
HandleError(RouteDsrMsg.OptionRouteError opt)
Processes an incoming Route Error option. |
private void |
HandleReply(RouteDsrMsg msg,
RouteDsrMsg.OptionRouteReply reply)
Processes an incoming Route Reply. |
private void |
HandleRequest(RouteDsrMsg msg,
RouteDsrMsg.OptionRouteRequest opt,
byte[] optBuf,
NetAddress src,
NetAddress dst,
short protocol,
byte priority,
byte ttl,
short id,
short fragOffset)
Processes an incoming Route Request option. |
private void |
InitBuffer()
Initializes the Send Buffer. |
private void |
InitMaintenanceBuffer()
Initializes the Maintenance Buffer. |
private void |
InitRequestTable()
Initializes the Route Request Table. |
private void |
InitRouteCache()
Initializes the Route Cache. |
private void |
InitRouteReplyTable()
Initializes the Gratuitous Route Reply Table. |
void |
InsertBuffer(NetMessage.Ip msg)
Inserts a new packet into the Send Buffer, annotating it with the current system time. |
void |
InsertRouteCache(NetAddress dest,
NetAddress[] route)
Inserts a new route into the Route Cache. |
private NetAddress |
NextRecipient(RouteDsrMsg.OptionSourceRoute sourceRoute,
NetAddress dst)
Determines the intended next recipient of a packet with the given source route option and IP destination. |
void |
peek(NetMessage msg,
MacAddress lastHop)
If the given message uses the DSR protocol, the DSR header is examined to see if any actions need to be performed on this packet (such as forwarding it). |
private void |
PerformRouteShortening(RouteDsrMsg.OptionSourceRoute sourceRoute,
NetAddress src,
NetAddress dest)
Checks to see if we know a shorter route from src to
dest than the one given in sourceRoute . |
private NetAddress |
PrevRecipient(RouteDsrMsg.OptionSourceRoute sourceRoute,
NetAddress src)
Determines the previous recipient of a packet with the given source route option and IP source. |
private void |
ProcessOptions(RouteDsrMsg msg,
NetAddress src,
NetAddress dst,
short protocol,
byte priority,
byte ttl,
short id,
short fragOffset)
Handles each of the options in a given DSR header. |
void |
receive(Message msg,
NetAddress src,
MacAddress lastHop,
byte macId,
NetAddress dst,
byte priority,
byte ttl)
Receives a message from the network. |
private void |
RemoveCachedLink(NetAddress addr1,
NetAddress addr2)
Removes every path in the cache that uses a direct link between addr1 and addr2 . |
private boolean |
RouteReplyEntryExists(NetAddress originator,
NetAddress lastHop)
Determines whether there is an entry in the Gratuitous Route Reply Table corresponding to the given addresses. |
private boolean |
SeenRequestLately(NetAddress src,
short id)
Checks if we have recently seen the Route Request with the given id coming from the given source. |
void |
send(NetMessage msg)
Sends the given message. |
private void |
SendGratuitousRouteReply(NetAddress src,
RouteDsrMsg.OptionSourceRoute sourceRoute,
NetAddress dest,
int routeLength)
Sends a gratuitous Route Reply to src . |
private void |
SendRouteError(RouteDsrMsg msg,
NetAddress src,
NetAddress dest)
Sends a DSR message with a Route Error option to src indicating
that the next hop in the intended route cannot be reached from this node. |
private void |
SendRouteReply(RouteDsrMsg.OptionRouteRequest opt,
NetAddress src)
Sends a Route Reply to a node that recently sent us a Route Request. |
private void |
SendWithRoute(NetMessage.Ip msg,
NetAddress[] route)
Sends the given message along the given route. |
void |
setNetEntity(NetInterface netEntity)
Sets the interface to the network layer. |
private void |
Transmit(NetMessage.Ip msg)
Sends the given message and looks for acknowledgement. |
void |
TransmitWithNetworkAck(NetMessage.Ip msg,
java.lang.Short ackId,
long timeout,
int numRetransmits)
Sends the given message. |
void |
TransmitWithPassiveAck(NetMessage.Ip msg,
int numRetransmits)
Sends the given message and waits for a passive acknowledgement. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final long BROADCAST_JITTER
public static final long SEND_BUFFER_TIMEOUT
public static final long REQUEST_PERIOD
public static final long MAX_REQUEST_PERIOD
public static final int MAX_MAINT_REXMT
public static final long MAINT_PERIOD
public static final long GRAT_REPLY_HOLDOFF
public static final long PASSIVE_ACK_TIMEOUT
public static final int TRY_PASSIVE_ACKS
public static final int MAX_REQUEST_TABLE_IDS
public static final byte MAX_TTL
public static final int MAX_SALVAGE_COUNT
private static org.apache.log4j.Logger log
private java.util.HashSet routeReplyTable
RouteReplyTableEntry
s indicating which nodes have recently
triggered gratuitous Route Replies because of automatic route shortening.
private java.util.Hashtable maintenanceBuffer
MaintenanceBufferEntry
s to Integer
s
representing the Segments Left field of the Source Route option of the
corresponding message.
private NetInterface netEntity
private NetAddress localAddr
private java.util.Hashtable routeCache
NetAddress
es (destinations) to
LinkedList
s of arrays of NetAddress
es (routes).
Right now the route cache has no sophisticated timeout or replacement
policies.
private java.util.LinkedList sendBuffer
BufferedPacket
s waiting to be sent.
private java.util.Hashtable routeRequestTable
NetAddress
es(destinations) to
RouteRequestTableEntry
s, which are structures containing various
information used when performing Route Discovery.
private short nextRequestId
private short nextAckId
private java.util.HashSet activeRequests
NetAddress
es of destinations of currently active
Route Requests.
private java.util.HashSet activeAcks
Short
s indicating outstanding acknowledgement requests.
private RouteInterface.Dsr self
Constructor Detail |
---|
public RouteDsr(NetAddress localAddr)
localAddr
- local node addressMethod Detail |
---|
public void setNetEntity(NetInterface netEntity)
netEntity
- the interface to the network layerpublic RouteInterface.Dsr getProxy()
RouteInterface.Dsr
interface for this objectprivate void SendRouteReply(RouteDsrMsg.OptionRouteRequest opt, NetAddress src)
opt
- the Route Request optionsrc
- the originator of the Route Requestprivate void ForwardRequest(RouteDsrMsg msg, RouteDsrMsg.OptionRouteRequest opt, byte[] optBuf, NetAddress src, NetAddress dst, short protocol, byte priority, byte ttl, short id, short fragOffset)
msg
- the message containing the Route Requestopt
- the Route Request optionoptBuf
- the bytes of the Route Request optionsrc
- the originator of the Route Requestdst
- the destination of the Route Request (usually broadcast)protocol
- the IP protocol of the messagepriority
- the IP priority of the messagettl
- the IP time to live of the messageid
- the IP identification of the messagefragOffset
- the IP fragmentation offset of the messageprivate void HandleRequest(RouteDsrMsg msg, RouteDsrMsg.OptionRouteRequest opt, byte[] optBuf, NetAddress src, NetAddress dst, short protocol, byte priority, byte ttl, short id, short fragOffset)
msg
- the RouteDsrMsg
containing the requestopt
- the Route Request optionoptBuf
- the bytes of the Route Request optionsrc
- the address of the originator of the Route Requestdst
- the destination address of this request (usually broadcast)protocol
- the IP protocol of this Route Request (usually DSR)priority
- the IP priority of this Route Requestttl
- the IP time to live of this Route Requestid
- the IP identification of this Route RequestfragOffset
- the IP fragmentation offset of this Route Requestprivate void HandleReply(RouteDsrMsg msg, RouteDsrMsg.OptionRouteReply reply)
msg
- the RouteDsrMsg
containing the Route Replyreply
- the Route Reply optionprivate NetAddress NextRecipient(RouteDsrMsg.OptionSourceRoute sourceRoute, NetAddress dst)
sourceRoute
- the Source Route option (or null
if none)dst
- the destination IP address
null
can be returned.private NetAddress PrevRecipient(RouteDsrMsg.OptionSourceRoute sourceRoute, NetAddress src)
sourceRoute
- the Source Route option (or null
if none)src
- the source IP address
null
can be
returned.private void ForwardPacket(RouteDsrMsg msg, RouteDsrMsg.OptionSourceRoute opt, byte[] optBuf, NetAddress src, NetAddress dest, short protocol, byte priority, byte ttl, short id, short fragOffset)
msg
- the RouteDsrMsg
to be forwardedopt
- the Source Route optionoptBuf
- the bytes of the Source Route optionsrc
- the address of the originator of this packetdest
- the address of the ultimate destination of this packetprotocol
- the IP protocol of this packet (usually DSR)priority
- the IP priority of this packetttl
- the IP time to live of this packetid
- the IP identification of this packetfragOffset
- the IP fragmentation offset of this packetprivate void PerformRouteShortening(RouteDsrMsg.OptionSourceRoute sourceRoute, NetAddress src, NetAddress dest)
src
to
dest
than the one given in sourceRoute
.
If this is the case, we send a gratuitous Route Reply to src
letting him know of the shorter route.
sourceRoute
- the route that can potentially be shortenedsrc
- the originator of the Source Routedest
- the destination of the Source Routeprivate void SendGratuitousRouteReply(NetAddress src, RouteDsrMsg.OptionSourceRoute sourceRoute, NetAddress dest, int routeLength)
src
. That is,
src
hasn't sent out a Route Request, but we happen to know
a shorter route than the one he's using, so we're letting him know.
src
- the originator of the shortened Source RoutesourceRoute
- the Source Route we know how to shortendest
- the destination of the shortened Source RouterouteLength
- the length of the new (shortened) Source Routeprivate void HandleAckRequest(RouteDsrMsg msg, RouteDsrMsg.OptionAckRequest opt, NetAddress src, NetAddress dst, RouteDsrMsg.OptionSourceRoute sourceRoute)
msg
- the RouteDsrMsg
containing the
Acknowledgement Requestopt
- the Acknowledgement Request optionsrc
- the originator of the Acknowledgement Requestdst
- the destination of the Acknowledgement RequestsourceRoute
- the Source Route option that came in the same message as
the Acknowledgement Request. This parameter can be null
if
there was no Source Route option.private void HandleAck(RouteDsrMsg.OptionAck opt, NetAddress dest)
opt
- the Acknowledgement optiondest
- the destination of the Acknowledgementprivate void HandleError(RouteDsrMsg.OptionRouteError opt)
opt
- the Route Error optionprivate void ProcessOptions(RouteDsrMsg msg, NetAddress src, NetAddress dst, short protocol, byte priority, byte ttl, short id, short fragOffset)
msg
- the message containing the DSR headersrc
- the IP source address of the messagedst
- the IP destination address of the messageprotocol
- the IP protocol of the messagepriority
- the IP priority of the messagettl
- the IP time to live of the messageid
- the IP identification of the messagefragOffset
- the IP fragmentation offset of the messagepublic void DiscoverRoute(NetAddress dest, short requestId)
DiscoverRoute
in interface RouteInterface.Dsr
dest
- the address to which we desire a routerequestId
- the ID number of the request to be performed.
DiscoverRoute
should always be invoked with a unique
value in this parameter.private void InitRouteCache()
public void InsertRouteCache(NetAddress dest, NetAddress[] route)
dest
- the destination of the route to be addedroute
- the sequence of nodes from here to dest
. Neither
the IP address of this node nor of the dest
node should be
included in the route
array.private void RemoveCachedLink(NetAddress addr1, NetAddress addr2)
addr1
and addr2
.
addr1
- the first address in the linkaddr2
- the second address in the linkprivate NetAddress[] GetCachedRoute(NetAddress dest)
dest
- the address of the node to find a route to
dest
.
Neither the address of this node nor of dest
is included in
this array. If the Route Cache contains no route to dest
,
null
is returned. If the Route Cache contains more than one
route, the shortest is returned, with ties broken arbitrarily.private void InitBuffer()
public void InsertBuffer(NetMessage.Ip msg)
InsertBuffer
in interface RouteInterface.Dsr
msg
- the message to insert into the bufferpublic void DeleteBuffer(RouteInterface.Dsr.BufferedPacket msg)
BufferedPacket
from the Send Buffer.
DeleteBuffer
in interface RouteInterface.Dsr
msg
- the packet to remove from the Send Bufferprivate void CheckBuffer(NetAddress dest)
dest
.
dest
- the destination we now have a route toprivate void InitRouteReplyTable()
private boolean RouteReplyEntryExists(NetAddress originator, NetAddress lastHop)
originator
- the originator of the shortened Source RoutelastHop
- the most recent hop address of the shortened Source Route
public void AddRouteReplyEntry(NetAddress originator, NetAddress lastHop)
AddRouteReplyEntry
in interface RouteInterface.Dsr
originator
- the originator of the shortened Source RoutelastHop
- the most recent hop address of the shortened Source Routepublic void DeleteRouteReplyEntry(NetAddress originator, NetAddress lastHop)
DeleteRouteReplyEntry
in interface RouteInterface.Dsr
originator
- the originator of the shortened Source RoutelastHop
- the most recent hop address of the shortened Source Routeprivate void InitMaintenanceBuffer()
private void InitRequestTable()
private void AddRequestId(NetAddress src, short id)
src
- the address of the originator of the Route Requestid
- the ID number of the Route Requestprivate boolean SeenRequestLately(NetAddress src, short id)
MAX_REQUEST_TABLE_IDS
Route Requests coming
from src
.
src
- the source address of the Route Requestid
- the ID number of the Route Request
private void SendRouteError(RouteDsrMsg msg, NetAddress src, NetAddress dest)
src
indicating
that the next hop in the intended route cannot be reached from this node.
msg
- the RouteDsrMsg
containing the Source Route option
that contains the broken linksrc
- the originator of msg
dest
- the destination of msg
private RouteDsrMsg.OptionSourceRoute GetSourceRoute(RouteDsrMsg msg)
null
if none exists.
msg
- the DSR message
msg
, or null
if none exists.private void Transmit(NetMessage.Ip msg)
msg
- the message to send. The payload of this IP packet should be
a RouteDsrMsg
, and it should not already contain an
Acknowledgement Request.public void TransmitWithPassiveAck(NetMessage.Ip msg, int numRetransmits)
TRY_PASSIVE_ACKS
times.
TransmitWithPassiveAck
in interface RouteInterface.Dsr
msg
- the message to be sentnumRetransmits
- the number of times this message has already been
retransmitted. Callers should usually pass in zero for this.public void TransmitWithNetworkAck(NetMessage.Ip msg, java.lang.Short ackId, long timeout, int numRetransmits)
MAX_MAINT_REXMT
times.
TransmitWithNetworkAck
in interface RouteInterface.Dsr
msg
- the message to be sentackId
- the ID number of the Acknowledgement Requesttimeout
- the number of clock ticks to wait before
retransmitting the messagenumRetransmits
- the number of times this packet has already been
transmitted. Callers should normally pass in zero for this.private void CheckForPassiveAck(RouteDsrMsg msg, NetAddress src, NetAddress dest, short protocol, short id, short fragOffset)
msg
- the message that has been overheardsrc
- the IP source of the messagedest
- the IP destination of the messageprotocol
- the IP protocol of the messageid
- the IP id number of the messagefragOffset
- the IP fragmentation offset of the messageprivate void SendWithRoute(NetMessage.Ip msg, NetAddress[] route)
msg
- the RouteDsrMsg
to be sentroute
- the sequence of nodes to route the message alongpublic void peek(NetMessage msg, MacAddress lastHop)
peek
in interface RouteInterface
msg
- the message to examinelastHop
- the MAC address of the node that sent this messagepublic void send(NetMessage msg)
peek
.
send
in interface RouteInterface
msg
- the message to be sentpublic void receive(Message msg, NetAddress src, MacAddress lastHop, byte macId, NetAddress dst, byte priority, byte ttl)
receive
in interface NetInterface.NetHandler
msg
- the message being receivedsrc
- the address of the originator of the messagelastHop
- the MAC address of the most recent node to forward the messagemacId
- the ID of the MAC interfacedst
- the address of the destination of the message (which should
be the IP address of this node)priority
- the IP priority of the messagettl
- the IP time to live of the message
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |