1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295
|
# -*- Mode:tcl; tcl-indent-level:8; tab-width:8; indent-tabs-mode:t -*-
#
# Copyright (c) 1996 Regents of the University of California.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# 3. All advertising materials mentioning features or use of this software
# must display the following acknowledgement:
# This product includes software developed by the MASH Research
# Group at the University of California Berkeley.
# 4. Neither the name of the University nor of the Research Group may be
# used to endorse or promote products derived from this software without
# specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
#
# @(#) $Header: /cvsroot/nsnam/ns-2/tcl/lib/ns-lib.tcl,v 1.279 2010/05/09 22:28:41 tom_henderson Exp $
#
# Word of warning to developers:
# this code (and all it sources) is compiled into the
# ns executable. You need to rebuild ns or explicitly
# source this code to see changes take effect.
#
proc warn {msg} {
global warned_
if {![info exists warned_($msg)]} {
puts stderr "warning: $msg"
set warned_($msg) 1
}
}
if {[info commands debug] == ""} {
proc debug args {
warn {Script debugging disabled. Reconfigure with --with-tcldebug, and recompile.}
}
}
proc assert args {
if [catch "expr $args" ret] {
set ret [eval expr $args]
}
if {! $ret} {
error "assertion failed: $args"
}
}
proc find-max list {
set max 0
foreach val $list {
if {$val > $max} {
set max $val
}
}
return $max
}
proc bw_parse { bspec } {
if { [scan $bspec "%f%s" b unit] == 1 } {
set unit bps
}
regsub {[/p]s(ec)?$} $unit {} unit
if [string match {*B} $unit] {
set b [expr $b*8]
set unit "[string trimright $unit B]b"
}
switch $unit {
b { return $b }
kb { return [expr $b*1000] }
Mb { return [expr $b*1000000] }
Gb { return [expr $b*1000000000] }
default {
puts "error: bw_parse: unknown unit `$unit'"
exit 1
}
}
}
proc time_parse { spec } {
if { [scan $spec "%f%s" t unit] == 1 } {
set unit s
}
regsub {sec$} $unit {s} unit
switch $unit {
s { return $t }
ms { return [expr $t*1e-3] }
us { return [expr $t*1e-6] }
ns { return [expr $t*1e-9] }
ps { return [expr $t*1e-12] }
default {
puts "error: time_parse: unknown unit `$unit'"
exit 1
}
}
}
proc delay_parse { spec } {
return [time_parse $spec]
}
#
# Create the core OTcl class called "Simulator".
# This is the principal interface to the simulation engine.
#
#Class Simulator
#
# XXX Whenever you modify the source list below, please also change the
# OTcl script dependency list in Makefile.in
#
source ns-autoconf.tcl
source ns-address.tcl
source ns-node.tcl
source ns-rtmodule.tcl
source ns-hiernode.tcl
source ns-mobilenode.tcl
source ns-bsnode.tcl
source ns-link.tcl
source ns-source.tcl
source ns-compat.tcl
source ns-packet.tcl
source ns-queue.tcl
source ns-trace.tcl
source ns-random.tcl
source ns-agent.tcl
source ns-route.tcl
source ns-errmodel.tcl
source ns-intserv.tcl
source ns-cmutrace.tcl
source ns-mip.tcl
source ns-sat.tcl
#source ns-nix.tcl
source ns-diffusion.tcl
source ../rtp/session-rtp.tcl
source ../interface/ns-iface.tcl
source ../lan/ns-mac.tcl
# Added by Sushmita to support event tracing for mac-simple and 802.11
source ../lan/ns-mac-simple.tcl
source ../lan/ns-mac-802_11.tcl
source ../lan/ns-ll.tcl
source ../lan/vlan.tcl
source ../lan/abslan.tcl
source ../mcast/timer.tcl
source ../mcast/ns-mcast.tcl
source ns-srcrt.tcl
source ../mcast/McastProto.tcl
source ../mcast/DM.tcl
source ../ctr-mcast/CtrMcast.tcl
source ../ctr-mcast/CtrMcastComp.tcl
source ../ctr-mcast/CtrRPComp.tcl
source ../mcast/BST.tcl
source ../mcast/srm.tcl
source ../mcast/srm-ssm.tcl
# These files removed due to licensing conflicts
# source ../mcast/mftp_snd.tcl
# source ../mcast/mftp_rcv.tcl
# source ../mcast/mftp_rcv_stat.tcl
source ../mcast/McastMonitor.tcl
source ../rlm/rlm.tcl
source ../rlm/rlm-ns.tcl
source ../session/session.tcl
source ../webcache/http-server.tcl
source ../webcache/http-cache.tcl
source ../webcache/http-agent.tcl
source ../webcache/http-mcache.tcl
source ../webcache/webtraf.tcl
source ../webcache/empweb.tcl
source ns-namsupp.tcl
source ../mobility/dsdv.tcl
source ../mobility/dsr.tcl
source ../mobility/com.tcl
source ../plm/plm.tcl
source ../plm/plm-ns.tcl
source ../plm/plm-topo.tcl
# MPLS
source ../mpls/ns-mpls-simulator.tcl
source ../mpls/ns-mpls-node.tcl
source ../mpls/ns-mpls-ldpagent.tcl
source ../mpls/ns-mpls-classifier.tcl
source ns-default.tcl
source ../emulate/ns-emulate.tcl
#pushback
source ns-pushback.tcl
# PGM
#source ../pgm/ns-pgm.tcl
#LMS
source ../mcast/ns-lms.tcl
# STL dependent modules get included
# ONLY when STL is found
if {[ns-hasSTL] == 1} {
source ns-nix.tcl
source ../pgm/ns-pgm.tcl
source ../rtglib/ns-rtProtoLS.tcl
source ../delaybox/delaybox.tcl
source ../packmime/packmime.tcl
}
source ns-qsnode.tcl
# Obsolete modules
#source ns-wireless-mip.tcl
#source ns-nam.tcl
Simulator instproc init args {
# Debojyoti added this for asim
$self instvar useasim_
$self instvar slinks_
$self instvar nconn_
$self instvar sflows_
$self instvar nsflows_
set slinks_(0:0) 0
set nconn_ 0
set conn_ ""
# for short flows stuff
set sflows_ ""
set nsflows_ 0
set useasim_ 0
$self create_packetformat
$self use-scheduler Calendar
#$self use-scheduler List
$self set nullAgent_ [new Agent/Null]
$self set-address-format def
if {[lindex $args 0] == "-multicast"} {
$self multicast $args
}
eval $self next $args
}
Simulator instproc nullagent {} {
$self instvar nullAgent_
return $nullAgent_
}
Simulator instproc use-scheduler type {
$self instvar scheduler_
if [info exists scheduler_] {
if { [$scheduler_ info class] == "Scheduler/$type" } {
return
} else {
delete $scheduler_
}
}
set scheduler_ [new Scheduler/$type]
$scheduler_ now
}
Simulator instproc delay_parse { spec } {
return [time_parse $spec]
}
Simulator instproc bw_parse { spec } {
return [bw_parse $spec]
}
#
# A simple method to wrap any object around
# a trace object that dumps to stdout
#
Simulator instproc dumper obj {
set t [$self alloc-trace hop stdout]
$t target $obj
return $t
}
# New node structure
#
# Add APT to support multi-interface: user can specified multiple channels
# when config nod. Still need modifications in routing agents to make
# multi-interfaces really work. -chen xuan 07/21/00
#
# Define global node configuration
# $ns_ node-config -addressType flat/hierarchical
# -adhocRouting DSDV/DSR/TORA
# -llType
# -macType
# -propType
# -ifqType
# -ifqLen
# -phyType
# -antType
# -channel
# -channelType
# -topologyInstance
# -wiredRouting ON/OFF
# -mobileIP ON/OFF
# -energyModel "EnergyModel"
# -initialEnergy (in Joules)
# -rxPower (in W)
# -txPower (in W)
# -idlePower (in W)
#
# -sleepPower (in W)
# -sleepTime (in sec indicating when the node can start sleeping)
# -agentTrace ON
# -routerTrace ON
# -macTrace OFF
# -phyTrace OFF
# -toraDebug OFF
# -movementTrace OFF
# change wrt Mike's code
# -eotTrace OFF
# -diffusionFilter "GradientFilter/OnePhasePullFilter/GeoRoutingFilter/RmstFilter/SourceRouteFilter/LogFilter/TagFilter"
Simulator instproc addressType {val} { $self set addressType_ $val }
Simulator instproc adhocRouting {val} { $self set routingAgent_ $val }
Simulator instproc llType {val} { $self set llType_ $val }
Simulator instproc macType {val} { $self set macType_ $val }
Simulator instproc propType {val} { $self set propType_ $val }
Simulator instproc propInstance {val} { $self set propInstance_ $val }
Simulator instproc ifqType {val} { $self set ifqType_ $val }
Simulator instproc ifqLen {val} { $self set ifqlen_ $val }
Simulator instproc phyType {val} { $self set phyType_ $val }
Simulator instproc antType {val} { $self set antType_ $val }
Simulator instproc channel {val} {$self set channel_ $val}
Simulator instproc channelType {val} {$self set channelType_ $val}
Simulator instproc topoInstance {val} {$self set topoInstance_ $val}
Simulator instproc wiredRouting {val} {$self set wiredRouting_ $val}
Simulator instproc mobileIP {val} {$self set mobileIP_ $val}
Simulator instproc energyModel {val} { $self set energyModel_ $val }
Simulator instproc initialEnergy {val} { $self set initialEnergy_ $val }
Simulator instproc txPower {val} { $self set txPower_ $val }
Simulator instproc rxPower {val} { $self set rxPower_ $val }
Simulator instproc idlePower {val} { $self set idlePower_ $val }
#
Simulator instproc sleepPower {val} { $self set sleepPower_ $val }
Simulator instproc sleepTime {val} { $self set sleepTime_ $val }
Simulator instproc transitionPower {val} { $self set transitionPower_ $val }
Simulator instproc transitionTime {val} { $self set transitionTime_ $val }
#
Simulator instproc IncomingErrProc {val} { $self set inerrProc_ $val }
Simulator instproc OutgoingErrProc {val} { $self set outerrProc_ $val }
Simulator instproc FECProc {val} { $self set FECProc_ $val }
Simulator instproc agentTrace {val} { $self set agentTrace_ $val }
Simulator instproc routerTrace {val} { $self set routerTrace_ $val }
Simulator instproc macTrace {val} { $self set macTrace_ $val }
Simulator instproc phyTrace {val} { $self set phyTrace_ $val }
Simulator instproc movementTrace {val} { $self set movementTrace_ $val }
Simulator instproc toraDebug {val} {$self set toraDebug_ $val }
Simulator instproc satNodeType {val} {$self set satNodeType_ $val}
Simulator instproc downlinkBW {val} {$self set downlinkBW_ $val}
Simulator instproc stopTime {val} {$self set stopTime_ $val}
# This method is needed so that new Routing Agents can be implemented in a dynamic
# library and used without having to modify Simulator::create-wireless-node
Simulator instproc rtAgentFunction {val} {$self set rtAgentFunction_ $val}
# change wrt Mike's code
Simulator instproc eotTrace {val} { $self set eotTrace_ $val }
Simulator instproc diffusionFilter {val} {$self set diffFilter_ $val}
Simulator instproc MPLS { val } {
if { $val == "ON" } {
Node enable-module "MPLS"
} else {
Node disable-module "MPLS"
}
}
Simulator instproc PGM { val } {
if { $val == "ON" } {
Node enable-module "PGM"
} else {
Node disable-module "PGM"
}
}
Simulator instproc LMS { val } {
if { $val == "ON" } {
Node enable-module "LMS"
} else {
Node disable-module "LMS"
}
}
Simulator instproc get-nodetype {} {
$self instvar addressType_ routingAgent_ wiredRouting_
set val ""
if { [info exists addressType_] && $addressType_ == "hierarchical" } {
set val Hier
}
if { [info exists routingAgent_] && $routingAgent_ != "" } {
set val Mobile
}
if { [info exists wiredRouting_] && $wiredRouting_ == "ON" } {
set val Base
}
if { [info exists wiredRouting_] && $wiredRouting_ == "OFF"} {
set val Base
}
if { [Simulator set mobile_ip_] } {
if { $val == "Base" && $wiredRouting_ == "ON" } {
set val MIPBS
}
if { $val == "Base" && $wiredRouting_ == "OFF" } {
set val MIPMH
}
}
return $val
}
Simulator instproc node-config args {
# Object::init-vars{} is defined in ~tclcl/tcl-object.tcl.
# It initializes all default variables in the following way:
# 1. Look for pairs of {-cmd val} in args
# 2. If "$self $cmd $val" is not valid then put it in a list of
# arguments to be returned to the caller.
#
# Since we do not handle undefined {-cmd val} pairs, we ignore
# return value from init-vars{}.
set args [eval $self init-vars $args]
$self instvar addressType_ routingAgent_ propType_ macTrace_ \
routerTrace_ agentTrace_ movementTrace_ channelType_ channel_ \
chan topoInstance_ propInstance_ mobileIP_ \
rxPower_ txPower_ idlePower_ sleepPower_ sleepTime_ transitionPower_ \
transitionTime_ satNodeType_ eotTrace_ phyTrace_
if [info exists phyTrace_] {
Simulator set PhyTrace_ $phyTrace_
}
if [info exists macTrace_] {
Simulator set MacTrace_ $macTrace_
}
if [info exists routerTrace_] {
Simulator set RouterTrace_ $routerTrace_
}
if [info exists agentTrace_] {
Simulator set AgentTrace_ $agentTrace_
}
if [info exists movementTrace_] {
Simulator set MovementTrace_ $movementTrace_
}
# change wrt Mike's code
if [info exists eotTrace_] {
Simulator set EotTrace_ $eotTrace_
}
# hacking for matching old cmu add-interface
# not good style, for back-compability ONLY
#
# Only create 1 instance of prop
if {[info exists propInstance_]} {
if {[info exists propType_] && [Simulator set propInstCreated_] == 0} {
warn "Both propType and propInstance are set. propType is ignored."
}
} else {
if {[info exists propType_]} {
set propInstance_ [new $propType_]
Simulator set propInstCreated_ 1
}
}
# Add multi-interface support:
# User can only specify either channelType_ (single_interface as
# before) or channel_ (multi_interface)
# If both variables are specified, error!
if {[info exists channelType_] && [info exists channel_]} {
error "Can't specify both channel and channelType, error!"
} elseif {[info exists channelType_] && ![info exists satNodeType_]} {
# Single channel, single interface
warn "Please use -channel as shown in tcl/ex/wireless-mitf.tcl"
if {![info exists chan]} {
set chan [new $channelType_]
}
} elseif {[info exists channel_]} {
# Multiple channel, multiple interfaces
set chan $channel_
}
if [info exists topoInstance_] {
$propInstance_ topography $topoInstance_
}
# set address type, hierarchical or expanded
if {[string compare $addressType_ ""] != 0} {
$self set-address-format $addressType_
}
# set mobileIP flag
if { [info exists mobileIP_] && $mobileIP_ == "ON"} {
Simulator set mobile_ip_ 1
} else {
if { [info exists mobileIP_] } {
Simulator set mobile_ip_ 0
}
}
}
# Default behavior is changed: consider nam as not initialized if
# no shape OR color parameter is given
Simulator instproc node args {
$self instvar Node_ routingAgent_ wiredRouting_ satNodeType_
if { [Simulator info vars EnableMcast_] != "" } {
warn "Flag variable Simulator::EnableMcast_ discontinued.\n\t\
Use multicast methods as:\n\t\t\
% set ns \[new Simulator -multicast on]\n\t\t\
% \$ns multicast"
$self multicast
Simulator unset EnableMcast_
}
if { [Simulator info vars NumberInterfaces_] != "" } {
warn "Flag variable Simulator::NumberInterfaces_ discontinued.\n\t\
Setting this variable will not affect simulations."
Simulator unset NumberInterfaces_
}
# Satellite node
if { [info exists satNodeType_] } {
set node [eval $self create-satnode]
#simulator's nodelist in C++ space
if {[info exists wiredRouting_] && $wiredRouting_ == "ON"} {
# add node to simulator's nodelist in C++ space
$self add-node $node [$node id]
# Want to keep global state of wiredRouting info
SatRouteObject set wiredRouting_ true
}
return $node
}
# wireless-ready node
if { [info exists routingAgent_] && ($routingAgent_ != "") } {
set node [eval $self create-wireless-node $args]
# for base node
if {[info exists wiredRouting_] && $wiredRouting_ == "ON"} {
set Node_([$node id]) $node
#simulator's nodelist in C++ space
$self add-node $node [$node id]
}
return $node
}
# Enable-mcast is now done automatically inside Node::init{}
#
# XXX node_factory_ is deprecated, HOWEVER, since it's still used by
# mobile IP, algorithmic routing, manual routing, and backward
# compability tests of hierarchical routing, we should keep it around
# before all related code are wiped out.
set node [eval new [Simulator set node_factory_] $args]
set Node_([$node id]) $node
#add to simulator's nodelist in C++ space
$self add-node $node [$node id]
#set the nodeid in c++ Node - ratul
$node nodeid [$node id]
$node set ns_ $self
$self check-node-num
return $node
}
# XXX This is stupid hack. When old code (not using node-config) is used,
# create-wireless-node{} will not be called, and IMEPFlag_ will remain empty
# (as set in ns-default.tcl), then Node/MobileNode will use global proc
# cmu-trace to create trace objects; otherwise mobility-trace{} will be
# triggered.
Simulator instproc imep-support {} {
return [Simulator set IMEPFlag_]
}
# XXX This should be moved into the node initialization procedure instead
# of standing here in ns-lib.tcl.
Simulator instproc create-wireless-node args {
$self instvar routingAgent_ wiredRouting_ propInstance_ llType_ \
macType_ ifqType_ ifqlen_ phyType_ chan antType_ \
energyModel_ initialEnergy_ txPower_ rxPower_ \
idlePower_ sleepPower_ sleepTime_ transitionPower_ transitionTime_ \
topoInstance_ level1_ level2_ inerrProc_ outerrProc_ FECProc_ rtAgentFunction_
Simulator set IMEPFlag_ OFF
# create node instance
set node [eval $self create-node-instance $args]
# basestation address setting
if { [info exist wiredRouting_] && $wiredRouting_ == "ON" } {
$node base-station [AddrParams addr2id [$node node-addr]]
}
if {$rtAgentFunction_ != ""} {
set ragent [$self $rtAgentFunction_ $node]
} else {
switch -exact $routingAgent_ {
DSDV {
set ragent [$self create-dsdv-agent $node]
}
DSR {
$self at 0.0 "$node start-dsr"
}
AODV {
set ragent [$self create-aodv-agent $node]
}
AOMDV {
set ragent [$self create-aomdv-agent $node]
}
MDART {
set ragent [$self create-mdart-agent $node]
}
PUMA {
set ragent [$self create-puma-agent $node]
}
TORA {
Simulator set IMEPFlag_ ON
set ragent [$self create-tora-agent $node]
}
DIFFUSION/RATE {
eval $node addr $args
set ragent [$self create-diffusion-rate-agent $node]
}
DIFFUSION/PROB {
eval $node addr $args
set ragent [$self create-diffusion-probability-agent $node]
}
Directed_Diffusion {
eval $node addr $args
set ragent [$self create-core-diffusion-rtg-agent $node]
}
FLOODING {
eval $node addr $args
set ragent [$self create-flooding-agent $node]
}
OMNIMCAST {
eval $node addr $args
set ragent [$self create-omnimcast-agent $node]
}
DumbAgent {
set ragent [$self create-dumb-agent $node]
}
ManualRtg {
set ragent [$self create-manual-rtg-agent $node]
}
default {
eval $node addr $args
puts "Wrong node routing agent!"
exit
}
}
}
# errProc_ and FECProc_ are an option unlike other
# parameters for node interface
if ![info exist inerrProc_] {
set inerrProc_ ""
}
if ![info exist outerrProc_] {
set outerrProc_ ""
}
if ![info exist FECProc_] {
set FECProc_ ""
}
# Add main node interface
$node add-interface $chan $propInstance_ $llType_ $macType_ \
$ifqType_ $ifqlen_ $phyType_ $antType_ $topoInstance_ \
$inerrProc_ $outerrProc_ $FECProc_
# Attach agent
if {$routingAgent_ != "DSR"} {
$node attach $ragent [Node set rtagent_port_]
}
if {$routingAgent_ == "DIFFUSION/RATE" ||
$routingAgent_ == "DIFFUSION/PROB" ||
$routingAgent_ == "FLOODING" ||
$routingAgent_ == "OMNIMCAST" ||
$routingAgent_ == "Directed_Diffusion" } {
$ragent port-dmux [$node demux]
$node instvar ll_
$ragent add-ll $ll_(0)
}
if { $routingAgent_ == "DumbAgent" } {
$ragent port-dmux [$node demux]
}
# Bind routing agent and mip agent if existing basestation
# address setting
if { [info exist wiredRouting_] && $wiredRouting_ == "ON" } {
if { $routingAgent_ != "DSR" } {
$node mip-call $ragent
}
}
#
# This Trace Target is used to log changes in direction
# and velocity for the mobile node.
#
set tracefd [$self get-ns-traceall]
if {$tracefd != "" } {
$node nodetrace $tracefd
$node agenttrace $tracefd
}
set namtracefd [$self get-nam-traceall]
if {$namtracefd != "" } {
$node namattach $namtracefd
}
if [info exists energyModel_] {
if [info exists level1_] {
set l1 $level1_
} else {
set l1 0.5
}
if [info exists level2_] {
set l2 $level2_
} else {
set l2 0.2
}
$node addenergymodel [new $energyModel_ $node \
$initialEnergy_ $l1 $l2]
}
if [info exists txPower_] {
$node setPt $txPower_
}
if [info exists rxPower_] {
$node setPr $rxPower_
}
if [info exists idlePower_] {
$node setPidle $idlePower_
}
#
if [info exists sleepPower_] {
$node setPsleep $sleepPower_
}
if [info exists sleepTime_] {
$node setTSleep $sleepTime_
}
if [info exists transitionPower_] {
$node setPtransition $transitionPower_
}
if [info exists transitionTime_] {
$node setTtransition $transitionTime_
}
#
$node topography $topoInstance_
return $node
}
Simulator instproc create-node-instance args {
$self instvar routingAgent_
# DSR is a special case
if {$routingAgent_ == "DSR"} {
set nodeclass [$self set-dsr-nodetype]
} else {
set nodeclass Node/MobileNode
}
return [eval new $nodeclass $args]
}
Simulator instproc set-dsr-nodetype {} {
$self instvar wiredRouting_
set nodetype SRNodeNew
# MIP mobilenode
if [Simulator set mobile_ip_] {
set nodetype SRNodeNew/MIPMH
}
# basestation dsr node
if { [info exists wiredRouting_] && $wiredRouting_ == "ON"} {
set nodetype Node/MobileNode/BaseStationNode
}
return $nodetype
}
Simulator instproc create-tora-agent { node } {
set ragent [new Agent/TORA [$node id]]
$node set ragent_ $ragent
return $ragent
}
Simulator instproc create-dsdv-agent { node } {
# Create a dsdv routing agent for this node
set ragent [new Agent/DSDV]
# Setup address (supports hier-addr) for dsdv agent
# and mobilenode
set addr [$node node-addr]
$ragent addr $addr
$ragent node $node
if [Simulator set mobile_ip_] {
$ragent port-dmux [$node demux]
}
$node addr $addr
$node set ragent_ $ragent
$self at 0.0 "$ragent start-dsdv" ;# start updates
return $ragent
}
Simulator instproc create-dumb-agent { node } {
# create a simple wireless agent
# that only forwards packets
# used for testing single hop brdcast/unicast mode
# for wireless macs
set ragent [new Agent/DumbAgent]
$node set ragent_ $ragent
return $ragent
}
Simulator instproc create-manual-rtg-agent { node } {
# create a simple wireless agent
# that only forwards packets
# used for testing single hop brdcast/unicast mode
# for wireless macs
set ragent [new Agent/ManualRtgAgent]
$node set ragent_ $ragent
$node attach $ragent [Node set rtagent_port_]
return $ragent
}
Simulator instproc create-aodv-agent { node } {
# Create AODV routing agent
set ragent [new Agent/AODV [$node node-addr]]
$self at 0.0 "$ragent start" ;# start BEACON/HELLO Messages
$node set ragent_ $ragent
return $ragent
}
# AOMDV patch
Simulator instproc create-aomdv-agent { node } {
set ragent [new Agent/AOMDV [$node node-addr]]
$self at 0.0 "$ragent start"
$node set ragent_ $ragent
return $ragent
}
Simulator instproc create-puma-agent { node } {
# Create PUMA routing agent
set ragent [new Agent/PUMA [$node node-addr]]
$self at 0.0 "$ragent start"
$node set ragent_ $ragent
return $ragent
}
Simulator instproc create-mdart-agent { node } {
# Create M-DART routing agent
set ragent [new Agent/MDART [$node node-addr]]
$self at 0.0 "$ragent start" ;# start BEACON/HELLO Messages
$node set ragent_ $ragent
return $ragent
}
Simulator instproc use-newtrace {} {
Simulator set WirelessNewTrace_ 1
}
Simulator instproc use-taggedtrace { {tag ON} } {
Simulator set TaggedTrace_ $tag
}
Simulator instproc hier-node haddr {
error "hier-nodes should be created with [$ns_ node $haddr]"
}
Simulator instproc now {} {
$self instvar scheduler_
return [$scheduler_ now]
}
Simulator instproc at args {
$self instvar scheduler_
return [eval $scheduler_ at $args]
}
Simulator instproc at-now args {
$self instvar scheduler_
return [eval $scheduler_ at-now $args]
}
Simulator instproc cancel args {
$self instvar scheduler_
return [eval $scheduler_ cancel $args]
}
Simulator instproc after {ival args} {
eval $self at [expr [$self now] + $ival] $args
}
#
# check if total num of nodes exceed 2 to the power n
# where <n=node field size in address>
#
Simulator instproc check-node-num {} {
if {[Node set nn_] > [expr pow(2, [AddrParams nodebits])]} {
error "Number of nodes exceeds node-field-size of [AddrParams nodebits] bits"
}
}
#
# Check if number of items at each hier level (num of nodes, or clusters or
# domains) exceed size of that hier level field size (in bits). should be
# modified to support n-level of hierarchies
#
Simulator instproc chk-hier-field-lengths {} {
AddrParams instvar domain_num_ cluster_num_ nodes_num_
if [info exists domain_num_] {
if {[expr $domain_num_ - 1]> [AddrParams NodeMask 1]} {
error "\# of domains exceed dom-field-size "
}
}
if [info exists cluster_num_] {
set maxval [expr [find-max $cluster_num_] - 1]
if {$maxval > [expr pow(2, [AddrParams NodeMask 2])]} {
error "\# of clusters exceed clus-field-size "
}
}
if [info exists nodes_num_] {
set maxval [expr [find-max $nodes_num_] -1]
if {$maxval > [expr pow(2, [AddrParams NodeMask 3])]} {
error "\# of nodess exceed node-field-size"
}
}
}
Simulator instproc check-smac {} {
$self instvar macType_
if { [info exist macType_] && $macType_ == "Mac/SMAC" } {
if { [$macType_ set syncFlag_] } {
puts "\nNOTE: SMAC is running with sleep-wakeup cycles on. Please make sure to run yr applications AFTER the nodes get sync'ed which is about 40sec for the default settings.\n"
}
}
}
Simulator instproc run {} {
# NIXVECTOR?
# global runstart
# set runstart [clock seconds]
$self check-smac ;# print warning if in sleep/wakeup cycle
$self check-node-num
$self rtmodel-configure ;# in case there are any
[$self get-routelogic] configure
$self instvar scheduler_ Node_ link_ started_
set started_ 1
#
# Reset every node, which resets every agent.
#
foreach nn [array names Node_] {
$Node_($nn) reset
# GFR Additions for NixVector Routing
if { [Simulator set nix-routing] } {
$Node_($nn) populate-objects
}
}
#
# Also reset every queue
#
foreach qn [array names link_] {
set q [$link_($qn) queue]
$q reset
}
# Do all nam-related initialization here
$self init-nam
# NIXVECTOR xxx?
# global simstart
# set simstart [clock seconds]
return [$scheduler_ run]
}
# johnh xxx?
Simulator instproc log-simstart { } {
# GFR Modification to log actual start
global simstart
puts "Starting Actual Simulation"
set simstart [clock seconds]
}
Simulator instproc halt {} {
$self instvar scheduler_
#puts "time: [clock format [clock seconds] -format %X]"
$scheduler_ halt
}
Simulator instproc dumpq {} {
$self instvar scheduler_
$scheduler_ dumpq
}
Simulator instproc is-started {} {
$self instvar started_
return [info exists started_]
}
Simulator instproc clearMemTrace {} {
$self instvar scheduler_
$scheduler_ clearMemTrace
}
Simulator instproc simplex-link { n1 n2 bw delay qtype args } {
$self instvar link_ queueMap_ nullAgent_ useasim_
set sid [$n1 id]
set did [$n2 id]
# Debo
if { $useasim_ == 1 } {
set slink_($sid:$did) $self
}
if [info exists queueMap_($qtype)] {
set qtype $queueMap_($qtype)
}
# construct the queue
set qtypeOrig $qtype
switch -exact $qtype {
ErrorModule {
if { [llength $args] > 0 } {
set q [eval new $qtype $args]
} else {
set q [new $qtype Fid]
}
}
intserv {
set qtype [lindex $args 0]
set q [new Queue/$qtype]
}
default {
if { [llength $args] == 0} {
set q [new Queue/$qtype]
} else {
set q [new Queue/$qtype $args]
}
}
}
# Now create the link
switch -exact $qtypeOrig {
RTM {
set c [lindex $args 1]
set link_($sid:$did) [new CBQLink \
$n1 $n2 $bw $delay $q $c]
}
CBQ -
CBQ/WRR {
# assume we have a string of form "linktype linkarg"
if {[llength $args] == 0} {
# default classifier for cbq is just Fid type
set c [new Classifier/Hash/Fid 33]
} else {
set c [lindex $args 0]
}
set link_($sid:$did) [new CBQLink \
$n1 $n2 $bw $delay $q $c]
}
FQ {
set link_($sid:$did) [new FQLink $n1 $n2 $bw $delay $q]
}
intserv {
#XX need to clean this up
set link_($sid:$did) [new IntServLink \
$n1 $n2 $bw $delay $q \
[concat $qtypeOrig $args]]
}
default {
set link_($sid:$did) [new SimpleLink \
$n1 $n2 $bw $delay $q]
}
}
if {$qtype == "RED/Pushback"} {
set pushback 1
} else {
set pushback 0
}
$n1 add-neighbor $n2 $pushback
#XXX yuck
if {[string first "RED" $qtype] != -1 ||
[string first "PI" $qtype] != -1 ||
[string first "Vq" $qtype] != -1 ||
[string first "REM" $qtype] != -1 ||
[string first "GK" $qtype] != -1 ||
[string first "RIO" $qtype] != -1 ||
[string first "XCP" $qtype] != -1} {
$q link [$link_($sid:$did) set link_]
}
set trace [$self get-ns-traceall]
if {$trace != ""} {
$self trace-queue $n1 $n2 $trace
}
set trace [$self get-nam-traceall]
if {$trace != ""} {
$self namtrace-queue $n1 $n2 $trace
}
# Register this simplex link in nam link list. Treat it as
# a duplex link in nam
$self register-nam-linkconfig $link_($sid:$did)
}
#
# This is used by Link::orient to register/update the order in which links
# should created in nam. This is important because different creation order
# may result in different layout.
#
# A poor hack. :( Any better ideas?
#
Simulator instproc register-nam-linkconfig link {
$self instvar linkConfigList_ link_
if [info exists linkConfigList_] {
# Check whether the reverse simplex link is registered,
# if so, don't register this link again.
# We should have a separate object for duplex link.
set i1 [[$link src] id]
set i2 [[$link dst] id]
if [info exists link_($i2:$i1)] {
set pos [lsearch $linkConfigList_ $link_($i2:$i1)]
if {$pos >= 0} {
set a1 [$link_($i2:$i1) get-attribute \
"ORIENTATION"]
set a2 [$link get-attribute "ORIENTATION"]
if {$a1 == "" && $a2 != ""} {
# If this duplex link has not been
# assigned an orientation, do it.
set linkConfigList_ [lreplace \
$linkConfigList_ $pos $pos]
} else {
return
}
}
}
# Remove $link from list if it's already there
set pos [lsearch $linkConfigList_ $link]
if {$pos >= 0} {
set linkConfigList_ \
[lreplace $linkConfigList_ $pos $pos]
}
}
lappend linkConfigList_ $link
}
#
# GT-ITM may occasionally generate duplicate links, so we need this check
# to ensure duplicated links do not appear in nam trace files.
#
Simulator instproc remove-nam-linkconfig {i1 i2} {
$self instvar linkConfigList_ link_
if ![info exists linkConfigList_] {
return
}
set pos [lsearch $linkConfigList_ $link_($i1:$i2)]
if {$pos >= 0} {
set linkConfigList_ [lreplace $linkConfigList_ $pos $pos]
return
}
set pos [lsearch $linkConfigList_ $link_($i2:$i1)]
if {$pos >= 0} {
set linkConfigList_ [lreplace $linkConfigList_ $pos $pos]
}
}
# Armando L. Caro Jr. <acaro@@cis,udel,edu> 10/22/2001
#
# we create a simplex link (NOT duplex) from the core to the interface. we can
# use arbitrary params (bw, delay, etc) since we'll never actually transmit
# data on these links. they are only used for routing (ie, to determine which
# interface a packet should go out from)
#
Simulator instproc multihome-add-interface { core if } {
$self instvar link_
set coreId [$core id]
set ifId [$if id]
# arbitrary values (doesn't matter since link will NEVER be used!)
set bw 1Mb
set delay 100ms
set type DropTail
if [info exists link_($coreId:$ifId)] {
$self remove-nam-linkconfig $coreId $ifId
}
eval $self simplex-link $core $if $bw $delay $type
# Modified by GFR for nix-vector routing
if { [Simulator set nix-routing] } {
# Inform nodes of neighbors
$n1 set-neighbor [$core id]
$n2 set-neighbor [$if id]
}
$core instvar multihome_interfaces_ num_interfaces_
set interface_ {}
# interface node
lappend interface_ $if
# link from interface node to core node
lappend interface_ [$link_($coreId:$ifId) set head_]
lappend multihome_interfaces_ $interface_
}
Simulator instproc duplex-link { n1 n2 bw delay type args } {
$self instvar link_
set i1 [$n1 id]
set i2 [$n2 id]
if [info exists link_($i1:$i2)] {
$self remove-nam-linkconfig $i1 $i2
}
eval $self simplex-link $n1 $n2 $bw $delay $type $args
eval $self simplex-link $n2 $n1 $bw $delay $type $args
# Modified by GFR for nix-vector routing
if { [Simulator set nix-routing] } {
# Inform nodes of neighbors
$n1 set-neighbor [$n2 id]
$n2 set-neighbor [$n1 id]
}
}
Simulator instproc duplex-intserv-link { n1 n2 bw pd sched signal adc args } {
eval $self duplex-link $n1 $n2 $bw $pd intserv $sched $signal $adc $args
}
Simulator instproc simplex-link-op { n1 n2 op args } {
$self instvar link_
eval $link_([$n1 id]:[$n2 id]) $op $args
}
Simulator instproc duplex-link-op { n1 n2 op args } {
$self instvar link_
eval $link_([$n1 id]:[$n2 id]) $op $args
eval $link_([$n2 id]:[$n1 id]) $op $args
}
Simulator instproc flush-trace {} {
$self instvar alltrace_
if [info exists alltrace_] {
foreach trace $alltrace_ {
$trace flush
}
}
}
Simulator instproc namtrace-all file {
$self instvar namtraceAllFile_
if {$file != ""} {
set namtraceAllFile_ $file
} else {
unset namtraceAllFile_
}
}
Simulator instproc energy-color-change {level1 level2} {
$self instvar level1_ level2_
set level1_ $level1
set level2_ $level2
}
Simulator instproc namtrace-all-wireless {file optx opty} {
$self instvar namtraceAllFile_
# indicate that we need a W event written to the trace
$self set namNeedsW_ 1
if { $optx != "" && $opty != "" } {
$self set namWx_ $optx
$self set namWy_ $opty
}
$self namtrace-all $file
}
Simulator instproc nam-end-wireless {stoptime} {
$self instvar namtraceAllFile_
if {$namtraceAllFile_ != ""} {
$self puts-nam-config "W -t $stoptime"
}
}
Simulator instproc namtrace-some file {
$self instvar namtraceSomeFile_
set namtraceSomeFile_ $file
}
# Support for event-tracing
Simulator instproc eventtrace-all {{file ""}} {
$self instvar eventTraceAll_ eventtraceAllFile_ traceAllFile_
set eventTraceAll_ 1
if {$file != ""} {
set eventtraceAllFile_ $file
} else {
set eventtraceAllFile_ $traceAllFile_
}
}
Simulator instproc initial_node_pos {nodep size} {
$self instvar addressType_
$self instvar energyModel_
if [info exists energyModel_] {
set nodeColor "green"
} else {
set nodeColor "black"
}
if { [info exists addressType_] && $addressType_ == "hierarchical" } {
# Hierarchical addressing
$self puts-nam-config "n -t * -a [$nodep set address_] \
-s [$nodep id] -x [$nodep set X_] -y [$nodep set Y_] -Z [$nodep set Z_] \
-z $size -v circle -c $nodeColor"
} else {
# Flat addressing
$self puts-nam-config "n -t * -s [$nodep id] \
-x [$nodep set X_] -y [$nodep set Y_] -Z [$nodep set Z_] -z $size \
-v circle -c $nodeColor"
}
}
Simulator instproc trace-all file {
$self instvar traceAllFile_
set traceAllFile_ $file
}
Simulator instproc get-nam-traceall {} {
$self instvar namtraceAllFile_
if [info exists namtraceAllFile_] {
return $namtraceAllFile_
} else {
return ""
}
}
Simulator instproc get-ns-traceall {} {
$self instvar traceAllFile_
if [info exists traceAllFile_] {
return $traceAllFile_
} else {
return ""
}
}
# If exists a traceAllFile_, print $str to $traceAllFile_
Simulator instproc puts-ns-traceall { str } {
$self instvar traceAllFile_
if [info exists traceAllFile_] {
puts $traceAllFile_ $str
}
}
# If exists a traceAllFile_, print $str to $traceAllFile_
Simulator instproc puts-nam-traceall { str } {
$self instvar namtraceAllFile_
if [info exists namtraceAllFile_] {
puts $namtraceAllFile_ $str
} elseif [info exists namtraceSomeFile_] {
puts $namtraceSomeFile_ $str
}
}
# namConfigFile is used for writing color/link/node/queue/annotations.
# XXX It cannot co-exist with namtraceAll.
Simulator instproc namtrace-config { f } {
$self instvar namConfigFile_
set namConfigFile_ $f
}
Simulator instproc get-nam-config {} {
$self instvar namConfigFile_
if [info exists namConfigFile_] {
return $namConfigFile_
} else {
return ""
}
}
# Used only for writing nam configurations to trace file(s). This is different
# from puts-nam-traceall because we may want to separate configuration
# informations and actual tracing information
Simulator instproc puts-nam-config { str } {
$self instvar namtraceAllFile_ namConfigFile_
if [info exists namConfigFile_] {
puts $namConfigFile_ $str
} elseif [info exists namtraceAllFile_] {
puts $namtraceAllFile_ $str
} elseif [info exists namtraceSomeFile_] {
puts $namtraceSomeFile_ $str
}
}
Simulator instproc color { id name } {
$self instvar color_
set color_($id) $name
}
Simulator instproc get-color { id } {
$self instvar color_
return $color_($id)
}
# you can pass in {} as a null file
Simulator instproc create-trace { type file src dst {op ""} } {
$self instvar alltrace_
set p [new Trace/$type]
$p tagged [Simulator set TaggedTrace_]
if [catch {$p set src_ [$src id]}] {
$p set src_ $src
}
if [catch {$p set dst_ [$dst id]}] {
$p set dst_ $dst
}
lappend alltrace_ $p
if {$file != ""} {
$p ${op}attach $file
}
return $p
}
Simulator instproc create-eventtrace {type owner } {
$self instvar alltrace_
$self instvar eventTraceAll_ eventtraceAllFile_ namtraceAllFile_
if ![info exists eventTraceAll_] return
if { $eventTraceAll_ == 1 } {
set et [new BaseTrace/$type]
$owner cmd eventtrace $et
lappend alltrace_ $et
$et attach $eventtraceAllFile_
if [info exists namtraceAllFile_] {
$et namattach $namtraceAllFile_
}
}
}
Simulator instproc namtrace-queue { n1 n2 {file ""} } {
$self instvar link_ namtraceAllFile_
if {$file == ""} {
if ![info exists namtraceAllFile_] return
set file $namtraceAllFile_
}
$link_([$n1 id]:[$n2 id]) nam-trace $self $file
# Added later for queue specific tracing events other than enque,
# deque and drop as of now nam does not understand special events.
# Changes will have to be made to nam for it to understand events
# like early drops if they are prefixed differently than "d". - ratul
set queue [$link_([$n1 id]:[$n2 id]) queue]
$queue attach-nam-traces $n1 $n2 $file
}
Simulator instproc trace-queue { n1 n2 {file ""} } {
$self instvar link_ traceAllFile_
if {$file == ""} {
if ![info exists traceAllFile_] return
set file $traceAllFile_
}
$link_([$n1 id]:[$n2 id]) trace $self $file
# Added later for queue specific tracing events other than enque,
# deque and drop - ratul
set queue [$link_([$n1 id]:[$n2 id]) queue]
$queue attach-traces $n1 $n2 $file
}
#
# arrange for queue length of link between nodes n1 and n2
# to be tracked and return object that can be queried
# to learn average q size etc. XXX this API still rough
#
Simulator instproc monitor-queue { n1 n2 qtrace { sampleInterval 0.1 } } {
$self instvar link_
return [$link_([$n1 id]:[$n2 id]) init-monitor $self $qtrace $sampleInterval]
}
Simulator instproc queue-limit { n1 n2 limit } {
$self instvar link_
[$link_([$n1 id]:[$n2 id]) queue] set limit_ $limit
if {[[$link_([$n1 id]:[$n2 id]) queue] info class] == "Queue/XCP"} {
[$link_([$n1 id]:[$n2 id]) queue] queue-limit $limit
}
}
Simulator instproc drop-trace { n1 n2 trace } {
$self instvar link_
[$link_([$n1 id]:[$n2 id]) queue] drop-target $trace
}
Simulator instproc cost {n1 n2 c} {
$self instvar link_
$link_([$n1 id]:[$n2 id]) cost $c
}
# Armando L. Caro Jr. <acaro@@cis,udel,edu> 10/22/2001
Simulator instproc multihome-attach-agent { core agent } {
$agent set-multihome-core [$core entry]
foreach interface [$core set multihome_interfaces_] {
set ifNode [lindex $interface 0]
set coreLink [lindex $interface 1]
# attach agent to the node for each interface
$ifNode attach $agent
set addr [$agent set agent_addr_]
set port [$agent set agent_port_]
set entry [$ifNode entry]
# give the interface info to the agent
$agent add-multihome-interface $addr $port $entry $coreLink
$agent instvar multihome_bindings_
set binding_ {}
lappend binding_ $addr
lappend binding_ $port
lappend multihome_bindings_ $binding_
}
}
Simulator instproc attach-agent { node agent } {
$node attach $agent
# $agent set nodeid_ [$node id]
# Armando L. Caro Jr. <acaro@@cis,udel,edu> 10/22/2001
#
# list of tuples (addr, port)
# This is NEEDED so that single homed agents can play with multihomed
# ones!
# multihoming only for SCTP agents -Padma H.
if {[lindex [split [$agent info class] "/"] 1] == "SCTP"} {
$agent instvar multihome_bindings_
set binding_ {}
set addr [$agent set agent_addr_]
set port [$agent set agent_port_]
lappend binding_ $addr
lappend binding_ $port
lappend multihome_bindings_ $binding_
}
}
Simulator instproc attach-tbf-agent { node agent tbf } {
$node attach $agent
$agent attach-tbf $tbf
}
Simulator instproc detach-agent { node agent } {
# Debo added this
$self instvar conn_ nconn_ sflows_ nsflows_ useasim_
if {$useasim_ == 1} {
set list ""
set s [$node id]
set d [[$self get-node-by-addr [$agent set dst_addr_]] id]
foreach x $conn_ {
set t [split $x ":"]
if {[string compare [lindex $t 0]:[lindex $t 1] $s:$d] != 0} {
lappend list_ $x
}
}
set conn_ list
set nconn_ [expr $nconn_ -1]
# ---------------------------------------
}
$self instvar nullAgent_
$node detach $agent $nullAgent_
}
#
# Helper proc for setting delay on an existing link
#
Simulator instproc delay { n1 n2 delay {type simplex} } {
$self instvar link_
set sid [$n1 id]
set did [$n2 id]
if [info exists link_($sid:$did)] {
set d [$link_($sid:$did) link]
$d set delay_ $delay
}
if {$type == "duplex"} {
if [info exists link_($did:$sid)] {
set d [$link_($did:$sid) link]
$d set delay_ $delay
}
}
}
#
# Helper proc for setting bandwidth on an existing link
#
Simulator instproc bandwidth { n1 n2 bandwidth {type simplex} } {
$self instvar link_
set sid [$n1 id]
set did [$n2 id]
if [info exists link_($sid:$did)] {
set d [$link_($sid:$did) link]
$d set bandwidth_ $bandwidth
}
if {$type == "duplex"} {
if [info exists link_($did:$sid)] {
set d [$link_($did:$sid) link]
$d set bandwidth_ $bandwidth
}
}
}
#XXX need to check that agents are attached to nodes already
Simulator instproc connect {src dst} {
$self instvar conn_ nconn_ sflows_ nsflows_ useasim_
# Armando L. Caro Jr. <acaro@@cis,udel,edu>
# does the agent type support multihoming??
# @@@ do we need to worry about $useasim_ below?? (wasn't in 2.1b8)
if {[lindex [split [$src info class] "/"] 1] == "SCTP"} {
$self multihome-connect $src $dst
}
$self simplex-connect $src $dst
$self simplex-connect $dst $src
# Debo
if {$useasim_ == 1} {
set sid [$src nodeid]
set sport [$src set agent_port_]
set did [$dst nodeid]
set dport [$dst set agent_port_]
if {[lindex [split [$src info class] "/"] 1] == "TCP"} {
lappend conn_ $sid:$did:$sport:$dport
incr nconn_
# set $nconn_ [expr $nconn_ + 1]
# puts "Set a connection with id $nconn_ between $sid and $did"
}
}
return $src
}
# Armando L. Caro Jr. <acaro@@cis,udel,edu> 10/12/2001
Simulator instproc multihome-connect {src dst} {
set destNum 0
foreach binding [$src set multihome_bindings_] {
incr destNum
set addr [lindex $binding 0]
set port [lindex $binding 1]
$dst add-multihome-destination $addr $port
}
if {$destNum == 0} {
# src isn't multihomed, so make sure we do an
# add-multihome-destination
$dst add-multihome-destination \
[$src set agent_addr_] [$src set agent_port_]
}
set destNum 0
foreach binding [$dst set multihome_bindings_] {
incr destNum
set addr [lindex $binding 0]
set port [lindex $binding 1]
$src add-multihome-destination $addr $port
}
if {$destNum == 0} {
# dst isn't multihomed, so make sure we do an
# add-multihome-destination
$src add-multihome-destination \
[$dst set agent_addr_] [$dst set agent_port_]
}
}
Simulator instproc simplex-connect { src dst } {
$src set dst_addr_ [$dst set agent_addr_]
$src set dst_port_ [$dst set agent_port_]
# Polly Huang: to support abstract TCP simulations
if {[lindex [split [$src info class] "/"] 1] == "AbsTCP"} {
$self at [$self now] "$self rtt $src $dst"
$dst set class_ [$src set class_]
}
return $src
}
#
# Here are a bunch of helper methods.
#
Simulator proc instance {} {
set ns [Simulator info instances]
if { $ns != "" } {
return $ns
}
foreach sim [Simulator info subclass] {
set ns [$sim info instances]
if { $ns != "" } {
return $ns
}
}
error "Cannot find instance of simulator"
}
Simulator instproc get-number-of-nodes {} {
return [$self array size Node_]
}
Simulator instproc get-node-by-id id {
$self instvar Node_
return $Node_($id)
}
# Given an node's address, Return the node-id
Simulator instproc get-node-id-by-addr address {
$self instvar Node_
set n [Node set nn_]
for {set q 0} {$q < $n} {incr q} {
set nq $Node_($q)
if {[string compare [$nq node-addr] $address] == 0} {
return $q
}
}
error "get-node-id-by-addr:Cannot find node with given address"
}
# Given an node's address, return the node
Simulator instproc get-node-by-addr address {
return [$self get-node-by-id [$self get-node-id-by-addr $address]]
}
Simulator instproc all-nodes-list {} {
$self instvar Node_
set nodes ""
foreach n [lsort -dictionary [array names Node_]] {
lappend nodes $Node_($n)
}
return $nodes
}
Simulator instproc link { n1 n2 } {
$self instvar Node_ link_
if { ![catch "$n1 info class Node"] } {
set n1 [$n1 id]
}
if { ![catch "$n2 info class Node"] } {
set n2 [$n2 id]
}
if [info exists link_($n1:$n2)] {
return $link_($n1:$n2)
}
return ""
}
# Creates connection. First creates a source agent of type s_type and binds
# it to source. Next creates a destination agent of type d_type and binds
# it to dest. Finally creates bindings for the source and destination agents,
# connects them, and returns the source agent.
Simulator instproc create-connection {s_type source d_type dest pktClass} {
set s_agent [new Agent/$s_type]
set d_agent [new Agent/$d_type]
$s_agent set fid_ $pktClass
$d_agent set fid_ $pktClass
$self attach-agent $source $s_agent
$self attach-agent $dest $d_agent
$self connect $s_agent $d_agent
return $s_agent
}
# Creates a highspeed connection. Similar to create-connection
# above except the sink agent requires additional work -- Sylvia
Simulator instproc create-highspeed-connection {s_type source d_type dest pktClass} {
set s_agent [new Agent/$s_type]
set d_agent [new Agent/$d_type]
$d_agent resize_buffers
$s_agent set fid_ $pktClass
$d_agent set fid_ $pktClass
$self attach-agent $source $s_agent
$self attach-agent $dest $d_agent
$self connect $s_agent $d_agent
return $s_agent
}
# Creates connection. First creates a source agent of type s_type and binds
# it to source. Next creates a destination agent of type d_type and binds
# it to dest. Finally creates bindings for the source and destination agents,
# connects them, and returns a list of source agent and destination agent.
Simulator instproc create-connection-list {s_type source d_type dest pktClass} {
set s_agent [new Agent/$s_type]
set d_agent [new Agent/$d_type]
$s_agent set fid_ $pktClass
$d_agent set fid_ $pktClass
$self attach-agent $source $s_agent
$self attach-agent $dest $d_agent
$self connect $s_agent $d_agent
return [list $s_agent $d_agent]
}
# Creates connection. First creates a source agent of type s_type and binds
# it to source. Next creates a destination agent of type d_type and binds
# it to dest. Finally creates bindings for the source and destination agents,
# connects them, and returns the source agent.
# The destination agent is set to listen, for full-tcp.
Simulator instproc create-connection-listen {s_type source d_type dest pktClass} {
set s_agent [new Agent/$s_type]
set d_agent [new Agent/$d_type]
$s_agent set fid_ $pktClass
$d_agent set fid_ $pktClass
$self attach-agent $source $s_agent
$self attach-agent $dest $d_agent
$self connect $s_agent $d_agent
$d_agent listen
return $s_agent
}
# This seems to be an obsolete procedure.
Simulator instproc create-tcp-connection {s_type source d_type dest pktClass} {
set s_agent [new Agent/$s_type]
set d_agent [new Agent/$d_type]
$s_agent set fid_ $pktClass
$d_agent set fid_ $pktClass
$self attach-agent $source $s_agent
$self attach-agent $dest $d_agent
return "$s_agent $d_agent"
}
#
# Other classifier methods overload the instproc-likes to track
# and return the installed objects.
#
Classifier instproc install {slot val} {
$self set slots_($slot) $val
$self cmd install $slot $val
}
Classifier instproc installNext val {
set slot [$self cmd installNext $val]
$self set slots_($slot) $val
set slot
}
Classifier instproc adjacents {} {
$self array get slots_
}
Classifier instproc in-slot? slot {
$self instvar slots_
set ret ""
if {[info exists slots_($slot)]} {
set ret $slots_($slot)
}
set ret
}
# For debugging
Classifier instproc dump {} {
$self instvar slots_ offset_ shift_ mask_
puts "classifier $self"
puts "\t$offset_ offset"
puts "\t$shift_ shift"
puts "\t$mask_ mask"
puts "\t[array size slots_] slots"
foreach i [lsort -integer [array names slots_]] {
set iv $slots_($i)
puts "\t\tslot $i: $iv ([$iv info class])"
}
}
Classifier instproc no-slot slot {
puts stderr "--- Classfier::no-slot{} default handler (tcl/lib/ns-lib.tcl) ---"
puts stderr "\t$self: no target for slot $slot"
puts stderr "\t$self type: [$self info class]"
puts stderr "content dump:"
$self dump
puts stderr "---------- Finished standard no-slot{} default handler ----------"
# Clear output before we bail out
[Simulator instance] flush-trace
exit 1
}
Classifier/Hash instproc dump args {
eval $self next $args
$self instvar default_
puts "\t$default_ default"
}
Classifier/Hash instproc init nbuck {
# We need to make sure that port shift/mask values are there
# so we set them after they get their default values
$self next $nbuck
$self instvar shift_ mask_
set shift_ [AddrParams NodeShift 1]
set mask_ [AddrParams NodeMask 1]
}
Classifier/Port/Reserve instproc init args {
eval $self next
$self reserve-port 2
}
Simulator instproc makeflowmon { cltype { clslots 29 } } {
set flowmon [new QueueMonitor/ED/Flowmon]
set cl [new Classifier/Hash/$cltype $clslots]
$cl proc unknown-flow { src dst fid } {
set fdesc [new QueueMonitor/ED/Flow]
set dsamp [new Samples]
$fdesc set-delay-samples $dsamp
set slot [$self installNext $fdesc]
$self set-hash auto $src $dst $fid $slot
}
$cl proc no-slot slotnum {
#
# note: we can wind up here when a packet passes
# through either an Out or a Drop Snoop Queue for
# a queue that the flow doesn't belong to anymore.
# Since there is no longer hash state in the
# hash classifier, we get a -1 return value for the
# hash classifier's classify() function, and there
# is no node at slot_[-1]. What to do about this?
# Well, we are talking about flows that have already
# been moved and so should rightly have their stats
# zero'd anyhow, so for now just ignore this case..
# puts "classifier $self, no-slot for slotnum $slotnum"
}
$flowmon classifier $cl
return $flowmon
}
# attach a flow monitor to a link
# 3rd argument dictates whether early drop support is to be used
Simulator instproc attach-fmon {lnk fm { edrop 0 } } {
set isnoop [new SnoopQueue/In]
set osnoop [new SnoopQueue/Out]
set dsnoop [new SnoopQueue/Drop]
$lnk attach-monitors $isnoop $osnoop $dsnoop $fm
if { $edrop != 0 } {
set edsnoop [new SnoopQueue/EDrop]
$edsnoop set-monitor $fm
[$lnk queue] early-drop-target $edsnoop
$edsnoop target [$self set nullAgent_]
}
[$lnk queue] drop-target $dsnoop
}
# Added by Yun Wang
Simulator instproc maketbtagger { cltype { clslots 29 } } {
set tagger [new QueueMonitor/ED/Tagger]
set cl [new Classifier/Hash/$cltype $clslots]
$cl proc unknown-flow { src dst fid } {
set fdesc [new QueueMonitor/ED/Flow/TB]
set dsamp [new Samples]
$fdesc set-delay-samples $dsamp
set slot [$self installNext $fdesc]
$self set-hash auto $src $dst $fid $slot
}
$cl proc set-rate { src dst fid hashbucket rate depth init} {
set fdesc [new QueueMonitor/ED/Flow/TB]
set dsamp [new Samples]
$fdesc set-delay-samples $dsamp
$fdesc set target_rate_ $rate
$fdesc set bucket_depth_ $depth
# Initialize the bucket as full
$fdesc set tbucket_ $init
set slot [$self installNext $fdesc]
$self set-hash $hashbucket $src $dst $fid $slot
}
$cl proc no-slot slotnum {
#
# note: we can wind up here when a packet passes
# through either an Out or a Drop Snoop Queue for
# a queue that the flow doesn't belong to anymore.
# Since there is no longer hash state in the
# hash classifier, we get a -1 return value for the
# hash classifier's classify() function, and there
# is no node at slot_[-1]. What to do about this?
# Well, we are talking about flows that have already
# been moved and so should rightly have their stats
# zero'd anyhow, so for now just ignore this case..
# puts "classifier $self, no-slot for slotnum $slotnum"
}
$tagger classifier $cl
return $tagger
}
# Added by Yun Wang
Simulator instproc maketswtagger { cltype { clslots 29 } } {
set tagger [new QueueMonitor/ED/Tagger]
set cl [new Classifier/Hash/$cltype $clslots]
$cl proc unknown-flow { src dst fid hashbucket } {
set fdesc [new QueueMonitor/ED/Flow/TSW]
set dsamp [new Samples]
$fdesc set-delay-samples $dsamp
set slot [$self installNext $fdesc]
$self set-hash $hashbucket $src $dst $fid $slot
}
$cl proc no-slot slotnum {
#
# note: we can wind up here when a packet passes
# through either an Out or a Drop Snoop Queue for
# a queue that the flow doesn't belong to anymore.
# Since there is no longer hash state in the
# hash classifier, we get a -1 return value for the
# hash classifier's classify() function, and there
# is no node at slot_[-1]. What to do about this?
# Well, we are talking about flows that have already
# been moved and so should rightly have their stats
# zero'd anyhow, so for now just ignore this case..
# puts "classifier $self, no-slot for slotnum $slotnum"
}
$tagger classifier $cl
return $tagger
}
# attach a Tagger to a link
# Added by Yun Wang
Simulator instproc attach-tagger {lnk fm} {
set isnoop [new SnoopQueue/Tagger]
$lnk attach-taggers $isnoop $fm
}
# Imported from session.tcl. It is deleted there.
### to insert loss module to regular links in detailed Simulator
Simulator instproc lossmodel {lossobj from to} {
set link [$self link $from $to]
$link errormodule $lossobj
}
# This function generates losses that can be visualized by nam.
Simulator instproc link-lossmodel {lossobj from to} {
set link [$self link $from $to]
$link insert-linkloss $lossobj
}
#### Polly Huang: Simulator class instproc to support abstract tcp simulations
Simulator instproc rtt { src dst } {
$self instvar routingTable_ delay_
set srcid [[$src set node_] id]
set dstid [[$dst set node_] id]
set delay 0
set tmpid $srcid
while {$tmpid != $dstid} {
set nextid [$routingTable_ lookup $tmpid $dstid]
set tmpnode [$self get-node-by-id $tmpid]
set nextnode [$self get-node-by-id $nextid]
set tmplink [[$self link $tmpnode $nextnode] link]
set delay [expr $delay + [expr 2 * [$tmplink set delay_]]]
set delay [expr $delay + [expr 8320 / [$tmplink set bandwidth_]]]
set tmpid $nextid
}
$src rtt $delay
return $delay
}
Simulator instproc abstract-tcp {} {
$self instvar TahoeAckfsm_ RenoAckfsm_ TahoeDelAckfsm_ RenoDelAckfsm_ dropper_
$self set TahoeAckfsm_ [new FSM/TahoeAck]
$self set RenoAckfsm_ [new FSM/RenoAck]
$self set TahoeDelAckfsm_ [new FSM/TahoeDelAck]
$self set RenoDelAckfsm_ [new FSM/RenoDelAck]
$self set nullAgent_ [new DropTargetAgent]
}
# Chalermek: For Diffusion, Flooding, and Omnicient Multicast
Simulator instproc create-diffusion-rate-agent {node} {
global opt
set diff [new Agent/Diffusion/RateGradient]
$node set diffagent_ $diff
$node set ragent_ $diff
$diff on-node $node
if [info exist opt(enablePos)] {
if {$opt(enablePos) == "true"} {
$diff enable-pos
} else {
$diff disable-pos
}
}
if [info exist opt(enableNeg)] {
if {$opt(enableNeg) == "true"} {
$diff enable-neg
} else {
$diff disable-neg
}
}
if [info exist opt(suppression)] {
if {$opt(suppression) == "true"} {
$diff enable-suppression
} else {
$diff disable-suppression
}
}
if [info exist opt(subTxType)] {
$diff set-sub-tx-type $opt(subTxType)
}
if [info exist opt(orgTxType)] {
$diff set-org-tx-type $opt(orgTxType)
}
if [info exist opt(posType)] {
$diff set-pos-type $opt(posType)
}
if [info exist opt(posNodeType)] {
$diff set-pos-node-type $opt(posNodeType)
}
if [info exist opt(negWinType)] {
$diff set-neg-win-type $opt(negWinType)
}
if [info exist opt(negThrType)] {
$diff set-neg-thr-type $opt(negThrType)
}
if [info exist opt(negMaxType)] {
$diff set-neg-max-type $opt(negMaxType)
}
$self put-in-list $diff
$self at 0.0 "$diff start"
return $diff
}
Simulator instproc create-diffusion-probability-agent {node} {
global opt
set diff [new Agent/Diffusion/ProbGradient]
$node set diffagent_ $diff
$node set ragent_ $diff
$diff on-node $node
if [info exist opt(enablePos)] {
if {$opt(enablePos) == "true"} {
$diff enable-pos
} else {
$diff disable-pos
}
}
if [info exist opt(enableNeg)] {
if {$opt(enableNeg) == "true"} {
$diff enable-neg
} else {
$diff disable-neg
}
}
$self put-in-list $diff
$self at 0.0 "$diff start"
return $diff
}
# Diffusioncore agent (in diffusion) maps to the wireless routing agent
# in ns
Simulator instproc create-core-diffusion-rtg-agent {node} {
$self instvar stopTime_ diffFilter_
Node instvar ragent_ dmux_
set ragent [new Agent/DiffusionRouting [$node id]]
$node set ragent_ $ragent
# at stop-time core-diffusion dumps stats data
# see diffusion.cc for details
if { [info exists stopTime_] } {
$ragent stop-time $stopTime_
}
if { ![info exists diffFilter_] } {
puts stderr "Error: No filter defined for diffusion!\n"
exit 1
}
$node create-diffusionApp-agent $diffFilter_
return $ragent
}
Simulator instproc create-flooding-agent {node} {
set flood [new Agent/Flooding]
$node set ragent_ $flood
$flood on-node $node
$self put-in-list $flood
$self at 0.0 "$flood start"
return $flood
}
Simulator instproc create-omnimcast-agent {node} {
set omni [new Agent/OmniMcast]
$node set ragent_ $omni
$omni on-node $node
$self put-in-list $omni
$self at 0.0 "$omni start"
return $omni
}
# XXX These are very simulation-specific methods, why should they belong here?
Simulator instproc put-in-list {agent} {
$self instvar lagent
lappend lagent $agent
}
Simulator instproc terminate-all-agents {} {
$self instvar lagent
foreach i $lagent {
$i terminate
}
}
Simulator instproc prepare-to-stop {} {
$self instvar lagent
foreach i $lagent {
$i stop
}
}
|