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
|
/* xscreensaver, Copyright (c) 2001-2020 by Jamie Zawinski <jwz@jwz.org>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
/* xscreensaver-getimage -- helper program that puts a random image
onto the given window or pixmap. That image is either a screen-grab,
a file loaded from disk, or a frame grabbed from the system's video
input.
*/
#include "utils.h"
#include <X11/Intrinsic.h>
#include <ctype.h>
#include <errno.h>
#include <sys/stat.h>
#include <sys/time.h>
#ifdef HAVE_SYS_WAIT_H
# include <sys/wait.h> /* for waitpid() and associated macros */
#endif
#ifdef HAVE_XMU
# ifndef VMS
# include <X11/Xmu/Error.h>
# else /* VMS */
# include <Xmu/Error.h>
# endif
#else
# include "xmu.h"
#endif
#include "yarandom.h"
#include "grabscreen.h"
#include "resources.h"
#include "colorbars.h"
#include "visual.h"
#include "prefs.h"
#include "version.h"
#include "vroot.h"
#ifndef _XSCREENSAVER_VROOT_H_
# error Error! You have an old version of vroot.h! Check -I args.
#endif /* _XSCREENSAVER_VROOT_H_ */
#ifdef HAVE_GDK_PIXBUF
# undef HAVE_JPEGLIB
# if (__GNUC__ >= 4) /* Ignore useless warnings generated by GTK headers */
# pragma GCC diagnostic push
# pragma GCC diagnostic ignored "-Wlong-long"
# pragma GCC diagnostic ignored "-Wvariadic-macros"
# pragma GCC diagnostic ignored "-Wpedantic"
# endif
# ifdef HAVE_GTK2
# include <gdk-pixbuf-xlib/gdk-pixbuf-xlib.h>
# else /* !HAVE_GTK2 */
# include <gdk-pixbuf/gdk-pixbuf-xlib.h>
# endif /* !HAVE_GTK2 */
# if (__GNUC__ >= 4)
# pragma GCC diagnostic pop
# endif
#endif /* HAVE_GDK_PIXBUF */
#ifdef HAVE_JPEGLIB
# undef HAVE_GDK_PIXBUF
# include <jpeglib.h>
#endif
#ifdef __APPLE__
/* On MacOS under X11, the usual X11 mechanism of getting a screen shot
doesn't work, and we need to use an external program. This is only
used when running under X11 on MacOS. If it's a Cocoa build, this
path is not taken, and OSX/grabclient-osx.m is used instead.
*/
# define USE_EXTERNAL_SCREEN_GRABBER
#endif
#ifdef __GNUC__
__extension__ /* shut up about "string length is greater than the length
ISO C89 compilers are required to support" when including
the .ad file... */
#endif
static char *defaults[] = {
#include "../driver/XScreenSaver_ad.h"
0
};
char *progname = 0;
char *progclass = "XScreenSaver";
XrmDatabase db;
XtAppContext app;
extern void grabscreen_verbose (void);
typedef enum {
GRAB_DESK, GRAB_VIDEO, GRAB_FILE, GRAB_BARS
} grab_type;
#define GETIMAGE_VIDEO_PROGRAM "xscreensaver-getimage-video"
#define GETIMAGE_FILE_PROGRAM "xscreensaver-getimage-file"
#define GETIMAGE_SCREEN_PROGRAM "xscreensaver-getimage-desktop"
extern const char *blurb (void);
const char *
blurb (void)
{
return progname;
}
static int
x_ehandler (Display *dpy, XErrorEvent *error)
{
if (error->error_code == BadWindow || error->error_code == BadDrawable)
{
fprintf (stderr, "%s: target %s 0x%lx unexpectedly deleted\n", progname,
(error->error_code == BadWindow ? "window" : "pixmap"),
(unsigned long) error->resourceid);
}
else
{
fprintf (stderr, "\nX error in %s:\n", progname);
XmuPrintDefaultErrorMessage (dpy, error, stderr);
}
exit (-1);
return 0;
}
static Bool error_handler_hit_p = False;
static int
ignore_all_errors_ehandler (Display *dpy, XErrorEvent *error)
{
error_handler_hit_p = True;
return 0;
}
#ifndef USE_EXTERNAL_SCREEN_GRABBER
static int
ignore_badmatch_ehandler (Display *dpy, XErrorEvent *error)
{
if (error->error_code == BadMatch)
return ignore_all_errors_ehandler (dpy, error);
else
return x_ehandler (dpy, error);
}
#endif /* ! USE_EXTERNAL_SCREEN_GRABBER */
/* Returns True if the given Drawable is a Window; False if it's a Pixmap.
*/
static Bool
drawable_window_p (Display *dpy, Drawable d)
{
XErrorHandler old_handler;
XWindowAttributes xgwa;
XSync (dpy, False);
old_handler = XSetErrorHandler (ignore_all_errors_ehandler);
error_handler_hit_p = False;
XGetWindowAttributes (dpy, d, &xgwa);
XSync (dpy, False);
XSetErrorHandler (old_handler);
XSync (dpy, False);
if (!error_handler_hit_p)
return True; /* It's a Window. */
else
return False; /* It's a Pixmap, or an invalid ID. */
}
/* Returns true if the window is the root window, or a virtual root window,
but *not* the xscreensaver window. That is, if it's a "real" desktop
root window of some kind.
*/
static Bool
root_window_p (Screen *screen, Window window)
{
Display *dpy = DisplayOfScreen (screen);
Atom type;
int format;
unsigned long nitems, bytesafter;
unsigned char *version;
if (window != RootWindowOfScreen (screen))
return False;
if (XGetWindowProperty (dpy, window,
XInternAtom (dpy, "_SCREENSAVER_VERSION", False),
0, 1, False, XA_STRING,
&type, &format, &nitems, &bytesafter,
&version)
== Success
&& type != None)
return False;
return True;
}
/* Clear the window or pixmap to black, or its background color.
*/
static void
clear_drawable (Screen *screen, Drawable drawable)
{
Display *dpy = DisplayOfScreen (screen);
XGCValues gcv;
GC gc;
Window root;
int x, y;
unsigned int w, h, bw, d;
XGetGeometry (dpy, drawable, &root, &x, &y, &w, &h, &bw, &d);
/* The window might have no-op background of None, so to clear it,
draw a black rectangle first, then do XClearWindow (in case the
actual background color is non-black...) */
/* #### really we should allocate "black" instead, but I'm lazy... */
gcv.foreground = BlackPixelOfScreen (screen);
gc = XCreateGC (dpy, drawable, GCForeground, &gcv);
XFillRectangle (dpy, drawable, gc, 0, 0, w, h);
XFreeGC (dpy, gc);
if (drawable_window_p (dpy, drawable))
XClearWindow (dpy, (Window) drawable);
XFlush (dpy);
}
/* Figure out what kind of scaling/positioning we ought to do to display
a src-sized image in a dest-sized window/pixmap. Returns the width
and height to which the image should be scaled, and the position where
it should be displayed to center it.
*/
static void
compute_image_scaling (int src_w, int src_h,
int dest_w, int dest_h,
Bool verbose_p,
int *scaled_from_x_ret, int *scaled_from_y_ret,
int *scaled_to_x_ret, int *scaled_to_y_ret,
int *scaled_w_ret, int *scaled_h_ret)
{
int srcx, srcy, destx, desty;
Bool exact_fit_p = ((src_w == dest_w && src_h <= dest_h) ||
(src_h == dest_h && src_w <= dest_w));
if (!exact_fit_p) /* scale the image up or down */
{
float rw = (float) dest_w / src_w;
float rh = (float) dest_h / src_h;
float r = (rw < rh ? rw : rh);
int tw, th, pct;
/* If the window is a goofy aspect ratio, take a middle slice of
the image instead. */
if (dest_w > dest_h * 5 || dest_h > dest_w * 5)
{
double r2 = (dest_w > dest_h
? dest_w / (double) dest_h
: dest_h / (double) dest_w);
r *= r2;
if (verbose_p)
fprintf (stderr, "%s: weird aspect: scaling by %.1f\n",
progname, r2);
}
tw = src_w * r;
th = src_h * r;
pct = (r * 100);
#if 0
/* this optimization breaks things */
if (pct < 95 || pct > 105) /* don't scale if it's close */
#endif
{
if (verbose_p)
fprintf (stderr, "%s: scaling image by %d%% (%dx%d -> %dx%d)\n",
progname, pct, src_w, src_h, tw, th);
src_w = tw;
src_h = th;
}
}
/* Center the image on the window/pixmap. */
srcx = 0;
srcy = 0;
destx = (dest_w - src_w) / 2;
desty = (dest_h - src_h) / 2;
if (destx < 0) srcx = -destx, destx = 0;
if (desty < 0) srcy = -desty, desty = 0;
/* if (dest_w < src_w) src_w = dest_w;
if (dest_h < src_h) src_h = dest_h; */
*scaled_w_ret = src_w;
*scaled_h_ret = src_h;
*scaled_from_x_ret = srcx;
*scaled_from_y_ret = srcy;
*scaled_to_x_ret = destx;
*scaled_to_y_ret = desty;
if (verbose_p)
fprintf (stderr, "%s: displaying %dx%d+%d+%d image at %d,%d in %dx%d.\n",
progname, src_w, src_h, srcx, srcy, destx, desty, dest_w, dest_h);
}
static void
colorbars (Screen *screen, Visual *visual, Drawable drawable, Colormap cmap)
{
Pixmap mask = 0;
unsigned long *pixels; /* ignored - unfreed */
int npixels;
Pixmap logo = xscreensaver_logo (screen, visual, drawable, cmap,
BlackPixelOfScreen (screen),
&pixels, &npixels, &mask, True);
draw_colorbars (screen, visual, drawable, cmap, 0, 0, 0, 0, logo, mask);
XFreePixmap (DisplayOfScreen (screen), logo);
XFreePixmap (DisplayOfScreen (screen), mask);
}
/* Scales an XImage, modifying it in place.
This doesn't do dithering or smoothing, so it might have artifacts.
If out of memory, returns False, and the XImage will have been
destroyed and freed.
*/
#if !defined(USE_EXTERNAL_SCREEN_GRABBER) || defined(HAVE_JPEGLIB)
static Bool
scale_ximage (Screen *screen, Visual *visual,
XImage *ximage, int new_width, int new_height)
{
Display *dpy = DisplayOfScreen (screen);
int depth = visual_depth (screen, visual);
int x, y;
double xscale, yscale;
XImage *ximage2 = XCreateImage (dpy, visual, depth,
ZPixmap, 0, 0,
new_width, new_height, 8, 0);
ximage2->data = (char *) calloc (ximage2->height, ximage2->bytes_per_line);
if (!ximage2->data)
{
fprintf (stderr, "%s: out of memory scaling %dx%d image to %dx%d\n",
progname,
ximage->width, ximage->height,
ximage2->width, ximage2->height);
if (ximage->data) free (ximage->data);
if (ximage2->data) free (ximage2->data);
ximage->data = 0;
ximage2->data = 0;
XDestroyImage (ximage);
XDestroyImage (ximage2);
return False;
}
/* Brute force scaling... */
xscale = (double) ximage->width / ximage2->width;
yscale = (double) ximage->height / ximage2->height;
for (y = 0; y < ximage2->height; y++)
for (x = 0; x < ximage2->width; x++)
XPutPixel (ximage2, x, y,
XGetPixel (ximage, x * xscale, y * yscale));
free (ximage->data);
ximage->data = 0;
(*ximage) = (*ximage2);
ximage2->data = 0;
XDestroyImage (ximage2);
return True;
}
#endif /* !USE_EXTERNAL_SCREEN_GRABBER || HAVE_JPEGLIB */
#ifdef HAVE_GDK_PIXBUF
/* Reads the given image file and renders it on the Drawable, using GDK.
Returns False if it fails.
*/
static Bool
read_file_gdk (Screen *screen, Window window, Drawable drawable,
const char *filename, Bool verbose_p,
XRectangle *geom_ret)
{
GdkPixbuf *pb;
Display *dpy = DisplayOfScreen (screen);
unsigned int win_width, win_height, win_depth;
# ifdef HAVE_GTK2
GError *gerr = 0;
# endif /* HAVE_GTK2 */
/* Find the size of the Drawable. */
{
Window root;
int x, y;
unsigned int bw;
XGetGeometry (dpy, drawable,
&root, &x, &y, &win_width, &win_height, &bw, &win_depth);
}
gdk_pixbuf_xlib_init_with_depth (dpy, screen_number (screen), win_depth);
# ifdef HAVE_GTK2
# if !GLIB_CHECK_VERSION(2, 36 ,0)
g_type_init();
# endif
# else /* !HAVE_GTK2 */
xlib_rgb_init (dpy, screen);
# endif /* !HAVE_GTK2 */
pb = gdk_pixbuf_new_from_file (filename
# ifdef HAVE_GTK2
, &gerr
# endif /* HAVE_GTK2 */
);
if (!pb)
{
fprintf (stderr, "%s: unable to load \"%s\"\n", progname, filename);
# ifdef HAVE_GTK2
if (gerr && gerr->message && *gerr->message)
fprintf (stderr, "%s: reason: %s\n", progname, gerr->message);
# endif /* HAVE_GTK2 */
return False;
}
else
{
int w = gdk_pixbuf_get_width (pb);
int h = gdk_pixbuf_get_height (pb);
int srcx, srcy, destx, desty, w2, h2;
Bool bg_p = False;
# ifdef HAVE_GDK_PIXBUF_APPLY_EMBEDDED_ORIENTATION
{
int ow = w, oh = h;
GdkPixbuf *opb = pb;
pb = gdk_pixbuf_apply_embedded_orientation (opb);
g_object_unref (opb);
w = gdk_pixbuf_get_width (pb);
h = gdk_pixbuf_get_height (pb);
if (verbose_p && (w != ow || h != oh))
fprintf (stderr, "%s: rotated %dx%d to %dx%d\n",
progname, ow, oh, w, h);
}
# endif
compute_image_scaling (w, h, win_width, win_height, verbose_p,
&srcx, &srcy, &destx, &desty, &w2, &h2);
if (w != w2 || h != h2)
{
GdkPixbuf *pb2 = gdk_pixbuf_scale_simple (pb, w2, h2,
GDK_INTERP_BILINEAR);
if (pb2)
{
g_object_unref (pb);
pb = pb2;
w = w2;
h = h2;
}
else
fprintf (stderr, "%s: out of memory when scaling?\n", progname);
}
/* If we're rendering onto the root window (and it's not the
xscreensaver pseudo-root) then put the image in the window's
background. Otherwise, just paint the image onto the window.
*/
bg_p = (window == drawable && root_window_p (screen, window));
if (bg_p)
{
XGCValues gcv;
GC gc;
drawable = XCreatePixmap (dpy, window,
win_width, win_height, win_depth);
gcv.foreground = BlackPixelOfScreen (screen);
gc = XCreateGC (dpy, drawable, GCForeground, &gcv);
XFillRectangle (dpy, drawable, gc, 0, 0, win_width, win_height);
XFreeGC (dpy, gc);
}
else
clear_drawable (screen, drawable);
/* #### Note that this always uses the default colormap! Morons!
Owen says that in Gnome 2.0, I should try using
gdk_pixbuf_render_pixmap_and_mask_for_colormap() instead.
But I haven't tried.
*/
if (srcx > 0) w -= srcx;
if (srcy > 0) h -= srcy;
gdk_pixbuf_xlib_render_to_drawable_alpha (pb, drawable,
srcx, srcy, destx, desty,
w, h,
GDK_PIXBUF_ALPHA_FULL, 127,
XLIB_RGB_DITHER_NORMAL,
0, 0);
if (bg_p)
{
XSetWindowBackgroundPixmap (dpy, window, drawable);
XClearWindow (dpy, window);
}
if (geom_ret)
{
geom_ret->x = destx;
geom_ret->y = desty;
geom_ret->width = w;
geom_ret->height = h;
}
}
XSync (dpy, False);
return True;
}
#endif /* HAVE_GDK_PIXBUF */
#ifdef HAVE_JPEGLIB
/* Allocates a colormap that makes a PseudoColor or DirectColor
visual behave like a TrueColor visual of the same depth.
#### Duplicated in utils/grabscreen.c
*/
static void
allocate_cubic_colormap (Screen *screen, Visual *visual, Colormap cmap,
Bool verbose_p)
{
Display *dpy = DisplayOfScreen (screen);
int nr, ng, nb, cells;
int r, g, b;
int depth;
XColor colors[4097];
int i;
depth = visual_depth (screen, visual);
switch (depth)
{
case 8: nr = 3; ng = 3; nb = 2; cells = 256; break;
case 12: nr = 4; ng = 4; nb = 4; cells = 4096; break;
default: abort(); break;
}
memset(colors, 0, sizeof(colors));
for (r = 0; r < (1 << nr); r++)
for (g = 0; g < (1 << ng); g++)
for (b = 0; b < (1 << nb); b++)
{
i = (r | (g << nr) | (b << (nr + ng)));
colors[i].pixel = i;
colors[i].flags = DoRed|DoGreen|DoBlue;
if (depth == 8)
{
colors[i].red = ((r << 13) | (r << 10) | (r << 7) |
(r << 4) | (r << 1));
colors[i].green = ((g << 13) | (g << 10) | (g << 7) |
(g << 4) | (g << 1));
colors[i].blue = ((b << 14) | (b << 12) | (b << 10) |
(b << 8) | (b << 6) | (b << 4) |
(b << 2) | b);
}
else
{
colors[i].red = (r << 12) | (r << 8) | (r << 4) | r;
colors[i].green = (g << 12) | (g << 8) | (g << 4) | g;
colors[i].blue = (b << 12) | (b << 8) | (b << 4) | b;
}
}
{
int j;
int allocated = 0;
int interleave = cells / 8; /* skip around, rather than allocating in
order, so that we get better coverage if
we can't allocated all of them. */
for (j = 0; j < interleave; j++)
for (i = 0; i < cells; i += interleave)
if (XAllocColor (dpy, cmap, &colors[i + j]))
allocated++;
if (verbose_p)
fprintf (stderr, "%s: allocated %d of %d colors for cubic map\n",
progname, allocated, cells);
}
}
/* Find the pixel index that is closest to the given color
(using linear distance in RGB space -- which is far from the best way.)
#### Duplicated in utils/grabscreen.c
*/
static unsigned long
find_closest_pixel (XColor *colors, int ncolors,
unsigned long r, unsigned long g, unsigned long b)
{
unsigned long distance = ~0;
int i, found = 0;
if (ncolors == 0)
abort();
for (i = 0; i < ncolors; i++)
{
unsigned long d;
int rd, gd, bd;
rd = r - colors[i].red;
gd = g - colors[i].green;
bd = b - colors[i].blue;
if (rd < 0) rd = -rd;
if (gd < 0) gd = -gd;
if (bd < 0) bd = -bd;
d = (rd << 1) + (gd << 2) + bd;
if (d < distance)
{
distance = d;
found = i;
if (distance == 0)
break;
}
}
return found;
}
/* Given an XImage with 8-bit or 12-bit RGB data, convert it to be
displayable with the given X colormap. The farther from a perfect
color cube the contents of the colormap are, the lossier the
transformation will be. No dithering is done.
#### Duplicated in utils/grabscreen.c
*/
static void
remap_image (Screen *screen, Colormap cmap, XImage *image, Bool verbose_p)
{
Display *dpy = DisplayOfScreen (screen);
unsigned long map[4097];
int x, y, i;
int cells;
XColor colors[4097];
if (image->depth == 8)
cells = 256;
else if (image->depth == 12)
cells = 4096;
else
abort();
memset(map, -1, sizeof(*map));
memset(colors, -1, sizeof(*colors));
for (i = 0; i < cells; i++)
colors[i].pixel = i;
XQueryColors (dpy, cmap, colors, cells);
if (verbose_p)
fprintf(stderr, "%s: building color cube for %d bit image\n",
progname, image->depth);
for (i = 0; i < cells; i++)
{
unsigned short r, g, b;
if (cells == 256)
{
/* "RRR GGG BB" In an 8 bit map. Convert that to
"RRR RRR RR" "GGG GGG GG" "BB BB BB BB" to give
an even spread. */
r = (i & 0x07);
g = (i & 0x38) >> 3;
b = (i & 0xC0) >> 6;
r = ((r << 13) | (r << 10) | (r << 7) | (r << 4) | (r << 1));
g = ((g << 13) | (g << 10) | (g << 7) | (g << 4) | (g << 1));
b = ((b << 14) | (b << 12) | (b << 10) | (b << 8) |
(b << 6) | (b << 4) | (b << 2) | b);
}
else
{
/* "RRRR GGGG BBBB" In a 12 bit map. Convert that to
"RRRR RRRR" "GGGG GGGG" "BBBB BBBB" to give an even
spread. */
r = (i & 0x00F);
g = (i & 0x0F0) >> 4;
b = (i & 0xF00) >> 8;
r = (r << 12) | (r << 8) | (r << 4) | r;
g = (g << 12) | (g << 8) | (g << 4) | g;
b = (b << 12) | (b << 8) | (b << 4) | b;
}
map[i] = find_closest_pixel (colors, cells, r, g, b);
}
if (verbose_p)
fprintf(stderr, "%s: remapping colors in %d bit image\n",
progname, image->depth);
for (y = 0; y < image->height; y++)
for (x = 0; x < image->width; x++)
{
unsigned long pixel = XGetPixel(image, x, y);
if (pixel >= cells) abort();
XPutPixel(image, x, y, map[pixel]);
}
}
/* If the file has a PPM (P6) on it, read it and return an XImage.
Otherwise, rewind the fd back to the beginning, and return 0.
*/
static XImage *
maybe_read_ppm (Screen *screen, Visual *visual,
const char *filename, FILE *in, Bool verbose_p)
{
Display *dpy = DisplayOfScreen (screen);
int depth = visual_depth (screen, visual);
struct stat st;
char *buf = 0;
int bufsiz = 0;
char *s, dummy;
int i, j;
int x, y, w, h, maxval;
XImage *ximage = 0;
if (fstat (fileno (in), &st))
goto FAIL;
bufsiz = st.st_size;
buf = (char *) malloc (bufsiz + 1);
if (!buf)
{
fprintf (stderr, "%s: out of memory loading %d byte PPM file %s\n",
progname, bufsiz, filename);
goto FAIL;
}
if (! (s = fgets (buf, bufsiz, in))) /* line 1 */
goto FAIL;
if (!strncmp (buf, "\107\111", 2))
{
fprintf (stderr, "%s: %s: sorry, GIF files not supported"
" when compiled with JPEGlib instead of GDK_Pixbuf.\n",
progname, filename);
goto FAIL;
}
else if (!strncmp (buf, "\211\120", 2))
{
fprintf (stderr, "%s: %s: sorry, PNG files not supported"
" when compiled with JPEGlib instead of GDK_Pixbuf.\n",
progname, filename);
goto FAIL;
}
else if (!strncasecmp (buf, "<?xml", 5))
{
fprintf (stderr, "%s: %s: sorry, SVG files not supported"
" when compiled with JPEGlib instead of GDK_Pixbuf.\n",
progname, filename);
goto FAIL;
}
if (strncmp (s, "P6", 2))
goto FAIL;
if (! (s = fgets (buf, bufsiz, in))) /* line 2 */
goto FAIL;
if (2 != sscanf (s, " %d %d %c", &w, &h, &dummy))
{
fprintf (stderr, "%s: %s: invalid PPM (line 2)\n", progname, filename);
goto FAIL;
}
if (! (s = fgets (buf, bufsiz, in))) /* line 3 */
goto FAIL;
if (1 != sscanf (s, " %d %c", &maxval, &dummy))
{
fprintf (stderr, "%s: %s: invalid PPM (line 3)\n", progname, filename);
goto FAIL;
}
if (maxval != 255)
{
fprintf (stderr, "%s: %s: unparsable PPM: maxval is %d\n",
progname, filename, maxval);
goto FAIL;
}
ximage = XCreateImage (dpy, visual, depth, ZPixmap, 0, 0,
w, h, 8, 0);
if (ximage)
ximage->data = (char *) calloc (ximage->height, ximage->bytes_per_line);
if (!ximage || !ximage->data)
{
fprintf (stderr, "%s: out of memory loading %dx%d PPM file %s\n",
progname, ximage->width, ximage->height, filename);
goto FAIL;
}
s = buf;
j = bufsiz;
while ((i = fread (s, 1, j, in)) > 0)
s += i, j -= i;
i = 0;
for (y = 0; y < ximage->height; y++)
for (x = 0; x < ximage->width; x++)
{
unsigned char r = buf[i++];
unsigned char g = buf[i++];
unsigned char b = buf[i++];
unsigned long pixel;
if (depth > 16)
pixel = (r << 16) | (g << 8) | b;
else if (depth == 8)
pixel = ((r >> 5) | ((g >> 5) << 3) | ((b >> 6) << 6));
else if (depth == 12)
pixel = ((r >> 4) | ((g >> 4) << 4) | ((b >> 4) << 8));
else if (depth == 16 || depth == 15)
pixel = (((r >> 3) << 10) | ((g >> 3) << 5) | ((b >> 3)));
else
abort();
XPutPixel (ximage, x, y, pixel);
}
free (buf);
return ximage;
FAIL:
if (buf) free (buf);
if (ximage && ximage->data)
{
free (ximage->data);
ximage->data = 0;
}
if (ximage) XDestroyImage (ximage);
fseek (in, 0, SEEK_SET);
return 0;
}
typedef struct {
struct jpeg_error_mgr pub; /* this is what passes for subclassing in C */
const char *filename;
Screen *screen;
Visual *visual;
Drawable drawable;
Colormap cmap;
} getimg_jpg_error_mgr;
static void
jpg_output_message (j_common_ptr cinfo)
{
getimg_jpg_error_mgr *err = (getimg_jpg_error_mgr *) cinfo->err;
char buf[JMSG_LENGTH_MAX];
cinfo->err->format_message (cinfo, buf);
fprintf (stderr, "%s: %s: %s\n", progname, err->filename, buf);
}
static void
jpg_error_exit (j_common_ptr cinfo)
{
getimg_jpg_error_mgr *err = (getimg_jpg_error_mgr *) cinfo->err;
cinfo->err->output_message (cinfo);
colorbars (err->screen, err->visual, err->drawable, err->cmap);
XSync (DisplayOfScreen (err->screen), False);
exit (1);
}
/* Reads a JPEG file, returns an RGB XImage of it.
*/
static XImage *
read_jpeg_ximage (Screen *screen, Visual *visual, Drawable drawable,
Colormap cmap, const char *filename, Bool verbose_p)
{
Display *dpy = DisplayOfScreen (screen);
int depth = visual_depth (screen, visual);
FILE *in = 0;
XImage *ximage = 0;
struct jpeg_decompress_struct cinfo;
getimg_jpg_error_mgr jerr;
JSAMPARRAY scanbuf = 0;
int y;
jerr.filename = filename;
jerr.screen = screen;
jerr.visual = visual;
jerr.drawable = drawable;
jerr.cmap = cmap;
if (! (depth >= 15 || depth == 12 || depth == 8))
{
fprintf (stderr, "%s: unsupported depth: %d\n", progname, depth);
goto FAIL;
}
in = fopen (filename, "rb");
if (!in)
{
fprintf (stderr, "%s: %s: unreadable\n", progname, filename);
goto FAIL;
}
/* Check to see if it's a PPM, and if so, read that instead of using
the JPEG library. Yeah, this is all modular and stuff.
*/
if ((ximage = maybe_read_ppm (screen, visual, filename, in, verbose_p)))
{
fclose (in);
return ximage;
}
cinfo.err = jpeg_std_error (&jerr.pub);
jerr.pub.output_message = jpg_output_message;
jerr.pub.error_exit = jpg_error_exit;
jpeg_create_decompress (&cinfo);
jpeg_stdio_src (&cinfo, in);
jpeg_read_header (&cinfo, TRUE);
/* set some decode parameters */
cinfo.out_color_space = JCS_RGB;
cinfo.quantize_colors = FALSE;
jpeg_start_decompress (&cinfo);
ximage = XCreateImage (dpy, visual, depth, ZPixmap, 0, 0,
cinfo.output_width, cinfo.output_height,
8, 0);
if (ximage)
ximage->data = (char *) calloc (ximage->height, ximage->bytes_per_line);
if (ximage && ximage->data)
scanbuf = (*cinfo.mem->alloc_sarray) ((j_common_ptr) &cinfo, JPOOL_IMAGE,
cinfo.rec_outbuf_height *
cinfo.output_width *
cinfo.output_components,
1);
if (!ximage || !ximage->data || !scanbuf)
{
fprintf (stderr, "%s: out of memory loading %dx%d file %s\n",
progname, ximage->width, ximage->height, filename);
goto FAIL;
}
y = 0;
while (cinfo.output_scanline < cinfo.output_height)
{
int n = jpeg_read_scanlines (&cinfo, scanbuf, 1);
int i;
for (i = 0; i < n; i++)
{
int x;
for (x = 0; x < ximage->width; x++)
{
int j = x * cinfo.output_components;
unsigned char r = scanbuf[i][j];
unsigned char g = scanbuf[i][j+1];
unsigned char b = scanbuf[i][j+2];
unsigned long pixel;
if (depth > 16)
pixel = (r << 16) | (g << 8) | b;
else if (depth == 8)
pixel = ((r >> 5) | ((g >> 5) << 3) | ((b >> 6) << 6));
else if (depth == 12)
pixel = ((r >> 4) | ((g >> 4) << 4) | ((b >> 4) << 8));
else if (depth == 15)
/* Gah! I don't understand why these are in the other
order. */
pixel = (((r >> 3) << 10) | ((g >> 3) << 5) | ((b >> 3)));
else if (depth == 16)
pixel = (((r >> 3) << 11) | ((g >> 2) << 5) | ((b >> 3)));
else
abort();
XPutPixel (ximage, x, y, pixel);
}
y++;
}
}
if (cinfo.output_scanline < cinfo.output_height)
/* don't goto FAIL -- we might have viewable partial data. */
jpeg_abort_decompress (&cinfo);
else
jpeg_finish_decompress (&cinfo);
jpeg_destroy_decompress (&cinfo);
fclose (in);
in = 0;
return ximage;
FAIL:
if (in) fclose (in);
if (ximage && ximage->data)
{
free (ximage->data);
ximage->data = 0;
}
if (ximage) XDestroyImage (ximage);
if (scanbuf) free (scanbuf);
return 0;
}
/* Reads the given image file and renders it on the Drawable, using JPEG lib.
Returns False if it fails.
*/
static Bool
read_file_jpeglib (Screen *screen, Window window, Drawable drawable,
const char *filename, Bool verbose_p,
XRectangle *geom_ret)
{
Display *dpy = DisplayOfScreen (screen);
XImage *ximage;
Visual *visual;
int class, depth;
Colormap cmap;
unsigned int win_width, win_height, win_depth;
int srcx, srcy, destx, desty, w2, h2;
/* Find the size of the Drawable, and the Visual/Colormap of the Window. */
{
Window root;
int x, y;
unsigned int bw;
XWindowAttributes xgwa;
XGetWindowAttributes (dpy, window, &xgwa);
visual = xgwa.visual;
cmap = xgwa.colormap;
XGetGeometry (dpy, drawable,
&root, &x, &y, &win_width, &win_height, &bw, &win_depth);
}
/* Make sure we're not on some weirdo visual...
*/
class = visual_class (screen, visual);
depth = visual_depth (screen, visual);
if ((class == PseudoColor || class == DirectColor) &&
(depth != 8 && depth != 12))
{
fprintf (stderr, "%s: Pseudo/DirectColor depth %d unsupported\n",
progname, depth);
return False;
}
/* Read the file...
*/
ximage = read_jpeg_ximage (screen, visual, drawable, cmap,
filename, verbose_p);
if (!ximage) return False;
/* Scale it, if necessary...
*/
compute_image_scaling (ximage->width, ximage->height,
win_width, win_height, verbose_p,
&srcx, &srcy, &destx, &desty, &w2, &h2);
if (ximage->width != w2 || ximage->height != h2)
if (! scale_ximage (screen, visual, ximage, w2, h2))
return False;
/* Allocate a colormap, if we need to...
*/
if (class == PseudoColor || class == DirectColor)
{
allocate_cubic_colormap (screen, visual, cmap, verbose_p);
remap_image (screen, cmap, ximage, verbose_p);
}
/* Finally, put the resized image on the window.
*/
{
GC gc;
XGCValues gcv;
/* If we're rendering onto the root window (and it's not the xscreensaver
pseudo-root) then put the image in the window's background. Otherwise,
just paint the image onto the window.
*/
if (window == drawable && root_window_p (screen, window))
{
Pixmap bg = XCreatePixmap (dpy, window,
win_width, win_height, win_depth);
gcv.foreground = BlackPixelOfScreen (screen);
gc = XCreateGC (dpy, drawable, GCForeground, &gcv);
XFillRectangle (dpy, bg, gc, 0, 0, win_width, win_height);
XPutImage (dpy, bg, gc, ximage,
srcx, srcy, destx, desty, ximage->width, ximage->height);
XSetWindowBackgroundPixmap (dpy, window, bg);
XClearWindow (dpy, window);
}
else
{
gc = XCreateGC (dpy, drawable, 0, &gcv);
clear_drawable (screen, drawable);
XPutImage (dpy, drawable, gc, ximage,
srcx, srcy, destx, desty, ximage->width, ximage->height);
}
XFreeGC (dpy, gc);
}
if (geom_ret)
{
geom_ret->x = destx;
geom_ret->y = desty;
geom_ret->width = ximage->width;
geom_ret->height = ximage->height;
}
free (ximage->data);
ximage->data = 0;
XDestroyImage (ximage);
XSync (dpy, False);
return True;
}
#endif /* HAVE_JPEGLIB */
/* Reads the given image file and renders it on the Drawable.
Returns False if it fails.
*/
static Bool
display_file (Screen *screen, Window window, Drawable drawable,
const char *filename, Bool verbose_p,
XRectangle *geom_ret)
{
if (verbose_p)
fprintf (stderr, "%s: loading \"%s\"\n", progname, filename);
# if defined(HAVE_GDK_PIXBUF)
if (read_file_gdk (screen, window, drawable, filename, verbose_p, geom_ret))
return True;
# elif defined(HAVE_JPEGLIB)
if (read_file_jpeglib (screen, window, drawable, filename, verbose_p,
geom_ret))
return True;
# else /* !(HAVE_GDK_PIXBUF || HAVE_JPEGLIB) */
/* shouldn't get here if we have no image-loading methods available. */
abort();
# endif /* !(HAVE_GDK_PIXBUF || HAVE_JPEGLIB) */
return False;
}
/* Invokes a sub-process and returns its output (presumably, a file to
load.) Free the string when done. 'grab_type' controls which program
to run. Returned pathname may be relative to 'directory', or absolute.
*/
static char *
get_filename_1 (Screen *screen, const char *directory, grab_type type,
Bool verbose_p)
{
Display *dpy = DisplayOfScreen (screen);
pid_t forked;
int fds [2];
int in, out;
char buf[10240];
char *av[20];
int ac = 0;
switch (type)
{
case GRAB_FILE:
av[ac++] = GETIMAGE_FILE_PROGRAM;
if (verbose_p)
av[ac++] = "--verbose";
av[ac++] = "--name";
av[ac++] = (char *) directory;
break;
case GRAB_VIDEO:
av[ac++] = GETIMAGE_VIDEO_PROGRAM;
if (verbose_p)
av[ac++] = "--verbose";
av[ac++] = "--name";
break;
# ifdef USE_EXTERNAL_SCREEN_GRABBER
case GRAB_DESK:
av[ac++] = GETIMAGE_SCREEN_PROGRAM;
if (verbose_p)
av[ac++] = "--verbose";
av[ac++] = "--name";
break;
# endif
default:
abort();
}
av[ac] = 0;
if (verbose_p)
{
int i;
fprintf (stderr, "%s: executing:", progname);
for (i = 0; i < ac; i++)
fprintf (stderr, " %s", av[i]);
fprintf (stderr, "\n");
}
if (pipe (fds))
{
sprintf (buf, "%s: error creating pipe", progname);
perror (buf);
return 0;
}
in = fds [0];
out = fds [1];
switch ((int) (forked = fork ()))
{
case -1:
{
sprintf (buf, "%s: couldn't fork", progname);
perror (buf);
return 0;
}
case 0:
{
int stdout_fd = 1;
close (in); /* don't need this one */
close (ConnectionNumber (dpy)); /* close display fd */
if (dup2 (out, stdout_fd) < 0) /* pipe stdout */
{
sprintf (buf, "%s: could not dup() a new stdout", progname);
exit (-1); /* exits fork */
}
execvp (av[0], av); /* shouldn't return. */
exit (-1); /* exits fork */
break;
}
default:
{
struct stat st;
int wait_status = 0;
FILE *f = fdopen (in, "r");
int L;
char *ret = 0;
close (out); /* don't need this one */
*buf = 0;
if (! fgets (buf, sizeof(buf)-1, f))
*buf = 0;
fclose (f);
/* Wait for the child to die. */
waitpid (-1, &wait_status, 0);
L = strlen (buf);
while (L && buf[L-1] == '\n')
buf[--L] = 0;
if (!*buf)
return 0;
ret = strdup (buf);
if (*ret != '/')
{
/* Program returned path relative to directory. Prepend dir
to buf so that we can properly stat it. */
strcpy (buf, directory);
if (directory[strlen(directory)-1] != '/')
strcat (buf, "/");
strcat (buf, ret);
}
if (stat(buf, &st))
{
fprintf (stderr, "%s: file does not exist: \"%s\"\n",
progname, buf);
free (ret);
return 0;
}
else
return ret;
}
}
abort();
}
/* Returns a pathname to an image file. Free the string when you're done.
*/
static char *
get_filename (Screen *screen, const char *directory, Bool verbose_p)
{
return get_filename_1 (screen, directory, GRAB_FILE, verbose_p);
}
/* Grabs a video frame to a file, and returns a pathname to that file.
Delete that file when you are done with it (and free the string.)
*/
static char *
get_video_filename (Screen *screen, Bool verbose_p)
{
return get_filename_1 (screen, 0, GRAB_VIDEO, verbose_p);
}
/* Grabs a desktop image to a file, and returns a pathname to that file.
Delete that file when you are done with it (and free the string.)
*/
# ifdef USE_EXTERNAL_SCREEN_GRABBER
static char *
get_desktop_filename (Screen *screen, Bool verbose_p)
{
return get_filename_1 (screen, 0, GRAB_DESK, verbose_p);
}
#endif /* USE_EXTERNAL_SCREEN_GRABBER */
/* Grabs a video frame, and renders it on the Drawable.
Returns False if it fails;
*/
static Bool
display_video (Screen *screen, Window window, Drawable drawable,
Bool verbose_p, XRectangle *geom_ret)
{
char *filename = get_video_filename (screen, verbose_p);
Bool status;
if (!filename)
{
if (verbose_p)
fprintf (stderr, "%s: video grab failed.\n", progname);
return False;
}
status = display_file (screen, window, drawable, filename, verbose_p,
geom_ret);
if (unlink (filename))
{
char buf[512];
sprintf (buf, "%s: rm %.100s", progname, filename);
perror (buf);
}
else if (verbose_p)
fprintf (stderr, "%s: rm %s\n", progname, filename);
if (filename) free (filename);
return status;
}
/* Grabs a desktop screen shot onto the window and the drawable.
If the window and drawable are not the same size, the image in
the drawable is scaled to fit.
Returns False if it fails.
*/
static Bool
display_desktop (Screen *screen, Window window, Drawable drawable,
Bool verbose_p, XRectangle *geom_ret)
{
# ifdef USE_EXTERNAL_SCREEN_GRABBER
Display *dpy = DisplayOfScreen (screen);
Bool top_p = top_level_window_p (screen, window);
char *filename;
Bool status;
if (top_p)
{
if (verbose_p)
fprintf (stderr, "%s: unmapping 0x%lx.\n", progname,
(unsigned long) window);
XUnmapWindow (dpy, window);
XSync (dpy, False);
}
filename = get_desktop_filename (screen, verbose_p);
if (top_p)
{
if (verbose_p)
fprintf (stderr, "%s: mapping 0x%lx.\n", progname,
(unsigned long) window);
XMapRaised (dpy, window);
XSync (dpy, False);
}
if (!filename)
{
if (verbose_p)
fprintf (stderr, "%s: desktop grab failed.\n", progname);
return False;
}
status = display_file (screen, window, drawable, filename, verbose_p,
geom_ret);
if (unlink (filename))
{
char buf[512];
sprintf (buf, "%s: rm %.100s", progname, filename);
perror (buf);
}
else if (verbose_p)
fprintf (stderr, "%s: rm %s\n", progname, filename);
if (filename) free (filename);
return status;
# else /* !USE_EXTERNAL_SCREEN_GRABBER */
Display *dpy = DisplayOfScreen (screen);
XGCValues gcv;
XWindowAttributes xgwa;
Window root;
int px, py;
unsigned int pw, ph, pbw, pd;
int srcx, srcy, destx, desty, w2, h2;
if (verbose_p)
{
fprintf (stderr, "%s: grabbing desktop image\n", progname);
grabscreen_verbose();
}
XGetWindowAttributes (dpy, window, &xgwa);
XGetGeometry (dpy, drawable, &root, &px, &py, &pw, &ph, &pbw, &pd);
grab_screen_image_internal (screen, window);
compute_image_scaling (xgwa.width, xgwa.height,
pw, ph, verbose_p,
&srcx, &srcy, &destx, &desty, &w2, &h2);
if (pw == w2 && ph == h2) /* it fits -- just copy server-side pixmaps */
{
GC gc = XCreateGC (dpy, drawable, 0, &gcv);
XCopyArea (dpy, window, drawable, gc,
0, 0, xgwa.width, xgwa.height, 0, 0);
XFreeGC (dpy, gc);
}
else /* size mismatch -- must scale client-side images to fit drawable */
{
GC gc;
XImage *ximage = 0;
XErrorHandler old_handler;
XSync (dpy, False);
old_handler = XSetErrorHandler (ignore_badmatch_ehandler);
error_handler_hit_p = False;
/* This can return BadMatch if the window is not fully on screen.
Trap that error and return color bars in that case.
(Note that this only happens with XGetImage, not with XCopyArea:
yet another totally gratuitous inconsistency in X, thanks.)
*/
ximage = XGetImage (dpy, window, 0, 0, xgwa.width, xgwa.height,
~0L, ZPixmap);
XSync (dpy, False);
XSetErrorHandler (old_handler);
XSync (dpy, False);
if (error_handler_hit_p)
{
ximage = 0;
if (verbose_p)
fprintf (stderr, "%s: BadMatch reading window 0x%x contents!\n",
progname, (unsigned int) window);
}
if (!ximage ||
!scale_ximage (xgwa.screen, xgwa.visual, ximage, w2, h2))
return False;
gc = XCreateGC (dpy, drawable, 0, &gcv);
clear_drawable (screen, drawable);
XPutImage (dpy, drawable, gc, ximage,
srcx, srcy, destx, desty, ximage->width, ximage->height);
XDestroyImage (ximage);
XFreeGC (dpy, gc);
}
if (geom_ret)
{
geom_ret->x = destx;
geom_ret->y = desty;
geom_ret->width = w2;
geom_ret->height = h2;
}
XSync (dpy, False);
return True;
# endif /* !USE_EXTERNAL_SCREEN_GRABBER */
}
/* Whether the given Drawable is unreasonably small.
*/
static Bool
drawable_miniscule_p (Display *dpy, Drawable drawable)
{
Window root;
int xx, yy;
unsigned int bw, d, w = 0, h = 0;
XGetGeometry (dpy, drawable, &root, &xx, &yy, &w, &h, &bw, &d);
return (w < 32 || h < 30);
}
/* Grabs an image (from a file, video, or the desktop) and renders it on
the Drawable. If `file' is specified, always use that file. Otherwise,
select randomly, based on the other arguments.
*/
static void
get_image (Screen *screen,
Window window, Drawable drawable,
Bool verbose_p,
Bool desk_p,
Bool video_p,
Bool image_p,
const char *dir,
const char *file)
{
Display *dpy = DisplayOfScreen (screen);
grab_type which = GRAB_BARS;
struct stat st;
const char *file_prop = 0;
char *absfile = 0;
XRectangle geom = { 0, 0, 0, 0 };
if (! drawable_window_p (dpy, window))
{
fprintf (stderr, "%s: 0x%lx is a pixmap, not a window!\n",
progname, (unsigned long) window);
exit (1);
}
/* Make sure the Screen and the Window correspond. */
{
XWindowAttributes xgwa;
XGetWindowAttributes (dpy, window, &xgwa);
screen = xgwa.screen;
}
if (file && stat (file, &st))
{
fprintf (stderr, "%s: file \"%s\" does not exist\n", progname, file);
file = 0;
}
if (verbose_p)
{
fprintf (stderr, "%s: grabDesktopImages: %s\n",
progname, desk_p ? "True" : "False");
fprintf (stderr, "%s: grabVideoFrames: %s\n",
progname, video_p ? "True" : "False");
fprintf (stderr, "%s: chooseRandomImages: %s\n",
progname, image_p ? "True" : "False");
fprintf (stderr, "%s: imageDirectory: %s\n",
progname, (file ? file : dir ? dir : ""));
}
# if !(defined(HAVE_GDK_PIXBUF) || defined(HAVE_JPEGLIB))
image_p = False; /* can't load images from files... */
# ifdef USE_EXTERNAL_SCREEN_GRABBER
desk_p = False; /* ...or from desktops grabbed to files. */
# endif
if (file)
{
fprintf (stderr,
"%s: image file loading not available at compile-time\n",
progname);
fprintf (stderr, "%s: can't load \"%s\"\n", progname, file);
file = 0;
}
# endif /* !(HAVE_GDK_PIXBUF || HAVE_JPEGLIB) */
if (file)
{
desk_p = False;
video_p = False;
image_p = True;
}
else if (!dir || !*dir)
{
if (verbose_p && image_p)
fprintf (stderr,
"%s: no imageDirectory: turning off chooseRandomImages.\n",
progname);
image_p = False;
}
/* If the target drawable is really small, no good can come of that.
Always do colorbars in that case.
*/
if (drawable_miniscule_p (dpy, drawable))
{
desk_p = False;
video_p = False;
image_p = False;
}
# ifndef _VROOT_H_
# error Error! This file definitely needs vroot.h!
# endif
/* We can grab desktop images (using the normal X11 method) if:
- the window is the real root window;
- the window is a toplevel window.
We cannot grab desktop images that way if:
- the window is a non-top-level window.
Under X11 on MacOS, desktops are just like loaded image files.
Under Cocoa on MacOS, this code is not used at all.
*/
# ifndef USE_EXTERNAL_SCREEN_GRABBER
if (desk_p)
{
if (!top_level_window_p (screen, window))
{
desk_p = False;
if (verbose_p)
fprintf (stderr,
"%s: 0x%x not top-level: turning off grabDesktopImages.\n",
progname, (unsigned int) window);
}
}
# endif /* !USE_EXTERNAL_SCREEN_GRABBER */
if (! (desk_p || video_p || image_p))
which = GRAB_BARS;
else
{
int i = 0;
int n;
/* Loop until we get one that's permitted.
If files or video are permitted, do them more often
than desktop.
D+V+I: 10% + 45% + 45%.
V+I: 50% + 50%
D+V: 18% + 82%
D+I: 18% + 82%
*/
AGAIN:
n = (random() % 100);
if (++i > 300) abort();
else if (desk_p && n < 10) which = GRAB_DESK; /* 10% */
else if (video_p && n < 55) which = GRAB_VIDEO; /* 45% */
else if (image_p) which = GRAB_FILE; /* 45% */
else goto AGAIN;
}
/* If we're to search a directory to find an image file, do so now.
*/
if (which == GRAB_FILE && !file)
{
file = get_filename (screen, dir, verbose_p);
if (!file)
{
which = GRAB_BARS;
if (verbose_p)
fprintf (stderr, "%s: no image files found.\n", progname);
}
}
/* Now actually render something.
*/
switch (which)
{
case GRAB_BARS:
{
XWindowAttributes xgwa;
COLORBARS:
if (verbose_p)
fprintf (stderr, "%s: drawing colorbars.\n", progname);
XGetWindowAttributes (dpy, window, &xgwa);
colorbars (screen, xgwa.visual, drawable, xgwa.colormap);
XSync (dpy, False);
if (! file_prop) file_prop = "";
}
break;
case GRAB_DESK:
if (! display_desktop (screen, window, drawable, verbose_p, &geom))
goto COLORBARS;
file_prop = "desktop";
break;
case GRAB_FILE:
if (*file && *file != '/') /* pathname is relative to dir. */
{
if (absfile) free (absfile);
absfile = malloc (strlen(dir) + strlen(file) + 10);
strcpy (absfile, dir);
if (dir[strlen(dir)-1] != '/')
strcat (absfile, "/");
strcat (absfile, file);
}
if (! display_file (screen, window, drawable,
(absfile ? absfile : file),
verbose_p, &geom))
goto COLORBARS;
file_prop = file;
break;
case GRAB_VIDEO:
if (! display_video (screen, window, drawable, verbose_p, &geom))
goto COLORBARS;
file_prop = "video";
break;
default:
abort();
break;
}
{
Atom a = XInternAtom (dpy, XA_XSCREENSAVER_IMAGE_FILENAME, False);
if (file_prop && *file_prop)
{
char *f2 = strdup (file_prop);
/* Take the extension off of the file name. */
/* Duplicated in utils/grabclient.c. */
char *slash = strrchr (f2, '/');
char *dot = strrchr ((slash ? slash : f2), '.');
if (dot) *dot = 0;
/* Replace slashes with newlines */
/* while ((dot = strchr(f2, '/'))) *dot = '\n'; */
/* Replace slashes with spaces */
/* while ((dot = strchr(f2, '/'))) *dot = ' '; */
XChangeProperty (dpy, window, a, XA_STRING, 8, PropModeReplace,
(unsigned char *) f2, strlen(f2));
free (f2);
}
else
XDeleteProperty (dpy, window, a);
a = XInternAtom (dpy, XA_XSCREENSAVER_IMAGE_GEOMETRY, False);
if (geom.width > 0)
{
char gstr[30];
sprintf (gstr, "%dx%d+%d+%d", geom.width, geom.height, geom.x, geom.y);
XChangeProperty (dpy, window, a, XA_STRING, 8, PropModeReplace,
(unsigned char *) gstr, strlen (gstr));
}
else
XDeleteProperty (dpy, window, a);
}
if (absfile) free (absfile);
XSync (dpy, False);
}
#ifdef DEBUG
static Bool
mapper (XrmDatabase *db, XrmBindingList bindings, XrmQuarkList quarks,
XrmRepresentation *type, XrmValue *value, XPointer closure)
{
int i;
for (i = 0; quarks[i]; i++)
{
if (bindings[i] == XrmBindTightly)
fprintf (stderr, (i == 0 ? "" : "."));
else if (bindings[i] == XrmBindLoosely)
fprintf (stderr, "*");
else
fprintf (stderr, " ??? ");
fprintf(stderr, "%s", XrmQuarkToString (quarks[i]));
}
fprintf (stderr, ": %s\n", (char *) value->addr);
return False;
}
#endif /* DEBUG */
#define USAGE "usage: %s [ -options... ] window-id [pixmap-id]\n" \
"\n" \
" %s\n" \
"\n" \
" %s puts an image on the given window or pixmap.\n" \
"\n" \
" It is used by those xscreensaver demos that operate on images.\n" \
" The image may be a file loaded from disk, a frame grabbed from\n" \
" the system's video camera, or a screenshot of the desktop,\n" \
" depending on command-line options or the ~/.xscreensaver file.\n" \
"\n" \
" Options include:\n" \
"\n" \
" -display host:dpy.screen which display to use\n" \
" -root draw to the root window\n" \
" -verbose print diagnostics\n" \
" -images / -no-images whether to allow image file loading\n" \
" -video / -no-video whether to allow video grabs\n" \
" -desktop / -no-desktop whether to allow desktop screen grabs\n"\
" -directory <path> where to find image files to load\n" \
" -file <filename> load this image file\n" \
"\n" \
" The XScreenSaver Control Panel (xscreensaver-demo) lets you set the\n"\
" defaults for these options in your ~/.xscreensaver file.\n" \
"\n"
int
main (int argc, char **argv)
{
saver_preferences P;
Widget toplevel;
Display *dpy;
Screen *screen;
char *oprogname = progname;
char *file = 0;
char version[255];
Window window = (Window) 0;
Drawable drawable = (Drawable) 0;
const char *window_str = 0;
const char *drawable_str = 0;
char *s;
int i;
progname = argv[0];
s = strrchr (progname, '/');
if (s) progname = s+1;
oprogname = progname;
/* half-assed way of avoiding buffer-overrun attacks. */
if (strlen (progname) >= 100) progname[100] = 0;
# ifndef _VROOT_H_
# error Error! This file definitely needs vroot.h!
# endif
/* Get the version number, for error messages. */
{
char *v = (char *) strdup(strchr(screensaver_id, ' '));
char *s1, *s2, *s3, *s4;
s1 = (char *) strchr(v, ' '); s1++;
s2 = (char *) strchr(s1, ' ');
s3 = (char *) strchr(v, '('); s3++;
s4 = (char *) strchr(s3, ')');
*s2 = 0;
*s4 = 0;
sprintf (version, "Part of XScreenSaver %s -- %s.", s1, s3);
free(v);
}
/* We must read exactly the same resources as xscreensaver.
That means we must have both the same progclass *and* progname,
at least as far as the resource database is concerned. So,
put "xscreensaver" in argv[0] while initializing Xt.
*/
progname = argv[0] = "xscreensaver";
/* allow one dash or two. */
for (i = 1; i < argc; i++)
if (argv[i][0] == '-' && argv[i][1] == '-') argv[i]++;
toplevel = XtAppInitialize (&app, progclass, 0, 0, &argc, argv,
defaults, 0, 0);
dpy = XtDisplay (toplevel);
screen = XtScreen (toplevel);
db = XtDatabase (dpy);
XtGetApplicationNameAndClass (dpy, &s, &progclass);
XSetErrorHandler (x_ehandler);
XSync (dpy, False);
/* Randomize -- only need to do this here because this program
doesn't use the `screenhack.h' or `lockmore.h' APIs. */
# undef ya_rand_init
ya_rand_init (0);
memset (&P, 0, sizeof(P));
P.db = db;
load_init_file (dpy, &P);
progname = argv[0] = oprogname;
for (i = 1; i < argc; i++)
{
unsigned long w;
char dummy;
/* Have to re-process these, or else the .xscreensaver file
has priority over the command line...
*/
if (!strcmp (argv[i], "-v") || !strcmp (argv[i], "-verbose"))
P.verbose_p = True;
else if (!strcmp (argv[i], "-desktop")) P.grab_desktop_p = True;
else if (!strcmp (argv[i], "-no-desktop")) P.grab_desktop_p = False;
else if (!strcmp (argv[i], "-video")) P.grab_video_p = True;
else if (!strcmp (argv[i], "-no-video")) P.grab_video_p = False;
else if (!strcmp (argv[i], "-images")) P.random_image_p = True;
else if (!strcmp (argv[i], "-no-images")) P.random_image_p = False;
else if (!strcmp (argv[i], "-file")) file = argv[++i];
else if (!strcmp (argv[i], "-directory") || !strcmp (argv[i], "-dir"))
P.image_directory = argv[++i];
else if (!strcmp (argv[i], "-root") || !strcmp (argv[i], "root"))
{
if (window)
{
fprintf (stderr, "%s: both %s and %s specified?\n",
progname, argv[i], window_str);
goto LOSE;
}
window_str = argv[i];
window = VirtualRootWindowOfScreen (screen);
}
else if ((1 == sscanf (argv[i], " 0x%lx %c", &w, &dummy) ||
1 == sscanf (argv[i], " %lu %c", &w, &dummy)) &&
w != 0)
{
if (drawable)
{
fprintf (stderr, "%s: both %s and %s specified?\n",
progname, drawable_str, argv[i]);
goto LOSE;
}
else if (window)
{
drawable_str = argv[i];
drawable = (Drawable) w;
}
else
{
window_str = argv[i];
window = (Window) w;
}
}
else
{
if (argv[i][0] == '-')
fprintf (stderr, "\n%s: unknown option \"%s\"\n",
progname, argv[i]);
else
fprintf (stderr, "\n%s: unparsable window/pixmap ID: \"%s\"\n",
progname, argv[i]);
LOSE:
# ifdef __GNUC__
__extension__ /* don't warn about "string length is greater than
the length ISO C89 compilers are required to
support" in the usage string... */
# endif
fprintf (stderr, USAGE, progname, version, progname);
exit (1);
}
}
if (window == 0)
{
fprintf (stderr, "\n%s: no window ID specified!\n", progname);
goto LOSE;
}
#ifdef DEBUG
if (P.verbose_p) /* Print out all the resources we can see. */
{
XrmName name = { 0 };
XrmClass class = { 0 };
int count = 0;
XrmEnumerateDatabase (db, &name, &class, XrmEnumAllLevels, mapper,
(XtPointer) &count);
}
#endif /* DEBUG */
if (!window) abort();
if (!drawable) drawable = window;
get_image (screen, window, drawable, P.verbose_p,
P.grab_desktop_p, P.grab_video_p, P.random_image_p,
P.image_directory, file);
exit (0);
}
|