landmark.tcl
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:6k
源码类别:

通讯编程

开发平台:

Visual C++

  1. # -*- Mode:tcl; tcl-indent-level:8; tab-width:8; indent-tabs-mode:t -*-
  2. #
  3. # Copyright (c) 1996-1998 Regents of the University of California.
  4. # All rights reserved.
  5. # Redistribution and use in source and binary forms, with or without
  6. # modification, are permitted provided that the following conditions
  7. # are met:
  8. # 1. Redistributions of source code must retain the above copyright
  9. #    notice, this list of conditions and the following disclaimer.
  10. # 2. Redistributions in binary form must reproduce the above copyright
  11. #    notice, this list of conditions and the following disclaimer in the
  12. #    documentation and/or other materials provided with the distribution.
  13. # 3. All advertising materials mentioning features or use of this software
  14. #    must display the following acknowledgement:
  15. #  This product includes software developed by the MASH Research
  16. #  Group at the University of California Berkeley.
  17. # 4. Neither the name of the University nor of the Research Group may be
  18. #    used to endorse or promote products derived from this software without
  19. #    specific prior written permission.
  20. # THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  21. # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  22. # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  23. # ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  24. # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  25. # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  26. # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  27. # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  28. # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  29. # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  30. # SUCH DAMAGE.
  31. #
  32. # $Header: /cvsroot/nsnam/ns-2/tcl/mobility/landmark.tcl,v 1.2 2000/08/30 23:27:51 haoboy Exp $
  33. # ======================================================================
  34. # Default Script Options
  35. # ======================================================================
  36. Agent/landmark set sport_        0
  37. Agent/landmark set dport_        0
  38. Agent/landmark set be_random_    1        ;# Flavor the performance numbers :)
  39. Agent/landmark set verbose_      0        ;# 
  40. Agent/landmark set trace_wst_    0        ;# 
  41. Agent/landmark set debug_        1
  42. #Class Agent/DSDV
  43. set opt(ragent) Agent/landmark
  44. set opt(pos) NONE ;# Box or NONE
  45. if { $opt(pos) == "Box" } {
  46. puts "*** Landmark using Box configuration..."
  47. }
  48. # ======================================================================
  49. Agent instproc init args {
  50.         eval $self next $args
  51. }       
  52. Agent/landmark instproc init args {
  53.         eval $self next $args
  54. }       
  55. # ===== Get rid of the warnings in bind ================================
  56. # ======================================================================
  57. proc create-landmark-agent { node id tag_dbase } {
  58.     global ns_ ragent_ tracefd opt
  59.     #
  60.     #  Create the Routing Agent and attach it to port 255.
  61.     #
  62.     set ragent_($id) [new $opt(ragent)]
  63.     set ragent $ragent_($id)
  64.     # setup address (supports hier-addr) for Landmark agent and mobilenode
  65.     set addr [$node node-addr]
  66.     $ragent addr $addr
  67.     $node addr $addr
  68.     
  69.     $node attach $ragent [Node set rtagent_port_]
  70.     # Add a pointer to node so that agents can get location information
  71.     $ragent node $node
  72.         
  73.     # XXX FIX ME XXX
  74.     # Where's the DSR stuff?
  75.     #$ragent ll-queue [$node get-queue 0]    ;# ugly filter-queue hack
  76.     $ns_ at 0.0 "$ragent_($id) start" ;# start updates
  77.     $ns_ at $opt(stop) "$ragent_($id) dumprtab"
  78.     $ns_ at $opt(stop) "$ragent_($id) print-nbrs"
  79.     if {$opt(update-period) > 0} {
  80.     $ragent set-update-period $opt(update-period)
  81.     }
  82.     #
  83.     # Set-up link to global tag database
  84.     #
  85.     $ragent attach-tag-dbase $tag_dbase
  86.     #
  87.     # Drop Target (always on regardless of other tracing)
  88.     #
  89.     set drpT [cmu-trace Drop "RTR" $node]
  90.     $ragent drop-target $drpT
  91.     
  92.     #
  93.     # Log Target
  94.     #
  95.     set T [new Trace/Generic]
  96.     $T target [$ns_ set nullAgent_]
  97.     $T attach $tracefd
  98.     $T set src_ $id
  99.     $ragent tracetarget $T
  100. }
  101. proc create-query-agent { node id tag_dbase} {
  102.     global ns_ qryagent_ tracefd opt
  103.     set qryagent_($id) [new Agent/SensorQuery]
  104.     set addr [$node node-addr]
  105.     $qryagent_($id) addr $addr
  106.     $node attach $qryagent_($id) 0
  107.     #
  108.     # Set-up link to global tag database
  109.     #
  110.     $qryagent_($id) attach-tag-dbase $tag_dbase
  111.     #
  112.     # Log Target
  113.     #
  114.     set T [new Trace/Generic]
  115.     $T target [$ns_ set nullAgent_]
  116.     $T attach $tracefd
  117.     $T set src_ $id
  118.     $qryagent_($id) tracetarget $T
  119. }
  120. proc landmark-create-mobile-node { id tag_dbase } {
  121. global ns ns_ chan prop topo tracefd opt node_
  122. global chan prop tracefd topo opt
  123. set ns_ [Simulator instance]
  124. set node_($id) [new Node/MobileNode]
  125. set node $node_($id)
  126. $node random-motion 0 ;# disable random motion
  127. $node topography $topo
  128. #
  129. # This Trace Target is used to log changes in direction
  130. # and velocity for the mobile node.
  131. #
  132. set T [new Trace/Generic]
  133. $T target [$ns_ set nullAgent_]
  134. $T attach $tracefd
  135. $T set src_ $id
  136. $node log-target $T
  137. $node add-interface $chan $prop $opt(ll) $opt(mac)
  138. $opt(ifq) $opt(ifqlen) $opt(netif) $opt(ant)
  139.         #
  140.         # Add notion of energy to node
  141.         #
  142.         if [info exists opt(energymodel)] {
  143.                 $node addenergymodel [new $opt(energymodel) $opt(initialenergy)]
  144.         }
  145. #
  146. # Create hierarchical landmark routing agent for the Node
  147. #
  148. create-landmark-agent $node $id $tag_dbase
  149. #
  150. # Create query agent for each sensor node
  151. #
  152. create-query-agent $node $id $tag_dbase
  153. # ============================================================
  154. if { $opt(pos) == "Box" } {
  155. #
  156. # Box Configuration
  157. #
  158. set spacing 200
  159. set maxrow 7
  160. set col [expr ($id - 1) % $maxrow]
  161. set row [expr ($id - 1) / $maxrow]
  162. $node set X_ [expr $col * $spacing]
  163. $node set Y_ [expr $row * $spacing]
  164. $node set Z_ 0.0
  165. $node set speed_ 0.0
  166. $ns_ at 0.0 "$node_($id) start"
  167. }
  168. }