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
|
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
/*============================================================
**
** Class: TimeZoneInfo
**
**
** Purpose:
** This class is used to represent a Dynamic TimeZone. It
** has methods for converting a DateTime between TimeZones,
** and for reading TimeZone data from the Windows Registry
**
**
============================================================*/
namespace System {
using Microsoft.Win32;
using Microsoft.Win32.SafeHandles;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Diagnostics;
using System.Diagnostics.Contracts;
using System.Globalization;
using System.IO;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using System.Runtime.Versioning;
using System.Security;
using System.Security.Permissions;
using System.Text;
using System.Threading;
//
// DateTime uses TimeZoneInfo under the hood for IsDaylightSavingTime, IsAmbiguousTime, and GetUtcOffset.
// These TimeZoneInfo APIs can throw ArgumentException when an Invalid-Time is passed in. To avoid this
// unwanted behavior in DateTime public APIs, DateTime internally passes the
// TimeZoneInfoOptions.NoThrowOnInvalidTime flag to internal TimeZoneInfo APIs.
//
// In the future we can consider exposing similar options on the public TimeZoneInfo APIs if there is enough
// demand for this alternate behavior.
//
[Flags]
internal enum TimeZoneInfoOptions {
None = 1,
NoThrowOnInvalidTime = 2
};
[Serializable]
[System.Security.Permissions.HostProtection(MayLeakOnAbort = true)]
#if MOBILE
[TypeForwardedFrom("System.Core, Version=2.0.5.0, Culture=Neutral, PublicKeyToken=7cec85d7bea7798e")]
#else
[TypeForwardedFrom("System.Core, Version=3.5.0.0, Culture=Neutral, PublicKeyToken=b77a5c561934e089")]
#endif
sealed public partial class TimeZoneInfo : IEquatable<TimeZoneInfo>, ISerializable, IDeserializationCallback {
#if !MONO
// ---- SECTION: members supporting exposed properties -------------*
private String m_id;
private String m_displayName;
private String m_standardDisplayName;
private String m_daylightDisplayName;
private TimeSpan m_baseUtcOffset;
private Boolean m_supportsDaylightSavingTime;
private AdjustmentRule[] m_adjustmentRules;
// ---- SECTION: members for internal support ---------*
private enum TimeZoneInfoResult {
Success = 0,
TimeZoneNotFoundException = 1,
InvalidTimeZoneException = 2,
SecurityException = 3
};
#if FEATURE_WIN32_REGISTRY
// registry constants for the 'Time Zones' hive
//
private const string c_timeZonesRegistryHive = @"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Time Zones";
private const string c_timeZonesRegistryHivePermissionList = @"HKEY_LOCAL_MACHINE\" + c_timeZonesRegistryHive;
private const string c_displayValue = "Display";
private const string c_daylightValue = "Dlt";
private const string c_standardValue = "Std";
private const string c_muiDisplayValue = "MUI_Display";
private const string c_muiDaylightValue = "MUI_Dlt";
private const string c_muiStandardValue = "MUI_Std";
private const string c_timeZoneInfoValue = "TZI";
private const string c_firstEntryValue = "FirstEntry";
private const string c_lastEntryValue = "LastEntry";
#endif // FEATURE_WIN32_REGISTRY
// constants for TimeZoneInfo.Local and TimeZoneInfo.Utc
private const string c_utcId = "UTC";
private const string c_localId = "Local";
private const int c_maxKeyLength = 255;
private const int c_regByteLength = 44;
// Number of 100ns ticks per time unit
private const long c_ticksPerMillisecond = 10000;
private const long c_ticksPerSecond = c_ticksPerMillisecond * 1000;
private const long c_ticksPerMinute = c_ticksPerSecond * 60;
private const long c_ticksPerHour = c_ticksPerMinute * 60;
private const long c_ticksPerDay = c_ticksPerHour * 24;
private const long c_ticksPerDayRange = c_ticksPerDay - c_ticksPerMillisecond;
//
// All cached data are encapsulated in a helper class to allow consistent view even when the data are refreshed using ClearCachedData()
//
// For example, TimeZoneInfo.Local can be cleared by another thread calling TimeZoneInfo.ClearCachedData. Without the consistent snapshot,
// there is a chance that the internal ConvertTime calls will throw since 'source' won't be reference equal to the new TimeZoneInfo.Local.
//
#pragma warning disable 0420
class CachedData
{
private volatile TimeZoneInfo m_localTimeZone;
private volatile TimeZoneInfo m_utcTimeZone;
private TimeZoneInfo CreateLocal()
{
lock (this)
{
TimeZoneInfo timeZone = m_localTimeZone;
if (timeZone == null) {
timeZone = TimeZoneInfo.GetLocalTimeZone(this);
// this step is to break the reference equality
// between TimeZoneInfo.Local and a second time zone
// such as "Pacific Standard Time"
timeZone = new TimeZoneInfo(
timeZone.m_id,
timeZone.m_baseUtcOffset,
timeZone.m_displayName,
timeZone.m_standardDisplayName,
timeZone.m_daylightDisplayName,
timeZone.m_adjustmentRules,
false);
m_localTimeZone = timeZone;
}
return timeZone;
}
}
public TimeZoneInfo Local {
get {
TimeZoneInfo timeZone = m_localTimeZone;
if (timeZone == null) {
timeZone = CreateLocal();
}
return timeZone;
}
}
private TimeZoneInfo CreateUtc()
{
lock (this)
{
TimeZoneInfo timeZone = m_utcTimeZone;
if (timeZone == null) {
timeZone = CreateCustomTimeZone(c_utcId, TimeSpan.Zero, c_utcId, c_utcId);
m_utcTimeZone = timeZone;
}
return timeZone;
}
}
public TimeZoneInfo Utc {
get {
Contract.Ensures(Contract.Result<TimeZoneInfo>() != null);
TimeZoneInfo timeZone = m_utcTimeZone;
if (timeZone == null) {
timeZone = CreateUtc();
}
return timeZone;
}
}
//
// GetCorrespondingKind-
//
// Helper function that returns the corresponding DateTimeKind for this TimeZoneInfo
//
public DateTimeKind GetCorrespondingKind(TimeZoneInfo timeZone) {
DateTimeKind kind;
//
// we check reference equality to see if 'this' is the same as
// TimeZoneInfo.Local or TimeZoneInfo.Utc. This check is needed to
// support setting the DateTime Kind property to 'Local' or
// 'Utc' on the ConverTime(...) return value.
//
// Using reference equality instead of value equality was a
// performance based design compromise. The reference equality
// has much greater performance, but it reduces the number of
// returned DateTime's that can be properly set as 'Local' or 'Utc'.
//
// For example, the user could be converting to the TimeZoneInfo returned
// by FindSystemTimeZoneById("Pacific Standard Time") and their local
// machine may be in Pacific time. If we used value equality to determine
// the corresponding Kind then this conversion would be tagged as 'Local';
// where as we are currently tagging the returned DateTime as 'Unspecified'
// in this example. Only when the user passes in TimeZoneInfo.Local or
// TimeZoneInfo.Utc to the ConvertTime(...) methods will this check succeed.
//
if ((object)timeZone == (object)m_utcTimeZone) {
kind = DateTimeKind.Utc;
}
else if ((object)timeZone == (object)m_localTimeZone) {
kind = DateTimeKind.Local;
}
else {
kind = DateTimeKind.Unspecified;
}
return kind;
}
#if FEATURE_WIN32_REGISTRY
public Dictionary<string, TimeZoneInfo> m_systemTimeZones;
public ReadOnlyCollection<TimeZoneInfo> m_readOnlySystemTimeZones;
public bool m_allSystemTimeZonesRead;
[System.Security.SecuritySafeCritical]
private static TimeZoneInfo GetCurrentOneYearLocal() {
// load the data from the OS
TimeZoneInfo match;
Win32Native.TimeZoneInformation timeZoneInformation = new Win32Native.TimeZoneInformation();
long result = UnsafeNativeMethods.GetTimeZoneInformation(out timeZoneInformation);
if (result == Win32Native.TIME_ZONE_ID_INVALID)
match = CreateCustomTimeZone(c_localId, TimeSpan.Zero, c_localId, c_localId);
else
match = GetLocalTimeZoneFromWin32Data(timeZoneInformation, false);
return match;
}
private volatile OffsetAndRule m_oneYearLocalFromUtc;
public OffsetAndRule GetOneYearLocalFromUtc(int year) {
OffsetAndRule oneYearLocFromUtc = m_oneYearLocalFromUtc;
if (oneYearLocFromUtc == null || oneYearLocFromUtc.year != year) {
TimeZoneInfo currentYear = GetCurrentOneYearLocal();
AdjustmentRule rule = currentYear.m_adjustmentRules == null ? null : currentYear.m_adjustmentRules[0];
oneYearLocFromUtc = new OffsetAndRule(year, currentYear.BaseUtcOffset, rule);
m_oneYearLocalFromUtc = oneYearLocFromUtc;
}
return oneYearLocFromUtc;
}
#endif // FEATURE_WIN32_REGISTRY
};
#pragma warning restore 0420
static CachedData s_cachedData = new CachedData();
private class OffsetAndRule {
public int year;
public TimeSpan offset;
public AdjustmentRule rule;
public OffsetAndRule(int year, TimeSpan offset, AdjustmentRule rule) {
this.year = year;
this.offset = offset;
this.rule = rule;
}
}
// used by GetUtcOffsetFromUtc (DateTime.Now, DateTime.ToLocalTime) for max/min whole-day range checks
private static DateTime s_maxDateOnly = new DateTime(9999, 12, 31);
private static DateTime s_minDateOnly = new DateTime(1, 1, 2);
// ---- SECTION: public properties --------------*
public String Id {
get {
return m_id;
}
}
public String DisplayName {
get {
return (m_displayName == null ? String.Empty : m_displayName);
}
}
public String StandardName {
get {
return (m_standardDisplayName == null ? String.Empty : m_standardDisplayName);
}
}
public String DaylightName {
get {
return (m_daylightDisplayName == null? String.Empty : m_daylightDisplayName);
}
}
public TimeSpan BaseUtcOffset {
get {
return m_baseUtcOffset;
}
}
public Boolean SupportsDaylightSavingTime {
get {
return m_supportsDaylightSavingTime;
}
}
// ---- SECTION: public methods --------------*
//
// GetAdjustmentRules -
//
// returns a cloned array of AdjustmentRule objects
//
public AdjustmentRule [] GetAdjustmentRules() {
if (m_adjustmentRules == null) {
return new AdjustmentRule[0];
}
else {
return (AdjustmentRule[])m_adjustmentRules.Clone();
}
}
//
// GetAmbiguousTimeOffsets -
//
// returns an array of TimeSpan objects representing all of
// possible UTC offset values for this ambiguous time
//
public TimeSpan[] GetAmbiguousTimeOffsets(DateTimeOffset dateTimeOffset) {
if (!SupportsDaylightSavingTime) {
throw new ArgumentException(Environment.GetResourceString("Argument_DateTimeOffsetIsNotAmbiguous"), "dateTimeOffset");
}
Contract.EndContractBlock();
DateTime adjustedTime = (TimeZoneInfo.ConvertTime(dateTimeOffset, this)).DateTime;
Boolean isAmbiguous = false;
AdjustmentRule rule = GetAdjustmentRuleForTime(adjustedTime);
if (rule != null && rule.HasDaylightSaving) {
DaylightTime daylightTime = GetDaylightTime(adjustedTime.Year, rule);
isAmbiguous = GetIsAmbiguousTime(adjustedTime, rule, daylightTime);
}
if (!isAmbiguous) {
throw new ArgumentException(Environment.GetResourceString("Argument_DateTimeOffsetIsNotAmbiguous"), "dateTimeOffset");
}
// the passed in dateTime is ambiguous in this TimeZoneInfo instance
TimeSpan[] timeSpans = new TimeSpan[2];
TimeSpan actualUtcOffset = m_baseUtcOffset + rule.BaseUtcOffsetDelta;
// the TimeSpan array must be sorted from least to greatest
if (rule.DaylightDelta > TimeSpan.Zero) {
timeSpans[0] = actualUtcOffset; // FUTURE: + rule.StandardDelta;
timeSpans[1] = actualUtcOffset + rule.DaylightDelta;
}
else {
timeSpans[0] = actualUtcOffset + rule.DaylightDelta;
timeSpans[1] = actualUtcOffset; // FUTURE: + rule.StandardDelta;
}
return timeSpans;
}
public TimeSpan[] GetAmbiguousTimeOffsets(DateTime dateTime) {
if (!SupportsDaylightSavingTime) {
throw new ArgumentException(Environment.GetResourceString("Argument_DateTimeIsNotAmbiguous"), "dateTime");
}
Contract.EndContractBlock();
DateTime adjustedTime;
if (dateTime.Kind == DateTimeKind.Local) {
CachedData cachedData = s_cachedData;
adjustedTime = TimeZoneInfo.ConvertTime(dateTime, cachedData.Local, this, TimeZoneInfoOptions.None, cachedData);
}
else if (dateTime.Kind == DateTimeKind.Utc) {
CachedData cachedData = s_cachedData;
adjustedTime = TimeZoneInfo.ConvertTime(dateTime, cachedData.Utc, this, TimeZoneInfoOptions.None, cachedData);
}
else {
adjustedTime = dateTime;
}
Boolean isAmbiguous = false;
AdjustmentRule rule = GetAdjustmentRuleForTime(adjustedTime);
if (rule != null && rule.HasDaylightSaving) {
DaylightTime daylightTime = GetDaylightTime(adjustedTime.Year, rule);
isAmbiguous = GetIsAmbiguousTime(adjustedTime, rule, daylightTime);
}
if (!isAmbiguous) {
throw new ArgumentException(Environment.GetResourceString("Argument_DateTimeIsNotAmbiguous"), "dateTime");
}
// the passed in dateTime is ambiguous in this TimeZoneInfo instance
TimeSpan[] timeSpans = new TimeSpan[2];
TimeSpan actualUtcOffset = m_baseUtcOffset + rule.BaseUtcOffsetDelta;
// the TimeSpan array must be sorted from least to greatest
if (rule.DaylightDelta > TimeSpan.Zero) {
timeSpans[0] = actualUtcOffset; // FUTURE: + rule.StandardDelta;
timeSpans[1] = actualUtcOffset + rule.DaylightDelta;
}
else {
timeSpans[0] = actualUtcOffset + rule.DaylightDelta;
timeSpans[1] = actualUtcOffset; // FUTURE: + rule.StandardDelta;
}
return timeSpans;
}
//
// GetUtcOffset -
//
// returns the Universal Coordinated Time (UTC) Offset
// for the current TimeZoneInfo instance.
//
public TimeSpan GetUtcOffset(DateTimeOffset dateTimeOffset) {
return GetUtcOffsetFromUtc(dateTimeOffset.UtcDateTime, this);
}
public TimeSpan GetUtcOffset(DateTime dateTime) {
return GetUtcOffset(dateTime, TimeZoneInfoOptions.NoThrowOnInvalidTime, s_cachedData);
}
// Shortcut for TimeZoneInfo.Local.GetUtcOffset
internal static TimeSpan GetLocalUtcOffset(DateTime dateTime, TimeZoneInfoOptions flags) {
CachedData cachedData = s_cachedData;
return cachedData.Local.GetUtcOffset(dateTime, flags, cachedData);
}
internal TimeSpan GetUtcOffset(DateTime dateTime, TimeZoneInfoOptions flags) {
return GetUtcOffset(dateTime, flags, s_cachedData);
}
private TimeSpan GetUtcOffset(DateTime dateTime, TimeZoneInfoOptions flags, CachedData cachedData) {
if (dateTime.Kind == DateTimeKind.Local) {
if (cachedData.GetCorrespondingKind(this) != DateTimeKind.Local) {
//
// normal case of converting from Local to Utc and then getting the offset from the UTC DateTime
//
DateTime adjustedTime = TimeZoneInfo.ConvertTime(dateTime, cachedData.Local, cachedData.Utc, flags);
return GetUtcOffsetFromUtc(adjustedTime, this);
}
//
// Fall through for TimeZoneInfo.Local.GetUtcOffset(date)
// to handle an edge case with Invalid-Times for DateTime formatting:
//
// Consider the invalid PST time "2007-03-11T02:00:00.0000000-08:00"
//
// By directly calling GetUtcOffset instead of converting to UTC and then calling GetUtcOffsetFromUtc
// the correct invalid offset of "-08:00" is returned. In the normal case of converting to UTC as an
// interim-step, the invalid time is adjusted into a *valid* UTC time which causes a change in output:
//
// 1) invalid PST time "2007-03-11T02:00:00.0000000-08:00"
// 2) converted to UTC "2007-03-11T10:00:00.0000000Z"
// 3) offset returned "2007-03-11T03:00:00.0000000-07:00"
//
}
else if (dateTime.Kind == DateTimeKind.Utc) {
if (cachedData.GetCorrespondingKind(this) == DateTimeKind.Utc) {
return m_baseUtcOffset;
}
else {
//
// passing in a UTC dateTime to a non-UTC TimeZoneInfo instance is a
// special Loss-Less case.
//
return GetUtcOffsetFromUtc(dateTime, this);
}
}
return GetUtcOffset(dateTime, this, flags);
}
//
// IsAmbiguousTime -
//
// returns true if the time is during the ambiguous time period
// for the current TimeZoneInfo instance.
//
public Boolean IsAmbiguousTime(DateTimeOffset dateTimeOffset) {
if (!m_supportsDaylightSavingTime) {
return false;
}
DateTimeOffset adjustedTime = TimeZoneInfo.ConvertTime(dateTimeOffset, this);
return IsAmbiguousTime(adjustedTime.DateTime);
}
public Boolean IsAmbiguousTime(DateTime dateTime) {
return IsAmbiguousTime(dateTime, TimeZoneInfoOptions.NoThrowOnInvalidTime);
}
internal Boolean IsAmbiguousTime(DateTime dateTime, TimeZoneInfoOptions flags) {
if (!m_supportsDaylightSavingTime) {
return false;
}
DateTime adjustedTime;
if (dateTime.Kind == DateTimeKind.Local) {
CachedData cachedData = s_cachedData;
adjustedTime = TimeZoneInfo.ConvertTime(dateTime, cachedData.Local, this, flags, cachedData);
}
else if (dateTime.Kind == DateTimeKind.Utc) {
CachedData cachedData = s_cachedData;
adjustedTime = TimeZoneInfo.ConvertTime(dateTime, cachedData.Utc, this, flags, cachedData);
}
else {
adjustedTime = dateTime;
}
AdjustmentRule rule = GetAdjustmentRuleForTime(adjustedTime);
if (rule != null && rule.HasDaylightSaving) {
DaylightTime daylightTime = GetDaylightTime(adjustedTime.Year, rule);
return GetIsAmbiguousTime(adjustedTime, rule, daylightTime);
}
return false;
}
//
// IsDaylightSavingTime -
//
// Returns true if the time is during Daylight Saving time
// for the current TimeZoneInfo instance.
//
public Boolean IsDaylightSavingTime(DateTimeOffset dateTimeOffset) {
Boolean isDaylightSavingTime;
GetUtcOffsetFromUtc(dateTimeOffset.UtcDateTime, this, out isDaylightSavingTime);
return isDaylightSavingTime;
}
public Boolean IsDaylightSavingTime(DateTime dateTime) {
return IsDaylightSavingTime(dateTime, TimeZoneInfoOptions.NoThrowOnInvalidTime, s_cachedData);
}
internal Boolean IsDaylightSavingTime(DateTime dateTime, TimeZoneInfoOptions flags) {
return IsDaylightSavingTime(dateTime, flags, s_cachedData);
}
private Boolean IsDaylightSavingTime(DateTime dateTime, TimeZoneInfoOptions flags, CachedData cachedData) {
//
// dateTime.Kind is UTC, then time will be converted from UTC
// into current instance's timezone
// dateTime.Kind is Local, then time will be converted from Local
// into current instance's timezone
// dateTime.Kind is UnSpecified, then time is already in
// current instance's timezone
//
// Our DateTime handles ambiguous times, (one is in the daylight and
// one is in standard.) If a new DateTime is constructed during ambiguous
// time, it is defaulted to "Standard" (i.e. this will return false).
// For Invalid times, we will return false
if (!m_supportsDaylightSavingTime || m_adjustmentRules == null) {
return false;
}
DateTime adjustedTime;
//
// handle any Local/Utc special cases...
//
if (dateTime.Kind == DateTimeKind.Local) {
adjustedTime = TimeZoneInfo.ConvertTime(dateTime, cachedData.Local, this, flags, cachedData);
}
else if (dateTime.Kind == DateTimeKind.Utc) {
if (cachedData.GetCorrespondingKind(this) == DateTimeKind.Utc) {
// simple always false case: TimeZoneInfo.Utc.IsDaylightSavingTime(dateTime, flags);
return false;
}
else {
//
// passing in a UTC dateTime to a non-UTC TimeZoneInfo instance is a
// special Loss-Less case.
//
Boolean isDaylightSavings;
GetUtcOffsetFromUtc(dateTime, this, out isDaylightSavings);
return isDaylightSavings;
}
}
else {
adjustedTime = dateTime;
}
//
// handle the normal cases...
//
AdjustmentRule rule = GetAdjustmentRuleForTime(adjustedTime);
if (rule != null && rule.HasDaylightSaving) {
DaylightTime daylightTime = GetDaylightTime(adjustedTime.Year, rule);
return GetIsDaylightSavings(adjustedTime, rule, daylightTime, flags);
}
else {
return false;
}
}
//
// IsInvalidTime -
//
// returns true when dateTime falls into a "hole in time".
//
public Boolean IsInvalidTime(DateTime dateTime) {
Boolean isInvalid = false;
if ( (dateTime.Kind == DateTimeKind.Unspecified)
|| (dateTime.Kind == DateTimeKind.Local && s_cachedData.GetCorrespondingKind(this) == DateTimeKind.Local) ) {
// only check Unspecified and (Local when this TimeZoneInfo instance is Local)
AdjustmentRule rule = GetAdjustmentRuleForTime(dateTime);
if (rule != null && rule.HasDaylightSaving) {
DaylightTime daylightTime = GetDaylightTime(dateTime.Year, rule);
isInvalid = GetIsInvalidTime(dateTime, rule, daylightTime);
}
else {
isInvalid = false;
}
}
return isInvalid;
}
//
// ClearCachedData -
//
// Clears data from static members
//
static public void ClearCachedData() {
// Clear a fresh instance of cached data
s_cachedData = new CachedData();
}
#if FEATURE_WIN32_REGISTRY
//
// ConvertTimeBySystemTimeZoneId -
//
// Converts the value of a DateTime object from sourceTimeZone to destinationTimeZone
//
static public DateTimeOffset ConvertTimeBySystemTimeZoneId(DateTimeOffset dateTimeOffset, String destinationTimeZoneId) {
return ConvertTime(dateTimeOffset, FindSystemTimeZoneById(destinationTimeZoneId));
}
#endif // FEATURE_WIN32_REGISTRY
#if FEATURE_WIN32_REGISTRY
static public DateTime ConvertTimeBySystemTimeZoneId(DateTime dateTime, String destinationTimeZoneId) {
return ConvertTime(dateTime, FindSystemTimeZoneById(destinationTimeZoneId));
}
#endif // FEATURE_WIN32_REGISTRY
#if FEATURE_WIN32_REGISTRY
static public DateTime ConvertTimeBySystemTimeZoneId(DateTime dateTime, String sourceTimeZoneId, String destinationTimeZoneId) {
if (dateTime.Kind == DateTimeKind.Local && String.Compare(sourceTimeZoneId, TimeZoneInfo.Local.Id, StringComparison.OrdinalIgnoreCase) == 0) {
// TimeZoneInfo.Local can be cleared by another thread calling TimeZoneInfo.ClearCachedData.
// Take snapshot of cached data to guarantee this method will not be impacted by the ClearCachedData call.
// Without the snapshot, there is a chance that ConvertTime will throw since 'source' won't
// be reference equal to the new TimeZoneInfo.Local
//
CachedData cachedData = s_cachedData;
return ConvertTime(dateTime, cachedData.Local, FindSystemTimeZoneById(destinationTimeZoneId), TimeZoneInfoOptions.None, cachedData);
}
else if (dateTime.Kind == DateTimeKind.Utc && String.Compare(sourceTimeZoneId, TimeZoneInfo.Utc.Id, StringComparison.OrdinalIgnoreCase) == 0) {
// TimeZoneInfo.Utc can be cleared by another thread calling TimeZoneInfo.ClearCachedData.
// Take snapshot of cached data to guarantee this method will not be impacted by the ClearCachedData call.
// Without the snapshot, there is a chance that ConvertTime will throw since 'source' won't
// be reference equal to the new TimeZoneInfo.Utc
//
CachedData cachedData = s_cachedData;
return ConvertTime(dateTime, cachedData.Utc, FindSystemTimeZoneById(destinationTimeZoneId), TimeZoneInfoOptions.None, cachedData);
}
else {
return ConvertTime(dateTime, FindSystemTimeZoneById(sourceTimeZoneId), FindSystemTimeZoneById(destinationTimeZoneId));
}
}
#endif // FEATURE_WIN32_REGISTRY
//
// ConvertTime -
//
// Converts the value of the dateTime object from sourceTimeZone to destinationTimeZone
//
static public DateTimeOffset ConvertTime(DateTimeOffset dateTimeOffset, TimeZoneInfo destinationTimeZone) {
if (destinationTimeZone == null) {
throw new ArgumentNullException("destinationTimeZone");
}
Contract.EndContractBlock();
// calculate the destination time zone offset
DateTime utcDateTime = dateTimeOffset.UtcDateTime;
TimeSpan destinationOffset = GetUtcOffsetFromUtc(utcDateTime, destinationTimeZone);
// check for overflow
Int64 ticks = utcDateTime.Ticks + destinationOffset.Ticks;
if (ticks > DateTimeOffset.MaxValue.Ticks) {
return DateTimeOffset.MaxValue;
}
else if (ticks < DateTimeOffset.MinValue.Ticks) {
return DateTimeOffset.MinValue;
}
else {
return new DateTimeOffset(ticks, destinationOffset);
}
}
static public DateTime ConvertTime(DateTime dateTime, TimeZoneInfo destinationTimeZone) {
if (destinationTimeZone == null) {
throw new ArgumentNullException("destinationTimeZone");
}
Contract.EndContractBlock();
// Special case to give a way clearing the cache without exposing ClearCachedData()
if (dateTime.Ticks == 0) {
ClearCachedData();
}
CachedData cachedData = s_cachedData;
if (dateTime.Kind == DateTimeKind.Utc) {
return ConvertTime(dateTime, cachedData.Utc, destinationTimeZone, TimeZoneInfoOptions.None, cachedData);
}
else {
return ConvertTime(dateTime, cachedData.Local, destinationTimeZone, TimeZoneInfoOptions.None, cachedData);
}
}
static public DateTime ConvertTime(DateTime dateTime, TimeZoneInfo sourceTimeZone, TimeZoneInfo destinationTimeZone) {
return ConvertTime(dateTime, sourceTimeZone, destinationTimeZone, TimeZoneInfoOptions.None, s_cachedData);
}
static internal DateTime ConvertTime(DateTime dateTime, TimeZoneInfo sourceTimeZone, TimeZoneInfo destinationTimeZone, TimeZoneInfoOptions flags) {
return ConvertTime(dateTime, sourceTimeZone, destinationTimeZone, flags, s_cachedData);
}
static private DateTime ConvertTime(DateTime dateTime, TimeZoneInfo sourceTimeZone, TimeZoneInfo destinationTimeZone, TimeZoneInfoOptions flags, CachedData cachedData) {
if (sourceTimeZone == null) {
throw new ArgumentNullException("sourceTimeZone");
}
if (destinationTimeZone == null) {
throw new ArgumentNullException("destinationTimeZone");
}
Contract.EndContractBlock();
DateTimeKind sourceKind = cachedData.GetCorrespondingKind(sourceTimeZone);
if ( ((flags & TimeZoneInfoOptions.NoThrowOnInvalidTime) == 0) && (dateTime.Kind != DateTimeKind.Unspecified) && (dateTime.Kind != sourceKind) ) {
throw new ArgumentException(Environment.GetResourceString("Argument_ConvertMismatch"), "sourceTimeZone");
}
//
// check to see if the DateTime is in an invalid time range. This check
// requires the current AdjustmentRule and DaylightTime - which are also
// needed to calculate 'sourceOffset' in the normal conversion case.
// By calculating the 'sourceOffset' here we improve the
// performance for the normal case at the expense of the 'ArgumentException'
// case and Loss-less Local special cases.
//
AdjustmentRule sourceRule = sourceTimeZone.GetAdjustmentRuleForTime(dateTime);
TimeSpan sourceOffset = sourceTimeZone.BaseUtcOffset;
if (sourceRule != null) {
sourceOffset = sourceOffset + sourceRule.BaseUtcOffsetDelta;
if (sourceRule.HasDaylightSaving) {
Boolean sourceIsDaylightSavings = false;
DaylightTime sourceDaylightTime = GetDaylightTime(dateTime.Year, sourceRule);
// 'dateTime' might be in an invalid time range since it is in an AdjustmentRule
// period that supports DST
if (((flags & TimeZoneInfoOptions.NoThrowOnInvalidTime) == 0) && GetIsInvalidTime(dateTime, sourceRule, sourceDaylightTime)) {
throw new ArgumentException(Environment.GetResourceString("Argument_DateTimeIsInvalid"), "dateTime");
}
sourceIsDaylightSavings = GetIsDaylightSavings(dateTime, sourceRule, sourceDaylightTime, flags);
// adjust the sourceOffset according to the Adjustment Rule / Daylight Saving Rule
sourceOffset += (sourceIsDaylightSavings ? sourceRule.DaylightDelta : TimeSpan.Zero /*FUTURE: sourceRule.StandardDelta*/);
}
}
DateTimeKind targetKind = cachedData.GetCorrespondingKind(destinationTimeZone);
// handle the special case of Loss-less Local->Local and UTC->UTC)
if (dateTime.Kind != DateTimeKind.Unspecified && sourceKind != DateTimeKind.Unspecified
&& sourceKind == targetKind) {
return dateTime;
}
Int64 utcTicks = dateTime.Ticks - sourceOffset.Ticks;
// handle the normal case by converting from 'source' to UTC and then to 'target'
Boolean isAmbiguousLocalDst = false;
DateTime targetConverted = ConvertUtcToTimeZone(utcTicks, destinationTimeZone, out isAmbiguousLocalDst);
if (targetKind == DateTimeKind.Local) {
// Because the ticks conversion between UTC and local is lossy, we need to capture whether the
// time is in a repeated hour so that it can be passed to the DateTime constructor.
return new DateTime(targetConverted.Ticks, DateTimeKind.Local, isAmbiguousLocalDst);
}
else {
return new DateTime(targetConverted.Ticks, targetKind);
}
}
//
// ConvertTimeFromUtc -
//
// Converts the value of a DateTime object from Coordinated Universal Time (UTC) to
// the destinationTimeZone.
//
static public DateTime ConvertTimeFromUtc(DateTime dateTime, TimeZoneInfo destinationTimeZone) {
CachedData cachedData = s_cachedData;
return ConvertTime(dateTime, cachedData.Utc, destinationTimeZone, TimeZoneInfoOptions.None, cachedData);
}
//
// ConvertTimeToUtc -
//
// Converts the value of a DateTime object to Coordinated Universal Time (UTC).
//
static public DateTime ConvertTimeToUtc(DateTime dateTime) {
if (dateTime.Kind == DateTimeKind.Utc) {
return dateTime;
}
CachedData cachedData = s_cachedData;
return ConvertTime(dateTime, cachedData.Local, cachedData.Utc, TimeZoneInfoOptions.None, cachedData);
}
static internal DateTime ConvertTimeToUtc(DateTime dateTime, TimeZoneInfoOptions flags) {
if (dateTime.Kind == DateTimeKind.Utc) {
return dateTime;
}
CachedData cachedData = s_cachedData;
return ConvertTime(dateTime, cachedData.Local, cachedData.Utc, flags, cachedData);
}
static public DateTime ConvertTimeToUtc(DateTime dateTime, TimeZoneInfo sourceTimeZone) {
CachedData cachedData = s_cachedData;
return ConvertTime(dateTime, sourceTimeZone, cachedData.Utc, TimeZoneInfoOptions.None, cachedData);
}
//
// IEquatable.Equals -
//
// returns value equality. Equals does not compare any localizable
// String objects (DisplayName, StandardName, DaylightName).
//
public bool Equals(TimeZoneInfo other) {
return (other != null && String.Compare(this.m_id, other.m_id, StringComparison.OrdinalIgnoreCase) == 0 && HasSameRules(other));
}
public override bool Equals(object obj) {
TimeZoneInfo tzi = obj as TimeZoneInfo;
if (null == tzi) {
return false;
}
return Equals(tzi);
}
//
// FromSerializedString -
//
static public TimeZoneInfo FromSerializedString(string source) {
if (source == null) {
throw new ArgumentNullException("source");
}
if (source.Length == 0) {
throw new ArgumentException(Environment.GetResourceString("Argument_InvalidSerializedString", source), "source");
}
Contract.EndContractBlock();
return StringSerializer.GetDeserializedTimeZoneInfo(source);
}
//
// GetHashCode -
//
public override int GetHashCode() {
return m_id.ToUpper(CultureInfo.InvariantCulture).GetHashCode();
}
#if FEATURE_WIN32_REGISTRY
//
// GetSystemTimeZones -
//
// returns a ReadOnlyCollection<TimeZoneInfo> containing all valid TimeZone's
// from the local machine. The entries in the collection are sorted by
// 'DisplayName'.
//
// This method does *not* throw TimeZoneNotFoundException or
// InvalidTimeZoneException.
//
// <SecurityKernel Critical="True" Ring="0">
// <Asserts Name="Imperative: System.Security.PermissionSet" />
// </SecurityKernel>
[System.Security.SecuritySafeCritical] // auto-generated
[ResourceExposure(ResourceScope.None)]
static public ReadOnlyCollection<TimeZoneInfo> GetSystemTimeZones() {
CachedData cachedData = s_cachedData;
lock (cachedData) {
if (cachedData.m_readOnlySystemTimeZones == null) {
PermissionSet permSet = new PermissionSet(PermissionState.None);
permSet.AddPermission(new RegistryPermission(RegistryPermissionAccess.Read, c_timeZonesRegistryHivePermissionList));
permSet.Assert();
using (RegistryKey reg = Registry.LocalMachine.OpenSubKey(
c_timeZonesRegistryHive,
#if FEATURE_MACL
RegistryKeyPermissionCheck.Default,
System.Security.AccessControl.RegistryRights.ReadKey
#else
false
#endif
)) {
if (reg != null) {
foreach (string keyName in reg.GetSubKeyNames()) {
TimeZoneInfo value;
Exception ex;
TryGetTimeZone(keyName, false, out value, out ex, cachedData); // populate the cache
}
}
cachedData.m_allSystemTimeZonesRead = true;
}
List<TimeZoneInfo> list;
if (cachedData.m_systemTimeZones != null) {
// return a collection of the cached system time zones
list = new List<TimeZoneInfo>(cachedData.m_systemTimeZones.Values);
}
else {
// return an empty collection
list = new List<TimeZoneInfo>();
}
// sort and copy the TimeZoneInfo's into a ReadOnlyCollection for the user
list.Sort(new TimeZoneInfoComparer());
cachedData.m_readOnlySystemTimeZones = new ReadOnlyCollection<TimeZoneInfo>(list);
}
}
return cachedData.m_readOnlySystemTimeZones;
}
#endif // FEATURE_WIN32_REGISTRY
//
// HasSameRules -
//
// Value equality on the "adjustmentRules" array
//
public Boolean HasSameRules(TimeZoneInfo other) {
if (other == null) {
throw new ArgumentNullException("other");
}
// check the utcOffset and supportsDaylightSavingTime members
Contract.EndContractBlock();
if (this.m_baseUtcOffset != other.m_baseUtcOffset
|| this.m_supportsDaylightSavingTime != other.m_supportsDaylightSavingTime) {
return false;
}
bool sameRules;
AdjustmentRule[] currentRules = this.m_adjustmentRules;
AdjustmentRule[] otherRules = other.m_adjustmentRules;
sameRules = (currentRules == null && otherRules == null)
||(currentRules != null && otherRules != null);
if (!sameRules) {
// AdjustmentRule array mismatch
return false;
}
if (currentRules != null) {
if (currentRules.Length != otherRules.Length) {
// AdjustmentRule array length mismatch
return false;
}
for(int i = 0; i < currentRules.Length; i++) {
if (!(currentRules[i]).Equals(otherRules[i])) {
// AdjustmentRule value-equality mismatch
return false;
}
}
}
return sameRules;
}
//
// Local -
//
// returns a TimeZoneInfo instance that represents the local time on the machine.
// Accessing this property may throw InvalidTimeZoneException or COMException
// if the machine is in an unstable or corrupt state.
//
static public TimeZoneInfo Local {
get {
Contract.Ensures(Contract.Result<TimeZoneInfo>() != null);
return s_cachedData.Local;
}
}
//
// ToSerializedString -
//
// "TimeZoneInfo" := TimeZoneInfo Data;[AdjustmentRule Data 1];...;[AdjustmentRule Data N]
//
// "TimeZoneInfo Data" := <m_id>;<m_baseUtcOffset>;<m_displayName>;
// <m_standardDisplayName>;<m_daylightDispayName>;
//
// "AdjustmentRule Data" := <DateStart>;<DateEnd>;<DaylightDelta>;
// [TransitionTime Data DST Start]
// [TransitionTime Data DST End]
//
// "TransitionTime Data" += <DaylightStartTimeOfDat>;<Month>;<Week>;<DayOfWeek>;<Day>
//
public String ToSerializedString() {
return StringSerializer.GetSerializedString(this);
}
//
// ToString -
//
// returns the DisplayName:
// "(GMT-08:00) Pacific Time (US & Canada); Tijuana"
//
public override string ToString() {
return this.DisplayName;
}
//
// Utc -
//
// returns a TimeZoneInfo instance that represents Universal Coordinated Time (UTC)
//
static public TimeZoneInfo Utc {
get {
Contract.Ensures(Contract.Result<TimeZoneInfo>() != null);
return s_cachedData.Utc;
}
}
// -------- SECTION: constructors -----------------*
//
// TimeZoneInfo -
//
// private ctor
//
[System.Security.SecurityCritical] // auto-generated
private TimeZoneInfo(Win32Native.TimeZoneInformation zone, Boolean dstDisabled) {
if (String.IsNullOrEmpty(zone.StandardName)) {
m_id = c_localId; // the ID must contain at least 1 character - initialize m_id to "Local"
}
else {
m_id = zone.StandardName;
}
m_baseUtcOffset = new TimeSpan(0, -(zone.Bias), 0);
if (!dstDisabled) {
// only create the adjustment rule if DST is enabled
Win32Native.RegistryTimeZoneInformation regZone = new Win32Native.RegistryTimeZoneInformation(zone);
AdjustmentRule rule = CreateAdjustmentRuleFromTimeZoneInformation(regZone, DateTime.MinValue.Date, DateTime.MaxValue.Date, zone.Bias);
if (rule != null) {
m_adjustmentRules = new AdjustmentRule[1];
m_adjustmentRules[0] = rule;
}
}
ValidateTimeZoneInfo(m_id, m_baseUtcOffset, m_adjustmentRules, out m_supportsDaylightSavingTime);
m_displayName = zone.StandardName;
m_standardDisplayName = zone.StandardName;
m_daylightDisplayName = zone.DaylightName;
}
private TimeZoneInfo(
String id,
TimeSpan baseUtcOffset,
String displayName,
String standardDisplayName,
String daylightDisplayName,
AdjustmentRule [] adjustmentRules,
Boolean disableDaylightSavingTime) {
Boolean adjustmentRulesSupportDst;
ValidateTimeZoneInfo(id, baseUtcOffset, adjustmentRules, out adjustmentRulesSupportDst);
if (!disableDaylightSavingTime && adjustmentRules != null && adjustmentRules.Length > 0) {
m_adjustmentRules = (AdjustmentRule[])adjustmentRules.Clone();
}
m_id = id;
m_baseUtcOffset = baseUtcOffset;
m_displayName = displayName;
m_standardDisplayName = standardDisplayName;
m_daylightDisplayName = (disableDaylightSavingTime ? null : daylightDisplayName);
m_supportsDaylightSavingTime = adjustmentRulesSupportDst && !disableDaylightSavingTime;
}
// -------- SECTION: factory methods -----------------*
//
// CreateCustomTimeZone -
//
// returns a simple TimeZoneInfo instance that does
// not support Daylight Saving Time
//
static public TimeZoneInfo CreateCustomTimeZone(
String id,
TimeSpan baseUtcOffset,
String displayName,
String standardDisplayName) {
return new TimeZoneInfo(
id,
baseUtcOffset,
displayName,
standardDisplayName,
standardDisplayName,
null,
false);
}
//
// CreateCustomTimeZone -
//
// returns a TimeZoneInfo instance that may
// support Daylight Saving Time
//
static public TimeZoneInfo CreateCustomTimeZone(
String id,
TimeSpan baseUtcOffset,
String displayName,
String standardDisplayName,
String daylightDisplayName,
AdjustmentRule [] adjustmentRules) {
return new TimeZoneInfo(
id,
baseUtcOffset,
displayName,
standardDisplayName,
daylightDisplayName,
adjustmentRules,
false);
}
//
// CreateCustomTimeZone -
//
// returns a TimeZoneInfo instance that may
// support Daylight Saving Time
//
// This class factory method is identical to the
// TimeZoneInfo private constructor
//
static public TimeZoneInfo CreateCustomTimeZone(
String id,
TimeSpan baseUtcOffset,
String displayName,
String standardDisplayName,
String daylightDisplayName,
AdjustmentRule [] adjustmentRules,
Boolean disableDaylightSavingTime) {
return new TimeZoneInfo(
id,
baseUtcOffset,
displayName,
standardDisplayName,
daylightDisplayName,
adjustmentRules,
disableDaylightSavingTime);
}
// ----- SECTION: private serialization instance methods ----------------*
#if FEATURE_SERIALIZATION
void IDeserializationCallback.OnDeserialization(Object sender) {
try {
Boolean adjustmentRulesSupportDst;
ValidateTimeZoneInfo(m_id, m_baseUtcOffset, m_adjustmentRules, out adjustmentRulesSupportDst);
if (adjustmentRulesSupportDst != m_supportsDaylightSavingTime) {
throw new SerializationException(Environment.GetResourceString("Serialization_CorruptField", "SupportsDaylightSavingTime"));
}
}
catch (ArgumentException e) {
throw new SerializationException(Environment.GetResourceString("Serialization_InvalidData"), e);
}
catch (InvalidTimeZoneException e) {
throw new SerializationException(Environment.GetResourceString("Serialization_InvalidData"), e);
}
}
[System.Security.SecurityCritical] // auto-generated_required
void ISerializable.GetObjectData(SerializationInfo info, StreamingContext context) {
if (info == null) {
throw new ArgumentNullException("info");
}
Contract.EndContractBlock();
info.AddValue("Id", m_id);
info.AddValue("DisplayName", m_displayName);
info.AddValue("StandardName", m_standardDisplayName);
info.AddValue("DaylightName", m_daylightDisplayName);
info.AddValue("BaseUtcOffset", m_baseUtcOffset);
info.AddValue("AdjustmentRules", m_adjustmentRules);
info.AddValue("SupportsDaylightSavingTime", m_supportsDaylightSavingTime);
}
TimeZoneInfo(SerializationInfo info, StreamingContext context) {
if (info == null) {
throw new ArgumentNullException("info");
}
m_id = (String)info.GetValue("Id", typeof(String));
m_displayName = (String)info.GetValue("DisplayName", typeof(String));
m_standardDisplayName = (String)info.GetValue("StandardName", typeof(String));
m_daylightDisplayName = (String)info.GetValue("DaylightName", typeof(String));
m_baseUtcOffset = (TimeSpan)info.GetValue("BaseUtcOffset", typeof(TimeSpan));
m_adjustmentRules = (AdjustmentRule[])info.GetValue("AdjustmentRules", typeof(AdjustmentRule[]));
m_supportsDaylightSavingTime = (Boolean)info.GetValue("SupportsDaylightSavingTime", typeof(Boolean));
}
#endif
// ----- SECTION: internal instance utility methods ----------------*
// assumes dateTime is in the current time zone's time
private AdjustmentRule GetAdjustmentRuleForTime(DateTime dateTime) {
if (m_adjustmentRules == null || m_adjustmentRules.Length == 0) {
return null;
}
// Only check the whole-date portion of the dateTime -
// This is because the AdjustmentRule DateStart & DateEnd are stored as
// Date-only values {4/2/2006 - 10/28/2006} but actually represent the
// time span {4/2/2006@00:00:00.00000 - 10/28/2006@23:59:59.99999}
DateTime date = dateTime.Date;
for (int i = 0; i < m_adjustmentRules.Length; i++) {
if (m_adjustmentRules[i].DateStart <= date && m_adjustmentRules[i].DateEnd >= date) {
return m_adjustmentRules[i];
}
}
return null;
}
// ----- SECTION: internal static utility methods ----------------*
//
// CheckDaylightSavingTimeNotSupported -
//
// Helper function to check if the current TimeZoneInformation struct does not support DST. This
// check returns true when the DaylightDate == StandardDate
//
// This check is only meant to be used for "Local".
//
[System.Security.SecurityCritical] // auto-generated
static private Boolean CheckDaylightSavingTimeNotSupported(Win32Native.TimeZoneInformation timeZone) {
return ( timeZone.DaylightDate.Year == timeZone.StandardDate.Year
&& timeZone.DaylightDate.Month == timeZone.StandardDate.Month
&& timeZone.DaylightDate.DayOfWeek == timeZone.StandardDate.DayOfWeek
&& timeZone.DaylightDate.Day == timeZone.StandardDate.Day
&& timeZone.DaylightDate.Hour == timeZone.StandardDate.Hour
&& timeZone.DaylightDate.Minute == timeZone.StandardDate.Minute
&& timeZone.DaylightDate.Second == timeZone.StandardDate.Second
&& timeZone.DaylightDate.Milliseconds == timeZone.StandardDate.Milliseconds);
}
//
// ConvertUtcToTimeZone -
//
// Helper function that converts a dateTime from UTC into the destinationTimeZone
//
// * returns DateTime.MaxValue when the converted value is too large
// * returns DateTime.MinValue when the converted value is too small
//
static private DateTime ConvertUtcToTimeZone(Int64 ticks, TimeZoneInfo destinationTimeZone, out Boolean isAmbiguousLocalDst) {
DateTime utcConverted;
DateTime localConverted;
// utcConverted is used to calculate the UTC offset in the destinationTimeZone
if (ticks > DateTime.MaxValue.Ticks) {
utcConverted = DateTime.MaxValue;
}
else if (ticks < DateTime.MinValue.Ticks) {
utcConverted = DateTime.MinValue;
}
else {
utcConverted = new DateTime(ticks);
}
// verify the time is between MinValue and MaxValue in the new time zone
TimeSpan offset = GetUtcOffsetFromUtc(utcConverted, destinationTimeZone, out isAmbiguousLocalDst);
ticks += offset.Ticks;
if (ticks > DateTime.MaxValue.Ticks) {
localConverted = DateTime.MaxValue;
}
else if (ticks < DateTime.MinValue.Ticks) {
localConverted = DateTime.MinValue;
}
else {
localConverted = new DateTime(ticks);
}
return localConverted;
}
//
// CreateAdjustmentRuleFromTimeZoneInformation-
//
// Converts a Win32Native.RegistryTimeZoneInformation (REG_TZI_FORMAT struct) to an AdjustmentRule
//
[System.Security.SecurityCritical] // auto-generated
static private AdjustmentRule CreateAdjustmentRuleFromTimeZoneInformation(Win32Native.RegistryTimeZoneInformation timeZoneInformation, DateTime startDate, DateTime endDate, int defaultBaseUtcOffset) {
AdjustmentRule rule;
bool supportsDst = (timeZoneInformation.StandardDate.Month != 0);
if (!supportsDst) {
if (timeZoneInformation.Bias == defaultBaseUtcOffset)
{
// this rule will not contain any information to be used to adjust dates. just ignore it
return null;
}
return rule = AdjustmentRule.CreateAdjustmentRule(
startDate,
endDate,
TimeSpan.Zero, // no daylight saving transition
TransitionTime.CreateFixedDateRule(DateTime.MinValue, 1, 1),
TransitionTime.CreateFixedDateRule(DateTime.MinValue.AddMilliseconds(1), 1, 1),
new TimeSpan(0, defaultBaseUtcOffset - timeZoneInformation.Bias, 0)); // Bias delta is all what we need from this rule
}
//
// Create an AdjustmentRule with TransitionTime objects
//
TransitionTime daylightTransitionStart;
if (!TransitionTimeFromTimeZoneInformation(timeZoneInformation, out daylightTransitionStart, true /* start date */)) {
return null;
}
TransitionTime daylightTransitionEnd;
if (!TransitionTimeFromTimeZoneInformation(timeZoneInformation, out daylightTransitionEnd, false /* end date */)) {
return null;
}
if (daylightTransitionStart.Equals(daylightTransitionEnd)) {
// this happens when the time zone does support DST but the OS has DST disabled
return null;
}
rule = AdjustmentRule.CreateAdjustmentRule(
startDate,
endDate,
new TimeSpan(0, -timeZoneInformation.DaylightBias, 0),
(TransitionTime)daylightTransitionStart,
(TransitionTime)daylightTransitionEnd,
new TimeSpan(0, defaultBaseUtcOffset - timeZoneInformation.Bias, 0));
return rule;
}
#if FEATURE_WIN32_REGISTRY
//
// FindIdFromTimeZoneInformation -
//
// Helper function that searches the registry for a time zone entry
// that matches the TimeZoneInformation struct
//
[System.Security.SecuritySafeCritical] // auto-generated
[ResourceExposure(ResourceScope.None)]
static private String FindIdFromTimeZoneInformation(Win32Native.TimeZoneInformation timeZone, out Boolean dstDisabled) {
dstDisabled = false;
try {
PermissionSet permSet = new PermissionSet(PermissionState.None);
permSet.AddPermission(new RegistryPermission(RegistryPermissionAccess.Read, c_timeZonesRegistryHivePermissionList));
permSet.Assert();
using (RegistryKey key = Registry.LocalMachine.OpenSubKey(
c_timeZonesRegistryHive,
#if FEATURE_MACL
RegistryKeyPermissionCheck.Default,
System.Security.AccessControl.RegistryRights.ReadKey
#else
false
#endif
)) {
if (key == null) {
return null;
}
foreach (string keyName in key.GetSubKeyNames()) {
if (TryCompareTimeZoneInformationToRegistry(timeZone, keyName, out dstDisabled)) {
return keyName;
}
}
}
}
finally {
PermissionSet.RevertAssert();
}
return null;
}
#endif // FEATURE_WIN32_REGISTRY
//
// GetDaylightTime -
//
// Helper function that returns a DaylightTime from a year and AdjustmentRule
//
static private DaylightTime GetDaylightTime(Int32 year, AdjustmentRule rule) {
TimeSpan delta = rule.DaylightDelta;
DateTime startTime = TransitionTimeToDateTime(year, rule.DaylightTransitionStart);
DateTime endTime = TransitionTimeToDateTime(year, rule.DaylightTransitionEnd);
return new DaylightTime(startTime, endTime, delta);
}
//
// GetIsDaylightSavings -
//
// Helper function that checks if a given dateTime is in Daylight Saving Time (DST)
// This function assumes the dateTime and AdjustmentRule are both in the same time zone
//
static private Boolean GetIsDaylightSavings(DateTime time, AdjustmentRule rule, DaylightTime daylightTime, TimeZoneInfoOptions flags) {
if (rule == null) {
return false;
}
DateTime startTime;
DateTime endTime;
if (time.Kind == DateTimeKind.Local) {
// startTime and endTime represent the period from either the start of DST to the end and ***includes*** the
// potentially overlapped times
startTime = rule.IsStartDateMarkerForBeginningOfYear() ? new DateTime(daylightTime.Start.Year, 1, 1, 0, 0, 0) : daylightTime.Start + daylightTime.Delta;
endTime = rule.IsEndDateMarkerForEndOfYear() ? new DateTime(daylightTime.End.Year + 1, 1, 1, 0, 0, 0).AddTicks(-1) : daylightTime.End;
}
else {
// startTime and endTime represent the period from either the start of DST to the end and
// ***does not include*** the potentially overlapped times
//
// -=-=-=-=-=- Pacific Standard Time -=-=-=-=-=-=-
// April 2, 2006 October 29, 2006
// 2AM 3AM 1AM 2AM
// | +1 hr | | -1 hr |
// | <invalid time> | | <ambiguous time> |
// [========== DST ========>)
//
// -=-=-=-=-=- Some Weird Time Zone -=-=-=-=-=-=-
// April 2, 2006 October 29, 2006
// 1AM 2AM 2AM 3AM
// | -1 hr | | +1 hr |
// | <ambiguous time> | | <invalid time> |
// [======== DST ========>)
//
Boolean invalidAtStart = rule.DaylightDelta > TimeSpan.Zero;
startTime = rule.IsStartDateMarkerForBeginningOfYear() ? new DateTime(daylightTime.Start.Year, 1, 1, 0, 0, 0) : daylightTime.Start + (invalidAtStart ? rule.DaylightDelta : TimeSpan.Zero); /* FUTURE: - rule.StandardDelta; */
endTime = rule.IsEndDateMarkerForEndOfYear() ? new DateTime(daylightTime.End.Year + 1, 1, 1, 0, 0, 0).AddTicks(-1) : daylightTime.End + (invalidAtStart ? -rule.DaylightDelta : TimeSpan.Zero);
}
Boolean isDst = CheckIsDst(startTime, time, endTime, false);
// If this date was previously converted from a UTC date and we were able to detect that the local
// DateTime would be ambiguous, this data is stored in the DateTime to resolve this ambiguity.
if (isDst && time.Kind == DateTimeKind.Local) {
// For normal time zones, the ambiguous hour is the last hour of daylight saving when you wind the
// clock back. It is theoretically possible to have a positive delta, (which would really be daylight
// reduction time), where you would have to wind the clock back in the begnning.
if (GetIsAmbiguousTime(time, rule, daylightTime)) {
isDst = time.IsAmbiguousDaylightSavingTime();
}
}
return isDst;
}
//
// GetIsDaylightSavingsFromUtc -
//
// Helper function that checks if a given dateTime is in Daylight Saving Time (DST)
// This function assumes the dateTime is in UTC and AdjustmentRule is in a different time zone
//
static private Boolean GetIsDaylightSavingsFromUtc(DateTime time, Int32 Year, TimeSpan utc, AdjustmentRule rule, out Boolean isAmbiguousLocalDst, TimeZoneInfo zone) {
isAmbiguousLocalDst = false;
if (rule == null) {
return false;
}
// Get the daylight changes for the year of the specified time.
TimeSpan offset = utc + rule.BaseUtcOffsetDelta; /* FUTURE: + rule.StandardDelta; */
DaylightTime daylightTime = GetDaylightTime(Year, rule);
// The start and end times represent the range of universal times that are in DST for that year.
// Within that there is an ambiguous hour, usually right at the end, but at the beginning in
// the unusual case of a negative daylight savings delta.
// We need to handle the case if the current rule has daylight saving end by the end of year. If so, we need to check if next year starts with daylight saving on
// and get the actual daylight saving end time. Here is example for such case:
// Converting the UTC datetime "12/31/2011 8:00:00 PM" to "(UTC+03:00) Moscow, St. Petersburg, Volgograd (RTZ 2)" zone.
// In 2011 the daylight saving will go through the end of the year. If we use the end of 2011 as the daylight saving end,
// that will fail the conversion because the UTC time +4 hours (3 hours for the zone UTC offset and 1 hour for daylight saving) will move us to the next year "1/1/2012 12:00 AM",
// checking against the end of 2011 will tell we are not in daylight saving which is wrong and the conversion will be off by one hour.
// Note we handle the similar case when rule year start with daylight saving and previous year end with daylight saving.
bool ignoreYearAdjustment = false;
DateTime startTime;
if (rule.IsStartDateMarkerForBeginningOfYear() && daylightTime.Start.Year > DateTime.MinValue.Year) {
AdjustmentRule previousYearRule = zone.GetAdjustmentRuleForTime(new DateTime(daylightTime.Start.Year - 1, 12, 31));
if (previousYearRule != null && previousYearRule.IsEndDateMarkerForEndOfYear()) {
DaylightTime previousDaylightTime = GetDaylightTime(daylightTime.Start.Year - 1, previousYearRule);
startTime = previousDaylightTime.Start - utc - previousYearRule.BaseUtcOffsetDelta;
ignoreYearAdjustment = true;
} else {
startTime = new DateTime(daylightTime.Start.Year, 1, 1, 0, 0, 0) - offset;
}
} else {
startTime = daylightTime.Start - offset;
}
DateTime endTime;
if (rule.IsEndDateMarkerForEndOfYear() && daylightTime.End.Year < DateTime.MaxValue.Year) {
AdjustmentRule nextYearRule = zone.GetAdjustmentRuleForTime(new DateTime(daylightTime.End.Year + 1, 1, 1));
if (nextYearRule != null && nextYearRule.IsStartDateMarkerForBeginningOfYear()) {
if (nextYearRule.IsEndDateMarkerForEndOfYear()) {// next year end with daylight saving on too
endTime = new DateTime(daylightTime.End.Year + 1, 12, 31) - utc - nextYearRule.BaseUtcOffsetDelta - nextYearRule.DaylightDelta;
} else {
DaylightTime nextdaylightTime = GetDaylightTime(daylightTime.End.Year + 1, nextYearRule);
endTime = nextdaylightTime.End - utc - nextYearRule.BaseUtcOffsetDelta - nextYearRule.DaylightDelta;
}
ignoreYearAdjustment = true;
} else {
endTime = new DateTime(daylightTime.End.Year + 1, 1, 1, 0, 0, 0).AddTicks(-1) - offset - rule.DaylightDelta; ;
}
} else {
endTime = daylightTime.End - offset - rule.DaylightDelta;
}
DateTime ambiguousStart;
DateTime ambiguousEnd;
if (daylightTime.Delta.Ticks > 0) {
ambiguousStart = endTime - daylightTime.Delta;
ambiguousEnd = endTime;
} else {
ambiguousStart = startTime;
ambiguousEnd = startTime - daylightTime.Delta;
}
Boolean isDst = CheckIsDst(startTime, time, endTime, ignoreYearAdjustment);
// See if the resulting local time becomes ambiguous. This must be captured here or the
// DateTime will not be able to round-trip back to UTC accurately.
if (isDst) {
isAmbiguousLocalDst = (time >= ambiguousStart && time < ambiguousEnd);
if (!isAmbiguousLocalDst && ambiguousStart.Year != ambiguousEnd.Year) {
// there exists an extreme corner case where the start or end period is on a year boundary and
// because of this the comparison above might have been performed for a year-early or a year-later
// than it should have been.
DateTime ambiguousStartModified;
DateTime ambiguousEndModified;
try {
ambiguousStartModified = ambiguousStart.AddYears(1);
ambiguousEndModified = ambiguousEnd.AddYears(1);
isAmbiguousLocalDst = (time >= ambiguousStart && time < ambiguousEnd);
}
catch (ArgumentOutOfRangeException) {}
if (!isAmbiguousLocalDst) {
try {
ambiguousStartModified = ambiguousStart.AddYears(-1);
ambiguousEndModified = ambiguousEnd.AddYears(-1);
isAmbiguousLocalDst = (time >= ambiguousStart && time < ambiguousEnd);
}
catch (ArgumentOutOfRangeException) {}
}
}
}
return isDst;
}
static private Boolean CheckIsDst(DateTime startTime, DateTime time, DateTime endTime,bool ignoreYearAdjustment) {
Boolean isDst;
if (!ignoreYearAdjustment) {
int startTimeYear = startTime.Year;
int endTimeYear = endTime.Year;
if (startTimeYear != endTimeYear) {
endTime = endTime.AddYears(startTimeYear - endTimeYear);
}
int timeYear = time.Year;
if (startTimeYear != timeYear) {
time = time.AddYears(startTimeYear - timeYear);
}
}
if (startTime > endTime) {
// In southern hemisphere, the daylight saving time starts later in the year, and ends in the beginning of next year.
// Note, the summer in the southern hemisphere begins late in the year.
isDst = (time < endTime || time >= startTime);
}
else {
// In northern hemisphere, the daylight saving time starts in the middle of the year.
isDst = (time >= startTime && time < endTime);
}
return isDst;
}
//
// GetIsAmbiguousTime(DateTime dateTime, AdjustmentRule rule, DaylightTime daylightTime) -
//
// returns true when the dateTime falls into an ambiguous time range.
// For example, in Pacific Standard Time on Sunday, October 29, 2006 time jumps from
// 2AM to 1AM. This means the timeline on Sunday proceeds as follows:
// 12AM ... [1AM ... 1:59:59AM -> 1AM ... 1:59:59AM] 2AM ... 3AM ...
//
// In this example, any DateTime values that fall into the [1AM - 1:59:59AM] range
// are ambiguous; as it is unclear if these times are in Daylight Saving Time.
//
static private Boolean GetIsAmbiguousTime(DateTime time, AdjustmentRule rule, DaylightTime daylightTime) {
Boolean isAmbiguous = false;
if (rule == null || rule.DaylightDelta == TimeSpan.Zero) {
return isAmbiguous;
}
DateTime startAmbiguousTime;
DateTime endAmbiguousTime;
// if at DST start we transition forward in time then there is an ambiguous time range at the DST end
if (rule.DaylightDelta > TimeSpan.Zero) {
if (rule.IsEndDateMarkerForEndOfYear()) { // year end with daylight on so there is no ambiguous time
return false;
}
startAmbiguousTime = daylightTime.End;
endAmbiguousTime = daylightTime.End - rule.DaylightDelta; /* FUTURE: + rule.StandardDelta; */
}
else {
if (rule.IsStartDateMarkerForBeginningOfYear()) { // year start with daylight on so there is no ambiguous time
return false;
}
startAmbiguousTime = daylightTime.Start;
endAmbiguousTime = daylightTime.Start + rule.DaylightDelta; /* FUTURE: - rule.StandardDelta; */
}
isAmbiguous = (time >= endAmbiguousTime && time < startAmbiguousTime);
if (!isAmbiguous && startAmbiguousTime.Year != endAmbiguousTime.Year) {
// there exists an extreme corner case where the start or end period is on a year boundary and
// because of this the comparison above might have been performed for a year-early or a year-later
// than it should have been.
DateTime startModifiedAmbiguousTime;
DateTime endModifiedAmbiguousTime;
try {
startModifiedAmbiguousTime = startAmbiguousTime.AddYears(1);
endModifiedAmbiguousTime = endAmbiguousTime.AddYears(1);
isAmbiguous = (time >= endModifiedAmbiguousTime && time < startModifiedAmbiguousTime);
}
catch (ArgumentOutOfRangeException) {}
if (!isAmbiguous) {
try {
startModifiedAmbiguousTime = startAmbiguousTime.AddYears(-1);
endModifiedAmbiguousTime = endAmbiguousTime.AddYears(-1);
isAmbiguous = (time >= endModifiedAmbiguousTime && time < startModifiedAmbiguousTime);
}
catch (ArgumentOutOfRangeException) {}
}
}
return isAmbiguous;
}
//
// GetIsInvalidTime -
//
// Helper function that checks if a given DateTime is in an invalid time ("time hole")
// A "time hole" occurs at a DST transition point when time jumps forward;
// For example, in Pacific Standard Time on Sunday, April 2, 2006 time jumps from
// 1:59:59.9999999 to 3AM. The time range 2AM to 2:59:59.9999999AM is the "time hole".
// A "time hole" is not limited to only occurring at the start of DST, and may occur at
// the end of DST as well.
//
static private Boolean GetIsInvalidTime(DateTime time, AdjustmentRule rule, DaylightTime daylightTime) {
Boolean isInvalid = false;
if (rule == null || rule.DaylightDelta == TimeSpan.Zero) {
return isInvalid;
}
DateTime startInvalidTime;
DateTime endInvalidTime;
// if at DST start we transition forward in time then there is an ambiguous time range at the DST end
if (rule.DaylightDelta < TimeSpan.Zero) {
// if the year ends with daylight saving on then there cannot be any time-hole's in that year.
if (rule.IsEndDateMarkerForEndOfYear())
return false;
startInvalidTime = daylightTime.End;
endInvalidTime = daylightTime.End - rule.DaylightDelta; /* FUTURE: + rule.StandardDelta; */
}
else {
// if the year starts with daylight saving on then there cannot be any time-hole's in that year.
if (rule.IsStartDateMarkerForBeginningOfYear())
return false;
startInvalidTime = daylightTime.Start;
endInvalidTime = daylightTime.Start + rule.DaylightDelta; /* FUTURE: - rule.StandardDelta; */
}
isInvalid = (time >= startInvalidTime && time < endInvalidTime);
if (!isInvalid && startInvalidTime.Year != endInvalidTime.Year) {
// there exists an extreme corner case where the start or end period is on a year boundary and
// because of this the comparison above might have been performed for a year-early or a year-later
// than it should have been.
DateTime startModifiedInvalidTime;
DateTime endModifiedInvalidTime;
try {
startModifiedInvalidTime = startInvalidTime.AddYears(1);
endModifiedInvalidTime = endInvalidTime.AddYears(1);
isInvalid = (time >= startModifiedInvalidTime && time < endModifiedInvalidTime);
}
catch (ArgumentOutOfRangeException) {}
if (!isInvalid) {
try {
startModifiedInvalidTime = startInvalidTime.AddYears(-1);
endModifiedInvalidTime = endInvalidTime.AddYears(-1);
isInvalid = (time >= startModifiedInvalidTime && time < endModifiedInvalidTime);
}
catch (ArgumentOutOfRangeException) {}
}
}
return isInvalid;
}
//
// GetLocalTimeZone -
//
// Helper function for retrieving the local system time zone.
//
// returns a new TimeZoneInfo instance
//
// may throw COMException, TimeZoneNotFoundException, InvalidTimeZoneException
//
// assumes cachedData lock is taken
//
[System.Security.SecuritySafeCritical] // auto-generated
static private TimeZoneInfo GetLocalTimeZone(CachedData cachedData) {
#if FEATURE_WIN32_REGISTRY
String id = null;
//
// Try using the "kernel32!GetDynamicTimeZoneInformation" API to get the "id"
//
Win32Native.DynamicTimeZoneInformation dynamicTimeZoneInformation =
new Win32Native.DynamicTimeZoneInformation();
// call kernel32!GetDynamicTimeZoneInformation...
long result = UnsafeNativeMethods.GetDynamicTimeZoneInformation(out dynamicTimeZoneInformation);
if (result == Win32Native.TIME_ZONE_ID_INVALID) {
// return a dummy entry
return CreateCustomTimeZone(c_localId, TimeSpan.Zero, c_localId, c_localId);
}
Win32Native.TimeZoneInformation timeZoneInformation =
new Win32Native.TimeZoneInformation(dynamicTimeZoneInformation);
Boolean dstDisabled = dynamicTimeZoneInformation.DynamicDaylightTimeDisabled;
// check to see if we can use the key name returned from the API call
if (!String.IsNullOrEmpty(dynamicTimeZoneInformation.TimeZoneKeyName)) {
TimeZoneInfo zone;
Exception ex;
if (TryGetTimeZone(dynamicTimeZoneInformation.TimeZoneKeyName, dstDisabled, out zone, out ex, cachedData) == TimeZoneInfoResult.Success) {
// successfully loaded the time zone from the registry
return zone;
}
}
// the key name was not returned or it pointed to a bogus entry - search for the entry ourselves
id = FindIdFromTimeZoneInformation(timeZoneInformation, out dstDisabled);
if (id != null) {
TimeZoneInfo zone;
Exception ex;
if (TryGetTimeZone(id, dstDisabled, out zone, out ex, cachedData) == TimeZoneInfoResult.Success) {
// successfully loaded the time zone from the registry
return zone;
}
}
// We could not find the data in the registry. Fall back to using
// the data from the Win32 API
return GetLocalTimeZoneFromWin32Data(timeZoneInformation, dstDisabled);
#else // FEATURE_WIN32_REGISTRY
// Without Registry support, just create a dummy TZ for now
return GetLocalTimeZoneFromTzFile();
#endif // FEATURE_WIN32_REGISTRY
}
#if !FEATURE_WIN32_REGISTRY
//
// GetLocalTimeZoneFromTzFile -
//
// Helper function used by 'GetLocalTimeZone()' - this function wraps the call
// for loading time zone data from computers without Registry support.
//
// The GetLocalTzFile() call returns a Byte[] containing the compiled tzfile.
//
[System.Security.SecurityCritical]
static private TimeZoneInfo GetLocalTimeZoneFromTzFile() {
Byte[] rawData = GetLocalTzFile();
if (rawData != null) {
try {
return new TimeZoneInfo(rawData, false); // create a TimeZoneInfo instance from the TZif data w/ DST support
}
catch (ArgumentException) {}
catch (InvalidTimeZoneException) {}
try {
return new TimeZoneInfo(rawData, true); // create a TimeZoneInfo instance from the TZif data w/o DST support
}
catch (ArgumentException) {}
catch (InvalidTimeZoneException) {}
}
// the data returned from the PAL is completely bogus; return a dummy entry
return CreateCustomTimeZone(c_localId, TimeSpan.Zero, c_localId, c_localId);
}
#endif // !FEATURE_WIN32_REGISTRY
//
// GetLocalTimeZoneFromWin32Data -
//
// Helper function used by 'GetLocalTimeZone()' - this function wraps a bunch of
// try/catch logic for handling the TimeZoneInfo private constructor that takes
// a Win32Native.TimeZoneInformation structure.
//
[System.Security.SecurityCritical] // auto-generated
static private TimeZoneInfo GetLocalTimeZoneFromWin32Data(Win32Native.TimeZoneInformation timeZoneInformation, Boolean dstDisabled) {
// first try to create the TimeZoneInfo with the original 'dstDisabled' flag
try {
return new TimeZoneInfo(timeZoneInformation, dstDisabled);
}
catch (ArgumentException) {}
catch (InvalidTimeZoneException) {}
// if 'dstDisabled' was false then try passing in 'true' as a last ditch effort
if (!dstDisabled) {
try {
return new TimeZoneInfo(timeZoneInformation, true);
}
catch (ArgumentException) {}
catch (InvalidTimeZoneException) {}
}
// the data returned from Windows is completely bogus; return a dummy entry
return CreateCustomTimeZone(c_localId, TimeSpan.Zero, c_localId, c_localId);
}
#if FEATURE_WIN32_REGISTRY
//
// FindSystemTimeZoneById -
//
// Helper function for retrieving a TimeZoneInfo object by <time_zone_name>.
// This function wraps the logic necessary to keep the private
// SystemTimeZones cache in working order
//
// This function will either return a valid TimeZoneInfo instance or
// it will throw 'InvalidTimeZoneException' / 'TimeZoneNotFoundException'.
//
static public TimeZoneInfo FindSystemTimeZoneById(string id) {
// Special case for Utc as it will not exist in the dictionary with the rest
// of the system time zones. There is no need to do this check for Local.Id
// since Local is a real time zone that exists in the dictionary cache
if (String.Compare(id, c_utcId, StringComparison.OrdinalIgnoreCase) == 0) {
return TimeZoneInfo.Utc;
}
if (id == null) {
throw new ArgumentNullException("id");
}
else if (id.Length == 0 || id.Length > c_maxKeyLength || id.Contains("\0")) {
throw new TimeZoneNotFoundException(Environment.GetResourceString("TimeZoneNotFound_MissingRegistryData", id));
}
TimeZoneInfo value;
Exception e;
TimeZoneInfoResult result;
CachedData cachedData = s_cachedData;
lock (cachedData) {
result = TryGetTimeZone(id, false, out value, out e, cachedData);
}
if (result == TimeZoneInfoResult.Success) {
return value;
}
else if (result == TimeZoneInfoResult.InvalidTimeZoneException) {
throw new InvalidTimeZoneException(Environment.GetResourceString("InvalidTimeZone_InvalidRegistryData", id), e);
}
else if (result == TimeZoneInfoResult.SecurityException) {
throw new SecurityException(Environment.GetResourceString("Security_CannotReadRegistryData", id), e);
}
else {
throw new TimeZoneNotFoundException(Environment.GetResourceString("TimeZoneNotFound_MissingRegistryData", id), e);
}
}
#endif // FEATURE_WIN32_REGISTRY
//
// GetUtcOffset -
//
// Helper function that calculates the UTC offset for a dateTime in a timeZone.
// This function assumes that the dateTime is already converted into the timeZone.
//
static private TimeSpan GetUtcOffset(DateTime time, TimeZoneInfo zone, TimeZoneInfoOptions flags) {
TimeSpan baseOffset = zone.BaseUtcOffset;
AdjustmentRule rule = zone.GetAdjustmentRuleForTime(time);
if (rule != null) {
baseOffset = baseOffset + rule.BaseUtcOffsetDelta;
if (rule.HasDaylightSaving) {
DaylightTime daylightTime = GetDaylightTime(time.Year, rule);
Boolean isDaylightSavings = GetIsDaylightSavings(time, rule, daylightTime, flags);
baseOffset += (isDaylightSavings ? rule.DaylightDelta : TimeSpan.Zero /* FUTURE: rule.StandardDelta */);
}
}
return baseOffset;
}
//
// GetUtcOffsetFromUtc -
//
// Helper function that calculates the UTC offset for a UTC-dateTime in a timeZone.
// This function assumes that the dateTime is represented in UTC and has *not*
// already been converted into the timeZone.
//
static private TimeSpan GetUtcOffsetFromUtc(DateTime time, TimeZoneInfo zone) {
Boolean isDaylightSavings;
return GetUtcOffsetFromUtc(time, zone, out isDaylightSavings);
}
static private TimeSpan GetUtcOffsetFromUtc(DateTime time, TimeZoneInfo zone, out Boolean isDaylightSavings) {
Boolean isAmbiguousLocalDst;
return GetUtcOffsetFromUtc(time, zone, out isDaylightSavings, out isAmbiguousLocalDst);
}
// DateTime.Now fast path that avoids allocating an historically accurate TimeZoneInfo.Local and just creates a 1-year (current year) accurate time zone
static internal TimeSpan GetDateTimeNowUtcOffsetFromUtc(DateTime time, out Boolean isAmbiguousLocalDst) {
Boolean isDaylightSavings = false;
#if FEATURE_WIN32_REGISTRY
isAmbiguousLocalDst = false;
TimeSpan baseOffset;
int timeYear = time.Year;
OffsetAndRule match = s_cachedData.GetOneYearLocalFromUtc(timeYear);
baseOffset = match.offset;
if (match.rule != null) {
baseOffset = baseOffset + match.rule.BaseUtcOffsetDelta;
if (match.rule.HasDaylightSaving) {
isDaylightSavings = GetIsDaylightSavingsFromUtc(time, timeYear, match.offset, match.rule, out isAmbiguousLocalDst, TimeZoneInfo.Local);
baseOffset += (isDaylightSavings ? match.rule.DaylightDelta : TimeSpan.Zero /* FUTURE: rule.StandardDelta */);
}
}
return baseOffset;
#else
// Use the standard code path for the Macintosh since there isn't a faster way of handling current-year-only time zones
return GetUtcOffsetFromUtc(time, TimeZoneInfo.Local, out isDaylightSavings, out isAmbiguousLocalDst);
#endif // FEATURE_WIN32_REGISTRY
}
static internal TimeSpan GetUtcOffsetFromUtc(DateTime time, TimeZoneInfo zone, out Boolean isDaylightSavings, out Boolean isAmbiguousLocalDst) {
isDaylightSavings = false;
isAmbiguousLocalDst = false;
TimeSpan baseOffset = zone.BaseUtcOffset;
Int32 year;
AdjustmentRule rule;
if (time > s_maxDateOnly) {
rule = zone.GetAdjustmentRuleForTime(DateTime.MaxValue);
year = 9999;
}
else if (time < s_minDateOnly) {
rule = zone.GetAdjustmentRuleForTime(DateTime.MinValue);
year = 1;
}
else {
DateTime targetTime = time + baseOffset;
// As we get the associated rule using the adjusted targetTime, we should use the adjusted year (targetTime.Year) too as after adding the baseOffset,
// sometimes the year value can change if the input datetime was very close to the beginning or the end of the year. Examples of such cases:
// “Libya Standard Time” when used with the date 2011-12-31T23:59:59.9999999Z
// "W. Australia Standard Time" used with date 2005-12-31T23:59:00.0000000Z
year = targetTime.Year;
rule = zone.GetAdjustmentRuleForTime(targetTime);
}
if (rule != null) {
baseOffset = baseOffset + rule.BaseUtcOffsetDelta;
if (rule.HasDaylightSaving) {
isDaylightSavings = GetIsDaylightSavingsFromUtc(time, year, zone.m_baseUtcOffset, rule, out isAmbiguousLocalDst, zone);
baseOffset += (isDaylightSavings ? rule.DaylightDelta : TimeSpan.Zero /* FUTURE: rule.StandardDelta */);
}
}
return baseOffset;
}
//
// TransitionTimeFromTimeZoneInformation -
//
// Converts a Win32Native.RegistryTimeZoneInformation (REG_TZI_FORMAT struct) to a TransitionTime
//
// * when the argument 'readStart' is true the corresponding daylightTransitionTimeStart field is read
// * when the argument 'readStart' is false the corresponding dayightTransitionTimeEnd field is read
//
[System.Security.SecurityCritical] // auto-generated
static private bool TransitionTimeFromTimeZoneInformation(Win32Native.RegistryTimeZoneInformation timeZoneInformation, out TransitionTime transitionTime, bool readStartDate) {
//
// SYSTEMTIME -
//
// If the time zone does not support daylight saving time or if the caller needs
// to disable daylight saving time, the wMonth member in the SYSTEMTIME structure
// must be zero. If this date is specified, the DaylightDate value in the
// TIME_ZONE_INFORMATION structure must also be specified. Otherwise, the system
// assumes the time zone data is invalid and no changes will be applied.
//
bool supportsDst = (timeZoneInformation.StandardDate.Month != 0);
if (!supportsDst) {
transitionTime = default(TransitionTime);
return false;
}
//
// SYSTEMTIME -
//
// * FixedDateRule -
// If the Year member is not zero, the transition date is absolute; it will only occur one time
//
// * FloatingDateRule -
// To select the correct day in the month, set the Year member to zero, the Hour and Minute
// members to the transition time, the DayOfWeek member to the appropriate weekday, and the
// Day member to indicate the occurence of the day of the week within the month (first through fifth).
//
// Using this notation, specify the 2:00a.m. on the first Sunday in April as follows:
// Hour = 2,
// Month = 4,
// DayOfWeek = 0,
// Day = 1.
//
// Specify 2:00a.m. on the last Thursday in October as follows:
// Hour = 2,
// Month = 10,
// DayOfWeek = 4,
// Day = 5.
//
if (readStartDate) {
//
// read the "daylightTransitionStart"
//
if (timeZoneInformation.DaylightDate.Year == 0) {
transitionTime = TransitionTime.CreateFloatingDateRule(
new DateTime(1, /* year */
1, /* month */
1, /* day */
timeZoneInformation.DaylightDate.Hour,
timeZoneInformation.DaylightDate.Minute,
timeZoneInformation.DaylightDate.Second,
timeZoneInformation.DaylightDate.Milliseconds),
timeZoneInformation.DaylightDate.Month,
timeZoneInformation.DaylightDate.Day, /* Week 1-5 */
(DayOfWeek) timeZoneInformation.DaylightDate.DayOfWeek);
}
else {
transitionTime = TransitionTime.CreateFixedDateRule(
new DateTime(1, /* year */
1, /* month */
1, /* day */
timeZoneInformation.DaylightDate.Hour,
timeZoneInformation.DaylightDate.Minute,
timeZoneInformation.DaylightDate.Second,
timeZoneInformation.DaylightDate.Milliseconds),
timeZoneInformation.DaylightDate.Month,
timeZoneInformation.DaylightDate.Day);
}
}
else {
//
// read the "daylightTransitionEnd"
//
if (timeZoneInformation.StandardDate.Year == 0) {
transitionTime = TransitionTime.CreateFloatingDateRule(
new DateTime(1, /* year */
1, /* month */
1, /* day */
timeZoneInformation.StandardDate.Hour,
timeZoneInformation.StandardDate.Minute,
timeZoneInformation.StandardDate.Second,
timeZoneInformation.StandardDate.Milliseconds),
timeZoneInformation.StandardDate.Month,
timeZoneInformation.StandardDate.Day, /* Week 1-5 */
(DayOfWeek) timeZoneInformation.StandardDate.DayOfWeek);
}
else {
transitionTime = TransitionTime.CreateFixedDateRule(
new DateTime(1, /* year */
1, /* month */
1, /* day */
timeZoneInformation.StandardDate.Hour,
timeZoneInformation.StandardDate.Minute,
timeZoneInformation.StandardDate.Second,
timeZoneInformation.StandardDate.Milliseconds),
timeZoneInformation.StandardDate.Month,
timeZoneInformation.StandardDate.Day);
}
}
return true;
}
//
// TransitionTimeToDateTime -
//
// Helper function that converts a year and TransitionTime into a DateTime
//
static private DateTime TransitionTimeToDateTime(Int32 year, TransitionTime transitionTime) {
DateTime value;
DateTime timeOfDay = transitionTime.TimeOfDay;
if (transitionTime.IsFixedDateRule) {
// create a DateTime from the passed in year and the properties on the transitionTime
// if the day is out of range for the month then use the last day of the month
Int32 day = DateTime.DaysInMonth(year, transitionTime.Month);
value = new DateTime(year, transitionTime.Month, (day < transitionTime.Day) ? day : transitionTime.Day,
timeOfDay.Hour, timeOfDay.Minute, timeOfDay.Second, timeOfDay.Millisecond);
}
else {
if (transitionTime.Week <= 4) {
//
// Get the (transitionTime.Week)th Sunday.
//
value = new DateTime(year, transitionTime.Month, 1,
timeOfDay.Hour, timeOfDay.Minute, timeOfDay.Second, timeOfDay.Millisecond);
int dayOfWeek = (int)value.DayOfWeek;
int delta = (int)transitionTime.DayOfWeek - dayOfWeek;
if (delta < 0) {
delta += 7;
}
delta += 7 * (transitionTime.Week - 1);
if (delta > 0) {
value = value.AddDays(delta);
}
}
else {
//
// If TransitionWeek is greater than 4, we will get the last week.
//
Int32 daysInMonth = DateTime.DaysInMonth(year, transitionTime.Month);
value = new DateTime(year, transitionTime.Month, daysInMonth,
timeOfDay.Hour, timeOfDay.Minute, timeOfDay.Second, timeOfDay.Millisecond);
// This is the day of week for the last day of the month.
int dayOfWeek = (int)value.DayOfWeek;
int delta = dayOfWeek - (int)transitionTime.DayOfWeek;
if (delta < 0) {
delta += 7;
}
if (delta > 0) {
value = value.AddDays(-delta);
}
}
}
return value;
}
#if FEATURE_WIN32_REGISTRY
//
// TryCreateAdjustmentRules -
//
// Helper function that takes
// 1. a string representing a <time_zone_name> registry key name
// 2. a RegistryTimeZoneInformation struct containing the default rule
// 3. an AdjustmentRule[] out-parameter
//
// returns
// TimeZoneInfoResult.InvalidTimeZoneException,
// TimeZoneInfoResult.TimeZoneNotFoundException,
// TimeZoneInfoResult.Success
//
// Optional, Dynamic Time Zone Registry Data
// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
//
// HKLM
// Software
// Microsoft
// Windows NT
// CurrentVersion
// Time Zones
// <time_zone_name>
// Dynamic DST
// * "FirstEntry" REG_DWORD "1980"
// First year in the table. If the current year is less than this value,
// this entry will be used for DST boundaries
// * "LastEntry" REG_DWORD "2038"
// Last year in the table. If the current year is greater than this value,
// this entry will be used for DST boundaries"
// * "<year1>" REG_BINARY REG_TZI_FORMAT
// See Win32Native.RegistryTimeZoneInformation
// * "<year2>" REG_BINARY REG_TZI_FORMAT
// See Win32Native.RegistryTimeZoneInformation
// * "<year3>" REG_BINARY REG_TZI_FORMAT
// See Win32Native.RegistryTimeZoneInformation
//
// This method expects that its caller has already Asserted RegistryPermission.Read
//
[System.Security.SecurityCritical] // auto-generated
[ResourceExposure(ResourceScope.None)]
static private bool TryCreateAdjustmentRules(string id, Win32Native.RegistryTimeZoneInformation defaultTimeZoneInformation, out AdjustmentRule[] rules, out Exception e, int defaultBaseUtcOffset) {
e = null;
try {
using (RegistryKey dynamicKey = Registry.LocalMachine.OpenSubKey(
String.Format(CultureInfo.InvariantCulture, "{0}\\{1}\\Dynamic DST",
c_timeZonesRegistryHive, id),
#if FEATURE_MACL
RegistryKeyPermissionCheck.Default,
System.Security.AccessControl.RegistryRights.ReadKey
#else
false
#endif
)) {
if (dynamicKey == null) {
AdjustmentRule rule = CreateAdjustmentRuleFromTimeZoneInformation(
defaultTimeZoneInformation, DateTime.MinValue.Date, DateTime.MaxValue.Date, defaultBaseUtcOffset);
if (rule == null) {
rules = null;
}
else {
rules = new AdjustmentRule[1];
rules[0] = rule;
}
return true;
}
//
// loop over all of the "<time_zone_name>\Dynamic DST" hive entries
//
// read FirstEntry {MinValue - (year1, 12, 31)}
// read MiddleEntry {(yearN, 1, 1) - (yearN, 12, 31)}
// read LastEntry {(yearN, 1, 1) - MaxValue }
// read the FirstEntry and LastEntry key values (ex: "1980", "2038")
Int32 first = (Int32)dynamicKey.GetValue(c_firstEntryValue, -1, RegistryValueOptions.None);
Int32 last = (Int32)dynamicKey.GetValue(c_lastEntryValue, -1, RegistryValueOptions.None);
if (first == -1 || last == -1 || first > last) {
rules = null;
return false;
}
// read the first year entry
Win32Native.RegistryTimeZoneInformation dtzi;
Byte[] regValue = dynamicKey.GetValue(first.ToString(CultureInfo.InvariantCulture), null, RegistryValueOptions.None) as Byte[];
if (regValue == null || regValue.Length != c_regByteLength) {
rules = null;
return false;
}
dtzi = new Win32Native.RegistryTimeZoneInformation(regValue);
if (first == last) {
// there is just 1 dynamic rule for this time zone.
AdjustmentRule rule = CreateAdjustmentRuleFromTimeZoneInformation(dtzi, DateTime.MinValue.Date, DateTime.MaxValue.Date, defaultBaseUtcOffset);
if (rule == null) {
rules = null;
}
else {
rules = new AdjustmentRule[1];
rules[0] = rule;
}
return true;
}
List<AdjustmentRule> rulesList = new List<AdjustmentRule>(1);
// there are more than 1 dynamic rules for this time zone.
AdjustmentRule firstRule = CreateAdjustmentRuleFromTimeZoneInformation(
dtzi,
DateTime.MinValue.Date, // MinValue
new DateTime(first, 12, 31), // December 31, <FirstYear>
defaultBaseUtcOffset);
if (firstRule != null) {
rulesList.Add(firstRule);
}
// read the middle year entries
for (Int32 i = first + 1; i < last; i++) {
regValue = dynamicKey.GetValue(i.ToString(CultureInfo.InvariantCulture), null, RegistryValueOptions.None) as Byte[];
if (regValue == null || regValue.Length != c_regByteLength) {
rules = null;
return false;
}
dtzi = new Win32Native.RegistryTimeZoneInformation(regValue);
AdjustmentRule middleRule = CreateAdjustmentRuleFromTimeZoneInformation(
dtzi,
new DateTime(i, 1, 1), // January 01, <Year>
new DateTime(i, 12, 31), // December 31, <Year>
defaultBaseUtcOffset);
if (middleRule != null) {
rulesList.Add(middleRule);
}
}
// read the last year entry
regValue = dynamicKey.GetValue(last.ToString(CultureInfo.InvariantCulture), null, RegistryValueOptions.None) as Byte[];
dtzi = new Win32Native.RegistryTimeZoneInformation(regValue);
if (regValue == null || regValue.Length != c_regByteLength) {
rules = null;
return false;
}
AdjustmentRule lastRule = CreateAdjustmentRuleFromTimeZoneInformation(
dtzi,
new DateTime(last, 1, 1), // January 01, <LastYear>
DateTime.MaxValue.Date, // MaxValue
defaultBaseUtcOffset);
if (lastRule != null) {
rulesList.Add(lastRule);
}
// convert the ArrayList to an AdjustmentRule array
rules = rulesList.ToArray();
if (rules != null && rules.Length == 0) {
rules = null;
}
} // end of: using (RegistryKey dynamicKey...
}
catch (InvalidCastException ex) {
// one of the RegistryKey.GetValue calls could not be cast to an expected value type
rules = null;
e = ex;
return false;
}
catch (ArgumentOutOfRangeException ex) {
rules = null;
e = ex;
return false;
}
catch (ArgumentException ex) {
rules = null;
e = ex;
return false;
}
return true;
}
#endif // FEATURE_WIN32_REGISTRY
#if FEATURE_WIN32_REGISTRY
//
// TryCompareStandardDate -
//
// Helper function that compares the StandardBias and StandardDate portion a
// TimeZoneInformation struct to a time zone registry entry
//
[System.Security.SecurityCritical] // auto-generated
static private Boolean TryCompareStandardDate(Win32Native.TimeZoneInformation timeZone, Win32Native.RegistryTimeZoneInformation registryTimeZoneInfo) {
return timeZone.Bias == registryTimeZoneInfo.Bias
&& timeZone.StandardBias == registryTimeZoneInfo.StandardBias
&& timeZone.StandardDate.Year == registryTimeZoneInfo.StandardDate.Year
&& timeZone.StandardDate.Month == registryTimeZoneInfo.StandardDate.Month
&& timeZone.StandardDate.DayOfWeek == registryTimeZoneInfo.StandardDate.DayOfWeek
&& timeZone.StandardDate.Day == registryTimeZoneInfo.StandardDate.Day
&& timeZone.StandardDate.Hour == registryTimeZoneInfo.StandardDate.Hour
&& timeZone.StandardDate.Minute == registryTimeZoneInfo.StandardDate.Minute
&& timeZone.StandardDate.Second == registryTimeZoneInfo.StandardDate.Second
&& timeZone.StandardDate.Milliseconds == registryTimeZoneInfo.StandardDate.Milliseconds;
}
#endif // FEATURE_WIN32_REGISTRY
#if FEATURE_WIN32_REGISTRY
//
// TryCompareTimeZoneInformationToRegistry -
//
// Helper function that compares a TimeZoneInformation struct to a time zone registry entry
//
[System.Security.SecuritySafeCritical] // auto-generated
[ResourceExposure(ResourceScope.None)]
static private Boolean TryCompareTimeZoneInformationToRegistry(Win32Native.TimeZoneInformation timeZone, string id, out Boolean dstDisabled) {
dstDisabled = false;
try {
PermissionSet permSet = new PermissionSet(PermissionState.None);
permSet.AddPermission(new RegistryPermission(RegistryPermissionAccess.Read, c_timeZonesRegistryHivePermissionList));
permSet.Assert();
using (RegistryKey key = Registry.LocalMachine.OpenSubKey(
String.Format(CultureInfo.InvariantCulture, "{0}\\{1}",
c_timeZonesRegistryHive, id),
#if FEATURE_MACL
RegistryKeyPermissionCheck.Default,
System.Security.AccessControl.RegistryRights.ReadKey
#else
false
#endif
)) {
if (key == null) {
return false;
}
Win32Native.RegistryTimeZoneInformation registryTimeZoneInfo;
Byte[] regValue = (Byte[])key.GetValue(c_timeZoneInfoValue, null, RegistryValueOptions.None) as Byte[];
if (regValue == null || regValue.Length != c_regByteLength) return false;
registryTimeZoneInfo = new Win32Native.RegistryTimeZoneInformation(regValue);
//
// first compare the bias and standard date information between the data from the Win32 API
// and the data from the registry...
//
Boolean result = TryCompareStandardDate(timeZone, registryTimeZoneInfo);
if (!result) {
return false;
}
result = dstDisabled || CheckDaylightSavingTimeNotSupported(timeZone)
//
// since Daylight Saving Time is not "disabled", do a straight comparision between
// the Win32 API data and the registry data ...
//
||( timeZone.DaylightBias == registryTimeZoneInfo.DaylightBias
&& timeZone.DaylightDate.Year == registryTimeZoneInfo.DaylightDate.Year
&& timeZone.DaylightDate.Month == registryTimeZoneInfo.DaylightDate.Month
&& timeZone.DaylightDate.DayOfWeek == registryTimeZoneInfo.DaylightDate.DayOfWeek
&& timeZone.DaylightDate.Day == registryTimeZoneInfo.DaylightDate.Day
&& timeZone.DaylightDate.Hour == registryTimeZoneInfo.DaylightDate.Hour
&& timeZone.DaylightDate.Minute == registryTimeZoneInfo.DaylightDate.Minute
&& timeZone.DaylightDate.Second == registryTimeZoneInfo.DaylightDate.Second
&& timeZone.DaylightDate.Milliseconds == registryTimeZoneInfo.DaylightDate.Milliseconds);
// Finally compare the "StandardName" string value...
//
// we do not compare "DaylightName" as this TimeZoneInformation field may contain
// either "StandardName" or "DaylightName" depending on the time of year and current machine settings
//
if (result) {
String registryStandardName = key.GetValue(c_standardValue, String.Empty, RegistryValueOptions.None) as String;
result = String.Compare(registryStandardName, timeZone.StandardName, StringComparison.Ordinal) == 0;
}
return result;
}
}
finally {
PermissionSet.RevertAssert();
}
}
#endif // FEATURE_WIN32_REGISTRY
#if FEATURE_WIN32_REGISTRY
//
// TryGetLocalizedNameByMuiNativeResource -
//
// Helper function for retrieving a localized string resource via MUI.
// The function expects a string in the form: "@resource.dll, -123"
//
// "resource.dll" is a language-neutral portable executable (LNPE) file in
// the %windir%\system32 directory. The OS is queried to find the best-fit
// localized resource file for this LNPE (ex: %windir%\system32\en-us\resource.dll.mui).
// If a localized resource file exists, we LoadString resource ID "123" and
// return it to our caller.
//
// <SecurityKernel Critical="True" Ring="0">
// <CallsSuppressUnmanagedCode Name="UnsafeNativeMethods.GetFileMUIPath(System.Int32,System.String,System.Text.StringBuilder,System.Int32&,System.Text.StringBuilder,System.Int32&,System.Int64&):System.Boolean" />
// <ReferencesCritical Name="Method: TryGetLocalizedNameByNativeResource(String, Int32):String" Ring="1" />
// </SecurityKernel>
[System.Security.SecuritySafeCritical] // auto-generated
#if !FEATURE_CORECLR
[FileIOPermissionAttribute(SecurityAction.Assert, AllLocalFiles = FileIOPermissionAccess.PathDiscovery)]
#endif
static private string TryGetLocalizedNameByMuiNativeResource(string resource) {
if (String.IsNullOrEmpty(resource)) {
return String.Empty;
}
// parse "@tzres.dll, -100"
//
// filePath = "C:\Windows\System32\tzres.dll"
// resourceId = -100
//
string[] resources = resource.Split(new char[] {','}, StringSplitOptions.None);
if (resources.Length != 2) {
return String.Empty;
}
string filePath;
int resourceId;
// get the path to Windows\System32
string system32 = Environment.UnsafeGetFolderPath(Environment.SpecialFolder.System);
// trim the string "@tzres.dll" => "tzres.dll"
string tzresDll = resources[0].TrimStart(new char[] {'@'});
try {
filePath = Path.Combine(system32, tzresDll);
}
catch (ArgumentException) {
// there were probably illegal characters in the path
return String.Empty;
}
if (!Int32.TryParse(resources[1], NumberStyles.Integer, CultureInfo.InvariantCulture, out resourceId)) {
return String.Empty;
}
resourceId = -resourceId;
try {
StringBuilder fileMuiPath = StringBuilderCache.Acquire(Win32Native.MAX_PATH);
fileMuiPath.Length = Win32Native.MAX_PATH;
int fileMuiPathLength = Win32Native.MAX_PATH;
int languageLength = 0;
Int64 enumerator = 0;
Boolean succeeded = UnsafeNativeMethods.GetFileMUIPath(
Win32Native.MUI_PREFERRED_UI_LANGUAGES,
filePath, null /* language */, ref languageLength,
fileMuiPath, ref fileMuiPathLength, ref enumerator);
if (!succeeded) {
StringBuilderCache.Release(fileMuiPath);
return String.Empty;
}
return TryGetLocalizedNameByNativeResource(StringBuilderCache.GetStringAndRelease(fileMuiPath), resourceId);
}
catch (EntryPointNotFoundException) {
return String.Empty;
}
}
#endif // FEATURE_WIN32_REGISTRY
#if FEATURE_WIN32_REGISTRY
//
// TryGetLocalizedNameByNativeResource -
//
// Helper function for retrieving a localized string resource via a native resource DLL.
// The function expects a string in the form: "C:\Windows\System32\en-us\resource.dll"
//
// "resource.dll" is a language-specific resource DLL.
// If the localized resource DLL exists, LoadString(resource) is returned.
//
[SecurityCritical]
static private string TryGetLocalizedNameByNativeResource(string filePath, int resource) {
using (SafeLibraryHandle handle =
UnsafeNativeMethods.LoadLibraryEx(filePath, IntPtr.Zero, Win32Native.LOAD_LIBRARY_AS_DATAFILE)) {
if (!handle.IsInvalid) {
StringBuilder localizedResource = StringBuilderCache.Acquire(Win32Native.LOAD_STRING_MAX_LENGTH);
localizedResource.Length = Win32Native.LOAD_STRING_MAX_LENGTH;
int result = UnsafeNativeMethods.LoadString(handle, resource,
localizedResource, localizedResource.Length);
if (result != 0) {
return StringBuilderCache.GetStringAndRelease(localizedResource);
}
}
}
return String.Empty;
}
#endif // FEATURE_WIN32_REGISTRY
#if FEATURE_WIN32_REGISTRY
//
// TryGetLocalizedNamesByRegistryKey -
//
// Helper function for retrieving the DisplayName, StandardName, and DaylightName from the registry
//
// The function first checks the MUI_ key-values, and if they exist, it loads the strings from the MUI
// resource dll(s). When the keys do not exist, the function falls back to reading from the standard
// key-values
//
// This method expects that its caller has already Asserted RegistryPermission.Read
//
#if FEATURE_CORECLR
[System.Security.SecurityCritical] // auto-generated
#endif
static private Boolean TryGetLocalizedNamesByRegistryKey(RegistryKey key, out String displayName, out String standardName, out String daylightName) {
displayName = String.Empty;
standardName = String.Empty;
daylightName = String.Empty;
// read the MUI_ registry keys
String displayNameMuiResource = key.GetValue(c_muiDisplayValue, String.Empty, RegistryValueOptions.None) as String;
String standardNameMuiResource = key.GetValue(c_muiStandardValue, String.Empty, RegistryValueOptions.None) as String;
String daylightNameMuiResource = key.GetValue(c_muiDaylightValue, String.Empty, RegistryValueOptions.None) as String;
// try to load the strings from the native resource DLL(s)
if (!String.IsNullOrEmpty(displayNameMuiResource)) {
displayName = TryGetLocalizedNameByMuiNativeResource(displayNameMuiResource);
}
if (!String.IsNullOrEmpty(standardNameMuiResource)) {
standardName = TryGetLocalizedNameByMuiNativeResource(standardNameMuiResource);
}
if (!String.IsNullOrEmpty(daylightNameMuiResource)) {
daylightName = TryGetLocalizedNameByMuiNativeResource(daylightNameMuiResource);
}
// fallback to using the standard registry keys
if (String.IsNullOrEmpty(displayName)) {
displayName = key.GetValue(c_displayValue, String.Empty, RegistryValueOptions.None) as String;
}
if (String.IsNullOrEmpty(standardName)) {
standardName = key.GetValue(c_standardValue, String.Empty, RegistryValueOptions.None) as String;
}
if (String.IsNullOrEmpty(daylightName)) {
daylightName = key.GetValue(c_daylightValue, String.Empty, RegistryValueOptions.None) as String;
}
return true;
}
#endif // FEATURE_WIN32_REGISTRY
#if FEATURE_WIN32_REGISTRY
//
// TryGetTimeZoneByRegistryKey -
//
// Helper function that takes a string representing a <time_zone_name> registry key name
// and returns a TimeZoneInfo instance.
//
// returns
// TimeZoneInfoResult.InvalidTimeZoneException,
// TimeZoneInfoResult.TimeZoneNotFoundException,
// TimeZoneInfoResult.SecurityException,
// TimeZoneInfoResult.Success
//
//
// Standard Time Zone Registry Data
// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
// HKLM
// Software
// Microsoft
// Windows NT
// CurrentVersion
// Time Zones
// <time_zone_name>
// * STD, REG_SZ "Standard Time Name"
// (For OS installed zones, this will always be English)
// * MUI_STD, REG_SZ "@tzres.dll,-1234"
// Indirect string to localized resource for Standard Time,
// add "%windir%\system32\" after "@"
// * DLT, REG_SZ "Daylight Time Name"
// (For OS installed zones, this will always be English)
// * MUI_DLT, REG_SZ "@tzres.dll,-1234"
// Indirect string to localized resource for Daylight Time,
// add "%windir%\system32\" after "@"
// * Display, REG_SZ "Display Name like (GMT-8:00) Pacific Time..."
// * MUI_Display, REG_SZ "@tzres.dll,-1234"
// Indirect string to localized resource for the Display,
// add "%windir%\system32\" after "@"
// * TZI, REG_BINARY REG_TZI_FORMAT
// See Win32Native.RegistryTimeZoneInformation
//
[System.Security.SecuritySafeCritical] // auto-generated
[ResourceExposure(ResourceScope.None)]
static private TimeZoneInfoResult TryGetTimeZoneByRegistryKey(string id, out TimeZoneInfo value, out Exception e) {
e = null;
try {
PermissionSet permSet = new PermissionSet(PermissionState.None);
permSet.AddPermission(new RegistryPermission(RegistryPermissionAccess.Read, c_timeZonesRegistryHivePermissionList));
permSet.Assert();
using (RegistryKey key = Registry.LocalMachine.OpenSubKey(
String.Format(CultureInfo.InvariantCulture, "{0}\\{1}",
c_timeZonesRegistryHive, id),
#if FEATURE_MACL
RegistryKeyPermissionCheck.Default,
System.Security.AccessControl.RegistryRights.ReadKey
#else
false
#endif
)) {
if (key == null) {
value = null;
return TimeZoneInfoResult.TimeZoneNotFoundException;
}
Win32Native.RegistryTimeZoneInformation defaultTimeZoneInformation;
Byte[] regValue = key.GetValue(c_timeZoneInfoValue, null, RegistryValueOptions.None) as Byte[];
if (regValue == null || regValue.Length != c_regByteLength) {
// the registry value could not be cast to a byte array
value = null;
return TimeZoneInfoResult.InvalidTimeZoneException;
}
defaultTimeZoneInformation = new Win32Native.RegistryTimeZoneInformation(regValue);
AdjustmentRule[] adjustmentRules;
if (!TryCreateAdjustmentRules(id, defaultTimeZoneInformation, out adjustmentRules, out e, defaultTimeZoneInformation.Bias)) {
value = null;
return TimeZoneInfoResult.InvalidTimeZoneException;
}
string displayName;
string standardName;
string daylightName;
if (!TryGetLocalizedNamesByRegistryKey(key, out displayName, out standardName, out daylightName)) {
value = null;
return TimeZoneInfoResult.InvalidTimeZoneException;
}
try {
value = new TimeZoneInfo(
id,
new TimeSpan(0, -(defaultTimeZoneInformation.Bias), 0),
displayName,
standardName,
daylightName,
adjustmentRules,
false);
return TimeZoneInfoResult.Success;
}
catch (ArgumentException ex) {
// TimeZoneInfo constructor can throw ArgumentException and InvalidTimeZoneException
value = null;
e = ex;
return TimeZoneInfoResult.InvalidTimeZoneException;
}
catch (InvalidTimeZoneException ex) {
// TimeZoneInfo constructor can throw ArgumentException and InvalidTimeZoneException
value = null;
e = ex;
return TimeZoneInfoResult.InvalidTimeZoneException;
}
}
}
finally {
PermissionSet.RevertAssert();
}
}
#endif // FEATURE_WIN32_REGISTRY
#if FEATURE_WIN32_REGISTRY
//
// TryGetTimeZone -
//
// Helper function for retrieving a TimeZoneInfo object by <time_zone_name>.
//
// This function may return null.
//
// assumes cachedData lock is taken
//
static private TimeZoneInfoResult TryGetTimeZone(string id, Boolean dstDisabled, out TimeZoneInfo value, out Exception e, CachedData cachedData) {
TimeZoneInfoResult result = TimeZoneInfoResult.Success;
e = null;
TimeZoneInfo match = null;
// check the cache
if (cachedData.m_systemTimeZones != null) {
if (cachedData.m_systemTimeZones.TryGetValue(id, out match)) {
if (dstDisabled && match.m_supportsDaylightSavingTime) {
// we found a cache hit but we want a time zone without DST and this one has DST data
value = CreateCustomTimeZone(match.m_id, match.m_baseUtcOffset, match.m_displayName, match.m_standardDisplayName);
}
else {
value = new TimeZoneInfo(match.m_id, match.m_baseUtcOffset, match.m_displayName, match.m_standardDisplayName,
match.m_daylightDisplayName, match.m_adjustmentRules, false);
}
return result;
}
}
// fall back to reading from the local machine
// when the cache is not fully populated
if (!cachedData.m_allSystemTimeZonesRead) {
result = TryGetTimeZoneByRegistryKey(id, out match, out e);
if (result == TimeZoneInfoResult.Success) {
if (cachedData.m_systemTimeZones == null)
cachedData.m_systemTimeZones = new Dictionary<string, TimeZoneInfo>();
cachedData.m_systemTimeZones.Add(id, match);
if (dstDisabled && match.m_supportsDaylightSavingTime) {
// we found a cache hit but we want a time zone without DST and this one has DST data
value = CreateCustomTimeZone(match.m_id, match.m_baseUtcOffset, match.m_displayName, match.m_standardDisplayName);
}
else {
value = new TimeZoneInfo(match.m_id, match.m_baseUtcOffset, match.m_displayName, match.m_standardDisplayName,
match.m_daylightDisplayName, match.m_adjustmentRules, false);
}
}
else {
value = null;
}
}
else {
result = TimeZoneInfoResult.TimeZoneNotFoundException;
value = null;
}
return result;
}
#endif // FEATURE_WIN32_REGISTRY
#endif
//
// UtcOffsetOutOfRange -
//
// Helper function that validates the TimeSpan is within +/- 14.0 hours
//
[Pure]
static internal Boolean UtcOffsetOutOfRange(TimeSpan offset) {
return (offset.TotalHours < -14.0 || offset.TotalHours > 14.0);
}
#if MONO
//
// ValidateTimeZoneInfo -
//
// Helper function that performs all of the validation checks for the
// factory methods and deserialization callback
//
// returns a Boolean indicating whether the AdjustmentRule[] supports DST
//
static private void ValidateTimeZoneInfo(
String id,
TimeSpan baseUtcOffset,
AdjustmentRule [] adjustmentRules,
out Boolean adjustmentRulesSupportDst) {
if (id == null) {
throw new ArgumentNullException("id");
}
if (id.Length == 0) {
throw new ArgumentException(Environment.GetResourceString("Argument_InvalidId", id), "id");
}
if (UtcOffsetOutOfRange(baseUtcOffset)) {
throw new ArgumentOutOfRangeException("baseUtcOffset", Environment.GetResourceString("ArgumentOutOfRange_UtcOffset"));
}
if (baseUtcOffset.Ticks % TimeSpan.TicksPerMinute != 0) {
throw new ArgumentException(Environment.GetResourceString("Argument_TimeSpanHasSeconds"), "baseUtcOffset");
}
Contract.EndContractBlock();
adjustmentRulesSupportDst = false;
//
// "adjustmentRules" can either be null or a valid array of AdjustmentRule objects.
// A valid array is one that does not contain any null elements and all elements
// are sorted in chronological order
//
if (adjustmentRules != null && adjustmentRules.Length != 0) {
adjustmentRulesSupportDst = true;
AdjustmentRule prev = null;
AdjustmentRule current = null;
for (int i = 0; i < adjustmentRules.Length; i++) {
prev = current;
current = adjustmentRules[i];
if (current == null) {
throw new InvalidTimeZoneException(Environment.GetResourceString("Argument_AdjustmentRulesNoNulls"));
}
//
if (UtcOffsetOutOfRange(baseUtcOffset + current.DaylightDelta)) {
throw new InvalidTimeZoneException(Environment.GetResourceString("ArgumentOutOfRange_UtcOffsetAndDaylightDelta"));
}
if (prev != null && current.DateStart <= prev.DateEnd) {
// verify the rules are in chronological order and the DateStart/DateEnd do not overlap
throw new InvalidTimeZoneException(Environment.GetResourceString("Argument_AdjustmentRulesOutOfOrder"));
}
}
}
}
#endif
/*============================================================
**
** Class: TimeZoneInfo.AdjustmentRule
**
**
** Purpose:
** This class is used to represent a Dynamic TimeZone. It
** has methods for converting a DateTime to UTC from local time
** and to local time from UTC and methods for getting the
** standard name and daylight name of the time zone.
**
**
============================================================*/
[Serializable]
[System.Security.Permissions.HostProtection(MayLeakOnAbort = true)]
#if MOBILE
[TypeForwardedFrom("System.Core, Version=2.0.5.0, Culture=Neutral, PublicKeyToken=7cec85d7bea7798e")]
#else
[TypeForwardedFrom("System.Core, Version=3.5.0.0, Culture=Neutral, PublicKeyToken=b77a5c561934e089")]
#endif
sealed public class AdjustmentRule : IEquatable<AdjustmentRule>, ISerializable, IDeserializationCallback {
// ---- SECTION: members supporting exposed properties -------------*
private DateTime m_dateStart;
private DateTime m_dateEnd;
private TimeSpan m_daylightDelta;
private TransitionTime m_daylightTransitionStart;
private TransitionTime m_daylightTransitionEnd;
private TimeSpan m_baseUtcOffsetDelta; // delta from the default Utc offset (utcOffset = defaultUtcOffset + m_baseUtcOffsetDelta)
// ---- SECTION: public properties --------------*
public DateTime DateStart {
get {
return this.m_dateStart;
}
}
public DateTime DateEnd {
get {
return this.m_dateEnd;
}
}
public TimeSpan DaylightDelta {
get {
return this.m_daylightDelta;
}
}
public TransitionTime DaylightTransitionStart {
get {
return this.m_daylightTransitionStart;
}
}
public TransitionTime DaylightTransitionEnd {
get {
return this.m_daylightTransitionEnd;
}
}
internal TimeSpan BaseUtcOffsetDelta {
get {
return this.m_baseUtcOffsetDelta;
}
}
internal bool HasDaylightSaving {
get {
return this.DaylightDelta != TimeSpan.Zero ||
this.DaylightTransitionStart.TimeOfDay != DateTime.MinValue ||
this.DaylightTransitionEnd.TimeOfDay != DateTime.MinValue.AddMilliseconds(1);
}
}
// ---- SECTION: public methods --------------*
// IEquatable<AdjustmentRule>
public bool Equals(AdjustmentRule other) {
bool equals = (other != null
&& this.m_dateStart == other.m_dateStart
&& this.m_dateEnd == other.m_dateEnd
&& this.m_daylightDelta == other.m_daylightDelta
&& this.m_baseUtcOffsetDelta == other.m_baseUtcOffsetDelta);
equals = equals && this.m_daylightTransitionEnd.Equals(other.m_daylightTransitionEnd)
&& this.m_daylightTransitionStart.Equals(other.m_daylightTransitionStart);
return equals;
}
public override int GetHashCode() {
return m_dateStart.GetHashCode();
}
// -------- SECTION: constructors -----------------*
private AdjustmentRule() { }
// -------- SECTION: factory methods -----------------*
static public AdjustmentRule CreateAdjustmentRule(
DateTime dateStart,
DateTime dateEnd,
TimeSpan daylightDelta,
TransitionTime daylightTransitionStart,
TransitionTime daylightTransitionEnd) {
ValidateAdjustmentRule(dateStart, dateEnd, daylightDelta,
daylightTransitionStart, daylightTransitionEnd);
AdjustmentRule rule = new AdjustmentRule();
rule.m_dateStart = dateStart;
rule.m_dateEnd = dateEnd;
rule.m_daylightDelta = daylightDelta;
rule.m_daylightTransitionStart = daylightTransitionStart;
rule.m_daylightTransitionEnd = daylightTransitionEnd;
rule.m_baseUtcOffsetDelta = TimeSpan.Zero;
return rule;
}
static internal AdjustmentRule CreateAdjustmentRule(
DateTime dateStart,
DateTime dateEnd,
TimeSpan daylightDelta,
TransitionTime daylightTransitionStart,
TransitionTime daylightTransitionEnd,
TimeSpan baseUtcOffsetDelta) {
AdjustmentRule rule = CreateAdjustmentRule(dateStart, dateEnd, daylightDelta, daylightTransitionStart, daylightTransitionEnd);
rule.m_baseUtcOffsetDelta = baseUtcOffsetDelta;
return rule;
}
// ----- SECTION: internal utility methods ----------------*
//
// When Windows sets the daylight transition start Jan 1st at 12:00 AM, it means the year starts with the daylight saving on.
// We have to special case this value and not adjust it when checking if any date is in the daylight saving period.
//
internal bool IsStartDateMarkerForBeginningOfYear() {
return DaylightTransitionStart.Month == 1 && DaylightTransitionStart.Day == 1 && DaylightTransitionStart.TimeOfDay.Hour == 0 &&
DaylightTransitionStart.TimeOfDay.Minute == 0 && DaylightTransitionStart.TimeOfDay.Second == 0 &&
m_dateStart.Year == m_dateEnd.Year;
}
//
// When Windows sets the daylight transition end Jan 1st at 12:00 AM, it means the year ends with the daylight saving on.
// We have to special case this value and not adjust it when checking if any date is in the daylight saving period.
//
internal bool IsEndDateMarkerForEndOfYear() {
return DaylightTransitionEnd.Month == 1 && DaylightTransitionEnd.Day == 1 && DaylightTransitionEnd.TimeOfDay.Hour == 0 &&
DaylightTransitionEnd.TimeOfDay.Minute == 0 && DaylightTransitionEnd.TimeOfDay.Second == 0 &&
m_dateStart.Year == m_dateEnd.Year;
}
//
// ValidateAdjustmentRule -
//
// Helper function that performs all of the validation checks for the
// factory methods and deserialization callback
//
static private void ValidateAdjustmentRule(
DateTime dateStart,
DateTime dateEnd,
TimeSpan daylightDelta,
TransitionTime daylightTransitionStart,
TransitionTime daylightTransitionEnd) {
if (dateStart.Kind != DateTimeKind.Unspecified) {
throw new ArgumentException(Environment.GetResourceString("Argument_DateTimeKindMustBeUnspecified"), "dateStart");
}
if (dateEnd.Kind != DateTimeKind.Unspecified) {
throw new ArgumentException(Environment.GetResourceString("Argument_DateTimeKindMustBeUnspecified"), "dateEnd");
}
if (daylightTransitionStart.Equals(daylightTransitionEnd)) {
throw new ArgumentException(Environment.GetResourceString("Argument_TransitionTimesAreIdentical"),
"daylightTransitionEnd");
}
if (dateStart > dateEnd) {
throw new ArgumentException(Environment.GetResourceString("Argument_OutOfOrderDateTimes"), "dateStart");
}
if (TimeZoneInfo.UtcOffsetOutOfRange(daylightDelta)) {
throw new ArgumentOutOfRangeException("daylightDelta", daylightDelta,
Environment.GetResourceString("ArgumentOutOfRange_UtcOffset"));
}
if (daylightDelta.Ticks % TimeSpan.TicksPerMinute != 0) {
throw new ArgumentException(Environment.GetResourceString("Argument_TimeSpanHasSeconds"),
"daylightDelta");
}
if (dateStart.TimeOfDay != TimeSpan.Zero) {
throw new ArgumentException(Environment.GetResourceString("Argument_DateTimeHasTimeOfDay"),
"dateStart");
}
if (dateEnd.TimeOfDay != TimeSpan.Zero) {
throw new ArgumentException(Environment.GetResourceString("Argument_DateTimeHasTimeOfDay"),
"dateEnd");
}
Contract.EndContractBlock();
}
// ----- SECTION: private serialization instance methods ----------------*
#if FEATURE_SERIALIZATION
void IDeserializationCallback.OnDeserialization(Object sender) {
// OnDeserialization is called after each instance of this class is deserialized.
// This callback method performs AdjustmentRule validation after being deserialized.
try {
ValidateAdjustmentRule(m_dateStart, m_dateEnd, m_daylightDelta,
m_daylightTransitionStart, m_daylightTransitionEnd);
}
catch (ArgumentException e) {
throw new SerializationException(Environment.GetResourceString("Serialization_InvalidData"), e);
}
}
[System.Security.SecurityCritical] // auto-generated_required
void ISerializable.GetObjectData(SerializationInfo info, StreamingContext context) {
if (info == null) {
throw new ArgumentNullException("info");
}
Contract.EndContractBlock();
info.AddValue("DateStart", m_dateStart);
info.AddValue("DateEnd", m_dateEnd);
info.AddValue("DaylightDelta", m_daylightDelta);
info.AddValue("DaylightTransitionStart", m_daylightTransitionStart);
info.AddValue("DaylightTransitionEnd", m_daylightTransitionEnd);
info.AddValue("BaseUtcOffsetDelta", m_baseUtcOffsetDelta);
}
AdjustmentRule(SerializationInfo info, StreamingContext context) {
if (info == null) {
throw new ArgumentNullException("info");
}
m_dateStart = (DateTime)info.GetValue("DateStart", typeof(DateTime));
m_dateEnd = (DateTime)info.GetValue("DateEnd", typeof(DateTime));
m_daylightDelta = (TimeSpan)info.GetValue("DaylightDelta", typeof(TimeSpan));
m_daylightTransitionStart = (TransitionTime)info.GetValue("DaylightTransitionStart", typeof(TransitionTime));
m_daylightTransitionEnd = (TransitionTime)info.GetValue("DaylightTransitionEnd", typeof(TransitionTime));
object o = info.GetValueNoThrow("BaseUtcOffsetDelta", typeof(TimeSpan));
if (o != null) {
m_baseUtcOffsetDelta = (TimeSpan) o;
}
}
#endif
}
/*============================================================
**
** Class: TimeZoneInfo.TransitionTime
**
**
** Purpose:
** This class is used to represent a Dynamic TimeZone. It
** has methods for converting a DateTime to UTC from local time
** and to local time from UTC and methods for getting the
** standard name and daylight name of the time zone.
**
**
============================================================*/
[Serializable]
[System.Security.Permissions.HostProtection(MayLeakOnAbort = true)]
#if MOBILE
[TypeForwardedFrom("System.Core, Version=2.0.5.0, Culture=Neutral, PublicKeyToken=7cec85d7bea7798e")]
#else
[TypeForwardedFrom("System.Core, Version=3.5.0.0, Culture=Neutral, PublicKeyToken=b77a5c561934e089")]
#endif
public readonly struct TransitionTime : IEquatable<TransitionTime>, ISerializable, IDeserializationCallback {
// ---- SECTION: members supporting exposed properties -------------*
private readonly DateTime m_timeOfDay;
private readonly byte m_month;
private readonly byte m_week;
private readonly byte m_day;
private readonly DayOfWeek m_dayOfWeek;
private readonly Boolean m_isFixedDateRule;
internal TransitionTime(bool isFixedDateRule, DateTime timeOfDay, DayOfWeek dayOfWeek, byte day, byte week, byte month)
{
m_isFixedDateRule = isFixedDateRule;
m_timeOfDay = timeOfDay;
m_dayOfWeek = dayOfWeek;
m_day = (byte)day;
m_week = (byte)week;
m_month = (byte)month;
}
// ---- SECTION: public properties --------------*
public DateTime TimeOfDay {
get {
return m_timeOfDay;
}
}
public Int32 Month {
get {
return (int)m_month;
}
}
public Int32 Week {
get {
return (int)m_week;
}
}
public Int32 Day {
get {
return (int)m_day;
}
}
public DayOfWeek DayOfWeek {
get {
return m_dayOfWeek;
}
}
public Boolean IsFixedDateRule {
get {
return m_isFixedDateRule;
}
}
// ---- SECTION: public methods --------------*
[Pure]
public override bool Equals(Object obj) {
if (obj is TransitionTime) {
return Equals((TransitionTime)obj);
}
return false;
}
public static bool operator ==(TransitionTime t1, TransitionTime t2) {
return t1.Equals(t2);
}
public static bool operator !=(TransitionTime t1, TransitionTime t2) {
return (!t1.Equals(t2));
}
[Pure]
public bool Equals(TransitionTime other) {
bool equal = (this.m_isFixedDateRule == other.m_isFixedDateRule
&& this.m_timeOfDay == other.m_timeOfDay
&& this.m_month == other.m_month);
if (equal) {
if (other.m_isFixedDateRule) {
equal = (this.m_day == other.m_day);
}
else {
equal = (this.m_week == other.m_week
&& this.m_dayOfWeek == other.m_dayOfWeek);
}
}
return equal;
}
public override int GetHashCode() {
return ((int)m_month ^ (int)m_week << 8);
}
// -------- SECTION: constructors -----------------*
/*
private TransitionTime() {
m_timeOfDay = new DateTime();
m_month = 0;
m_week = 0;
m_day = 0;
m_dayOfWeek = DayOfWeek.Sunday;
m_isFixedDateRule = false;
}
*/
// -------- SECTION: factory methods -----------------*
static public TransitionTime CreateFixedDateRule(
DateTime timeOfDay,
Int32 month,
Int32 day) {
return CreateTransitionTime(timeOfDay, month, 1, day, DayOfWeek.Sunday, true);
}
static public TransitionTime CreateFloatingDateRule(
DateTime timeOfDay,
Int32 month,
Int32 week,
DayOfWeek dayOfWeek) {
return CreateTransitionTime(timeOfDay, month, week, 1, dayOfWeek, false);
}
static private TransitionTime CreateTransitionTime(
DateTime timeOfDay,
Int32 month,
Int32 week,
Int32 day,
DayOfWeek dayOfWeek,
Boolean isFixedDateRule) {
ValidateTransitionTime(timeOfDay, month, week, day, dayOfWeek);
TransitionTime t = new TransitionTime(
isFixedDateRule,
timeOfDay,
dayOfWeek,
(byte)day,
(byte)week,
(byte)month);
return t;
}
// ----- SECTION: internal utility methods ----------------*
//
// ValidateTransitionTime -
//
// Helper function that validates a TransitionTime instance
//
static private void ValidateTransitionTime(
DateTime timeOfDay,
Int32 month,
Int32 week,
Int32 day,
DayOfWeek dayOfWeek) {
if (timeOfDay.Kind != DateTimeKind.Unspecified) {
throw new ArgumentException(Environment.GetResourceString("Argument_DateTimeKindMustBeUnspecified"), "timeOfDay");
}
// Month range 1-12
if (month < 1 || month > 12) {
throw new ArgumentOutOfRangeException("month", Environment.GetResourceString("ArgumentOutOfRange_MonthParam"));
}
// Day range 1-31
if (day < 1 || day > 31) {
throw new ArgumentOutOfRangeException("day", Environment.GetResourceString("ArgumentOutOfRange_DayParam"));
}
// Week range 1-5
if (week < 1 || week > 5) {
throw new ArgumentOutOfRangeException("week", Environment.GetResourceString("ArgumentOutOfRange_Week"));
}
// DayOfWeek range 0-6
if ((int)dayOfWeek < 0 || (int)dayOfWeek > 6) {
throw new ArgumentOutOfRangeException("dayOfWeek", Environment.GetResourceString("ArgumentOutOfRange_DayOfWeek"));
}
Contract.EndContractBlock();
if (timeOfDay.Year != 1 || timeOfDay.Month != 1
|| timeOfDay.Day != 1 || (timeOfDay.Ticks % TimeSpan.TicksPerMillisecond != 0)) {
throw new ArgumentException(Environment.GetResourceString("Argument_DateTimeHasTicks"), "timeOfDay");
}
}
#if FEATURE_SERIALIZATION
void IDeserializationCallback.OnDeserialization(Object sender) {
// OnDeserialization is called after each instance of this class is deserialized.
// This callback method performs TransitionTime validation after being deserialized.
try {
ValidateTransitionTime(m_timeOfDay, (Int32)m_month, (Int32)m_week, (Int32)m_day, m_dayOfWeek);
}
catch (ArgumentException e) {
throw new SerializationException(Environment.GetResourceString("Serialization_InvalidData"), e);
}
}
[System.Security.SecurityCritical] // auto-generated_required
void ISerializable.GetObjectData(SerializationInfo info, StreamingContext context) {
if (info == null) {
throw new ArgumentNullException("info");
}
Contract.EndContractBlock();
info.AddValue("TimeOfDay", m_timeOfDay);
info.AddValue("Month", m_month);
info.AddValue("Week", m_week);
info.AddValue("Day", m_day);
info.AddValue("DayOfWeek", m_dayOfWeek);
info.AddValue("IsFixedDateRule", m_isFixedDateRule);
}
TransitionTime(SerializationInfo info, StreamingContext context) {
if (info == null) {
throw new ArgumentNullException("info");
}
m_timeOfDay = (DateTime)info.GetValue("TimeOfDay", typeof(DateTime));
m_month = (byte)info.GetValue("Month", typeof(byte));
m_week = (byte)info.GetValue("Week", typeof(byte));
m_day = (byte)info.GetValue("Day", typeof(byte));
m_dayOfWeek = (DayOfWeek)info.GetValue("DayOfWeek", typeof(DayOfWeek));
m_isFixedDateRule = (Boolean)info.GetValue("IsFixedDateRule", typeof(Boolean));
}
#endif
}
/*============================================================
**
** Class: TimeZoneInfo.StringSerializer
**
**
** Purpose:
** This class is used to serialize and deserialize TimeZoneInfo
** objects based on the custom string serialization format
**
**
============================================================*/
sealed private class StringSerializer {
// ---- SECTION: private members -------------*
private enum State {
Escaped = 0,
NotEscaped = 1,
StartOfToken = 2,
EndOfLine = 3
}
private String m_serializedText;
private int m_currentTokenStartIndex;
private State m_state;
// the majority of the strings contained in the OS time zones fit in 64 chars
private const int initialCapacityForString = 64;
private const char esc = '\\';
private const char sep = ';';
private const char lhs = '[';
private const char rhs = ']';
private const string escString = "\\";
private const string sepString = ";";
private const string lhsString = "[";
private const string rhsString = "]";
private const string escapedEsc = "\\\\";
private const string escapedSep = "\\;";
private const string escapedLhs = "\\[";
private const string escapedRhs = "\\]";
private const string dateTimeFormat = "MM:dd:yyyy";
private const string timeOfDayFormat = "HH:mm:ss.FFF";
// ---- SECTION: public static methods --------------*
//
// GetSerializedString -
//
// static method that creates the custom serialized string
// representation of a TimeZoneInfo instance
//
static public String GetSerializedString(TimeZoneInfo zone) {
StringBuilder serializedText = StringBuilderCache.Acquire();
//
// <m_id>;<m_baseUtcOffset>;<m_displayName>;<m_standardDisplayName>;<m_daylightDispayName>
//
serializedText.Append(SerializeSubstitute(zone.Id));
serializedText.Append(sep);
serializedText.Append(SerializeSubstitute(
zone.BaseUtcOffset.TotalMinutes.ToString(CultureInfo.InvariantCulture)));
serializedText.Append(sep);
serializedText.Append(SerializeSubstitute(zone.DisplayName));
serializedText.Append(sep);
serializedText.Append(SerializeSubstitute(zone.StandardName));
serializedText.Append(sep);
serializedText.Append(SerializeSubstitute(zone.DaylightName));
serializedText.Append(sep);
AdjustmentRule[] rules = zone.GetAdjustmentRules();
if (rules != null && rules.Length > 0) {
for (int i = 0; i < rules.Length; i++) {
AdjustmentRule rule = rules[i];
serializedText.Append(lhs);
serializedText.Append(SerializeSubstitute(rule.DateStart.ToString(
dateTimeFormat, DateTimeFormatInfo.InvariantInfo)));
serializedText.Append(sep);
serializedText.Append(SerializeSubstitute(rule.DateEnd.ToString(
dateTimeFormat, DateTimeFormatInfo.InvariantInfo)));
serializedText.Append(sep);
serializedText.Append(SerializeSubstitute(rule.DaylightDelta.TotalMinutes.ToString(CultureInfo.InvariantCulture)));
serializedText.Append(sep);
// serialize the TransitionTime's
SerializeTransitionTime(rule.DaylightTransitionStart, serializedText);
serializedText.Append(sep);
SerializeTransitionTime(rule.DaylightTransitionEnd, serializedText);
serializedText.Append(sep);
if (rule.BaseUtcOffsetDelta != TimeSpan.Zero) { // Serialize it only when BaseUtcOffsetDelta has a value to reduce the impact of adding rule.BaseUtcOffsetDelta
serializedText.Append(SerializeSubstitute(rule.BaseUtcOffsetDelta.TotalMinutes.ToString(CultureInfo.InvariantCulture)));
serializedText.Append(sep);
}
serializedText.Append(rhs);
}
}
serializedText.Append(sep);
return StringBuilderCache.GetStringAndRelease(serializedText);
}
//
// GetDeserializedTimeZoneInfo -
//
// static method that instantiates a TimeZoneInfo from a custom serialized
// string
//
static public TimeZoneInfo GetDeserializedTimeZoneInfo(String source) {
StringSerializer s = new StringSerializer(source);
String id = s.GetNextStringValue(false);
TimeSpan baseUtcOffset = s.GetNextTimeSpanValue(false);
String displayName = s.GetNextStringValue(false);
String standardName = s.GetNextStringValue(false);
String daylightName = s.GetNextStringValue(false);
AdjustmentRule[] rules = s.GetNextAdjustmentRuleArrayValue(false);
try {
return TimeZoneInfo.CreateCustomTimeZone(id, baseUtcOffset, displayName, standardName, daylightName, rules);
}
catch (ArgumentException ex) {
throw new SerializationException(Environment.GetResourceString("Serialization_InvalidData"), ex);
}
catch (InvalidTimeZoneException ex) {
throw new SerializationException(Environment.GetResourceString("Serialization_InvalidData"), ex);
}
}
// ---- SECTION: public instance methods --------------*
// -------- SECTION: constructors -----------------*
//
// StringSerializer -
//
// private constructor - used by GetDeserializedTimeZoneInfo()
//
private StringSerializer(String str) {
m_serializedText = str;
m_state = State.StartOfToken;
}
// ----- SECTION: internal static utility methods ----------------*
//
// SerializeSubstitute -
//
// returns a new string with all of the reserved sub-strings escaped
//
// ";" -> "\;"
// "[" -> "\["
// "]" -> "\]"
// "\" -> "\\"
//
static private String SerializeSubstitute(String text) {
text = text.Replace(escString, escapedEsc);
text = text.Replace(lhsString, escapedLhs);
text = text.Replace(rhsString, escapedRhs);
return text.Replace(sepString, escapedSep);
}
//
// SerializeTransitionTime -
//
// Helper method to serialize a TimeZoneInfo.TransitionTime object
//
static private void SerializeTransitionTime(TransitionTime time, StringBuilder serializedText) {
serializedText.Append(lhs);
Int32 fixedDate = (time.IsFixedDateRule ? 1 : 0);
serializedText.Append(fixedDate.ToString(CultureInfo.InvariantCulture));
serializedText.Append(sep);
if (time.IsFixedDateRule) {
serializedText.Append(SerializeSubstitute(time.TimeOfDay.ToString(timeOfDayFormat, DateTimeFormatInfo.InvariantInfo)));
serializedText.Append(sep);
serializedText.Append(SerializeSubstitute(time.Month.ToString(CultureInfo.InvariantCulture)));
serializedText.Append(sep);
serializedText.Append(SerializeSubstitute(time.Day.ToString(CultureInfo.InvariantCulture)));
serializedText.Append(sep);
}
else {
serializedText.Append(SerializeSubstitute(time.TimeOfDay.ToString(timeOfDayFormat, DateTimeFormatInfo.InvariantInfo)));
serializedText.Append(sep);
serializedText.Append(SerializeSubstitute(time.Month.ToString(CultureInfo.InvariantCulture)));
serializedText.Append(sep);
serializedText.Append(SerializeSubstitute(time.Week.ToString(CultureInfo.InvariantCulture)));
serializedText.Append(sep);
serializedText.Append(SerializeSubstitute(((int)time.DayOfWeek).ToString(CultureInfo.InvariantCulture)));
serializedText.Append(sep);
}
serializedText.Append(rhs);
}
//
// VerifyIsEscapableCharacter -
//
// Helper function to determine if the passed in string token is allowed to be preceeded by an escape sequence token
//
static private void VerifyIsEscapableCharacter(char c) {
if (c != esc && c != sep && c != lhs && c != rhs) {
throw new SerializationException(Environment.GetResourceString("Serialization_InvalidEscapeSequence", c));
}
}
// ----- SECTION: internal instance utility methods ----------------*
//
// SkipVersionNextDataFields -
//
// Helper function that reads past "v.Next" data fields. Receives a "depth" parameter indicating the
// current relative nested bracket depth that m_currentTokenStartIndex is at. The function ends
// successfully when "depth" returns to zero (0).
//
//
private void SkipVersionNextDataFields(Int32 depth /* starting depth in the nested brackets ('[', ']')*/) {
if (m_currentTokenStartIndex < 0 || m_currentTokenStartIndex >= m_serializedText.Length) {
throw new SerializationException(Environment.GetResourceString("Serialization_InvalidData"));
}
State tokenState = State.NotEscaped;
// walk the serialized text, building up the token as we go...
for (int i = m_currentTokenStartIndex; i < m_serializedText.Length; i++) {
if (tokenState == State.Escaped) {
VerifyIsEscapableCharacter(m_serializedText[i]);
tokenState = State.NotEscaped;
}
else if (tokenState == State.NotEscaped) {
switch (m_serializedText[i]) {
case esc:
tokenState = State.Escaped;
break;
case lhs:
depth++;
break;
case rhs:
depth--;
if (depth == 0) {
m_currentTokenStartIndex = i + 1;
if (m_currentTokenStartIndex >= m_serializedText.Length) {
m_state = State.EndOfLine;
}
else {
m_state = State.StartOfToken;
}
return;
}
break;
case '\0':
// invalid character
throw new SerializationException(Environment.GetResourceString("Serialization_InvalidData"));
default:
break;
}
}
}
throw new SerializationException(Environment.GetResourceString("Serialization_InvalidData"));
}
//
// GetNextStringValue -
//
// Helper function that reads a string token from the serialized text. The function
// updates the m_currentTokenStartIndex to point to the next token on exit. Also m_state
// is set to either State.StartOfToken or State.EndOfLine on exit.
//
// The function takes a parameter "canEndWithoutSeparator".
//
// * When set to 'false' the function requires the string token end with a ";".
// * When set to 'true' the function requires that the string token end with either
// ";", State.EndOfLine, or "]". In the case that "]" is the terminal case the
// m_currentTokenStartIndex is left pointing at index "]" to allow the caller to update
// its depth logic.
//
private String GetNextStringValue(Boolean canEndWithoutSeparator) {
// first verify the internal state of the object
if (m_state == State.EndOfLine) {
if (canEndWithoutSeparator) {
return null;
}
else {
throw new SerializationException(Environment.GetResourceString("Serialization_InvalidData"));
}
}
if (m_currentTokenStartIndex < 0 || m_currentTokenStartIndex >= m_serializedText.Length) {
throw new SerializationException(Environment.GetResourceString("Serialization_InvalidData"));
}
State tokenState = State.NotEscaped;
StringBuilder token = StringBuilderCache.Acquire(initialCapacityForString);
// walk the serialized text, building up the token as we go...
for (int i = m_currentTokenStartIndex; i < m_serializedText.Length; i++) {
if (tokenState == State.Escaped) {
VerifyIsEscapableCharacter(m_serializedText[i]);
token.Append(m_serializedText[i]);
tokenState = State.NotEscaped;
}
else if (tokenState == State.NotEscaped) {
switch (m_serializedText[i]) {
case esc:
tokenState = State.Escaped;
break;
case lhs:
// '[' is an unexpected character
throw new SerializationException(Environment.GetResourceString("Serialization_InvalidData"));
case rhs:
if (canEndWithoutSeparator) {
// if ';' is not a required terminal then treat ']' as a terminal
// leave m_currentTokenStartIndex pointing to ']' so our callers can handle
// this special case
m_currentTokenStartIndex = i;
m_state = State.StartOfToken;
return token.ToString();
}
else {
// ']' is an unexpected character
throw new SerializationException(Environment.GetResourceString("Serialization_InvalidData"));
}
case sep:
m_currentTokenStartIndex = i + 1;
if (m_currentTokenStartIndex >= m_serializedText.Length) {
m_state = State.EndOfLine;
}
else {
m_state = State.StartOfToken;
}
return StringBuilderCache.GetStringAndRelease(token);
case '\0':
// invalid character
throw new SerializationException(Environment.GetResourceString("Serialization_InvalidData"));
default:
token.Append(m_serializedText[i]);
break;
}
}
}
//
// we are at the end of the line
//
if (tokenState == State.Escaped) {
// we are at the end of the serialized text but we are in an escaped state
throw new SerializationException(Environment.GetResourceString("Serialization_InvalidEscapeSequence", String.Empty));
}
if (!canEndWithoutSeparator) {
throw new SerializationException(Environment.GetResourceString("Serialization_InvalidData"));
}
m_currentTokenStartIndex = m_serializedText.Length;
m_state = State.EndOfLine;
return StringBuilderCache.GetStringAndRelease(token);
}
//
// GetNextDateTimeValue -
//
// Helper function to read a DateTime token. Takes a boolean "canEndWithoutSeparator"
// and a "format" string.
//
private DateTime GetNextDateTimeValue(Boolean canEndWithoutSeparator, string format) {
String token = GetNextStringValue(canEndWithoutSeparator);
DateTime time;
if (!DateTime.TryParseExact(token, format, DateTimeFormatInfo.InvariantInfo, DateTimeStyles.None, out time)) {
throw new SerializationException(Environment.GetResourceString("Serialization_InvalidData"));
}
return time;
}
//
// GetNextTimeSpanValue -
//
// Helper function to read a DateTime token. Takes a boolean "canEndWithoutSeparator".
//
private TimeSpan GetNextTimeSpanValue(Boolean canEndWithoutSeparator) {
Int32 token = GetNextInt32Value(canEndWithoutSeparator);
try {
return new TimeSpan(0 /* hours */, token /* minutes */, 0 /* seconds */);
}
catch (ArgumentOutOfRangeException e) {
throw new SerializationException(Environment.GetResourceString("Serialization_InvalidData"), e);
}
}
//
// GetNextInt32Value -
//
// Helper function to read an Int32 token. Takes a boolean "canEndWithoutSeparator".
//
private Int32 GetNextInt32Value(Boolean canEndWithoutSeparator) {
String token = GetNextStringValue(canEndWithoutSeparator);
Int32 value;
if (!Int32.TryParse(token, NumberStyles.AllowLeadingSign /* "[sign]digits" */, CultureInfo.InvariantCulture, out value)) {
throw new SerializationException(Environment.GetResourceString("Serialization_InvalidData"));
}
return value;
}
//
// GetNextAdjustmentRuleArrayValue -
//
// Helper function to read an AdjustmentRule[] token. Takes a boolean "canEndWithoutSeparator".
//
private AdjustmentRule[] GetNextAdjustmentRuleArrayValue(Boolean canEndWithoutSeparator) {
List<AdjustmentRule> rules = new List<AdjustmentRule>(1);
int count = 0;
// individual AdjustmentRule array elements do not require semicolons
AdjustmentRule rule = GetNextAdjustmentRuleValue(true);
while (rule != null) {
rules.Add(rule);
count++;
rule = GetNextAdjustmentRuleValue(true);
}
if (!canEndWithoutSeparator) {
// the AdjustmentRule array must end with a separator
if (m_state == State.EndOfLine) {
throw new SerializationException(Environment.GetResourceString("Serialization_InvalidData"));
}
if (m_currentTokenStartIndex < 0 || m_currentTokenStartIndex >= m_serializedText.Length) {
throw new SerializationException(Environment.GetResourceString("Serialization_InvalidData"));
}
}
return (count != 0 ? rules.ToArray() : null);
}
//
// GetNextAdjustmentRuleValue -
//
// Helper function to read an AdjustmentRule token. Takes a boolean "canEndWithoutSeparator".
//
private AdjustmentRule GetNextAdjustmentRuleValue(Boolean canEndWithoutSeparator) {
// first verify the internal state of the object
if (m_state == State.EndOfLine) {
if (canEndWithoutSeparator) {
return null;
}
else {
throw new SerializationException(Environment.GetResourceString("Serialization_InvalidData"));
}
}
if (m_currentTokenStartIndex < 0 || m_currentTokenStartIndex >= m_serializedText.Length) {
throw new SerializationException(Environment.GetResourceString("Serialization_InvalidData"));
}
// check to see if the very first token we see is the separator
if (m_serializedText[m_currentTokenStartIndex] == sep) {
return null;
}
// verify the current token is a left-hand-side marker ("[")
if (m_serializedText[m_currentTokenStartIndex] != lhs) {
throw new SerializationException(Environment.GetResourceString("Serialization_InvalidData"));
}
m_currentTokenStartIndex++;
DateTime dateStart = GetNextDateTimeValue(false, dateTimeFormat);
DateTime dateEnd = GetNextDateTimeValue(false, dateTimeFormat);
TimeSpan daylightDelta = GetNextTimeSpanValue(false);
TransitionTime daylightStart = GetNextTransitionTimeValue(false);
TransitionTime daylightEnd = GetNextTransitionTimeValue(false);
TimeSpan baseUtcOffsetDelta = TimeSpan.Zero;
// verify that the string is now at the right-hand-side marker ("]") ...
if (m_state == State.EndOfLine || m_currentTokenStartIndex >= m_serializedText.Length) {
throw new SerializationException(Environment.GetResourceString("Serialization_InvalidData"));
}
// Check if we have baseUtcOffsetDelta in the serialized string and then deserialize it
if ((m_serializedText[m_currentTokenStartIndex] >= '0' && m_serializedText[m_currentTokenStartIndex] <= '9') ||
m_serializedText[m_currentTokenStartIndex] == '-' || m_serializedText[m_currentTokenStartIndex] == '+') {
baseUtcOffsetDelta = GetNextTimeSpanValue(false);
}
if (m_state == State.EndOfLine || m_currentTokenStartIndex >= m_serializedText.Length) {
throw new SerializationException(Environment.GetResourceString("Serialization_InvalidData"));
}
if (m_serializedText[m_currentTokenStartIndex] != rhs) {
// skip ahead of any "v.Next" data at the end of the AdjustmentRule
//
//
SkipVersionNextDataFields(1);
}
else {
m_currentTokenStartIndex++;
}
// create the AdjustmentRule from the deserialized fields ...
AdjustmentRule rule;
try {
rule = AdjustmentRule.CreateAdjustmentRule(dateStart, dateEnd, daylightDelta, daylightStart, daylightEnd, baseUtcOffsetDelta);
}
catch (ArgumentException e) {
throw new SerializationException(Environment.GetResourceString("Serialization_InvalidData"), e);
}
// finally set the state to either EndOfLine or StartOfToken for the next caller
if (m_currentTokenStartIndex >= m_serializedText.Length) {
m_state = State.EndOfLine;
}
else {
m_state = State.StartOfToken;
}
return rule;
}
//
// GetNextTransitionTimeValue -
//
// Helper function to read a TransitionTime token. Takes a boolean "canEndWithoutSeparator".
//
private TransitionTime GetNextTransitionTimeValue(Boolean canEndWithoutSeparator) {
// first verify the internal state of the object
if (m_state == State.EndOfLine
|| (m_currentTokenStartIndex < m_serializedText.Length
&& m_serializedText[m_currentTokenStartIndex] == rhs)) {
//
// we are at the end of the line or we are starting at a "]" character
//
throw new SerializationException(Environment.GetResourceString("Serialization_InvalidData"));
}
if (m_currentTokenStartIndex < 0 || m_currentTokenStartIndex >= m_serializedText.Length) {
throw new SerializationException(Environment.GetResourceString("Serialization_InvalidData"));
}
// verify the current token is a left-hand-side marker ("[")
if (m_serializedText[m_currentTokenStartIndex] != lhs) {
throw new SerializationException(Environment.GetResourceString("Serialization_InvalidData"));
}
m_currentTokenStartIndex++;
Int32 isFixedDate = GetNextInt32Value(false);
if (isFixedDate != 0 && isFixedDate != 1) {
throw new SerializationException(Environment.GetResourceString("Serialization_InvalidData"));
}
TransitionTime transition;
DateTime timeOfDay = GetNextDateTimeValue(false, timeOfDayFormat);
timeOfDay = new DateTime(1, 1, 1, timeOfDay.Hour,timeOfDay.Minute,timeOfDay.Second, timeOfDay.Millisecond);
Int32 month = GetNextInt32Value(false);
if (isFixedDate == 1) {
Int32 day = GetNextInt32Value(false);
try {
transition = TransitionTime.CreateFixedDateRule(timeOfDay, month, day);
}
catch (ArgumentException e) {
throw new SerializationException(Environment.GetResourceString("Serialization_InvalidData"), e);
}
}
else {
Int32 week = GetNextInt32Value(false);
Int32 dayOfWeek = GetNextInt32Value(false);
try {
transition = TransitionTime.CreateFloatingDateRule(timeOfDay, month, week, (DayOfWeek)dayOfWeek);
}
catch (ArgumentException e) {
throw new SerializationException(Environment.GetResourceString("Serialization_InvalidData"), e);
}
}
// verify that the string is now at the right-hand-side marker ("]") ...
if (m_state == State.EndOfLine || m_currentTokenStartIndex >= m_serializedText.Length) {
throw new SerializationException(Environment.GetResourceString("Serialization_InvalidData"));
}
if (m_serializedText[m_currentTokenStartIndex] != rhs) {
// skip ahead of any "v.Next" data at the end of the AdjustmentRule
//
//
SkipVersionNextDataFields(1);
}
else {
m_currentTokenStartIndex++;
}
// check to see if the string is now at the separator (";") ...
Boolean sepFound = false;
if (m_currentTokenStartIndex < m_serializedText.Length
&& m_serializedText[m_currentTokenStartIndex] == sep) {
// handle the case where we ended on a ";"
m_currentTokenStartIndex++;
sepFound = true;
}
if (!sepFound && !canEndWithoutSeparator) {
// we MUST end on a separator
throw new SerializationException(Environment.GetResourceString("Serialization_InvalidData"));
}
// finally set the state to either EndOfLine or StartOfToken for the next caller
if (m_currentTokenStartIndex >= m_serializedText.Length) {
m_state = State.EndOfLine;
}
else {
m_state = State.StartOfToken;
}
return transition;
}
}
private class TimeZoneInfoComparer : System.Collections.Generic.IComparer<TimeZoneInfo> {
int System.Collections.Generic.IComparer<TimeZoneInfo>.Compare(TimeZoneInfo x, TimeZoneInfo y) {
// sort by BaseUtcOffset first and by DisplayName second - this is similar to the Windows Date/Time control panel
int comparison = x.BaseUtcOffset.CompareTo(y.BaseUtcOffset);
return comparison == 0 ? String.Compare(x.DisplayName, y.DisplayName, StringComparison.Ordinal) : comparison;
}
}
} // TimezoneInfo
} // namespace System
|