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
|
# Test suite for HTTP server, client, proxy cache.
#
# Also tests TcpApp, which is an Application used to transmit
# application-level data. Because current TCP isn't capable of this,
# we build this functionality based on byte-stream model of underlying
# TCP connection.
#
# $Header: /cvsroot/nsnam/ns-2/tcl/test/test-suite-webcache.tcl,v 1.26 2011/10/02 22:31:14 tom_henderson Exp $
#----------------------------------------------------------------------
# Related Files
#----------------------------------------------------------------------
source misc.tcl
source topologies.tcl
remove-all-packet-headers ; # removes all except common
add-packet-header Flags IP TCP HttpInval ; # hdrs reqd for validation test
# FOR UPDATING GLOBAL DEFAULTS:
Agent/TCP set precisionReduce_ false ; # default changed on 2006/1/24.
Agent/TCP set rtxcur_init_ 6.0 ; # Default changed on 2006/01/21
Agent/TCP set updated_rttvar_ false ; # Variable added on 2006/1/21
Agent/TCP set tcpTick_ 0.1
# The default for tcpTick_ is being changed to reflect a changing reality.
Agent/TCP set rfc2988_ false
# The default for rfc2988_ is being changed to true.
Agent/TCP set exitFastRetrans_ false
#
Agent/TCP set useHeaders_ false
# The default is being changed to useHeaders_ true.
Agent/TCP set windowInit_ 1
# The default is being changed to 2.
Agent/TCP set singledup_ 0
# The default is being changed to 1
Agent/TCP set minrto_ 0
# The default is being changed to minrto_ 1
Agent/TCP set timerfix_ false
# The default is being changed to true.
Agent/TCP set syn_ false
Agent/TCP set delay_growth_ false
# In preparation for changing the default values for syn_ and delay_growth_.
#----------------------------------------------------------------------
# Misc setup
#----------------------------------------------------------------------
set tcl_precision 10
#----------------------------------------------------------------------
# Topologies for cache testing
#----------------------------------------------------------------------
# Simplest topology: 1 client + 1 cache + 1 server
Class Topology/cache0 -superclass SkelTopology
Topology/cache0 instproc init ns {
$self next
$self instvar node_
set node_(c) [$ns node]
set node_(e) [$ns node]
set node_(s) [$ns node]
$ns duplex-link $node_(s) $node_(e) 1.5Mb 50ms DropTail
$ns duplex-link $node_(e) $node_(c) 10Mb 2ms DropTail
$ns duplex-link-op $node_(c) $node_(e) orient right
$ns duplex-link-op $node_(e) $node_(s) orient right
}
# Hierarchical cache, 1 server + 7 cache + 4 clients, server linked to
# a top-level cache
Class Topology/cache2 -superclass SkelTopology
Topology/cache2 instproc init ns {
$self next
$self instvar node_
set node_(c0) [$ns node]
set node_(c1) [$ns node]
set node_(c2) [$ns node]
set node_(c3) [$ns node]
set node_(e0) [$ns node]
set node_(e1) [$ns node]
set node_(e2) [$ns node]
set node_(e3) [$ns node]
set node_(e4) [$ns node]
set node_(e5) [$ns node]
set node_(e6) [$ns node]
set node_(s0) [$ns node]
# between top-level cache: OC3
$ns duplex-link $node_(e0) $node_(e1) 155Mb 100ms DropTail
# server to top-level cache and inside a cache hierarchy: T1
$ns duplex-link $node_(s0) $node_(e0) 1.5Mb 50ms DropTail
$ns duplex-link $node_(e0) $node_(e2) 1.5Mb 50ms DropTail
$ns duplex-link $node_(e0) $node_(e3) 1.5Mb 50ms DropTail
$ns duplex-link $node_(e1) $node_(e4) 1.5Mb 50ms DropTail
$ns duplex-link $node_(e1) $node_(e5) 1.5Mb 50ms DropTail
$ns duplex-link $node_(e2) $node_(e6) 10Mb 2ms DropTail
# client to caches: 10Mb ethernet
$ns duplex-link $node_(e2) $node_(c0) 10Mb 2ms DropTail
$ns duplex-link $node_(e6) $node_(c1) 10Mb 2ms DropTail
$ns duplex-link $node_(e4) $node_(c2) 10Mb 2ms DropTail
$ns duplex-link $node_(e1) $node_(c3) 10Mb 2ms DropTail
$ns duplex-link-op $node_(s0) $node_(e0) orient right
$ns duplex-link-op $node_(e0) $node_(e1) orient right
$ns duplex-link-op $node_(e0) $node_(e2) orient left-down
$ns duplex-link-op $node_(e0) $node_(e3) orient right-down
$ns duplex-link-op $node_(e2) $node_(e6) orient down
$ns duplex-link-op $node_(c0) $node_(e2) orient right
$ns duplex-link-op $node_(c1) $node_(e6) orient right
$ns duplex-link-op $node_(e1) $node_(e4) orient left-down
$ns duplex-link-op $node_(e1) $node_(e5) orient right-down
$ns duplex-link-op $node_(e4) $node_(c2) orient down
$ns duplex-link-op $node_(e1) $node_(c3) orient right
$self checkConfig $class $ns
}
# Hierarchical cache, 1 server + 7 cache + 4 clients, server linked to a
# second-level cache.
Class Topology/cache3 -superclass SkelTopology
Topology/cache3 instproc init ns {
$self next
$self instvar node_
set node_(c0) [$ns node]
set node_(c1) [$ns node]
set node_(c2) [$ns node]
set node_(c3) [$ns node]
set node_(e0) [$ns node]
set node_(e1) [$ns node]
set node_(e2) [$ns node]
set node_(e3) [$ns node]
set node_(e4) [$ns node]
set node_(e5) [$ns node]
set node_(e6) [$ns node]
set node_(s0) [$ns node]
# between top-level cache: OC3
$ns duplex-link $node_(e0) $node_(e1) 155Mb 100ms DropTail
# server to top-level cache and inside a cache hierarchy: T1
$ns duplex-link $node_(s0) $node_(e5) 1.5Mb 50ms DropTail
$ns duplex-link $node_(e0) $node_(e2) 1.5Mb 50ms DropTail
$ns duplex-link $node_(e0) $node_(e3) 1.5Mb 50ms DropTail
$ns duplex-link $node_(e1) $node_(e4) 1.5Mb 50ms DropTail
$ns duplex-link $node_(e1) $node_(e5) 1.5Mb 50ms DropTail
$ns duplex-link $node_(e2) $node_(e6) 10Mb 2ms DropTail
# client to caches: 10Mb ethernet
$ns duplex-link $node_(e2) $node_(c0) 10Mb 2ms DropTail
$ns duplex-link $node_(e6) $node_(c1) 10Mb 2ms DropTail
$ns duplex-link $node_(e4) $node_(c2) 10Mb 2ms DropTail
$ns duplex-link $node_(e1) $node_(c3) 10Mb 2ms DropTail
$ns duplex-link-op $node_(e5) $node_(s0) orient right
$ns duplex-link-op $node_(e0) $node_(e1) orient right
$ns duplex-link-op $node_(e0) $node_(e2) orient left-down
$ns duplex-link-op $node_(e0) $node_(e3) orient right-down
$ns duplex-link-op $node_(e2) $node_(e6) orient down
$ns duplex-link-op $node_(c0) $node_(e2) orient right
$ns duplex-link-op $node_(c1) $node_(e6) orient right
$ns duplex-link-op $node_(e1) $node_(e4) orient left-down
$ns duplex-link-op $node_(e1) $node_(e5) orient right-down
$ns duplex-link-op $node_(e4) $node_(c2) orient down
$ns duplex-link-op $node_(e1) $node_(c3) orient right
$self checkConfig $class $ns
}
# Two level hierarchical cache. 1 server + 1 TLC + n 2nd caches with one
# bottleneck link connecting TCL to other caches + n clients
Class Topology/BottleNeck -superclass SkelTopology
Class Topology/BottleNeck -superclass SkelTopology
Topology/BottleNeck instproc init { ns } {
$self next
$self instvar node_
global opts
if [info exists opts(num-2nd-cache)] {
set n $opts(num-2nd-cache)
} else {
error "Topology/BottleNeck requires option num-2nd-cache"
}
set node_(s0) [$ns node]
# TLC is node e0
for {set i 0} {$i <= $n} {incr i} {
set node_(e$i) [$ns node]
}
# We create clients separately so we have consecutive ids for all
# clients
for {set i 0} {$i < $n} {incr i} {
set node_(c$i) [$ns node]
}
# Between TLC and server: T1
# $ns duplex-link $node_(e$n) $node_(s0) 1.5Mb 100ms DropTail
# Server attached to a client via a LAN
$ns duplex-link $node_(e0) $node_(s0) 1.5Mb 100ms DropTail
#$ns duplex-link $node_(e0) $node_(s0) 10Mb 2ms DropTail
# Bottleneck link
$self instvar dummy_
set dummy_ [$ns node]
$ns duplex-link $node_(e$n) $dummy_ 1.5Mb 50ms DropTail
for {set i 0} {$i < $n} {incr i} {
$ns duplex-link $node_(e$i) $dummy_ 1.5Mb 50ms DropTail
$ns duplex-link $node_(c$i) $node_(e$i) 10Mb 2ms DropTail
}
$self checkConfig $class $ns
}
Topology/BottleNeck instproc start-monitor { ns } {
$self instvar qmon_ node_ dummy_
# Traffic between server and its primary cache
set qmon_(svr_f) [$ns monitor-queue $node_(s0) $node_(e0) ""]
set qmon_(svr_t) [$ns monitor-queue $node_(e0) $node_(s0) ""]
global opts
set n $opts(num-2nd-cache)
# Traffic between TLC and all others
set qmon_(btnk_f) [$ns monitor-queue $node_(e$n) $dummy_ ""]
set qmon_(btnk_t) [$ns monitor-queue $dummy_ $node_(e$n) ""]
# Traffic for all the rest links
for {set i 0} {$i < $n} {incr i} {
set qmon_(e${i}_d_f) [$ns monitor-queue $node_(e$i) $dummy_ ""]
set qmon_(e${i}_d_t) [$ns monitor-queue $dummy_ $node_(e$i) ""]
set qmon_(e${i}_c${i}_f) \
[$ns monitor-queue $node_(e$i) $node_(c$i) ""]
set qmon_(e${i}_c${i}_t) \
[$ns monitor-queue $node_(c$i) $node_(e$i) ""]
}
#puts "Monitors started at time [$ns now]"
}
Topology/BottleNeck instproc mon-stat {} {
$self instvar qmon_
set total_bw 0
foreach n [array names qmon_] {
set total_bw [expr $total_bw + \
double([$qmon_($n) set bdepartures_])]
}
set svr_bw [expr double([$qmon_(svr_f) set bdepartures_]) + \
double([$qmon_(svr_t) set bdepartures_])]
set btnk_bw [expr double([$qmon_(btnk_f) set bdepartures_]) + \
double([$qmon_(btnk_t) set bdepartures_])]
return [list total_bw $total_bw svr_bw $svr_bw btnk_bw $btnk_bw]
}
#
# Three level hierarchical cache, binary tree.
#
Class Topology/cache4 -superclass SkelTopology
Topology/cache4 instproc init { ns } {
$self next
$self instvar node_
# server attached to a leaf cache
set node_(s0) [$ns node]
# TLC is node e0
for {set i 0} {$i <= 6} {incr i} {
set node_(e$i) [$ns node]
}
# All clients attached to leaf caches
for {set i 0} {$i <= 3} {incr i} {
set node_(c$i) [$ns node]
}
# Bottleneck link between TLC and other caches
set dummy [$ns node]
$ns duplex-link $node_(e0) $dummy 100Mb 1ms DropTail
$ns duplex-link $dummy $node_(e1) 1.5Mb 50ms DropTail
$ns duplex-link $dummy $node_(e2) 1.5Mb 50ms DropTail
$ns duplex-link $node_(e1) $node_(e3) 1.5Mb 10ms DropTail
$ns duplex-link $node_(e1) $node_(e4) 1.5Mb 10ms DropTail
$ns duplex-link $node_(e2) $node_(e5) 1.5Mb 10ms DropTail
$ns duplex-link $node_(e2) $node_(e6) 1.5Mb 10ms DropTail
$ns duplex-link $node_(e3) $node_(c0) 10Mb 1ms DropTail
$ns duplex-link $node_(e4) $node_(c1) 10Mb 1ms DropTail
$ns duplex-link $node_(e5) $node_(c2) 10Mb 1ms DropTail
$ns duplex-link $node_(e6) $node_(c3) 10Mb 1ms DropTail
$ns duplex-link $node_(s0) $node_(e3) 10Mb 10ms DropTail
$ns duplex-link-op $node_(e0) $dummy orient down
$ns duplex-link-op $dummy $node_(e1) orient left-down
$ns duplex-link-op $dummy $node_(e2) orient right-down
$ns duplex-link-op $node_(e1) $node_(e3) orient left-down
$ns duplex-link-op $node_(e1) $node_(e4) orient right-down
$ns duplex-link-op $node_(e2) $node_(e5) orient left-down
$ns duplex-link-op $node_(e2) $node_(e6) orient right-down
$ns duplex-link-op $node_(e3) $node_(c0) orient down
$ns duplex-link-op $node_(e4) $node_(c1) orient down
$ns duplex-link-op $node_(e5) $node_(c2) orient down
$ns duplex-link-op $node_(e6) $node_(c3) orient down
$ns duplex-link-op $node_(s0) $node_(e3) orient right
$self checkConfig $class $ns
}
# Same as Topology/cache4, except adding a dynamic links
Class Topology/cache4d -superclass Topology/cache4
Topology/cache4d instproc init { ns } {
$self next $ns
$self instvar node_
$ns rtmodel-at 500 down $node_(s0) $node_(e3)
$ns rtmodel-at 1000 up $node_(s0) $node_(e3)
$self checkConfig $class $ns
}
# 2-level topology with direct links from server to every client
# Compare invalidation vs ttl with direct request
Class Topology/cache5 -superclass SkelTopology
Topology/cache5 instproc init { ns } {
$self next
$self instvar node_
global opts
if [info exists opts(num-2nd-cache)] {
set n $opts(num-2nd-cache)
} else {
error "Topology/BottleNeck requires option num-2nd-cache"
}
set node_(s0) [$ns node]
# TLC is node e0
for {set i 0} {$i <= $n} {incr i} {
set node_(e$i) [$ns node]
}
# We create clients separately so we have consecutive ids for all
# clients
for {set i 0} {$i < $n} {incr i} {
set node_(c$i) [$ns node]
}
set sn [$ns node] ;# Dummy node for bottleneck link
$ns duplex-link $node_(e$n) $sn 1.5Mb 50ms DropTail
# Traffic on the duplex link.
$self instvar qmon_
set qmon_(btnk_f) [$ns monitor-queue $node_(e$n) $sn ""]
set qmon_(btnk_t) [$ns monitor-queue $sn $node_(e$n) ""]
for {set i 0} {$i < $n} {incr i} {
$ns duplex-link $node_(e$i) $sn 1.5Mb 50ms DropTail
$ns duplex-link $node_(c$i) $node_(e$i) 10Mb 2ms DropTail
# Server attached to all clients, but its parent cache is e0
# delay to server is proportional to its distance to e0
set delay [expr 5 + $i*5]ms
$ns duplex-link $node_(e$i) $node_(s0) 1.5Mb $delay DropTail
set qmon_(svr_f$i) [$ns monitor-queue $node_(s0) $node_(e$i) ""]
set qmon_(svr_t$i) [$ns monitor-queue $node_(e$i) $node_(s0) ""]
}
$self checkConfig $class $ns
}
#
# Simple 2 node topology testing SimpleTcp and TcpApp
#
Class Topology/2node -superclass SkelTopology
Topology/2node instproc init { ns } {
$self next
$self instvar node_
set node_(0) [$ns node]
set node_(1) [$ns node]
$ns duplex-link $node_(0) $node_(1) 1.5Mb 10ms DropTail
$ns duplex-link-op $node_(0) $node_(1) orient right
$self checkConfig $class $ns
}
#
# 3 node linear topology testing SimpleTcp and TcpApp
#
Class Topology/3node -superclass SkelTopology
Topology/3node instproc init { ns } {
$self next
$self instvar node_
set node_(0) [$ns node]
set node_(1) [$ns node]
set node_(2) [$ns node]
$ns duplex-link $node_(0) $node_(1) 1.5Mb 50ms DropTail
$ns duplex-link $node_(1) $node_(2) 1.5Mb 50ms DropTail
$ns duplex-link-op $node_(0) $node_(1) orient right
$ns duplex-link-op $node_(1) $node_(2) orient right
}
#
# 5 node topology testing HTTP cache, with 3 clients, one server and
# one cache
#
Class Topology/5node -superclass SkelTopology
Topology/5node instproc init { ns } {
$self next
$self instvar node_
for {set i 0} {$i < 5} {incr i} {
set node_($i) [$ns node]
}
$ns duplex-link $node_(3) $node_(4) 1Mb 50ms DropTail
$ns duplex-link $node_(0) $node_(3) 1Mb 50ms DropTail
$ns duplex-link $node_(1) $node_(3) 1Mb 50ms DropTail
$ns duplex-link $node_(2) $node_(3) 1Mb 50ms DropTail
$ns duplex-link-op $node_(4) $node_(3) orient right
$ns duplex-link-op $node_(0) $node_(3) orient down
$ns duplex-link-op $node_(1) $node_(3) orient left
$ns duplex-link-op $node_(2) $node_(3) orient up
}
#----------------------------------------------------------------------
# Section 1: Base test class
#----------------------------------------------------------------------
Class Test
Test instproc init-instvar v {
set cl [$self info class]
while { "$cl" != "" } {
foreach c $cl {
if ![catch "$c set $v" val] {
$self set $v $val
return
}
}
set parents ""
foreach c $cl {
if { $cl != "Object" } {
set parents "$parents [$c info superclass]"
}
}
set cl $parents
}
}
Test instproc init {} {
$self instvar ns_ trace_ net_ defNet_ testName_ node_ test_ topo_
set ns_ [new Simulator -multicast on]
set cls [$self info class]
set cls [split $cls /]
set test_ [lindex $cls [expr [llength $cls] - 1]]
global opts
ns-random $opts(ns-random-seed)
if $opts(nam-trace-all) {
#set trace_ [open "$test_" w]
# test-all-template1 requires data file to be temp.rands :(
set trace_ [open "temp.rands" w]
$ns_ trace-all $trace_
}
if ![info exists opts(net)] {
set net_ $defNet_
} else {
set net_ $opts(net)
}
if ![Topology/$defNet_ info subclass Topology/$net_] {
global argv0
puts "$argv0: cannot run test $test_ over topology $net_"
exit 1
}
set topo_ [new Topology/$net_ $ns_]
foreach i [$topo_ array names node_] {
# This would be cool, but lets try to be compatible
# with test-suite.tcl as far as possible.
#
# $self instvar $i
# set $i [$topo_ node? $i]
#
set node_($i) [$topo_ node? $i]
}
if {$net_ == $defNet_} {
set testName_ "$test_"
} else {
set testName_ "$test_:$net_"
}
}
# Use this so derived class would have a chance to overwrite the default net
# of parent classes
Test instproc set-defnet { defnet } {
$self instvar defNet_
if ![info exists defNet_] {
set defNet_ $defnet
}
}
Test instproc inherit-set { name val } {
$self instvar $name
if ![info exists $name] {
set $name $val
}
}
Test instproc write-testconf { file } {
$self instvar test_ net_
puts $file "# TESTNAME: $test_"
puts $file "# TOPOLOGY: $net_"
global opts
foreach n [lsort [array names opts]] {
# XXX Remove this after validating existing traces
if {$n == "quiet"} { continue }
puts $file "# $n: $opts($n)"
}
}
Test instproc set-routing {} {
}
Test instproc set-members {} {
}
Test instproc finish {} {
$self instvar ns_ trace_
if [info exists trace_] {
$ns_ flush-trace
close $trace_
}
exit 0
}
Test instproc run {} {
$self instvar finishTime_ ns_ trace_
global opts
if $opts(nam-trace-all) {
$self write-testconf $trace_
}
$self set-routing
$self set-members
$ns_ at $finishTime_ "$self finish"
$ns_ run
}
# option processing copied from John's ~ns/tcl/ex/rbp_demo.tcl
proc default_options {} {
global opts opt_wants_arg raw_opt_info
# raw_opt_info can be set in user's script
while {$raw_opt_info != ""} {
if {![regexp "^\[^\n\]*\n" $raw_opt_info line]} {
break
}
regsub "^\[^\n\]*\n" $raw_opt_info {} raw_opt_info
set line [string trim $line]
if {[regexp "^\[ \t\]*#" $line]} {
continue
}
if {$line == ""} {
continue
} elseif [regexp {^([^ ]+)[ ]+([^ ]+)$} $line dummy key value] {
set opts($key) $value
set opt_wants_arg($key) 1
} elseif [regexp {^([^ ]+)[ ]*$} $line dummy key] {
# So we don't need to assign opt($key)
set opt_wants_arg($key) 1
} else {
set opt_wants_arg($key) 0
error "unknown stuff \"$line\" in raw_opt_info"
}
}
}
proc process_args {} {
global argc argv opts opt_wants_arg
default_options
for {set i 0} {$i < $argc} {incr i} {
set key [lindex $argv $i]
if {$key == "-?" || $key == "--help" || $key == "-help" || $key == "-h"} {
usage
}
regsub {^--} $key {} key
if {![info exists opt_wants_arg($key)]} {
#puts stderr "unknown option $key";
#usage
continue
}
if {$opt_wants_arg($key)} {
incr i
set opts($key) [lindex $argv $i]
} else {
set opts($key) [expr !opts($key)]
}
}
}
# Startup procedure, called at the end of the script
proc run {} {
global argc argv opts raw_opt_info
# We don't actually have any real arguments, but we do have
# various initializations, which the script depends on.
process_args
#set prot $opts(prot)
# Calling convention by test-all-template1:
# ns <file> <test> [QUIET]
set prot [lindex $argv 0]
set opts(prot) $prot
if {$argc > 1} {
set opts(quiet) 1
} else {
set opts(quiet) 0
}
set test [new Test/$prot]
$test run
}
#----------------------------------------------------------------------
# Section 2 Base class for cache testing
#----------------------------------------------------------------------
Class Test-Cache -superclass Test
# Page lifetime is a uniform distribution in [min, max].
Test-Cache set startTime_ 10
Test-Cache instproc init {} {
$self next
$self instvar startTime_
set startTime_ [$class set startTime_]
$self set-pagepool
global opts
if [info exists opts(hb-interval)] {
Http/Client set hb_interval_ $opts(hb-interval)
Http/Cache/Inval/Mcast set hb_interval_ $opts(hb-interval)
Http/Server/Inval/Yuc set hb_interval_ $opts(hb-interval)
}
if [info exists opts(upd-interval)] {
Http/Cache/Inval/Mcast set upd_interval_ $opts(upd-interval)
}
if [info exists opts(cache-ims-size)] {
Http set IMSSize_ $opts(cache-ims-size)
}
if [info exists opt(server-inv-size)] {
Http set INVSize_ $opt(server-inv-size)
}
if [info exists opts(cache-ref-size)] {
Http set REFSize_ $opts(cache-ref-size)
}
if [info exists opts(client-req-size)] {
Http set REQSize_ $opts(client-req-size)
}
$self instvar ns_
$ns_ color 40 red
$ns_ color 41 orange
# Set default transport to SimpleTcp
Http set TRANSPORT_ SimpleTcp
}
# Allow global options to preempt, and derived classes to overwrite.
Test-Cache instproc set-server-type { servertype } {
$self instvar serverType_
global opts
if [info exists opts(server)] {
set serverType_ $opts(server)
} else {
set serverType_ $servertype
}
}
Test-Cache instproc set-cache-type { cachetype } {
$self instvar cacheType_
global opts
if [info exists opts(cache)] {
set cacheType_ $opts(cache)
} else {
set cacheType_ $cachetype
}
}
Test-Cache instproc set-client-type { clienttype } {
$self instvar clientType_
global opts
if [info exists opts(client)] {
set clientType_ $opts(client)
} else {
set clientType_ $clienttype
}
}
Test-Cache instproc set-pagepool {} {
$self instvar startTime_ finishTime_ pgp_
global opts
if [info exists opts(page-file)] {
set pgp_ [new PagePool/Trace $opts(page-file)]
set max [$pgp_ get-poolsize]
set tmp [new RandomVariable/Uniform]
$tmp set min_ 0
$tmp set max_ [expr $max - 1]
$pgp_ ranvar $tmp
$pgp_ set start_time_ $startTime_
set finishTime_ [expr [$pgp_ get-duration] + $startTime_]
} else {
# Use PagePool/Math
set pgp_ [new PagePool/Math]
# Size generator
set tmp [new RandomVariable/Constant]
$tmp set val_ $opts(avg-page-size)
$pgp_ ranvar-size $tmp
# Age generator
$self instvar ageRNG_
if ![info exists ageRNG_] {
set ageRNG_ [new RNG]
$ageRNG_ seed $opts(ns-random-seed)
}
set tmp [new RandomVariable/Exponential]
$tmp use-rng $ageRNG_
$tmp set avg_ $opts(avg-page-age)
$pgp_ ranvar-age $tmp
$pgp_ set start_time_ $startTime_
set finishTime_ [expr $startTime_ + $opts(duration)]
}
# puts "Start at $startTime_, stop at $finishTime_"
}
Test-Cache instproc set-req-generator { client } {
$self instvar pgp_ reqRNG_
global opts
if ![info exists reqRNG_] {
set reqRNG_ [new RNG]
$reqRNG_ seed $opts(ns-random-seed)
}
set tmp [new RandomVariable/Exponential]
$tmp use-rng $reqRNG_
$tmp set avg_ $opts(avg-req-interval)
$client set-interval-generator $tmp
$client set-page-generator $pgp_
}
Test-Cache instproc create-members {} {
$self instvar client_ server_ cache_ log_ test_ pgp_ node_ ns_ \
serverType_ cacheType_ clientType_
set st $serverType_
set ct $cacheType_
set lt $clientType_
global opts
if $opts(enable-log) {
set log_ [open "$test_.log" w]
$self write-testconf $log_
}
foreach n [array names node_] {
set type [string range $n 0 0]
set num [string range $n 1 end]
if {$num == ""} {
set num 0
}
switch $type {
s {
set server_($num) [new Http/Server$st $ns_ $node_($n)]
$server_($num) set-page-generator $pgp_
if $opts(enable-log) {
$server_($num) log $log_
}
}
e {
set cache_($num) [new Http/Cache$ct $ns_ $node_($n)]
if $opts(enable-log) {
$cache_($num) log $log_
}
}
c {
set client_($num) [new Http/Client$lt $ns_ $node_($n)]
$self set-req-generator $client_($num)
if $opts(enable-log) {
$client_($num) log $log_
}
}
}
}
}
Test-Cache instproc set-routing {} {
$self instvar ns_ mh_
set mh_ [$ns_ mrtproto CtrMcast {}]
$ns_ rtproto Session
}
Test-Cache instproc set-members {} {
$self instvar ns_ finishTime_ startTime_
$ns_ at $startTime_ "$self start-connection"
# $ns_ at $finishTime_ "$self finish-connection"
}
Test-Cache instproc set-groups {} {
# Dummy proc
}
Test-Cache instproc start-connection {} {
$self instvar ns_
$self create-members
$self set-connections
$self set-groups
# Let initializations settles down, then start requests
$ns_ at [expr [$ns_ now] + 10] "$self start-requests"
}
# Empty
Test-Cache instproc set-groups {} {
}
# Empty
Test-Cache instproc set-connections {} {
}
Test-Cache instproc finish {} {
$self instvar log_
if [info exists log_] {
close $log_
}
$self next
}
#----------------------------------------------------------------------
# Section 3:
# Tests of transport protocols and application data transmission over TCP
#----------------------------------------------------------------------
#
# Test SimpleTcp
#
Class Test/SimpleTcp -superclass Test
Test/SimpleTcp instproc init {} {
$self set-defnet 2node
$self next
$self instvar startTime_ finishTime_
set startTime_ 10
set finishTime_ 20
Http set TRANSPORT_ SimpleTcp
}
Test/SimpleTcp instproc set-routing {} {
$self instvar ns_
$ns_ rtproto Session
}
Test/SimpleTcp instproc set-members {} {
$self instvar ns_ src_ dst_ node_ ftp1_
$ns_ at 1.0 "$self start-connection 0 1"
$ns_ at 9.0 "$self finish-connection 0 1"
}
# Connect TCP source and destination after simulator starts
Test/SimpleTcp instproc start-connection { s d } {
$self instvar ns_ src_ dst_ node_
set src_ [new Agent/TCP/SimpleTcp]
set dst_ [new Agent/TCP/SimpleTcp]
$src_ set fid_ 0
$dst_ set fid_ 0
$ns_ attach-agent $node_($s) $src_
$ns_ attach-agent $node_($d) $dst_
$ns_ connect $src_ $dst_
$src_ set dst_addr_ [$dst_ set agent_addr_]
$src_ set dst_port_ [$dst_ set agent_port_]
$src_ set window_ 100
$dst_ listen
$ns_ at [expr [$ns_ now] + 1.0] "$src_ send 1000"
$ns_ at [expr [$ns_ now] + 3.0] "$dst_ send 100"
}
Test/SimpleTcp instproc finish-connection { s d } {
$self instvar ns_ src_ dst_ node_
$src_ close
}
#
# Base class for testing TcpApp over SimpleTcp and FullTcp
#
Class Test-TcpApp -superclass Test
Test-TcpApp instproc set-routing {} {
$self instvar ns_
$ns_ rtproto Session
}
Class Test/TcpApp-2node -superclass Test-TcpApp
Test/TcpApp-2node instproc init {} {
$self set-defnet 2node
$self next
$self instvar startTime_ finishTime_ ns_
set startTime_ 10
set finishTime_ 50
$ns_ color 1 red
$ns_ color 2 blue
}
Test/TcpApp-2node instproc send1 {} {
$self instvar app1_ app2_
$app1_ send 40 "$app2_ recv1 40"
}
Test/TcpApp-2node instproc send2 {} {
$self instvar app1_ app2_ ns_
$app2_ send 1024 "$app1_ recv2 1024"
$ns_ at [expr [$ns_ now] + 1.0] "$self send2"
}
Application/TcpApp instproc recv1 { sz } {
set now [[Simulator instance] now]
#puts "$now app2 receives data $sz bytes from app1"
}
Application/TcpApp instproc recv2 { sz } {
set now [[Simulator instance] now]
#puts "$now app1 receives data $sz bytes from app1"
}
Test/TcpApp-2node instproc set-members {} {
$self instvar app1_ app2_ ns_ node_
set tcp1 [new Agent/TCP/FullTcp]
set tcp2 [new Agent/TCP/FullTcp]
$tcp1 set window_ 100
$tcp1 set fid_ 1
$tcp2 set window_ 100
$tcp2 set fid_ 2
$tcp2 set iss_ 1224
$ns_ attach-agent $node_(0) $tcp1
$ns_ attach-agent $node_(1) $tcp2
$ns_ connect $tcp1 $tcp2
$tcp2 listen
set app1_ [new Application/TcpApp $tcp1]
set app2_ [new Application/TcpApp $tcp2]
$app1_ connect $app2_
$ns_ at 1.0 "$self send1"
$ns_ at 1.2 "$self send2"
}
#----------------------------------------------------------------------
# Section 4: Tests of Cache
#----------------------------------------------------------------------
#
# test simplest http setup: one client + one server
#
Class Test/http1 -superclass Test
Test/http1 instproc init {} {
$self set-defnet 3node
$self next
$self instvar finishTime_
set finishTime_ 40
# Use simple tcp agent
Http set TRANSPORT_ SimpleTcp
}
Test/http1 instproc set-members {} {
$self instvar ns_ src_ dst_ node_ ftp1_
# set ftp1_ [$src_ attach-app FTP]
$ns_ at 1.0 "$self start-connection 1 0"
$ns_ at 9.0 "$self finish-connection 1 0"
$ns_ at 10.0 "$self start-connection 1 2"
$ns_ at 19.0 "$self finish-connection 1 2"
}
# Connect TCP source and destination after simulator starts
Test/http1 instproc start-connection { s d } {
$self instvar ns_ src_ dst_ node_
set src_ [new Http/Client $ns_ $node_($s)]
set dst_ [new Http/Server $ns_ $node_($d)]
$src_ connect $dst_
$src_ send-request $dst_ GET $dst_:1
}
Test/http1 instproc finish-connection { s d } {
$self instvar ns_ src_ dst_ node_
$src_ disconnect $dst_
}
Test/http1 instproc set-routing {} {
$self instvar ns_
$ns_ rtproto Session
}
Class Test/http1f -superclass Test/http1
Test/http1f instproc init args {
eval $self next $args
Http set TRANSPORT_ FullTcp
}
#
# Testing HTTP with one cache, one client and one server
#
Class Test/http2 -superclass Test
Test/http2 instproc init {} {
$self set-defnet 3node
$self next
$self instvar finishTime_
set finishTime_ 40
Http set TRANSPORT_ SimpleTcp
}
Test/http2 instproc set-routing {} {
$self instvar ns_
$ns_ rtproto Session
}
Test/http2 instproc set-members {} {
$self instvar ns_ node_ client_ cache_ server_
set client_ [new Http/Client $ns_ $node_(0)]
set cache_ [new Http/Cache $ns_ $node_(1)]
set server_ [new Http/Server $ns_ $node_(2)]
$ns_ at 1.0 "$self start-connection"
$ns_ at 9.0 "$self finish-connection"
$ns_ at 21.0 "$self start-connection"
$ns_ at 29.0 "$self finish-connection"
}
# Connect TCP source and destination after simulator starts
Test/http2 instproc start-connection {} {
$self instvar ns_ client_ server_ cache_ node_
$client_ connect $cache_
$cache_ connect $server_
$cache_ set-parent $server_
$client_ send-request $cache_ GET $server_:1
}
Test/http2 instproc finish-connection {} {
$self instvar client_ server_ cache_
$client_ disconnect $cache_
$cache_ disconnect $server_
}
Class Test/http2f -superclass Test/http2
Test/http2f instproc init args {
eval $self next $args
Http set TRANSPORT_ FullTcp
}
#----------------------------------------------------------------------
# Testing HTTP with one cache, multiple client and one server
#----------------------------------------------------------------------
Class Test/http3 -superclass Test
Test/http3 instproc init {} {
$self set-defnet 5node
$self next
$self instvar finishTime_
set finishTime_ 40
Http set TRANSPORT_ SimpleTcp
}
Test/http3 instproc set-routing {} {
$self instvar ns_
$ns_ rtproto Session
}
Test/http3 instproc set-members {} {
$self instvar ns_ client_ cache_ server_ node_ test_
set client_(0) [new Http/Client $ns_ $node_(0)]
set client_(1) [new Http/Client $ns_ $node_(1)]
set client_(2) [new Http/Client $ns_ $node_(2)]
set cache_ [new Http/Cache $ns_ $node_(3)]
set server_ [new Http/Server $ns_ $node_(4)]
$ns_ at 1.0 "$self start-connection"
$ns_ at 9.0 "$self finish-connection"
# XXX
#
# (1) If we set connection restarts time to 10.0, then we may
# have a request sent out at 10.0 *before* the connection is
# actually re-established, which will result in the lose of a
# request packet and the blocking of subsequent requests.
#
# (2) Currently when a connection is shut down, we do *NOT*
# clean up pending requests. This will result in the possible
# blocking of requests after the connection is re-established.
# This test illustrates this effect.
#
# The cleaning of a cache after disconnection is currently *NOT*
# implemented. It can be disconnected but its behavior after
# re-connection is not defined. NOTE: disconnection means
# explicitly call Http::disconnect(). Link dynamics and losses
# are supported.
$ns_ at 9.9 "$self start-connection"
$ns_ at 19.0 "$self finish-connection"
}
# Connect TCP source and destination after simulator starts
Test/http3 instproc start-connection {} {
$self instvar ns_ client_ server_ cache_ node_
$client_(0) connect $cache_
$client_(1) connect $cache_
$client_(2) connect $cache_
$cache_ connect $server_
$cache_ set-parent $server_
$self start-request
}
Test/http3 instproc start-request {} {
$self instvar client_ ns_ cache_ server_
$client_(0) send-request $cache_ GET $server_:0
set tmp [expr [$ns_ now] + 1]
$ns_ at $tmp "$client_(1) send-request $cache_ GET $server_:1"
set tmp [expr $tmp + 1]
$ns_ at $tmp "$client_(2) send-request $cache_ GET $server_:0"
set tmp [expr $tmp + 2]
$ns_ at $tmp "$self start-request"
}
Test/http3 instproc finish-connection {} {
$self instvar client_ server_ cache_
$client_(0) disconnect $cache_
$client_(1) disconnect $cache_
$client_(2) disconnect $cache_
$cache_ disconnect $server_
}
Class Test/http3f -superclass Test/http3
Test/http3f instproc init args {
eval $self next $args
Http set TRANSPORT_ FullTcp
}
#
# Testing cache with TTL invalidation
#
Class Test/http4 -superclass Test
Test/http4 instproc init {} {
$self set-defnet 5node
$self next
$self instvar ns_ startTime_ finishTime_
set startTime_ 1
set finishTime_ 40
Http set TRANSPORT_ SimpleTcp
}
Test/http4 instproc set-routing {} {
$self instvar ns_
$ns_ rtproto Session
}
Test/http4 instproc set-topology {} {
$self instvar node_ ns_
for {set i 0} {$i < 5} {incr i} {
set node_($i) [$ns_ node]
}
$ns_ duplex-link $node_(3) $node_(4) 1Mb 50ms DropTail
$ns_ duplex-link $node_(0) $node_(3) 1Mb 50ms DropTail
$ns_ duplex-link $node_(1) $node_(3) 1Mb 50ms DropTail
$ns_ duplex-link $node_(2) $node_(3) 1Mb 50ms DropTail
}
Test/http4 instproc set-members {} {
$self instvar ns_ startTime_ client_ cache_ server_ node_ test_
set client_(0) [new Http/Client $ns_ $node_(0)]
set client_(1) [new Http/Client $ns_ $node_(1)]
set client_(2) [new Http/Client $ns_ $node_(2)]
set cache_ [new Http/Cache/TTL $ns_ $node_(3)]
set server_ [new Http/Server $ns_ $node_(4)]
$ns_ at $startTime_ "$self start-connection"
$ns_ at 10 "$self finish-connection"
}
Test/http4 instproc start-requests {} {
$self instvar client_ server_ cache_ ns_
$client_(0) send-request $cache_ GET $server_:0
set tmp [expr [$ns_ now] + 1]
$ns_ at $tmp "$client_(1) send-request $cache_ GET $server_:1"
incr tmp
$ns_ at $tmp "$client_(2) send-request $cache_ GET $server_:0"
incr tmp 3
$ns_ at $tmp "$self start-requests"
}
# Connect TCP source and destination after simulator starts
Test/http4 instproc start-connection {} {
$self instvar ns_ client_ server_ cache_ node_
$client_(0) connect $cache_
$client_(1) connect $cache_
$client_(2) connect $cache_
$cache_ connect $server_
$cache_ set-parent $server_
$self start-requests
}
Test/http4 instproc finish-connection {} {
$self instvar client_ server_ cache_
$client_(0) disconnect $cache_
$client_(1) disconnect $cache_
$client_(2) disconnect $cache_
$cache_ disconnect $server_
}
Class Test/http4f -superclass Test/http4
Test/http4f instproc init args {
eval $self next $args
Http set TRANSPORT_ FullTcp
}
#
# Testing PagePool
#
Class Test/PagePool -superclass Test
Test/PagePool instproc init {} {
$self instvar pgp_
global opts
set opts(page-file) pages
set pgp_ [new PagePool/Trace $opts(page-file)]
set max [$pgp_ get-poolsize]
set tmp [new RandomVariable/Uniform]
$tmp set min_ 0
$tmp set max_ [expr $max - 1]
$pgp_ ranvar $tmp
}
Test/PagePool instproc test-enumerate {} {
$self instvar pgp_ log_
set max [$pgp_ get-poolsize]
for {set i 0} {$i < $max} {incr i} {
puts -nonewline $log_ "Page $i: "
puts -nonewline $log_ "size [$pgp_ gen-size $i] "
set mtime [$pgp_ gen-modtime $i -1]
puts -nonewline $log_ "ctime $mtime "
set tmp [$pgp_ gen-modtime $i $mtime]
while {$tmp != $mtime} {
puts -nonewline $log_ "mtime $tmp "
set mtime $tmp
set tmp [$pgp_ gen-modtime $i $mtime]
}
puts $log_ ""
}
}
Test/PagePool instproc test-getpageid {} {
$self instvar pgp_ log_
set max [$pgp_ get-poolsize]
for {set i 0} {$i < $max} {incr i} {
set id [$pgp_ gen-pageid 0]
puts -nonewline $log_ "Page $id: "
puts -nonewline $log_ "size [$pgp_ gen-size $id] "
set mtime [$pgp_ gen-modtime $id -1]
puts -nonewline $log_ "ctime $mtime "
set tmp [$pgp_ gen-modtime $id $mtime]
while {$tmp != $mtime} {
puts -nonewline $log_ "mtime $tmp "
set mtime $tmp
set tmp [$pgp_ gen-modtime $id $mtime]
}
puts $log_ ""
}
}
Test/PagePool instproc run {} {
$self instvar log_
set log_ [open "temp.rands" w]
$self test-getpageid
$self test-enumerate
close $log_
}
#----------------------------------------------------------------------
# Testing simplest case for heartbeat message: 1 client+1 cache+1 server
#----------------------------------------------------------------------
# Multicast invalidation + server invalidation
Class Test/cache0-inv -superclass Test-Cache
Test/cache0-inv instproc init {} {
$self set-defnet cache0
$self next
$self set-server-type /Inval/Yuc
$self set-cache-type /Inval/Mcast
$self set-client-type ""
Http set TRANSPORT_ SimpleTcp
}
Test/cache0-inv instproc set-connections {} {
$self instvar client_ server_ cache_
# XXX Should always let server connects to cache first, then requests
$client_(0) connect $cache_(0)
$server_(0) connect $cache_(0)
$server_(0) set-parent-cache $cache_(0)
}
Test/cache0-inv instproc start-requests {} {
$self instvar client_ cache_ server_ ns_
$client_(0) start $cache_(0) $server_(0)
}
# Mcast inval
Class Test/cache0f-inv -superclass Test/cache0-inv
Test/cache0f-inv instproc init args {
eval $self next $args
Http set TRANSPORT_ FullTcp
}
# Push + mcast inval
Class Test/cache0-push -superclass Test/cache0-inv
Test/cache0-push instproc create-members {} {
$self next
$self instvar cache_ server_
$server_(0) set enable_upd_ 1
$cache_(0) set enable_upd_ 1
}
Class Test/cache0f-push -superclass {Test/cache0-push Test/cache0f-inv}
# TTL
Class Test/cache0-ttl -superclass Test/cache0-inv
Test/cache0-ttl instproc init args {
eval $self next $args
$self set-server-type ""
$self set-cache-type /TTL
$self set-client-type ""
}
Test/cache0-ttl instproc set-connections {} {
$self instvar client_ server_ cache_
# XXX Should always let server connects to cache first, then requests
$client_(0) connect $cache_(0)
$cache_(0) connect $server_(0)
$server_(0) set-parent-cache $cache_(0)
}
Class Test/cache0f-ttl -superclass {Test/cache0f-inv Test/cache0-ttl}
# Omniscient TTL
Class Test/cache0-ottl -superclass Test/cache0-ttl
Test/cache0-ottl instproc init args {
eval $self next $args
$self set-cache-type /TTL/Omniscient
}
Class Test/cache0f-ottl -superclass {Test/cache0-ottl Test/cache0f-ttl}
#----------------------------------------------------------------------
# Two hierarchies #1: server0 -> root cache 0
#----------------------------------------------------------------------
Class Test/TLC1 -superclass Test-Cache
Test/TLC1 instproc init {} {
# Do our own initialization
global opts
set opts(duration) 500
set opts(avg-page-age) 60
set opts(avg-req-interval) 6
set opts(hb-interval) 6
$self set-defnet cache2
$self next
$self set-cache-type /Inval/Mcast
$self set-server-type /Inval/Yuc
$self set-client-type ""
Http set TRANSPORT_ SimpleTcp
}
Test/TLC1 instproc start-requests {} {
$self instvar client_ cache_ server_
$client_(0) start $cache_(2) $server_(0)
$client_(1) start $cache_(6) $server_(0)
$client_(2) start $cache_(4) $server_(0)
$client_(3) start $cache_(1) $server_(0)
}
Test/TLC1 instproc set-connections {} {
$self instvar client_ cache_ server_
$client_(0) connect $cache_(2)
$client_(1) connect $cache_(6)
$client_(2) connect $cache_(4)
$client_(3) connect $cache_(1)
$cache_(2) connect $cache_(0)
$cache_(2) set-parent $cache_(0)
$cache_(3) connect $cache_(0)
$cache_(3) set-parent $cache_(0)
$cache_(6) connect $cache_(2)
$cache_(6) set-parent $cache_(2)
$cache_(4) connect $cache_(1)
$cache_(4) set-parent $cache_(1)
$cache_(5) connect $cache_(1)
$cache_(5) set-parent $cache_(1)
# XXX
# We also need TCP connections between TLCs, but the order in which
# they are connected is tricky. I.e., the cache that first sends
# out a packet should connect first. But how do we know which cache
# would send out a packet first???
$cache_(1) connect $cache_(0)
}
Test/TLC1 instproc set-groups {} {
$self instvar client_ cache_ server_ mh_
# TBA group setup stuff...
set grp [Node allocaddr]
$cache_(0) join-tlc-group $grp
$cache_(1) join-tlc-group $grp
$mh_ switch-treetype $grp
set grp [Node allocaddr]
$cache_(0) init-inval-group $grp
$cache_(2) join-inval-group $grp
$cache_(3) join-inval-group $grp
$mh_ switch-treetype $grp
set grp [Node allocaddr]
$cache_(1) init-inval-group $grp
$cache_(4) join-inval-group $grp
$cache_(5) join-inval-group $grp
$mh_ switch-treetype $grp
set grp [Node allocaddr]
$cache_(2) init-inval-group $grp
$cache_(6) join-inval-group $grp
$mh_ switch-treetype $grp
# XXX Must let the server to initialize connection, because it's
# going to send out the first packet
$cache_(1) connect $server_(0)
$server_(0) connect $cache_(0)
# XXX Must do this at the end. It'll trigger a lot of JOINs.
$server_(0) set-parent-cache $cache_(0)
# XXX Must do this when using multiple hierarchies
$server_(0) set-tlc $cache_(0)
}
Class Test/TLC1f -superclass Test/TLC1
Test/TLC1f instproc init {} {
$self next
Http set TRANSPORT_ FullTcp
}
#
# Two hierarchies with direct request
#
#Class Test/TLC1-dreq -superclass Test/TLC1
# Test/TLC1-dreq instproc init {} {
# $self next
# $self set-cache-type /Inval/Mcast/Perc
# }
# Set up direct connections from leaf caches (i.e., all caches who
# may connect to a browser) to the server
# Test/TLC1-dreq instproc set-connections {} {
# $self next
# $self instvar cache_ server_
# $cache_(1) connect $server_(0)
# $cache_(2) connect $server_(0)
# $cache_(4) connect $server_(0)
# $cache_(6) connect $server_(0)
# $cache_(1) set direct_request_ 1
# $cache_(2) set direct_request_ 1
# $cache_(4) set direct_request_ 1
# $cache_(6) set direct_request_ 1
# }
#----------------------------------------------------------------------
# Testing server/cache liveness messages and failure recovery
#----------------------------------------------------------------------
Class Test/Liveness -superclass Test-Cache
Test/Liveness instproc init {} {
# Set default initialization values
global opts
set opts(duration) 1200 ;# Link heals at time 1000.
set opts(avg-page-age) 60
set opts(avg-req-interval) 60
set opts(hb-interval) 30
$self set-defnet cache4d
$self next
$self set-cache-type /Inval/Mcast
$self set-server-type /Inval/Yuc
$self set-client-type ""
# Must use FullTcp, because we'll have packet loss, etc.
Http set TRANSPORT_ FullTcp
}
Test/Liveness instproc start-requests {} {
$self instvar client_ cache_ server_ ns_
$client_(0) start $cache_(3) $server_(0)
$client_(1) start $cache_(4) $server_(0)
$client_(2) start $cache_(5) $server_(0)
$client_(3) start $cache_(6) $server_(0)
# puts "At [$ns_ now], request starts"
}
Test/Liveness instproc set-connections {} {
$self instvar ns_ client_ server_ cache_
# Enable dynamics somewhere
$client_(0) connect $cache_(3)
$client_(1) connect $cache_(4)
$client_(2) connect $cache_(5)
$client_(3) connect $cache_(6)
$cache_(1) connect $cache_(0)
$cache_(2) connect $cache_(0)
$cache_(3) connect $cache_(1)
$cache_(4) connect $cache_(1)
$cache_(5) connect $cache_(2)
$cache_(6) connect $cache_(2)
$cache_(1) set-parent $cache_(0)
$cache_(2) set-parent $cache_(0)
$cache_(3) set-parent $cache_(1)
$cache_(4) set-parent $cache_(1)
$cache_(5) set-parent $cache_(2)
$cache_(6) set-parent $cache_(2)
# All TLCs have connection to server
$cache_(0) connect $server_(0)
# Parent cache of the server is e3
$server_(0) connect $cache_(3)
}
Test/Liveness instproc set-groups {} {
$self instvar cache_ mh_ server_
set grp [Node allocaddr]
$cache_(0) init-inval-group $grp
$cache_(1) join-inval-group $grp
$cache_(2) join-inval-group $grp
$mh_ switch-treetype $grp
set grp [Node allocaddr]
$cache_(1) init-inval-group $grp
$cache_(3) join-inval-group $grp
$cache_(4) join-inval-group $grp
$mh_ switch-treetype $grp
set grp [Node allocaddr]
$cache_(2) init-inval-group $grp
$cache_(5) join-inval-group $grp
$cache_(6) join-inval-group $grp
$mh_ switch-treetype $grp
$server_(0) set-parent-cache $cache_(3)
}
#----------------------------------------------------------------------
# Test Group 1:
#
# Poisson page mods and Poisson requests, one bottleneck link, 2-level
# cache hierarchy with a single TLC. No loss.
#
# Comparing Invalidation, TTL and OTTL.
#
# Testing Mcast+Yucd using a bottleneck topology
#----------------------------------------------------------------------
Class Test/Mcast-PB -superclass Test-Cache
Test/Mcast-PB instproc init {} {
# Our own initializations
global opts
set opts(duration) 200
set opts(avg-page-age) 10
set opts(avg-req-interval) 6
set opts(hb-interval) 6
set opts(num-2nd-cache) 5
$self set-defnet BottleNeck
$self next
$self instvar secondCaches_
set secondCaches_ $opts(num-2nd-cache)
$self set-cache-type /Inval/Mcast
$self set-server-type /Inval/Yuc
$self set-client-type ""
}
Test/Mcast-PB instproc start-requests {} {
$self instvar client_ cache_ server_ secondCaches_
set n $secondCaches_
for {set i 0} {$i < $n} {incr i} {
$client_($i) start $cache_($i) $server_(0)
}
$self instvar pgp_ topo_ ns_
# Because Test/Cache::init{} already did set-pagepool{}, now we
# know how many pages we have. Estimate the cache population time
# by NumPages*1+10, then start bandwidth monitoring after
# the caches are populated with pages
$ns_ at [expr [$ns_ now] + [$pgp_ get-poolsize] + 10] \
"$topo_ start-monitor $ns_"
}
Test/Mcast-PB instproc set-connections {} {
$self instvar ns_ client_ server_ cache_ secondCaches_
set n $secondCaches_
for {set i 0} {$i < $n} {incr i} {
$client_($i) connect $cache_($i)
$cache_($i) connect $cache_($n)
$cache_($i) set-parent $cache_($n)
}
$cache_($n) connect $server_(0)
$self connect-server
}
Test/Mcast-PB instproc connect-server {} {
$self instvar server_ cache_
$server_(0) connect $cache_(0)
}
Test/Mcast-PB instproc set-groups {} {
$self instvar cache_ server_ secondCaches_ mh_
set n $secondCaches_
set grp1 [Node allocaddr]
set grp2 [Node allocaddr]
$cache_($n) init-inval-group $grp1
$cache_($n) init-update-group $grp2
for {set i 0} {$i < $n} {incr i} {
$cache_($i) join-inval-group $grp1
$cache_($i) join-update-group $grp2
}
$mh_ switch-treetype $grp1
$mh_ switch-treetype $grp2
$server_(0) set-parent-cache $cache_(0)
}
Test/Mcast-PB instproc collect-stat {} {
$self instvar topo_ client_ server_ cache_ secondCaches_
set bw [$topo_ mon-stat]
set sn 0
set gn 0
set sr 0
set st(max) 0
set st(min) 98765432
set st(avg) 0
set rt(max) 0
set rt(min) 98765432
set rt(avg) 0
foreach c [array names client_] {
set gn [expr $gn + [$client_($c) stat req-num]]
set sn [expr $sn + [$client_($c) stat stale-num]]
set st(avg) [expr $st(avg) + [$client_($c) stat stale-time]]
set tmp [$client_($c) stat st-min]
if { $tmp < $st(min) } { set st(min) $tmp }
set tmp [$client_($c) stat st-max]
if { $tmp > $st(max) } { set st(max) $tmp }
set rt(avg) [expr $rt(avg) + [$client_($c) stat rep-time]]
set tmp [$client_($c) stat rt-max]
if { $tmp > $rt(max) } { set rt(max) $tmp }
set tmp [$client_($c) stat rt-min]
if { $tmp < $rt(min) } { set rt(min) $tmp }
}
if {$st(max) < $st(min)} {
set st(max) 0
set st(min) 0
}
if {$rt(max) < $rt(min)} {
set rt(max) 0
set rt(min) 0
}
if {$gn > 0} {
set sr [expr double($sn) / $gn * 100]
}
if {$sn > 0} {
if [catch {set st(avg) [expr double($st(avg)) / $sn]}] {
set st(avg) 0 ;# No stale hits
}
}
if {$gn > 0} {
set rt(avg) [expr double($rt(avg)) / $gn]
}
set ims 0
foreach c [array names cache_] {
set ims [expr $ims + [$cache_($c) stat ims-num]]
}
set res [list sr $sr sh [$server_(0) stat hit-num] th [$cache_($secondCaches_) stat hit-num] st $st(avg) st-max $st(max) st-min $st(min) rt $rt(avg) rt-max $rt(max) rt-min $rt(min) mn [$server_(0) stat mod-num] ims-num $ims]
return [concat $bw $res]
}
Test/Mcast-PB instproc output-stat { args } {
eval array set d $args
global opts
# XXX Don't have statistics for total bandwidth. :(
#puts "$opts(hb-interval) Bandwidth*Hop -1 Stale $d(sr) AverageRepTime $d(rt) BottleneckBW $d(btnk_bw) ServerBW $d(svr_bw) StaleTime $d(st)"
}
Test/Mcast-PB instproc finish {} {
global opts
if $opts(quiet) {
$self output-stat [$self collect-stat]
}
$self next
}
#
# Same as mcast-PB, except using Inval/Mcast/Perc cache
#
Class Test/Mcast-PBP -superclass Test/Mcast-PB
Test/Mcast-PBP instproc init {} {
$self next
$self set-cache-type /Inval/Mcast/Perc
}
#
# Same as mcast-PB, except enabled selective push of updates
#
Class Test/Mcast-PBU -superclass Test/Mcast-PB
Test/Mcast-PBU instproc create-members {} {
$self next
$self instvar cache_ server_
foreach n [array names cache_] {
$cache_($n) set enable_upd_ 1
}
foreach n [array names server_] {
$server_($n) set enable_upd_ 1
}
}
#
# Mcast invalidation + selective push + mandatory push
#
Class Test/Mcast-PBU-MP -superclass Test/Mcast-PBU
Test/Mcast-PBU-MP instproc create-members {} {
$self next
$self instvar client_ ns_ server_
$ns_ at 100.0 "$client_(1) request-mpush $server_(0):0"
$ns_ at 500.0 "$client_(1) stop-mpush $server_(0):0"
}
#
# Testing TTL using a bottleneck topology
#
Class Test/ttl-PB -superclass Test/Mcast-PB
Test/ttl-PB instproc init {} {
global opts
set opts(ttl) 0.1
$self next
$self set-cache-type /TTL
$self set-server-type ""
$self set-client-type ""
}
Test/ttl-PB instproc create-members {} {
$self next
global opts
$self instvar cache_
foreach n [array names cache_] {
$cache_($n) set-thresh $opts(ttl)
}
}
Test/ttl-PB instproc set-groups {} {
# We do not set any mcast groups
}
Test/ttl-PB instproc connect-server {} {
$self instvar server_ cache_
$cache_(0) connect $server_(0)
}
Test/ttl-PB instproc output-stat { args } {
eval array set d $args
global opts
# XXX Don't have statistics for total bandwidth. :(
#puts "$opts(ttl) Bandwidth*Hop -1 Stale $d(sr) AverageRepTime $d(rt) BottleneckBW $d(btnk_bw) ServerBW $d(svr_bw) StaleTime $d(st)"
}
#
# Testing Omniscient TTL using a bottleneck topology
#
Class Test/ottl-PB -superclass {Test/ttl-PB Test/Mcast-PB}
Test/ottl-PB instproc init {} {
$self next
$self set-cache-type /TTL/Omniscient
$self set-server-type ""
$self set-client-type ""
}
Test/ottl-PB instproc output-stat { args } {
eval array set d $args
# XXX Don't have statistics for total bandwidth. :(
#puts "Bandwidth*Hop -1 Stale $d(sr) AverageRepTime $d(rt) BottleneckBW $d(btnk_bw) ServerBW $d(svr_bw) StaleTime $d(st)"
}
#
# All the above tests with real traces
#
Class Test/Mcast-PBtr -superclass Test/Mcast-PB
Test/Mcast-PBtr instproc init {} {
$self inherit-set pagepoolType_ "ProxyTrace"
$self next
Http set TRANSPORT_ FullTcp
}
Test/Mcast-PBtr instproc populate-cache {} {
# Populate servers and caches with pages.
# Do not use Http/Client::populate{}!
$self instvar pgp_ cache_ server_ secondCaches_ startTime_ ns_
set n $secondCaches_
for {set i 0} {$i < [$pgp_ get-poolsize]} {incr i} {
set pageid $server_(0):$i
$server_(0) gen-page $pageid
#set pageinfo [$server_(0) get-page $pageid]
#for {set j 0} {$j < $secondCaches_} {incr j} {
# eval $cache_($j) enter-page $pageid $pageinfo
#}
#eval $cache_($secondCaches_) enter-page $pageid $pageinfo
# if {$i % 1000 == 0} {
# puts "$i pages populated"
# }
}
}
Test/Mcast-PBtr instproc start-connection {} {
$self next
$self populate-cache
}
Test/Mcast-PBtr instproc start-requests {} {
$self instvar client_ cache_ server_ secondCaches_
for {set i 0} {$i < $secondCaches_} {incr i} {
# Use start-session{} to avoid populating cache
$client_($i) start-session $cache_($i) $server_(0)
}
$self instvar topo_ ns_
$topo_ start-monitor $ns_
}
Test/Mcast-PBtr instproc set-pagepool {} {
$self instvar startTime_ finishTime_ pgp_ ns_ pagepoolType_
global opts
if {![info exists opts(xtrace-req)] || ![info exists opts(xtrace-page)]} {
error "Must supply request logs and page logs of proxy traces"
}
set pgp_ [new PagePool/$pagepoolType_]
$pgp_ set-reqfile $opts(xtrace-req)
$pgp_ set-pagefile $opts(xtrace-page)
$pgp_ bimodal-ratio 0.1
$pgp_ set-client-num $opts(num-2nd-cache)
# XXX Do *NOT* set start time of page generators. It'll be set
# after the cache population phase
# Estimate a finish time
set opts(duration) [$pgp_ get-duration]
set finishTime_ [expr $opts(duration) + $startTime_]
#puts "Duration changed to $opts(duration), finish at $finishTime_"
$self instvar ageRNG_
if ![info exists ageRNG_] {
set ageRNG_ [new RNG]
$ageRNG_ seed $opts(ns-random-seed)
}
# Dynamic page, with page modification
set tmp [new RandomVariable/Uniform]
$tmp use-rng $ageRNG_
$tmp set min_ [expr $opts(avg-page-age)*0.001]
$tmp set max_ [expr $opts(avg-page-age)*1.999]
$pgp_ ranvar-dp $tmp
# Static page
set tmp [new RandomVariable/Uniform]
$tmp use-rng $ageRNG_
$tmp set min_ [expr $finishTime_ * 1.1]
$tmp set max_ [expr $finishTime_ * 1.2]
$pgp_ ranvar-sp $tmp
}
# Set every client's request generator to pgp_
Test/Mcast-PBtr instproc set-req-generator { client } {
$self instvar pgp_
$client set-page-generator $pgp_
}
Class Test/Mcast-PBPtr -superclass {Test/Mcast-PBP Test/Mcast-PBtr}
Class Test/Mcast-PBUtr -superclass {Test/Mcast-PBU Test/Mcast-PBtr}
Class Test/ttl-PBtr -superclass {Test/ttl-PB Test/Mcast-PBtr}
Class Test/ottl-PBtr -superclass {Test/ottl-PB Test/Mcast-PBtr}
#----------------------------------------------------------------------
# Test group 2
#
# Same as test group 1, except using compound pages
#
# Mcast-PB with compound pages
#----------------------------------------------------------------------
Class Test/mmcast-PB -superclass Test/Mcast-PB
Test/mmcast-PB instproc init {} {
$self next
$self set-cache-type /Inval/Mcast/Perc
$self set-server-type /Inval/MYuc
$self set-client-type /Compound
}
Test/mmcast-PB instproc set-pagepool {} {
$self instvar startTime_ finishTime_ pgp_
global opts
# Use PagePool/Math, which means a single page
set pgp_ [new PagePool/CompMath]
# Size generator
$pgp_ set main_size_ $opts(avg-page-size)
$pgp_ set comp_size_ $opts(comp-page-size)
# Age generator
$self instvar ageRNG_
if ![info exists ageRNG_] {
set ageRNG_ [new RNG]
$ageRNG_ seed $opts(ns-random-seed)
}
set tmp [new RandomVariable/Exponential]
$tmp use-rng $ageRNG_
$tmp set avg_ $opts(avg-page-age)
$pgp_ ranvar-main-age $tmp
# Compound age generator
$self instvar compAgeRNG_
if ![info exists compAgeRNG_] {
set compAgeRNG_ [new RNG]
$compAgeRNG_ seed $opts(ns-random-seed)
}
set tmp [new RandomVariable/Uniform]
$tmp use-rng $compAgeRNG_
$tmp set min_ [expr $opts(avg-comp-page-age) * 0.9]
$tmp set max_ [expr $opts(avg-comp-page-age) * 1.1]
$pgp_ ranvar-obj-age $tmp
$pgp_ set num_pages_ [expr $opts(num-comp-pages) + 1]
$pgp_ set start_time_ $startTime_
set finishTime_ [expr $startTime_ + $opts(duration)]
# puts "Start at $startTime_, stop at $finishTime_"
}
#
# selective push + inval
#
Class Test/mmcast-PBU -superclass {Test/Mcast-PBU Test/mmcast-PB}
#
# TTL with compound page
#
Class Test/mttl-PB -superclass {Test/ttl-PB Test/mmcast-PB}
Test/mttl-PB instproc init {} {
$self next
$self set-cache-type /TTL
$self set-server-type /Compound
$self set-client-type /Compound
}
#
# Omniscient TTL + compound page
#
Class Test/mottl-PB -superclass {Test/ottl-PB Test/mmcast-PB}
Test/mottl-PB instproc init {} {
$self next
$self set-cache-type /TTL/Omniscient
$self set-server-type /Compound
$self set-client-type /Compound
}
#----------------------------------------------------------------------
# Test group 3
#
# Comparison of direct request+invalidation vs ttl+direct request
#
# Topology is derived from the BottleNeck topology. It adds additional
# direct links from every leaf cache to the web server. This link is
# used to model the "short path" from leaf caches to the server.
#----------------------------------------------------------------------
Class Test-dreq -superclass Test-Cache
Test-dreq instproc init {} {
$self set-defnet cache5
$self next
$self instvar secondCaches_
global opts
set secondCaches_ $opts(num-2nd-cache)
}
Test-dreq instproc start-requests {} {
$self instvar client_ server_ cache_ secondCaches_
for {set i 0} {$i < $secondCaches_} {incr i} {
$client_($i) start $cache_($i) $server_(0)
}
}
Test-dreq instproc set-connections {} {
$self instvar client_ server_ cache_ secondCaches_ ns_
for {set i 0} {$i < $secondCaches_} {incr i} {
$client_($i) connect $cache_($i)
}
}
Test-dreq instproc collect-stat {} {
$self instvar topo_ client_ secondCaches_
$topo_ instvar qmon_
set svr_bw 0
for {set i 0} {$i < $secondCaches_} {incr i} {
set svr_bw [expr [$qmon_(svr_f$i) set bdepartures_] + \
$svr_bw + [$qmon_(svr_t$i) set bdepartures_]]
}
set btnk_bw [expr [$qmon_(btnk_f) set bdepartures_] + \
[$qmon_(btnk_t) set bdepartures_]]
set sn 0
set gn 0
set st 0
set rt 0
foreach c [array names client_] {
set gn [expr $gn + [$client_($c) stat req-num]]
set sn [expr $sn + [$client_($c) stat stale-num]]
set st [expr $st + [$client_($c) stat stale-time]]
set rt [expr $rt + [$client_($c) stat rep-time]]
}
if {$gn > 0} {
set sr [expr double($sn) / $gn * 100]
}
if {$sn > 0} {
if [catch {set st [expr double($st) / $sn]}] {
set st 0 ;# No stale hits
}
}
if {$gn > 0} {
set rt [expr double($rt) / $gn]
}
return [list svr_bw $svr_bw btnk_bw $btnk_bw sr $sr st $st rt $rt]
}
Test-dreq instproc finish {} {
$self output-stat [$self collect-stat]
$self next
}
#Class Test/mcast-dreq -superclass Test-dreq
#Test/mcast-dreq instproc init {} {
# $self next
# $self set-cache-type /Inval/Mcast/Perc
# $self set-server-type /Inval/Yuc
# $self set-client-type ""
# }
# Test/mcast-dreq instproc output-stat { args } {
# eval array set d $args
# global opts
# # XXX Don't have statistics for total bandwidth. :(
# #puts "$opts(hb-interval) Bandwidth*Hop -1 Stale $d(sr) AverageRepTime $d(rt) BottleneckBW $d(btnk_bw) ServerBW $d(svr_bw) StaleTime $d(st)"
# }
# Test/mcast-dreq instproc set-connections {} {
# $self next ;# connecting clients
# $self instvar server_ cache_ secondCaches_
# set n $secondCaches_
# for {set i 0} {$i < $secondCaches_} {incr i} {
# $cache_($i) connect $cache_($n)
# $cache_($i) set-parent $cache_($n)
# if $i {
# # Let all leaf caches connect to server
# $cache_($i) connect $server_(0)
# }
# }
# $cache_($n) connect $server_(0)
# $server_(0) connect $cache_(0)
# }
# Test/mcast-dreq instproc set-groups {} {
# $self instvar cache_ server_ secondCaches_ mh_
# set n $secondCaches_
# set grp1 [Node allocaddr]
# set grp2 [Node allocaddr]
# $cache_($n) init-inval-group $grp1
# $cache_($n) init-update-group $grp2
# for {set i 0} {$i < $n} {incr i} {
# $cache_($i) join-inval-group $grp1
# $cache_($i) join-update-group $grp2
# # Every leaf cache uses direct request
# $cache_($i) set direct_request_ 1
# }
# $mh_ switch-treetype $grp1
# $mh_ switch-treetype $grp2
# $server_(0) set-parent-cache $cache_(0)
# }
#----------------------------------------------------------------------
# Options
#----------------------------------------------------------------------
global raw_opt_info
set raw_opt_info {
# Random number seed; default is 0, so ns will give a
# diff. one on each invocation.
# XXX Get a "good" seed from predef_seeds[] in rng.cc
ns-random-seed 188312339
# Animation options; complete traces are useful
# for nam only, so do those only when a tracefile
# is being used for nam
nam-trace-all 1
enable-log 0
# Tests to be used
prot
duration 500
# Trace file used for PagePool
page-file
# TTL threshold
ttl 0.1
# Cache type
cache
# server type
server
# Packet size configurations
cache-ims-size 50
cache-ref-size 50
server-inv-size 43
client-req-size 43
# request intervals
min-req-interval 50
max-req-interval 70
avg-req-interval 60
min-page-size 100
max-page-size 50000
avg-page-size 1024
min-page-age 50
max-page-age 70
avg-page-age 60
# compound page size: 50K
comp-page-size 51200
avg-comp-page-age 40000
num-comp-pages 1
# If we use only one page
single-page 1
hb-interval 30
upd-interval 5
# Number of second level caches. Needed by Topology/BottleNeck
num-2nd-cache 5
scheduler-type Calendar
# Proxy trace files: requests and pages
xtrace-req webtrace-reqlog
xtrace-page webtrace-pglog
}
#----------------------------------------------------------------------
# Execution starts...
#----------------------------------------------------------------------
run
|