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 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616
|
<HTML>
<HEAD>
<TITLE>Source: yateclass.h</TITLE>
<META NAME="Generator" CONTENT="KDOC ">
</HEAD>
<BODY bgcolor="#ffffff" text="#000000" link="#0000ff" vlink="#000099" alink= "#ffffff">
<TABLE WIDTH="100%" BORDER="0">
<TR>
<TD>
<TABLE BORDER="0">
<TR><TD valign="top" align="left" cellspacing="10">
<h1>Source: yateclass.h</h1>
</TD>
<TD valign="top" align="right" colspan="1"></TD></TR>
</TABLE>
<HR>
<TABLE BORDER="0">
</TABLE>
</TD>
<TD align="right"><TABLE BORDER="0"><TR><TD><small><A HREF="index-long.html">Annotated List</A></small></TD></TR>
<TR><TD><small><A HREF="header-list.html">Files</A></small></TD></TR>
<TR><TD><small><A HREF="all-globals.html">Globals</A></small></TD></TR>
<TR><TD><small><A HREF="hier.html">Hierarchy</A></small></TD></TR>
<TR><TD><small><A HREF="index.html">Index</A></small></TD></TR>
</TABLE></TD></TR></TABLE>
<pre>
/*
* yateclass.h
* This file is part of the YATE Project http://YATE.null.ro
*
* Base classes and types, not related to the engine or telephony
*
* Yet Another Telephony Engine - a fully featured software PBX and IVR
* Copyright (C) 2004-2006 Null Team
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef __YATECLASS_H
#define __YATECLASS_H
#ifndef __cplusplus
#error C++ is required
#endif
#include <sys/types.h>
#include <stddef.h>
#include <unistd.h>
#include <errno.h>
#ifndef _WORDSIZE
#if defined(__arch64__) || defined(__x86_64__) \
|| defined(__amd64__) || defined(__ia64__) \
|| defined(__alpha__) || defined(__sparcv9)
#define _WORDSIZE 64
#else
#define _WORDSIZE 32
#endif
#endif
#ifndef _WINDOWS
#if defined(WIN32) || defined(_WIN32)
#define _WINDOWS
#endif
#endif
#ifdef _WINDOWS
#include <windows.h>
#include <io.h>
#include <direct.h>
/**
* Windows definitions for commonly used types
*/
typedef signed __int8 int8_t;
typedef unsigned __int8 u_int8_t;
typedef unsigned __int8 uint8_t;
typedef signed __int16 int16_t;
typedef unsigned __int16 u_int16_t;
typedef unsigned __int16 uint16_t;
typedef signed __int32 int32_t;
typedef unsigned __int32 u_int32_t;
typedef unsigned __int32 uint32_t;
typedef signed __int64 int64_t;
typedef unsigned __int64 u_int64_t;
typedef unsigned __int64 uint64_t;
typedef int pid_t;
typedef int socklen_t;
typedef unsigned long in_addr_t;
#ifndef strcasecmp
#define strcasecmp _stricmp
#endif
#ifndef strncasecmp
#define strncasecmp _strnicmp
#endif
#define vsnprintf _vsnprintf
#define snprintf _snprintf
#define strdup _strdup
#define open _open
#define dup2 _dup2
#define read _read
#define write _write
#define close _close
#define getpid _getpid
#define chdir _chdir
#define mkdir(p,m) _mkdir(p)
#define unlink _unlink
#define O_RDWR _O_RDWR
#define O_RDONLY _O_RDONLY
#define O_WRONLY _O_WRONLY
#define O_APPEND _O_APPEND
#define O_BINARY _O_BINARY
#define O_EXCL _O_EXCL
#define O_CREAT _O_CREAT
#define O_TRUNC _O_TRUNC
#define O_NOCTTY 0
#define S_IRUSR _S_IREAD
#define S_IWUSR _S_IWRITE
#define S_IXUSR 0
#define S_IRWXU (_S_IREAD|_S_IWRITE)
#ifdef LIBYATE_EXPORTS
#define YATE_API __declspec(dllexport)
#else
#ifndef LIBYATE_STATIC
#define YATE_API __declspec(dllimport)
#endif
#endif
#define FMT64 "%I64d"
#define FMT64U "%I64u"
#else /* _WINDOWS */
#include <sys/time.h>
#include <sys/socket.h>
#if defined(__FreeBSD__)
#include <netinet/in_systm.h>
#endif
#include <netinet/in.h>
#include <netinet/ip.h>
#include <netinet/tcp.h>
#include <arpa/inet.h>
#include <netdb.h>
/**
* Non-Windows definitions for commonly used types
*/
#ifndef SOCKET
typedef int SOCKET;
#endif
#ifndef HANDLE
typedef int HANDLE;
#endif
#ifndef O_BINARY
#define O_BINARY 0
#endif
#if _WORDSIZE == 64
#define FMT64 "%ld"
#define FMT64U "%lu"
#else
#define FMT64 "%lld"
#define FMT64U "%llu"
#endif
#endif /* ! _WINDOWS */
#ifndef IPTOS_LOWDELAY
#define IPTOS_LOWDELAY 0x10
#define IPTOS_THROUGHPUT 0x08
#define IPTOS_RELIABILITY 0x04
#endif
#ifndef IPTOS_MINCOST
#define IPTOS_MINCOST 0x02
#endif
#ifndef YATE_API
#define YATE_API
#endif
#ifdef _WINDOWS
#undef RAND_MAX
#define RAND_MAX 2147483647
extern "C" {
YATE_API long int random();
YATE_API void srandom(unsigned int seed);
}
#endif
/**
* Holds all Telephony Engine related classes.
*/
namespace TelEngine {
#ifdef HAVE_GCC_FORMAT_CHECK
#define FORMAT_CHECK(f) __attribute__((format(printf,(f),(f)+1)))
#else
#define FORMAT_CHECK(f)
#endif
/**
* Abort execution (and coredump if allowed) if the abort flag is set.
* This function may not return.
*/
YATE_API void abortOnBug();
/**
* Set the abort on bug flag. The default flag state is false.
* @return The old state of the flag.
*/
YATE_API bool abortOnBug(bool doAbort);
/**
* Standard debugging levels.
* The DebugFail level is special - it is always displayed and may abort
* the program if @ref abortOnBug() is set.
*/
enum DebugLevel {
DebugFail = 0,
DebugGoOn = 2,
DebugStub = 4,
DebugWarn = 5,
DebugMild = 6,
DebugCall = 7,
DebugNote = 8,
DebugInfo = 9,
DebugAll = 10
};
/**
* Retrive the current global debug level
* @return The current global debug level
*/
YATE_API int debugLevel();
/**
* Set the current global debug level.
* @param level The desired debug level
* @return The new global debug level (may be different)
*/
YATE_API int debugLevel(int level);
/**
* Check if debugging output should be generated
* @param level The global debug level we are testing
* @return True if messages should be output, false otherwise
*/
YATE_API bool debugAt(int level);
/**
* Get an ANSI string to colorize debugging output
* @param level The debug level who's color is requested.
* Negative or out of range will reset to the default color
* @return ANSI string that sets color corresponding to level
*/
YATE_API const char* debugColor(int level);
/**
* Holds a local debugging level that can be modified separately from the
* global debugging
* @short A holder for a debug level
*/
class YATE_API DebugEnabler
{
public:
/**
* Constructor
* @param level The initial local debug level
* @param enabled Enable debugging on this object
*/
inline DebugEnabler(int level = TelEngine::debugLevel(), bool enabled = true)
: m_level(DebugFail), m_enabled(enabled), m_chain(0), m_name(0)
{ debugLevel(level); }
inline ~DebugEnabler()
{ m_name = 0; m_chain = 0; }
/**
* Retrive the current local debug level
* @return The current local debug level
*/
inline int debugLevel() const
{ return m_chain ? m_chain->debugLevel() : m_level; }
/**
* Set the current local debug level.
* @param level The desired debug level
* @return The new debug level (may be different)
*/
int debugLevel(int level);
/**
* Retrive the current debug activation status
* @return True if local debugging is enabled
*/
inline bool debugEnabled() const
{ return m_chain ? m_chain->debugEnabled() : m_enabled; }
/**
* Set the current debug activation status
* @param enable The new debug activation status, true to enable
*/
inline void debugEnabled(bool enable)
{ m_enabled = enable; m_chain = 0; }
/**
* Get the current debug name
* @return Name of the debug activation if set or NULL
*/
inline const char* debugName() const
{ return m_name; }
/**
* Check if debugging output should be generated
* @param level The debug level we are testing
* @return True if messages should be output, false otherwise
*/
bool debugAt(int level) const;
/**
* Check if this enabler is chained to another one
* @return True if local debugging is chained to other enabler
*/
inline bool debugChained() const
{ return m_chain != 0; }
/**
* Chain this debug holder to a parent or detach from existing one
* @param chain Pointer to parent debug level, NULL to detach
*/
inline void debugChain(const DebugEnabler* chain = 0)
{ m_chain = (chain != this) ? chain : 0; }
/**
* Copy debug settings from another object or from engine globals
* @param original Pointer to a DebugEnabler to copy settings from
*/
void debugCopy(const DebugEnabler* original = 0);
protected:
/**
* Set the current debug name
* @param name Static debug name or NULL
*/
inline void debugName(const char* name)
{ m_name = name; }
private:
int m_level;
bool m_enabled;
const DebugEnabler* m_chain;
const char* m_name;
};
#if 0 /* for documentation generator */
/**
* Convenience macro.
* Does the same as @ref Debug if DEBUG is \#defined (compiling for debugging)
* else it does not get compiled at all.
*/
void DDebug(int level, const char* format, ...);
/**
* Convenience macro.
* Does the same as @ref Debug if DEBUG is \#defined (compiling for debugging)
* else it does not get compiled at all.
*/
void DDebug(const char* facility, int level, const char* format, ...);
/**
* Convenience macro.
* Does the same as @ref Debug if DEBUG is \#defined (compiling for debugging)
* else it does not get compiled at all.
*/
void DDebug(const DebugEnabler* local, int level, const char* format, ...);
/**
* Convenience macro.
* Does the same as @ref Debug if XDEBUG is \#defined (compiling for extra
* debugging) else it does not get compiled at all.
*/
void XDebug(int level, const char* format, ...);
/**
* Convenience macro.
* Does the same as @ref Debug if XDEBUG is \#defined (compiling for extra
* debugging) else it does not get compiled at all.
*/
void XDebug(const char* facility, int level, const char* format, ...);
/**
* Convenience macro.
* Does the same as @ref Debug if XDEBUG is \#defined (compiling for extra
* debugging) else it does not get compiled at all.
*/
void XDebug(const DebugEnabler* local, int level, const char* format, ...);
/**
* Convenience macro.
* Does the same as @ref Debug if NDEBUG is not \#defined
* else it does not get compiled at all (compiling for mature release).
*/
void NDebug(int level, const char* format, ...);
/**
* Convenience macro.
* Does the same as @ref Debug if NDEBUG is not \#defined
* else it does not get compiled at all (compiling for mature release).
*/
void NDebug(const char* facility, int level, const char* format, ...);
/**
* Convenience macro.
* Does the same as @ref Debug if NDEBUG is not \#defined
* else it does not get compiled at all (compiling for mature release).
*/
void NDebug(const DebugEnabler* local, int level, const char* format, ...);
#endif
#ifdef _DEBUG
#undef DEBUG
#define DEBUG
#endif
#ifdef XDEBUG
#undef DEBUG
#define DEBUG
#endif
#ifdef DEBUG
#define DDebug Debug
#else
#ifdef _WINDOWS
#define DDebug
#else
#define DDebug(arg...)
#endif
#endif
#ifdef XDEBUG
#define XDebug Debug
#else
#ifdef _WINDOWS
#define XDebug
#else
#define XDebug(arg...)
#endif
#endif
#ifndef NDEBUG
#define NDebug Debug
#else
#ifdef _WINDOWS
#define NDebug
#else
#define NDebug(arg...)
#endif
#endif
/**
* Outputs a debug string.
* @param level The level of the message
* @param format A printf() style format string
*/
YATE_API void Debug(int level, const char* format, ...) FORMAT_CHECK(2);
/**
* Outputs a debug string for a specific facility.
* @param facility Facility that outputs the message
* @param level The level of the message
* @param format A printf() style format string
*/
YATE_API void Debug(const char* facility, int level, const char* format, ...) FORMAT_CHECK(3);
/**
* Outputs a debug string for a specific facility.
* @param local Pointer to a DebugEnabler holding current debugging settings
* @param level The level of the message
* @param format A printf() style format string
*/
YATE_API void Debug(const DebugEnabler* local, int level, const char* format, ...) FORMAT_CHECK(3);
/**
* Outputs a string to the debug console with formatting
* @param format A printf() style format string
*/
YATE_API void Output(const char* format, ...) FORMAT_CHECK(1);
/**
* This class is used as an automatic variable that logs messages on creation
* and destruction (when the instruction block is left or function returns).
* IMPORTANT: the name is not copied so it should best be static.
* @short An object that logs messages on creation and destruction
*/
class YATE_API Debugger
{
public:
/**
* Timestamp formatting
*/
enum Formatting {
None = 0,
Relative, // from program start
Absolute, // from EPOCH (1-1-1970)
Textual, // absolute GMT in YYYYMMDDhhmmss.uuuuuu format
};
/**
* The constructor prints the method entry message and indents.
* @param name Name of the function or block entered, must be static
* @param format printf() style format string
*/
Debugger(const char* name, const char* format = 0, ...);
/**
* The constructor prints the method entry message and indents.
* @param level The level of the message
* @param name Name of the function or block entered, must be static
* @param format printf() style format string
*/
Debugger(int level, const char* name, const char* format = 0, ...);
/**
* The destructor prints the method leave message and deindents.
*/
~Debugger();
/**
* Set the output callback
* @param outFunc Pointer to the output function, NULL to use stderr
*/
static void setOutput(void (*outFunc)(const char*,int) = 0);
/**
* Set the interactive output callback
* @param outFunc Pointer to the output function, NULL to disable
*/
static void setIntOut(void (*outFunc)(const char*,int) = 0);
/**
* Enable or disable the debug output
* @param enable Set to true to globally enable output
* @param colorize Enable ANSI colorization of output
*/
static void enableOutput(bool enable = true, bool colorize = false);
/**
* Set the format of timestamps on output messages and set the time start reference
* @param format Desired timestamp formatting
*/
static void setFormatting(Formatting format);
private:
const char* m_name;
};
/**
* A structure to build (mainly static) Token-to-ID translation tables.
* A table of such structures must end with an entry with a null token
*/
struct TokenDict {
/**
* Token to match
*/
const char* token;
/**
* Value the token translates to
*/
int value;
};
class String;
class Mutex;
#if 0 /* for documentation generator */
/**
* Macro to create a GenObject class from a base class and implement @ref GenObject::getObject
* @param type Class that is declared
* @param base Base class that is inherited
*/
void YCLASS(class type,class base);
/**
* Macro to create a GenObject class from two base classes and implement @ref GenObject::getObject
* @param type Class that is declared
* @param base1 First base class that is inherited
* @param base2 Second base class that is inherited
*/
void YCLASS2(class type,class base1,class base2);
/**
* Macro to create a GenObject class from three base classes and implement @ref GenObject::getObject
* @param type Class that is declared
* @param base1 First base class that is inherited
* @param base2 Second base class that is inherited
* @param base3 Third base class that is inherited
*/
void YCLASS3(class type,class base1,class base2,class base3);
/**
* Macro to implement @ref GenObject::getObject in a derived class
* @param type Class that is declared
* @param base Base class that is inherited
*/
void YCLASSIMP(class type,class base);
/**
* Macro to implement @ref GenObject::getObject in a derived class
* @param type Class that is declared
* @param base1 First base class that is inherited
* @param base2 Second base class that is inherited
*/
void YCLASSIMP2(class type,class base1,class base2);
/**
* Macro to implement @ref GenObject::getObject in a derived class
* @param type Class that is declared
* @param base1 First base class that is inherited
* @param base2 Second base class that is inherited
* @param base3 Third base class that is inherited
*/
void YCLASSIMP3(class type,class base1,class base2,class base3);
/**
* Macro to retrive a typed pointer to an interface from an object
* @param type Class we want to return
* @param pntr Pointer to the object we want to get the interface from
* @return Pointer to the class we want or NULL
*/
class* YOBJECT(class type,GenObject* pntr);
#endif
#define YCLASS(type,base) \
public: virtual void* getObject(const String& name) const \
{ return (name == #type) ? const_cast<type*>(this) : base::getObject(name); }
#define YCLASS2(type,base1,base2) \
public: virtual void* getObject(const String& name) const \
{ if (name == #type) return const_cast<type*>(this); \
void* tmp = base1::getObject(name); \
return tmp ? tmp : base2::getObject(name); }
#define YCLASS3(type,base1,base2,base3) \
public: virtual void* getObject(const String& name) const \
{ if (name == #type) return const_cast<type*>(this); \
void* tmp = base1::getObject(name); \
if (tmp) return tmp; \
tmp = base2::getObject(name); \
return tmp ? tmp : base3::getObject(name); }
#define YCLASSIMP(type,base) \
void* type::getObject(const String& name) const \
{ return (name == #type) ? const_cast<type*>(this) : base::getObject(name); }
#define YCLASSIMP2(type,base1,base2) \
void* type::getObject(const String& name) const \
{ if (name == #type) return const_cast<type*>(this); \
void* tmp = base1::getObject(name); \
return tmp ? tmp : base2::getObject(name); }
#define YCLASSIMP3(type,base1,base2,base3) \
void* type::getObject(const String& name) const \
{ if (name == #type) return const_cast<type*>(this); \
void* tmp = base1::getObject(name); \
if (tmp) return tmp; \
tmp = base2::getObject(name); \
return tmp ? tmp : base3::getObject(name); }
#define YOBJECT(type,pntr) (static_cast<type*>((pntr) ? (pntr)->getObject(#type) : 0))
/**
* An object with just a public virtual destructor
*/
class YATE_API GenObject
{
public:
/**
* Destructor.
*/
virtual ~GenObject() { }
/**
* Check if the object is still valid and safe to access.
* Note that you should not trust this result unless the object is locked
* by other means.
* @return True if the object is still useable
*/
virtual bool alive() const;
/**
* Destroys the object, disposes the memory.
*/
virtual void destruct();
/**
* Get a string representation of this object
* @return A reference to a String representing this object
* which is either null, the object itself (for objects derived from
* String) or some form of identification
*/
virtual const String& toString() const;
/**
* Get a pointer to a derived class given that class name
* @param name Name of the class we are asking for
* @return Pointer to the requested class or NULL if this object doesn't implement it
*/
virtual void* getObject(const String& name) const;
};
/**
* Helper function that destroys a GenObject only if the pointer is non-NULL.
* Use it instead of the delete operator.
* @param obj Pointer (rvalue) to the object to destroy
*/
inline void destruct(GenObject* obj)
{ if (obj) obj->destruct(); }
/**
* Helper template function that destroys a GenObject descendant if the pointer
* is non-NULL and also zeros out the pointer.
* Use it instead of the delete operator.
* @param obj Reference to pointer (lvalue) to the object to destroy
*/
template <class Obj> void destruct(Obj*& obj)
{ if (obj) { obj->destruct(); obj = 0; } }
/**
* A reference counted object.
* Whenever using multiple inheritance you should inherit this class virtually.
*/
class YATE_API RefObject : public GenObject
{
public:
/**
* The constructor initializes the reference counter to 1!
* Use deref() to destruct the object when safe
*/
RefObject()
: m_refcount(1) { }
/**
* Destructor.
*/
virtual ~RefObject();
/**
* Check if the object is still referenced and safe to access.
* Note that you should not trust this result unless the object is locked
* by other means.
* @return True if the object is referenced and safe to access
*/
virtual bool alive() const;
/**
* Increments the reference counter if not already zero
* @return True if the object was successfully referenced and is safe to access
*/
bool ref();
/**
* Decrements the reference counter, destroys the object if it reaches zero
* <pre>
* // Deref this object, return quickly if the object was deleted
* if (deref()) return;
* </pre>
* @return True if the object may have been deleted, false if it still exists and is safe to access
*/
bool deref();
/**
* Get the current value of the reference counter
* @return The value of the reference counter
*/
inline int refcount() const
{ return m_refcount; }
/**
* Refcounted objects should just have the counter decremented.
* That will destroy them only when the refcount reaches zero.
*/
virtual void destruct();
/**
* Retrieve the mutex that protects ref() and deref() for all objects
* @return Reference to the global mutex used for all counter operations
*/
static Mutex& refMutex();
protected:
/**
* This method is called when the reference count reaches zero after
* unlocking the mutex if the call to zeroRefsTest() returned true.
* The default behaviour is to delete the object.
*/
virtual void zeroRefs();
/**
* This method is called when the reference count reaches zero just before
* calling zeroRefs() with the non-recursive mutex still locked.
* Extra care must be taken to prevent deadlocks, normally the code should
* only change some variables and return.
* The default implementation just returns true.
* @return True to call zeroRefs() after releasing the mutex
*/
virtual bool zeroRefsTest();
/**
* Increments the reference counter if not already zero without locking
* the mutex. The caller must make sure to hold the refMutex() locked.
* @return True if the object was successfully referenced
*/
bool refInternal();
/**
* Bring the object back alive by setting the reference counter to one.
* Note that it works only if the counter was zero previously
* @return True if the object was resurrected - its name may be Lazarus ;-)
*/
bool resurrect();
/**
* Pre-destruction notification, called just before the object is deleted.
* Unlike in the destructor it is safe to call virtual methods here.
* Reimplementing this method allows to perform any object cleanups.
*/
virtual void destroyed();
private:
int m_refcount;
};
/**
* Internal helper class providing a non-inline method to RefPointer.
* Please don't use this class directly, use @ref RefPointer instead.
* @short Internal helper class
*/
class YATE_API RefPointerBase
{
protected:
/**
* Default constructor, initialize to null pointer
*/
inline RefPointerBase()
: m_pointer(0) { }
/**
* Set a new stored pointer
* @param oldptr Pointer to the RefObject of the old stored object
* @param newptr Pointer to the RefObject of the new stored object
* @param pointer A void pointer to the derived class
*/
void assign(RefObject* oldptr, RefObject* newptr, void* pointer);
/**
* The untyped stored pointer that should be casted to a @ref RefObject derived class
*/
void* m_pointer;
};
/**
* @short Templated smart pointer class
*/
template <class Obj = RefObject> class RefPointer : public RefPointerBase
{
protected:
/**
* Retrive the stored pointer
* @return A typed pointer
*/
inline Obj* pointer() const
{ return static_cast<Obj*>(m_pointer); }
/**
* Set a new stored pointer
* @param object Pointer to the new stored object
*/
inline void assign(Obj* object = 0)
{ RefPointerBase::assign(pointer(),object,object); }
public:
/**
* Default constructor - creates a null smart pointer
*/
inline RefPointer()
{ }
/**
* Copy constructor, references the object
* @param value Original RefPointer
*/
inline RefPointer(const RefPointer<Obj>& value)
: RefPointerBase()
{ assign(value); }
/**
* Constructs an initialized smart pointer, references the object
* @param object Pointer to object
*/
inline RefPointer(Obj* object)
{ assign(object); }
/**
* Destructs the pointer and dereferences the object
*/
inline ~RefPointer()
{ assign(); }
/**
* Assignment from smart pointer
*/
inline RefPointer<Obj>& operator=(const RefPointer<Obj>& value)
{ assign(value.pointer()); return *this; }
/**
* Assignment from regular pointer
*/
inline RefPointer<Obj>& operator=(Obj* object)
{ assign(object); return *this; }
/**
* Conversion to regular pointer operator
* @return The stored pointer
*/
inline operator Obj*() const
{ return pointer(); }
/**
* Member access operator
*/
inline Obj* operator->() const
{ return pointer(); }
/**
* Dereferencing operator
*/
inline Obj& operator*() const
{ return *pointer(); }
};
/**
* @short Templated pointer that can be inserted in a list
*/
template <class Obj = GenObject> class GenPointer : public GenObject
{
private:
/**
* The stored pointer
*/
Obj* m_pointer;
public:
/**
* Default constructor - creates a null pointer
*/
inline GenPointer()
: m_pointer(0)
{ }
/**
* Copy constructor
* @param value Original GenPointer
*/
inline GenPointer(const GenPointer<Obj>& value)
: m_pointer(value)
{ }
/**
* Constructs an initialized pointer
* @param object Pointer to object
*/
inline GenPointer(Obj* object)
: m_pointer(object)
{ }
/**
* Assignment from another GenPointer
*/
inline GenPointer<Obj>& operator=(const GenPointer<Obj>& value)
{ m_pointer = value; return *this; }
/**
* Assignment from regular pointer
*/
inline GenPointer<Obj>& operator=(Obj* object)
{ m_pointer = object; return *this; }
/**
* Conversion to regular pointer operator
* @return The stored pointer
*/
inline operator Obj*() const
{ return m_pointer; }
/**
* Member access operator
*/
inline Obj* operator->() const
{ return m_pointer; }
/**
* Dereferencing operator
*/
inline Obj& operator*() const
{ return *m_pointer; }
};
/**
* A simple single-linked object list handling class
* @short An object list class
*/
class YATE_API ObjList : public GenObject
{
public:
/**
* Creates a new, empty list.
*/
ObjList();
/**
* Destroys the list and everything in it.
*/
virtual ~ObjList();
/**
* Get a pointer to a derived class given that class name
* @param name Name of the class we are asking for
* @return Pointer to the requested class or NULL if this object doesn't implement it
*/
virtual void* getObject(const String& name) const;
/**
* Get the number of elements in the list
* @return Count of items
*/
unsigned int length() const;
/**
* Get the number of non-null objects in the list
* @return Count of items
*/
unsigned int count() const;
/**
* Get the object associated to this list item
* @return Pointer to the object or NULL
*/
inline GenObject* get() const
{ return m_obj; }
/**
* Set the object associated to this list item
* @param obj Pointer to the new object to set
* @param delold True to delete the old object (default)
* @return Pointer to the old object if not destroyed
*/
GenObject* set(const GenObject* obj, bool delold = true);
/**
* Get the next item in the list
* @return Pointer to the next item in list or NULL
*/
inline ObjList* next() const
{ return m_next; }
/**
* Get the last item in the list
* @return Pointer to the last item in list
*/
ObjList* last() const;
/**
* Skip over NULL holding items in the list
* @return Pointer to the first non NULL holding item in list or NULL
*/
ObjList* skipNull() const;
/**
* Advance in the list skipping over NULL holding items
* @return Pointer to the next non NULL holding item in list or NULL
*/
ObjList* skipNext() const;
/**
* Get the object at a specific index in list
* @param index Index of the object to retrive
* @return Pointer to the object or NULL
*/
GenObject* at(int index) const;
/**
* Pointer-like indexing operator
* @param index Index of the list item to retrive
* @return Pointer to the list item or NULL
*/
ObjList* operator+(int index) const;
/**
* Array-like indexing operator with signed parameter
* @param index Index of the object to retrive
* @return Pointer to the object or NULL
*/
inline GenObject* operator[](signed int index) const
{ return at(index); }
/**
* Array-like indexing operator with unsigned parameter
* @param index Index of the object to retrive
* @return Pointer to the object or NULL
*/
inline GenObject* operator[](unsigned int index) const
{ return at(index); }
/**
* Array-like indexing operator
* @param str String value of the object to locate
* @return Pointer to the object or NULL
*/
GenObject* operator[](const String& str) const;
/**
* Get the item in the list that holds an object
* @param obj Pointer to the object to search for
* @return Pointer to the found item or NULL
*/
ObjList* find(const GenObject* obj) const;
/**
* Get the item in the list that holds an object by String value
* @param str String value (toString) of the object to search for
* @return Pointer to the found item or NULL
*/
ObjList* find(const String& str) const;
/**
* Get the position in list of a GenObject by a pointer to it
* @param obj Pointer to the object to search for
* @return Index of object in list, -1 if not found
*/
int index(const GenObject* obj) const;
/**
* Get the position in list of the first GenObject with a given value
* @param str String value (toString) of the object to search for
* @return Index of object in list, -1 if not found
*/
int index(const String& str) const;
/**
* Insert an object at this point
* @param obj Pointer to the object to insert
* @param compact True to replace NULL values in list if possible
* @return A pointer to the inserted list item
*/
ObjList* insert(const GenObject* obj, bool compact = true);
/**
* Append an object to the end of the list
* @param obj Pointer to the object to append
* @param compact True to replace NULL values in list if possible
* @return A pointer to the inserted list item
*/
ObjList* append(const GenObject* obj, bool compact = true);
/**
* Delete this list item
* @param delobj True to delete the object (default)
* @return Pointer to the object if not destroyed
*/
GenObject* remove(bool delobj = true);
/**
* Delete the list item that holds a given object
* @param obj Object to search in the list
* @param delobj True to delete the object (default)
* @return Pointer to the object if not destroyed
*/
GenObject* remove(GenObject* obj, bool delobj = true);
/**
* Delete the first list item that holds an object with a iven value
* @param str String value (toString) of the object to remove
* @param delobj True to delete the object (default)
* @return Pointer to the object if not destroyed
*/
GenObject* remove(const String& str, bool delobj = true);
/**
* Clear the list and optionally delete all contained objects
*/
void clear();
/**
* Get the automatic delete flag
* @return True if will delete on destruct, false otherwise
*/
inline bool autoDelete()
{ return m_delete; }
/**
* Set the automatic delete flag
* @param autodelete True to delete on destruct, false otherwise
*/
inline void setDelete(bool autodelete)
{ m_delete = autodelete; }
/**
* A static empty object list
* @return Reference to a static empty list
*/
static const ObjList& empty();
private:
ObjList* m_next;
GenObject* m_obj;
bool m_delete;
};
/**
* A simple Array class derivated from RefObject
* It uses one ObjList to keep the pointers to other ObjList's.
* Data is organized in columns - the main ObjList holds pointers to one
* ObjList for each column.
* This class has been written by Diana
* @short A list based Array
*/
class YATE_API Array : public RefObject
{
public:
/**
* Creates a new empty array.
* @param columns Initial number of columns
* @param rows Initial number of rows
*/
Array(int columns = 0, int rows = 0);
/**
* Destructor. Destructs all objects in the array
*/
virtual ~Array();
/**
* Get a pointer to a derived class given that class name
* @param name Name of the class we are asking for
* @return Pointer to the requested class or NULL if this object doesn't implement it
*/
virtual void* getObject(const String& name) const;
/**
* Insert a row of objects
* @param row List of objects to insert or NULL
* @param index Number of the row to insert before, negative to append
* @return True for success, false if index was larger than the array
*/
bool addRow(ObjList* row = 0, int index = -1);
/**
* Insert a column of objects
* @param column List of objects to insert or NULL
* @param index Number of the column to insert before, negative to append
* @return True for success, false if index was larger than the array
*/
bool addColumn(ObjList* column = 0, int index = -1);
/**
* Delete an entire row of objects
* @param index Number of the row to delete
* @return True for success, false if index was out of bounds
*/
bool delRow(int index);
/**
* Delete an entire column of objects
* @param index Number of the column to delete
* @return True for success, false if index was out of bounds
*/
bool delColumn(int index);
/**
* Retrive an object from the array
* @param column Number of the column in the array
* @param row Number of the row in the array
* @return Pointer to the stored object, NULL for out of bound indexes
*/
GenObject* get(int column, int row) const;
/**
* Retrive and remove an object from the array
* @param column Number of the column in the array
* @param row Number of the row in the array
* @return Pointer to the stored object, NULL for out of bound indexes
*/
GenObject* take(int column, int row);
/**
* Store an object in the array
* @param obj Object to store in the array
* @param column Number of the column in the array
* @param row Number of the row in the array
* @return True for success, false if indexes were out of bounds
*/
bool set(GenObject* obj, int column, int row);
/**
* Get the number of rows in the array
* @return Total number of rows
*/
inline int getRows() const
{ return m_rows; }
/**
* Get the number of columns in the array
* @return Total number of columns
*/
inline int getColumns() const
{ return m_columns; }
private:
int m_rows;
int m_columns;
ObjList m_obj;
};
class Regexp;
class StringMatchPrivate;
/**
* A simple string handling class for C style (one byte) strings.
* For simplicity and read speed no copy-on-write is performed.
* Strings have hash capabilities and comparations are using the hash
* for fast inequality check.
* @short A C-style string handling class
*/
class YATE_API String : public GenObject
{
public:
/**
* Creates a new, empty string.
*/
String();
/**
* Creates a new initialized string.
* @param value Initial value of the string
* @param len Length of the data to copy, -1 for full string
*/
String(const char* value, int len = -1);
/**
* Creates a new initialized string.
* @param value Character to fill the string
* @param repeat How many copies of the character to use
*/
explicit String(char value, unsigned int repeat = 1);
/**
* Creates a new initialized string from an integer.
* @param value Value to convert to string
*/
explicit String(int value);
/**
* Creates a new initialized string from an unsigned int.
* @param value Value to convert to string
*/
explicit String(unsigned int value);
/**
* Creates a new initialized string from a boolean.
* @param value Value to convert to string
*/
explicit String(bool value);
/**
* Copy constructor.
* @param value Initial value of the string
*/
String(const String& value);
/**
* Constructor from String pointer.
* @param value Initial value of the string
*/
String(const String* value);
/**
* Destroys the string, disposes the memory.
*/
virtual ~String();
/**
* Get a pointer to a derived class given that class name
* @param name Name of the class we are asking for
* @return Pointer to the requested class or NULL if this object doesn't implement it
*/
virtual void* getObject(const String& name) const;
/**
* A static null String
* @return Reference to a static empty String
*/
static const String& empty();
/**
* A standard text representation of boolean values
* @param value Boolean value to convert
* @return Pointer to a text representation of the value
*/
inline static const char* boolText(bool value)
{ return value ? "true" : "false"; }
/**
* Get the value of the stored string.
* @return The stored C string which may be NULL.
*/
inline const char* c_str() const
{ return m_string; }
/**
* Get a valid non-NULL C string.
* @return The stored C string or a static "".
*/
inline const char* safe() const
{ return m_string ? m_string : ""; }
/**
* Get a valid non-NULL C string with a provided default.
* @param defStr Default C string to return if stored is NULL
* @return The stored C string, the default or a static "".
*/
inline const char* safe(const char* defStr) const
{ return m_string ? m_string : (defStr ? defStr : ""); }
/**
* Get the length of the stored string.
* @return The length of the stored string, zero for NULL.
*/
inline unsigned int length() const
{ return m_length; }
/**
* Checks if the string holds a NULL pointer.
* @return True if the string holds NULL, false otherwise.
*/
inline bool null() const
{ return !m_string; }
/**
* Get the number of characters in a string assuming UTF-8 encoding
* @param value C string to compute Unicode length
* @param maxSeq Maximum accepted UTF-8 sequence length
* @param overlong Accept overlong UTF-8 sequences (dangerous!)
* @return Count of Unicode characters, -1 if not valid UTF-8
*/
static int lenUtf8(const char* value, unsigned int maxSeq = 4, bool overlong = false);
/**
* Get the number of characters in the string assuming UTF-8 encoding
* @param maxSeq Maximum accepted UTF-8 sequence length
* @param overlong Accept overlong UTF-8 sequences (dangerous!)
* @return Count of Unicode characters, -1 if not valid UTF-8
*/
inline int lenUtf8(unsigned int maxSeq = 4, bool overlong = false) const
{ return lenUtf8(m_string,maxSeq,overlong); }
/**
* Fix an UTF-8 encoded string by replacing invalid sequences
* @param replace String to replace invalid sequences, use U+FFFD if null
* @param maxSeq Maximum accepted UTF-8 sequence length
* @param overlong Accept overlong UTF-8 sequences (dangerous!)
* @return Count of invalid UTF-8 sequences that were replaced
*/
int fixUtf8(const char* replace = 0, unsigned int maxSeq = 4, bool overlong = false);
/**
* Get the hash of the contained string.
* @return The hash of the string.
*/
unsigned int hash() const;
/**
* Get the hash of an arbitrary string.
* @param value C string to hash
* @return The hash of the string.
*/
static unsigned int hash(const char* value);
/**
* Clear the string and free the memory
*/
void clear();
/**
* Extract the caracter at a given index
* @param index Index of character in string
* @return Character at given index or 0 if out of range
*/
char at(int index) const;
/**
* Substring extraction
* @param offs Offset of the substring, negative to count from end
* @param len Length of the substring, -1 for everything possible
* @return A copy of the requested substring
*/
String substr(int offs, int len = -1) const;
/**
* Strip off leading and trailing blank characters
*/
String& trimBlanks();
/**
* Strip off leading and trailing whitespace characters
* (blank, tabs, form-feed, newlines)
*/
String& trimSpaces();
/**
* Override GenObject's method to return this String
* @return A reference to this String
*/
virtual const String& toString() const;
/**
* Convert the string to an integer value.
* @param defvalue Default to return if the string is not a number
* @param base Numeration base, 0 to autodetect
* @return The integer interpretation or defvalue.
*/
int toInteger(int defvalue = 0, int base = 0) const;
/**
* Convert the string to an integer value looking up first a token table.
* @param tokens Pointer to an array of tokens to lookup first
* @param defvalue Default to return if the string is not a token or number
* @param base Numeration base, 0 to autodetect
* @return The integer interpretation or defvalue.
*/
int toInteger(const TokenDict* tokens, int defvalue = 0, int base = 0) const;
/**
* Convert the string to a floating point value.
* @param defvalue Default to return if the string is not a number
* @return The floating-point interpretation or defvalue.
*/
double toDouble(double defvalue = 0.0) const;
/**
* Convert the string to a boolean value.
* @param defvalue Default to return if the string is not a bool
* @return The boolean interpretation or defvalue.
*/
bool toBoolean(bool defvalue = false) const;
/**
* Check if the string can be converted to a boolean value.
* @return True if the string is a valid boolean.
*/
bool isBoolean() const;
/**
* Turn the string to an all-uppercase string
* @return A reference to this String
*/
String& toUpper();
/**
* Turn the string to an all-lowercase string
* @return A reference to this String
*/
String& toLower();
/**
* Indexing operator with signed int
* @param index Index of character in string
* @return Character at given index or 0 if out of range
*/
inline char operator[](signed int index) const
{ return at(index); }
/**
* Indexing operator with unsigned int
* @param index Index of character in string
* @return Character at given index or 0 if out of range
*/
inline char operator[](unsigned int index) const
{ return at(index); }
/**
* Conversion to "const char *" operator.
* @return Pointer to the internally stored string
*/
inline operator const char*() const
{ return m_string; };
/**
* Assigns a new value to the string from a character block.
* @param value New value of the string
* @param len Length of the data to copy, -1 for full string
* @return Reference to the String
*/
String& assign(const char* value, int len = -1);
/**
* Assigns a new value by filling with a repeated character
* @param value Character to fill the string
* @param repeat How many copies of the character to use
* @return Reference to the String
*/
String& assign(char value, unsigned int repeat = 1);
/**
* Build a hexadecimal representation of a buffer of data
* @param data Pointer to data to dump
* @param len Length of the data buffer
* @param sep Separator character to use between octets
* @param upCase Set to true to use upper case characters in hexa
* @return Reference to the String
*/
String& hexify(void* data, unsigned int len, char sep = 0, bool upCase = false);
/**
* Assignment operator.
*/
inline String& operator=(const String& value)
{ return operator=(value.c_str()); }
/**
* Assignment from String* operator.
* @see TelEngine::strcpy
*/
inline String& operator=(const String* value)
{ return operator=(value ? value->c_str() : ""); }
/**
* Assignment from char* operator.
* @see TelEngine::strcpy
*/
String& operator=(const char* value);
/**
* Assignment operator for single characters.
*/
String& operator=(char value);
/**
* Assignment operator for integers.
*/
String& operator=(int value);
/**
* Assignment operator for unsigned integers.
*/
String& operator=(unsigned int value);
/**
* Assignment operator for booleans.
*/
inline String& operator=(bool value)
{ return operator=(boolText(value)); }
/**
* Appending operator for strings.
* @see TelEngine::strcat
*/
String& operator+=(const char* value);
/**
* Appending operator for single characters.
*/
String& operator+=(char value);
/**
* Appending operator for integers.
*/
String& operator+=(int value);
/**
* Appending operator for unsigned integers.
*/
String& operator+=(unsigned int value);
/**
* Appending operator for booleans.
*/
inline String& operator+=(bool value)
{ return operator+=(boolText(value)); }
/**
* Equality operator.
*/
bool operator==(const char* value) const;
/**
* Inequality operator.
*/
bool operator!=(const char* value) const;
/**
* Fast equality operator.
*/
bool operator==(const String& value) const;
/**
* Fast inequality operator.
*/
bool operator!=(const String& value) const;
/**
* Case-insensitive equality operator.
*/
bool operator&=(const char* value) const;
/**
* Case-insensitive inequality operator.
*/
bool operator|=(const char* value) const;
/**
* Stream style appending operator for C strings
*/
inline String& operator<<(const char* value)
{ return operator+=(value); }
/**
* Stream style appending operator for single characters
*/
inline String& operator<<(char value)
{ return operator+=(value); }
/**
* Stream style appending operator for integers
*/
inline String& operator<<(int value)
{ return operator+=(value); }
/**
* Stream style appending operator for unsigned integers
*/
inline String& operator<<(unsigned int value)
{ return operator+=(value); }
/**
* Stream style appending operator for booleans
*/
inline String& operator<<(bool value)
{ return operator+=(value); }
/**
* Stream style substring skipping operator.
* It eats all characters up to and including the skip string
*/
String& operator>>(const char* skip);
/**
* Stream style extraction operator for single characters
*/
String& operator>>(char& store);
/**
* Stream style extraction operator for integers
*/
String& operator>>(int& store);
/**
* Stream style extraction operator for unsigned integers
*/
String& operator>>(unsigned int& store);
/**
* Stream style extraction operator for booleans
*/
String& operator>>(bool& store);
/**
* Conditional appending with a separator
* @param value String to append
* @param separator Separator to insert before the value
* @param force True to allow appending empty strings
*/
String& append(const char* value, const char* separator = 0, bool force = false);
/**
* List members appending with a separator
* @param list Pointer to ObjList whose @ref GenObject::toString() of the items will be appended
* @param separator Separator to insert before each item in list
* @param force True to allow appending empty strings
*/
String& append(const ObjList* list, const char* separator = 0, bool force = false);
/**
* List members appending with a separator
* @param list Reference of ObjList whose @ref GenObject::toString() of the items will be appended
* @param separator Separator to insert before each item in list
* @param force True to allow appending empty strings
*/
inline String& append(const ObjList& list, const char* separator = 0, bool force = false)
{ return append(&list,separator,force); }
/**
* Explicit double append
* @param value Value to append
* @param decimals Number of decimals
*/
String& append(double value, unsigned int decimals = 3);
/**
* Locate the first instance of a character in the string
* @param what Character to search for
* @param offs Offset in string to start searching from
* @return Offset of character or -1 if not found
*/
int find(char what, unsigned int offs = 0) const;
/**
* Locate the first instance of a substring in the string
* @param what Substring to search for
* @param offs Offset in string to start searching from
* @return Offset of substring or -1 if not found
*/
int find(const char* what, unsigned int offs = 0) const;
/**
* Locate the last instance of a character in the string
* @param what Character to search for
* @return Offset of character or -1 if not found
*/
int rfind(char what) const;
/**
* Checks if the string starts with a substring
* @param what Substring to search for
* @param wordBreak Check if a word boundary follows the substring
* @param caseInsensitive Compare case-insensitive if set
* @return True if the substring occurs at the beginning of the string
*/
bool startsWith(const char* what, bool wordBreak = false, bool caseInsensitive = false) const;
/**
* Checks if the string ends with a substring
* @param what Substring to search for
* @param wordBreak Check if a word boundary precedes the substring
* @param caseInsensitive Compare case-insensitive if set
* @return True if the substring occurs at the end of the string
*/
bool endsWith(const char* what, bool wordBreak = false, bool caseInsensitive = false) const;
/**
* Checks if the string starts with a substring and removes it
* @param what Substring to search for
* @param wordBreak Check if a word boundary follows the substring;
* this parameter defaults to True because the intended use of this
* method is to separate commands from their parameters
* @param caseInsensitive Compare case-insensitive if set
* @return True if the substring occurs at the beginning of the string
* and also removes the substring; if wordBreak is True any word
* breaking characters are also removed
*/
bool startSkip(const char* what, bool wordBreak = true, bool caseInsensitive = false);
/**
* Checks if matches another string
* @param value String to check for match
* @return True if matches, false otherwise
*/
virtual bool matches(const String& value) const
{ return operator==(value); }
/**
* Checks if matches a regular expression and fill the match substrings
* @param rexp Regular expression to check for match
* @return True if matches, false otherwise
*/
bool matches(Regexp& rexp);
/**
* Get the offset of the last match
* @param index Index of the submatch to return, 0 for full match
* @return Offset of the last match, -1 if no match or not in range
*/
int matchOffset(int index = 0) const;
/**
* Get the length of the last match
* @param index Index of the submatch to return, 0 for full match
* @return Length of the last match, 0 if no match or out of range
*/
int matchLength(int index = 0) const;
/**
* Get a copy of a matched (sub)string
* @param index Index of the submatch to return, 0 for full match
* @return Copy of the matched substring
*/
inline String matchString(int index = 0) const
{ return substr(matchOffset(index),matchLength(index)); }
/**
* Create a string by replacing matched strings in a template
* @param templ Template of the string to generate
* @return Copy of template with "\0" - "\9" replaced with submatches
*/
String replaceMatches(const String& templ) const;
/**
* Get the total number of submatches from the last match, 0 if no match
* @return Number of matching subexpressions
*/
int matchCount() const;
/**
* Splits the string at a delimiter character
* @param separator Character where to split the string
* @param emptyOK True if empty strings should be inserted in list
* @return A newly allocated list of strings, must be deleted after use
*/
ObjList* split(char separator, bool emptyOK = true) const;
/**
* Create an escaped string suitable for use in messages
* @param str String to convert to escaped format
* @param extraEsc Character to escape other than the default ones
* @return The string with special characters escaped
*/
static String msgEscape(const char* str, char extraEsc = 0);
/**
* Create an escaped string suitable for use in messages
* @param extraEsc Character to escape other than the default ones
* @return The string with special characters escaped
*/
inline String msgEscape(char extraEsc = 0) const
{ return msgEscape(c_str(),extraEsc); }
/**
* Decode an escaped string back to its raw form
* @param str String to convert to unescaped format
* @param errptr Pointer to an integer to receive the place of 1st error
* @param extraEsc Character to unescape other than the default ones
* @return The string with special characters unescaped
*/
static String msgUnescape(const char* str, int* errptr = 0, char extraEsc = 0);
/**
* Decode an escaped string back to its raw form
* @param errptr Pointer to an integer to receive the place of 1st error
* @param extraEsc Character to unescape other than the default ones
* @return The string with special characters unescaped
*/
inline String msgUnescape(int* errptr = 0, char extraEsc = 0) const
{ return msgUnescape(c_str(),errptr,extraEsc); }
/**
* Create an escaped string suitable for use in SQL queries
* @param str String to convert to escaped format
* @param extraEsc Character to escape other than the default ones
* @return The string with special characters escaped
*/
static String sqlEscape(const char* str, char extraEsc = 0);
/**
* Create an escaped string suitable for use in SQL queries
* @param extraEsc Character to escape other than the default ones
* @return The string with special characters escaped
*/
inline String sqlEscape(char extraEsc = 0) const
{ return sqlEscape(c_str(),extraEsc); }
/**
* Create an escaped string suitable for use in URIs
* @param str String to convert to escaped format
* @param extraEsc Character to escape other than the default ones
* @param noEsc Optional pointer to string of characters that shouldn't be escaped
* @return The string with special characters escaped
*/
static String uriEscape(const char* str, char extraEsc = 0, const char* noEsc = 0);
/**
* Create an escaped string suitable for use in URI
* @param extraEsc Character to escape other than the default ones
* @param noEsc Optional pointer to string of characters that shouldn't be escaped
* @return The string with special characters escaped
*/
inline String uriEscape(char extraEsc = 0, const char* noEsc = 0) const
{ return uriEscape(c_str(),extraEsc,noEsc); }
/**
* Decode an URI escaped string back to its raw form
* @param str String to convert to unescaped format
* @param errptr Pointer to an integer to receive the place of 1st error
* @return The string with special characters unescaped
*/
static String uriUnescape(const char* str, int* errptr = 0);
/**
* Decode an URI escaped string back to its raw form
* @param errptr Pointer to an integer to receive the place of 1st error
* @return The string with special characters unescaped
*/
inline String uriUnescape(int* errptr = 0) const
{ return uriUnescape(c_str(),errptr); }
protected:
/**
* Called whenever the value changed (except in constructors).
*/
virtual void changed();
private:
void clearMatches();
char* m_string;
unsigned int m_length;
// I hope every C++ compiler now knows about mutable...
mutable unsigned int m_hash;
StringMatchPrivate* m_matches;
};
/**
* Utility function to retrieve a C string from a possibly NULL String pointer
* @param str Pointer to a String that may be NULL
* @return String data pointer or NULL
*/
inline const char* c_str(const String* str)
{ return str ? str->c_str() : (const char*)0; }
/**
* Utility function to replace NULL C string pointers with an empty C string
* @param str Pointer to a C string that may be NULL
* @return Original pointer or pointer to an empty C string
*/
inline const char* c_safe(const char* str)
{ return str ? str : ""; }
/**
* Utility function to replace NULL String pointers with an empty C string
* @param str Pointer to a String that may be NULL
* @return String data pointer or pointer to an empty C string
*/
inline const char* c_safe(const String* str)
{ return str ? str->safe() : ""; }
/**
* Utility function to check if a C string is null or empty
* @param str Pointer to a C string
* @return True if str is NULL or starts with a NUL character
*/
inline bool null(const char* str)
{ return !(str && *str); }
/**
* Utility function to check if a String is null or empty
* @param str Pointer to a String
* @return True if str is NULL or is empty
*/
inline bool null(const String* str)
{ return !str || str->null(); }
/**
* Concatenation operator for strings.
*/
YATE_API String operator+(const String& s1, const String& s2);
/**
* Concatenation operator for strings.
*/
YATE_API String operator+(const String& s1, const char* s2);
/**
* Concatenation operator for strings.
*/
YATE_API String operator+(const char* s1, const String& s2);
/**
* Prevent careless programmers from overwriting the string
* @see TelEngine::String::operator=
*/
inline const char *strcpy(String& dest, const char* src)
{ dest = src; return dest.c_str(); }
/**
* Prevent careless programmers from overwriting the string
* @see TelEngine::String::operator+=
*/
inline const char *strcat(String& dest, const char* src)
{ dest += src; return dest.c_str(); }
/**
* Utility function to look up a string in a token table,
* interpret as number if it fails
* @param str String to look up
* @param tokens Pointer to the token table
* @param defvalue Value to return if lookup and conversion fail
* @param base Default base to use to convert to number
*/
YATE_API int lookup(const char* str, const TokenDict* tokens, int defvalue = 0, int base = 0);
/**
* Utility function to look up a number in a token table
* @param value Value to search for
* @param tokens Pointer to the token table
* @param defvalue Value to return if lookup fails
*/
YATE_API const char* lookup(int value, const TokenDict* tokens, const char* defvalue = 0);
/**
* A regular expression matching class.
* @short A regexp matching class
*/
class YATE_API Regexp : public String
{
friend class String;
public:
/**
* Creates a new, empty regexp.
*/
Regexp();
/**
* Creates a new initialized regexp.
* @param value Initial value of the regexp.
* @param extended True to use POSIX Extended Regular Expression syntax
* @param insensitive True to not differentiate case
*/
Regexp(const char* value, bool extended = false, bool insensitive = false);
/**
* Copy constructor.
* @param value Initial value of the regexp.
*/
Regexp(const Regexp& value);
/**
* Destroys the regexp, disposes the memory.
*/
virtual ~Regexp();
/**
* Assignment from char* operator.
*/
inline Regexp& operator=(const char* value)
{ String::operator=(value); return *this; }
/**
* Makes sure the regular expression is compiled
* @return True if successfully compiled, false on error
*/
bool compile();
/**
* Checks if the pattern matches a given value
* @param value String to check for match
* @return True if matches, false otherwise
*/
bool matches(const char* value) const;
/**
* Checks if the pattern matches a string
* @param value String to check for match
* @return True if matches, false otherwise
*/
virtual bool matches(const String& value) const
{ return Regexp::matches(value.safe()); }
/**
* Change the expression matching flags
* @param extended True to use POSIX Extended Regular Expression syntax
* @param insensitive True to not differentiate case
*/
void setFlags(bool extended, bool insensitive);
/**
* Return the POSIX Extended syntax flag
* @return True if using POSIX Extended Regular Expression syntax
*/
bool isExtended() const;
/**
* Return the Case Insensitive flag
* @return True if not differentiating case
*/
bool isCaseInsensitive() const;
protected:
/**
* Called whenever the value changed (except in constructors) to recompile.
*/
virtual void changed();
private:
void cleanup();
bool matches(const char *value, StringMatchPrivate *matchlist);
void* m_regexp;
int m_flags;
};
/**
* A string class with a hashed string name
* @short A named string class.
*/
class YATE_API NamedString : public String
{
public:
/**
* Creates a new named string.
* @param name Name of this string
* @param value Initial value of the string
*/
NamedString(const char* name, const char* value = 0);
/**
* Retrive the name of this string.
* @return A hashed string with the name of the string
*/
inline const String& name() const
{ return m_name; }
/**
* Get a string representation of this object
* @return A reference to the name of this object
*/
virtual const String& toString() const;
/**
* Get a pointer to a derived class given that class name
* @param name Name of the class we are asking for
* @return Pointer to the requested class or NULL if this object doesn't implement it
*/
virtual void* getObject(const String& name) const;
/**
* Value assignment operator
*/
inline NamedString& operator=(const char* value)
{ String::operator=(value); return *this; }
private:
NamedString(); // no default constructor please
String m_name;
};
/**
* A named string holding a pointer to arbitrary data.
* The pointer is owned by the object: it will be released when the object is
* destroyed or the string value changed
* @short A named pointer class.
*/
class YATE_API NamedPointer : public NamedString
{
public:
/**
* Creates a new named pointer
* @param name Name of this pointer
* @param data Initial pointer value. The pointer will be owned by this object
* @param value Initial string value
*/
NamedPointer(const char* name, GenObject* data = 0, const char* value = 0);
/**
* Destructor. Release the pointer
*/
virtual ~NamedPointer();
/**
* Retrive the pointer carried by this object
* @return Pointer to arbitrary user GenObject
*/
inline GenObject* userData() const
{ return m_data; }
/**
* Retrive the pointer carried by this object and release ownership.
* The caller will own the returned pointer
* @return Pointer to arbitrary user GenObject
*/
GenObject* takeData();
/**
* Set obscure data carried by this object.
* Note that a RefObject's reference counter should be increased before adding it to this named pointer
* @param data Pointer to arbitrary user data
*/
void userData(GenObject* data);
/**
* Get a pointer to a derived class of user data given that class name
* @param name Name of the class we are asking for
* @return Pointer to the requested class or NULL if user object id NULL or doesn't implement it
*/
inline void* userObject(const String& name) const
{ return m_data ? m_data->getObject(name) : 0; }
/**
* String value assignment operator
*/
inline NamedPointer& operator=(const char* value)
{ NamedString::operator=(value); return *this; }
/**
* Get a pointer to a derived class given that class name
* @param name Name of the class we are asking for
* @return Pointer to the requested class or NULL if this object doesn't implement it
*/
virtual void* getObject(const String& name) const;
protected:
/**
* Called whenever the string value changed. Release the pointer
*/
virtual void changed();
private:
NamedPointer(); // no default constructor please
GenObject* m_data;
};
/**
* A hashed object list handling class. Objects placed in the list are
* distributed according to their String hash resulting in faster searches.
* On the other hand an object placed in a hashed list must never change
* its String value or it becomes unfindable.
* @short A hashed object list class
*/
class YATE_API HashList : public GenObject
{
public:
/**
* Creates a new, empty list.
* @param size Number of classes to divide the objects
*/
HashList(unsigned int size = 17);
/**
* Destroys the list and everything in it.
*/
virtual ~HashList();
/**
* Get a pointer to a derived class given that class name
* @param name Name of the class we are asking for
* @return Pointer to the requested class or NULL if this object doesn't implement it
*/
virtual void* getObject(const String& name) const;
/**
* Get the number of hash entries
* @return Count of hash entries
*/
inline unsigned int length() const
{ return m_size; }
/**
* Get the number of non-null objects in the list
* @return Count of items
*/
unsigned int count() const;
/**
* Retrive one of the internal object lists. This method should be used
* only to iterate all objects in the list.
* @param index Index of the internal list to retrive
* @return Pointer to the list or NULL
*/
inline ObjList* getList(unsigned int index) const
{ return (index < m_size) ? m_lists[index] : 0; }
/**
* Retrive one of the internal object lists knowing the hash value.
* @param hash Hash of the internal list to retrive
* @return Pointer to the list or NULL if never filled
*/
inline ObjList* getHashList(unsigned int hash) const
{ return getList(hash % m_size); }
/**
* Retrive one of the internal object lists knowing the String value.
* @param str String whose hash internal list is to retrive
* @return Pointer to the list or NULL if never filled
*/
inline ObjList* getHashList(const String& str) const
{ return getHashList(str.hash()); }
/**
* Array-like indexing operator
* @param str String value of the object to locate
* @return Pointer to the first object or NULL
*/
GenObject* operator[](const String& str) const;
/**
* Get the item in the list that holds an object
* @param obj Pointer to the object to search for
* @return Pointer to the found item or NULL
*/
ObjList* find(const GenObject* obj) const;
/**
* Get the item in the list that holds an object by String value
* @param str String value (toString) of the object to search for
* @return Pointer to the first found item or NULL
*/
ObjList* find(const String& str) const;
/**
* Appends an object to the hashed list
* @param obj Pointer to the object to append
* @return A pointer to the inserted list item
*/
ObjList* append(const GenObject* obj);
/**
* Delete the list item that holds a given object
* @param obj Object to search in the list
* @param delobj True to delete the object (default)
* @return Pointer to the object if not destroyed
*/
GenObject* remove(GenObject* obj, bool delobj = true);
/**
* Clear the list and optionally delete all contained objects
*/
void clear();
/**
* Resync the list by checking if a stored object belongs to the list
* according to its hash
* @param obj Object to resync in the list
* @return True if object was in the wrong list and had to be moved
*/
bool resync(GenObject* obj);
/**
* Resync the list by checking if all stored objects belong to the list
* according to their hash
* @return True if at least one object had to be moved
*/
bool resync();
private:
unsigned int m_size;
ObjList** m_lists;
};
/**
* An ObjList or HashList iterator that can be used even when list elements
* are changed while iterating. Note that it will not detect that an item was
* removed and another with the same address was inserted back in list.
* @short Class used to iterate the items of a list
*/
class YATE_API ListIterator
{
public:
/**
* Constructor used to iterate trough an ObjList.
* The image of the list is frozen at the time the constructor executes
* @param list List to get the objects from
*/
ListIterator(ObjList& list);
/**
* Constructor used to iterate trough a HashList.
* The image of the list is frozen at the time the constructor executes
* @param list List to get the objects from
*/
ListIterator(HashList& list);
/**
* Destructor - frees the allocated memory
*/
~ListIterator();
/**
* Get the number of elements in the list
* @return Count of items in the internal list
*/
inline unsigned int length() const
{ return m_length; }
/**
* Get an arbitrary element in the iterator's list image.
* Items that were removed from list or are not alive are not returned.
* @param index Position to get the item from
* @return Pointer to the list item or NULL if out of range or item removed
*/
GenObject* get(unsigned int index) const;
/**
* Get the current element and advance the current index.
* Items that were removed from list or are not alive are skipped over.
* An example of typical usage:
* <pre>
* ListIterator iter(list);
* while (GenObject* obj = iter.get()) {
* do_something_with(obj);
* }
* </pre>
* @return Pointer to a list item or NULL if advanced past end (eof)
*/
GenObject* get();
/**
* Check if the current pointer is past the end of the list
* @return True if there are no more entries left
*/
inline bool eof() const
{ return m_current >= m_length; }
/**
* Reset the iterator index to the first position in the list
*/
inline void reset()
{ m_current = 0; }
private:
ObjList* m_objList;
HashList* m_hashList;
GenObject** m_objects;
unsigned int m_length;
unsigned int m_current;
};
/**
* The Time class holds a time moment with microsecond accuracy
* @short A time holding class
*/
class YATE_API Time
{
public:
/**
* Constructs a Time object from the current time
*/
inline Time()
: m_time(now())
{ }
/**
* Constructs a Time object from a given time
* @param usec Time in microseconds
*/
inline Time(u_int64_t usec)
: m_time(usec)
{ }
/**
* Constructs a Time object from a timeval structure pointer
* @param tv Pointer to the timeval structure
*/
inline explicit Time(const struct timeval* tv)
: m_time(fromTimeval(tv))
{ }
/**
* Constructs a Time object from a timeval structure
* @param tv Reference of the timeval structure
*/
inline explicit Time(const struct timeval& tv)
: m_time(fromTimeval(tv))
{ }
/**
* Do-nothing destructor that keeps the compiler from complaining
* about inlining derivates or members of Time type
*/
inline ~Time()
{ }
/**
* Get time in seconds
* @return Time in seconds since the Epoch
*/
inline u_int32_t sec() const
{ return (u_int32_t)((m_time+500000) / 1000000); }
/**
* Get time in milliseconds
* @return Time in milliseconds since the Epoch
*/
inline u_int64_t msec() const
{ return (m_time+500) / 1000; }
/**
* Get time in microseconds
* @return Time in microseconds since the Epoch
*/
inline u_int64_t usec() const
{ return m_time; }
/**
* Conversion to microseconds operator
*/
inline operator u_int64_t() const
{ return m_time; }
/**
* Assignment operator.
*/
inline Time& operator=(u_int64_t usec)
{ m_time = usec; return *this; }
/**
* Offsetting operator.
*/
inline Time& operator+=(int64_t delta)
{ m_time += delta; return *this; }
/**
* Offsetting operator.
*/
inline Time& operator-=(int64_t delta)
{ m_time -= delta; return *this; }
/**
* Fill in a timeval struct from a value in microseconds
* @param tv Pointer to the timeval structure
*/
inline void toTimeval(struct timeval* tv) const
{ toTimeval(tv, m_time); }
/**
* Fill in a timeval struct from a value in microseconds
* @param tv Pointer to the timeval structure
* @param usec Time to convert to timeval
*/
static void toTimeval(struct timeval* tv, u_int64_t usec);
/**
* Convert time in a timeval struct to microseconds
* @param tv Pointer to the timeval structure
* @return Corresponding time in microseconds or zero if tv is NULL
*/
static u_int64_t fromTimeval(const struct timeval* tv);
/**
* Convert time in a timeval struct to microseconds
* @param tv Reference of the timeval structure
* @return Corresponding time in microseconds
*/
inline static u_int64_t fromTimeval(const struct timeval& tv)
{ return fromTimeval(&tv); }
/**
* Get the current system time in microseconds
* @return Time in microseconds since the Epoch
*/
static u_int64_t now();
/**
* Get the current system time in milliseconds
* @return Time in milliseconds since the Epoch
*/
static u_int64_t msecNow();
/**
* Get the current system time in seconds
* @return Time in seconds since the Epoch
*/
static u_int32_t secNow();
/**
* Build EPOCH time from date/time components
* @param year The year component of the date. Must be greater then 1969
* @param month The month component of the date (1 to 12)
* @param day The day component of the date (1 to 31)
* @param hour The hour component of the time (0 to 23). The hour can be 24
* if minute and sec are 0
* @param minute The minute component of the time (0 to 59)
* @param sec The seconds component of the time (0 to 59)
* @param offset Optional number of seconds to be added/substracted
* to/from result. It can't exceed the number of seconds in a day
* @return EPOCH time in seconds, -1 on failure
*/
static unsigned int toEpoch(int year, unsigned int month, unsigned int day,
unsigned int hour, unsigned int minute, unsigned int sec, int offset = 0);
/**
* Split a given EPOCH time into its date/time components
* @param epochTimeSec EPOCH time in seconds
* @param year The year component of the date
* @param month The month component of the date (1 to 12)
* @param day The day component of the date (1 to 31)
* @param hour The hour component of the time (0 to 23)
* @param minute The minute component of the time (0 to 59)
* @param sec The seconds component of the time (0 to 59)
* @return True on succes, false if conversion failed
*/
static bool toDateTime(unsigned int epochTimeSec, int& year, unsigned int& month,
unsigned int& day, unsigned int& hour, unsigned int& minute, unsigned int& sec);
/**
* Check if an year is a leap one
* @param year The year to check
* @return True if the given year is a leap one
*/
static inline bool isLeap(unsigned int year)
{ return (year % 400 == 0 || (year % 4 == 0 && year % 100 != 0)); }
private:
u_int64_t m_time;
};
/**
* The DataBlock holds a data buffer with no specific formatting.
* @short A class that holds just a block of raw data
*/
class YATE_API DataBlock : public GenObject
{
public:
/**
* Constructs an empty data block
*/
DataBlock();
/**
* Copy constructor
*/
DataBlock(const DataBlock& value);
/**
* Constructs an initialized data block
* @param value Data to assign, may be NULL to fill with zeros
* @param len Length of data, may be zero (then value is ignored)
* @param copyData True to make a copy of the data, false to just insert the pointer
*/
DataBlock(void* value, unsigned int len, bool copyData = true);
/**
* Destroys the data, disposes the memory.
*/
virtual ~DataBlock();
/**
* Get a pointer to a derived class given that class name
* @param name Name of the class we are asking for
* @return Pointer to the requested class or NULL if this object doesn't implement it
*/
virtual void* getObject(const String& name) const;
/**
* A static empty data block
*/
static const DataBlock& empty();
/**
* Get a pointer to the stored data.
* @return A pointer to the data or NULL.
*/
inline void* data() const
{ return m_data; }
/**
* Get a pointer to a byte range inside the stored data.
* @param offs Byte offset inside the stored data
* @param len Number of bytes that must be valid starting at offset
* @return A pointer to the data or NULL if the range is not available.
*/
inline unsigned char* data(unsigned int offs, unsigned int len = 1) const
{ return (offs + len <= m_length) ? (static_cast<unsigned char*>(m_data) + offs) : 0; }
/**
* Get the value of a single byte inside the stored data
* @param offs Byte offset inside the stored data
* @param defvalue Default value to return if offset is outside data
* @return Byte value at offset (0-255) or defvalue if offset outside data
*/
inline int at(unsigned int offs, int defvalue = -1) const
{ return (offs < m_length) ? static_cast<unsigned char*>(m_data)[offs] : defvalue; }
/**
* Checks if the block holds a NULL pointer.
* @return True if the block holds NULL, false otherwise.
*/
inline bool null() const
{ return !m_data; }
/**
* Get the length of the stored data.
* @return The length of the stored data, zero for NULL.
*/
inline unsigned int length() const
{ return m_length; }
/**
* Clear the data and optionally free the memory
* @param deleteData True to free the deta block, false to just forget it
*/
void clear(bool deleteData = true);
/**
* Assign data to the object
* @param value Data to assign, may be NULL to fill with zeros
* @param len Length of data, may be zero (then value is ignored)
* @param copyData True to make a copy of the data, false to just insert the pointer
*/
DataBlock& assign(void* value, unsigned int len, bool copyData = true);
/**
* Append data to the current block
* @param value Data to append
* @param len Length of data
*/
inline void append(void* value, unsigned int len) {
DataBlock tmp(value,len,false);
append(tmp);
tmp.clear(false);
}
/**
* Append data to the current block
* @param value Data to append
*/
void append(const DataBlock& value);
/**
* Append a String to the current block
* @param value String to append
*/
void append(const String& value);
/**
* Insert data before the current block
* @param value Data to insert
*/
void insert(const DataBlock& value);
/**
* Truncate the data block
* @param len The maximum length to keep
*/
void truncate(unsigned int len);
/**
* Cut off a number of bytes from the data block
* @param len Amount to cut, positive to cut from end, negative to cut from start of block
*/
void cut(int len);
/**
* Byte indexing operator with signed parameter
* @param index Index of the byte to retrieve
* @return Byte value at offset (0-255) or -1 if index outside data
*/
inline int operator[](signed int index) const
{ return at(index); }
/**
* Byte indexing operator with unsigned parameter
* @param index Index of the byte to retrieve
* @return Byte value at offset (0-255) or -1 if index outside data
*/
inline int operator[](unsigned int index) const
{ return at(index); }
/**
* Assignment operator.
*/
DataBlock& operator=(const DataBlock& value);
/**
* Appending operator.
*/
inline DataBlock& operator+=(const DataBlock& value)
{ append(value); return *this; }
/**
* Appending operator for Strings.
*/
inline DataBlock& operator+=(const String& value)
{ append(value); return *this; }
/**
* Convert data from a different format
* @param src Source data block
* @param sFormat Name of the source format
* @param dFormat Name of the destination format
* @param maxlen Maximum amount to convert, 0 to use source
* @return True if converted successfully, false on failure
*/
bool convert(const DataBlock& src, const String& sFormat,
const String& dFormat, unsigned maxlen = 0);
/**
* Build this data block from a hexadecimal string representation.
* Each octet must be represented in the input string with 2 hexadecimal characters.
* If a separator is specified, the octets in input string must be separated using
* exactly 1 separator. Only 1 leading or 1 trailing separators are allowed
* @param data Input character string
* @param len Length of the input string
* @param sep Separator character used between octets. 0 if no separator is expected
* @return True if the input string was succesfully parsed, false otherwise
*/
bool unHexify(const char* data, unsigned int len, char sep = 0);
/**
* Create an escaped string suitable for use in SQL queries
* @param extraEsc Character to escape other than the default ones
* @return A string with binary zeros and other special characters escaped
*/
String sqlEscape(char extraEsc) const;
private:
void* m_data;
unsigned int m_length;
};
/**
* A class to compute and check MD5 digests
* @short A standard MD5 digest calculator
*/
class YATE_API MD5
{
public:
/**
* Construct a fresh initialized instance
*/
MD5();
/**
* Copy constructor
* @param original MD5 instance to copy
*/
MD5(const MD5& original);
/**
* Construct a digest from a buffer of data
* @param buf Pointer to the data to be included in digest
* @param len Length of data in the buffer
*/
MD5(const void* buf, unsigned int len);
/**
* Construct a digest from a binary DataBlock
* @param data Binary data to be included in digest
*/
MD5(const DataBlock& data);
/**
* Construct a digest from a String
* @param str String to be included in digest
*/
MD5(const String& str);
/**
* Destroy the instance, free allocated memory
*/
~MD5();
/**
* Assignment operator.
*/
MD5& operator=(const MD5& original);
/**
* Clear the digest and prepare for reuse
*/
void clear();
/**
* Finalize the digest computation, make result ready.
* Subsequent calls to @ref update() will fail
*/
void finalize();
/**
* Update the digest from a buffer of data
* @param buf Pointer to the data to be included in digest
* @param len Length of data in the buffer
* @return True if success, false if @ref finalize() was already called
*/
bool update(const void* buf, unsigned int len);
/**
* Update the digest from the content of a DataBlock
* @param data Data to be included in digest
* @return True if success, false if @ref finalize() was already called
*/
inline bool update(const DataBlock& data)
{ return update(data.data(), data.length()); }
/**
* Update the digest from the content of a String
* @param str String to be included in digest
* @return True if success, false if @ref finalize() was already called
*/
inline bool update(const String& str)
{ return update(str.c_str(), str.length()); }
/**
* MD5 updating operator for Strings
*/
inline MD5& operator<<(const String& value)
{ update(value); return *this; }
/**
* MD5 updating operator for DataBlocks
*/
inline MD5& operator<<(const DataBlock& data)
{ update(data); return *this; }
/**
* MD5 updating operator for C strings
*/
MD5& operator<<(const char* value);
/**
* Returns a pointer to the raw 16-byte binary value of the message digest.
* The digest is finalized if if wasn't already
* @return Pointer to the raw digest data or NULL if some error occured
*/
const unsigned char* rawDigest();
/**
* Return the length of the raw binary digest
* @return Constant value of 16
*/
inline static unsigned int rawLength()
{ return 16; }
/**
* Returns the standard hexadecimal representation of the message digest.
* The digest is finalized if if wasn't already
* @return A String which holds the hex digest or a null one if some error occured
*/
const String& hexDigest();
private:
void init();
void* m_private;
String m_hex;
unsigned char m_bin[16];
};
/**
* A class to compute and check SHA1 digests
* @short A standard SHA1 digest calculator
*/
class YATE_API SHA1
{
public:
/**
* Construct a fresh initialized instance
*/
SHA1();
/**
* Copy constructor
* @param original SHA1 instance to copy
*/
SHA1(const SHA1& original);
/**
* Construct a digest from a buffer of data
* @param buf Pointer to the data to be included in digest
* @param len Length of data in the buffer
*/
SHA1(const void* buf, unsigned int len);
/**
* Construct a digest from a binary DataBlock
* @param data Binary data to be included in digest
*/
SHA1(const DataBlock& data);
/**
* Construct a digest from a String
* @param str String to be included in digest
*/
SHA1(const String& str);
/**
* Destroy the instance, free allocated memory
*/
~SHA1();
/**
* Assignment operator.
*/
SHA1& operator=(const SHA1& original);
/**
* Clear the digest and prepare for reuse
*/
void clear();
/**
* Finalize the digest computation, make result ready.
* Subsequent calls to @ref update() will fail
*/
void finalize();
/**
* Update the digest from a buffer of data
* @param buf Pointer to the data to be included in digest
* @param len Length of data in the buffer
* @return True if success, false if @ref finalize() was already called
*/
bool update(const void* buf, unsigned int len);
/**
* Update the digest from the content of a DataBlock
* @param data Data to be included in digest
* @return True if success, false if @ref finalize() was already called
*/
inline bool update(const DataBlock& data)
{ return update(data.data(), data.length()); }
/**
* Update the digest from the content of a String
* @param str String to be included in digest
* @return True if success, false if @ref finalize() was already called
*/
inline bool update(const String& str)
{ return update(str.c_str(), str.length()); }
/**
* SHA1 updating operator for Strings
*/
inline SHA1& operator<<(const String& value)
{ update(value); return *this; }
/**
* SHA1 updating operator for DataBlocks
*/
inline SHA1& operator<<(const DataBlock& data)
{ update(data); return *this; }
/**
* SHA1 updating operator for C strings
*/
SHA1& operator<<(const char* value);
/**
* Returns a pointer to the raw 20-byte binary value of the message digest.
* The digest is finalized if if wasn't already
* @return Pointer to the raw digest data or NULL if some error occured
*/
const unsigned char* rawDigest();
/**
* Return the length of the raw binary digest
* @return Constant value of 20
*/
inline static unsigned int rawLength()
{ return 20; }
/**
* Returns the standard hexadecimal representation of the message digest.
* The digest is finalized if if wasn't already
* @return A String which holds the hex digest or a null one if some error occured
*/
const String& hexDigest();
private:
void init();
void* m_private;
String m_hex;
unsigned char m_bin[20];
};
/**
* Base64 encoder/decoder class
* @short Base64 encoder/decoder class
*/
class YATE_API Base64 : public DataBlock
{
public:
/**
* Constructor
*/
inline Base64()
{}
/**
* Constructor. Set the buffer
* @param src Initial data buffer
* @param len Initial data buffer length
* @param copyData True to make a copy of the received data
*/
inline Base64(void* src, unsigned int len, bool copyData = true)
: DataBlock(src,len,copyData)
{}
/**
* Encode this buffer to a destination string
* @param dest Destination string
* @param lineLen The length of a line. If non 0, a line break (CR/LF) will
* be inserted in the encoded data after each lineLine characters.
* No line break will be added after the last line. Use the lineAtEnd
* parameter to do that
* @param lineAtEnd True to add a line break at the end of encoded data
*/
void encode(String& dest, unsigned int lineLen = 0, bool lineAtEnd = false);
/**
* Decode this buffer to a destination one
* @param dest Destination data buffer
* @param liberal True to use 'liberal' rules when decoding. Some non alphabet
* characters (such as CR, LF, TAB, SPACE or the Base64 padding char '=')
* will be accepted and ignored. The resulting number of Base64 chars to
* decode must be a valid one
* @return True on succes, false if an invalid (non Base64) character was
* found or the number of Base64 characters is invalid (must be a multiple
* of 4 plus 0, 2 or 3 characters) or the padding is incorrect
*/
bool decode(DataBlock& dest, bool liberal = true);
/**
* Base64 append operator for Strings
*/
inline Base64& operator<<(const String& value)
{ append(value); return *this; }
/**
* Base64 append operator for DataBlocks
*/
inline Base64& operator<<(const DataBlock& data)
{ append(data); return *this; }
/**
* Base64 append operator for C strings
*/
inline Base64& operator<<(const char* value)
{ return operator<<(String(value)); }
};
/**
* This class holds a named list of named strings
* @short A named string container class
*/
class YATE_API NamedList : public String
{
public:
/**
* Creates a new named list.
* @param name Name of the list - must not be NULL or empty
*/
NamedList(const char* name);
/**
* Copy constructor
* @param original Named list we are copying
*/
NamedList(const NamedList& original);
/**
* Creates a named list with subparameters of another list.
* @param name Name of the list - must not be NULL or empty
* @param original Named list to copy parameters from
* @param prefix Prefix to match and remove from parameter names
*/
NamedList(const char* name, const NamedList& original, const String& prefix);
/**
* Get a pointer to a derived class given that class name
* @param name Name of the class we are asking for
* @return Pointer to the requested class or NULL if this object doesn't implement it
*/
virtual void* getObject(const String& name) const;
/**
* Get the number of parameters
* @return Count of named strings
*/
inline unsigned int length() const
{ return m_params.length(); }
/**
* Get the number of non-null parameters
* @return Count of existing named strings
*/
inline unsigned int count() const
{ return m_params.count(); }
/**
* Clear all parameters
*/
inline void clearParams()
{ m_params.clear(); }
/**
* Add a named string to the parameter list.
* @param param Parameter to add
*/
NamedList& addParam(NamedString* param);
/**
* Add a named string to the parameter list.
* @param name Name of the new string
* @param value Value of the new string
*/
NamedList& addParam(const char* name, const char* value);
/**
* Set a named string in the parameter list.
* @param param Parameter to set or add
*/
NamedList& setParam(NamedString* param);
/**
* Set a named string in the parameter list.
* @param name Name of the string
* @param value Value of the string
*/
NamedList& setParam(const char* name, const char* value);
/**
* Clears all instances of a named string in the parameter list.
* @param name Name of the string to remove
* @param childSep If set clears all child parameters in format name+childSep+anything
*/
NamedList& clearParam(const String& name, char childSep = 0);
/**
* Remove a specific parameter
* @param param Pointer to parameter to remove
*/
NamedList& clearParam(NamedString* param);
/**
* Copy a parameter from another NamedList, clears it if not present there
* @param original NamedList to copy the parameter from
* @param name Name of the string to copy or clear
* @param childSep If set copies all child parameters in format name+childSep+anything
*/
NamedList& copyParam(const NamedList& original, const String& name, char childSep = 0);
/**
* Copy all parameters from another NamedList, does not clear list first
* @param original NamedList to copy the parameters from
*/
NamedList& copyParams(const NamedList& original);
/**
* Copy multiple parameters from another NamedList, clears them if not present there
* @param original NamedList to copy the parameters from
* @param list List of objects (usually String) whose name (blanks stripped) is used as parameters names
* @param childSep If set copies all child parameters in format name+childSep+anything
*/
NamedList& copyParams(const NamedList& original, ObjList* list, char childSep = 0);
/**
* Copy multiple parameters from another NamedList, clears it if not present there
* @param original NamedList to copy the parameter from
* @param list Comma separated list of parameters to copy or clear
* @param childSep If set copies all child parameters in format name+childSep+anything
*/
NamedList& copyParams(const NamedList& original, const String& list, char childSep = 0);
/**
* Copy subparameters from another list
* @param original Named list to copy parameters from
* @param prefix Prefix to match and remove from parameter names, must not be NULL
*/
NamedList& copySubParams(const NamedList& original, const String& prefix);
/**
* Get the index of a named string in the parameter list.
* @param param Pointer to the parameter to locate
* @return Index of the named string or -1 if not found
*/
int getIndex(const NamedString* param) const;
/**
* Get the index of first matching named string in the parameter list.
* @param name Name of parameter to locate
* @return Index of the first matching named string or -1 if not found
*/
int getIndex(const String& name) const;
/**
* Locate a named string in the parameter list.
* @param name Name of parameter to locate
* @return A pointer to the named string or NULL.
*/
NamedString* getParam(const String& name) const;
/**
* Locate a named string in the parameter list.
* @param index Index of the parameter to locate
* @return A pointer to the named string or NULL.
*/
NamedString* getParam(unsigned int index) const;
/**
* Parameter access operator
* @param name Name of the parameter to return
* @return String value of the parameter, @ref String::empty() if missing
*/
const String& operator[](const String& name) const;
/**
* Retrive the value of a named parameter.
* @param name Name of parameter to locate
* @param defvalue Default value to return if not found
* @return The string contained in the named parameter or the default
*/
const char* getValue(const String& name, const char* defvalue = 0) const;
/**
* Retrive the numeric value of a parameter.
* @param name Name of parameter to locate
* @param defvalue Default value to return if not found
* @return The number contained in the named parameter or the default
*/
int getIntValue(const String& name, int defvalue = 0) const;
/**
* Retrive the numeric value of a parameter trying first a table lookup.
* @param name Name of parameter to locate
* @param tokens A pointer to an array of tokens to try to lookup
* @param defvalue Default value to return if not found
* @return The number contained in the named parameter or the default
*/
int getIntValue(const String& name, const TokenDict* tokens, int defvalue = 0) const;
/**
* Retrive the floating point value of a parameter.
* @param name Name of parameter to locate
* @param defvalue Default value to return if not found
* @return The number contained in the named parameter or the default
*/
double getDoubleValue(const String& name, double defvalue = 0.0) const;
/**
* Retrive the boolean value of a parameter.
* @param name Name of parameter to locate
* @param defvalue Default value to return if not found
* @return The boolean value contained in the named parameter or the default
*/
bool getBoolValue(const String& name, bool defvalue = false) const;
/**
* Replaces all ${paramname} in a String with the corresponding parameters
* @param str String in which the replacements will be made
* @param sqlEsc True to apply SQL escaping to parameter values
* @param extraEsc Character to escape other than the SQL default ones
* @return Number of replacements made, -1 if an error occured
*/
int replaceParams(String& str, bool sqlEsc = false, char extraEsc = 0) const;
/**
* Dumps the name and all parameters to a string in a human readable format.
* No escaping takes place so this method should be used for debugging only
* @param str String to which the name and parameters are appended
* @param separator Separator string to use before each parameter
* @param quote String quoting character, usually single or double quote
* @param force True to insert the separator even in an empty string
*/
void dump(String& str, const char* separator, char quote = 0, bool force = false) const;
/**
* A static empty named list
* @return Reference to a static empty named list
*/
static const NamedList& empty();
private:
NamedList(); // no default constructor please
NamedList& operator=(const NamedList& value); // no assignment please
ObjList m_params;
};
/**
* Uniform Resource Identifier encapsulation and parser.
* For efficiency reason the parsing is delayed as long as possible
* @short Encapsulation for an URI
*/
class YATE_API URI : public String
{
public:
/**
* Empty URI constructor
*/
URI();
/**
* Copy constructor
* @param uri Original URI to copy
*/
URI(const URI& uri);
/**
* Constructor from a String that gets parsed later
* @param uri String form of the URI
*/
URI(const String& uri);
/**
* Constructor from a C string that gets parsed later
* @param uri String form of the URI
*/
URI(const char* uri);
/**
* Constructor from URI components
* @param proto Protocol - something like "http", "sip", etc.
* @param user User component of the URI
* @param host Hostname component of the URI
* @param port Port part of the URI (optional)
* @param desc Description part in front of the URI (optional)
*/
URI(const char* proto, const char* user, const char* host, int port = 0, const char* desc = 0);
/**
* Calling this method ensures the string URI is parsed into components
*/
void parse() const;
/**
* Assignment operator from URI
* @param value New URI value to assign
*/
inline URI& operator=(const URI& value)
{ String::operator=(value); return *this; }
/**
* Assignment operator from String
* @param value New URI value to assign
*/
inline URI& operator=(const String& value)
{ String::operator=(value); return *this; }
/**
* Assignment operator from C string
* @param value New URI value to assign
*/
inline URI& operator=(const char* value)
{ String::operator=(value); return *this; }
/**
* Access method to the description part of the URI
* @return Description part of the URI
*/
inline const String& getDescription() const
{ parse(); return m_desc; }
/**
* Access method to the protocol part of the URI
* @return Protocol part of the URI
*/
inline const String& getProtocol() const
{ parse(); return m_proto; }
/**
* Access method to the user part of the URI
* @return User component of the URI
*/
inline const String& getUser() const
{ parse(); return m_user; }
/**
* Access method to the host part of the URI
* @return Hostname part of the URI
*/
inline const String& getHost() const
{ parse(); return m_host; }
/**
* Access method to the port part of the URI
* @return Port of the URI, zero if not set
*/
inline int getPort() const
{ parse(); return m_port; }
/**
* Access method to the additional text part of the URI
* @return Additional text of the URI including the separator
*/
inline const String& getExtra() const
{ parse(); return m_extra; }
protected:
/**
* Notification method called whenever the string URI has changed.
* The default behaviour is to invalidate the parsed flag and cal the
* method inherited from @ref String.
*/
virtual void changed();
mutable bool m_parsed;
mutable String m_desc;
mutable String m_proto;
mutable String m_user;
mutable String m_host;
mutable String m_extra;
mutable int m_port;
};
class MutexPrivate;
class SemaphorePrivate;
class ThreadPrivate;
/**
* An abstract base class for implementing lockable objects
* @short Abstract interface for lockable objects
*/
class YATE_API Lockable
{
public:
/**
* Destructor
*/
virtual ~Lockable();
/**
* Attempt to lock the object and eventually wait for it
* @param maxwait Time in microseconds to wait, -1 wait forever
* @return True if successfully locked, false on failure
*/
virtual bool lock(long maxwait = -1) = 0;
/**
* Unlock the object, does never wait
* @return True if successfully unlocked the object
*/
virtual bool unlock() = 0;
/**
* Check if the object is currently locked - as it's asynchronous it
* guarantees nothing if other thread changes the status
* @return True if the object was locked when the function was called
*/
virtual bool locked() const = 0;
/**
* Check if the object is unlocked (try to lock and unlock it)
* @param maxwait Time in microseconds to wait, -1 to wait forever
* @return True if successfully locked and unlocked, false on failure
*/
virtual bool check(long maxwait = -1);
/**
* Fully unlock the object, even if it was previously multiple locked.
* There is no guarantee about the object status after the function returns.
* This function should be used only if you understand it very well
* @return True if the object was fully unlocked
*/
virtual bool unlockAll();
/**
* Set a maximum wait time for debugging purposes
* @param maxwait Maximum time in microseconds to wait for any lockable
* object when no time limit was requested, zero to disable limit
*/
static void wait(unsigned long maxwait);
/**
* Get the maximum wait time used for debugging purposes
* @return Maximum time in microseconds, zero if no maximum is set
*/
static unsigned long wait();
/**
* Start actually using lockables, for platforms where these objects are not
* usable in global object constructors.
* This method must be called at least once somewhere from main() but
* before creating any threads and without holding any object locked.
*/
static void startUsingNow();
};
/**
* A simple mutual exclusion for locking access between threads
* @short Mutex support
*/
class YATE_API Mutex : public Lockable
{
friend class MutexPrivate;
public:
/**
* Construct a new unlocked mutex
* @param recursive True if the mutex has to be recursive (reentrant),
* false for a normal fast mutex
* @param name Static name of the mutex (for debugging purpose only)
*/
Mutex(bool recursive = false, const char* name = 0);
/**
* Copy constructor, creates a shared mutex
* @param original Reference of the mutex to share
*/
Mutex(const Mutex& original);
/**
* Destroy the mutex
*/
~Mutex();
/**
* Assignment operator makes the mutex shared with the original
* @param original Reference of the mutex to share
*/
Mutex& operator=(const Mutex& original);
/**
* Attempt to lock the mutex and eventually wait for it
* @param maxwait Time in microseconds to wait for the mutex, -1 wait forever
* @return True if successfully locked, false on failure
*/
virtual bool lock(long maxwait = -1);
/**
* Unlock the mutex, does never wait
* @return True if successfully unlocked the mutex
*/
virtual bool unlock();
/**
* Check if the mutex is currently locked - as it's asynchronous it
* guarantees nothing if other thread changes the mutex's status
* @return True if the mutex was locked when the function was called
*/
virtual bool locked() const;
/**
* Retrieve the name of the Thread (if any) holding the Mutex locked
* @return Thread name() or NULL if thread not named
*/
const char* owner() const;
/**
* Check if this mutex is recursive or not
* @return True if this is a recursive mutex, false for a fast mutex
*/
bool recursive() const;
/**
* Get the number of mutexes counting the shared ones only once
* @return Count of individual mutexes
*/
static int count();
/**
* Get the number of currently locked mutexes
* @return Count of locked mutexes, should be zero at program exit
*/
static int locks();
/**
* Check if a timed lock() is efficient on this platform
* @return True if a lock with a maxwait parameter is efficiently implemented
*/
static bool efficientTimedLock();
private:
MutexPrivate* privDataCopy() const;
MutexPrivate* m_private;
};
/**
* A semaphore object for synchronizing threads, can also be used as a token bucket
* @short Semaphore implementation
*/
class YATE_API Semaphore : public Lockable
{
friend class SemaphorePrivate;
public:
/**
* Construct a new unlocked semaphore
* @param maxcount Maximum unlock count, must be strictly positive
* @param name Static name of the semaphore (for debugging purpose only)
*/
Semaphore(unsigned int maxcount = 1, const char* name = 0);
/**
* Copy constructor, creates a shared semaphore
* @param original Reference of the semaphore to share
*/
Semaphore(const Semaphore& original);
/**
* Destroy the semaphore
*/
~Semaphore();
/**
* Assignment operator makes the semaphore shared with the original
* @param original Reference of the semaphore to share
*/
Semaphore& operator=(const Semaphore& original);
/**
* Attempt to get a lock on the semaphore and eventually wait for it
* @param maxwait Time in microseconds to wait, -1 wait forever
* @return True if successfully locked, false on failure
*/
virtual bool lock(long maxwait = -1);
/**
* Unlock the semaphore, does never wait nor get over counter maximum
* @return True if successfully unlocked
*/
virtual bool unlock();
/**
* Check if the semaphore is currently locked (waiting) - as it's
* asynchronous it guarantees nothing if other thread changes status
* @return True if the semaphore was locked when the function was called
*/
virtual bool locked() const;
/**
* Get the number of semaphores counting the shared ones only once
* @return Count of individual semaphores
*/
static int count();
/**
* Get the number of currently locked (waiting) semaphores
* @return Count of locked semaphores, should be zero at program exit
*/
static int locks();
/**
* Check if a timed lock() is efficient on this platform
* @return True if a lock with a maxwait parameter is efficiently implemented
*/
static bool efficientTimedLock();
private:
SemaphorePrivate* privDataCopy() const;
SemaphorePrivate* m_private;
};
/**
* A lock is a stack allocated (automatic) object that locks a lockable object
* on creation and unlocks it on destruction - typically when exiting a block
* @short Ephemeral mutex or semaphore locking object
*/
class YATE_API Lock
{
public:
/**
* Create the lock, try to lock the object
* @param lck Reference to the object to lock
* @param maxwait Time in microseconds to wait, -1 wait forever
*/
inline Lock(Lockable& lck, long maxwait = -1)
{ m_lock = lck.lock(maxwait) ? &lck : 0; }
/**
* Create the lock, try to lock the object
* @param lck Pointer to the object to lock
* @param maxwait Time in microseconds to wait, -1 wait forever
*/
inline Lock(Lockable* lck, long maxwait = -1)
{ m_lock = (lck && lck->lock(maxwait)) ? lck : 0; }
/**
* Destroy the lock, unlock the mutex if it was locked
*/
inline ~Lock()
{ if (m_lock) m_lock->unlock(); }
/**
* Return a pointer to the lockable object this lock holds
* @return A pointer to a Lockable or NULL if locking failed
*/
inline Lockable* locked() const
{ return m_lock; }
/**
* Unlock the object if it was locked and drop the reference to it
*/
inline void drop()
{ if (m_lock) m_lock->unlock(); m_lock = 0; }
private:
Lockable* m_lock;
/** Make sure no Lock is ever created on heap */
inline void* operator new(size_t);
/** Never allocate an array of this class */
inline void* operator new[](size_t);
/** No copy constructor */
inline Lock(const Lock&);
};
/**
* A dual lock is a stack allocated (automatic) object that locks a pair
* of mutexes on creation and unlocks them on destruction. The mutexes are
* always locked in the same order to prevent trivial deadlocks
* @short Ephemeral double mutex locking object
*/
class YATE_API Lock2
{
public:
/**
* Create the dual lock, try to lock each mutex
* @param mx1 Pointer to the first mutex to lock
* @param mx2 Pointer to the second mutex to lock
* @param maxwait Time in microseconds to wait for each mutex, -1 wait forever
*/
inline Lock2(Mutex* mx1, Mutex* mx2, long maxwait = -1)
: m_mx1(0), m_mx2(0)
{ lock(mx1,mx2,maxwait); }
/**
* Create the dual lock, try to lock each mutex
* @param mx1 Reference to the first mutex to lock
* @param mx2 Reference to the second mutex to lock
* @param maxwait Time in microseconds to wait for each mutex, -1 wait forever
*/
inline Lock2(Mutex& mx1, Mutex& mx2, long maxwait = -1)
: m_mx1(0), m_mx2(0)
{ lock(&mx1,&mx2,maxwait); }
/**
* Destroy the lock, unlock the mutex if it was locked
*/
inline ~Lock2()
{ drop(); }
/**
* Check if the locking succeeded
* @return True if all mutexes were locked
*/
inline bool locked() const
{ return m_mx1 != 0; }
/**
* Lock in a new pair of mutexes. Any existing locks are dropped
* @param mx1 Pointer to the first mutex to lock
* @param mx2 Pointer to the second mutex to lock
* @param maxwait Time in microseconds to wait for each mutex, -1 wait forever
* @return True on success - non-NULL mutexes locked
*/
bool lock(Mutex* mx1, Mutex* mx2, long maxwait = -1);
/**
* Lock in a new pair of mutexes
* @param mx1 Reference to the first mutex to lock
* @param mx2 Reference to the second mutex to lock
* @param maxwait Time in microseconds to wait for each mutex, -1 wait forever
* @return True on success - both locked
*/
inline bool lock(Mutex& mx1, Mutex& mx2, long maxwait = -1)
{ return lock(&mx1,&mx2,maxwait); }
/**
* Unlock both mutexes if they were locked and drop the references
*/
void drop();
private:
Mutex* m_mx1;
Mutex* m_mx2;
/** Make sure no Lock2 is ever created on heap */
inline void* operator new(size_t);
/** Never allocate an array of this class */
inline void* operator new[](size_t);
/** No copy constructor */
inline Lock2(const Lock2&);
};
/**
* This class holds the action to execute a certain task, usually in a
* different execution thread.
* @short Encapsulates a runnable task
*/
class YATE_API Runnable
{
public:
/**
* This method is called in another thread to do the actual job.
* When it returns the job or thread terminates.
*/
virtual void run() = 0;
/**
* Do-nothing destructor, placed here just to shut up GCC 4+
*/
virtual ~Runnable();
};
/**
* A thread is a separate execution context that exists in the same address
* space. Threads make better use of multiple processor machines and allow
* blocking one execution thread while allowing other to run.
* @short Thread support class
*/
class YATE_API Thread : public Runnable
{
friend class ThreadPrivate;
friend class MutexPrivate;
friend class SemaphorePrivate;
public:
/**
* Running priorities, their mapping is operating system dependent
*/
enum Priority {
Lowest,
Low,
Normal,
High,
Highest
};
/**
* This method is called when the current thread terminates.
*/
virtual void cleanup();
/**
* Actually starts running the new thread which lingers after creation
* @return False if an error occured, true if started ok
*/
bool startup();
/**
* Check if the thread creation failed
* @return True if an error occured, false if created ok
*/
bool error() const;
/**
* Check if the thread is running or not
* @return True if running, false if it has terminated or no startup called
*/
bool running() const;
/**
* Count how many Yate mutexes are kept locked by this thread
* @return Number of Mutex locks held by this thread
*/
inline int locks() const
{ return m_locks; }
/**
* Check if the thread is currently helding or attempting to lock a mutex
* @return True if the current thread is in an unsafe to cancel state
*/
inline bool locked() const
{ return m_locking || m_locks; }
/**
* Get the name of this thread
* @return The pointer that was passed in the constructor
*/
const char* name() const;
/**
* Get the name of the currently running thread
* @return The pointer that was passed in the thread's constructor
*/
static const char* currentName();
/**
* Give up the currently running timeslice. Note that on some platforms
* it also sleeps for the operating system's scheduler resolution
* @param exitCheck Terminate the thread if asked so
*/
static void yield(bool exitCheck = false);
/**
* Sleep for a system dependent period adequate for an idle thread.
* On most operating systems this is a 5 msec sleep.
* @param exitCheck Terminate the thread if asked so
*/
static void idle(bool exitCheck = false);
/**
* Sleep for a number of seconds
* @param sec Number of seconds to sleep
* @param exitCheck Terminate the thread if asked so
*/
static void sleep(unsigned int sec, bool exitCheck = false);
/**
* Sleep for a number of milliseconds
* @param msec Number of milliseconds to sleep
* @param exitCheck Terminate the thread if asked so
*/
static void msleep(unsigned long msec, bool exitCheck = false);
/**
* Sleep for a number of microseconds
* @param usec Number of microseconds to sleep, may be rounded to
* milliseconds on some platforms
* @param exitCheck Terminate the thread if asked so
*/
static void usleep(unsigned long usec, bool exitCheck = false);
/**
* Get the platform dependent idle sleep interval in microseconds
* @return Number of microseconds each call to idle() will sleep
*/
static unsigned long idleUsec();
/**
* Get the platform dependent idle sleep interval in milliseconds
* @return Number of milliseconds each call to idle() will sleep
*/
static unsigned long idleMsec();
/**
* Get a pointer to the currently running thread
* @return A pointer to the current thread or NULL for the main thread
* or threads created by other libraries
*/
static Thread* current();
/**
* Get the number of Yate created threads
* @return Count of current Thread objects
*/
static int count();
/**
* Check if the current thread was asked to terminate.
* @param exitNow If thread is marked as cancelled then terminate immediately
* @return False if thread should continue running, true if it should stop
*/
static bool check(bool exitNow = true);
/**
* Terminates the current thread.
*/
static void exit();
/**
* Terminates the specified thread.
* @param hard Kill the thread the hard way rather than just setting an exit check marker
*/
void cancel(bool hard = false);
/**
* Check if this thread is the currently running thread
* @return True if this is the current thread
*/
inline bool isCurrent() const
{ return current() == this; }
/**
* Convert a priority name to a thread priority level
* @param name Name of the requested level
* @param defvalue Priority to return in case of an invalid name
* @return A thread priority level
*/
static Priority priority(const char* name, Priority defvalue = Normal);
/**
* Convert a priority level to a textual name
* @param prio Priority level to convert
* @return Name of the level or NULL if an invalid argument was provided
*/
static const char* priority(Priority prio);
/**
* Kills all other running threads. Ouch!
* Must be called from the main thread or it does nothing.
*/
static void killall();
/**
* On some platforms this method kills all other running threads.
* Must be called after fork() but before any exec*() call.
*/
static void preExec();
/**
* Get the last thread error
* @return The value returned by GetLastError() (on Windows) or
* the value of C library 'errno' variable otherwise
*/
static int lastError();
/**
* Get the last thread error's string from system.
* @param buffer The destination string
* @return True if an error string was retrieved. If false is returned, the buffer
* is filled with a generic string indicating an unknown error and its code
*/
static inline bool errorString(String& buffer)
{ return errorString(buffer,lastError()); }
/**
* Get an error string from system.
* On Windows the code parameter must be a code returned by GetLastError().
* Otherwise, the error code should be a valid value for the C library 'errno'
* variable
* @param buffer The destination string
* @param code The error code
* @return True if an error string was retrieved. If false is returned, the buffer
* is filled with a generic string indicating an unknown error and its code
*/
static bool errorString(String& buffer, int code);
protected:
/**
* Creates and starts a new thread
* @param name Static name of the thread (for debugging purpose only)
* @param prio Thread priority
*/
Thread(const char *name = 0, Priority prio = Normal);
/**
* Creates and starts a new thread
* @param name Static name of the thread (for debugging purpose only)
* @param prio Thread priority level name
*/
Thread(const char *name, const char* prio);
/**
* The destructor is called when the thread terminates
*/
virtual ~Thread();
private:
ThreadPrivate* m_private;
int m_locks;
bool m_locking;
};
class Socket;
/**
* Wrapper class to keep a socket address
* @short A socket address holder
*/
class YATE_API SocketAddr : public GenObject
{
public:
/**
* Default constructor of an empty address
*/
inline SocketAddr()
: m_address(0), m_length(0)
{ }
/**
* Copy constructor
* @param value Address to copy
*/
inline SocketAddr(const SocketAddr& value)
: GenObject(),
m_address(0), m_length(0)
{ assign(value.address(),value.length()); }
/**
* Constructor of a null address
* @param family Family of the address to create
*/
SocketAddr(int family);
/**
* Constructor that stores a copy of an address
* @param addr Pointer to the address to store
* @param len Length of the stored address, zero to use default
*/
SocketAddr(const struct sockaddr* addr, socklen_t len = 0);
/**
* Destructor that frees and zeroes out everything
*/
virtual ~SocketAddr();
/**
* Assignment operator
* @param value Address to copy
*/
inline SocketAddr& operator=(const SocketAddr& value)
{ assign(value.address(),value.length()); return *this; }
/**
* Equality comparation operator
* @param other Address to compare to
* @return True if the addresses are equal
*/
bool operator==(const SocketAddr& other) const;
/**
* Inequality comparation operator
* @param other Address to compare to
* @return True if the addresses are different
*/
inline bool operator!=(const SocketAddr& other) const
{ return !operator==(other); }
/**
* Clears up the address, frees the memory
*/
void clear();
/**
* Assigns an empty address of a specific type
* @param family Family of the address to create
* @return True if the address family is supported
*/
bool assign(int family);
/**
* Assigns a new address
* @param addr Pointer to the address to store
* @param len Length of the stored address, zero to use default
*/
void assign(const struct sockaddr* addr, socklen_t len = 0);
/**
* Attempt to guess a local address that will be used to reach a remote one
* @param remote Remote address to reach
* @return True if guessed an address, false if failed
*/
bool local(const SocketAddr& remote);
/**
* Check if a non-null address is held
* @return True if a valid address is held, false if null
*/
inline bool valid() const
{ return m_length && m_address; }
/**
* Check if a null address is held
* @return True if a null address is held
*/
inline bool null() const
{ return !(m_length && m_address); }
/**
* Get the family of the stored address
* @return Address family of the stored address or zero (AF_UNSPEC)
*/
inline int family() const
{ return m_address ? m_address->sa_family : 0; }
/**
* Get the host of this address
* @return Host name as String
*/
inline const String& host() const
{ return m_host; }
/**
* Set the hostname of this address
* @return True if new host set, false if name could not be parsed
*/
virtual bool host(const String& name);
/**
* Get the port of the stored address (if supported)
* @return Port number of the socket address or zero
*/
int port() const;
/**
* Set the port of the stored address (if supported)
* @param newport Port number to set in the socket address
* @return True if new port set, false if not supported
*/
bool port(int newport);
/**
* Get the contained socket address
* @return A pointer to the socket address
*/
inline struct sockaddr* address() const
{ return m_address; }
/**
* Get the length of the address
* @return Length of the stored address
*/
inline socklen_t length() const
{ return m_length; }
/**
* Check if an address family is supported by the library
* @param family Family of the address to check
* @return True if the address family is supported
*/
static bool supports(int family);
protected:
/**
* Convert the host address to a String stored in m_host
*/
virtual void stringify();
struct sockaddr* m_address;
socklen_t m_length;
String m_host;
};
/**
* Abstract interface for an object that filters socket received data packets
* @short A filter for received socket data
*/
class YATE_API SocketFilter : public GenObject
{
friend class Socket;
public:
/**
* Constructor
*/
SocketFilter();
/**
* Destructor, unregisters from socket
*/
virtual ~SocketFilter();
/**
* Get a pointer to a derived class given that class name
* @param name Name of the class we are asking for
* @return Pointer to the requested class or NULL if this object doesn't implement it
*/
virtual void* getObject(const String& name) const;
/**
* Run whatever actions required on idle thread runs
* @param when Time when the idle run started
*/
virtual void timerTick(const Time& when);
/**
* Notify this filter about a received block of data
* @param buffer Buffer for received data
* @param length Length of the data in buffer
* @param flags Operating system specific bit flags of the operation
* @param addr Address of the incoming data, may be NULL
* @param adrlen Length of the valid data in address structure
* @return True if this filter claimed the data
*/
virtual bool received(void* buffer, int length, int flags, const struct sockaddr* addr, socklen_t adrlen) = 0;
/**
* Get the socket to which the filter is currently attached
* @return Pointer to the socket of this filter
*/
inline Socket* socket() const
{ return m_socket; }
/**
* Check if the socket of this filter is valid
* @return True if the filter has a valid socket
*/
bool valid() const;
private:
Socket* m_socket;
};
/**
* Base class for encapsulating system dependent stream capable objects
* @short An abstract stream class capable of reading and writing
*/
class YATE_API Stream
{
public:
/**
* Enumerate seek start position
*/
enum SeekPos {
SeekBegin, // Seek from start of stream
SeekEnd, // Seek from stream end
SeekCurrent // Seek from current position
};
/**
* Destructor, terminates the stream
*/
virtual ~Stream();
/**
* Get the error code of the last operation on this stream
* @return Error code generated by the last operation on this stream
*/
inline int error() const
{ return m_error; }
/**
* Closes the stream
* @return True if the stream was (already) closed, false if an error occured
*/
virtual bool terminate() = 0;
/**
* Check if the last error code indicates a retryable condition
* @return True if error was temporary and operation should be retried
*/
virtual bool canRetry() const;
/**
* Check if this stream is valid
* @return True if the stream is valid, false if it's invalid or closed
*/
virtual bool valid() const = 0;
/**
* Set the blocking or non-blocking operation mode of the stream
* @param block True if I/O operations should block, false for non-blocking
* @return True if operation was successfull, false if an error occured
*/
virtual bool setBlocking(bool block = true);
/**
* Write data to a connected stream
* @param buffer Buffer for data transfer
* @param length Length of the buffer
* @return Number of bytes transferred, negative if an error occurred
*/
virtual int writeData(const void* buffer, int length) = 0;
/**
* Write a C string to a connected stream
* @param str String to send over the stream
* @return Number of bytes transferred, negative if an error occurred
*/
int writeData(const char* str);
/**
* Write a String to a connected stream
* @param str String to send over the stream
* @return Number of bytes transferred, negative if an error occurred
*/
inline int writeData(const String& str)
{ return writeData(str.c_str(), str.length()); }
/**
* Write a Data block to a connected stream
* @param buf DataBlock to send over the stream
* @return Number of bytes transferred, negative if an error occurred
*/
inline int writeData(const DataBlock& buf)
{ return writeData(buf.data(), buf.length()); }
/**
* Receive data from a connected stream
* @param buffer Buffer for data transfer
* @param length Length of the buffer
* @return Number of bytes transferred, negative if an error occurred
*/
virtual int readData(void* buffer, int length) = 0;
/**
* Find the length of the stream if it has one
* @return Length of the stream or zero if length is not defined
*/
virtual int64_t length();
/**
* Set the stream read/write pointer
* @param pos The seek start as enumeration
* @param offset The number of bytes to move the pointer from starting position
* @return The new position of the stream read/write pointer. Negative on failure
*/
virtual int64_t seek(SeekPos pos, int64_t offset = 0);
/**
* Set the read/write pointer from begin of stream
* @param offset The position in stream to move the pointer
* @return The new position of the stream read/write pointer. Negative on failure
*/
inline int64_t seek(int64_t offset)
{ return seek(SeekBegin,offset); }
/**
* Allocate a new pair of unidirectionally pipe connected streams
* @param reader Reference of a pointer receiving the newly allocated reading side of the pipe
* @param writer Reference of a pointer receiving the newly allocated writing side of the pipe
* @return True is the stream pipe was created successfully
*/
static bool allocPipe(Stream*& reader, Stream*& writer);
/**
* Allocate a new pair of bidirectionally connected streams
* @param str1 Reference of a pointer receiving the newly allocated 1st end of the pair
* @param str2 Reference of a pointer receiving the newly allocated 2nd end of the pair
* @return True is the stream pair was created successfully
*/
static bool allocPair(Stream*& str1, Stream*& str2);
/**
* Check if operating system supports unidirectional stream pairs
* @return True if unidirectional pipes can be created
*/
static bool supportsPipes();
/**
* Check if operating system supports bidirectional stream pairs
* @return True if bidirectional pairs can be created
*/
static bool supportsPairs();
protected:
/**
* Default constructor
*/
inline Stream()
: m_error(0)
{ }
/**
* Clear the last error code
*/
inline void clearError()
{ m_error = 0; }
int m_error;
};
/**
* An implementation of a Stream that reads and writes data in a DataBlock
* @short A Stream that operates on DataBlocks in memory
*/
class YATE_API MemoryStream : public Stream
{
public:
/**
* Constructor of an empty stream
*/
inline MemoryStream()
: m_offset(0)
{ }
/**
* Constructor of aan initialized stream
* @param data Initial data to be copied in the memory stream
*/
inline MemoryStream(const DataBlock& data)
: m_data(data), m_offset(0)
{ }
/**
* Get read-only access to the DataBlock held
* @return Const reference to the DataBlock
*/
inline const DataBlock& data() const
{ return m_data; }
/**
* Do-nothing termination handler
* @return True to signal the stream was closed
*/
virtual bool terminate()
{ return true; }
/**
* Do-nothing validity check
* @return True to indicate the stream is valid
*/
virtual bool valid() const
{ return true; }
/**
* Write new data to the DataBlock at current position, advance pointer
* @param buffer Buffer of source data
* @param len Length of data to be written
* @return Number of bytes written, negative on error
*/
virtual int writeData(const void* buffer, int len);
/**
* Get data from internal DataBlock, advance pointer
* @param buffer Buffer for getting the data
* @param len Length of the buffer
* @return Number of bytes read, negative on error, zero on end of data
*/
virtual int readData(void* buffer, int len);
/**
* Get the length of the stream
* @return Length of the DataBlock in memory
*/
virtual int64_t length()
{ return m_data.length(); }
/**
* Set the read/write pointer
* @param pos The seek start as enumeration
* @param offset The number of bytes to move the pointer from starting position
* @return The new position of the stream read/write pointer. Negative on failure
*/
virtual int64_t seek(SeekPos pos, int64_t offset = 0);
protected:
/**
* The DataBlock holding the data in memory
*/
DataBlock m_data;
/**
* The current position for read/write operation
*/
int64_t m_offset;
};
/**
* Class to encapsulate a system dependent file in a system independent abstraction
* @short A stream file class
*/
class YATE_API File : public Stream
{
public:
/**
* Default constructor, creates a closed file
*/
File();
/**
* Constructor from an existing handle
* @param handle Operating system handle to an open file
*/
File(HANDLE handle);
/**
* Destructor, closes the file
*/
virtual ~File();
/**
* Opens a file from the filesystem pathname
* @param name Name of the file according to the operating system's conventions
* @param canWrite Open the file for writing
* @param canRead Open the file for reading
* @param create Create the file if it doesn't exist
* @param append Set the write pointer at the end of an existing file
* @param binary Open the file in binary mode if applicable
* @param pubReadable If the file is created make it public readable
* @param pubWritable If the file is created make it public writable
* @return True if the file was successfully opened
*/
virtual bool openPath(const char* name, bool canWrite = false, bool canRead = true,
bool create = false, bool append = false, bool binary = false,
bool pubReadable = false, bool pubWritable = false);
/**
* Closes the file handle
* @return True if the file was (already) closed, false if an error occured
*/
virtual bool terminate();
/**
* Attach an existing handle to the file, closes any existing first
* @param handle Operating system handle to an open file
*/
void attach(HANDLE handle);
/**
* Detaches the object from the file handle
* @return The handle previously owned by this object
*/
HANDLE detach();
/**
* Get the operating system handle to the file
* @return File handle
*/
inline HANDLE handle() const
{ return m_handle; }
/**
* Check if the last error code indicates a retryable condition
* @return True if error was temporary and operation should be retried
*/
virtual bool canRetry() const;
/**
* Check if this file is valid
* @return True if the file is valid, false if it's invalid or closed
*/
virtual bool valid() const;
/**
* Get the operating system specific handle value for an invalid file
* @return Handle value for an invalid file
*/
static HANDLE invalidHandle();
/**
* Set the blocking or non-blocking operation mode of the file
* @param block True if I/O operations should block, false for non-blocking
* @return True if operation was successfull, false if an error occured
*/
virtual bool setBlocking(bool block = true);
/**
* Find the length of the file if it has one
* @return Length of the file or zero if length is not defined
*/
virtual int64_t length();
/**
* Set the file read/write pointer
* @param pos The seek start as enumeration
* @param offset The number of bytes to move the pointer from starting position
* @return The new position of the file read/write pointer. Negative on failure
*/
virtual int64_t seek(SeekPos pos, int64_t offset = 0);
/**
* Write data to an open file
* @param buffer Buffer for data transfer
* @param length Length of the buffer
* @return Number of bytes transferred, negative if an error occurred
*/
virtual int writeData(const void* buffer, int length);
/**
* Read data from an open file
* @param buffer Buffer for data transfer
* @param length Length of the buffer
* @return Number of bytes transferred, negative if an error occurred
*/
virtual int readData(void* buffer, int length);
/**
* Retrive the file's modification time (the file must be already opened)
* @param secEpoch File creation time (seconds since Epoch)
* @return True on success
*/
bool getFileTime(unsigned int& secEpoch);
/**
* Build the MD5 hex digest of a file. The file must be opened for read access.
* This method will move the file pointer
* @param buffer Destination buffer
* @return True on success
*/
virtual bool md5(String& buffer);
/**
* Set a file's modification time.
* @param name Path and name of the file
* @param secEpoch File modification time (seconds since Epoch)
* @param error Optional pointer to error code to be filled on failure
* @return True on success
*/
static bool setFileTime(const char* name, unsigned int secEpoch, int* error = 0);
/**
* Retrieve a file's modification time
* @param name Path and name of the file
* @param secEpoch File modification time (seconds since Epoch)
* @param error Optional pointer to error code to be filled on failure
* @return True on success
*/
static bool getFileTime(const char* name, unsigned int& secEpoch, int* error = 0);
/**
* Check if a file exists
* @param name The file to check
* @param error Optional pointer to error code to be filled on failure
* @return True if the file exists
*/
static bool exists(const char* name, int* error = 0);
/**
* Rename (move) a file (or directory) entry from the filesystem
* @param oldFile Path and name of the file to rename
* @param newFile The new path and name of the file
* @param error Optional pointer to error code to be filled on failure
* @return True if the file was successfully renamed (moved)
*/
static bool rename(const char* oldFile, const char* newFile, int* error = 0);
/**
* Deletes a file entry from the filesystem
* @param name Absolute path and name of the file to delete
* @param error Optional pointer to error code to be filled on failure
* @return True if the file was successfully deleted
*/
static bool remove(const char* name, int* error = 0);
/**
* Build the MD5 hex digest of a file.
* @param name The file to build MD5 from
* @param buffer Destination buffer
* @param error Optional pointer to error code to be filled on failure
* @return True on success
*/
static bool md5(const char* name, String& buffer, int* error = 0);
/**
* Create a folder (directory). It only creates the last directory in the path
* @param path The folder path
* @param error Optional pointer to error code to be filled on failure
* @return True on success
*/
static bool mkDir(const char* path, int* error = 0);
/**
* Remove an empty folder (directory)
* @param path The folder path
* @param error Optional pointer to error code to be filled on failure
* @return True on success
*/
static bool rmDir(const char* path, int* error = 0);
/**
* Enumerate a folder (directory) content.
* Fill the given lists with children item names
* @param path The folder path
* @param dirs List to be filled with child directories.
* It can be NULL if not requested
* @param files List to be filled with child files.
* It can be NULL if not requested
* @param error Optional pointer to error code to be filled on failure
* @return True on success
*/
static bool listDirectory(const char* path, ObjList* dirs, ObjList* files,
int* error = 0);
/**
* Create a pair of unidirectionally pipe connected streams
* @param reader Reference to a File that becomes the reading side of the pipe
* @param writer Reference to a File that becomes the writing side of the pipe
* @return True is the pipe was created successfully
*/
static bool createPipe(File& reader, File& writer);
protected:
/**
* Copy the last error code from the operating system
*/
void copyError();
HANDLE m_handle;
};
/**
* This class encapsulates a system dependent socket in a system independent abstraction
* @short A generic socket class
*/
class YATE_API Socket : public Stream
{
public:
/**
* Types of service
*/
enum TOS {
LowDelay = IPTOS_LOWDELAY,
MaxThroughput = IPTOS_THROUGHPUT,
MaxReliability = IPTOS_RELIABILITY,
MinCost = IPTOS_MINCOST,
};
/**
* Default constructor, creates an invalid socket
*/
Socket();
/**
* Constructor from an existing handle
* @param handle Operating system handle to an existing socket
*/
Socket(SOCKET handle);
/**
* Constructor that also creates the socket handle
* @param domain Communication domain for the socket (protocol family)
* @param type Type specification of the socket
* @param protocol Specific protocol for the domain, 0 to use default
*/
Socket(int domain, int type, int protocol = 0);
/**
* Destructor - closes the handle if still open
*/
virtual ~Socket();
/**
* Creates a new socket handle,
* @param domain Communication domain for the socket (protocol family)
* @param type Type specification of the socket
* @param protocol Specific protocol for the domain, 0 to use default
* @return True if socket was created, false if an error occured
*/
bool create(int domain, int type, int protocol = 0);
/**
* Closes the socket handle, terminates the connection
* @return True if socket was (already) closed, false if an error occured
*/
virtual bool terminate();
/**
* Attach an existing handle to the socket, closes any existing first
* @param handle Operating system handle to an existing socket
*/
void attach(SOCKET handle);
/**
* Detaches the object from the socket handle
* @return The handle previously owned by this object
*/
SOCKET detach();
/**
* Get the operating system handle to the socket
* @return Socket handle
*/
inline SOCKET handle() const
{ return m_handle; }
/**
* Check if the last error code indicates a retryable condition
* @return True if error was temporary and operation should be retried
*/
virtual bool canRetry() const;
/**
* Check if this socket is valid
* @return True if the handle is valid, false if it's invalid
*/
virtual bool valid() const;
/**
* Get the operating system specific handle value for an invalid socket
* @return Handle value for an invalid socket
*/
static SOCKET invalidHandle();
/**
* Get the operating system specific return value of a failed operation
* @return Return value of a failed socket operation
*/
static int socketError();
/**
* Set socket options
* @param level Level of the option to set
* @param name Socket option for which the value is to be set
* @param value Pointer to a buffer holding the value for the requested option
* @param length Size of the supplied buffer
* @return True if operation was successfull, false if an error occured
*/
bool setOption(int level, int name, const void* value = 0, socklen_t length = 0);
/**
* Get socket options
* @param level Level of the option to set
* @param name Socket option for which the value is to be set
* @param buffer Pointer to a buffer to return the value for the requested option
* @param length Pointer to size of the supplied buffer, will be filled on return
* @return True if operation was successfull, false if an error occured
*/
bool getOption(int level, int name, void* buffer, socklen_t* length);
/**
* Set the Type of Service on the IP level of this socket
* @param tos New TOS bits to set
* @return True if operation was successfull, false if an error occured
*/
bool setTOS(int tos);
/**
* Set the blocking or non-blocking operation mode of the socket
* @param block True if I/O operations should block, false for non-blocking
* @return True if operation was successfull, false if an error occured
*/
virtual bool setBlocking(bool block = true);
/**
* Set the local address+port reuse flag of the socket.
* This method should be called before bind() or it will have no effect.
* @param reuse True if other sockets may listen on same address+port
* @param exclusive Grant exclusive access to the address
* @return True if operation was successfull, false if an error occured
*/
bool setReuse(bool reuse = true, bool exclusive = false);
/**
* Set the way closing a socket is handled
* @param seconds How much to block waiting for socket to close,
* negative to no wait (close in background), zero to reset connection
* @return True if operation was successfull, false if an error occured
*/
bool setLinger(int seconds = -1);
/**
* Associates the socket with a local address
* @param addr Address to assign to this socket
* @param addrlen Length of the address structure
* @return True if operation was successfull, false if an error occured
*/
bool bind(struct sockaddr* addr, socklen_t addrlen);
/**
* Associates the socket with a local address
* @param addr Address to assign to this socket
* @return True if operation was successfull, false if an error occured
*/
inline bool bind(const SocketAddr& addr)
{ return bind(addr.address(), addr.length()); }
/**
* Start listening for incoming connections on the socket
* @param backlog Maximum length of the queue of pending connections, 0 for system maximum
* @return True if operation was successfull, false if an error occured
*/
bool listen(unsigned int backlog = 0);
/**
* Create a new socket for an incoming connection attempt on a listening socket
* @param addr Address to fill in with the address of the incoming connection
* @param addrlen Length of the address structure on input, length of address data on return
* @return Open socket to the new connection or NULL on failure
*/
Socket* accept(struct sockaddr* addr = 0, socklen_t* addrlen = 0);
/**
* Create a new socket for an incoming connection attempt on a listening socket
* @param addr Address to fill in with the address of the incoming connection
* @return Open socket to the new connection or NULL on failure
*/
Socket* accept(SocketAddr& addr);
/**
* Create a new socket for an incoming connection attempt on a listening socket
* @param addr Address to fill in with the address of the incoming connection
* @param addrlen Length of the address structure on input, length of address data on return
* @return Operating system handle to the new connection or @ref invalidHandle() on failure
*/
SOCKET acceptHandle(struct sockaddr* addr = 0, socklen_t* addrlen = 0);
/**
* Check if a socket handle can be used in select
* @param handle The socket handle to check
* @return True if the socket handle can be safely used in select
*/
static bool canSelect(SOCKET handle);
/**
* Check if this socket object can be used in a select
* @return True if this socket can be safely used in select
*/
inline bool canSelect() const
{ return canSelect(handle()); }
/**
* Create a new socket by peeling off an association from a SCTP socket
* @param assoc Identifier of the association to peel off
* @return Open socket to the association or NULL on failure
*/
Socket* peelOff(unsigned int assoc);
/**
* Create a new socket by peeling off an association from a SCTP socket
* @param assoc Identifier of the association to peel off
* @return Operating system handle to the association or @ref invalidHandle() on failure
*/
SOCKET peelOffHandle(unsigned int assoc);
/**
* Connects the socket to a remote address
* @param addr Address to connect to
* @param addrlen Length of the address structure
* @return True if operation was successfull, false if an error occured
*/
bool connect(struct sockaddr* addr, socklen_t addrlen);
/**
* Connects the socket to a remote address
* @param addr Socket address to connect to
* @return True if operation was successfull, false if an error occured
*/
inline bool connect(const SocketAddr& addr)
{ return connect(addr.address(), addr.length()); }
/**
* Shut down one or both directions of a full-duplex socket.
* @param stopReads Request to shut down the read side of the socket
* @param stopWrites Request to shut down the write side of the socket
* @return True if operation was successfull, false if an error occured
*/
bool shutdown(bool stopReads, bool stopWrites);
/**
* Retrive the address of the local socket of a connection
* @param addr Address to fill in with the address of the local socket
* @param addrlen Length of the address structure on input, length of address data on return
* @return True if operation was successfull, false if an error occured
*/
bool getSockName(struct sockaddr* addr, socklen_t* addrlen);
/**
* Retrive the address of the local socket of a connection
* @param addr Address to fill in with the address of the local socket
* @return True if operation was successfull, false if an error occured
*/
bool getSockName(SocketAddr& addr);
/**
* Retrive the address of the remote socket of a connection
* @param addr Address to fill in with the address of the remote socket
* @param addrlen Length of the address structure on input, length of address data on return
* @return True if operation was successfull, false if an error occured
*/
bool getPeerName(struct sockaddr* addr, socklen_t* addrlen);
/**
* Retrive the address of the remote socket of a connection
* @param addr Address to fill in with the address of the remote socket
* @return True if operation was successfull, false if an error occured
*/
bool getPeerName(SocketAddr& addr);
/**
* Send a message over a connected or unconnected socket
* @param buffer Buffer for data transfer
* @param length Length of the buffer
* @param addr Address to send the message to, if NULL will behave like @ref send()
* @param adrlen Length of the address structure
* @param flags Operating system specific bit flags that change the behaviour
* @return Number of bytes transferred, @ref socketError() if an error occurred
*/
int sendTo(const void* buffer, int length, const struct sockaddr* addr, socklen_t adrlen, int flags = 0);
/**
* Send a message over a connected or unconnected socket
* @param buffer Buffer for data transfer
* @param length Length of the buffer
* @param addr Address to send the message to
* @param flags Operating system specific bit flags that change the behaviour
* @return Number of bytes transferred, @ref socketError() if an error occurred
*/
inline int sendTo(const void* buffer, int length, const SocketAddr& addr, int flags = 0)
{ return sendTo(buffer, length, addr.address(), addr.length(), flags); }
/**
* Send a message over a connected socket
* @param buffer Buffer for data transfer
* @param length Length of the buffer
* @param flags Operating system specific bit flags that change the behaviour
* @return Number of bytes transferred, @ref socketError() if an error occurred
*/
int send(const void* buffer, int length, int flags = 0);
/**
* Write data to a connected stream socket
* @param buffer Buffer for data transfer
* @param length Length of the buffer
* @return Number of bytes transferred, @ref socketError() if an error occurred
*/
virtual int writeData(const void* buffer, int length);
/**
* Receive a message from a connected or unconnected socket
* @param buffer Buffer for data transfer
* @param length Length of the buffer
* @param addr Address to fill in with the address of the incoming data
* @param adrlen Length of the address structure on input, length of address data on return
* @param flags Operating system specific bit flags that change the behaviour
* @return Number of bytes transferred, @ref socketError() if an error occurred
*/
int recvFrom(void* buffer, int length, struct sockaddr* addr = 0, socklen_t* adrlen = 0, int flags = 0);
/**
* Receive a message from a connected or unconnected socket
* @param buffer Buffer for data transfer
* @param length Length of the buffer
* @param addr Address to fill in with the address of the incoming data
* @param flags Operating system specific bit flags that change the behaviour
* @return Number of bytes transferred, @ref socketError() if an error occurred
*/
int recvFrom(void* buffer, int length, SocketAddr& addr, int flags = 0);
/**
* Receive a message from a connected socket
* @param buffer Buffer for data transfer
* @param length Length of the buffer
* @param flags Operating system specific bit flags that change the behaviour
* @return Number of bytes transferred, @ref socketError() if an error occurred
*/
int recv(void* buffer, int length, int flags = 0);
/**
* Receive data from a connected stream socket
* @param buffer Buffer for data transfer
* @param length Length of the buffer
* @return Number of bytes transferred, @ref socketError() if an error occurred
*/
virtual int readData(void* buffer, int length);
/**
* Determines the availability to perform synchronous I/O of the socket
* @param readok Address of a boolean variable to fill with readability status
* @param writeok Address of a boolean variable to fill with writeability status
* @param except Address of a boolean variable to fill with exceptions status
* @param timeout Maximum time until the method returns, NULL for blocking
* @return True if operation was successfull, false if an error occured
*/
bool select(bool* readok, bool* writeok, bool* except, struct timeval* timeout = 0);
/**
* Determines the availability to perform synchronous I/O of the socket
* @param readok Address of a boolean variable to fill with readability status
* @param writeok Address of a boolean variable to fill with writeability status
* @param except Address of a boolean variable to fill with exceptions status
* @param timeout Maximum time until the method returns, -1 for blocking
* @return True if operation was successfull, false if an error occured
*/
bool select(bool* readok, bool* writeok, bool* except, int64_t timeout);
/**
* Install a new packet filter in the socket
* @param filter Pointer to the packet filter to install
* @return True if the filter was installed
*/
bool installFilter(SocketFilter* filter);
/**
* Removes a packet filter and optionally destroys it
* @param filter Pointer to the packet filter to remove from socket
* @param delobj Set to true to also delete the filter
*/
void removeFilter(SocketFilter* filter, bool delobj = false);
/**
* Removes and destroys all packet filters
*/
void clearFilters();
/**
* Run whatever actions required on idle thread runs.
* The default implementation calls @ref SocketFilter::timerTick()
* for all installed filters.
* @param when Time when the idle run started
*/
virtual void timerTick(const Time& when);
/**
* Create a pair of bidirectionally connected sockets
* @param sock1 Reference to first Socket to be paired
* @param sock2 Reference to second Socket to be paired
* @param domain Communication domain for the sockets (protocol family)
* @return True is the stream pair was created successfully
*/
static bool createPair(Socket& sock1, Socket& sock2, int domain = AF_UNIX);
protected:
/**
* Copy the last error code from the operating system
*/
void copyError();
/**
* Copy the last error code from the operating system if an error occured, clear if not
* @param retcode Operation return code to check, 0 for success
* @param strict True to consider errors only return codes of @ref socketError()
* @return True if operation succeeded (retcode == 0), false otherwise
*/
bool checkError(int retcode, bool strict = false);
/**
* Apply installed filters to a received block of data
* @param buffer Buffer for received data
* @param length Length of the data in buffer
* @param flags Operating system specific bit flags of the operation
* @param addr Address of the incoming data, may be NULL
* @param adrlen Length of the valid data in address structure
* @return True if one of the filters claimed the data
*/
bool applyFilters(void* buffer, int length, int flags, const struct sockaddr* addr = 0, socklen_t adrlen = 0);
SOCKET m_handle;
ObjList m_filters;
};
/**
* The Cipher class provides an abstraction for data encryption classes
* @short An abstract cipher
*/
class YATE_API Cipher : public GenObject
{
public:
/**
* Cipher direction
*/
enum Direction {
Bidir,
Encrypt,
Decrypt,
};
/**
* Get the dictionary of cipher directions
* @return Pointer to the dictionary of cipher directions
*/
inline static const TokenDict* directions()
{ return s_directions; }
/**
* Get a direction from the dictionary given the name
* @param name Name of the direction
* @param defdir Default direction to return if name is empty or unknown
* @return Direction associated with the given name
*/
inline static Direction direction(const char* name, Direction defdir = Bidir)
{ return (Direction)TelEngine::lookup(name,s_directions,defdir); }
/**
* Destructor
*/
virtual ~Cipher();
/**
* Get a pointer to a derived class given that class name
* @param name Name of the class we are asking for
* @return Pointer to the requested class or NULL if this object doesn't implement it
*/
virtual void* getObject(const String& name) const;
/**
* Check if the cipher instance is valid for a specific direction
* @param dir Direction to check
* @return True if the cipher is able to perform operation on given direction
*/
virtual bool valid(Direction dir = Bidir) const;
/**
* Get the cipher block size
* @return Cipher block size in bytes
*/
virtual unsigned int blockSize() const = 0;
/**
* Get the initialization vector size
* @return Initialization vector size in bytes, 0 if not applicable
*/
virtual unsigned int initVectorSize() const;
/**
* Round up a buffer length to a multiple of block size
* @param len Length of data to encrypt or decrypt in bytes
* @return Length of required buffer in bytes
*/
unsigned int bufferSize(unsigned int len) const;
/**
* Check if a buffer length is multiple of block size
* @param len Length of data to encrypt or decrypt in bytes
* @return True if buffer length is multiple of block size
*/
bool bufferFull(unsigned int len) const;
/**
* Set the key required to encrypt or decrypt data
* @param key Pointer to binary key data
* @param len Length of key in bytes
* @param dir Direction to set key for
* @return True if the key was set successfully
*/
virtual bool setKey(const void* key, unsigned int len, Direction dir = Bidir) = 0;
/**
* Set the key required to encrypt or decrypt data
* @param key Binary key data block
* @param dir Direction to set key for
* @return True if the key was set successfully
*/
inline bool setKey(const DataBlock& key, Direction dir = Bidir)
{ return setKey(key.data(),key.length(),dir); }
/**
* Set the Initialization Vector if applicable
* @param vect Pointer to binary Initialization Vector data
* @param len Length of Initialization Vector in bytes
* @param dir Direction to set the Initialization Vector for
* @return True if the Initialization Vector was set successfully
*/
virtual bool initVector(const void* vect, unsigned int len, Direction dir = Bidir);
/**
* Set the Initialization Vector is applicable
* @param vect Binary Initialization Vector
* @param dir Direction to set the Initialization Vector for
* @return True if the Initialization Vector was set successfully
*/
inline bool initVector(const DataBlock& vect, Direction dir = Bidir)
{ return initVector(vect.data(),vect.length(),dir); }
/**
* Encrypt data
* @param outData Pointer to buffer for output (encrypted) and possibly input data
* @param len Length of output data, may not be multiple of block size
* @param inpData Pointer to buffer containing input (unencrypted) data, NULL to encrypt in place
* @return True if data was successfully encrypted
*/
virtual bool encrypt(void* outData, unsigned int len, const void* inpData = 0) = 0;
/**
* Encrypt a DataBlock in place
* @param data Data block to encrypt
* @return True if data was successfully encrypted
*/
inline bool encrypt(DataBlock& data)
{ return encrypt(data.data(),data.length()); }
/**
* Decrypt data
* @param outData Pointer to buffer for output (decrypted) and possibly input data
* @param len Length of output data, may not be multiple of block size
* @param inpData Pointer to buffer containing input (encrypted) data, NULL to decrypt in place
* @return True if data was successfully decrypted
*/
virtual bool decrypt(void* outData, unsigned int len, const void* inpData = 0) = 0;
/**
* Decrypt a DataBlock in place
* @param data Data block to decrypt
* @return True if data was successfully decrypted
*/
inline bool decrypt(DataBlock& data)
{ return decrypt(data.data(),data.length()); }
private:
static const TokenDict s_directions[];
};
/**
* The SysUsage class allows collecting some statistics about engine's usage
* of system resources
* @short A class exposing system resources usage
*/
class YATE_API SysUsage
{
public:
/**
* Type of time usage requested
*/
enum Type {
WallTime,
UserTime,
KernelTime
};
/**
* Initialize the system start variable
*/
static void init();
/**
* Get the wall time used as start for the usage time
* @return Time of the first direct or implicit call of @ref init()
*/
static u_int64_t startTime();
/**
* Get the program's running time in microseconds
* @param type Type of running time requested
* @return Time in microseconds since the start of the program
*/
static u_int64_t usecRunTime(Type type = WallTime);
/**
* Get the program's running time in milliseconds
* @param type Type of running time requested
* @return Time in milliseconds since the start of the program
*/
static u_int64_t msecRunTime(Type type = WallTime);
/**
* Get the program's running time in seconds
* @param type Type of running time requested
* @return Time in seconds since the start of the program
*/
static u_int32_t secRunTime(Type type = WallTime);
/**
* Get the program's running time in seconds
* @param type Type of running time requested
* @return Time in seconds since the start of the program
*/
static double runTime(Type type = WallTime);
};
}; // namespace TelEngine
#endif /* __YATECLASS_H */
/* vi: set ts=8 sw=4 sts=4 noet: */
</pre>
<HR>
<table>
<tr><td><small>Generated by: paulc on bussard on Mon Mar 8 12:18:15 2010, using kdoc 2.0a54.</small></td></tr>
</table>
</BODY>
</HTML>
|