1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574
|
/* Copyright 2016 Software Freedom Conservancy Inc.
*
* This software is licensed under the GNU LGPL (version 2.1 or later).
* See the COPYING file in this distribution.
*/
// Specifies how pixel data is fetched from the backing file on disk. MASTER is the original
// backing photo of any supported photo file format; SOURCE is either the master or the editable
// file, that is, the appropriate reference file for user display; BASELINE is an appropriate
// file with the proviso that it may be a suitable substitute for the master and/or the editable.
// UNMODIFIED represents the photo with no edits, i.e. the head of the pipeline.
//
// In general, callers want to use the BASELINE unless requirements are specific.
public enum BackingFetchMode {
SOURCE,
BASELINE,
MASTER,
UNMODIFIED
}
public class PhotoImportParams {
// IN:
public File file;
public File final_associated_file = null;
public ImportID import_id;
public PhotoFileSniffer.Options sniffer_options;
public string? exif_md5;
public string? thumbnail_md5;
public string? full_md5;
// IN/OUT:
public Thumbnails? thumbnails;
// OUT:
public PhotoRow row = new PhotoRow();
public Gee.Collection<string>? keywords = null;
public PhotoImportParams(File file, File? final_associated_file, ImportID import_id,
PhotoFileSniffer.Options sniffer_options, string? exif_md5, string? thumbnail_md5, string? full_md5,
Thumbnails? thumbnails = null) {
this.file = file;
this.final_associated_file = final_associated_file;
this.import_id = import_id;
this.sniffer_options = sniffer_options;
this.exif_md5 = exif_md5;
this.thumbnail_md5 = thumbnail_md5;
this.full_md5 = full_md5;
this.thumbnails = thumbnails;
}
// Creates a placeholder import.
public PhotoImportParams.create_placeholder(File file, ImportID import_id) {
this.file = file;
this.import_id = import_id;
this.sniffer_options = PhotoFileSniffer.Options.NO_MD5;
this.exif_md5 = null;
this.thumbnail_md5 = null;
this.full_md5 = null;
this.thumbnails = null;
}
}
public abstract class PhotoTransformationState : Object {
private bool is_broke = false;
// This signal is fired when the Photo object can no longer accept it and reliably return to
// this state.
public virtual signal void broken() {
is_broke = true;
}
public bool is_broken() {
return is_broke;
}
}
public enum Rating {
REJECTED = -1,
UNRATED = 0,
ONE = 1,
TWO = 2,
THREE = 3,
FOUR = 4,
FIVE = 5;
public bool can_increase() {
return this < FIVE;
}
public bool can_decrease() {
return this > REJECTED;
}
public bool is_valid() {
return this >= REJECTED && this <= FIVE;
}
public Rating increase() {
return can_increase() ? this + 1 : this;
}
public Rating decrease() {
return can_decrease() ? this - 1 : this;
}
public int serialize() {
switch (this) {
case REJECTED:
return -1;
case UNRATED:
return 0;
case ONE:
return 1;
case TWO:
return 2;
case THREE:
return 3;
case FOUR:
return 4;
case FIVE:
return 5;
default:
return 0;
}
}
public static Rating unserialize(int value) {
if (value > FIVE)
return FIVE;
else if (value < REJECTED)
return REJECTED;
switch (value) {
case -1:
return REJECTED;
case 0:
return UNRATED;
case 1:
return ONE;
case 2:
return TWO;
case 3:
return THREE;
case 4:
return FOUR;
case 5:
return FIVE;
default:
return UNRATED;
}
}
}
// Photo is an abstract class that allows for applying transformations on-the-fly to a
// particular photo without modifying the backing image file. The interface allows for
// transformations to be stored persistently elsewhere or in memory until they're committed en
// masse to an image file.
public abstract class Photo : PhotoSource, Dateable, Positionable {
// Need to use "thumb" rather than "photo" for historical reasons -- this name is used
// directly to load thumbnails from disk by already-existing filenames
public const string TYPENAME = "thumb";
private const string[] IMAGE_EXTENSIONS = {
// raster formats
"jpg", "jpeg", "jpe",
"tiff", "tif",
"png",
"gif",
"bmp",
"ppm", "pgm", "pbm", "pnm",
// THM are JPEG thumbnails produced by some RAW cameras ... want to support the RAW
// image but not import their thumbnails
"thm",
// less common
"tga", "ilbm", "pcx", "ecw", "img", "sid", "cd5", "fits", "pgf",
// vector
"cgm", "svg", "odg", "eps", "pdf", "swf", "wmf", "emf", "xps",
// 3D
"pns", "jps", "mpo",
// RAW extensions
"3fr", "arw", "srf", "sr2", "bay", "crw", "cr2", "cr3", "cap", "iiq", "eip", "dcs", "dcr", "drf",
"k25", "kdc", "dng", "erf", "fff", "mef", "mos", "mrw", "nef", "nrw", "orf", "ptx", "pef",
"pxn", "r3d", "raf", "raw", "rw2", "rwl", "rwz", "x3f", "srw"
};
// There are assertions in the photo pipeline to verify that the generated (or loaded) pixbuf
// is scaled properly. We have to allow for some wobble here because of rounding errors and
// precision limitations of various subsystems. Pixel-accuracy would be best, but barring that,
// need to just make sure the pixbuf is in the ballpark.
private const int SCALING_FUDGE = 64;
// The number of seconds we should hold onto a precached copy of the original image; if
// it hasn't been accessed in this many seconds, discard it to conserve memory.
private const int SOURCE_PIXBUF_TIME_TO_LIVE_SEC = 10;
// min and max size of source pixbuf cache LRU
private const int SOURCE_PIXBUF_MIN_LRU_COUNT = 1;
private const int SOURCE_PIXBUF_MAX_LRU_COUNT = 3;
// Minimum raw embedded preview size we're willing to accept; any smaller than this, and
// it's probably intended primarily for use only as a thumbnail and won't look good on the
// PhotoPage.
private const int MIN_EMBEDDED_SIZE = 1024;
// Here, we cache the exposure time to avoid paying to access the row every time we
// need to know it. This is initially set in the constructor, and updated whenever
// the exposure time is set (please see set_exposure_time() for details).
private DateTime? cached_exposure_time;
public enum Exception {
NONE = 0,
ORIENTATION = 1 << 0,
CROP = 1 << 1,
REDEYE = 1 << 2,
ADJUST = 1 << 3,
STRAIGHTEN = 1 << 4,
ALL = 0xFFFFFFFF;
public bool prohibits(Exception exception) {
return ((this & exception) != 0);
}
public bool allows(Exception exception) {
return ((this & exception) == 0);
}
}
// NOTE: This class should only be instantiated when row is locked.
private class PhotoTransformationStateImpl : PhotoTransformationState {
private Photo photo;
private Orientation orientation;
private Gee.HashMap<string, KeyValueMap>? transformations;
private PixelTransformer? transformer;
private PixelTransformationBundle? adjustments;
public PhotoTransformationStateImpl(Photo photo, Orientation orientation,
Gee.HashMap<string, KeyValueMap>? transformations, PixelTransformer? transformer,
PixelTransformationBundle? adjustments) {
this.photo = photo;
this.orientation = orientation;
this.transformations = copy_transformations(transformations);
this.transformer = transformer;
this.adjustments = adjustments;
photo.baseline_replaced.connect(on_photo_baseline_replaced);
}
~PhotoTransformationStateImpl() {
photo.baseline_replaced.disconnect(on_photo_baseline_replaced);
}
public Orientation get_orientation() {
return orientation;
}
public Gee.HashMap<string, KeyValueMap>? get_transformations() {
return copy_transformations(transformations);
}
public PixelTransformer? get_transformer() {
return (transformer != null) ? transformer.copy() : null;
}
public PixelTransformationBundle? get_color_adjustments() {
return (adjustments != null) ? adjustments.copy() : null;
}
private static Gee.HashMap<string, KeyValueMap>? copy_transformations(
Gee.HashMap<string, KeyValueMap>? original) {
if (original == null)
return null;
Gee.HashMap<string, KeyValueMap>? clone = new Gee.HashMap<string, KeyValueMap>();
foreach (string object in original.keys)
clone.set(object, original.get(object).copy());
return clone;
}
private void on_photo_baseline_replaced() {
if (!is_broken())
broken();
}
}
private class BackingReaders {
public PhotoFileReader master;
public PhotoFileReader developer;
public PhotoFileReader editable;
}
private class CachedPixbuf {
public Photo photo;
public Gdk.Pixbuf pixbuf;
public Timer last_touched = new Timer();
public CachedPixbuf(Photo photo, Gdk.Pixbuf pixbuf) {
this.photo = photo;
this.pixbuf = pixbuf;
}
}
// The first time we have to run the pipeline on an image, we'll precache
// a copy of the unscaled, unmodified version; this allows us to operate
// directly on the image data quickly without re-fetching it at the top
// of the pipeline, which can cause significant lag with larger images.
//
// This adds a small amount of (automatically garbage-collected) memory
// overhead, but greatly simplifies the pipeline, since scaling can now
// be blithely ignored, and most of the pixel operations are fast enough
// that the app remains responsive, even with 10MP images.
//
// In order to make sure we discard unneeded precaches in a timely fashion,
// we spawn a timer when the unmodified pixbuf is first precached; if the
// timer elapses and the pixbuf hasn't been needed again since then, we'll
// discard it and free up the memory. The cache also has an LRU to prevent
// runaway amounts of memory from being stored (see SOURCE_PIXBUF_LRU_COUNT)
private static Gee.LinkedList<CachedPixbuf>? source_pixbuf_cache = null;
private static uint discard_source_id = 0;
// because fetching individual items from the database is high-overhead, store all of
// the photo row in memory
protected PhotoRow row;
private BackingPhotoRow editable = new BackingPhotoRow();
private BackingReaders readers = new BackingReaders();
private PixelTransformer transformer = null;
private PixelTransformationBundle adjustments = null;
// because file_title is determined by data in row, it should only be accessed when row is locked
private string file_title = null;
private FileMonitor editable_monitor = null;
private OneShotScheduler reimport_editable_scheduler = null;
private OneShotScheduler update_editable_attributes_scheduler = null;
private OneShotScheduler remove_editable_scheduler = null;
protected bool can_rotate_now = true;
// RAW only: developed backing photos.
private Gee.HashMap<RawDeveloper, BackingPhotoRow?>? developments = null;
// Set to true if we want to develop RAW photos into new files.
public static bool develop_raw_photos_to_files { get; set; default = false; }
// This pointer is used to determine which BackingPhotoRow in the PhotoRow to be using at
// any time. It should only be accessed -- read or write -- when row is locked.
protected BackingPhotoRow? backing_photo_row = null;
// This is fired when the photo's editable file is replaced. The image it generates may or
// may not be the same; the altered signal is best for that. null is passed if the editable
// is being added, replaced, or removed (in the appropriate places)
public virtual signal void editable_replaced(File? old_file, File? new_file) {
}
// Fired when one or more of the photo's RAW developments has been changed. This will only
// be fired on RAW photos, and only when a development has been added or removed.
public virtual signal void raw_development_modified() {
}
// This is fired when the photo's baseline file (the file that generates images at the head
// of the pipeline) is replaced. Photo will make every sane effort to only fire this signal
// if the new baseline is the same image-wise (i.e. the pixbufs it generates are essentially
// the same).
public virtual signal void baseline_replaced() {
}
// This is fired when the photo's master is reimported in place. It's fired after all changes
// to the Photo's state have been incorporated into the object and the "altered" signal has
// been fired notifying of the various details that have changed.
public virtual signal void master_reimported(PhotoMetadata? metadata) {
}
// Like "master-reimported", but when a photo's editable has been reimported.
public virtual signal void editable_reimported(PhotoMetadata? metadata) {
}
// Like "master-reimported" but when the baseline file has been reimported. Note that this
// could be the master file OR the editable file.
//
// See BackingFetchMode for more details.
public virtual signal void baseline_reimported(PhotoMetadata? metadata) {
}
// Like "master-reimported" but when the source file has been reimported. Note that this could
// be the master file OR the editable file.
//
// See BackingFetchMode for more details.
public virtual signal void source_reimported(PhotoMetadata? metadata) {
}
// The key to this implementation is that multiple instances of Photo with the
// same PhotoID cannot exist; it is up to the subclasses to ensure this.
protected Photo(PhotoRow row) {
this.row = row;
// normalize user text
this.row.title = prep_title(this.row.title);
this.row.comment = prep_comment(this.row.comment);
// don't need to lock the struct in the constructor (and to do so would hurt startup
// time)
readers.master = row.master.file_format.create_reader(row.master.filepath);
// get the file title of the Photo without using a File object, skipping the separator itself
file_title = Path.get_basename(row.master.filepath);
if (is_string_empty(file_title))
file_title = row.master.filepath;
if (row.editable_id.id != BackingPhotoID.INVALID) {
BackingPhotoRow? e = get_backing_row(row.editable_id);
if (e != null) {
editable = e;
readers.editable = editable.file_format.create_reader(editable.filepath);
} else {
try {
PhotoTable.get_instance().detach_editable(this.row);
} catch (DatabaseError err) {
// ignored
}
// need to remove all transformations as they're keyed to the editable's
// coordinate system
remove_all_transformations(false);
}
}
if (row.master.file_format == PhotoFileFormat.RAW) {
// Fetch development backing photos for RAW.
developments = new Gee.HashMap<RawDeveloper, BackingPhotoRow?>();
foreach (RawDeveloper d in RawDeveloper.as_array()) {
BackingPhotoID id = row.development_ids[d];
if (id.id != BackingPhotoID.INVALID) {
BackingPhotoRow? bpr = get_backing_row(id);
if (bpr != null)
developments.set(d, bpr);
}
}
}
// Set up reader for developer.
if (row.master.file_format == PhotoFileFormat.RAW && developments.has_key(row.developer)) {
BackingPhotoRow r = developments.get(row.developer);
readers.developer = r.file_format.create_reader(r.filepath);
}
// Set the backing photo state appropriately.
if (readers.editable != null) {
backing_photo_row = this.editable;
} else if (row.master.file_format != PhotoFileFormat.RAW) {
backing_photo_row = this.row.master;
} else {
// For RAW photos, the backing photo is either the editable (above) or
// the selected raw development.
if (developments.has_key(row.developer)) {
backing_photo_row = developments.get(row.developer);
} else {
// Use row's backing photo.
backing_photo_row = this.row.master;
}
}
cached_exposure_time = this.row.exposure_time;
}
protected static void init_photo() {
source_pixbuf_cache = new Gee.LinkedList<CachedPixbuf>();
}
protected static void terminate_photo() {
source_pixbuf_cache = null;
if (discard_source_id != 0) {
Source.remove(discard_source_id);
discard_source_id = 0;
}
}
protected virtual void notify_editable_replaced(File? old_file, File? new_file) {
editable_replaced(old_file, new_file);
}
protected virtual void notify_raw_development_modified() {
raw_development_modified();
}
protected virtual void notify_baseline_replaced() {
baseline_replaced();
}
protected virtual void notify_master_reimported(PhotoMetadata? metadata) {
master_reimported(metadata);
}
protected virtual void notify_editable_reimported(PhotoMetadata? metadata) {
editable_reimported(metadata);
}
protected virtual void notify_source_reimported(PhotoMetadata? metadata) {
source_reimported(metadata);
}
protected virtual void notify_baseline_reimported(PhotoMetadata? metadata) {
baseline_reimported(metadata);
}
public override bool internal_delete_backing() throws Error {
bool ret = true;
File file = null;
lock (readers) {
if (readers.editable != null)
file = readers.editable.get_file();
}
detach_editable(true, false);
if (get_master_file_format() == PhotoFileFormat.RAW) {
foreach (RawDeveloper d in RawDeveloper.as_array()) {
delete_raw_development(d);
}
}
if (file != null) {
try {
ret = file.trash(null);
} catch (Error err) {
ret = false;
message("Unable to move editable %s for %s to trash: %s", file.get_path(),
to_string(), err.message);
}
}
// Return false if parent method failed.
return base.internal_delete_backing() && ret;
}
// Fetches the backing state. If it can't be read, the ID is flushed from the database
// for safety. If the ID is invalid or any error occurs, null is returned.
private BackingPhotoRow? get_backing_row(BackingPhotoID id) {
if (id.id == BackingPhotoID.INVALID)
return null;
BackingPhotoRow? backing_row = null;
try {
backing_row = BackingPhotoTable.get_instance().fetch(id);
} catch (DatabaseError err) {
warning("Unable to fetch backing state for %s: %s", to_string(), err.message);
}
if (backing_row == null) {
try {
BackingPhotoTable.get_instance().remove(id);
} catch (DatabaseError err) {
// ignored
}
return null;
}
return backing_row;
}
// Returns true if the given raw development was already made and the developed image
// exists on disk.
public bool is_raw_developer_complete(RawDeveloper d) {
lock (developments) {
return developments.has_key(d) &&
FileUtils.test(developments.get(d).filepath, FileTest.EXISTS);
}
}
// Determines whether a given RAW developer is available for this photo.
public bool is_raw_developer_available(RawDeveloper d) {
lock (developments) {
if (developments.has_key(d))
return true;
}
switch (d) {
case RawDeveloper.SHOTWELL:
return true;
case RawDeveloper.CAMERA:
return false;
case RawDeveloper.EMBEDDED:
try {
PhotoMetadata meta = get_master_metadata();
uint num_previews = meta.get_preview_count();
if (num_previews > 0) {
PhotoPreview? prev = meta.get_preview(num_previews - 1);
// Embedded preview could not be fetched?
if (prev == null)
return false;
Dimensions dims = prev.get_pixel_dimensions();
// Largest embedded preview was an unacceptable size?
int preview_major_axis = (dims.width > dims.height) ? dims.width : dims.height;
if (preview_major_axis < MIN_EMBEDDED_SIZE)
return false;
// Preview was a supported size, use it.
return true;
}
// Image has no embedded preview at all.
return false;
} catch (Error e) {
debug("Error accessing embedded preview. Message: %s", e.message);
}
return false;
default:
assert_not_reached();
}
}
// Reads info on a backing photo and adds it.
// Note: this function was created for importing new photos. It will not
// notify of changes to the developments.
public void add_backing_photo_for_development(RawDeveloper d, BackingPhotoRow bpr, bool notify = true) throws Error {
import_developed_backing_photo(row, d, bpr);
lock (developments) {
developments.set(d, bpr);
}
if (notify)
notify_altered(new Alteration("image", "developer"));
}
public static void import_developed_backing_photo(PhotoRow row, RawDeveloper d,
BackingPhotoRow bpr) throws Error {
File file = File.new_for_path(bpr.filepath);
FileInfo info = file.query_info(DirectoryMonitor.SUPPLIED_ATTRIBUTES,
FileQueryInfoFlags.NOFOLLOW_SYMLINKS, null);
var timestamp = coarsify_date_time(info.get_modification_date_time());
PhotoFileInterrogator interrogator = new PhotoFileInterrogator(
file, PhotoFileSniffer.Options.GET_ALL);
interrogator.interrogate();
DetectedPhotoInformation? detected = interrogator.get_detected_photo_information();
if (detected == null || interrogator.get_is_photo_corrupted()) {
// TODO: Probably should remove from database, but simply exiting for now (prior code
// didn't even do this check)
return;
}
bpr.dim = detected.image_dim;
bpr.filesize = info.get_size();
bpr.timestamp = timestamp;
bpr.original_orientation = detected.metadata != null ? detected.metadata.get_orientation() :
Orientation.TOP_LEFT;
// Add to DB.
BackingPhotoTable.get_instance().add(bpr);
PhotoTable.get_instance().update_raw_development(row, d, bpr.id);
}
// "Develops" a raw photo
// Not thread-safe.
private void develop_photo(RawDeveloper d, bool notify) {
bool wrote_img_to_disk = false;
BackingPhotoRow bps = null;
switch (d) {
case RawDeveloper.SHOTWELL:
try {
// Create file and prep.
bps = d.create_backing_row_for_development(row.master.filepath);
Gdk.Pixbuf? pix = null;
lock (readers) {
// Don't rotate this pixbuf before writing it out. We don't
// need to because we'll display it using the orientation
// from the parent raw file, so rotating it here would cause
// portrait images to rotate _twice_...
pix = get_master_pixbuf(Scaling.for_original(), false);
}
if (pix == null) {
debug("Could not get preview pixbuf");
return;
}
// Write out the JPEG.
PhotoFileWriter writer = PhotoFileFormat.JFIF.create_writer(bps.filepath);
writer.write(pix, Jpeg.Quality.HIGH);
// Remember that we wrote it (we'll only get here if writing
// the jpeg doesn't throw an exception). We do this because
// some cameras' output has non-spec-compliant exif segments
// larger than 64k (exiv2 can't cope with this), so saving
// metadata to the development could fail, but we want to use
// it anyway since the image portion is still valid...
wrote_img_to_disk = true;
// Write out metadata. An exception could get thrown here as
// well, hence the separate check for being able to save the
// image above...
PhotoMetadata meta = get_master_metadata();
PhotoFileMetadataWriter mwriter = PhotoFileFormat.JFIF.create_metadata_writer(bps.filepath);
mwriter.write_metadata(meta);
} catch (Error err) {
debug("Error developing photo: %s", err.message);
} finally {
if (wrote_img_to_disk) {
try {
// Read in backing photo info, add to DB.
add_backing_photo_for_development(d, bps, notify);
notify_raw_development_modified();
} catch (Error e) {
debug("Error adding backing photo as development. Message: %s",
e.message);
}
}
}
break;
case RawDeveloper.CAMERA:
// No development needed.
break;
case RawDeveloper.EMBEDDED:
try {
// Read in embedded JPEG.
PhotoMetadata meta = get_master_metadata();
uint c = meta.get_preview_count();
if (c <= 0)
return;
PhotoPreview? prev = meta.get_preview(c - 1);
if (prev == null) {
debug("Could not get preview from metadata");
return;
}
var pix = prev.flatten();
if (pix == null) {
debug("Could not get preview pixbuf");
return;
}
// Write out file.
bps = d.create_backing_row_for_development(row.master.filepath);
// Peek at data. If we really have a JPEG image, just use it,
// otherwise do GdkPixbuf roundtrip
if (Jpeg.is_jpeg_bytes(pix)) {
var outfile = File.new_for_path(bps.filepath);
outfile.replace_contents(pix.get_data(), null,
false, FileCreateFlags.NONE, null);
} else {
var pixbuf = prev.get_pixbuf();
if (pixbuf == null) {
debug("Could not get preview pixbuf");
return;
}
var writer = PhotoFileFormat.JFIF.create_writer(bps.filepath);
writer.write(pixbuf, Jpeg.Quality.HIGH);
}
// Remember that we wrote it (see above
// case for why this is necessary).
wrote_img_to_disk = true;
// Write out metadata
PhotoFileMetadataWriter mwriter = PhotoFileFormat.JFIF.create_metadata_writer(bps.filepath);
mwriter.write_metadata(meta);
} catch (Error e) {
debug("Error accessing embedded preview. Message: %s", e.message);
return;
} finally {
if (wrote_img_to_disk) {
try {
// Read in backing photo info, add to DB.
add_backing_photo_for_development(d, bps, notify);
notify_raw_development_modified();
} catch (Error e) {
debug("Error adding backing photo as development. Message: %s",
e.message);
}
}
}
break;
default:
assert_not_reached();
}
}
// Sets the developer internally, but does not actually develop the backing file.
public void set_default_raw_developer(RawDeveloper d) {
lock (row) {
row.developer = d;
}
}
// Sets the developer and develops the photo.
public void set_raw_developer(RawDeveloper d, bool notify = true) {
if (get_master_file_format() != PhotoFileFormat.RAW)
return;
// If the caller has asked for 'embedded', but there's a camera development
// available, always prefer that instead, as it's likely to be of higher
// quality and resolution.
if (is_raw_developer_available(RawDeveloper.CAMERA) && (d == RawDeveloper.EMBEDDED))
d = RawDeveloper.CAMERA;
// If the embedded preview is too small to be used in the PhotoPage, don't
// allow EMBEDDED to be chosen.
if (!is_raw_developer_available(RawDeveloper.EMBEDDED) && d != RawDeveloper.CAMERA)
d = RawDeveloper.SHOTWELL;
lock (developments) {
RawDeveloper stale_raw_developer = row.developer;
// Perform development, bail out if it doesn't work.
if (!is_raw_developer_complete(d)) {
develop_photo(d, notify);
}
if (!developments.has_key(d))
return; // we tried!
// Discard changes.
revert_to_master(false);
// Switch master to the new photo.
row.developer = d;
backing_photo_row = developments.get(d);
readers.developer = backing_photo_row.file_format.create_reader(backing_photo_row.filepath);
try {
get_prefetched_copy();
} catch (Error e) {
// couldn't reload the freshly-developed image, nothing to display
return;
}
set_orientation(backing_photo_row.original_orientation);
try {
PhotoTable.get_instance().update_raw_development(row, d, backing_photo_row.id);
} catch (Error e) {
warning("Error updating database: %s", e.message);
}
// Is the 'stale' development _NOT_ a camera-supplied one?
//
// NOTE: When a raw is first developed, both 'stale' and 'incoming' developers
// will be the same, so the second test is required for correct operation.
if ((stale_raw_developer != RawDeveloper.CAMERA) &&
(stale_raw_developer != row.developer)) {
// The 'stale' non-Shotwell development we're using was
// created by us, not the camera, so discard it...
delete_raw_development(stale_raw_developer);
}
// Otherwise, don't delete the paired JPEG, since it is user/camera-created
// and is to be preserved.
}
if (notify)
notify_altered(new Alteration("image", "developer"));
discard_prefetched();
}
public RawDeveloper get_raw_developer() {
return row.developer;
}
// Removes a development from the database, filesystem, etc.
// Returns true if a development was removed, otherwise false.
private bool delete_raw_development(RawDeveloper d) {
bool ret = false;
lock (developments) {
if (!developments.has_key(d))
return false;
// Remove file. If this is a camera-generated JPEG, we trash it;
// otherwise, it was generated by us and should be deleted outright.
debug("Delete raw development: %s %s", this.to_string(), d.to_string());
BackingPhotoRow bpr = developments.get(d);
if (bpr.filepath != null) {
File f = File.new_for_path(bpr.filepath);
try {
if (d == RawDeveloper.CAMERA)
f.trash();
else
f.delete();
} catch (Error e) {
warning("Unable to delete RAW development: %s error: %s", bpr.filepath, e.message);
}
}
// Delete references in DB.
try {
PhotoTable.get_instance().remove_development(row, d);
BackingPhotoTable.get_instance().remove(bpr.id);
} catch (Error e) {
warning("Database error while deleting RAW development: %s", e.message);
}
ret = developments.unset(d);
}
notify_raw_development_modified();
return ret;
}
// Re-do development for photo.
public void redevelop_raw(RawDeveloper d) {
lock (developments) {
delete_raw_development(d);
RawDeveloper dev = d;
if (dev == RawDeveloper.CAMERA)
dev = RawDeveloper.EMBEDDED;
set_raw_developer(dev);
}
}
public override BackingFileState[] get_backing_files_state() {
BackingFileState[] backing = new BackingFileState[0];
lock (row) {
backing += new BackingFileState.from_photo_row(row.master, row.md5);
if (has_editable())
backing += new BackingFileState.from_photo_row(editable, null);
if (is_developed()) {
Gee.Collection<BackingPhotoRow>? dev_rows = get_raw_development_photo_rows();
if (dev_rows != null) {
foreach (BackingPhotoRow r in dev_rows) {
debug("adding: %s", r.filepath);
backing += new BackingFileState.from_photo_row(r, null);
}
}
}
}
return backing;
}
private PhotoFileReader get_backing_reader(BackingFetchMode mode) {
switch (mode) {
case BackingFetchMode.MASTER:
return get_master_reader();
case BackingFetchMode.BASELINE:
return get_baseline_reader();
case BackingFetchMode.SOURCE:
return get_source_reader();
case BackingFetchMode.UNMODIFIED:
if (this.get_master_file_format() == PhotoFileFormat.RAW)
return get_raw_developer_reader();
else
return get_master_reader();
default:
error("Unknown backing fetch mode %s", mode.to_string());
}
}
private PhotoFileReader get_master_reader() {
lock (readers) {
return readers.master;
}
}
protected PhotoFileReader? get_editable_reader() {
lock (readers) {
return readers.editable;
}
}
// Returns a reader for the head of the pipeline.
private PhotoFileReader get_baseline_reader() {
lock (readers) {
if (readers.editable != null)
return readers.editable;
if (readers.developer != null)
return readers.developer;
return readers.master;
}
}
// Returns a reader for the photo file that is the source of the image.
private PhotoFileReader get_source_reader() {
lock (readers) {
if (readers.editable != null)
return readers.editable;
if (readers.developer != null)
return readers.developer;
return readers.master;
}
}
// Returns the reader used for reading the RAW development.
private PhotoFileReader get_raw_developer_reader() {
lock (readers) {
return readers.developer;
}
}
public bool is_developed() {
lock (readers) {
return readers.developer != null;
}
}
public bool has_editable() {
lock (readers) {
return readers.editable != null;
}
}
public bool does_master_exist() {
lock (readers) {
return readers.master.file_exists();
}
}
// Returns false if the backing editable does not exist OR the photo does not have an editable
public bool does_editable_exist() {
lock (readers) {
return readers.editable != null ? readers.editable.file_exists() : false;
}
}
public bool is_master_baseline() {
lock (readers) {
return readers.editable == null;
}
}
public bool is_master_source() {
return !has_editable();
}
public bool is_editable_baseline() {
lock (readers) {
return readers.editable != null;
}
}
public bool is_editable_source() {
return has_editable();
}
public BackingPhotoRow get_master_photo_row() {
lock (row) {
return row.master;
}
}
public BackingPhotoRow? get_editable_photo_row() {
lock (row) {
// ternary doesn't work here
if (row.editable_id.is_valid())
return editable;
else
return null;
}
}
public Gee.Collection<BackingPhotoRow>? get_raw_development_photo_rows() {
lock (row) {
return developments != null ? developments.values : null;
}
}
public BackingPhotoRow? get_raw_development_photo_row(RawDeveloper d) {
lock (row) {
return developments != null ? developments.get(d) : null;
}
}
public PhotoFileFormat? get_editable_file_format() {
PhotoFileReader? reader = get_editable_reader();
if (reader == null)
return null;
// ternary operator doesn't work here
return reader.get_file_format();
}
public PhotoFileFormat get_export_format_for_parameters(ExportFormatParameters params) {
PhotoFileFormat result = PhotoFileFormat.get_system_default_format();
switch (params.mode) {
case ExportFormatMode.UNMODIFIED:
result = get_master_file_format();
break;
case ExportFormatMode.CURRENT:
result = get_best_export_file_format();
break;
case ExportFormatMode.SPECIFIED:
result = params.specified_format;
break;
default:
error("get_export_format_for_parameters: unsupported export format mode");
}
return result;
}
public string get_export_basename_for_parameters(ExportFormatParameters params) {
string? result = null;
switch (params.mode) {
case ExportFormatMode.UNMODIFIED:
result = get_master_file().get_basename();
break;
case ExportFormatMode.CURRENT:
case ExportFormatMode.SPECIFIED:
return get_export_basename(get_export_format_for_parameters(params));
default:
error("get_export_basename_for_parameters: unsupported export format mode");
}
assert (result != null);
return result;
}
// This method interrogates the specified file and returns a PhotoRow with all relevant
// information about it. It uses the PhotoFileInterrogator to do so. The caller should create
// a PhotoFileInterrogator with the proper options prior to calling. prepare_for_import()
// will determine what's been discovered and fill out in the PhotoRow or return the relevant
// objects and information. If Thumbnails is not null, thumbnails suitable for caching or
// framing will be returned as well. Note that this method will call interrogate() and
// perform all error-handling; the caller simply needs to construct the object.
//
// This is the acid-test; if unable to generate a pixbuf or thumbnails, that indicates the
// photo itself is bogus and should be discarded.
//
// NOTE: This method is thread-safe.
public static ImportResult prepare_for_import(PhotoImportParams params) {
#if MEASURE_IMPORT
Timer total_time = new Timer();
#endif
File file = params.file;
FileInfo info = null;
try {
info = file.query_info(DirectoryMonitor.SUPPLIED_ATTRIBUTES,
FileQueryInfoFlags.NOFOLLOW_SYMLINKS, null);
} catch (Error err) {
return ImportResult.FILE_ERROR;
}
if (info.get_file_type() != FileType.REGULAR)
return ImportResult.NOT_A_FILE;
if (!is_file_image(file)) {
message("Not importing %s: Not an image file", file.get_path());
return ImportResult.NOT_AN_IMAGE;
}
if (!PhotoFileFormat.is_file_supported(file)) {
message("Not importing %s: Unsupported extension", file.get_path());
return ImportResult.UNSUPPORTED_FORMAT;
}
var timestamp = coarsify_date_time(info.get_modification_date_time());
// if all MD5s supplied, don't sniff for them
if (params.exif_md5 != null && params.thumbnail_md5 != null && params.full_md5 != null)
params.sniffer_options |= PhotoFileSniffer.Options.NO_MD5;
// interrogate file for photo information
PhotoFileInterrogator interrogator = new PhotoFileInterrogator(file, params.sniffer_options);
try {
interrogator.interrogate();
} catch (Error err) {
warning("Unable to interrogate photo file %s: %s", file.get_path(), err.message);
return ImportResult.DECODE_ERROR;
}
if (interrogator.get_is_photo_corrupted())
return ImportResult.NOT_AN_IMAGE;
// if not detected photo information, unsupported
DetectedPhotoInformation? detected = interrogator.get_detected_photo_information();
if (detected == null || detected.file_format == PhotoFileFormat.UNKNOWN)
return ImportResult.UNSUPPORTED_FORMAT;
// copy over supplied MD5s if provided
if ((params.sniffer_options & PhotoFileSniffer.Options.NO_MD5) != 0) {
detected.exif_md5 = params.exif_md5;
detected.thumbnail_md5 = params.thumbnail_md5;
detected.md5 = params.full_md5;
}
Orientation orientation = Orientation.TOP_LEFT;
DateTime? exposure_time = null;
string title = "";
GpsCoords gps_coords = GpsCoords();
string comment = "";
Rating rating = Rating.UNRATED;
#if TRACE_MD5
debug("importing MD5 %s: exif=%s preview=%s full=%s", file.get_path(), detected.exif_md5,
detected.thumbnail_md5, detected.md5);
#endif
if (detected.metadata != null) {
MetadataDateTime? date_time = detected.metadata.get_exposure_date_time();
if (date_time != null)
exposure_time = date_time.get_timestamp();
orientation = detected.metadata.get_orientation();
title = detected.metadata.get_title();
gps_coords = detected.metadata.get_gps_coords();
comment = detected.metadata.get_comment();
params.keywords = detected.metadata.get_keywords();
rating = detected.metadata.get_rating();
}
// verify basic mechanics of photo: RGB 8-bit encoding
if (detected.colorspace != Gdk.Colorspace.RGB
|| detected.channels < 3
|| detected.bits_per_channel != 8) {
message("Not importing %s: Unsupported color format", file.get_path());
return ImportResult.UNSUPPORTED_FORMAT;
}
// photo information is initially stored in database in raw, non-modified format ... this is
// especially important dealing with dimensions and orientation ... Don't trust EXIF
// dimensions, they can lie or not be present
params.row.photo_id = PhotoID();
params.row.master.filepath = file.get_path();
params.row.master.dim = detected.image_dim;
params.row.master.filesize = info.get_size();
params.row.master.timestamp = timestamp;
params.row.exposure_time = exposure_time;
params.row.orientation = orientation;
params.row.master.original_orientation = orientation;
params.row.import_id = params.import_id;
params.row.event_id = EventID();
params.row.transformations = null;
params.row.md5 = detected.md5;
params.row.thumbnail_md5 = detected.thumbnail_md5;
params.row.exif_md5 = detected.exif_md5;
params.row.time_created = 0;
params.row.flags = 0;
params.row.master.file_format = detected.file_format;
params.row.title = title;
params.row.gps_coords = gps_coords;
params.row.comment = comment;
params.row.rating = rating;
if (params.thumbnails != null) {
PhotoFileReader reader = params.row.master.file_format.create_reader(
params.row.master.filepath);
reader.set_role (PhotoFileReader.Role.THUMBNAIL);
try {
ThumbnailCache.generate_for_photo(params.thumbnails, reader, params.row.orientation,
params.row.master.dim);
} catch (Error err) {
return ImportResult.convert_error(err, ImportResult.FILE_ERROR);
}
}
#if MEASURE_IMPORT
debug("IMPORT: total=%lf", total_time.elapsed());
#endif
return ImportResult.SUCCESS;
}
public static void create_pre_import(PhotoImportParams params) {
File file = params.file;
params.row.photo_id = PhotoID();
params.row.master.filepath = file.get_path();
params.row.master.dim = Dimensions(0,0);
params.row.master.filesize = 0;
params.row.master.timestamp = null;
params.row.exposure_time = null;
params.row.orientation = Orientation.TOP_LEFT;
params.row.master.original_orientation = Orientation.TOP_LEFT;
params.row.import_id = params.import_id;
params.row.event_id = EventID();
params.row.transformations = null;
params.row.md5 = null;
params.row.thumbnail_md5 = null;
params.row.exif_md5 = null;
params.row.time_created = 0;
params.row.flags = 0;
params.row.master.file_format = PhotoFileFormat.JFIF;
params.row.title = null;
params.row.gps_coords = GpsCoords();
params.row.comment = null;
params.row.rating = Rating.UNRATED;
PhotoFileInterrogator interrogator = new PhotoFileInterrogator(params.file, params.sniffer_options);
try {
interrogator.interrogate();
DetectedPhotoInformation? detected = interrogator.get_detected_photo_information();
if (detected != null && !interrogator.get_is_photo_corrupted() && detected.file_format != PhotoFileFormat.UNKNOWN)
params.row.master.file_format = detected.file_format;
} catch (Error err) {
debug("Unable to interrogate photo file %s: %s", file.get_path(), err.message);
}
}
protected BackingPhotoRow? query_backing_photo_row(File file, PhotoFileSniffer.Options options,
out DetectedPhotoInformation detected) throws Error {
detected = null;
BackingPhotoRow backing = new BackingPhotoRow();
// get basic file information
FileInfo info = null;
try {
info = file.query_info(DirectoryMonitor.SUPPLIED_ATTRIBUTES,
FileQueryInfoFlags.NOFOLLOW_SYMLINKS, null);
} catch (Error err) {
critical("Unable to read file information for %s: %s", file.get_path(), err.message);
return null;
}
// sniff photo information
PhotoFileInterrogator interrogator = new PhotoFileInterrogator(file, options);
interrogator.interrogate();
detected = interrogator.get_detected_photo_information();
if (detected == null || interrogator.get_is_photo_corrupted()) {
critical("Photo update: %s no longer a recognized image", to_string());
return null;
}
var modification_time = coarsify_date_time(info.get_modification_date_time());
backing.filepath = file.get_path();
backing.timestamp = modification_time;
backing.filesize = info.get_size();
backing.file_format = detected.file_format;
backing.dim = detected.image_dim;
backing.original_orientation = detected.metadata != null
? detected.metadata.get_orientation() : Orientation.TOP_LEFT;
return backing;
}
public abstract class ReimportMasterState {
}
private class ReimportMasterStateImpl : ReimportMasterState {
public PhotoRow row = new PhotoRow();
public PhotoMetadata? metadata;
public string[] alterations;
public bool metadata_only = false;
public ReimportMasterStateImpl(PhotoRow row, PhotoMetadata? metadata, string[] alterations) {
this.row = row;
this.metadata = metadata;
this.alterations = alterations;
}
}
public abstract class ReimportEditableState {
}
private class ReimportEditableStateImpl : ReimportEditableState {
public BackingPhotoRow backing_state = new BackingPhotoRow();
public PhotoMetadata? metadata;
public bool metadata_only = false;
public ReimportEditableStateImpl(BackingPhotoRow backing_state, PhotoMetadata? metadata) {
this.backing_state = backing_state;
this.metadata = metadata;
}
}
public abstract class ReimportRawDevelopmentState {
}
private class ReimportRawDevelopmentStateImpl : ReimportRawDevelopmentState {
public class DevToReimport {
public BackingPhotoRow backing = new BackingPhotoRow();
public PhotoMetadata? metadata;
public DevToReimport(BackingPhotoRow backing, PhotoMetadata? metadata) {
this.backing = backing;
this.metadata = metadata;
}
}
public Gee.Collection<DevToReimport> list = new Gee.ArrayList<DevToReimport>();
public bool metadata_only = false;
public ReimportRawDevelopmentStateImpl() {
}
public void add(BackingPhotoRow backing, PhotoMetadata? metadata) {
list.add(new DevToReimport(backing, metadata));
}
public int get_size() {
return list.size;
}
}
// This method is thread-safe. If returns false the photo should be marked offline (in the
// main UI thread).
public bool prepare_for_reimport_master(out ReimportMasterState reimport_state) throws Error {
reimport_state = null;
File file = get_master_reader().get_file();
DetectedPhotoInformation detected;
BackingPhotoRow? backing = query_backing_photo_row(file, PhotoFileSniffer.Options.GET_ALL,
out detected);
if (backing == null) {
warning("Unable to retrieve photo state from %s for reimport", file.get_path());
return false;
}
// verify basic mechanics of photo: RGB 8-bit encoding
if (detected.colorspace != Gdk.Colorspace.RGB
|| detected.channels < 3
|| detected.bits_per_channel != 8) {
warning("Not re-importing %s: Unsupported color format", file.get_path());
return false;
}
// start with existing row and update appropriate fields
PhotoRow updated_row = new PhotoRow();
lock (row) {
updated_row = row;
}
// build an Alteration list for the relevant changes
string[] list = new string[0];
if (updated_row.md5 != detected.md5)
list += "metadata:md5";
if (updated_row.master.original_orientation != backing.original_orientation) {
list += "image:orientation";
updated_row.master.original_orientation = backing.original_orientation;
}
GpsCoords gps_coords = GpsCoords();
if (detected.metadata != null) {
MetadataDateTime? date_time = detected.metadata.get_exposure_date_time();
if (date_time != null && updated_row.exposure_time != null &&
!updated_row.exposure_time.equal(date_time.get_timestamp()))
list += "metadata:exposure-time";
if (updated_row.title != detected.metadata.get_title())
list += "metadata:name";
gps_coords = detected.metadata.get_gps_coords();
if (updated_row.gps_coords != gps_coords)
list += "metadata:gps";
if (updated_row.comment != detected.metadata.get_comment())
list += "metadata:comment";
if (updated_row.rating != detected.metadata.get_rating())
list += "metadata:rating";
}
updated_row.master = backing;
updated_row.md5 = detected.md5;
updated_row.exif_md5 = detected.exif_md5;
updated_row.thumbnail_md5 = detected.thumbnail_md5;
PhotoMetadata? metadata = null;
if (detected.metadata != null) {
metadata = detected.metadata;
MetadataDateTime? date_time = detected.metadata.get_exposure_date_time();
if (date_time != null)
updated_row.exposure_time = date_time.get_timestamp();
updated_row.gps_coords = gps_coords;
updated_row.title = detected.metadata.get_title();
updated_row.comment = detected.metadata.get_comment();
updated_row.rating = detected.metadata.get_rating();
}
reimport_state = new ReimportMasterStateImpl(updated_row, metadata, list);
return true;
}
protected abstract void apply_user_metadata_for_reimport(PhotoMetadata metadata);
// This method is not thread-safe and should be called in the main thread.
public void finish_reimport_master(ReimportMasterState state) throws DatabaseError {
ReimportMasterStateImpl reimport_state = (ReimportMasterStateImpl) state;
PhotoTable.get_instance().reimport(reimport_state.row);
lock (row) {
// Copy row while preserving reference to master.
BackingPhotoRow original_master = row.master;
row = reimport_state.row;
row.master = original_master;
row.master.copy_from(reimport_state.row.master);
if (!reimport_state.metadata_only)
remove_all_transformations(false);
}
if (reimport_state.metadata != null)
apply_user_metadata_for_reimport(reimport_state.metadata);
if (!reimport_state.metadata_only) {
reimport_state.alterations += "image:master";
if (is_master_baseline())
reimport_state.alterations += "image:baseline";
}
if (reimport_state.alterations.length > 0)
notify_altered(new Alteration.from_array(reimport_state.alterations));
notify_master_reimported(reimport_state.metadata);
if (is_master_baseline())
notify_baseline_reimported(reimport_state.metadata);
if (is_master_source())
notify_source_reimported(reimport_state.metadata);
}
// Verifies a file for reimport. Returns the file's detected photo info.
private bool verify_file_for_reimport(File file, out BackingPhotoRow backing,
out DetectedPhotoInformation detected) throws Error {
backing = query_backing_photo_row(file, PhotoFileSniffer.Options.NO_MD5,
out detected);
if (backing == null) {
return false;
}
// verify basic mechanics of photo: RGB 8-bit encoding
if (detected.colorspace != Gdk.Colorspace.RGB
|| detected.channels < 3
|| detected.bits_per_channel != 8) {
warning("Not re-importing %s: Unsupported color format", file.get_path());
return false;
}
return true;
}
// This method is thread-safe. Returns false if the photo has no associated editable.
public bool prepare_for_reimport_editable(out ReimportEditableState state) throws Error {
state = null;
File? file = get_editable_file();
if (file == null)
return false;
DetectedPhotoInformation detected;
BackingPhotoRow backing;
if (!verify_file_for_reimport(file, out backing, out detected))
return false;
state = new ReimportEditableStateImpl(backing, detected.metadata);
return true;
}
// This method is not thread-safe. It should be called by the main thread.
public void finish_reimport_editable(ReimportEditableState state) throws DatabaseError {
BackingPhotoID editable_id = get_editable_id();
if (editable_id.is_invalid())
return;
ReimportEditableStateImpl reimport_state = (ReimportEditableStateImpl) state;
if (!reimport_state.metadata_only) {
BackingPhotoTable.get_instance().update(reimport_state.backing_state);
lock (row) {
editable = reimport_state.backing_state;
set_orientation(reimport_state.backing_state.original_orientation);
remove_all_transformations(false);
}
} else {
set_orientation(reimport_state.backing_state.original_orientation);
}
if (reimport_state.metadata != null) {
set_title(reimport_state.metadata.get_title());
set_gps_coords(reimport_state.metadata.get_gps_coords());
set_comment(reimport_state.metadata.get_comment());
set_rating(reimport_state.metadata.get_rating());
apply_user_metadata_for_reimport(reimport_state.metadata);
}
string list = "metadata:name,image:orientation,metadata:rating,metadata:exposure-time";
if (!reimport_state.metadata_only)
list += "image:editable,image:baseline";
notify_altered(new Alteration.from_list(list));
notify_editable_reimported(reimport_state.metadata);
if (is_editable_baseline())
notify_baseline_reimported(reimport_state.metadata);
if (is_editable_source())
notify_source_reimported(reimport_state.metadata);
}
// This method is thread-safe. Returns false if the photo has no associated RAW developments.
public bool prepare_for_reimport_raw_development(out ReimportRawDevelopmentState state) throws Error {
state = null;
Gee.Collection<File>? files = get_raw_developer_files();
if (files == null)
return false;
ReimportRawDevelopmentStateImpl reimport_state = new ReimportRawDevelopmentStateImpl();
foreach (File file in files) {
DetectedPhotoInformation detected;
BackingPhotoRow backing;
if (!verify_file_for_reimport(file, out backing, out detected))
continue;
reimport_state.add(backing, detected.metadata);
}
state = reimport_state;
return reimport_state.get_size() > 0;
}
// This method is not thread-safe. It should be called by the main thread.
public void finish_reimport_raw_development(ReimportRawDevelopmentState state) throws DatabaseError {
if (this.get_master_file_format() != PhotoFileFormat.RAW)
return;
ReimportRawDevelopmentStateImpl reimport_state = (ReimportRawDevelopmentStateImpl) state;
foreach (ReimportRawDevelopmentStateImpl.DevToReimport dev in reimport_state.list) {
if (!reimport_state.metadata_only) {
BackingPhotoTable.get_instance().update(dev.backing);
lock (row) {
// Refresh raw developments.
foreach (RawDeveloper d in RawDeveloper.as_array()) {
BackingPhotoID id = row.development_ids[d];
if (id.id != BackingPhotoID.INVALID) {
BackingPhotoRow? bpr = get_backing_row(id);
if (bpr != null)
developments.set(d, bpr);
}
}
}
}
}
string list = "metadata:name,image:orientation,metadata:rating,metadata:exposure-time";
if (!reimport_state.metadata_only)
list += "image:editable,image:baseline";
notify_altered(new Alteration.from_list(list));
notify_raw_development_modified();
}
public override string get_typename() {
return TYPENAME;
}
public override int64 get_instance_id() {
return get_photo_id().id;
}
public override string get_source_id() {
// Because of historical reasons, need to format Photo's source ID without a dash for
// ThumbnailCache. Note that any future routine designed to tear a source ID apart and
// locate by typename will need to account for this exception.
return ("%s%016" + int64.FORMAT_MODIFIER + "x").printf(get_typename(), get_instance_id());
}
// Use this only if the master file's modification time has been changed (i.e. touched)
public void set_master_timestamp(FileInfo info) {
var modification = coarsify_date_time(info.get_modification_date_time());
try {
lock (row) {
if (row.master.timestamp.equal(modification))
return;
PhotoTable.get_instance().update_timestamp(row.photo_id, modification);
row.master.timestamp = modification;
}
} catch (Error err) {
AppWindow.database_error(err);
return;
}
if (is_master_baseline())
notify_altered(new Alteration.from_list("metadata:master-timestamp,metadata:baseline-timestamp"));
else
notify_altered(new Alteration("metadata", "master-timestamp"));
}
// Use this only if the editable file's modification time has been changed (i.e. touched)
public void update_editable_modification_time(FileInfo info) throws Error {
var modification = coarsify_date_time(info.get_modification_date_time());
bool altered = false;
lock (row) {
if (row.editable_id.is_valid() && !editable.timestamp.equal(modification)) {
BackingPhotoTable.get_instance().update_timestamp(row.editable_id,
modification);
editable.timestamp = modification;
altered = true;
}
}
if (altered)
notify_altered(new Alteration.from_list("metadata:editable-timestamp,metadata:baseline-timestamp"));
}
// Most useful if the appropriate SourceCollection is frozen while calling this.
public static void update_many_editable_timestamps(Gee.Map<Photo, FileInfo> map)
throws DatabaseError {
DatabaseTable.begin_transaction();
foreach (Photo photo in map.keys) {
try {
photo.update_editable_modification_time(map.get(photo));
} catch (Error err) {
debug("Failed to update modification time: %s", err.message);
}
}
DatabaseTable.commit_transaction();
}
public override PhotoFileFormat get_preferred_thumbnail_format() {
return (get_file_format().can_write_image()) ? get_file_format() :
PhotoFileFormat.get_system_default_format();
}
public override Gdk.Pixbuf? create_thumbnail(int scale) throws Error {
return get_pixbuf(Scaling.for_best_fit(scale, true));
}
public static bool is_file_image(File file) {
// if it's a supported image file, by definition it's an image file, otherwise check the
// master list of common image extensions (checking this way allows for extensions to be
// added to various PhotoFileFormats without having to also add them to IMAGE_EXTENSIONS)
return PhotoFileFormat.is_file_supported(file)
? true : is_extension_found(file.get_basename(), IMAGE_EXTENSIONS);
}
private static bool is_extension_found(string basename, string[] extensions) {
string name, ext;
disassemble_filename(basename, out name, out ext);
if (ext == null)
return false;
// treat extensions as case-insensitive
ext = ext.down();
// search supported list
foreach (string extension in extensions) {
if (ext == extension)
return true;
}
return false;
}
// This is not thread-safe. Obviously, at least one field must be non-null for this to be
// effective, although there is no guarantee that any one will be sufficient. file_format
// should be UNKNOWN if not to require matching file formats.
public static bool is_duplicate(File? file, string? thumbnail_md5, string? full_md5,
PhotoFileFormat file_format) {
#if !NO_DUPE_DETECTION
return PhotoTable.get_instance().has_duplicate(file, thumbnail_md5, full_md5, file_format);
#else
return false;
#endif
}
protected static PhotoID[]? get_duplicate_ids(File? file, string? thumbnail_md5, string? full_md5,
PhotoFileFormat file_format) {
#if !NO_DUPE_DETECTION
return PhotoTable.get_instance().get_duplicate_ids(file, thumbnail_md5, full_md5, file_format);
#else
return null;
#endif
}
// Conforms to GetDatabaseSourceKey
public static int64 get_photo_key(DataSource source) {
return ((LibraryPhoto) source).get_photo_id().id;
}
// Data element accessors ... by making these thread-safe, and by the remainder of this class
// (and subclasses) accessing row *only* through these, helps ensure this object is suitable
// for threads. This implementation is specifically for PixbufCache to work properly.
//
// Much of the setter's thread-safety (especially in regard to writing to the database) is
// that there is a single Photo object per row of the database. The PhotoTable is accessed
// elsewhere in the system (usually for aggregate and search functions). Those would need to
// be factored and locked in order to guarantee full thread safety.
//
// Also note there is a certain amount of paranoia here. Many of PhotoRow's elements are
// currently static, with no setters to change them. However, since some of these may become
// mutable in the future, the entire structure is locked. If performance becomes an issue,
// more fine-tuned locking may be implemented -- another reason to *only* use these getters
// and setters inside this class.
public override File get_file() {
return get_source_reader().get_file();
}
// This should only be used when the photo's master backing file has been renamed; if it's been
// altered, use update().
public void set_master_file(File file) {
string filepath = file.get_path();
bool altered = false;
bool is_baseline = false;
bool is_source = false;
bool name_changed = false;
File? old_file = null;
try {
lock (row) {
lock (readers) {
old_file = readers.master.get_file();
if (!file.equal(old_file)) {
PhotoTable.get_instance().set_filepath(get_photo_id(), filepath);
row.master.filepath = filepath;
file_title = file.get_basename();
readers.master = row.master.file_format.create_reader(filepath);
altered = true;
is_baseline = is_master_baseline();
is_source = is_master_source();
name_changed = is_string_empty(row.title)
&& old_file.get_basename() != file.get_basename();
}
}
}
} catch (Error err) {
AppWindow.database_error(err);
}
if (altered) {
notify_master_replaced(old_file, file);
if (is_baseline)
notify_baseline_replaced();
string[] alteration_list = new string[0];
alteration_list += "backing:master";
// because the name of the photo is determined by its file title if no user title is present,
// signal metadata has altered
if (name_changed)
alteration_list += "metadata:name";
if (is_source)
alteration_list += "backing:source";
if (is_baseline)
alteration_list += "backing:baseline";
notify_altered(new Alteration.from_array(alteration_list));
}
}
// This should only be used when the photo's editable file has been renamed. If it's been
// altered, use update(). DO NOT USE THIS TO ATTACH A NEW EDITABLE FILE TO THE PHOTO.
public void set_editable_file(File file) {
string filepath = file.get_path();
bool altered = false;
bool is_baseline = false;
bool is_source = false;
File? old_file = null;
try {
lock (row) {
lock (readers) {
old_file = (readers.editable != null) ? readers.editable.get_file() : null;
if (old_file != null && !old_file.equal(file)) {
BackingPhotoTable.get_instance().set_filepath(row.editable_id, filepath);
editable.filepath = filepath;
readers.editable = editable.file_format.create_reader(filepath);
altered = true;
is_baseline = is_editable_baseline();
is_source = is_editable_source();
}
}
}
} catch (Error err) {
AppWindow.database_error(err);
}
if (altered) {
notify_editable_replaced(old_file, file);
if (is_baseline)
notify_baseline_replaced();
string[] alteration_list = new string[0];
alteration_list += "backing:editable";
if (is_baseline)
alteration_list += "backing:baseline";
if (is_source)
alteration_list += "backing:source";
notify_altered(new Alteration.from_array(alteration_list));
}
}
// Also makes sense to freeze the SourceCollection during this operation.
public static void set_many_editable_file(Gee.Map<Photo, File> map) throws DatabaseError {
DatabaseTable.begin_transaction();
Gee.MapIterator<Photo, File> map_iter = map.map_iterator();
while (map_iter.next())
map_iter.get_key().set_editable_file(map_iter.get_value());
DatabaseTable.commit_transaction();
}
// Returns the file generating pixbufs, that is, the baseline if present, the backing
// file if not.
public File get_actual_file() {
return get_baseline_reader().get_file();
}
public override File get_master_file() {
return get_master_reader().get_file();
}
public File? get_editable_file() {
PhotoFileReader? reader = get_editable_reader();
return reader != null ? reader.get_file() : null;
}
public Gee.Collection<File>? get_raw_developer_files() {
if (get_master_file_format() != PhotoFileFormat.RAW)
return null;
Gee.ArrayList<File> ret = new Gee.ArrayList<File>();
lock (row) {
foreach (BackingPhotoRow row in developments.values)
ret.add(File.new_for_path(row.filepath));
}
return ret;
}
public File get_source_file() {
return get_source_reader().get_file();
}
public PhotoFileFormat get_file_format() {
lock (row) {
return backing_photo_row.file_format;
}
}
public PhotoFileFormat get_best_export_file_format() {
PhotoFileFormat file_format = get_file_format();
if (!file_format.can_write())
file_format = PhotoFileFormat.get_system_default_format();
return file_format;
}
public PhotoFileFormat get_master_file_format() {
lock (row) {
return readers.master.get_file_format();
}
}
public override DateTime? get_timestamp() {
lock (row) {
return backing_photo_row.timestamp;
}
}
public PhotoID get_photo_id() {
lock (row) {
return row.photo_id;
}
}
// This is NOT thread-safe.
public override inline EventID get_event_id() {
return row.event_id;
}
// This is NOT thread-safe.
public inline int64 get_raw_event_id() {
return row.event_id.id;
}
public override ImportID get_import_id() {
lock (row) {
return row.import_id;
}
}
protected BackingPhotoID get_editable_id() {
lock (row) {
return row.editable_id;
}
}
public override string get_master_md5() {
lock (row) {
return row.md5;
}
}
// Flags' meanings are determined by subclasses. Top 16 flags (0xFFFF000000000000) reserved
// for Photo.
public uint64 get_flags() {
lock (row) {
return row.flags;
}
}
private void notify_flags_altered(Alteration? additional_alteration) {
Alteration alteration = new Alteration("metadata", "flags");
if (additional_alteration != null)
alteration = alteration.compress(additional_alteration);
notify_altered(alteration);
}
public uint64 replace_flags(uint64 flags, Alteration? additional_alteration = null) {
bool committed;
lock (row) {
committed = PhotoTable.get_instance().replace_flags(get_photo_id(), flags);
if (committed)
row.flags = flags;
}
if (committed)
notify_flags_altered(additional_alteration);
return flags;
}
public bool is_flag_set(uint64 mask) {
lock (row) {
return internal_is_flag_set(row.flags, mask);
}
}
public uint64 add_flags(uint64 mask, Alteration? additional_alteration = null) {
uint64 flags = 0;
bool committed = false;
lock (row) {
flags = internal_add_flags(row.flags, mask);
if (row.flags != flags) {
committed = PhotoTable.get_instance().replace_flags(get_photo_id(), flags);
if (committed)
row.flags = flags;
}
}
if (committed)
notify_flags_altered(additional_alteration);
return flags;
}
public uint64 remove_flags(uint64 mask, Alteration? additional_alteration = null) {
uint64 flags = 0;
bool committed = false;
lock (row) {
flags = internal_remove_flags(row.flags, mask);
if (row.flags != flags) {
committed = PhotoTable.get_instance().replace_flags(get_photo_id(), flags);
if (committed)
row.flags = flags;
}
}
if (committed)
notify_flags_altered(additional_alteration);
return flags;
}
public uint64 add_remove_flags(uint64 add, uint64 remove, Alteration? additional_alteration = null) {
uint64 flags = 0;
bool committed = false;
lock (row) {
flags = (row.flags | add) & ~remove;
if (row.flags != flags) {
committed = PhotoTable.get_instance().replace_flags(get_photo_id(), flags);
if (committed)
row.flags = flags;
}
}
if (committed)
notify_flags_altered(additional_alteration);
return flags;
}
public static void add_remove_many_flags(Gee.Collection<Photo>? add, uint64 add_mask,
Alteration? additional_add_alteration, Gee.Collection<Photo>? remove, uint64 remove_mask,
Alteration? additional_remove_alteration) throws DatabaseError {
DatabaseTable.begin_transaction();
if (add != null) {
foreach (Photo photo in add)
photo.add_flags(add_mask, additional_add_alteration);
}
if (remove != null) {
foreach (Photo photo in remove)
photo.remove_flags(remove_mask, additional_remove_alteration);
}
DatabaseTable.commit_transaction();
}
public uint64 toggle_flags(uint64 mask, Alteration? additional_alteration = null) {
uint64 flags = 0;
bool committed = false;
lock (row) {
flags = row.flags ^ mask;
if (row.flags != flags) {
committed = PhotoTable.get_instance().replace_flags(get_photo_id(), flags);
if (committed)
row.flags = flags;
}
}
if (committed)
notify_flags_altered(additional_alteration);
return flags;
}
public bool is_master_metadata_dirty() {
lock (row) {
return row.metadata_dirty;
}
}
public void set_master_metadata_dirty(bool dirty) throws Error {
bool committed = false;
lock (row) {
if (row.metadata_dirty != dirty) {
PhotoTable.get_instance().set_metadata_dirty(get_photo_id(), dirty);
row.metadata_dirty = dirty;
committed = true;
}
}
if (committed)
notify_altered(new Alteration("metadata", "master-dirty"));
}
public override Rating get_rating() {
lock (row) {
return row.rating;
}
}
public override void set_rating(Rating rating) {
bool committed = false;
lock (row) {
if (rating != row.rating && rating.is_valid()) {
committed = PhotoTable.get_instance().set_rating(get_photo_id(), rating);
if (committed)
row.rating = rating;
}
}
if (committed)
notify_altered(new Alteration("metadata", "rating"));
}
public override void increase_rating() {
lock (row) {
set_rating(row.rating.increase());
}
}
public override void decrease_rating() {
lock (row) {
set_rating(row.rating.decrease());
}
}
protected override void commit_backlinks(SourceCollection? sources, string? backlinks) {
// For now, only one link state may be stored in the database ... if this turns into a
// problem, will use SourceCollection to determine where to store it.
try {
PhotoTable.get_instance().update_backlinks(get_photo_id(), backlinks);
lock (row) {
row.backlinks = backlinks;
}
} catch (DatabaseError err) {
warning("Unable to update link state for %s: %s", to_string(), err.message);
}
// Note: *Not* firing altered or metadata_altered signal because link_state is not a
// property that's available to users of Photo. Persisting it as a mechanism for dealing
// with unlink/relink properly.
}
protected override bool set_event_id(EventID event_id) {
lock (row) {
bool committed = PhotoTable.get_instance().set_event(row.photo_id, event_id);
if (committed)
row.event_id = event_id;
return committed;
}
}
public override string to_string() {
return "[%s] %s%s".printf(get_photo_id().id.to_string(), get_master_reader().get_filepath(),
!is_master_baseline() ? " (" + get_actual_file().get_path() + ")" : "");
}
public override bool equals(DataSource? source) {
// Primary key is where the rubber hits the road
Photo? photo = source as Photo;
if (photo != null) {
PhotoID photo_id = get_photo_id();
PhotoID other_photo_id = photo.get_photo_id();
if (this != photo && photo_id.id != PhotoID.INVALID) {
assert(photo_id.id != other_photo_id.id);
}
}
return base.equals(source);
}
// used to update the database after an internal metadata exif write
private void file_exif_updated() {
File file = get_file();
FileInfo info = null;
try {
info = file.query_info(DirectoryMonitor.SUPPLIED_ATTRIBUTES,
FileQueryInfoFlags.NOFOLLOW_SYMLINKS, null);
} catch (Error err) {
error("Unable to read file information for %s: %s", to_string(), err.message);
}
var timestamp = coarsify_date_time(info.get_modification_date_time());
// interrogate file for photo information
PhotoFileInterrogator interrogator = new PhotoFileInterrogator(file);
try {
interrogator.interrogate();
} catch (Error err) {
warning("Unable to interrogate photo file %s: %s", file.get_path(), err.message);
}
DetectedPhotoInformation? detected = interrogator.get_detected_photo_information();
if (detected == null || interrogator.get_is_photo_corrupted()) {
critical("file_exif_updated: %s no longer an image", to_string());
return;
}
bool success;
lock (row) {
success = PhotoTable.get_instance().master_exif_updated(get_photo_id(), info.get_size(),
timestamp, detected.md5, detected.exif_md5, detected.thumbnail_md5, row);
}
if (success)
notify_altered(new Alteration.from_list("metadata:exif,metadata:md5"));
}
// PhotoSource
public override uint64 get_filesize() {
lock (row) {
return backing_photo_row.filesize;
}
}
public override uint64 get_master_filesize() {
lock (row) {
return row.master.filesize;
}
}
public uint64 get_editable_filesize() {
lock (row) {
return editable.filesize;
}
}
public override DateTime? get_exposure_time() {
return cached_exposure_time;
}
public override string get_basename() {
lock (row) {
return file_title;
}
}
public override string? get_title() {
lock (row) {
return row.title;
}
}
public override string? get_comment() {
lock (row) {
return row.comment;
}
}
public override void set_title(string? title) {
string? new_title = prep_title(title);
bool committed = false;
lock (row) {
if (new_title == row.title)
return;
committed = PhotoTable.get_instance().set_title(row.photo_id, new_title);
if (committed)
row.title = new_title;
}
if (committed)
notify_altered(new Alteration("metadata", "name"));
}
public GpsCoords get_gps_coords() {
lock (row) {
return row.gps_coords;
}
}
public void set_gps_coords(GpsCoords gps_coords) {
DatabaseError dberr = null;
lock (row) {
try {
PhotoTable.get_instance().set_gps_coords(row.photo_id, gps_coords);
row.gps_coords = gps_coords;
} catch (DatabaseError err) {
dberr = err;
}
}
if (dberr == null)
notify_altered(new Alteration("metadata", "gps"));
else
warning("Unable to write gps coordinates for %s: %s", to_string(), dberr.message);
}
public override bool set_comment(string? comment) {
string? new_comment = prep_comment(comment);
bool committed = false;
lock (row) {
if (new_comment == row.comment)
return true;
committed = PhotoTable.get_instance().set_comment(row.photo_id, new_comment);
if (committed)
row.comment = new_comment;
}
if (committed)
notify_altered(new Alteration("metadata", "comment"));
return committed;
}
public void set_import_id(ImportID import_id) {
DatabaseError dberr = null;
lock (row) {
try {
PhotoTable.get_instance().set_import_id(row.photo_id, import_id);
row.import_id = import_id;
} catch (DatabaseError err) {
dberr = err;
}
}
if (dberr == null)
notify_altered(new Alteration("metadata", "import-id"));
else
warning("Unable to write import ID for %s: %s", to_string(), dberr.message);
}
public void set_title_persistent(string? title) throws Error {
PhotoFileReader source = get_source_reader();
// Try to write to backing file
if (!source.get_file_format().can_write_metadata()) {
warning("No photo file writer available for %s", source.get_filepath());
set_title(title);
return;
}
PhotoMetadata metadata = source.read_metadata();
metadata.set_title(title);
PhotoFileMetadataWriter writer = source.create_metadata_writer();
LibraryMonitor.blacklist_file(source.get_file(), "Photo.set_persistent_title");
try {
writer.write_metadata(metadata);
} finally {
LibraryMonitor.unblacklist_file(source.get_file());
}
set_title(title);
file_exif_updated();
}
public void set_comment_persistent(string? comment) throws Error {
PhotoFileReader source = get_source_reader();
// Try to write to backing file
if (!source.get_file_format().can_write_metadata()) {
warning("No photo file writer available for %s", source.get_filepath());
set_comment(comment);
return;
}
PhotoMetadata metadata = source.read_metadata();
metadata.set_comment(comment);
PhotoFileMetadataWriter writer = source.create_metadata_writer();
LibraryMonitor.blacklist_file(source.get_file(), "Photo.set_persistent_comment");
try {
writer.write_metadata(metadata);
} finally {
LibraryMonitor.unblacklist_file(source.get_file());
}
set_comment(comment);
file_exif_updated();
}
public void set_exposure_time(DateTime time) {
bool committed;
lock (row) {
committed = PhotoTable.get_instance().set_exposure_time(row.photo_id, time);
if (committed) {
row.exposure_time = time;
cached_exposure_time = time;
}
}
if (committed)
notify_altered(new Alteration("metadata", "exposure-time"));
}
public void set_exposure_time_persistent(DateTime time) throws Error {
PhotoFileReader source = get_source_reader();
// Try to write to backing file
if (!source.get_file_format().can_write_metadata()) {
warning("No photo file writer available for %s", source.get_filepath());
set_exposure_time(time);
return;
}
PhotoMetadata metadata = source.read_metadata();
metadata.set_exposure_date_time(new MetadataDateTime(time));
PhotoFileMetadataWriter writer = source.create_metadata_writer();
LibraryMonitor.blacklist_file(source.get_file(), "Photo.set_exposure_time_persistent");
try {
writer.write_metadata(metadata);
} finally {
LibraryMonitor.unblacklist_file(source.get_file());
}
set_exposure_time(time);
file_exif_updated();
}
/**
* @brief Returns the width and height of the Photo after various
* arbitrary stages of the pipeline have been applied in
* the same order they're applied in get_pixbuf_with_options.
* With no argument passed, it works exactly like the
* previous incarnation did.
*
* @param disallowed_steps Which pipeline steps should NOT
* be taken into account when computing image dimensions
* (matching the convention set by get_pixbuf_with_options()).
* Pipeline steps that do not affect the image geometry are
* ignored.
*/
public override Dimensions get_dimensions(Exception disallowed_steps = Exception.NONE) {
// The raw dimensions of the incoming image prior to the pipeline.
Dimensions returned_dims = get_raw_dimensions();
// Compute how much the image would be resized by after rotating and/or mirroring.
if (disallowed_steps.allows(Exception.ORIENTATION)) {
Orientation ori_tmp = get_orientation();
// Is this image rotated 90 or 270 degrees?
switch (ori_tmp) {
case Orientation.LEFT_TOP:
case Orientation.RIGHT_TOP:
case Orientation.LEFT_BOTTOM:
case Orientation.RIGHT_BOTTOM:
// Yes, swap width and height of raw dimensions.
int width_tmp = returned_dims.width;
returned_dims.width = returned_dims.height;
returned_dims.height = width_tmp;
break;
default:
// No, only mirrored or rotated 180; do nothing.
break;
}
}
// Compute how much the image would be resized by after straightening.
if (disallowed_steps.allows(Exception.STRAIGHTEN)) {
double x_size, y_size;
double angle = 0.0;
get_straighten(out angle);
compute_arb_rotated_size(returned_dims.width, returned_dims.height, angle, out x_size, out y_size);
returned_dims.width = (int) (x_size);
returned_dims.height = (int) (y_size);
}
// Compute how much the image would be resized by after cropping.
if (disallowed_steps.allows(Exception.CROP)) {
Box crop;
if (get_crop(out crop, disallowed_steps)) {
returned_dims = crop.get_dimensions();
}
}
return returned_dims;
}
// This method *must* be called with row locked.
private void locked_create_adjustments_from_data() {
adjustments = new PixelTransformationBundle();
KeyValueMap map = get_transformation("adjustments");
if (map == null)
adjustments.set_to_identity();
else
adjustments.load(map);
transformer = adjustments.generate_transformer();
}
// Returns a copy of the color adjustments array. Use set_color_adjustments to persist.
public PixelTransformationBundle get_color_adjustments() {
lock (row) {
if (adjustments == null)
locked_create_adjustments_from_data();
return adjustments.copy();
}
}
public PixelTransformer get_pixel_transformer() {
lock (row) {
if (transformer == null)
locked_create_adjustments_from_data();
return transformer.copy();
}
}
public bool has_color_adjustments() {
return has_transformation("adjustments");
}
public PixelTransformation? get_color_adjustment(PixelTransformationType type) {
return get_color_adjustments().get_transformation(type);
}
public void set_color_adjustments(PixelTransformationBundle new_adjustments) {
/* if every transformation in 'new_adjustments' is the identity, then just remove all
adjustments from the database */
if (new_adjustments.is_identity()) {
bool result;
lock (row) {
result = remove_transformation("adjustments");
adjustments = null;
transformer = null;
}
if (result)
notify_altered(new Alteration("image", "color-adjustments"));
return;
}
// convert bundle to KeyValueMap, which can be saved in the database
KeyValueMap map = new_adjustments.save("adjustments");
bool committed;
lock (row) {
if (transformer == null || adjustments == null) {
// create new
adjustments = new_adjustments.copy();
transformer = new_adjustments.generate_transformer();
} else {
// replace existing
foreach (PixelTransformation transformation in new_adjustments.get_transformations()) {
transformer.replace_transformation(
adjustments.get_transformation(transformation.get_transformation_type()),
transformation);
}
adjustments = new_adjustments.copy();
}
committed = set_transformation(map);
}
if (committed)
notify_altered(new Alteration("image", "color-adjustments"));
}
// This is thread-safe. Returns the source file's metadata.
public override PhotoMetadata? get_metadata() {
try {
return get_source_reader().read_metadata();
} catch (Error err) {
warning("Unable to load metadata: %s", err.message);
return null;
}
}
public PhotoMetadata get_master_metadata() throws Error {
return get_master_reader().read_metadata();
}
public PhotoMetadata? get_editable_metadata() throws Error {
PhotoFileReader? reader = get_editable_reader();
return (reader != null) ? reader.read_metadata() : null;
}
// This is thread-safe. This must be followed by a call to finish_update_master_metadata() in
// the main thread. Returns false if unable to write metadata (because operation is
// unsupported) or the file is unavailable.
public bool persist_master_metadata(PhotoMetadata metadata, out ReimportMasterState state)
throws Error {
state = null;
PhotoFileReader master_reader = get_master_reader();
if (!master_reader.get_file_format().can_write_metadata())
return false;
master_reader.create_metadata_writer().write_metadata(metadata);
if (!prepare_for_reimport_master(out state))
return false;
((ReimportMasterStateImpl) state).metadata_only = true;
return true;
}
public void finish_update_master_metadata(ReimportMasterState state) throws DatabaseError {
finish_reimport_master(state);
}
public bool persist_editable_metadata(PhotoMetadata metadata, out ReimportEditableState state)
throws Error {
state = null;
PhotoFileReader? editable_reader = get_editable_reader();
if (editable_reader == null)
return false;
if (!editable_reader.get_file_format().can_write_metadata())
return false;
editable_reader.create_metadata_writer().write_metadata(metadata);
if (!prepare_for_reimport_editable(out state))
return false;
((ReimportEditableStateImpl) state).metadata_only = true;
return true;
}
public void finish_update_editable_metadata(ReimportEditableState state) throws DatabaseError {
finish_reimport_editable(state);
}
// Transformation storage and exporting
public Dimensions get_raw_dimensions() {
lock (row) {
return backing_photo_row.dim;
}
}
public bool has_transformations() {
lock (row) {
return (row.orientation != backing_photo_row.original_orientation)
? true
: (row.transformations != null);
}
}
public bool only_metadata_changed() {
MetadataDateTime? date_time = null;
PhotoMetadata? metadata = get_metadata();
if (metadata != null)
date_time = metadata.get_exposure_date_time();
lock (row) {
return row.transformations == null
&& (row.orientation != backing_photo_row.original_orientation
|| (date_time != null && row.exposure_time != null &&
!row.exposure_time.equal(date_time.get_timestamp())));
}
}
public bool has_alterations() {
MetadataDateTime? date_time = null;
string? title = null;
string? comment = null;
PhotoMetadata? metadata = get_metadata();
if (metadata != null) {
date_time = metadata.get_exposure_date_time();
title = metadata.get_title();
comment = metadata.get_comment();
}
// Does this photo contain any date/time info?
if (date_time == null) {
// No, use file timestamp as date/time.
lock (row) {
// Did we manually set an exposure date?
if(nullsafe_date_time_comperator(backing_photo_row.timestamp, row.exposure_time) != 0) {
// Yes, we need to save this.
return true;
}
}
}
lock (row) {
return row.transformations != null
|| row.orientation != backing_photo_row.original_orientation
|| (date_time != null && nullsafe_date_time_comperator(row.exposure_time, date_time.get_timestamp()) != 0)
|| (get_comment() != comment)
|| (get_title() != title);
}
}
public PhotoTransformationState save_transformation_state() {
lock (row) {
return new PhotoTransformationStateImpl(this, row.orientation,
row.transformations,
transformer != null ? transformer.copy() : null,
adjustments != null ? adjustments.copy() : null);
}
}
public bool load_transformation_state(PhotoTransformationState state) {
PhotoTransformationStateImpl state_impl = state as PhotoTransformationStateImpl;
if (state_impl == null)
return false;
Orientation saved_orientation = state_impl.get_orientation();
Gee.HashMap<string, KeyValueMap>? saved_transformations = state_impl.get_transformations();
PixelTransformer? saved_transformer = state_impl.get_transformer();
PixelTransformationBundle? saved_adjustments = state_impl.get_color_adjustments();
bool committed;
lock (row) {
committed = PhotoTable.get_instance().set_transformation_state(row.photo_id,
saved_orientation, saved_transformations);
if (committed) {
row.orientation = saved_orientation;
row.transformations = saved_transformations;
transformer = saved_transformer;
adjustments = saved_adjustments;
}
}
if (committed)
notify_altered(new Alteration("image", "transformation-state"));
return committed;
}
public void remove_all_transformations(bool notify = true) {
bool is_altered = false;
lock (row) {
is_altered = PhotoTable.get_instance().remove_all_transformations(row.photo_id);
row.transformations = null;
transformer = null;
adjustments = null;
if (row.orientation != backing_photo_row.original_orientation) {
PhotoTable.get_instance().set_orientation(row.photo_id,
backing_photo_row.original_orientation);
row.orientation = backing_photo_row.original_orientation;
is_altered = true;
}
}
if (is_altered && notify)
notify_altered(new Alteration("image", "revert"));
}
public Orientation get_original_orientation() {
lock (row) {
return backing_photo_row.original_orientation;
}
}
public Orientation get_orientation() {
lock (row) {
return row.orientation;
}
}
public bool set_orientation(Orientation orientation) {
bool committed = false;
lock (row) {
if (row.orientation != orientation) {
committed = PhotoTable.get_instance().set_orientation(row.photo_id, orientation);
if (committed)
row.orientation = orientation;
}
}
if (committed)
notify_altered(new Alteration("image", "orientation"));
return committed;
}
public bool check_can_rotate() {
return can_rotate_now;
}
public virtual void rotate(Rotation rotation) {
lock (row) {
set_orientation(get_orientation().perform(rotation));
}
}
private bool has_transformation(string name) {
lock (row) {
return (row.transformations != null) ? row.transformations.has_key(name) : false;
}
}
// Note that obtaining the proper map is thread-safe here. The returned map is a copy of
// the original, so it is thread-safe as well. However: modifying the returned map
// does not modify the original; set_transformation() must be used.
private KeyValueMap? get_transformation(string name) {
KeyValueMap map = null;
lock (row) {
if (row.transformations != null) {
map = row.transformations.get(name);
if (map != null)
map = map.copy();
}
}
return map;
}
private bool set_transformation(KeyValueMap trans) {
lock (row) {
if (row.transformations == null)
row.transformations = new Gee.HashMap<string, KeyValueMap>();
row.transformations.set(trans.get_group(), trans);
return PhotoTable.get_instance().set_transformation(row.photo_id, trans);
}
}
private bool remove_transformation(string name) {
bool altered_cache, altered_persistent;
lock (row) {
if (row.transformations != null) {
altered_cache = row.transformations.unset(name);
if (row.transformations.size == 0)
row.transformations = null;
} else {
altered_cache = false;
}
altered_persistent = PhotoTable.get_instance().remove_transformation(row.photo_id,
name);
}
return (altered_cache || altered_persistent);
}
public bool has_crop() {
return has_transformation("crop");
}
// Returns the crop in the raw photo's coordinate system
public bool get_raw_crop(out Box crop) {
crop = Box();
KeyValueMap map = get_transformation("crop");
if (map == null)
return false;
int left = map.get_int("left", -1);
int top = map.get_int("top", -1);
int right = map.get_int("right", -1);
int bottom = map.get_int("bottom", -1);
if (left == -1 || top == -1 || right == -1 || bottom == -1)
return false;
crop = Box(left, top, right, bottom);
return true;
}
// Sets the crop using the raw photo's unrotated coordinate system
private void set_raw_crop(Box crop) {
KeyValueMap map = new KeyValueMap("crop");
map.set_int("left", crop.left);
map.set_int("top", crop.top);
map.set_int("right", crop.right);
map.set_int("bottom", crop.bottom);
if (set_transformation(map))
notify_altered(new Alteration("image", "crop"));
}
private bool get_raw_straighten(out double angle) {
KeyValueMap map = get_transformation("straighten");
if (map == null) {
angle = 0.0;
return false;
}
angle = map.get_double("angle", 0.0);
return true;
}
private void set_raw_straighten(double theta) {
KeyValueMap map = new KeyValueMap("straighten");
map.set_double("angle", theta);
if (set_transformation(map)) {
notify_altered(new Alteration("image", "straighten"));
}
}
// All instances are against the coordinate system of the unscaled, unrotated photo.
private EditingTools.RedeyeInstance[] get_raw_redeye_instances() {
KeyValueMap map = get_transformation("redeye");
if (map == null)
return new EditingTools.RedeyeInstance[0];
int num_points = map.get_int("num_points", -1);
assert(num_points > 0);
EditingTools.RedeyeInstance[] res = new EditingTools.RedeyeInstance[num_points];
Gdk.Point default_point = {0};
default_point.x = -1;
default_point.y = -1;
for (int i = 0; i < num_points; i++) {
string center_key = "center%d".printf(i);
string radius_key = "radius%d".printf(i);
res[i].center = map.get_point(center_key, default_point);
assert(res[i].center.x != default_point.x);
assert(res[i].center.y != default_point.y);
res[i].radius = map.get_int(radius_key, -1);
assert(res[i].radius != -1);
}
return res;
}
public bool has_redeye_transformations() {
return has_transformation("redeye");
}
// All instances are against the coordinate system of the unrotated photo.
public void add_redeye_instance(EditingTools.RedeyeInstance redeye) {
KeyValueMap map = get_transformation("redeye");
if (map == null) {
map = new KeyValueMap("redeye");
map.set_int("num_points", 0);
}
int num_points = map.get_int("num_points", -1);
assert(num_points >= 0);
num_points++;
string radius_key = "radius%d".printf(num_points - 1);
string center_key = "center%d".printf(num_points - 1);
map.set_int(radius_key, redeye.radius);
map.set_point(center_key, redeye.center);
map.set_int("num_points", num_points);
if (set_transformation(map))
notify_altered(new Alteration("image", "redeye"));
}
// Pixbuf generation
// Returns dimensions for the pixbuf at various stages of the pipeline.
//
// scaled_image is the dimensions of the image after a scaled load-and-decode.
// scaled_to_viewport is the dimensions of the image sized according to the scaling parameter.
// scaled_image and scaled_to_viewport may be different if the photo is cropped.
//
// Returns true if scaling is to occur, false otherwise. If false, scaled_image will be set to
// the raw image dimensions and scaled_to_viewport will be the dimensions of the image scaled
// to the Scaling viewport.
private bool calculate_pixbuf_dimensions(Scaling scaling, Exception exceptions,
out Dimensions scaled_image, out Dimensions scaled_to_viewport) {
lock (row) {
// this function needs to access various elements of the Photo atomically
return locked_calculate_pixbuf_dimensions(scaling, exceptions,
out scaled_image, out scaled_to_viewport);
}
}
// Must be called with row locked.
private bool locked_calculate_pixbuf_dimensions(Scaling scaling, Exception exceptions,
out Dimensions scaled_image, out Dimensions scaled_to_viewport) {
Dimensions raw = get_raw_dimensions();
if (scaling.is_unscaled()) {
scaled_image = raw;
scaled_to_viewport = raw;
return false;
}
Orientation orientation = get_orientation();
// If no crop, the scaled_image is simply raw scaled to fit into the viewport. Otherwise,
// the image is scaled enough so the cropped region fits the viewport.
scaled_image = Dimensions();
scaled_to_viewport = Dimensions();
if (exceptions.allows(Exception.CROP)) {
Box crop;
if (get_raw_crop(out crop)) {
// rotate the crop and raw space accordingly ... order is important here, rotate_box
// works with the unrotated dimensions in space
Dimensions rotated_raw = raw;
if (exceptions.allows(Exception.ORIENTATION)) {
crop = orientation.rotate_box(raw, crop);
rotated_raw = orientation.rotate_dimensions(raw);
}
// scale the rotated crop to fit in the viewport
Box scaled_crop = crop.get_scaled(scaling.get_scaled_dimensions(crop.get_dimensions()));
// the viewport size is the size of the scaled crop
scaled_to_viewport = scaled_crop.get_dimensions();
// only scale the image if the crop is larger than the viewport
if (crop.get_width() <= scaled_crop.get_width()
&& crop.get_height() <= scaled_crop.get_height()) {
scaled_image = raw;
scaled_to_viewport = crop.get_dimensions();
return false;
}
// resize the total pixbuf so the crop slices directly from the scaled pixbuf,
// with no need for resizing thereafter. The decoded size is determined by the
// proportion of the actual size to the crop size
scaled_image = rotated_raw.get_scaled_similar(crop.get_dimensions(),
scaled_crop.get_dimensions());
// derotate, as the loader knows nothing about orientation
if (exceptions.allows(Exception.ORIENTATION))
scaled_image = orientation.derotate_dimensions(scaled_image);
}
}
// if scaled_image not set, merely scale the raw pixbuf
if (!scaled_image.has_area()) {
// rotate for the scaler
Dimensions rotated_raw = raw;
if (exceptions.allows(Exception.ORIENTATION))
rotated_raw = orientation.rotate_dimensions(raw);
scaled_image = scaling.get_scaled_dimensions(rotated_raw);
scaled_to_viewport = scaled_image;
// derotate the scaled dimensions, as the loader knows nothing about orientation
if (exceptions.allows(Exception.ORIENTATION))
scaled_image = orientation.derotate_dimensions(scaled_image);
}
// do not scale up
if (scaled_image.width >= raw.width && scaled_image.height >= raw.height) {
scaled_image = raw;
return false;
}
assert(scaled_image.has_area());
assert(scaled_to_viewport.has_area());
return true;
}
// Returns a raw, untransformed, unrotated pixbuf directly from the source. Scaling provides
// asked for a scaled-down image, which has certain performance benefits if the resized
// JPEG is scaled down by a factor of a power of two (one-half, one-fourth, etc.).
private Gdk.Pixbuf load_raw_pixbuf(Scaling scaling, Exception exceptions,
BackingFetchMode fetch_mode = BackingFetchMode.BASELINE) throws Error {
PhotoFileReader loader = get_backing_reader(fetch_mode);
// no scaling, load and get out
if (scaling.is_unscaled()) {
#if MEASURE_PIPELINE
debug("LOAD_RAW_PIXBUF UNSCALED %s: requested", loader.get_filepath());
#endif
return loader.unscaled_read();
}
// Need the dimensions of the image to load
Dimensions scaled_image, scaled_to_viewport;
bool is_scaled = calculate_pixbuf_dimensions(scaling, exceptions, out scaled_image,
out scaled_to_viewport);
if (!is_scaled) {
#if MEASURE_PIPELINE
debug("LOAD_RAW_PIXBUF UNSCALED %s: scaling unavailable", loader.get_filepath());
#endif
return loader.unscaled_read();
}
Gdk.Pixbuf pixbuf = loader.scaled_read(get_raw_dimensions(), scaled_image);
#if MEASURE_PIPELINE
debug("LOAD_RAW_PIXBUF %s %s: %s -> %s (actual: %s)", scaling.to_string(), loader.get_filepath(),
get_raw_dimensions().to_string(), scaled_image.to_string(),
Dimensions.for_pixbuf(pixbuf).to_string());
#endif
assert(scaled_image.approx_equals(Dimensions.for_pixbuf(pixbuf), SCALING_FUDGE));
return pixbuf;
}
// Returns a raw, untransformed, scaled pixbuf from the master that has been optionally rotated
// according to its original EXIF settings.
public Gdk.Pixbuf get_master_pixbuf(Scaling scaling, bool rotate = true) throws Error {
return get_untransformed_pixbuf(scaling, rotate, BackingFetchMode.MASTER);
}
// Returns a pixbuf that hasn't been modified (head of the pipeline.)
public Gdk.Pixbuf get_unmodified_pixbuf(Scaling scaling, bool rotate = true) throws Error {
return get_untransformed_pixbuf(scaling, rotate, BackingFetchMode.UNMODIFIED);
}
// Returns an untransformed pixbuf with optional scaling, rotation, and fetch mode.
private Gdk.Pixbuf get_untransformed_pixbuf(Scaling scaling, bool rotate, BackingFetchMode fetch_mode)
throws Error {
#if MEASURE_PIPELINE
Timer timer = new Timer();
Timer total_timer = new Timer();
double orientation_time = 0.0;
total_timer.start();
#endif
// get required fields all at once, to avoid holding the row lock
Dimensions scaled_image, scaled_to_viewport;
Orientation original_orientation;
lock (row) {
calculate_pixbuf_dimensions(scaling, Exception.NONE, out scaled_image,
out scaled_to_viewport);
original_orientation = get_original_orientation();
}
// load-and-decode and scale
Gdk.Pixbuf pixbuf = load_raw_pixbuf(scaling, Exception.NONE, fetch_mode);
// orientation
#if MEASURE_PIPELINE
timer.start();
#endif
if (rotate)
pixbuf = original_orientation.rotate_pixbuf(pixbuf);
#if MEASURE_PIPELINE
orientation_time = timer.elapsed();
debug("MASTER PIPELINE %s (%s): orientation=%lf total=%lf", to_string(), scaling.to_string(),
orientation_time, total_timer.elapsed());
#endif
return pixbuf;
}
public override Gdk.Pixbuf get_pixbuf(Scaling scaling) throws Error {
return get_pixbuf_with_options(scaling);
}
/**
* One-stop shopping for the source pixbuf cache.
*
* The source pixbuf cache holds untransformed, unscaled (full-sized) pixbufs of Photo objects.
* These can be rather large and shouldn't be held in memory for too long, nor should many be
* allowed to stack up.
*
* If locate is non-null, a source pixbuf is returned for the Photo. If keep is true, the
* pixbuf is stored in the cache. (Thus, passing a Photo w/ keep == false will drop the cached
* pixbuf.) If Photo is non-null but keep is false, null is returned.
*
* Whether locate is null or not, the cache is walked in its entirety, dropping expired pixbufs
* and dropping excessive pixbufs from the LRU. Locating a Photo "touches" the pixbuf, i.e.
* it moves to the head of the LRU.
*/
private static Gdk.Pixbuf? run_source_pixbuf_cache(Photo? locate, bool keep) throws Error {
lock (source_pixbuf_cache) {
CachedPixbuf? found = null;
// walk list looking for photo to locate (if specified), dropping expired and LRU'd
// pixbufs along the way
double min_elapsed = double.MAX;
int count = 0;
Gee.Iterator<CachedPixbuf> iter = source_pixbuf_cache.iterator();
while (iter.next()) {
CachedPixbuf cached_pixbuf = iter.get();
double elapsed = Math.trunc(cached_pixbuf.last_touched.elapsed()) + 1;
if (locate != null && cached_pixbuf.photo.equals(locate)) {
// found it, remove and reinsert at head of LRU (below)...
iter.remove();
found = cached_pixbuf;
// ...that's why the counter is incremented
count++;
} else if (elapsed >= SOURCE_PIXBUF_TIME_TO_LIVE_SEC) {
iter.remove();
} else if (count >= SOURCE_PIXBUF_MAX_LRU_COUNT) {
iter.remove();
} else {
// find the item with the least elapsed time to reschedule a cache trim (to
// prevent onesy-twosy reschedules)
min_elapsed = double.min(elapsed, min_elapsed);
count++;
}
}
// if not found and trying to locate one and keep it, generate now
if (found == null && locate != null && keep) {
found = new CachedPixbuf(locate,
locate.load_raw_pixbuf(Scaling.for_original(), Exception.ALL, BackingFetchMode.SOURCE));
} else if (found != null) {
// since it was located, touch it so it doesn't expire
found.last_touched.start();
}
// if keeping it, insert at head of LRU
if (found != null && keep) {
source_pixbuf_cache.insert(0, found);
// since this is (re-)inserted, count its elapsed time too ... w/ min_elapsed, this
// is almost guaranteed to be the min, since it was was touched mere clock cycles
// ago...
min_elapsed = double.min(found.last_touched.elapsed(), min_elapsed);
// ...which means don't need to readjust the min_elapsed when trimming off excess
// due to adding back an element
while(source_pixbuf_cache.size > SOURCE_PIXBUF_MAX_LRU_COUNT)
source_pixbuf_cache.poll_tail();
}
// drop expiration timer...
if (discard_source_id != 0) {
Source.remove(discard_source_id);
discard_source_id = 0;
}
// ...only reschedule if there's something to expire
if (source_pixbuf_cache.size > SOURCE_PIXBUF_MIN_LRU_COUNT) {
assert(min_elapsed >= 0.0);
// round-up to avoid a bunch of zero-second timeouts
uint retry_sec = SOURCE_PIXBUF_TIME_TO_LIVE_SEC - ((uint) Math.trunc(min_elapsed));
discard_source_id = Timeout.add_seconds(retry_sec, trim_source_pixbuf_cache, Priority.LOW);
}
return found != null ? found.pixbuf : null;
}
}
private static bool trim_source_pixbuf_cache() {
try {
run_source_pixbuf_cache(null, false);
} catch (Error err) {
}
return false;
}
/**
* @brief Get a copy of what's in the cache.
*
* @return A copy of the Pixbuf with the image data from unmodified_precached.
*/
public Gdk.Pixbuf get_prefetched_copy() throws Error {
return run_source_pixbuf_cache(this, true).copy();
}
/**
* @brief Discards the cached version of the unmodified image.
*/
public void discard_prefetched() {
try {
run_source_pixbuf_cache(this, false);
} catch (Error err) {
}
}
/**
* @brief Returns a fully transformed and scaled pixbuf. Transformations may be excluded via
* the mask. If the image is smaller than the scaling, it will be returned in its actual size.
* The caller is responsible for scaling thereafter.
*
* @param scaling A scaling object that describes the size the output pixbuf should be.
* @param exceptions The parts of the pipeline that should be skipped; defaults to NONE if
* left unset.
* @param fetch_mode The fetch mode; if left unset, defaults to BASELINE so that
* we get the image exactly as it is in the file.
*/
public Gdk.Pixbuf get_pixbuf_with_options(Scaling scaling, Exception exceptions =
Exception.NONE, BackingFetchMode fetch_mode = BackingFetchMode.BASELINE) throws Error {
#if MEASURE_PIPELINE
Timer timer = new Timer();
Timer total_timer = new Timer();
double redeye_time = 0.0, crop_time = 0.0, adjustment_time = 0.0, orientation_time = 0.0,
straighten_time = 0.0, scale_time = 0.0;
total_timer.start();
#endif
// If this is a RAW photo, ensure the development is ready.
if (Photo.develop_raw_photos_to_files &&
get_master_file_format() == PhotoFileFormat.RAW &&
(fetch_mode == BackingFetchMode.BASELINE || fetch_mode == BackingFetchMode.UNMODIFIED
|| fetch_mode == BackingFetchMode.SOURCE) &&
!is_raw_developer_complete(get_raw_developer()))
set_raw_developer(get_raw_developer());
// to minimize holding the row lock, fetch everything needed for the pipeline up-front
bool is_scaled, is_cropped, is_straightened;
Dimensions scaled_to_viewport;
Dimensions original = Dimensions();
Dimensions scaled = Dimensions();
EditingTools.RedeyeInstance[] redeye_instances = null;
Box crop;
double straightening_angle;
PixelTransformer transformer = null;
Orientation orientation;
lock (row) {
original = get_dimensions(Exception.ALL);
scaled = scaling.get_scaled_dimensions(get_dimensions(exceptions));
scaled_to_viewport = scaled;
is_scaled = !(get_dimensions().equals(scaled));
redeye_instances = get_raw_redeye_instances();
is_cropped = get_raw_crop(out crop);
is_straightened = get_raw_straighten(out straightening_angle);
if (has_color_adjustments())
transformer = get_pixel_transformer();
orientation = get_orientation();
}
//
// Image load-and-decode
//
Gdk.Pixbuf pixbuf = get_prefetched_copy();
//
// Image transformation pipeline
//
// redeye reduction
if (exceptions.allows(Exception.REDEYE)) {
#if MEASURE_PIPELINE
timer.start();
#endif
foreach (EditingTools.RedeyeInstance instance in redeye_instances) {
pixbuf = do_redeye(pixbuf, instance);
}
#if MEASURE_PIPELINE
redeye_time = timer.elapsed();
#endif
}
// angle photograph so in-image horizon is aligned with horizontal
if (exceptions.allows(Exception.STRAIGHTEN)) {
#if MEASURE_PIPELINE
timer.start();
#endif
if (is_straightened) {
pixbuf = rotate_arb(pixbuf, straightening_angle);
}
#if MEASURE_PIPELINE
straighten_time = timer.elapsed();
#endif
}
// crop
if (exceptions.allows(Exception.CROP)) {
#if MEASURE_PIPELINE
timer.start();
#endif
if (is_cropped) {
// ensure the crop region stays inside the scaled image boundaries and is
// at least 1 px by 1 px; this is needed as a work-around for inaccuracies
// which can occur when zooming.
crop.left = crop.left.clamp(0, pixbuf.width - 2);
crop.top = crop.top.clamp(0, pixbuf.height - 2);
crop.right = crop.right.clamp(crop.left + 1, pixbuf.width - 1);
crop.bottom = crop.bottom.clamp(crop.top + 1, pixbuf.height - 1);
pixbuf = new Gdk.Pixbuf.subpixbuf(pixbuf, crop.left, crop.top, crop.get_width(),
crop.get_height());
}
#if MEASURE_PIPELINE
crop_time = timer.elapsed();
#endif
}
// orientation (all modifications are stored in unrotated coordinate system)
if (exceptions.allows(Exception.ORIENTATION)) {
#if MEASURE_PIPELINE
timer.start();
#endif
pixbuf = orientation.rotate_pixbuf(pixbuf);
#if MEASURE_PIPELINE
orientation_time = timer.elapsed();
#endif
}
// scale the scratch image, as needed.
if (is_scaled) {
#if MEASURE_PIPELINE
timer.start();
#endif
pixbuf = pixbuf.scale_simple(scaled_to_viewport.width, scaled_to_viewport.height, Gdk.InterpType.BILINEAR);
#if MEASURE_PIPELINE
scale_time = timer.elapsed();
#endif
}
// color adjustment; we do this dead last, since, if an image has been scaled down,
// it may allow us to reduce the amount of pixel arithmetic, increasing responsiveness.
if (exceptions.allows(Exception.ADJUST)) {
#if MEASURE_PIPELINE
timer.start();
#endif
if (transformer != null)
transformer.transform_pixbuf(pixbuf);
#if MEASURE_PIPELINE
adjustment_time = timer.elapsed();
#endif
}
// This is to verify the generated pixbuf matches the scale requirements; crop, straighten
// and orientation are all transformations that change the dimensions or aspect ratio of
// the pixbuf, and must be accounted for the test to be valid.
if ((is_scaled) && (!is_straightened))
assert(scaled_to_viewport.approx_equals(Dimensions.for_pixbuf(pixbuf), SCALING_FUDGE));
#if MEASURE_PIPELINE
debug("PIPELINE %s (%s): redeye=%lf crop=%lf adjustment=%lf orientation=%lf straighten=%lf scale=%lf total=%lf",
to_string(), scaling.to_string(), redeye_time, crop_time, adjustment_time,
orientation_time, straighten_time, scale_time, total_timer.elapsed());
#endif
return pixbuf;
}
//
// File export
//
protected abstract bool has_user_generated_metadata();
// Sets the metadata values for any user generated metadata, only called if
// has_user_generated_metadata returns true
protected abstract void set_user_metadata_for_export(PhotoMetadata metadata);
// Returns the basename of the file if it were to be exported in format 'file_format'; if
// 'file_format' is null, then return the basename of the file if it were to be exported in the
// native backing format of the photo (i.e. no conversion is performed). If 'file_format' is
// null and the native backing format is not writeable (i.e. RAW), then use the system
// default file format, as defined in PhotoFileFormat
public string get_export_basename(PhotoFileFormat? file_format = null) {
if (file_format != null) {
return file_format.get_properties().convert_file_extension(get_master_file()).get_basename();
} else {
if (get_file_format().can_write()) {
return get_file_format().get_properties().convert_file_extension(
get_master_file()).get_basename();
} else {
return PhotoFileFormat.get_system_default_format().get_properties().convert_file_extension(
get_master_file()).get_basename();
}
}
}
private bool export_fullsized_backing(File file, bool export_metadata = true) throws Error {
// See if the native reader supports writing ... if no matches, need to fall back
// on a "regular" export, which requires decoding then encoding
PhotoFileReader export_reader = null;
bool is_master = true;
lock (readers) {
if (readers.editable != null && readers.editable.get_file_format().can_write_metadata()) {
export_reader = readers.editable;
is_master = false;
} else if (readers.developer != null && readers.developer.get_file_format().can_write_metadata()) {
export_reader = readers.developer;
is_master = false;
} else if (readers.master.get_file_format().can_write_metadata()) {
export_reader = readers.master;
}
}
if (export_reader == null)
return false;
PhotoFileFormatProperties format_properties = export_reader.get_file_format().get_properties();
// Build a destination file with the caller's name but the appropriate extension
File dest_file = format_properties.convert_file_extension(file);
// Create a PhotoFileMetadataWriter that matches the PhotoFileReader's file format
PhotoFileMetadataWriter writer = export_reader.get_file_format().create_metadata_writer(
dest_file.get_path());
debug("Exporting full-sized copy of %s to %s", to_string(), writer.get_filepath());
export_reader.get_file().copy(dest_file,
FileCopyFlags.OVERWRITE | FileCopyFlags.TARGET_DEFAULT_PERMS, null, null);
// If asking for an full-sized file and there are no alterations (transformations or EXIF)
// *and* this is a copy of the original backing *and* there's no user metadata or title *and* metadata should be exported, then done
if (!has_alterations() && is_master && !has_user_generated_metadata() &&
(get_title() == null) && (get_comment() == null) && export_metadata)
return true;
// copy over relevant metadata if possible, otherwise generate new metadata
PhotoMetadata? metadata = export_reader.read_metadata();
if (metadata == null)
metadata = export_reader.get_file_format().create_metadata();
debug("Updating metadata of %s", writer.get_filepath());
if (get_exposure_time() != null)
metadata.set_exposure_date_time(new MetadataDateTime(get_exposure_time()));
else
metadata.set_exposure_date_time(null);
if(export_metadata) {
//set metadata
metadata.set_title(get_title());
metadata.set_comment(get_comment());
metadata.set_pixel_dimensions(get_dimensions()); // created by sniffing pixbuf not metadata
metadata.set_orientation(get_orientation());
metadata.set_software(Resources.APP_TITLE, Resources.APP_VERSION);
if (get_orientation() != get_original_orientation())
metadata.remove_exif_thumbnail();
set_user_metadata_for_export(metadata);
}
else
//delete metadata
metadata.clear();
writer.write_metadata(metadata);
return true;
}
// Returns true if there's any reason that an export is required to fully represent the photo
// on disk. False essentially means that the source file (NOT NECESSARILY the master file)
// *is* the full representation of the photo and its metadata.
public bool is_export_required(Scaling scaling, PhotoFileFormat export_format) {
return (!scaling.is_unscaled() || has_alterations() || has_user_generated_metadata()
|| export_format != get_file_format());
}
// TODO: Lossless transformations, especially for mere rotations of JFIF files.
//
// This method is thread-safe.
public void export(File dest_file, Scaling scaling, Jpeg.Quality quality,
PhotoFileFormat export_format, bool direct_copy_unmodified = false, bool export_metadata = true) throws Error {
if (direct_copy_unmodified) {
get_master_file().copy(dest_file, FileCopyFlags.OVERWRITE |
FileCopyFlags.TARGET_DEFAULT_PERMS, null, null);
return;
}
// Attempt to avoid decode/encoding cycle when exporting original-sized photos for lossy
// formats, as that degrades image quality. If alterations exist, but only EXIF has
// changed and the user hasn't requested conversion between image formats, then just copy
// the original file and update relevant EXIF.
if (scaling.is_unscaled() && (!has_alterations() || only_metadata_changed()) &&
(export_format == get_file_format()) && (get_file_format() == PhotoFileFormat.JFIF)) {
if (export_fullsized_backing(dest_file, export_metadata))
return;
}
// Copy over existing metadata from source if available, or create new metadata and
// save it for later export below. This has to happen before the format writer writes
// out the modified image, as that write will strip the existing exif data.
PhotoMetadata? metadata = get_metadata();
if (metadata == null)
metadata = export_format.create_metadata();
if (!export_format.can_write())
export_format = PhotoFileFormat.get_system_default_format();
PhotoFileWriter writer = export_format.create_writer(dest_file.get_path());
debug("Saving transformed version of %s to %s in file format %s", to_string(),
writer.get_filepath(), export_format.to_string());
Gdk.Pixbuf pixbuf;
// Since JPEGs can store their own orientation, we save the pixels
// directly and let the orientation field do the rotation...
if ((get_file_format() == PhotoFileFormat.JFIF) ||
(get_file_format() == PhotoFileFormat.RAW)) {
pixbuf = get_pixbuf_with_options(scaling, Exception.ORIENTATION,
BackingFetchMode.SOURCE);
} else {
// Non-JPEG image - we'll need to save the rotated pixels.
pixbuf = get_pixbuf_with_options(scaling, Exception.NONE,
BackingFetchMode.SOURCE);
}
writer.write(pixbuf, quality);
debug("Setting EXIF for %s", writer.get_filepath());
// Do we need to save metadata to this file?
if (export_metadata) {
//Yes, set metadata obtained above.
metadata.set_title(get_title());
metadata.set_comment(get_comment());
metadata.set_software(Resources.APP_TITLE, Resources.APP_VERSION);
if (get_exposure_time() != null)
metadata.set_exposure_date_time(new MetadataDateTime(get_exposure_time()));
else
metadata.set_exposure_date_time(null);
metadata.remove_tag("Exif.Iop.RelatedImageWidth");
metadata.remove_tag("Exif.Iop.RelatedImageHeight");
metadata.remove_exif_thumbnail();
if (has_user_generated_metadata())
set_user_metadata_for_export(metadata);
}
else {
//No, delete metadata.
metadata.clear();
}
// Even if we were told to trash camera-identifying data, we need
// to make sure the orientation propagates. Also, because JPEGs
// can store their own orientation, we'll save the original dimensions
// directly and let the orientation field do the rotation there.
if ((get_file_format() == PhotoFileFormat.JFIF) ||
(get_file_format() == PhotoFileFormat.RAW)) {
metadata.set_pixel_dimensions(get_dimensions(Exception.ORIENTATION));
metadata.set_orientation(get_orientation());
} else {
// Non-JPEG image - we'll need to save the rotated dimensions.
metadata.set_pixel_dimensions(Dimensions.for_pixbuf(pixbuf));
metadata.set_orientation(Orientation.TOP_LEFT);
}
export_format.create_metadata_writer(dest_file.get_path()).write_metadata(metadata);
}
private File generate_new_editable_file(out PhotoFileFormat file_format) throws Error {
File backing;
lock (row) {
file_format = get_file_format();
backing = get_file();
}
if (!file_format.can_write())
file_format = PhotoFileFormat.get_system_default_format();
string name, ext;
disassemble_filename(backing.get_basename(), out name, out ext);
if (ext == null || !file_format.get_properties().is_recognized_extension(ext))
ext = file_format.get_properties().get_default_extension();
// TRANSLATORS: "modified" here is part of a file name that was changed with another image tool outside of Shotwell. Note that there are potential issues with UTF-8 characters
string editable_basename = "%s_%s.%s".printf(name, _("modified"), ext);
bool collision;
return generate_unique_file(backing.get_parent(), editable_basename, out collision);
}
private static bool launch_editor(File file, PhotoFileFormat file_format) throws Error {
string commandline = file_format == PhotoFileFormat.RAW ? Config.Facade.get_instance().get_external_raw_app() :
Config.Facade.get_instance().get_external_photo_app();
if (is_string_empty(commandline))
return false;
AppInfo? app;
try {
app = AppInfo.create_from_commandline(commandline, "",
AppInfoCreateFlags.NONE);
} catch (Error er) {
app = null;
}
List<File> files = new List<File>();
files.insert(file, -1);
if (app != null)
return app.launch(files, null);
string[] argv = new string[2];
argv[0] = commandline;
argv[1] = file.get_path();
Pid child_pid;
return Process.spawn_async(
"/",
argv,
null, // environment
SpawnFlags.SEARCH_PATH,
null, // child setup
out child_pid);
}
// Opens with Ufraw, etc.
public void open_with_raw_external_editor() throws Error {
launch_editor(get_master_file(), get_master_file_format());
}
// Opens with GIMP, etc.
public void open_with_external_editor() throws Error {
File current_editable_file = null;
File create_editable_file = null;
PhotoFileFormat editable_file_format;
lock (readers) {
if (readers.editable != null)
current_editable_file = readers.editable.get_file();
if (current_editable_file == null)
create_editable_file = generate_new_editable_file(out editable_file_format);
else
editable_file_format = readers.editable.get_file_format();
}
// if this isn't the first time but the file does not exist OR there are transformations
// that need to be represented there, create a new one
if (create_editable_file == null && current_editable_file != null &&
(!current_editable_file.query_exists(null) || has_transformations()))
create_editable_file = current_editable_file;
// if creating a new edited file and can write to it, stop watching the old one
if (create_editable_file != null && editable_file_format.can_write()) {
halt_monitoring_editable();
try {
export(create_editable_file, Scaling.for_original(), Jpeg.Quality.MAXIMUM,
editable_file_format);
} catch (Error err) {
// if an error is thrown creating the file, clean it up
try {
create_editable_file.delete(null);
} catch (Error delete_err) {
// ignored
warning("Unable to delete editable file %s after export error: %s",
create_editable_file.get_path(), delete_err.message);
}
throw err;
}
// attach the editable file to the photo
attach_editable(editable_file_format, create_editable_file);
current_editable_file = create_editable_file;
}
assert(current_editable_file != null);
// if not already monitoring, monitor now
if (editable_monitor == null)
start_monitoring_editable(current_editable_file);
launch_editor(current_editable_file, get_file_format());
}
public void revert_to_master(bool notify = true) {
detach_editable(true, true, notify);
}
private void start_monitoring_editable(File file) throws Error {
halt_monitoring_editable();
// tell the LibraryMonitor not to monitor this file
LibraryMonitor.blacklist_file(file, "Photo.start_monitoring_editable");
editable_monitor = file.monitor(FileMonitorFlags.NONE, null);
editable_monitor.changed.connect(on_editable_file_changed);
}
private void halt_monitoring_editable() {
if (editable_monitor == null)
return;
// tell the LibraryMonitor a-ok to watch this file again
File? file = get_editable_file();
if (file != null)
LibraryMonitor.unblacklist_file(file);
editable_monitor.changed.disconnect(on_editable_file_changed);
editable_monitor.cancel();
editable_monitor = null;
}
private void attach_editable(PhotoFileFormat file_format, File file) throws Error {
// remove the transformations ... this must be done before attaching the editable, as these
// transformations are in the master's coordinate system, not the editable's ... don't
// notify photo is altered *yet* because update_editable will notify, and want to avoid
// stacking them up
remove_all_transformations(false);
update_editable(false, file_format.create_reader(file.get_path()));
}
private void update_editable_attributes() throws Error {
update_editable(true, null);
}
public void reimport_editable() throws Error {
update_editable(false, null);
}
// In general, because of the fragility of the order of operations and what's required where,
// use one of the above wrapper functions to call this rather than call this directly.
private void update_editable(bool only_attributes, PhotoFileReader? new_reader = null) throws Error {
// only_attributes only available for updating existing editable
assert((only_attributes && new_reader == null) || (!only_attributes));
PhotoFileReader? old_reader = get_editable_reader();
PhotoFileReader reader = new_reader ?? old_reader;
if (reader == null) {
detach_editable(false, true);
return;
}
bool timestamp_changed = false;
bool filesize_changed = false;
bool is_new_editable = false;
BackingPhotoID editable_id = get_editable_id();
File file = reader.get_file();
DetectedPhotoInformation detected;
BackingPhotoRow? backing = query_backing_photo_row(file, PhotoFileSniffer.Options.NO_MD5,
out detected);
// Have we _not_ got an editable attached yet?
if (editable_id.is_invalid()) {
// Yes, try to create and attach one.
if (backing != null) {
BackingPhotoTable.get_instance().add(backing);
lock (row) {
timestamp_changed = true;
filesize_changed = true;
PhotoTable.get_instance().attach_editable(row, backing.id);
editable = backing;
backing_photo_row = editable;
set_orientation(backing_photo_row.original_orientation);
}
}
is_new_editable = true;
}
if (only_attributes) {
// This should only be possible if the editable exists already.
assert(editable_id.is_valid());
FileInfo info;
try {
info = file.query_filesystem_info(DirectoryMonitor.SUPPLIED_ATTRIBUTES, null);
} catch (Error err) {
warning("Unable to read editable filesystem info for %s: %s", to_string(), err.message);
detach_editable(false, true);
return;
}
var timestamp = coarsify_date_time(info.get_modification_date_time());
BackingPhotoTable.get_instance().update_attributes(editable_id, timestamp,
info.get_size());
lock (row) {
timestamp_changed = !editable.timestamp.equal(timestamp);
filesize_changed = editable.filesize != info.get_size();
editable.timestamp = timestamp;
editable.filesize = info.get_size();
}
} else {
// Not just a file-attribute-only change.
if (editable_id.is_valid() && !is_new_editable) {
// Only check these if we didn't just have to create
// this editable, since, with a newly-created editable,
// the file size and modification time are by definition
// freshly-changed.
backing.id = editable_id;
BackingPhotoTable.get_instance().update(backing);
lock (row) {
timestamp_changed = editable.timestamp != backing.timestamp;
filesize_changed = editable.filesize != backing.filesize;
editable = backing;
backing_photo_row = editable;
set_orientation(backing_photo_row.original_orientation);
}
}
}
// if a new reader was specified, install that and begin using it
if (new_reader != null) {
lock (readers) {
readers.editable = new_reader;
}
}
if (!only_attributes && reader != old_reader) {
notify_baseline_replaced();
notify_editable_replaced(old_reader != null ? old_reader.get_file() : null,
new_reader != null ? new_reader.get_file() : null);
}
string[] alteration_list = new string[0];
if (timestamp_changed) {
alteration_list += "metadata:editable-timestamp";
alteration_list += "metadata:baseline-timestamp";
if (is_editable_source())
alteration_list += "metadata:source-timestamp";
}
if (filesize_changed || new_reader != null) {
alteration_list += "image:editable";
alteration_list += "image:baseline";
if (is_editable_source())
alteration_list += "image:source";
}
if (alteration_list.length > 0)
notify_altered(new Alteration.from_array(alteration_list));
}
private void detach_editable(bool delete_editable, bool remove_transformations, bool notify = true) {
halt_monitoring_editable();
bool has_editable = false;
File? editable_file = null;
lock (readers) {
if (readers.editable != null) {
editable_file = readers.editable.get_file();
readers.editable = null;
has_editable = true;
}
}
if (has_editable) {
BackingPhotoID editable_id = BackingPhotoID();
try {
lock (row) {
editable_id = row.editable_id;
if (editable_id.is_valid())
PhotoTable.get_instance().detach_editable(row);
backing_photo_row = row.master;
}
} catch (Error err) {
warning("Unable to remove editable from PhotoTable: %s", err.message);
}
try {
if (editable_id.is_valid())
BackingPhotoTable.get_instance().remove(editable_id);
} catch (DatabaseError err) {
warning("Unable to remove editable from BackingPhotoTable: %s", err.message);
}
}
if (remove_transformations)
remove_all_transformations(false);
if (has_editable) {
notify_baseline_replaced();
notify_editable_replaced(editable_file, null);
}
if (delete_editable && editable_file != null) {
try {
editable_file.trash(null);
} catch (Error err) {
warning("Unable to trash editable %s for %s: %s", editable_file.get_path(), to_string(),
err.message);
}
}
if ((has_editable || remove_transformations) && notify)
notify_altered(new Alteration("image", "revert"));
}
private void on_editable_file_changed(File file, File? other_file, FileMonitorEvent event) {
// This has some expense, but this assertion is important for a lot of sanity reasons.
lock (readers) {
assert(readers.editable != null);
if (!file.equal(readers.editable.get_file())) {
// Ignore. When the export file is created, we receive a
// DELETE event for renaming temporary file created by exiv2 when
// writing meta-data.
return;
}
}
debug("EDITABLE %s: %s", event.to_string(), file.get_path());
switch (event) {
case FileMonitorEvent.CHANGED:
case FileMonitorEvent.CREATED:
if (reimport_editable_scheduler == null) {
reimport_editable_scheduler = new OneShotScheduler("Photo.reimport_editable",
on_reimport_editable);
}
reimport_editable_scheduler.after_timeout(1000, true);
break;
case FileMonitorEvent.ATTRIBUTE_CHANGED:
if (update_editable_attributes_scheduler == null) {
update_editable_attributes_scheduler = new OneShotScheduler(
"Photo.update_editable_attributes", on_update_editable_attributes);
}
update_editable_attributes_scheduler.after_timeout(1000, true);
break;
case FileMonitorEvent.DELETED:
if (remove_editable_scheduler == null) {
remove_editable_scheduler = new OneShotScheduler("Photo.remove_editable",
on_remove_editable);
}
remove_editable_scheduler.after_timeout(3000, true);
break;
case FileMonitorEvent.CHANGES_DONE_HINT:
default:
// ignored
break;
}
// at this point, any image date we have cached is stale,
// so delete it and force the pipeline to re-fetch it
discard_prefetched();
}
private void on_reimport_editable() {
// delete old image data and force the pipeline to load new from file.
discard_prefetched();
debug("Reimporting editable for %s", to_string());
try {
reimport_editable();
} catch (Error err) {
warning("Unable to reimport photo %s changed by external editor: %s",
to_string(), err.message);
}
}
private void on_update_editable_attributes() {
debug("Updating editable attributes for %s", to_string());
try {
update_editable_attributes();
} catch (Error err) {
warning("Unable to update editable attributes: %s", err.message);
}
}
private void on_remove_editable() {
PhotoFileReader? reader = get_editable_reader();
if (reader == null)
return;
File file = reader.get_file();
if (file.query_exists(null)) {
debug("Not removing editable for %s: file exists", to_string());
return;
}
debug("Removing editable for %s: file no longer exists", to_string());
detach_editable(false, true);
}
//
// Aggregate/helper/translation functions
//
// Returns uncropped (but rotated) dimensions
public Dimensions get_original_dimensions() {
Dimensions dim = get_raw_dimensions();
Orientation orientation = get_orientation();
return orientation.rotate_dimensions(dim);
}
// Returns uncropped dimensions rotated only to reflect the original orientation
public Dimensions get_master_dimensions() {
return get_original_orientation().rotate_dimensions(get_raw_dimensions());
}
// Returns the crop against the coordinate system of the rotated photo
public bool get_crop(out Box crop, Exception exceptions = Exception.NONE) {
Box raw;
if (!get_raw_crop(out raw)) {
crop = Box();
return false;
}
Dimensions dim = get_dimensions(Exception.CROP | Exception.ORIENTATION);
Orientation orientation = get_orientation();
if(exceptions.allows(Exception.ORIENTATION))
crop = orientation.rotate_box(dim, raw);
else
crop = raw;
return true;
}
// Sets the crop against the coordinate system of the rotated photo
public void set_crop(Box crop) {
Dimensions dim = get_dimensions(Exception.CROP | Exception.ORIENTATION);
Orientation orientation = get_orientation();
Box derotated = orientation.derotate_box(dim, crop);
derotated.left = derotated.left.clamp(0, dim.width - 2);
derotated.right = derotated.right.clamp(derotated.left, dim.width - 1);
derotated.top = derotated.top.clamp(0, dim.height - 2);
derotated.bottom = derotated.bottom.clamp(derotated.top, dim.height - 1);
set_raw_crop(derotated);
}
public bool get_straighten(out double theta) {
if (!get_raw_straighten(out theta))
return false;
return true;
}
public void set_straighten(double theta) {
set_raw_straighten(theta);
}
private Gdk.Pixbuf do_redeye(Gdk.Pixbuf pixbuf, EditingTools.RedeyeInstance inst) {
/* we remove redeye within a circular region called the "effect
extent." the effect extent is inscribed within its "bounding
rectangle." */
/* for each scanline in the top half-circle of the effect extent,
compute the number of pixels by which the effect extent is inset
from the edges of its bounding rectangle. note that we only have
to do this for the first quadrant because the second quadrant's
insets can be derived by symmetry */
double r = (double) inst.radius;
int[] x_insets_first_quadrant = new int[inst.radius + 1];
int i = 0;
for (double y = r; y >= 0.0; y -= 1.0) {
double theta = Math.asin(y / r);
int x = (int)((r * Math.cos(theta)) + 0.5);
x_insets_first_quadrant[i] = inst.radius - x;
i++;
}
int x_bounds_min = inst.center.x - inst.radius;
int x_bounds_max = inst.center.x + inst.radius;
int ymin = inst.center.y - inst.radius;
ymin = (ymin < 0) ? 0 : ymin;
int ymax = inst.center.y;
ymax = (ymax > (pixbuf.height - 1)) ? (pixbuf.height - 1) : ymax;
/* iterate over all the pixels in the top half-circle of the effect
extent from top to bottom */
int inset_index = 0;
for (int y_it = ymin; y_it <= ymax; y_it++) {
int xmin = x_bounds_min + x_insets_first_quadrant[inset_index];
xmin = (xmin < 0) ? 0 : xmin;
int xmax = x_bounds_max - x_insets_first_quadrant[inset_index];
xmax = (xmax > (pixbuf.width - 1)) ? (pixbuf.width - 1) : xmax;
for (int x_it = xmin; x_it <= xmax; x_it++) {
red_reduce_pixel(pixbuf, x_it, y_it);
}
inset_index++;
}
/* iterate over all the pixels in the top half-circle of the effect
extent from top to bottom */
ymin = inst.center.y;
ymax = inst.center.y + inst.radius;
inset_index = x_insets_first_quadrant.length - 1;
for (int y_it = ymin; y_it <= ymax; y_it++) {
int xmin = x_bounds_min + x_insets_first_quadrant[inset_index];
xmin = (xmin < 0) ? 0 : xmin;
int xmax = x_bounds_max - x_insets_first_quadrant[inset_index];
xmax = (xmax > (pixbuf.width - 1)) ? (pixbuf.width - 1) : xmax;
for (int x_it = xmin; x_it <= xmax; x_it++) {
red_reduce_pixel(pixbuf, x_it, y_it);
}
inset_index--;
}
return pixbuf;
}
private Gdk.Pixbuf red_reduce_pixel(Gdk.Pixbuf pixbuf, int x, int y) {
int px_start_byte_offset = (y * pixbuf.get_rowstride()) +
(x * pixbuf.get_n_channels());
/* Due to inaccuracies in the scaler, we can occasionally
* get passed a coordinate pair outside the image, causing
* us to walk off the array and into segfault territory.
* Check coords prior to drawing to prevent this... */
if ((x >= 0) && (y >= 0) && (x < pixbuf.width) && (y < pixbuf.height)) {
unowned uchar[] pixel_data = pixbuf.get_pixels();
/* The pupil of the human eye has no pigment, so we expect all
color channels to be of about equal intensity. This means that at
any point within the effects region, the value of the red channel
should be about the same as the values of the green and blue
channels. So set the value of the red channel to be the mean of the
values of the red and blue channels. This preserves achromatic
intensity across all channels while eliminating any extraneous flare
affecting the red channel only (i.e. the red-eye effect). */
uchar g = pixel_data[px_start_byte_offset + 1];
uchar b = pixel_data[px_start_byte_offset + 2];
uchar r = (g + b) / 2;
pixel_data[px_start_byte_offset] = r;
}
return pixbuf;
}
public Gdk.Point unscaled_to_raw_point(Gdk.Point unscaled_point) {
Orientation unscaled_orientation = get_orientation();
Dimensions unscaled_dims =
unscaled_orientation.rotate_dimensions(get_dimensions());
int unscaled_x_offset_raw = 0;
int unscaled_y_offset_raw = 0;
Box crop_box;
if (get_raw_crop(out crop_box)) {
unscaled_x_offset_raw = crop_box.left;
unscaled_y_offset_raw = crop_box.top;
}
Gdk.Point derotated_point =
unscaled_orientation.derotate_point(unscaled_dims,
unscaled_point);
derotated_point.x += unscaled_x_offset_raw;
derotated_point.y += unscaled_y_offset_raw;
return derotated_point;
}
public Gdk.Rectangle unscaled_to_raw_rect(Gdk.Rectangle unscaled_rect) {
Gdk.Point upper_left = {0};
Gdk.Point lower_right = {0};
upper_left.x = unscaled_rect.x;
upper_left.y = unscaled_rect.y;
lower_right.x = upper_left.x + unscaled_rect.width;
lower_right.y = upper_left.y + unscaled_rect.height;
upper_left = unscaled_to_raw_point(upper_left);
lower_right = unscaled_to_raw_point(lower_right);
if (upper_left.x > lower_right.x) {
int temp = upper_left.x;
upper_left.x = lower_right.x;
lower_right.x = temp;
}
if (upper_left.y > lower_right.y) {
int temp = upper_left.y;
upper_left.y = lower_right.y;
lower_right.y = temp;
}
Gdk.Rectangle raw_rect = Gdk.Rectangle();
raw_rect.x = upper_left.x;
raw_rect.y = upper_left.y;
raw_rect.width = lower_right.x - upper_left.x;
raw_rect.height = lower_right.y - upper_left.y;
return raw_rect;
}
public PixelTransformationBundle? get_enhance_transformations() {
Gdk.Pixbuf pixbuf = null;
#if MEASURE_ENHANCE
Timer fetch_timer = new Timer();
#endif
try {
pixbuf = get_pixbuf_with_options(Scaling.for_best_fit(360, false),
Photo.Exception.ALL);
#if MEASURE_ENHANCE
fetch_timer.stop();
#endif
} catch (Error e) {
warning("Photo: get_enhance_transformations: couldn't obtain pixbuf to build " +
"transform histogram");
return null;
}
#if MEASURE_ENHANCE
Timer analyze_timer = new Timer();
#endif
PixelTransformationBundle transformations = AutoEnhance.create_auto_enhance_adjustments(pixbuf);
#if MEASURE_ENHANCE
analyze_timer.stop();
debug("Auto-Enhance fetch time: %f sec; analyze time: %f sec", fetch_timer.elapsed(),
analyze_timer.elapsed());
#endif
return transformations;
}
public bool enhance() {
PixelTransformationBundle transformations = get_enhance_transformations();
if (transformations == null)
return false;
#if MEASURE_ENHANCE
Timer apply_timer = new Timer();
#endif
lock (row) {
set_color_adjustments(transformations);
}
#if MEASURE_ENHANCE
apply_timer.stop();
debug("Auto-Enhance apply time: %f sec", apply_timer.elapsed());
#endif
return true;
}
}
public class LibraryPhotoSourceCollection : MediaSourceCollection {
public enum State {
UNKNOWN,
ONLINE,
OFFLINE,
TRASH,
EDITABLE,
DEVELOPER
}
public override TransactionController transaction_controller {
get {
if (_transaction_controller == null)
_transaction_controller = new MediaSourceTransactionController(this);
return _transaction_controller;
}
}
private TransactionController? _transaction_controller = null;
private Gee.HashMap<File, LibraryPhoto> by_editable_file = new Gee.HashMap<File, LibraryPhoto>(
file_hash, file_equal);
private Gee.HashMap<File, LibraryPhoto> by_raw_development_file = new Gee.HashMap<File, LibraryPhoto>(
file_hash, file_equal);
private Gee.MultiMap<int64?, LibraryPhoto> filesize_to_photo =
new Gee.TreeMultiMap<int64?, LibraryPhoto>(int64_compare);
private Gee.HashMap<LibraryPhoto, int64?> photo_to_master_filesize =
new Gee.HashMap<LibraryPhoto, int64?>(null, null, int64_equal);
private Gee.HashMap<LibraryPhoto, int64?> photo_to_editable_filesize =
new Gee.HashMap<LibraryPhoto, int64?>(null, null, int64_equal);
private Gee.MultiMap<LibraryPhoto, int64?> photo_to_raw_development_filesize =
new Gee.TreeMultiMap<LibraryPhoto, int64?>();
public virtual signal void master_reimported(LibraryPhoto photo, PhotoMetadata? metadata) {
}
public virtual signal void editable_reimported(LibraryPhoto photo, PhotoMetadata? metadata) {
}
public virtual signal void baseline_reimported(LibraryPhoto photo, PhotoMetadata? metadata) {
}
public virtual signal void source_reimported(LibraryPhoto photo, PhotoMetadata? metadata) {
}
public LibraryPhotoSourceCollection() {
base ("LibraryPhotoSourceCollection", Photo.get_photo_key);
get_trashcan().contents_altered.connect(on_trashcan_contents_altered);
get_offline_bin().contents_altered.connect(on_offline_contents_altered);
}
protected override MediaSourceHoldingTank create_trashcan() {
return new LibraryPhotoSourceHoldingTank(this, check_if_trashed_photo, Photo.get_photo_key);
}
protected override MediaSourceHoldingTank create_offline_bin() {
return new LibraryPhotoSourceHoldingTank(this, check_if_offline_photo, Photo.get_photo_key);
}
public override MediaMonitor create_media_monitor(Workers workers, Cancellable cancellable) {
return new PhotoMonitor(workers, cancellable);
}
public override bool holds_type_of_source(DataSource source) {
return source is LibraryPhoto;
}
public override string get_typename() {
return Photo.TYPENAME;
}
public override bool is_file_recognized(File file) {
return PhotoFileFormat.is_file_supported(file);
}
protected override void notify_contents_altered(Gee.Iterable<DataObject>? added,
Gee.Iterable<DataObject>? removed) {
if (added != null) {
foreach (DataObject object in added) {
LibraryPhoto photo = (LibraryPhoto) object;
File? editable = photo.get_editable_file();
if (editable != null)
by_editable_file.set(editable, photo);
photo.editable_replaced.connect(on_editable_replaced);
Gee.Collection<File> raw_list = photo.get_raw_developer_files();
if (raw_list != null)
foreach (File f in raw_list)
by_raw_development_file.set(f, photo);
photo.raw_development_modified.connect(on_raw_development_modified);
int64 master_filesize = photo.get_master_photo_row().filesize;
int64 editable_filesize = photo.get_editable_photo_row() != null
? photo.get_editable_photo_row().filesize
: -1;
filesize_to_photo.set(master_filesize, photo);
photo_to_master_filesize.set(photo, master_filesize);
if (editable_filesize >= 0) {
filesize_to_photo.set(editable_filesize, photo);
photo_to_editable_filesize.set(photo, editable_filesize);
}
Gee.Collection<BackingPhotoRow>? raw_rows = photo.get_raw_development_photo_rows();
if (raw_rows != null) {
foreach (BackingPhotoRow row in raw_rows) {
if (row.filesize >= 0) {
filesize_to_photo.set(row.filesize, photo);
photo_to_raw_development_filesize.set(photo, row.filesize);
}
}
}
}
}
if (removed != null) {
foreach (DataObject object in removed) {
LibraryPhoto photo = (LibraryPhoto) object;
File? editable = photo.get_editable_file();
if (editable != null) {
bool is_removed = by_editable_file.unset(photo.get_editable_file());
assert(is_removed);
}
photo.editable_replaced.disconnect(on_editable_replaced);
Gee.Collection<File> raw_list = photo.get_raw_developer_files();
if (raw_list != null)
foreach (File f in raw_list)
by_raw_development_file.unset(f);
photo.raw_development_modified.disconnect(on_raw_development_modified);
int64 master_filesize = photo.get_master_photo_row().filesize;
int64 editable_filesize = photo.get_editable_photo_row() != null
? photo.get_editable_photo_row().filesize
: -1;
filesize_to_photo.remove(master_filesize, photo);
photo_to_master_filesize.unset(photo);
if (editable_filesize >= 0) {
filesize_to_photo.remove(editable_filesize, photo);
photo_to_editable_filesize.unset(photo);
}
Gee.Collection<BackingPhotoRow>? raw_rows = photo.get_raw_development_photo_rows();
if (raw_rows != null) {
foreach (BackingPhotoRow row in raw_rows) {
if (row.filesize >= 0) {
filesize_to_photo.remove(row.filesize, photo);
photo_to_raw_development_filesize.remove(photo, row.filesize);
}
}
}
}
}
base.notify_contents_altered(added, removed);
}
private void on_editable_replaced(Photo photo, File? old_file, File? new_file) {
if (old_file != null) {
bool is_removed = by_editable_file.unset(old_file);
assert(is_removed);
}
if (new_file != null)
by_editable_file.set(new_file, (LibraryPhoto) photo);
}
private void on_raw_development_modified(Photo _photo) {
LibraryPhoto? photo = _photo as LibraryPhoto;
if (photo == null)
return;
// Unset existing files.
if (photo_to_raw_development_filesize.contains(photo)) {
foreach (int64 s in photo_to_raw_development_filesize.get(photo))
filesize_to_photo.remove(s, photo);
photo_to_raw_development_filesize.remove_all(photo);
}
// Add new ones.
Gee.Collection<File> raw_list = photo.get_raw_developer_files();
if (raw_list != null)
foreach (File f in raw_list)
by_raw_development_file.set(f, photo);
Gee.Collection<BackingPhotoRow>? raw_rows = photo.get_raw_development_photo_rows();
if (raw_rows != null) {
foreach (BackingPhotoRow row in raw_rows) {
if (row.filesize > 0) {
filesize_to_photo.set(row.filesize, photo);
photo_to_raw_development_filesize.set(photo, row.filesize);
}
}
}
}
protected override void items_altered(Gee.Map<DataObject, Alteration> items) {
foreach (DataObject object in items.keys) {
Alteration alteration = items.get(object);
LibraryPhoto photo = (LibraryPhoto) object;
if (alteration.has_detail("image", "master") || alteration.has_detail("image", "editable")) {
int64 old_master_filesize = photo_to_master_filesize.get(photo);
int64 old_editable_filesize = photo_to_editable_filesize.has_key(photo)
? photo_to_editable_filesize.get(photo)
: -1;
photo_to_master_filesize.unset(photo);
filesize_to_photo.remove(old_master_filesize, photo);
if (old_editable_filesize >= 0) {
photo_to_editable_filesize.unset(photo);
filesize_to_photo.remove(old_editable_filesize, photo);
}
int64 master_filesize = photo.get_master_photo_row().filesize;
int64 editable_filesize = photo.get_editable_photo_row() != null
? photo.get_editable_photo_row().filesize
: -1;
photo_to_master_filesize.set(photo, master_filesize);
filesize_to_photo.set(master_filesize, photo);
if (editable_filesize >= 0) {
photo_to_editable_filesize.set(photo, editable_filesize);
filesize_to_photo.set(editable_filesize, photo);
}
}
}
base.items_altered(items);
}
// This method adds the photos to the Tags (keywords) that were discovered during import.
public override void postprocess_imported_media(Gee.Collection<MediaSource> media_sources) {
Gee.HashMultiMap<Tag, LibraryPhoto> map = new Gee.HashMultiMap<Tag, LibraryPhoto>();
foreach (MediaSource media in media_sources) {
LibraryPhoto photo = (LibraryPhoto) media;
PhotoMetadata? metadata = photo.get_metadata();
// get an index of all the htags in the application
HierarchicalTagIndex global_index = HierarchicalTagIndex.get_global_index();
// if any hierarchical tag information is available, process it first. hierarchical tag
// information must be processed first to avoid tag duplication, since most photo
// management applications that support hierarchical tags also "flatten" the
// hierarchical tag information as plain old tags. If a tag name appears as part of
// a hierarchical path, it needs to be excluded from being processed as a flat tag
HierarchicalTagIndex? htag_index = null;
if (metadata != null && metadata.has_hierarchical_keywords()) {
htag_index = HierarchicalTagUtilities.process_hierarchical_import_keywords(
metadata.get_hierarchical_keywords());
}
if (photo.get_import_keywords() != null) {
foreach (string keyword in photo.get_import_keywords()) {
if (htag_index != null && htag_index.is_tag_in_index(keyword))
continue;
string? name = Tag.prep_tag_name(keyword);
if (global_index.is_tag_in_index(name)) {
string most_derived_path = global_index.get_path_for_name(name);
map.set(Tag.for_path(most_derived_path), photo);
continue;
}
if (name != null)
map.set(Tag.for_path(name), photo);
}
}
if (metadata != null && metadata.has_hierarchical_keywords()) {
foreach (string path in htag_index.get_all_paths()) {
string? name = Tag.prep_tag_name(path);
if (name != null)
map.set(Tag.for_path(name), photo);
}
}
}
foreach (MediaSource media in media_sources) {
LibraryPhoto photo = (LibraryPhoto) media;
photo.clear_import_keywords();
}
foreach (Tag tag in map.get_keys())
tag.attach_many(map.get(tag));
base.postprocess_imported_media(media_sources);
}
// This is only called by LibraryPhoto.
public virtual void notify_master_reimported(LibraryPhoto photo, PhotoMetadata? metadata) {
master_reimported(photo, metadata);
}
// This is only called by LibraryPhoto.
public virtual void notify_editable_reimported(LibraryPhoto photo, PhotoMetadata? metadata) {
editable_reimported(photo, metadata);
}
// This is only called by LibraryPhoto.
public virtual void notify_source_reimported(LibraryPhoto photo, PhotoMetadata? metadata) {
source_reimported(photo, metadata);
}
// This is only called by LibraryPhoto.
public virtual void notify_baseline_reimported(LibraryPhoto photo, PhotoMetadata? metadata) {
baseline_reimported(photo, metadata);
}
protected override MediaSource? fetch_by_numeric_id(int64 numeric_id) {
return fetch(PhotoID(numeric_id));
}
private void on_trashcan_contents_altered(Gee.Collection<DataSource>? added,
Gee.Collection<DataSource>? removed) {
trashcan_contents_altered((Gee.Collection<LibraryPhoto>?) added,
(Gee.Collection<LibraryPhoto>?) removed);
}
private bool check_if_trashed_photo(DataSource source, Alteration alteration) {
return ((LibraryPhoto) source).is_trashed();
}
private void on_offline_contents_altered(Gee.Collection<DataSource>? added,
Gee.Collection<DataSource>? removed) {
offline_contents_altered((Gee.Collection<LibraryPhoto>?) added,
(Gee.Collection<LibraryPhoto>?) removed);
}
private bool check_if_offline_photo(DataSource source, Alteration alteration) {
return ((LibraryPhoto) source).is_offline();
}
public override MediaSource? fetch_by_source_id(string source_id) {
assert(source_id.has_prefix(Photo.TYPENAME));
string numeric_only = source_id.substring(Photo.TYPENAME.length, -1);
return fetch_by_numeric_id(int64.parse(numeric_only, 16));
}
public override Gee.Collection<string> get_event_source_ids(EventID event_id){
return PhotoTable.get_instance().get_event_source_ids(event_id);
}
public LibraryPhoto fetch(PhotoID photo_id) {
return (LibraryPhoto) fetch_by_key(photo_id.id);
}
public LibraryPhoto? fetch_by_editable_file(File file) {
return by_editable_file.get(file);
}
public LibraryPhoto? fetch_by_raw_development_file(File file) {
return by_raw_development_file.get(file);
}
private void compare_backing(LibraryPhoto photo, FileInfo info,
Gee.Collection<LibraryPhoto> matches_master, Gee.Collection<LibraryPhoto> matches_editable,
Gee.Collection<LibraryPhoto> matches_development) {
if (photo.get_master_photo_row().matches_file_info(info))
matches_master.add(photo);
BackingPhotoRow? editable = photo.get_editable_photo_row();
if (editable != null && editable.matches_file_info(info))
matches_editable.add(photo);
Gee.Collection<BackingPhotoRow>? development = photo.get_raw_development_photo_rows();
if (development != null) {
foreach (BackingPhotoRow row in development) {
if (row.matches_file_info(info)) {
matches_development.add(photo);
break;
}
}
}
}
// Adds photos to both collections if their filesize and timestamp match. Note that it's possible
// for a single photo to be added to both collections.
public void fetch_by_matching_backing(FileInfo info, Gee.Collection<LibraryPhoto> matches_master,
Gee.Collection<LibraryPhoto> matches_editable, Gee.Collection<LibraryPhoto> matched_development) {
foreach (LibraryPhoto photo in filesize_to_photo.get(info.get_size()))
compare_backing(photo, info, matches_master, matches_editable, matched_development);
foreach (MediaSource media in get_offline_bin_contents())
compare_backing((LibraryPhoto) media, info, matches_master, matches_editable, matched_development);
}
public PhotoID get_basename_filesize_duplicate(string basename, int64 filesize) {
foreach (LibraryPhoto photo in filesize_to_photo.get(filesize)) {
if (utf8_ci_compare(photo.get_master_file().get_basename(), basename) == 0)
return photo.get_photo_id();
}
return PhotoID(); // default constructor for PhotoIDs will create an invalid ID --
// this is just the behavior that we want
}
public bool has_basename_filesize_duplicate(string basename, int64 filesize) {
return get_basename_filesize_duplicate(basename, filesize).is_valid();
}
public LibraryPhoto? get_trashed_by_file(File file) {
LibraryPhoto? photo = (LibraryPhoto?) get_trashcan().fetch_by_master_file(file);
if (photo == null)
photo = (LibraryPhoto?) ((LibraryPhotoSourceHoldingTank) get_trashcan()).
fetch_by_backing_file(file);
return photo;
}
public LibraryPhoto? get_trashed_by_md5(string md5) {
return (LibraryPhoto?) get_trashcan().fetch_by_md5(md5);
}
public LibraryPhoto? get_offline_by_file(File file) {
LibraryPhoto? photo = (LibraryPhoto?) get_offline_bin().fetch_by_master_file(file);
if (photo == null)
photo = (LibraryPhoto?) ((LibraryPhotoSourceHoldingTank) get_offline_bin()).
fetch_by_backing_file(file);
return photo;
}
public LibraryPhoto? get_offline_by_md5(string md5) {
return (LibraryPhoto?) get_offline_bin().fetch_by_md5(md5);
}
public int get_offline_count() {
return get_offline_bin().get_count();
}
public LibraryPhoto? get_state_by_file(File file, out State state) {
LibraryPhoto? photo = (LibraryPhoto?) fetch_by_master_file(file);
if (photo != null) {
state = State.ONLINE;
return photo;
}
photo = fetch_by_editable_file(file);
if (photo != null) {
state = State.EDITABLE;
return photo;
}
photo = fetch_by_raw_development_file(file);
if (photo != null) {
state = State.DEVELOPER;
return photo;
}
photo = get_trashed_by_file(file) as LibraryPhoto;
if (photo != null) {
state = State.TRASH;
return photo;
}
photo = get_offline_by_file(file) as LibraryPhoto;
if (photo != null) {
state = State.OFFLINE;
return photo;
}
state = State.UNKNOWN;
return null;
}
public override bool has_backlink(SourceBacklink backlink) {
if (base.has_backlink(backlink))
return true;
if (get_trashcan().has_backlink(backlink))
return true;
if (get_offline_bin().has_backlink(backlink))
return true;
return false;
}
public override void remove_backlink(SourceBacklink backlink) {
get_trashcan().remove_backlink(backlink);
get_offline_bin().remove_backlink(backlink);
base.remove_backlink(backlink);
}
}
//
// LibraryPhoto
//
public class LibraryPhoto : Photo, Flaggable, Monitorable {
// Top 16 bits are reserved for Photo
// Warning: FLAG_HIDDEN and FLAG_FAVORITE have been deprecated for ratings and rating filters.
private const uint64 FLAG_HIDDEN = 0x0000000000000001;
private const uint64 FLAG_FAVORITE = 0x0000000000000002;
private const uint64 FLAG_TRASH = 0x0000000000000004;
private const uint64 FLAG_OFFLINE = 0x0000000000000008;
private const uint64 FLAG_FLAGGED = 0x0000000000000010;
public static LibraryPhotoSourceCollection global = null;
private bool block_thumbnail_generation = false;
private OneShotScheduler thumbnail_scheduler = null;
private Gee.Collection<string>? import_keywords;
private LibraryPhoto(PhotoRow row) {
base (row);
this.import_keywords = null;
thumbnail_scheduler = new OneShotScheduler("LibraryPhoto", generate_thumbnails);
// import gps coords of photos imported with prior versions of shotwell
if (row.gps_coords.has_gps == -1) {
var gps_import_scheduler = new OneShotScheduler("LibraryPhoto", import_gps_metadata);
gps_import_scheduler.at_priority_idle(Priority.LOW);
}
// if marked in a state where they're held in an orphanage, rehydrate their backlinks
if ((row.flags & (FLAG_TRASH | FLAG_OFFLINE)) != 0)
rehydrate_backlinks(global, row.backlinks);
if ((row.flags & (FLAG_HIDDEN | FLAG_FAVORITE)) != 0)
upgrade_rating_flags(row.flags);
}
private LibraryPhoto.from_import_params(PhotoImportParams import_params) {
base (import_params.row);
this.import_keywords = import_params.keywords;
thumbnail_scheduler = new OneShotScheduler("LibraryPhoto", generate_thumbnails);
// if marked in a state where they're held in an orphanage, rehydrate their backlinks
if ((import_params.row.flags & (FLAG_TRASH | FLAG_OFFLINE)) != 0)
rehydrate_backlinks(global, import_params.row.backlinks);
if ((import_params.row.flags & (FLAG_HIDDEN | FLAG_FAVORITE)) != 0)
upgrade_rating_flags(import_params.row.flags);
}
public static void init(ProgressMonitor? monitor = null) {
init_photo();
global = new LibraryPhotoSourceCollection();
// prefetch all the photos from the database and add them to the global collection ...
// do in batches to take advantage of add_many()
Gee.ArrayList<PhotoRow?> all = PhotoTable.get_instance().get_all();
Gee.ArrayList<LibraryPhoto> all_photos = new Gee.ArrayList<LibraryPhoto>();
Gee.ArrayList<LibraryPhoto> trashed_photos = new Gee.ArrayList<LibraryPhoto>();
Gee.ArrayList<LibraryPhoto> offline_photos = new Gee.ArrayList<LibraryPhoto>();
int count = all.size;
for (int ctr = 0; ctr < count; ctr++) {
PhotoRow row = all.get(ctr);
LibraryPhoto photo = new LibraryPhoto(row);
uint64 flags = row.flags;
if ((flags & FLAG_TRASH) != 0)
trashed_photos.add(photo);
else if ((flags & FLAG_OFFLINE) != 0)
offline_photos.add(photo);
else
all_photos.add(photo);
if (monitor != null)
monitor(ctr, count);
}
global.add_many(all_photos);
global.add_many_to_trash(trashed_photos);
global.add_many_to_offline(offline_photos);
}
public static void terminate() {
terminate_photo();
}
// This accepts a PhotoRow that was prepared with Photo.prepare_for_import and
// has not already been inserted in the database. See PhotoTable.add() for which fields are
// used and which are ignored. The PhotoRow itself will be modified with the remaining values
// as they are stored in the database.
public static ImportResult import_create(PhotoImportParams params, out LibraryPhoto photo) {
// add to the database
PhotoID photo_id = PhotoTable.get_instance().add(params.row);
if (photo_id.is_invalid()) {
photo = null;
return ImportResult.DATABASE_ERROR;
}
// create local object but don't add to global until thumbnails generated
photo = new LibraryPhoto.from_import_params(params);
return ImportResult.SUCCESS;
}
public static void import_failed(LibraryPhoto photo) {
try {
PhotoTable.get_instance().remove(photo.get_photo_id());
} catch (DatabaseError err) {
AppWindow.database_error(err);
}
}
protected override void notify_master_reimported(PhotoMetadata? metadata) {
base.notify_master_reimported(metadata);
global.notify_master_reimported(this, metadata);
}
protected override void notify_editable_reimported(PhotoMetadata? metadata) {
base.notify_editable_reimported(metadata);
global.notify_editable_reimported(this, metadata);
}
protected override void notify_source_reimported(PhotoMetadata? metadata) {
base.notify_source_reimported(metadata);
global.notify_source_reimported(this, metadata);
}
protected override void notify_baseline_reimported(PhotoMetadata? metadata) {
base.notify_baseline_reimported(metadata);
global.notify_baseline_reimported(this, metadata);
}
private void generate_thumbnails() {
try {
ThumbnailCache.import_from_source(this, true);
} catch (Error err) {
warning("Unable to generate thumbnails for %s: %s", to_string(), err.message);
}
// fire signal that thumbnails have changed
notify_thumbnail_altered();
}
private void import_gps_metadata() {
GpsCoords gps_coords = get_metadata().get_gps_coords();
set_gps_coords(gps_coords);
}
// These keywords are only used during import and should not be relied upon elsewhere.
public Gee.Collection<string>? get_import_keywords() {
return import_keywords;
}
public void clear_import_keywords() {
import_keywords = null;
}
public override void notify_altered(Alteration alteration) {
// generate new thumbnails in the background
if (!block_thumbnail_generation && alteration.has_subject("image"))
thumbnail_scheduler.at_priority_idle(Priority.LOW);
base.notify_altered(alteration);
}
public override Gdk.Pixbuf get_preview_pixbuf(Scaling scaling) throws Error {
Gdk.Pixbuf pixbuf = get_thumbnail(ThumbnailCache.Size.BIG);
return scaling.perform_on_pixbuf(pixbuf, Gdk.InterpType.BILINEAR, true);
}
public override void rotate(Rotation rotation) {
// block thumbnail generation for this operation; taken care of below
block_thumbnail_generation = true;
base.rotate(rotation);
block_thumbnail_generation = false;
// because rotations are (a) common and available everywhere in the app, (b) the user expects
// a level of responsiveness not necessarily required by other modifications, (c) can be
// performed on multiple images simultaneously, and (d) can't cache a lot of full-sized
// pixbufs for rotate-and-scale ops, perform the rotation directly on the already-modified
// thumbnails.
try {
ThumbnailCache.rotate(this, rotation);
} catch (Error err) {
// TODO: Mark thumbnails as dirty in database
warning("Unable to update thumbnails for %s: %s", to_string(), err.message);
}
notify_thumbnail_altered();
}
// Returns unscaled thumbnail with all modifications applied applicable to the scale
public override Gdk.Pixbuf? get_thumbnail(int scale) throws Error {
return ThumbnailCache.fetch(this, scale);
}
// Duplicates a backing photo row, returning the ID.
// An invalid ID will be returned if the backing photo row is not set or is invalid.
private BackingPhotoID duplicate_backing_photo(BackingPhotoRow? backing) throws Error {
BackingPhotoID backing_id = BackingPhotoID();
if (backing == null || backing.filepath == null)
return backing_id; // empty, invalid ID
File file = File.new_for_path(backing.filepath);
if (file.query_exists()) {
File dupe_file = LibraryFiles.duplicate(file, on_duplicate_progress, true);
DetectedPhotoInformation detected;
BackingPhotoRow? state = query_backing_photo_row(dupe_file, PhotoFileSniffer.Options.NO_MD5,
out detected);
if (state != null) {
BackingPhotoTable.get_instance().add(state);
backing_id = state.id;
}
}
return backing_id;
}
public LibraryPhoto duplicate() throws Error {
// clone the master file
File dupe_file = LibraryFiles.duplicate(get_master_file(), on_duplicate_progress, true);
// Duplicate editable and raw developments (if they exist)
BackingPhotoID dupe_editable_id = duplicate_backing_photo(get_editable_photo_row());
BackingPhotoID dupe_raw_shotwell_id = duplicate_backing_photo(
get_raw_development_photo_row(RawDeveloper.SHOTWELL));
BackingPhotoID dupe_raw_camera_id = duplicate_backing_photo(
get_raw_development_photo_row(RawDeveloper.CAMERA));
BackingPhotoID dupe_raw_embedded_id = duplicate_backing_photo(
get_raw_development_photo_row(RawDeveloper.EMBEDDED));
// clone the row in the database for these new backing files
PhotoID dupe_id = PhotoTable.get_instance().duplicate(get_photo_id(), dupe_file.get_path(),
dupe_editable_id, dupe_raw_shotwell_id, dupe_raw_camera_id, dupe_raw_embedded_id);
PhotoRow dupe_row = PhotoTable.get_instance().get_row(dupe_id);
// build the DataSource for the duplicate
LibraryPhoto dupe = new LibraryPhoto(dupe_row);
// clone thumbnails
ThumbnailCache.duplicate(this, dupe);
// add it to the SourceCollection; this notifies everyone interested of its presence
global.add(dupe);
// if it is not in "No Event" attach to event
if (dupe.get_event() != null)
dupe.get_event().attach(dupe);
// attach tags
Gee.Collection<Tag>? tags = Tag.global.fetch_for_source(this);
if (tags != null) {
foreach (Tag tag in tags) {
tag.attach(dupe);
}
}
// Attach faces.
Gee.Collection<Face>? faces = Face.global.fetch_for_source(this);
if (faces != null) {
foreach (Face face in faces) {
FaceLocation? location = FaceLocation.get_face_location(face.get_face_id(),
this.get_photo_id());
if (location != null) {
face.attach(dupe);
FaceLocation.create(face.get_face_id(), dupe.get_photo_id(),
location.get_face_data());
}
}
}
return dupe;
}
private void on_duplicate_progress(int64 current, int64 total) {
spin_event_loop();
}
private void upgrade_rating_flags(uint64 flags) {
if ((flags & FLAG_HIDDEN) != 0) {
set_rating(Rating.REJECTED);
remove_flags(FLAG_HIDDEN);
}
if ((flags & FLAG_FAVORITE) != 0) {
set_rating(Rating.FIVE);
remove_flags(FLAG_FAVORITE);
}
}
// Blotto even!
public override bool is_trashed() {
return is_flag_set(FLAG_TRASH);
}
public override void trash() {
add_flags(FLAG_TRASH);
}
public override void untrash() {
remove_flags(FLAG_TRASH);
}
public override bool is_offline() {
return is_flag_set(FLAG_OFFLINE);
}
public override void mark_offline() {
add_flags(FLAG_OFFLINE);
}
public override void mark_online() {
remove_flags(FLAG_OFFLINE);
}
public bool is_flagged() {
return is_flag_set(FLAG_FLAGGED);
}
public void mark_flagged() {
add_flags(FLAG_FLAGGED, new Alteration("metadata", "flagged"));
}
public void mark_unflagged() {
remove_flags(FLAG_FLAGGED, new Alteration("metadata", "flagged"));
}
public override bool internal_delete_backing() throws Error {
// allow the base classes to work first because delete_original_file() will attempt to
// remove empty directories as well
if (!base.internal_delete_backing())
return false;
return delete_original_file();
}
public override void destroy() {
PhotoID photo_id = get_photo_id();
// remove all cached thumbnails
ThumbnailCache.remove(this);
// remove from photo table -- should be wiped from storage now (other classes may have added
// photo_id to other parts of the database ... it's their responsibility to remove them
// when removed() is called)
try {
PhotoTable.get_instance().remove(photo_id);
} catch (DatabaseError err) {
AppWindow.database_error(err);
}
base.destroy();
}
public static bool has_nontrash_duplicate(File? file, string? thumbnail_md5, string? full_md5,
PhotoFileFormat file_format) {
return get_nontrash_duplicate(file, thumbnail_md5, full_md5, file_format).is_valid();
}
public static PhotoID get_nontrash_duplicate(File? file, string? thumbnail_md5,
string? full_md5, PhotoFileFormat file_format) {
PhotoID[]? ids = get_duplicate_ids(file, thumbnail_md5, full_md5, file_format);
if (ids == null || ids.length == 0)
return PhotoID(); // return an invalid PhotoID
foreach (PhotoID id in ids) {
LibraryPhoto photo = LibraryPhoto.global.fetch(id);
if (photo != null && !photo.is_trashed())
return id;
}
return PhotoID();
}
protected override bool has_user_generated_metadata() {
Gee.List<Tag>? tags = Tag.global.fetch_for_source(this);
PhotoMetadata? metadata = get_metadata();
if (metadata == null)
return tags != null || tags.size > 0 || get_rating() != Rating.UNRATED || get_gps_coords().has_gps != 0;
if (get_rating() != metadata.get_rating())
return true;
var old_coords = metadata.get_gps_coords();
if (!get_gps_coords().equals(ref old_coords))
return true;
Gee.Set<string>? keywords = metadata.get_keywords();
int tags_count = (tags != null) ? tags.size : 0;
int keywords_count = (keywords != null) ? keywords.size : 0;
if (tags_count != keywords_count)
return true;
if (tags != null && keywords != null) {
foreach (Tag tag in tags) {
if (!keywords.contains(tag.get_name().normalize()))
return true;
}
}
return false;
}
protected override void set_user_metadata_for_export(PhotoMetadata metadata) {
Gee.List<Tag>? photo_tags = Tag.global.fetch_for_source(this);
if(photo_tags != null) {
Gee.Collection<string> string_tags = new Gee.ArrayList<string>();
foreach (Tag tag in photo_tags) {
string_tags.add(tag.get_name());
}
metadata.set_keywords(string_tags);
} else
metadata.set_keywords(null);
metadata.set_rating(get_rating());
metadata.set_gps_coords(get_gps_coords());
}
protected override void apply_user_metadata_for_reimport(PhotoMetadata metadata) {
HierarchicalTagIndex? new_htag_index = null;
if (metadata.has_hierarchical_keywords()) {
new_htag_index = HierarchicalTagUtilities.process_hierarchical_import_keywords(
metadata.get_hierarchical_keywords());
}
Gee.Collection<string>? keywords = metadata.get_keywords();
if (keywords != null) {
foreach (string keyword in keywords) {
if (new_htag_index != null && new_htag_index.is_tag_in_index(keyword))
continue;
string safe_keyword = HierarchicalTagUtilities.make_flat_tag_safe(keyword);
string promoted_keyword = HierarchicalTagUtilities.flat_to_hierarchical(
safe_keyword);
if (Tag.global.exists(safe_keyword)) {
Tag.for_path(safe_keyword).attach(this);
continue;
}
if (Tag.global.exists(promoted_keyword)) {
Tag.for_path(promoted_keyword).attach(this);
continue;
}
Tag.for_path(keyword).attach(this);
}
}
if (new_htag_index != null) {
foreach (string path in new_htag_index.get_all_paths())
Tag.for_path(path).attach(this);
}
}
}
// Used for trash and offline bin of LibraryPhotoSourceCollection
public class LibraryPhotoSourceHoldingTank : MediaSourceHoldingTank {
private Gee.HashMap<File, LibraryPhoto> editable_file_map = new Gee.HashMap<File, LibraryPhoto>(
file_hash, file_equal);
private Gee.HashMap<File, LibraryPhoto> development_file_map = new Gee.HashMap<File, LibraryPhoto>(
file_hash, file_equal);
private Gee.MultiMap<LibraryPhoto, File> reverse_editable_file_map
= new Gee.HashMultiMap<LibraryPhoto, File>(null, null, file_hash, file_equal);
private Gee.MultiMap<LibraryPhoto, File> reverse_development_file_map
= new Gee.HashMultiMap<LibraryPhoto, File>(null, null, file_hash, file_equal);
public LibraryPhotoSourceHoldingTank(LibraryPhotoSourceCollection sources,
SourceHoldingTank.CheckToKeep check_to_keep, GetSourceDatabaseKey get_key) {
base (sources, check_to_keep, get_key);
}
public LibraryPhoto? fetch_by_backing_file(File file) {
LibraryPhoto? ret = null;
ret = editable_file_map.get(file);
if (ret != null)
return ret;
return development_file_map.get(file);
}
protected override void notify_contents_altered(Gee.Collection<DataSource>? added,
Gee.Collection<DataSource>? removed) {
if (added != null) {
foreach (DataSource source in added) {
LibraryPhoto photo = (LibraryPhoto) source;
// Editable files.
if (photo.get_editable_file() != null) {
editable_file_map.set(photo.get_editable_file(), photo);
reverse_editable_file_map.set(photo, photo.get_editable_file());
}
// RAW developments.
Gee.Collection<File>? raw_files = photo.get_raw_developer_files();
if (raw_files != null) {
foreach (File f in raw_files) {
development_file_map.set(f, photo);
reverse_development_file_map.set(photo, f);
}
}
photo.editable_replaced.connect(on_editable_replaced);
photo.raw_development_modified.connect(on_raw_development_modified);
}
}
if (removed != null) {
foreach (DataSource source in removed) {
LibraryPhoto photo = (LibraryPhoto) source;
foreach (File f in reverse_editable_file_map.get(photo))
editable_file_map.unset(f);
foreach (File f in reverse_development_file_map.get(photo))
development_file_map.unset(f);
reverse_editable_file_map.remove_all(photo);
reverse_development_file_map.remove_all(photo);
photo.editable_replaced.disconnect(on_editable_replaced);
photo.raw_development_modified.disconnect(on_raw_development_modified);
}
}
base.notify_contents_altered(added, removed);
}
private void on_editable_replaced(Photo _photo, File? old_file, File? new_file) {
LibraryPhoto? photo = _photo as LibraryPhoto;
assert(photo != null);
if (old_file != null) {
editable_file_map.unset(old_file);
reverse_editable_file_map.remove(photo, old_file);
}
if (new_file != null)
editable_file_map.set(new_file, photo);
reverse_editable_file_map.set(photo, new_file);
}
private void on_raw_development_modified(Photo _photo) {
LibraryPhoto? photo = _photo as LibraryPhoto;
assert(photo != null);
// Unset existing files.
if (reverse_development_file_map.contains(photo)) {
foreach (File f in reverse_development_file_map.get(photo))
development_file_map.unset(f);
reverse_development_file_map.remove_all(photo);
}
// Add new ones.
Gee.Collection<File> raw_list = photo.get_raw_developer_files();
if (raw_list != null) {
foreach (File f in raw_list) {
development_file_map.set(f, photo);
reverse_development_file_map.set(photo, f);
}
}
}
}
|