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 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402
|
[/
/ Copyright (c) 2003-2008 Christopher M. Kohlhoff (chris at kohlhoff dot com)
/
/ Distributed under the Boost Software License, Version 1.0. (See accompanying
/ file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
/]
[section:tutorial Tutorial]
[heading Basic Skills]
The tutorial programs in this first section introduce the fundamental concepts required to use the asio toolkit. Before plunging into the complex world of network programming, these tutorial programs illustrate the basic skills using simple asynchronous timers.
* [link boost_asio.tutorial.tuttimer1 Timer.1 - Using a timer synchronously]
* [link boost_asio.tutorial.tuttimer2 Timer.2 - Using a timer asynchronously]
* [link boost_asio.tutorial.tuttimer3 Timer.3 - Binding arguments to a handler]
* [link boost_asio.tutorial.tuttimer4 Timer.4 - Using a member function as a handler]
* [link boost_asio.tutorial.tuttimer5 Timer.5 - Synchronising handlers in multithreaded programs]
[heading Introduction to Sockets]
The tutorial programs in this section show how to use asio to develop simple client and server programs. These tutorial programs are based around the [@http://www.ietf.org/rfc/rfc867.txt daytime] protocol, which supports both TCP and UDP.
The first three tutorial programs implement the daytime protocol using TCP.
* [link boost_asio.tutorial.tutdaytime1 Daytime.1 - A synchronous TCP daytime client]
* [link boost_asio.tutorial.tutdaytime2 Daytime.2 - A synchronous TCP daytime server]
* [link boost_asio.tutorial.tutdaytime3 Daytime.3 - An asynchronous TCP daytime server]
The next three tutorial programs implement the daytime protocol using UDP.
* [link boost_asio.tutorial.tutdaytime4 Daytime.4 - A synchronous UDP daytime client]
* [link boost_asio.tutorial.tutdaytime5 Daytime.5 - A synchronous UDP daytime server]
* [link boost_asio.tutorial.tutdaytime6 Daytime.6 - An asynchronous UDP daytime server]
The last tutorial program in this section demonstrates how asio allows the TCP and UDP servers to be easily combined into a single program.
* [link boost_asio.tutorial.tutdaytime7 Daytime.7 - A combined TCP/UDP asynchronous server]
[section:tuttimer1 Timer.1 - Using a timer synchronously]
This tutorial program introduces asio by showing how to perform a blocking wait on a timer.
We start by including the necessary header files.
All of the asio classes can be used by simply including the `"asio.hpp"` header file.
``''''''``#include <iostream>
``''''''``#include <boost/asio.hpp>
Since this example users timers, we need to include the appropriate Boost.Date\_Time header file for manipulating times.
``''''''``#include <boost/date_time/posix_time/posix_time.hpp>
All programs that use asio need to have at least one boost::asio::io\_service object. This class provides access to I/O functionality. We declare an object of this type first thing in the main function.
``''''''``int main()
``''''''``{
``''''''`` boost::asio::io_service io;
Next we declare an object of type boost::asio::deadline\_timer. The core asio classes that provide I/O functionality (or as in this case timer functionality) always take a reference to an io\_service as their first constructor argument. The second argument to the constructor sets the timer to expire 5 seconds from now.
``''''''`` boost::asio::deadline_timer t(io, boost::posix_time::seconds(5));
In this simple example we perform a blocking wait on the timer. That is, the call to boost::asio::deadline\_timer::wait() will not return until the timer has expired, 5 seconds after it was created (i.e. not from when the wait starts).
A deadline timer is always in one of two states: "expired" or "not expired". If the boost::asio::deadline\_timer::wait() function is called on an expired timer, it will return immediately.
``''''''`` t.wait();
Finally we print the obligatory `"Hello, world!"` message to show when the timer has expired.
``''''''`` std::cout << "Hello, world!\n";
``''''''`` return 0;
``''''''``}
See the [link boost_asio.tutorial.tuttimer1.src full source listing]
Return to the [link boost_asio.tutorial tutorial index]
Next: [link boost_asio.tutorial.tuttimer2 Timer.2 - Using a timer asynchronously]
[section:src Source listing for Timer.1]
``''''''``//
``''''''``// timer.cpp
``''''''``// ~~~~~~~~~
``''''''``//
``''''''``// Copyright (c) 2003-2008 Christopher M. Kohlhoff (chris at kohlhoff dot com)
``''''''``//
``''''''``// Distributed under the Boost Software License, Version 1.0. (See accompanying
``''''''``// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
``''''''``//
``''''''``#include <iostream>
``''''''``#include <boost/asio.hpp>
``''''''``#include <boost/date_time/posix_time/posix_time.hpp>
``''''''``int main()
``''''''``{
``''''''`` boost::asio::io_service io;
``''''''`` boost::asio::deadline_timer t(io, boost::posix_time::seconds(5));
``''''''`` t.wait();
``''''''`` std::cout << "Hello, world!\n";
``''''''`` return 0;
``''''''``}
Return to [link boost_asio.tutorial.tuttimer1 Timer.1 - Using a timer synchronously]
[endsect]
[endsect]
[section:tuttimer2 Timer.2 - Using a timer asynchronously]
This tutorial program demonstrates how to use asio's asynchronous callback functionality by modifying the program from tutorial Timer.1 to perform an asynchronous wait on the timer.
``''''''``#include <iostream>
``''''''``#include <boost/asio.hpp>
``''''''``#include <boost/date_time/posix_time/posix_time.hpp>
Using asio's asynchronous functionality means having a callback function that will be called when an asynchronous operation completes. In this program we define a function called `print` to be called when the asynchronous wait finishes.
``''''''``void print(const boost::system::error_code& /*e*/)
``''''''``{
``''''''`` std::cout << "Hello, world!\n";
``''''''``}
``''''''``int main()
``''''''``{
``''''''`` boost::asio::io_service io;
``''''''`` boost::asio::deadline_timer t(io, boost::posix_time::seconds(5));
Next, instead of doing a blocking wait as in tutorial Timer.1, we call the boost::asio::deadline\_timer::async\_wait() function to perform an asynchronous wait. When calling this function we pass the `print` callback handler that was defined above.
``''''''`` t.async_wait(print);
Finally, we must call the boost::asio::io\_service::run() member function on the io\_service object.
The asio library provides a guarantee that callback handlers will only be called from threads that are currently calling boost::asio::io\_service::run(). Therefore unless the boost::asio::io\_service::run() function is called the callback for the asynchronous wait completion will never be invoked.
The boost::asio::io\_service::run() function will also continue to run while there is still "work" to do. In this example, the work is the asynchronous wait on the timer, so the call will not return until the timer has expired and the callback has completed.
It is important to remember to give the io\_service some work to do before calling boost::asio::io\_service::run(). For example, if we had omitted the above call to boost::asio::deadline\_timer::async\_wait(), the io\_service would not have had any work to do, and consequently boost::asio::io\_service::run() would have returned immediately.
``''''''`` io.run();
``''''''`` return 0;
``''''''``}
See the [link boost_asio.tutorial.tuttimer2.src full source listing]
Return to the [link boost_asio.tutorial tutorial index]
Previous: [link boost_asio.tutorial.tuttimer1 Timer.1 - Using a timer synchronously]
Next: [link boost_asio.tutorial.tuttimer3 Timer.3 - Binding arguments to a handler]
[section:src Source listing for Timer.2]
``''''''``//
``''''''``// timer.cpp
``''''''``// ~~~~~~~~~
``''''''``//
``''''''``// Copyright (c) 2003-2008 Christopher M. Kohlhoff (chris at kohlhoff dot com)
``''''''``//
``''''''``// Distributed under the Boost Software License, Version 1.0. (See accompanying
``''''''``// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
``''''''``//
``''''''``#include <iostream>
``''''''``#include <boost/asio.hpp>
``''''''``#include <boost/date_time/posix_time/posix_time.hpp>
``''''''``void print(const boost::system::error_code& /*e*/)
``''''''``{
``''''''`` std::cout << "Hello, world!\n";
``''''''``}
``''''''``int main()
``''''''``{
``''''''`` boost::asio::io_service io;
``''''''`` boost::asio::deadline_timer t(io, boost::posix_time::seconds(5));
``''''''`` t.async_wait(print);
``''''''`` io.run();
``''''''`` return 0;
``''''''``}
Return to [link boost_asio.tutorial.tuttimer2 Timer.2 - Using a timer asynchronously]
[endsect]
[endsect]
[section:tuttimer3 Timer.3 - Binding arguments to a handler]
In this tutorial we will modify the program from tutorial Timer.2 so that the timer fires once a second. This will show how to pass additional parameters to your handler function.
``''''''``#include <iostream>
``''''''``#include <boost/asio.hpp>
``''''''``#include <boost/bind.hpp>
``''''''``#include <boost/date_time/posix_time/posix_time.hpp>
To implement a repeating timer using asio you need to change the timer's expiry time in your callback function, and to then start a new asynchronous wait. Obviously this means that the callback function will need to be able to access the timer object. To this end we add two new parameters to the `print` function:
* A pointer to a timer object.
* A counter so that we can stop the program when the timer fires for the sixth time.
``''''''``void print(const boost::system::error_code& /*e*/,
``''''''`` boost::asio::deadline_timer* t, int* count)
``''''''``{
As mentioned above, this tutorial program uses a counter to stop running when the timer fires for the sixth time. However you will observe that there is no explicit call to ask the io\_service to stop. Recall that in tutorial Timer.2 we learnt that the boost::asio::io\_service::run() function completes when there is no more "work" to do. By not starting a new asynchronous wait on the timer when `count` reaches 5, the io\_service will run out of work and stop running.
``''''''`` if (*count < 5)
``''''''`` {
``''''''`` std::cout << *count << "\n";
``''''''`` ++(*count);
Next we move the expiry time for the timer along by one second from the previous expiry time. By calculating the new expiry time relative to the old, we can ensure that the timer does not drift away from the whole-second mark due to any delays in processing the handler.
``''''''`` t->expires_at(t->expires_at() + boost::posix_time::seconds(1));
Then we start a new asynchronous wait on the timer. As you can see, the boost::bind() function is used to associate the extra parameters with your callback handler. The boost::asio::deadline\_timer::async\_wait() function expects a handler function (or function object) with the signature `void(const boost::system::error_code&)`. Binding the additional parameters converts your `print` function into a function object that matches the signature correctly.
See the [@http://www.boost.org/libs/bind/bind.html Boost.Bind documentation] for more information on how to use boost::bind().
In this example, the boost::asio::placeholders::error argument to boost::bind() is a named placeholder for the error object passed to the handler. When initiating the asynchronous operation, and if using boost::bind(), you must specify only the arguments that match the handler's parameter list. In tutorial Timer.4 you will see that this placeholder may be elided if the parameter is not needed by the callback handler.
``''''''`` t->async_wait(boost::bind(print,
``''''''`` boost::asio::placeholders::error, t, count));
``''''''`` }
``''''''``}
``''''''``int main()
``''''''``{
``''''''`` boost::asio::io_service io;
A new `count` variable is added so that we can stop the program when the timer fires for the sixth time.
``''''''`` int count = 0;
``''''''`` boost::asio::deadline_timer t(io, boost::posix_time::seconds(1));
As in Step 4, when making the call to boost::asio::deadline\_timer::async\_wait() from `main` we bind the additional parameters needed for the `print` function.
``''''''`` t.async_wait(boost::bind(print,
``''''''`` boost::asio::placeholders::error, &t, &count));
``''''''`` io.run();
Finally, just to prove that the `count` variable was being used in the `print` handler function, we will print out its new value.
``''''''`` std::cout << "Final count is " << count << "\n";
``''''''`` return 0;
``''''''``}
See the [link boost_asio.tutorial.tuttimer3.src full source listing]
Return to the [link boost_asio.tutorial tutorial index]
Previous: [link boost_asio.tutorial.tuttimer2 Timer.2 - Using a timer asynchronously]
Next: [link boost_asio.tutorial.tuttimer4 Timer.4 - Using a member function as a handler]
[section:src Source listing for Timer.3]
``''''''``//
``''''''``// timer.cpp
``''''''``// ~~~~~~~~~
``''''''``//
``''''''``// Copyright (c) 2003-2008 Christopher M. Kohlhoff (chris at kohlhoff dot com)
``''''''``//
``''''''``// Distributed under the Boost Software License, Version 1.0. (See accompanying
``''''''``// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
``''''''``//
``''''''``#include <iostream>
``''''''``#include <boost/asio.hpp>
``''''''``#include <boost/bind.hpp>
``''''''``#include <boost/date_time/posix_time/posix_time.hpp>
``''''''``void print(const boost::system::error_code& /*e*/,
``''''''`` boost::asio::deadline_timer* t, int* count)
``''''''``{
``''''''`` if (*count < 5)
``''''''`` {
``''''''`` std::cout << *count << "\n";
``''''''`` ++(*count);
``''''''`` t->expires_at(t->expires_at() + boost::posix_time::seconds(1));
``''''''`` t->async_wait(boost::bind(print,
``''''''`` boost::asio::placeholders::error, t, count));
``''''''`` }
``''''''``}
``''''''``int main()
``''''''``{
``''''''`` boost::asio::io_service io;
``''''''`` int count = 0;
``''''''`` boost::asio::deadline_timer t(io, boost::posix_time::seconds(1));
``''''''`` t.async_wait(boost::bind(print,
``''''''`` boost::asio::placeholders::error, &t, &count));
``''''''`` io.run();
``''''''`` std::cout << "Final count is " << count << "\n";
``''''''`` return 0;
``''''''``}
Return to [link boost_asio.tutorial.tuttimer3 Timer.3 - Binding arguments to a handler]
[endsect]
[endsect]
[section:tuttimer4 Timer.4 - Using a member function as a handler]
In this tutorial we will see how to use a class member function as a callback handler. The program should execute identically to the tutorial program from tutorial Timer.3.
``''''''``#include <iostream>
``''''''``#include <boost/asio.hpp>
``''''''``#include <boost/bind.hpp>
``''''''``#include <boost/date_time/posix_time/posix_time.hpp>
Instead of defining a free function `print` as the callback handler, as we did in the earlier tutorial programs, we now define a class called `printer`.
``''''''``class printer
``''''''``{
``''''''``public:
The constructor of this class will take a reference to the io\_service object and use it when initialising the `timer_` member. The counter used to shut down the program is now also a member of the class.
``''''''`` printer(boost::asio::io_service& io)
``''''''`` : timer_(io, boost::posix_time::seconds(1)),
``''''''`` count_(0)
``''''''`` {
The boost::bind() function works just as well with class member functions as with free functions. Since all non-static class member functions have an implicit `this` parameter, we need to bind `this` to the function. As in tutorial Timer.3, boost::bind() converts our callback handler (now a member function) into a function object that can be invoked as though it has the signature `void(const boost::system::error_code&)`.
You will note that the boost::asio::placeholders::error placeholder is not specified here, as the `print` member function does not accept an error object as a parameter.
``''''''`` timer_.async_wait(boost::bind(&printer::print, this));
``''''''`` }
In the class destructor we will print out the final value of the counter.
``''''''`` ~printer()
``''''''`` {
``''''''`` std::cout << "Final count is " << count_ << "\n";
``''''''`` }
The `print` member function is very similar to the `print` function from tutorial Timer.3, except that it now operates on the class data members instead of having the timer and counter passed in as parameters.
``''''''`` void print()
``''''''`` {
``''''''`` if (count_ < 5)
``''''''`` {
``''''''`` std::cout << count_ << "\n";
``''''''`` ++count_;
``''''''`` timer_.expires_at(timer_.expires_at() + boost::posix_time::seconds(1));
``''''''`` timer_.async_wait(boost::bind(&printer::print, this));
``''''''`` }
``''''''`` }
``''''''``private:
``''''''`` boost::asio::deadline_timer timer_;
``''''''`` int count_;
``''''''``};
The `main` function is much simpler than before, as it now declares a local `printer` object before running the io\_service as normal.
``''''''``int main()
``''''''``{
``''''''`` boost::asio::io_service io;
``''''''`` printer p(io);
``''''''`` io.run();
``''''''`` return 0;
``''''''``}
See the [link boost_asio.tutorial.tuttimer4.src full source listing]
Return to the [link boost_asio.tutorial tutorial index]
Previous: [link boost_asio.tutorial.tuttimer3 Timer.3 - Binding arguments to a handler]
Next: [link boost_asio.tutorial.tuttimer5 Timer.5 - Synchronising handlers in multithreaded programs]
[section:src Source listing for Timer.4]
``''''''``//
``''''''``// timer.cpp
``''''''``// ~~~~~~~~~
``''''''``//
``''''''``// Copyright (c) 2003-2008 Christopher M. Kohlhoff (chris at kohlhoff dot com)
``''''''``//
``''''''``// Distributed under the Boost Software License, Version 1.0. (See accompanying
``''''''``// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
``''''''``//
``''''''``#include <iostream>
``''''''``#include <boost/asio.hpp>
``''''''``#include <boost/bind.hpp>
``''''''``#include <boost/date_time/posix_time/posix_time.hpp>
``''''''``class printer
``''''''``{
``''''''``public:
``''''''`` printer(boost::asio::io_service& io)
``''''''`` : timer_(io, boost::posix_time::seconds(1)),
``''''''`` count_(0)
``''''''`` {
``''''''`` timer_.async_wait(boost::bind(&printer::print, this));
``''''''`` }
``''''''`` ~printer()
``''''''`` {
``''''''`` std::cout << "Final count is " << count_ << "\n";
``''''''`` }
``''''''`` void print()
``''''''`` {
``''''''`` if (count_ < 5)
``''''''`` {
``''''''`` std::cout << count_ << "\n";
``''''''`` ++count_;
``''''''`` timer_.expires_at(timer_.expires_at() + boost::posix_time::seconds(1));
``''''''`` timer_.async_wait(boost::bind(&printer::print, this));
``''''''`` }
``''''''`` }
``''''''``private:
``''''''`` boost::asio::deadline_timer timer_;
``''''''`` int count_;
``''''''``};
``''''''``int main()
``''''''``{
``''''''`` boost::asio::io_service io;
``''''''`` printer p(io);
``''''''`` io.run();
``''''''`` return 0;
``''''''``}
Return to [link boost_asio.tutorial.tuttimer4 Timer.4 - Using a member function as a handler]
[endsect]
[endsect]
[section:tuttimer5 Timer.5 - Synchronising handlers in multithreaded programs]
This tutorial demonstrates the use of the boost::asio::strand class to synchronise callback handlers in a multithreaded program.
The previous four tutorials avoided the issue of handler synchronisation by calling the boost::asio::io\_service::run() function from one thread only. As you already know, the asio library provides a guarantee that callback handlers will only be called from threads that are currently calling boost::asio::io\_service::run(). Consequently, calling boost::asio::io\_service::run() from only one thread ensures that callback handlers cannot run concurrently.
The single threaded approach is usually the best place to start when developing applications using asio. The downside is the limitations it places on programs, particularly servers, including:
* Poor responsiveness when handlers can take a long time to complete.
* An inability to scale on multiprocessor systems.
If you find yourself running into these limitations, an alternative approach is to have a pool of threads calling boost::asio::io\_service::run(). However, as this allows handlers to execute concurrently, we need a method of synchronisation when handlers might be accessing a shared, thread-unsafe resource.
``''''''``#include <iostream>
``''''''``#include <boost/asio.hpp>
``''''''``#include <boost/thread.hpp>
``''''''``#include <boost/bind.hpp>
``''''''``#include <boost/date_time/posix_time/posix_time.hpp>
We start by defining a class called `printer`, similar to the class in the previous tutorial. This class will extend the previous tutorial by running two timers in parallel.
``''''''``class printer
``''''''``{
``''''''``public:
In addition to initialising a pair of boost::asio::deadline\_timer members, the constructor initialises the `strand_` member, an object of type boost::asio::strand.
An boost::asio::strand guarantees that, for those handlers that are dispatched through it, an executing handler will be allowed to complete before the next one is started. This is guaranteed irrespective of the number of threads that are calling boost::asio::io\_service::run(). Of course, the handlers may still execute concurrently with other handlers that were not dispatched through an boost::asio::strand, or were dispatched through a different boost::asio::strand object.
``''''''`` printer(boost::asio::io_service& io)
``''''''`` : strand_(io),
``''''''`` timer1_(io, boost::posix_time::seconds(1)),
``''''''`` timer2_(io, boost::posix_time::seconds(1)),
``''''''`` count_(0)
``''''''`` {
When initiating the asynchronous operations, each callback handler is "wrapped" using the boost::asio::strand object. The boost::asio::strand::wrap() function returns a new handler that automatically dispatches its contained handler through the boost::asio::strand object. By wrapping the handlers using the same boost::asio::strand, we are ensuring that they cannot execute concurrently.
``''''''`` timer1_.async_wait(strand_.wrap(boost::bind(&printer::print1, this)));
``''''''`` timer2_.async_wait(strand_.wrap(boost::bind(&printer::print2, this)));
``''''''`` }
``''''''`` ~printer()
``''''''`` {
``''''''`` std::cout << "Final count is " << count_ << "\n";
``''''''`` }
In a multithreaded program, the handlers for asynchronous operations should be synchronised if they access shared resources. In this tutorial, the shared resources used by the handlers (`print1` and `print2`) are `std::cout` and the `count_` data member.
``''''''`` void print1()
``''''''`` {
``''''''`` if (count_ < 10)
``''''''`` {
``''''''`` std::cout << "Timer 1: " << count_ << "\n";
``''''''`` ++count_;
``''''''`` timer1_.expires_at(timer1_.expires_at() + boost::posix_time::seconds(1));
``''''''`` timer1_.async_wait(strand_.wrap(boost::bind(&printer::print1, this)));
``''''''`` }
``''''''`` }
``''''''`` void print2()
``''''''`` {
``''''''`` if (count_ < 10)
``''''''`` {
``''''''`` std::cout << "Timer 2: " << count_ << "\n";
``''''''`` ++count_;
``''''''`` timer2_.expires_at(timer2_.expires_at() + boost::posix_time::seconds(1));
``''''''`` timer2_.async_wait(strand_.wrap(boost::bind(&printer::print2, this)));
``''''''`` }
``''''''`` }
``''''''``private:
``''''''`` boost::asio::strand strand_;
``''''''`` boost::asio::deadline_timer timer1_;
``''''''`` boost::asio::deadline_timer timer2_;
``''''''`` int count_;
``''''''``};
The `main` function now causes boost::asio::io\_service::run() to be called from two threads: the main thread and one additional thread. This is accomplished using an boost::thread object.
Just as it would with a call from a single thread, concurrent calls to boost::asio::io\_service::run() will continue to execute while there is "work" left to do. The background thread will not exit until all asynchronous operations have completed.
``''''''``int main()
``''''''``{
``''''''`` boost::asio::io_service io;
``''''''`` printer p(io);
``''''''`` boost::thread t(boost::bind(&boost::asio::io_service::run, &io));
``''''''`` io.run();
``''''''`` t.join();
``''''''`` return 0;
``''''''``}
See the [link boost_asio.tutorial.tuttimer5.src full source listing]
Return to the [link boost_asio.tutorial tutorial index]
Previous: [link boost_asio.tutorial.tuttimer4 Timer.4 - Using a member function as a handler]
[section:src Source listing for Timer.5]
``''''''``//
``''''''``// timer.cpp
``''''''``// ~~~~~~~~~
``''''''``//
``''''''``// Copyright (c) 2003-2008 Christopher M. Kohlhoff (chris at kohlhoff dot com)
``''''''``//
``''''''``// Distributed under the Boost Software License, Version 1.0. (See accompanying
``''''''``// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
``''''''``//
``''''''``#include <iostream>
``''''''``#include <boost/asio.hpp>
``''''''``#include <boost/thread.hpp>
``''''''``#include <boost/bind.hpp>
``''''''``#include <boost/date_time/posix_time/posix_time.hpp>
``''''''``class printer
``''''''``{
``''''''``public:
``''''''`` printer(boost::asio::io_service& io)
``''''''`` : strand_(io),
``''''''`` timer1_(io, boost::posix_time::seconds(1)),
``''''''`` timer2_(io, boost::posix_time::seconds(1)),
``''''''`` count_(0)
``''''''`` {
``''''''`` timer1_.async_wait(strand_.wrap(boost::bind(&printer::print1, this)));
``''''''`` timer2_.async_wait(strand_.wrap(boost::bind(&printer::print2, this)));
``''''''`` }
``''''''`` ~printer()
``''''''`` {
``''''''`` std::cout << "Final count is " << count_ << "\n";
``''''''`` }
``''''''`` void print1()
``''''''`` {
``''''''`` if (count_ < 10)
``''''''`` {
``''''''`` std::cout << "Timer 1: " << count_ << "\n";
``''''''`` ++count_;
``''''''`` timer1_.expires_at(timer1_.expires_at() + boost::posix_time::seconds(1));
``''''''`` timer1_.async_wait(strand_.wrap(boost::bind(&printer::print1, this)));
``''''''`` }
``''''''`` }
``''''''`` void print2()
``''''''`` {
``''''''`` if (count_ < 10)
``''''''`` {
``''''''`` std::cout << "Timer 2: " << count_ << "\n";
``''''''`` ++count_;
``''''''`` timer2_.expires_at(timer2_.expires_at() + boost::posix_time::seconds(1));
``''''''`` timer2_.async_wait(strand_.wrap(boost::bind(&printer::print2, this)));
``''''''`` }
``''''''`` }
``''''''``private:
``''''''`` boost::asio::strand strand_;
``''''''`` boost::asio::deadline_timer timer1_;
``''''''`` boost::asio::deadline_timer timer2_;
``''''''`` int count_;
``''''''``};
``''''''``int main()
``''''''``{
``''''''`` boost::asio::io_service io;
``''''''`` printer p(io);
``''''''`` boost::thread t(boost::bind(&boost::asio::io_service::run, &io));
``''''''`` io.run();
``''''''`` t.join();
``''''''`` return 0;
``''''''``}
Return to [link boost_asio.tutorial.tuttimer5 Timer.5 - Synchronising handlers in multithreaded programs]
[endsect]
[endsect]
[section:tutdaytime1 Daytime.1 - A synchronous TCP daytime client]
This tutorial program shows how to use asio to implement a client application with TCP.
We start by including the necessary header files.
``''''''``#include <iostream>
``''''''``#include <boost/array.hpp>
``''''''``#include <boost/asio.hpp>
The purpose of this application is to access a daytime service, so we need the user to specify the server.
``''''''``using boost::asio::ip::tcp;
``''''''``int main(int argc, char* argv[])
``''''''``{
``''''''`` try
``''''''`` {
``''''''`` if (argc != 2)
``''''''`` {
``''''''`` std::cerr << "Usage: client <host>" << std::endl;
``''''''`` return 1;
``''''''`` }
All programs that use asio need to have at least one boost::asio::io\_service object.
``''''''`` boost::asio::io_service io_service;
We need to turn the server name that was specified as a parameter to the application, into a TCP endpoint. To do this we use an boost::asio::ip::tcp::resolver object.
``''''''`` tcp::resolver resolver(io_service);
A resolver takes a query object and turns it into a list of endpoints. We construct a query using the name of the server, specified in `argv[1]`, and the name of the service, in this case `"daytime"`.
``''''''`` tcp::resolver::query query(argv[1], "daytime");
The list of endpoints is returned using an iterator of type boost::asio::ip::tcp::resolver::iterator. A default constructed boost::asio::ip::tcp::resolver::iterator object is used as the end iterator.
``''''''`` tcp::resolver::iterator endpoint_iterator = resolver.resolve(query);
``''''''`` tcp::resolver::iterator end;
Now we create and connect the socket. The list of endpoints obtained above may contain both IPv4 and IPv6 endpoints, so we need to try each of them until we find one that works. This keeps the client program independent of a specific IP version.
``''''''`` tcp::socket socket(io_service);
``''''''`` boost::system::error_code error = boost::asio::error::host_not_found;
``''''''`` while (error && endpoint_iterator != end)
``''''''`` {
``''''''`` socket.close();
``''''''`` socket.connect(*endpoint_iterator++, error);
``''''''`` }
``''''''`` if (error)
``''''''`` throw boost::system::system_error(error);
The connection is open. All we need to do now is read the response from the daytime service.
We use a `boost::array` to hold the received data. The boost::asio::buffer() function automatically determines the size of the array to help prevent buffer overruns. Instead of a `boost::array`, we could have used a `char []` or `std::vector`.
``''''''`` for (;;)
``''''''`` {
``''''''`` boost::array<char, 128> buf;
``''''''`` boost::system::error_code error;
``''''''`` size_t len = socket.read_some(boost::asio::buffer(buf), error);
When the server closes the connection, the boost::asio::ip::tcp::socket::read\_some() function will exit with the boost::asio::error::eof error, which is how we know to exit the loop.
``''''''`` if (error == boost::asio::error::eof)
``''''''`` break; // Connection closed cleanly by peer.
``''''''`` else if (error)
``''''''`` throw boost::system::system_error(error); // Some other error.
``''''''`` std::cout.write(buf.data(), len);
``''''''`` }
Finally, handle any exceptions that may have been thrown.
``''''''`` }
``''''''`` catch (std::exception& e)
``''''''`` {
``''''''`` std::cerr << e.what() << std::endl;
``''''''`` }
See the [link boost_asio.tutorial.tutdaytime1.src full source listing]
Return to the [link boost_asio.tutorial tutorial index]
Next: [link boost_asio.tutorial.tutdaytime2 Daytime.2 - A synchronous TCP daytime server]
[section:src Source listing for Daytime.1]
``''''''``//
``''''''``// client.cpp
``''''''``// ~~~~~~~~~~
``''''''``//
``''''''``// Copyright (c) 2003-2008 Christopher M. Kohlhoff (chris at kohlhoff dot com)
``''''''``//
``''''''``// Distributed under the Boost Software License, Version 1.0. (See accompanying
``''''''``// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
``''''''``//
``''''''``#include <iostream>
``''''''``#include <boost/array.hpp>
``''''''``#include <boost/asio.hpp>
``''''''``using boost::asio::ip::tcp;
``''''''``int main(int argc, char* argv[])
``''''''``{
``''''''`` try
``''''''`` {
``''''''`` if (argc != 2)
``''''''`` {
``''''''`` std::cerr << "Usage: client <host>" << std::endl;
``''''''`` return 1;
``''''''`` }
``''''''`` boost::asio::io_service io_service;
``''''''`` tcp::resolver resolver(io_service);
``''''''`` tcp::resolver::query query(argv[1], "daytime");
``''''''`` tcp::resolver::iterator endpoint_iterator = resolver.resolve(query);
``''''''`` tcp::resolver::iterator end;
``''''''`` tcp::socket socket(io_service);
``''''''`` boost::system::error_code error = boost::asio::error::host_not_found;
``''''''`` while (error && endpoint_iterator != end)
``''''''`` {
``''''''`` socket.close();
``''''''`` socket.connect(*endpoint_iterator++, error);
``''''''`` }
``''''''`` if (error)
``''''''`` throw boost::system::system_error(error);
``''''''`` for (;;)
``''''''`` {
``''''''`` boost::array<char, 128> buf;
``''''''`` boost::system::error_code error;
``''''''`` size_t len = socket.read_some(boost::asio::buffer(buf), error);
``''''''`` if (error == boost::asio::error::eof)
``''''''`` break; // Connection closed cleanly by peer.
``''''''`` else if (error)
``''''''`` throw boost::system::system_error(error); // Some other error.
``''''''`` std::cout.write(buf.data(), len);
``''''''`` }
``''''''`` }
``''''''`` catch (std::exception& e)
``''''''`` {
``''''''`` std::cerr << e.what() << std::endl;
``''''''`` }
``''''''`` return 0;
``''''''``}
Return to [link boost_asio.tutorial.tutdaytime1 Daytime.1 - A synchronous TCP daytime client]
[endsect]
[endsect]
[section:tutdaytime2 Daytime.2 - A synchronous TCP daytime server]
This tutorial program shows how to use asio to implement a server application with TCP.
``''''''``#include <ctime>
``''''''``#include <iostream>
``''''''``#include <string>
``''''''``#include <boost/asio.hpp>
``''''''``using boost::asio::ip::tcp;
We define the function `make_daytime_string()` to create the string to be sent back to the client. This function will be reused in all of our daytime server applications.
``''''''``std::string make_daytime_string()
``''''''``{
``''''''`` using namespace std; // For time_t, time and ctime;
``''''''`` time_t now = time(0);
``''''''`` return ctime(&now);
``''''''``}
``''''''``int main()
``''''''``{
``''''''`` try
``''''''`` {
``''''''`` boost::asio::io_service io_service;
A boost::asio::ip::tcp::acceptor object needs to be created to listen for new connections. It is initialised to listen on TCP port 13, for IP version 4.
``''''''`` tcp::acceptor acceptor(io_service, tcp::endpoint(tcp::v4(), 13));
This is an iterative server, which means that it will handle one connection at a time. Create a socket that will represent the connection to the client, and then wait for a connection.
``''''''`` for (;;)
``''''''`` {
``''''''`` tcp::socket socket(io_service);
``''''''`` acceptor.accept(socket);
A client is accessing our service. Determine the current time and transfer this information to the client.
``''''''`` std::string message = make_daytime_string();
``''''''`` boost::system::error_code ignored_error;
``''''''`` boost::asio::write(socket, boost::asio::buffer(message),
``''''''`` boost::asio::transfer_all(), ignored_error);
``''''''`` }
``''''''`` }
Finally, handle any exceptions.
``''''''`` catch (std::exception& e)
``''''''`` {
``''''''`` std::cerr << e.what() << std::endl;
``''''''`` }
``''''''`` return 0;
``''''''``}
See the [link boost_asio.tutorial.tutdaytime2.src full source listing]
Return to the [link boost_asio.tutorial tutorial index]
Previous: [link boost_asio.tutorial.tutdaytime1 Daytime.1 - A synchronous TCP daytime client]
Next: [link boost_asio.tutorial.tutdaytime3 Daytime.3 - An asynchronous TCP daytime server]
[section:src Source listing for Daytime.2]
``''''''``//
``''''''``// server.cpp
``''''''``// ~~~~~~~~~~
``''''''``//
``''''''``// Copyright (c) 2003-2008 Christopher M. Kohlhoff (chris at kohlhoff dot com)
``''''''``//
``''''''``// Distributed under the Boost Software License, Version 1.0. (See accompanying
``''''''``// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
``''''''``//
``''''''``#include <ctime>
``''''''``#include <iostream>
``''''''``#include <string>
``''''''``#include <boost/asio.hpp>
``''''''``using boost::asio::ip::tcp;
``''''''``std::string make_daytime_string()
``''''''``{
``''''''`` using namespace std; // For time_t, time and ctime;
``''''''`` time_t now = time(0);
``''''''`` return ctime(&now);
``''''''``}
``''''''``int main()
``''''''``{
``''''''`` try
``''''''`` {
``''''''`` boost::asio::io_service io_service;
``''''''`` tcp::acceptor acceptor(io_service, tcp::endpoint(tcp::v4(), 13));
``''''''`` for (;;)
``''''''`` {
``''''''`` tcp::socket socket(io_service);
``''''''`` acceptor.accept(socket);
``''''''`` std::string message = make_daytime_string();
``''''''`` boost::system::error_code ignored_error;
``''''''`` boost::asio::write(socket, boost::asio::buffer(message),
``''''''`` boost::asio::transfer_all(), ignored_error);
``''''''`` }
``''''''`` }
``''''''`` catch (std::exception& e)
``''''''`` {
``''''''`` std::cerr << e.what() << std::endl;
``''''''`` }
``''''''`` return 0;
``''''''``}
Return to [link boost_asio.tutorial.tutdaytime2 Daytime.2 - A synchronous TCP daytime server]
[endsect]
[endsect]
[section:tutdaytime3 Daytime.3 - An asynchronous TCP daytime server]
[heading The main() function]
``''''''``int main()
``''''''``{
``''''''`` try
``''''''`` {
We need to create a server object to accept incoming client connections. The boost::asio::io\_service object provides I/O services, such as sockets, that the server object will use.
``''''''`` boost::asio::io_service io_service;
``''''''`` tcp_server server(io_service);
Run the boost::asio::io\_service object so that it will perform asynchronous operations on your behalf.
``''''''`` io_service.run();
``''''''`` }
``''''''`` catch (std::exception& e)
``''''''`` {
``''''''`` std::cerr << e.what() << std::endl;
``''''''`` }
``''''''`` return 0;
``''''''``}
[heading The tcp_server class]
``''''''``class tcp_server
``''''''``{
``''''''``public:
The constructor initialises an acceptor to listen on TCP port 13.
``''''''`` tcp_server(boost::asio::io_service& io_service)
``''''''`` : acceptor_(io_service, tcp::endpoint(tcp::v4(), 13))
``''''''`` {
``''''''`` start_accept();
``''''''`` }
``''''''``private:
The function `start_accept()` creates a socket and initiates an asynchronous accept operation to wait for a new connection.
``''''''`` void start_accept()
``''''''`` {
``''''''`` tcp_connection::pointer new_connection =
``''''''`` tcp_connection::create(acceptor_.io_service());
``''''''`` acceptor_.async_accept(new_connection->socket(),
``''''''`` boost::bind(&tcp_server::handle_accept, this, new_connection,
``''''''`` boost::asio::placeholders::error));
``''''''`` }
The function `handle_accept()` is called when the asynchronous accept operation initiated by `start_accept()` finishes. It services the client request, and then calls `start_accept()` to initiate the next accept operation.
``''''''`` void handle_accept(tcp_connection::pointer new_connection,
``''''''`` const boost::system::error_code& error)
``''''''`` {
``''''''`` if (!error)
``''''''`` {
``''''''`` new_connection->start();
``''''''`` start_accept();
``''''''`` }
``''''''`` }
[heading The tcp_connection class]
We will use `shared_ptr` and `enable_shared_from_this` because we want to keep the `tcp_connection` object alive as long as there is an operation that refers to it.
``''''''``class tcp_connection
``''''''`` : public boost::enable_shared_from_this<tcp_connection>
``''''''``{
``''''''``public:
``''''''`` typedef boost::shared_ptr<tcp_connection> pointer;
``''''''`` static pointer create(boost::asio::io_service& io_service)
``''''''`` {
``''''''`` return pointer(new tcp_connection(io_service));
``''''''`` }
``''''''`` tcp::socket& socket()
``''''''`` {
``''''''`` return socket_;
``''''''`` }
In the function `start()`, we call boost::asio::async\_write() to serve the data to the client. Note that we are using boost::asio::async\_write(), rather than boost::asio::ip::tcp::socket::async\_write\_some(), to ensure that the entire block of data is sent.
``''''''`` void start()
``''''''`` {
The data to be sent is stored in the class member `message_` as we need to keep the data valid until the asynchronous operation is complete.
``''''''`` message_ = make_daytime_string();
When initiating the asynchronous operation, and if using boost::bind(), you must specify only the arguments that match the handler's parameter list. In this program, both of the argument placeholders (boost::asio::placeholders::error and boost::asio::placeholders::bytes\_transferred) could potentially have been removed, since they are not being used in `handle_write()`.
``''''''`` boost::asio::async_write(socket_, boost::asio::buffer(message_),
``''''''`` boost::bind(&tcp_connection::handle_write, shared_from_this(),
``''''''`` boost::asio::placeholders::error,
``''''''`` boost::asio::placeholders::bytes_transferred));
Any further actions for this client connection are now the responsibility of `handle_write()`.
``''''''`` }
``''''''``private:
``''''''`` tcp_connection(boost::asio::io_service& io_service)
``''''''`` : socket_(io_service)
``''''''`` {
``''''''`` }
``''''''`` void handle_write(const boost::system::error_code& /*error*/,
``''''''`` size_t /*bytes_transferred*/)
``''''''`` {
``''''''`` }
``''''''`` tcp::socket socket_;
``''''''`` std::string message_;
``''''''``};
[heading Removing unused handler parameters]
You may have noticed that the `error`, and `bytes_transferred` parameters are not used in the body of the `handle_write()` function. If parameters are not needed, it is possible to remove them from the function so that it looks like:
``''''''`` void handle_write()
``''''''`` {
``''''''`` }
The boost::asio::async\_write() call used to initiate the call can then be changed to just:
``''''''`` boost::asio::async_write(socket_, boost::asio::buffer(message_),
``''''''`` boost::bind(&tcp_connection::handle_write, shared_from_this()));
See the [link boost_asio.tutorial.tutdaytime3.src full source listing]
Return to the [link boost_asio.tutorial tutorial index]
Previous: [link boost_asio.tutorial.tutdaytime2 Daytime.2 - A synchronous TCP daytime server]
Next: [link boost_asio.tutorial.tutdaytime4 Daytime.4 - A synchronous UDP daytime client]
[section:src Source listing for Daytime.3]
``''''''``//
``''''''``// server.cpp
``''''''``// ~~~~~~~~~~
``''''''``//
``''''''``// Copyright (c) 2003-2008 Christopher M. Kohlhoff (chris at kohlhoff dot com)
``''''''``//
``''''''``// Distributed under the Boost Software License, Version 1.0. (See accompanying
``''''''``// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
``''''''``//
``''''''``#include <ctime>
``''''''``#include <iostream>
``''''''``#include <string>
``''''''``#include <boost/bind.hpp>
``''''''``#include <boost/shared_ptr.hpp>
``''''''``#include <boost/enable_shared_from_this.hpp>
``''''''``#include <boost/asio.hpp>
``''''''``using boost::asio::ip::tcp;
``''''''``std::string make_daytime_string()
``''''''``{
``''''''`` using namespace std; // For time_t, time and ctime;
``''''''`` time_t now = time(0);
``''''''`` return ctime(&now);
``''''''``}
``''''''``class tcp_connection
``''''''`` : public boost::enable_shared_from_this<tcp_connection>
``''''''``{
``''''''``public:
``''''''`` typedef boost::shared_ptr<tcp_connection> pointer;
``''''''`` static pointer create(boost::asio::io_service& io_service)
``''''''`` {
``''''''`` return pointer(new tcp_connection(io_service));
``''''''`` }
``''''''`` tcp::socket& socket()
``''''''`` {
``''''''`` return socket_;
``''''''`` }
``''''''`` void start()
``''''''`` {
``''''''`` message_ = make_daytime_string();
``''''''`` boost::asio::async_write(socket_, boost::asio::buffer(message_),
``''''''`` boost::bind(&tcp_connection::handle_write, shared_from_this(),
``''''''`` boost::asio::placeholders::error,
``''''''`` boost::asio::placeholders::bytes_transferred));
``''''''`` }
``''''''``private:
``''''''`` tcp_connection(boost::asio::io_service& io_service)
``''''''`` : socket_(io_service)
``''''''`` {
``''''''`` }
``''''''`` void handle_write(const boost::system::error_code& /*error*/,
``''''''`` size_t /*bytes_transferred*/)
``''''''`` {
``''''''`` }
``''''''`` tcp::socket socket_;
``''''''`` std::string message_;
``''''''``};
``''''''``class tcp_server
``''''''``{
``''''''``public:
``''''''`` tcp_server(boost::asio::io_service& io_service)
``''''''`` : acceptor_(io_service, tcp::endpoint(tcp::v4(), 13))
``''''''`` {
``''''''`` start_accept();
``''''''`` }
``''''''``private:
``''''''`` void start_accept()
``''''''`` {
``''''''`` tcp_connection::pointer new_connection =
``''''''`` tcp_connection::create(acceptor_.io_service());
``''''''`` acceptor_.async_accept(new_connection->socket(),
``''''''`` boost::bind(&tcp_server::handle_accept, this, new_connection,
``''''''`` boost::asio::placeholders::error));
``''''''`` }
``''''''`` void handle_accept(tcp_connection::pointer new_connection,
``''''''`` const boost::system::error_code& error)
``''''''`` {
``''''''`` if (!error)
``''''''`` {
``''''''`` new_connection->start();
``''''''`` start_accept();
``''''''`` }
``''''''`` }
``''''''`` tcp::acceptor acceptor_;
``''''''``};
``''''''``int main()
``''''''``{
``''''''`` try
``''''''`` {
``''''''`` boost::asio::io_service io_service;
``''''''`` tcp_server server(io_service);
``''''''`` io_service.run();
``''''''`` }
``''''''`` catch (std::exception& e)
``''''''`` {
``''''''`` std::cerr << e.what() << std::endl;
``''''''`` }
``''''''`` return 0;
``''''''``}
Return to [link boost_asio.tutorial.tutdaytime3 Daytime.3 - An asynchronous TCP daytime server]
[endsect]
[endsect]
[section:tutdaytime4 Daytime.4 - A synchronous UDP daytime client]
This tutorial program shows how to use asio to implement a client application with UDP.
``''''''``#include <iostream>
``''''''``#include <boost/array.hpp>
``''''''``#include <boost/asio.hpp>
``''''''``using boost::asio::ip::udp;
The start of the application is essentially the same as for the TCP daytime client.
``''''''``int main(int argc, char* argv[])
``''''''``{
``''''''`` try
``''''''`` {
``''''''`` if (argc != 2)
``''''''`` {
``''''''`` std::cerr << "Usage: client <host>" << std::endl;
``''''''`` return 1;
``''''''`` }
``''''''`` boost::asio::io_service io_service;
We use an boost::asio::ip::udp::resolver object to find the correct remote endpoint to use based on the host and service names. The query is restricted to return only IPv4 endpoints by the boost::asio::ip::udp::v4() argument.
``''''''`` udp::resolver resolver(io_service);
``''''''`` udp::resolver::query query(udp::v4(), argv[1], "daytime");
The boost::asio::ip::udp::resolver::resolve() function is guaranteed to return at least one endpoint in the list if it does not fail. This means it is safe to dereference the return value directly.
``''''''`` udp::endpoint receiver_endpoint = *resolver.resolve(query);
Since UDP is datagram-oriented, we will not be using a stream socket. Create an boost::asio::ip::udp::socket and initiate contact with the remote endpoint.
``''''''`` udp::socket socket(io_service);
``''''''`` socket.open(udp::v4());
``''''''`` boost::array<char, 1> send_buf = { 0 };
``''''''`` socket.send_to(boost::asio::buffer(send_buf), receiver_endpoint);
Now we need to be ready to accept whatever the server sends back to us. The endpoint on our side that receives the server's response will be initialised by boost::asio::ip::udp::socket::receive\_from().
``''''''`` boost::array<char, 128> recv_buf;
``''''''`` udp::endpoint sender_endpoint;
``''''''`` size_t len = socket.receive_from(
``''''''`` boost::asio::buffer(recv_buf), sender_endpoint);
``''''''`` std::cout.write(recv_buf.data(), len);
``''''''`` }
Finally, handle any exceptions that may have been thrown.
``''''''`` catch (std::exception& e)
``''''''`` {
``''''''`` std::cerr << e.what() << std::endl;
``''''''`` }
``''''''`` return 0;
``''''''``}
See the [link boost_asio.tutorial.tutdaytime4.src full source listing]
Return to the [link boost_asio.tutorial tutorial index]
Previous: [link boost_asio.tutorial.tutdaytime3 Daytime.3 - An asynchronous TCP daytime server]
Next: [link boost_asio.tutorial.tutdaytime5 Daytime.5 - A synchronous UDP daytime server]
[section:src Source listing for Daytime.4]
``''''''``//
``''''''``// client.cpp
``''''''``// ~~~~~~~~~~
``''''''``//
``''''''``// Copyright (c) 2003-2008 Christopher M. Kohlhoff (chris at kohlhoff dot com)
``''''''``//
``''''''``// Distributed under the Boost Software License, Version 1.0. (See accompanying
``''''''``// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
``''''''``//
``''''''``#include <iostream>
``''''''``#include <boost/array.hpp>
``''''''``#include <boost/asio.hpp>
``''''''``using boost::asio::ip::udp;
``''''''``int main(int argc, char* argv[])
``''''''``{
``''''''`` try
``''''''`` {
``''''''`` if (argc != 2)
``''''''`` {
``''''''`` std::cerr << "Usage: client <host>" << std::endl;
``''''''`` return 1;
``''''''`` }
``''''''`` boost::asio::io_service io_service;
``''''''`` udp::resolver resolver(io_service);
``''''''`` udp::resolver::query query(udp::v4(), argv[1], "daytime");
``''''''`` udp::endpoint receiver_endpoint = *resolver.resolve(query);
``''''''`` udp::socket socket(io_service);
``''''''`` socket.open(udp::v4());
``''''''`` boost::array<char, 1> send_buf = { 0 };
``''''''`` socket.send_to(boost::asio::buffer(send_buf), receiver_endpoint);
``''''''`` boost::array<char, 128> recv_buf;
``''''''`` udp::endpoint sender_endpoint;
``''''''`` size_t len = socket.receive_from(
``''''''`` boost::asio::buffer(recv_buf), sender_endpoint);
``''''''`` std::cout.write(recv_buf.data(), len);
``''''''`` }
``''''''`` catch (std::exception& e)
``''''''`` {
``''''''`` std::cerr << e.what() << std::endl;
``''''''`` }
``''''''`` return 0;
``''''''``}
Return to [link boost_asio.tutorial.tutdaytime4 Daytime.4 - A synchronous UDP daytime client]
[endsect]
[endsect]
[section:tutdaytime5 Daytime.5 - A synchronous UDP daytime server]
This tutorial program shows how to use asio to implement a server application with UDP.
``''''''``int main()
``''''''``{
``''''''`` try
``''''''`` {
``''''''`` boost::asio::io_service io_service;
Create an boost::asio::ip::udp::socket object to receive requests on UDP port 13.
``''''''`` udp::socket socket(io_service, udp::endpoint(udp::v4(), 13));
Wait for a client to initiate contact with us. The remote\_endpoint object will be populated by boost::asio::ip::udp::socket::receive\_from().
``''''''`` for (;;)
``''''''`` {
``''''''`` boost::array<char, 1> recv_buf;
``''''''`` udp::endpoint remote_endpoint;
``''''''`` boost::system::error_code error;
``''''''`` socket.receive_from(boost::asio::buffer(recv_buf),
``''''''`` remote_endpoint, 0, error);
``''''''`` if (error && error != boost::asio::error::message_size)
``''''''`` throw boost::system::system_error(error);
Determine what we are going to send back to the client.
``''''''`` std::string message = make_daytime_string();
Send the response to the remote\_endpoint.
``''''''`` boost::system::error_code ignored_error;
``''''''`` socket.send_to(boost::asio::buffer(message),
``''''''`` remote_endpoint, 0, ignored_error);
``''''''`` }
``''''''`` }
Finally, handle any exceptions.
``''''''`` catch (std::exception& e)
``''''''`` {
``''''''`` std::cerr << e.what() << std::endl;
``''''''`` }
``''''''`` return 0;
``''''''``}
See the [link boost_asio.tutorial.tutdaytime5.src full source listing]
Return to the [link boost_asio.tutorial tutorial index]
Previous: [link boost_asio.tutorial.tutdaytime4 Daytime.4 - A synchronous UDP daytime client]
Next: [link boost_asio.tutorial.tutdaytime6 Daytime.6 - An asynchronous UDP daytime server]
[section:src Source listing for Daytime.5]
``''''''``//
``''''''``// server.cpp
``''''''``// ~~~~~~~~~~
``''''''``//
``''''''``// Copyright (c) 2003-2008 Christopher M. Kohlhoff (chris at kohlhoff dot com)
``''''''``//
``''''''``// Distributed under the Boost Software License, Version 1.0. (See accompanying
``''''''``// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
``''''''``//
``''''''``#include <ctime>
``''''''``#include <iostream>
``''''''``#include <string>
``''''''``#include <boost/array.hpp>
``''''''``#include <boost/asio.hpp>
``''''''``using boost::asio::ip::udp;
``''''''``std::string make_daytime_string()
``''''''``{
``''''''`` using namespace std; // For time_t, time and ctime;
``''''''`` time_t now = time(0);
``''''''`` return ctime(&now);
``''''''``}
``''''''``int main()
``''''''``{
``''''''`` try
``''''''`` {
``''''''`` boost::asio::io_service io_service;
``''''''`` udp::socket socket(io_service, udp::endpoint(udp::v4(), 13));
``''''''`` for (;;)
``''''''`` {
``''''''`` boost::array<char, 1> recv_buf;
``''''''`` udp::endpoint remote_endpoint;
``''''''`` boost::system::error_code error;
``''''''`` socket.receive_from(boost::asio::buffer(recv_buf),
``''''''`` remote_endpoint, 0, error);
``''''''`` if (error && error != boost::asio::error::message_size)
``''''''`` throw boost::system::system_error(error);
``''''''`` std::string message = make_daytime_string();
``''''''`` boost::system::error_code ignored_error;
``''''''`` socket.send_to(boost::asio::buffer(message),
``''''''`` remote_endpoint, 0, ignored_error);
``''''''`` }
``''''''`` }
``''''''`` catch (std::exception& e)
``''''''`` {
``''''''`` std::cerr << e.what() << std::endl;
``''''''`` }
``''''''`` return 0;
``''''''``}
Return to [link boost_asio.tutorial.tutdaytime5 Daytime.5 - A synchronous UDP daytime server]
[endsect]
[endsect]
[section:tutdaytime6 Daytime.6 - An asynchronous UDP daytime server]
[heading The main() function]
``''''''``int main()
``''''''``{
``''''''`` try
``''''''`` {
Create a server object to accept incoming client requests, and run the boost::asio::io\_service object.
``''''''`` boost::asio::io_service io_service;
``''''''`` udp_server server(io_service);
``''''''`` io_service.run();
``''''''`` }
``''''''`` catch (std::exception& e)
``''''''`` {
``''''''`` std::cerr << e.what() << std::endl;
``''''''`` }
``''''''`` return 0;
``''''''``}
[heading The udp_server class]
``''''''``class udp_server
``''''''``{
``''''''``public:
The constructor initialises a socket to listen on UDP port 13.
``''''''`` udp_server(boost::asio::io_service& io_service)
``''''''`` : socket_(io_service, udp::endpoint(udp::v4(), 13))
``''''''`` {
``''''''`` start_receive();
``''''''`` }
``''''''``private:
``''''''`` void start_receive()
``''''''`` {
The function boost::asio::ip::udp::socket::async\_receive\_from() will cause the application to listen in the background for a new request. When such a request is received, the boost::asio::io\_service object will invoke the `handle_receive()` function with two arguments: a value of type boost::system::error\_code indicating whether the operation succeeded or failed, and a `size_t` value `bytes_transferred` specifying the number of bytes received.
``''''''`` socket_.async_receive_from(
``''''''`` boost::asio::buffer(recv_buffer_), remote_endpoint_,
``''''''`` boost::bind(&udp_server::handle_receive, this,
``''''''`` boost::asio::placeholders::error,
``''''''`` boost::asio::placeholders::bytes_transferred));
``''''''`` }
The function `handle_receive()` will service the client request.
``''''''`` void handle_receive(const boost::system::error_code& error,
``''''''`` std::size_t /*bytes_transferred*/)
``''''''`` {
The `error` parameter contains the result of the asynchronous operation. Since we only provide the 1-byte `recv_buffer_` to contain the client's request, the boost::asio::io\_service object would return an error if the client sent anything larger. We can ignore such an error if it comes up.
``''''''`` if (!error || error == boost::asio::error::message_size)
``''''''`` {
Determine what we are going to send.
``''''''`` boost::shared_ptr<std::string> message(
``''''''`` new std::string(make_daytime_string()));
We now call boost::asio::ip::udp::socket::async\_send\_to() to serve the data to the client.
``''''''`` socket_.async_send_to(boost::asio::buffer(*message), remote_endpoint_,
``''''''`` boost::bind(&udp_server::handle_send, this, message,
``''''''`` boost::asio::placeholders::error,
``''''''`` boost::asio::placeholders::bytes_transferred));
When initiating the asynchronous operation, and if using boost::bind(), you must specify only the arguments that match the handler's parameter list. In this program, both of the argument placeholders (boost::asio::placeholders::error and boost::asio::placeholders::bytes\_transferred) could potentially have been removed.
Start listening for the next client request.
``''''''`` start_receive();
Any further actions for this client request are now the responsibility of `handle_send()`.
``''''''`` }
``''''''`` }
The function `handle_send()` is invoked after the service request has been completed.
``''''''`` void handle_send(boost::shared_ptr<std::string> /*message*/,
``''''''`` const boost::system::error_code& /*error*/,
``''''''`` std::size_t /*bytes_transferred*/)
``''''''`` {
``''''''`` }
``''''''`` udp::socket socket_;
``''''''`` udp::endpoint remote_endpoint_;
``''''''`` boost::array<char, 1> recv_buffer_;
``''''''``};
See the [link boost_asio.tutorial.tutdaytime6.src full source listing]
Return to the [link boost_asio.tutorial tutorial index]
Previous: [link boost_asio.tutorial.tutdaytime5 Daytime.5 - A synchronous UDP daytime server]
Next: [link boost_asio.tutorial.tutdaytime7 Daytime.7 - A combined TCP/UDP asynchronous server]
[section:src Source listing for Daytime.6]
``''''''``//
``''''''``// server.cpp
``''''''``// ~~~~~~~~~~
``''''''``//
``''''''``// Copyright (c) 2003-2008 Christopher M. Kohlhoff (chris at kohlhoff dot com)
``''''''``//
``''''''``// Distributed under the Boost Software License, Version 1.0. (See accompanying
``''''''``// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
``''''''``//
``''''''``#include <ctime>
``''''''``#include <iostream>
``''''''``#include <string>
``''''''``#include <boost/array.hpp>
``''''''``#include <boost/bind.hpp>
``''''''``#include <boost/shared_ptr.hpp>
``''''''``#include <boost/asio.hpp>
``''''''``using boost::asio::ip::udp;
``''''''``std::string make_daytime_string()
``''''''``{
``''''''`` using namespace std; // For time_t, time and ctime;
``''''''`` time_t now = time(0);
``''''''`` return ctime(&now);
``''''''``}
``''''''``class udp_server
``''''''``{
``''''''``public:
``''''''`` udp_server(boost::asio::io_service& io_service)
``''''''`` : socket_(io_service, udp::endpoint(udp::v4(), 13))
``''''''`` {
``''''''`` start_receive();
``''''''`` }
``''''''``private:
``''''''`` void start_receive()
``''''''`` {
``''''''`` socket_.async_receive_from(
``''''''`` boost::asio::buffer(recv_buffer_), remote_endpoint_,
``''''''`` boost::bind(&udp_server::handle_receive, this,
``''''''`` boost::asio::placeholders::error,
``''''''`` boost::asio::placeholders::bytes_transferred));
``''''''`` }
``''''''`` void handle_receive(const boost::system::error_code& error,
``''''''`` std::size_t /*bytes_transferred*/)
``''''''`` {
``''''''`` if (!error || error == boost::asio::error::message_size)
``''''''`` {
``''''''`` boost::shared_ptr<std::string> message(
``''''''`` new std::string(make_daytime_string()));
``''''''`` socket_.async_send_to(boost::asio::buffer(*message), remote_endpoint_,
``''''''`` boost::bind(&udp_server::handle_send, this, message,
``''''''`` boost::asio::placeholders::error,
``''''''`` boost::asio::placeholders::bytes_transferred));
``''''''`` start_receive();
``''''''`` }
``''''''`` }
``''''''`` void handle_send(boost::shared_ptr<std::string> /*message*/,
``''''''`` const boost::system::error_code& /*error*/,
``''''''`` std::size_t /*bytes_transferred*/)
``''''''`` {
``''''''`` }
``''''''`` udp::socket socket_;
``''''''`` udp::endpoint remote_endpoint_;
``''''''`` boost::array<char, 1> recv_buffer_;
``''''''``};
``''''''``int main()
``''''''``{
``''''''`` try
``''''''`` {
``''''''`` boost::asio::io_service io_service;
``''''''`` udp_server server(io_service);
``''''''`` io_service.run();
``''''''`` }
``''''''`` catch (std::exception& e)
``''''''`` {
``''''''`` std::cerr << e.what() << std::endl;
``''''''`` }
``''''''`` return 0;
``''''''``}
Return to [link boost_asio.tutorial.tutdaytime6 Daytime.6 - An asynchronous UDP daytime server]
[endsect]
[endsect]
[section:tutdaytime7 Daytime.7 - A combined TCP/UDP asynchronous server]
This tutorial program shows how to combine the two asynchronous servers that we have just written, into a single server application.
[heading The main() function]
``''''''``int main()
``''''''``{
``''''''`` try
``''''''`` {
``''''''`` boost::asio::io_service io_service;
We will begin by creating a server object to accept a TCP client connection.
``''''''`` tcp_server server1(io_service);
We also need a server object to accept a UDP client request.
``''''''`` udp_server server2(io_service);
We have created two lots of work for the boost::asio::io\_service object to do.
``''''''`` io_service.run();
``''''''`` }
``''''''`` catch (std::exception& e)
``''''''`` {
``''''''`` std::cerr << e.what() << std::endl;
``''''''`` }
``''''''`` return 0;
``''''''``}
[heading The tcp_connection and tcp_server classes]
The following two classes are taken from [link boost_asio.tutorial.tutdaytime3 Daytime.3] .
``''''''``class tcp_connection
``''''''`` : public boost::enable_shared_from_this<tcp_connection>
``''''''``{
``''''''``public:
``''''''`` typedef boost::shared_ptr<tcp_connection> pointer;
``''''''`` static pointer create(boost::asio::io_service& io_service)
``''''''`` {
``''''''`` return pointer(new tcp_connection(io_service));
``''''''`` }
``''''''`` tcp::socket& socket()
``''''''`` {
``''''''`` return socket_;
``''''''`` }
``''''''`` void start()
``''''''`` {
``''''''`` message_ = make_daytime_string();
``''''''`` boost::asio::async_write(socket_, boost::asio::buffer(message_),
``''''''`` boost::bind(&tcp_connection::handle_write, shared_from_this()));
``''''''`` }
``''''''``private:
``''''''`` tcp_connection(boost::asio::io_service& io_service)
``''''''`` : socket_(io_service)
``''''''`` {
``''''''`` }
``''''''`` void handle_write()
``''''''`` {
``''''''`` }
``''''''`` tcp::socket socket_;
``''''''`` std::string message_;
``''''''``};
``''''''``class tcp_server
``''''''``{
``''''''``public:
``''''''`` tcp_server(boost::asio::io_service& io_service)
``''''''`` : acceptor_(io_service, tcp::endpoint(tcp::v4(), 13))
``''''''`` {
``''''''`` start_accept();
``''''''`` }
``''''''``private:
``''''''`` void start_accept()
``''''''`` {
``''''''`` tcp_connection::pointer new_connection =
``''''''`` tcp_connection::create(acceptor_.io_service());
``''''''`` acceptor_.async_accept(new_connection->socket(),
``''''''`` boost::bind(&tcp_server::handle_accept, this, new_connection,
``''''''`` boost::asio::placeholders::error));
``''''''`` }
``''''''`` void handle_accept(tcp_connection::pointer new_connection,
``''''''`` const boost::system::error_code& error)
``''''''`` {
``''''''`` if (!error)
``''''''`` {
``''''''`` new_connection->start();
``''''''`` start_accept();
``''''''`` }
``''''''`` }
``''''''`` tcp::acceptor acceptor_;
``''''''``};
[heading The udp_server class]
Similarly, this next class is taken from the [link boost_asio.tutorial.tutdaytime6 previous tutorial step] .
``''''''``class udp_server
``''''''``{
``''''''``public:
``''''''`` udp_server(boost::asio::io_service& io_service)
``''''''`` : socket_(io_service, udp::endpoint(udp::v4(), 13))
``''''''`` {
``''''''`` start_receive();
``''''''`` }
``''''''``private:
``''''''`` void start_receive()
``''''''`` {
``''''''`` socket_.async_receive_from(
``''''''`` boost::asio::buffer(recv_buffer_), remote_endpoint_,
``''''''`` boost::bind(&udp_server::handle_receive, this,
``''''''`` boost::asio::placeholders::error));
``''''''`` }
``''''''`` void handle_receive(const boost::system::error_code& error)
``''''''`` {
``''''''`` if (!error || error == boost::asio::error::message_size)
``''''''`` {
``''''''`` boost::shared_ptr<std::string> message(
``''''''`` new std::string(make_daytime_string()));
``''''''`` socket_.async_send_to(boost::asio::buffer(*message), remote_endpoint_,
``''''''`` boost::bind(&udp_server::handle_send, this, message));
``''''''`` start_receive();
``''''''`` }
``''''''`` }
``''''''`` void handle_send(boost::shared_ptr<std::string> /*message*/)
``''''''`` {
``''''''`` }
``''''''`` udp::socket socket_;
``''''''`` udp::endpoint remote_endpoint_;
``''''''`` boost::array<char, 1> recv_buffer_;
``''''''``};
See the [link boost_asio.tutorial.tutdaytime7.src full source listing]
Return to the [link boost_asio.tutorial tutorial index]
Previous: [link boost_asio.tutorial.tutdaytime6 Daytime.6 - An asynchronous UDP daytime server]
[section:src Source listing for Daytime.7]
``''''''``//
``''''''``// server.cpp
``''''''``// ~~~~~~~~~~
``''''''``//
``''''''``// Copyright (c) 2003-2008 Christopher M. Kohlhoff (chris at kohlhoff dot com)
``''''''``//
``''''''``// Distributed under the Boost Software License, Version 1.0. (See accompanying
``''''''``// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
``''''''``//
``''''''``#include <ctime>
``''''''``#include <iostream>
``''''''``#include <string>
``''''''``#include <boost/array.hpp>
``''''''``#include <boost/bind.hpp>
``''''''``#include <boost/shared_ptr.hpp>
``''''''``#include <boost/enable_shared_from_this.hpp>
``''''''``#include <boost/asio.hpp>
``''''''``using boost::asio::ip::tcp;
``''''''``using boost::asio::ip::udp;
``''''''``std::string make_daytime_string()
``''''''``{
``''''''`` using namespace std; // For time_t, time and ctime;
``''''''`` time_t now = time(0);
``''''''`` return ctime(&now);
``''''''``}
``''''''``class tcp_connection
``''''''`` : public boost::enable_shared_from_this<tcp_connection>
``''''''``{
``''''''``public:
``''''''`` typedef boost::shared_ptr<tcp_connection> pointer;
``''''''`` static pointer create(boost::asio::io_service& io_service)
``''''''`` {
``''''''`` return pointer(new tcp_connection(io_service));
``''''''`` }
``''''''`` tcp::socket& socket()
``''''''`` {
``''''''`` return socket_;
``''''''`` }
``''''''`` void start()
``''''''`` {
``''''''`` message_ = make_daytime_string();
``''''''`` boost::asio::async_write(socket_, boost::asio::buffer(message_),
``''''''`` boost::bind(&tcp_connection::handle_write, shared_from_this()));
``''''''`` }
``''''''``private:
``''''''`` tcp_connection(boost::asio::io_service& io_service)
``''''''`` : socket_(io_service)
``''''''`` {
``''''''`` }
``''''''`` void handle_write()
``''''''`` {
``''''''`` }
``''''''`` tcp::socket socket_;
``''''''`` std::string message_;
``''''''``};
``''''''``class tcp_server
``''''''``{
``''''''``public:
``''''''`` tcp_server(boost::asio::io_service& io_service)
``''''''`` : acceptor_(io_service, tcp::endpoint(tcp::v4(), 13))
``''''''`` {
``''''''`` start_accept();
``''''''`` }
``''''''``private:
``''''''`` void start_accept()
``''''''`` {
``''''''`` tcp_connection::pointer new_connection =
``''''''`` tcp_connection::create(acceptor_.io_service());
``''''''`` acceptor_.async_accept(new_connection->socket(),
``''''''`` boost::bind(&tcp_server::handle_accept, this, new_connection,
``''''''`` boost::asio::placeholders::error));
``''''''`` }
``''''''`` void handle_accept(tcp_connection::pointer new_connection,
``''''''`` const boost::system::error_code& error)
``''''''`` {
``''''''`` if (!error)
``''''''`` {
``''''''`` new_connection->start();
``''''''`` start_accept();
``''''''`` }
``''''''`` }
``''''''`` tcp::acceptor acceptor_;
``''''''``};
``''''''``class udp_server
``''''''``{
``''''''``public:
``''''''`` udp_server(boost::asio::io_service& io_service)
``''''''`` : socket_(io_service, udp::endpoint(udp::v4(), 13))
``''''''`` {
``''''''`` start_receive();
``''''''`` }
``''''''``private:
``''''''`` void start_receive()
``''''''`` {
``''''''`` socket_.async_receive_from(
``''''''`` boost::asio::buffer(recv_buffer_), remote_endpoint_,
``''''''`` boost::bind(&udp_server::handle_receive, this,
``''''''`` boost::asio::placeholders::error));
``''''''`` }
``''''''`` void handle_receive(const boost::system::error_code& error)
``''''''`` {
``''''''`` if (!error || error == boost::asio::error::message_size)
``''''''`` {
``''''''`` boost::shared_ptr<std::string> message(
``''''''`` new std::string(make_daytime_string()));
``''''''`` socket_.async_send_to(boost::asio::buffer(*message), remote_endpoint_,
``''''''`` boost::bind(&udp_server::handle_send, this, message));
``''''''`` start_receive();
``''''''`` }
``''''''`` }
``''''''`` void handle_send(boost::shared_ptr<std::string> /*message*/)
``''''''`` {
``''''''`` }
``''''''`` udp::socket socket_;
``''''''`` udp::endpoint remote_endpoint_;
``''''''`` boost::array<char, 1> recv_buffer_;
``''''''``};
``''''''``int main()
``''''''``{
``''''''`` try
``''''''`` {
``''''''`` boost::asio::io_service io_service;
``''''''`` tcp_server server1(io_service);
``''''''`` udp_server server2(io_service);
``''''''`` io_service.run();
``''''''`` }
``''''''`` catch (std::exception& e)
``''''''`` {
``''''''`` std::cerr << e.what() << std::endl;
``''''''`` }
``''''''`` return 0;
``''''''``}
Return to [link boost_asio.tutorial.tutdaytime7 Daytime.7 - A combined TCP/UDP asynchronous server]
[endsect]
[endsect]
[endsect]
|