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
|
/* Please note! Although intended to support multiple camera types
* it's been tested with only cameras I have access to: the Kodak DC240
* and the Directory Browse "camera." I'm very interested
* in learning what it would take to support more cameras. In
* particular, the current incarnation will only support cameras
* that directly generate jpeg files.
*
* Please report sucesses or failures using this backend!
*
* However, having said that, I've already found it to be quite useful
* even in its current form - one reason is that gphoto2 provides access
* to the camera via USB which is not supported by the regular DC240
* backend and is dramatically faster than the serial port.
*/
/***************************************************************************
* _S_A_N_E - Scanner Access Now Easy.
gphoto2.c
03/12/01 - Peter Fales
Based on the dc210 driver, (C) 1998 Brian J. Murrell (which is
based on dc25 driver (C) 1998 by Peter Fales)
This file (C) 2001 by Peter Fales
This file is part of the SANE package.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston,
MA 02111-1307, USA.
As a special exception, the authors of SANE give permission for
additional uses of the libraries contained in this release of SANE.
The exception is that, if you link a SANE library with other files
to produce an executable, this does not by itself cause the
resulting executable to be covered by the GNU General Public
License. Your use of that executable is in no way restricted on
account of linking the SANE library code into it.
This exception does not, however, invalidate any other reasons why
the executable file might be covered by the GNU General Public
License.
If you submit changes to SANE to the maintainers to be included in
a subsequent release, you agree by submitting the changes that
those changes may be distributed with this exception intact.
If you write modifications of your own for SANE, it is your choice
whether to permit this exception to apply to your modifications.
If you do not wish that, delete this exception notice.
***************************************************************************
This file implements a SANE backend for digital cameras
supported by the gphoto2 libraries.
THIS IS EXTREMELY ALPHA CODE! USE AT YOUR OWN RISK!!
(feedback to: gphoto2-devel@fales-lorenz.net)
This backend is based somewhat on the dc25 backend included in this
package by Peter Fales, and the dc210 backend by Brian J. Murrell
***************************************************************************/
#include "../include/sane/config.h"
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
#include <limits.h>
#include "../include/sane/sanei_jpeg.h"
#include <sys/ioctl.h>
#include "../include/sane/sane.h"
#include "../include/sane/sanei.h"
#include "../include/sane/saneopts.h"
#define BACKEND_NAME gphoto2
#include "../include/sane/sanei_backend.h"
/* PSF 1/12/02 - gphoto2.h does a #include of config.h. We don't have
* config.h by that name (we call it sane/config.h), so the #undef of
* HAVE_CONFIG_H will cause it to skip that.
*/
#undef HAVE_CONFIG_H
#include "gphoto2.h"
#include <gphoto2-camera.h>
#include <gphoto2-port-log.h>
#define CHECK_RET(f) {int res = f; if (res < 0) {DBG (1,"ERROR: %s\n", gp_result_as_string (res)); return (SANE_STATUS_INVAL);}}
#ifndef PATH_MAX
# define PATH_MAX 1024
#endif
#define MAGIC (void *)0xab730324
#define GPHOTO2_CONFIG_FILE "gphoto2.conf"
static SANE_Bool is_open = 0;
/* Options selected by frontend: */
static SANE_Bool gphoto2_opt_thumbnails; /* Read thumbnails */
static SANE_Bool gphoto2_opt_snap; /* Take new picture */
static SANE_Bool gphoto2_opt_lowres; /* Set low resolution */
static SANE_Bool gphoto2_opt_erase; /* Erase after downloading */
static SANE_Bool gphoto2_opt_autoinc; /* Increment image number */
static SANE_Bool dumpinquiry; /* Dump status info */
/* Used for jpeg decompression */
static struct jpeg_decompress_struct cinfo;
static djpeg_dest_ptr dest_mgr = NULL;
static SANE_Int highres_height = 960, highres_width = 1280;
static SANE_Int thumb_height = 120, thumb_width = 160;
static SANE_String TopFolder; /* Fixed part of path strings */
static SANE_Int SubDirs = 1; /* Search for Sub directories */
static GPHOTO2 Cam_data; /* Other camera data */
static SANE_Range image_range = {
0,
0,
0
};
static SANE_String *folder_list;
static SANE_Int current_folder = 0;
static SANE_Option_Descriptor sod[] = {
{
SANE_NAME_NUM_OPTIONS,
SANE_TITLE_NUM_OPTIONS,
SANE_DESC_NUM_OPTIONS,
SANE_TYPE_INT,
SANE_UNIT_NONE,
sizeof (SANE_Word),
SANE_CAP_SOFT_DETECT,
SANE_CONSTRAINT_NONE,
{NULL}
}
,
#define GPHOTO2_OPT_IMAGE_SELECTION 1
{
"",
"Image Selection",
"Selection of the image to load.",
SANE_TYPE_GROUP,
SANE_UNIT_NONE,
0,
0,
SANE_CONSTRAINT_NONE,
{NULL}
}
,
#define GPHOTO2_OPT_FOLDER 2
{
"folder",
"Folder",
"Select folder within camera",
SANE_TYPE_STRING,
SANE_UNIT_NONE,
256,
SANE_CAP_SOFT_SELECT | SANE_CAP_SOFT_DETECT,
SANE_CONSTRAINT_STRING_LIST,
{NULL}
}
,
#define GPHOTO2_OPT_IMAGE_NUMBER 3
{
"image",
"Image Number",
"Select Image Number to load from camera",
SANE_TYPE_INT,
SANE_UNIT_NONE,
4,
SANE_CAP_SOFT_SELECT | SANE_CAP_SOFT_DETECT,
SANE_CONSTRAINT_RANGE,
{(SANE_String_Const *) & image_range} /* this is ANSI conformant! */
}
,
#define GPHOTO2_OPT_THUMBS 4
{
"thumbs",
"Load Thumbnail",
"Load the image as thumbnail.",
SANE_TYPE_BOOL,
SANE_UNIT_NONE,
sizeof (SANE_Word),
SANE_CAP_SOFT_SELECT | SANE_CAP_SOFT_DETECT,
SANE_CONSTRAINT_NONE,
{NULL}
}
,
#define GPHOTO2_OPT_SNAP 5
{
"snap",
"Snap new picture",
"Take new picture and download it",
SANE_TYPE_BOOL,
SANE_UNIT_NONE,
sizeof (SANE_Word),
SANE_CAP_SOFT_SELECT | SANE_CAP_SOFT_DETECT /* | SANE_CAP_ADVANCED */ ,
SANE_CONSTRAINT_NONE,
{NULL}
}
,
#define GPHOTO2_OPT_LOWRES 6
{
"lowres",
"Low Resolution",
"Resolution of new picture or selected image (must be manually specified)",
SANE_TYPE_BOOL,
SANE_UNIT_NONE,
sizeof (SANE_Word),
SANE_CAP_SOFT_SELECT | SANE_CAP_SOFT_DETECT | SANE_CAP_INACTIVE /* Until we figure out how to support it */
/* | SANE_CAP_ADVANCED */ ,
SANE_CONSTRAINT_NONE,
{NULL}
}
,
#define GPHOTO2_OPT_ERASE 7
{
"erase",
"Erase",
"Erase the picture after downloading",
SANE_TYPE_BOOL,
SANE_UNIT_NONE,
sizeof (SANE_Word),
SANE_CAP_SOFT_SELECT | SANE_CAP_SOFT_DETECT,
SANE_CONSTRAINT_NONE,
{NULL}
}
,
#define GPHOTO2_OPT_DEFAULT 8
{
"default-enhancements",
"Defaults",
"Set default values for enhancement controls.",
SANE_TYPE_BUTTON,
SANE_UNIT_NONE,
0,
SANE_CAP_SOFT_SELECT | SANE_CAP_SOFT_DETECT,
SANE_CONSTRAINT_NONE,
{NULL}
}
,
#define GPHOTO2_OPT_INIT_GPHOTO2 9
{
"camera-init",
"Re-establish Communications",
"Re-establish communications with camera (in case of timeout, etc.)",
SANE_TYPE_BUTTON,
SANE_UNIT_NONE,
0,
SANE_CAP_SOFT_SELECT | SANE_CAP_SOFT_DETECT,
SANE_CONSTRAINT_NONE,
{NULL}
}
,
#define GPHOTO2_OPT_AUTOINC 10
{
"autoinc",
"Auto Increment",
"Increment image number after each scan",
SANE_TYPE_BOOL,
SANE_UNIT_NONE,
sizeof (SANE_Word),
SANE_CAP_SOFT_SELECT | SANE_CAP_SOFT_DETECT | SANE_CAP_ADVANCED,
SANE_CONSTRAINT_NONE,
{NULL}
}
,
};
static SANE_Parameters parms = {
SANE_FRAME_RGB,
0,
0, /* Number of bytes returned per scan line: */
0, /* Number of pixels per scan line. */
0, /* Number of lines for the current scan. */
8, /* Number of bits per sample. */
};
CameraList *dir_list;
Camera *camera;
/* Buffer to hold line currently being processed by sane_read */
static SANE_Byte *linebuffer = NULL;
static SANE_Int linebuffer_size = 0;
static SANE_Int linebuffer_index = 0;
/* used for setting up commands */
static SANE_Char cmdbuf[256];
/* Structures used by gphoto2 API */
static CameraAbilities abilities;
static CameraFile *data_file;
static const unsigned char *data_ptr;
static unsigned long data_file_total_size, data_file_current_index;
static SANE_Int hack_fd;
#include <sys/time.h>
#include <unistd.h>
/* Device select/open/close */
static SANE_Device dev[] = {
{
"0",
"Gphoto2",
"Supported",
"still camera"},
};
static const SANE_Device *devlist[] = {
dev + 0, 0
};
/*
* debug_func - called for gphoto2 debugging output (if enabled)
*/
static void
#ifdef GPLOGFUNC_NO_VARGS
debug_func (GPLogLevel level, const char *domain, const char *message,
void __sane_unused__ * data)
#else
debug_func (GPLogLevel level, const char *domain, const char *format,
va_list args, void __sane_unused__ * data)
#endif
{
if (level == GP_LOG_ERROR)
DBG (0, "%s(ERROR): ", domain);
else
DBG (0, "%s(%i): ", domain, level);
#ifdef GPLOGFUNC_NO_VARGS
DBG (0, "%s", message);
#else
sanei_debug_msg (0, DBG_LEVEL, STRINGIFY (BACKEND_NAME), format, args);
#endif
DBG (0, "\n");
}
/*
* init_gphoto2() - Initialize interface to camera using gphoto2 API
*/
static SANE_Int
init_gphoto2 (void)
{
CameraList *list;
GPPortInfoList *il;
GPPortInfo info;
SANE_Int n, m, port;
CameraAbilitiesList *al;
gp_log (GP_LOG_VERBOSE, "SANE", "Initializing\n");
if (!Cam_data.camera_name)
{
DBG (0, "init_gphoto2: Camera name not specified in config file\n");
return SANE_STATUS_INVAL;
}
if (camera)
{
/*
* We get here if re-initializing the camera: either because
* the user clicked the "re-establish" button, or we need to
* recalculate the number of photos after taking a picture.
* We must release the old camera before starting over.
*/
CHECK_RET (gp_camera_unref (camera));
}
CHECK_RET (gp_camera_new (&camera));
CHECK_RET (gp_abilities_list_new (&al));
CHECK_RET (gp_abilities_list_load (al, NULL));
CHECK_RET (m =
gp_abilities_list_lookup_model (al,
(char *) Cam_data.camera_name));
CHECK_RET (gp_abilities_list_get_abilities (al, m, &abilities));
CHECK_RET (gp_abilities_list_free (al));
CHECK_RET (gp_camera_set_abilities (camera, abilities));
if (!Cam_data.port)
{
DBG (0, "init_gphoto2: Camera port not specified in config file\n");
return SANE_STATUS_INVAL;
}
CHECK_RET (gp_port_info_list_new (&il));
CHECK_RET (gp_port_info_list_load (il));
if (strcmp (Cam_data.port, "Browse") != 0)
{
CHECK_RET (port = gp_port_info_list_lookup_path (il, Cam_data.port));
CHECK_RET (gp_port_info_list_get_info (il, port, &info));
CHECK_RET (gp_camera_set_port_info (camera, info));
gp_port_info_list_free (il);
}
for (n = 0; abilities.speed[n]; n++)
{
if (abilities.speed[n] == Cam_data.speed)
{
break;
}
}
if (abilities.speed[n] == 0 && !strncmp (Cam_data.port, "serial:", 7))
{
DBG (0,
"%s: error: %d is not a valid speed for this camers. Use \"gphoto2 --camera \"%s\" --abilities\" for list.\n",
"init_gphoto2", Cam_data.speed, Cam_data.camera_name);
return SANE_STATUS_INVAL;
}
DBG (4, "init_gphoto2: about to initialize port\n");
/*
* Setting of speed only makes sense for serial ports. gphoto2
* knows that and will complain if we try to set the speed for
* ports other than serial ones. Because we are paranoid here and
* check every single error message returned by gphoto2, we need
* to make sure that we have a serial port.
*/
if (Cam_data.speed && !strncmp (Cam_data.port, "serial:", 7))
{
/*
* Not sure why we need this hack. The API keeps opening/closing
* the port, and that seems to confuse the camera. Holding
* the port open seems to fix it.
*/
if ((hack_fd = open (Cam_data.port + 7, O_RDONLY)) < 0)
{
return SANE_STATUS_INVAL;
}
#ifdef HAVE_USLEEP
usleep (200);
#else
sleep (1);
#endif
CHECK_RET (gp_camera_set_port_speed (camera, Cam_data.speed));
}
CHECK_RET (gp_camera_init (camera, NULL));
if (!(abilities.operations & GP_OPERATION_CAPTURE_IMAGE))
{
DBG (20, "init_gphoto2: Camera does not support image capture\n");
sod[GPHOTO2_OPT_SNAP].cap |= SANE_CAP_INACTIVE;
}
if (!(abilities.file_operations & GP_FILE_OPERATION_PREVIEW))
{
DBG (20, "init_gphoto2: Camera does not support image preview\n");
sod[GPHOTO2_OPT_THUMBS].cap |= SANE_CAP_INACTIVE;
}
if (!(abilities.file_operations & GP_FILE_OPERATION_DELETE))
{
DBG (20, "init_gphoto2: Camera does not support image deletion\n");
sod[GPHOTO2_OPT_ERASE].cap |= SANE_CAP_INACTIVE;
}
DBG (4, "init_gphoto2: about to get folders\n");
CHECK_RET (gp_list_new (&list));
CHECK_RET (gp_camera_folder_list_folders (camera, TopFolder, list, NULL));
n = gp_list_count (list);
if (n < 0)
{
DBG (0, "init_gphoto2: Unable to get file list\n");
return SANE_STATUS_INVAL;
}
return SANE_STATUS_GOOD;
}
/*
* close_gphoto2() - Shutdown camera interface
*/
static void
close_gphoto2 (void)
{
/*
* Put the camera back to 9600 baud
*/
if (gp_camera_unref (camera))
{
DBG (1, "close_gphoto2: error: could not close device\n");
}
camera = NULL;
close (hack_fd);
}
/*
* get_info() - Get overall information about camera: folder names,
* number of pictures, etc.
*/
SANE_Int
get_info (void)
{
SANE_String_Const val;
SANE_Int n;
if (Cam_data.pic_taken == 0)
{
sod[GPHOTO2_OPT_IMAGE_NUMBER].cap |= SANE_CAP_INACTIVE;
image_range.min = 0;
image_range.max = 0;
}
else
{
sod[GPHOTO2_OPT_IMAGE_NUMBER].cap &= ~SANE_CAP_INACTIVE;
image_range.min = 1;
image_range.max = Cam_data.pic_taken;
}
if (SubDirs)
{
n = read_dir (TopFolder, 0);
}
else
{
n = 1;
}
/* If we've already got a folder_list, free it up before starting
* the new one
*/
if (folder_list != NULL)
{
int tmp;
for (tmp = 0; folder_list[tmp]; tmp++)
{
free (folder_list[tmp]);
}
free (folder_list);
}
folder_list =
(SANE_String *) malloc ((n + 1) * sizeof (SANE_String_Const *));
if (SubDirs)
{
for (n = 0; n < gp_list_count (dir_list); n++)
{
gp_list_get_name (dir_list, n, &val);
folder_list[n] = strdup (val);
if (strchr ((const char *) folder_list[n], ' '))
{
*strchr ((const char *) folder_list[n], ' ') = '\0';
}
}
if (n == 0)
{
folder_list[n++] = (SANE_String) strdup ("");
}
}
else
{
n = 0;
folder_list[n++] = "N/A";
}
folder_list[n] = NULL;
sod[GPHOTO2_OPT_FOLDER].constraint.string_list =
(SANE_String_Const *) folder_list;
Cam_data.pic_taken = 0;
Cam_data.pic_left = 1; /* Just a guess! */
return SANE_STATUS_GOOD;
}
/*
* erase() - erase file from camera corresponding to
* current picture number. Does not update any of the other
* backend data structures.
*/
static SANE_Int
erase (void)
{
SANE_String_Const filename;
if (SubDirs)
{
sprintf (cmdbuf, "%s/%s", (char *) TopFolder,
(const char *) folder_list[current_folder]);
}
else
{
strcpy (cmdbuf, TopFolder);
}
CHECK_RET (gp_list_get_name
(dir_list, Cam_data.current_picture_number - 1, &filename));
CHECK_RET (gp_camera_file_delete (camera, cmdbuf, filename, NULL));
return SANE_STATUS_GOOD;
}
/*
* change_res() - FIXME: Would like to set resolution, but haven't figure
* out how to control that yet.
*/
static SANE_Int
change_res (SANE_Byte res)
{
return (res - res);
}
/*
* sane_init() - Initialization function from SANE API. Initialize some
* data structures, verify that all the necessary config information
* is present, and initialize gphoto2
*/
SANE_Status
sane_init (SANE_Int * version_code, SANE_Auth_Callback __sane_unused__ authorize)
{
SANE_Int n, entries;
SANE_Char f[] = "sane_init";
SANE_Char dev_name[PATH_MAX], *p;
SANE_Char buf[256];
CameraAbilitiesList *al;
size_t len;
FILE *fp;
DBG_INIT ();
DBG (1,
"GPHOTO2 Backend $Id$\n");
if (getenv ("GP_DEBUG"))
{
gp_log_add_func (atoi (getenv ("GP_DEBUG")), debug_func, NULL);
}
if (version_code)
*version_code = SANE_VERSION_CODE (SANE_CURRENT_MAJOR, V_MINOR, 0);
fp = sanei_config_open (GPHOTO2_CONFIG_FILE);
if (!fp)
{
/* Earlier versions why would try to keep going with compiled in
* defaults if the config file is missing. But, now we have so
* options and combinations of options, that success without a config
* file is unlikely. So, give and return failure
*/
DBG (0, "warning: %s: missing config file '%s'\n"
"If you aren't using gphoto2, you should disable it in dll.conf.\n"
"If you do want to use gphoto2, you'll need to install the config\n"
"file in %s.\n", f, GPHOTO2_CONFIG_FILE, GPHOTO2_CONFIG_FILE);
return SANE_STATUS_INVAL;
}
else
{
while (sanei_config_read (dev_name, sizeof (dev_name), fp))
{
dev_name[sizeof (dev_name) - 1] = '\0';
DBG (20, "%s: config- %s\n", f, dev_name);
if (dev_name[0] == '#')
continue; /* ignore line comments */
len = strlen (dev_name);
if (!len)
continue; /* ignore empty lines */
if (strncmp (dev_name, "port=", 5) == 0)
{
GPPortInfoList *list;
GPPortInfo info;
int result;
p = dev_name + 5;
if (p)
Cam_data.port = strdup (p);
DBG (20, "Config file port=%s\n", Cam_data.port);
/* Validate port */
CHECK_RET (gp_port_info_list_new (&list));
result = gp_port_info_list_load (list);
if (result < 0)
{
gp_port_info_list_free (list);
return SANE_STATUS_INVAL;
}
entries = gp_port_info_list_count (list);
if (entries < 0)
{
gp_port_info_list_free (list);
return SANE_STATUS_INVAL;
}
for (n = 0; n < entries; n++)
{
#ifdef HAVE_GP_PORT_INFO_GET_PATH
char *info_path = NULL;
#endif
result = gp_port_info_list_get_info (list, n, &info);
if (result < 0)
{
gp_port_info_list_free (list);
return SANE_STATUS_INVAL;
}
#ifdef HAVE_GP_PORT_INFO_GET_PATH
gp_port_info_get_path (info, &info_path);
if (strcmp (Cam_data.port, info_path) == 0)
#else
if (strcmp (Cam_data.port, info.path) == 0)
#endif
{
break;
}
}
if (n == entries)
{
DBG (0,
"%s: error: %s is not a valid gphoto2 port. Use \"gphoto2 --list-ports\" for list.\n",
"init_gphoto2", Cam_data.port);
return SANE_STATUS_INVAL;
}
}
else if (strncmp (dev_name, "camera=", 7) == 0)
{
Cam_data.camera_name = strdup (dev_name + 7);
DBG (20, "Config file camera=%s\n", Cam_data.camera_name);
sprintf (buf, "Image selection - %s", Cam_data.camera_name);
CHECK_RET (gp_abilities_list_new (&al));
CHECK_RET (gp_abilities_list_load (al, NULL));
CHECK_RET (entries = gp_abilities_list_count (al));
for (n = 0; n < entries; n++)
{
CHECK_RET (gp_abilities_list_get_abilities
(al, n, &abilities));
if (strcmp (Cam_data.camera_name, abilities.model) == 0)
{
break;
}
}
if (n == entries)
{
DBG (0,
"%s: error: %s is not a valid camera type. Use \"gphoto2 --list-cameras\" for list.\n",
f, Cam_data.camera_name);
return SANE_STATUS_INVAL;
}
/* Special case: Force port to special value for the
* "Directory Browse" camera - overriding anything in
* the config file - or more likely when not specified
* in the config file.
*/
if (strcmp (Cam_data.camera_name, "Directory Browse") == 0)
{
Cam_data.port = "Browse";
}
sod[GPHOTO2_OPT_IMAGE_SELECTION].title = strdup (buf);
}
else if (strcmp (dev_name, "dumpinquiry") == 0)
{
dumpinquiry = SANE_TRUE;
}
else if (strncmp (dev_name, "speed=", 6) == 0)
{
sscanf (&dev_name[6], "%d", &Cam_data.speed);
DBG (20, "Config file speed=%u\n", Cam_data.speed);
}
else if (strncmp (dev_name, "resolution=", 11) == 0)
{
sscanf (&dev_name[11], "%dx%d", &highres_width,
&highres_height);
DBG (20, "Config file resolution=%ux%u\n", highres_width,
highres_height);
}
else if (strncmp (dev_name, "thumb_resolution=", 17) == 0)
{
sscanf (&dev_name[17], "%dx%d", &thumb_width, &thumb_height);
DBG (20, "Config file thumb_resolution=%ux%u\n", thumb_width,
thumb_height);
}
else if (strncmp (dev_name, "topfolder=", 10) == 0)
{
/* Make sure TopFolder is non-null */
if (strlen (dev_name) > 10)
{
TopFolder = strdup (&dev_name[10]);
DBG (20, "Config file topfolder=%s\n", TopFolder);
}
}
else if (strncmp (dev_name, "subdirs=", 8) == 0)
{
SubDirs = atoi (&dev_name[8]);
if (SubDirs == 0)
{
sod[GPHOTO2_OPT_FOLDER].cap |= SANE_CAP_INACTIVE;
}
DBG (20, "Config file subdirs=%d\n", SubDirs);
}
}
fclose (fp);
}
DBG (3, "sane_init: about to init_gphoto2\n");
if (init_gphoto2 () != SANE_STATUS_GOOD)
return SANE_STATUS_INVAL;
dev[0].name = strdup (Cam_data.port);
DBG (3, "sane_init: about to get_info\n");
if (get_info () != SANE_STATUS_GOOD)
{
DBG (1, "error: could not get info\n");
close_gphoto2 ();
return SANE_STATUS_INVAL;
}
/* load the current images array */
DBG (3, "sane_init: about to get_pictures_info\n");
get_pictures_info ();
if (Cam_data.pic_taken == 0)
{
Cam_data.current_picture_number = 0;
parms.bytes_per_line = 0;
parms.pixels_per_line = 0;
parms.lines = 0;
}
else
{
Cam_data.current_picture_number = 1;
/* OLD:
set_res (Cam_data.Pictures[Cam_data.current_picture_number - 1].low_res);
*/
set_res (gphoto2_opt_lowres);
}
if (dumpinquiry)
{
SANE_Int x = 0;
DBG (0, "\nCamera information:\n~~~~~~~~~~~~~~~~~\n\n");
DBG (0, "Model : %s\n", abilities.model);
DBG (0, "Pictures : %d\n", Cam_data.pic_taken);
DBG (0, "Serial port support : %s\n",
(abilities.port & GP_PORT_SERIAL) ? "yes" : "no");
DBG (0, "USB support : %s\n",
(abilities.port & GP_PORT_USB) ? "yes" : "no");
if (abilities.speed[0] != 0)
{
DBG (0, "Transfer speeds supported :\n");
do
{
DBG (0, " : %i\n",
abilities.speed[x]);
x++;
}
while (abilities.speed[x] != 0);
}
DBG (0, "Capture choices :\n");
if (abilities.operations & GP_OPERATION_CAPTURE_IMAGE)
DBG (0, " : Image\n");
if (abilities.operations & GP_OPERATION_CAPTURE_VIDEO)
DBG (0, " : Video\n");
if (abilities.operations & GP_OPERATION_CAPTURE_AUDIO)
DBG (0, " : Audio\n");
if (abilities.operations & GP_OPERATION_CAPTURE_PREVIEW)
DBG (0, " : Preview\n");
DBG (0, "Configuration support : %s\n",
abilities.operations & GP_OPERATION_CONFIG ? "yes" : "no");
DBG (0, "Delete files on camera support : %s\n",
abilities.
file_operations & GP_FILE_OPERATION_DELETE ? "yes" : "no");
DBG (0, "File preview (thumbnail) support : %s\n",
abilities.
file_operations & GP_FILE_OPERATION_PREVIEW ? "yes" : "no");
DBG (0, "File upload support : %s\n",
abilities.
folder_operations & GP_FOLDER_OPERATION_PUT_FILE ? "yes" : "no");
}
return SANE_STATUS_GOOD;
}
/*
* sane_exit() - Required by SANE API.
*/
void
sane_exit (void)
{
close_gphoto2 ();
}
/*
* sane_get_devices() - From SANE API
*/
SANE_Status
sane_get_devices (const SANE_Device *** device_list, SANE_Bool
__sane_unused__ local_only)
{
DBG (127, "sane_get_devices called\n");
*device_list = devlist;
return SANE_STATUS_GOOD;
}
/*
* sane_open() - From SANE API
*/
SANE_Status
sane_open (SANE_String_Const devicename, SANE_Handle * handle)
{
SANE_Int i;
DBG (127, "sane_open for device %s\n", devicename);
if (!devicename[0])
{
i = 0;
}
else
{
for (i = 0; i < NELEMS (dev); ++i)
{
if (strcmp (devicename, dev[i].name) == 0)
{
break;
}
}
}
if (i >= NELEMS (dev))
{
return SANE_STATUS_INVAL;
}
if (is_open)
{
return SANE_STATUS_DEVICE_BUSY;
}
is_open = 1;
*handle = MAGIC;
DBG (4, "sane_open: pictures taken=%d\n", Cam_data.pic_taken);
return SANE_STATUS_GOOD;
}
/*
* sane_close() - From SANE API
*/
void
sane_close (SANE_Handle handle)
{
DBG (127, "sane_close called\n");
if (handle == MAGIC)
is_open = 0;
DBG (127, "sane_close returning\n");
}
/*
* sane_get_option_descriptor() - From SANE API
*/
const SANE_Option_Descriptor *
sane_get_option_descriptor (SANE_Handle handle, SANE_Int option)
{
if (handle != MAGIC || !is_open)
return NULL; /* wrong device */
if (option < 0 || option >= NELEMS (sod))
return NULL;
return &sod[option];
}
static SANE_Int myinfo = 0;
/*
* sane_control_option() - From SANE API
*/
SANE_Status
sane_control_option (SANE_Handle handle, SANE_Int option,
SANE_Action action, void *value, SANE_Int * info)
{
SANE_Status status;
if (option < 0 || option >= NELEMS (sod))
return SANE_STATUS_INVAL; /* Unknown option ... */
/* Need to put this DBG line after the range check on option */
DBG (127, "control_option(handle=%p,opt=%s,act=%s,val=%p,info=%p)\n",
handle, sod[option].title,
(action ==
SANE_ACTION_SET_VALUE ? "SET" : (action ==
SANE_ACTION_GET_VALUE ? "GET" :
"SETAUTO")), value, (void *) info);
if (handle != MAGIC || !is_open)
return SANE_STATUS_INVAL; /* Unknown handle ... */
if (option < 0 || option >= NELEMS (sod))
return SANE_STATUS_INVAL; /* Unknown option ... */
switch (action)
{
case SANE_ACTION_SET_VALUE:
/* Can't set disabled options */
if (!SANE_OPTION_IS_ACTIVE (sod[option].cap))
{
return (SANE_STATUS_INVAL);
}
/* initialize info to zero - we'll OR in various values later */
if (info)
*info = 0;
status = sanei_constrain_value (sod + option, value, &myinfo);
if (status != SANE_STATUS_GOOD)
{
DBG (2, "Constraint error in control_option\n");
return status;
}
switch (option)
{
case GPHOTO2_OPT_IMAGE_NUMBER:
if (*(SANE_Word *) value <= Cam_data.pic_taken)
Cam_data.current_picture_number = *(SANE_Word *) value;
else
Cam_data.current_picture_number = Cam_data.pic_taken;
/*
* Setting a new image number could change image size (if
* we supported that - which we hope to do someday!
*/
myinfo |= SANE_INFO_RELOAD_PARAMS;
/* get the image's resolution, unless the camera has no
* pictures yet
*/
if (Cam_data.pic_taken != 0)
{
/* OLD:
set_res (Cam_data.
Pictures[Cam_data.current_picture_number - 1].low_res);
*/
set_res (gphoto2_opt_lowres);
}
break;
case GPHOTO2_OPT_THUMBS:
gphoto2_opt_thumbnails = !!*(SANE_Word *) value;
/* Thumbnail forces an image size change: */
myinfo |= SANE_INFO_RELOAD_PARAMS;
if (Cam_data.pic_taken != 0)
{
/* OLD:
set_res (Cam_data.
Pictures[Cam_data.current_picture_number - 1].low_res);
*/
set_res (gphoto2_opt_lowres);
}
break;
case GPHOTO2_OPT_SNAP:
switch (*(SANE_Bool *) value)
{
case SANE_TRUE:
gphoto2_opt_snap = SANE_TRUE;
break;
case SANE_FALSE:
gphoto2_opt_snap = SANE_FALSE;
break;
default:
return SANE_STATUS_INVAL;
}
/* Snap forces new image size and changes image range */
myinfo |= SANE_INFO_RELOAD_PARAMS | SANE_INFO_RELOAD_OPTIONS;
/* if we are snapping a new one */
if (gphoto2_opt_snap)
{
/* activate the resolution setting */
/* Until we figure out how to do this
sod[GPHOTO2_OPT_LOWRES].cap &= ~SANE_CAP_INACTIVE;
*/
/* and de-activate the image number selector */
sod[GPHOTO2_OPT_IMAGE_NUMBER].cap |= SANE_CAP_INACTIVE;
}
else
{
/* deactivate the resolution setting */
sod[GPHOTO2_OPT_LOWRES].cap |= SANE_CAP_INACTIVE;
/* and activate the image number selector, if there are
* pictures available */
if (Cam_data.current_picture_number)
{
sod[GPHOTO2_OPT_IMAGE_NUMBER].cap &= ~SANE_CAP_INACTIVE;
}
}
/* set params according to resolution settings */
set_res (gphoto2_opt_lowres);
break;
case GPHOTO2_OPT_LOWRES:
gphoto2_opt_lowres = !!*(SANE_Word *) value;
/* Lowres potentially changes image size */
myinfo |= SANE_INFO_RELOAD_PARAMS;
/* FIXME - change the number of pictures left depending on resolution
perhaps just call get_info again?
*/
set_res (gphoto2_opt_lowres);
break;
case GPHOTO2_OPT_ERASE:
gphoto2_opt_erase = !!*(SANE_Word *) value;
break;
case GPHOTO2_OPT_AUTOINC:
gphoto2_opt_autoinc = !!*(SANE_Word *) value;
break;
case GPHOTO2_OPT_FOLDER:
DBG (1, "FIXME set folder not implemented yet\n");
break;
case GPHOTO2_OPT_DEFAULT:
gphoto2_opt_thumbnails = 0;
gphoto2_opt_snap = 0;
/* deactivate the resolution setting */
sod[GPHOTO2_OPT_LOWRES].cap |= SANE_CAP_INACTIVE;
/* and activate the image number selector */
sod[GPHOTO2_OPT_IMAGE_NUMBER].cap &= ~SANE_CAP_INACTIVE;
myinfo |= SANE_INFO_RELOAD_PARAMS | SANE_INFO_RELOAD_OPTIONS;
DBG (1, "FIXME: Set all defaults here!\n");
break;
case GPHOTO2_OPT_INIT_GPHOTO2:
if (init_gphoto2 () != SANE_STATUS_GOOD)
{
return SANE_STATUS_INVAL;
}
if (get_info () != SANE_STATUS_GOOD)
{
DBG (1, "error: could not get info\n");
close_gphoto2 ();
return SANE_STATUS_INVAL;
}
/* load the current images array */
get_pictures_info ();
myinfo |= SANE_INFO_RELOAD_OPTIONS | SANE_INFO_RELOAD_PARAMS;
break;
default:
return SANE_STATUS_INVAL;
}
break;
case SANE_ACTION_GET_VALUE:
/* Can't return status for disabled options */
if (!SANE_OPTION_IS_ACTIVE (sod[option].cap))
{
return (SANE_STATUS_INVAL);
}
switch (option)
{
case 0:
*(SANE_Word *) value = NELEMS (sod);
break;
case GPHOTO2_OPT_IMAGE_NUMBER:
*(SANE_Word *) value = Cam_data.current_picture_number;
break;
case GPHOTO2_OPT_THUMBS:
*(SANE_Word *) value = gphoto2_opt_thumbnails;
break;
case GPHOTO2_OPT_SNAP:
*(SANE_Word *) value = gphoto2_opt_snap;
break;
case GPHOTO2_OPT_LOWRES:
*(SANE_Word *) value = gphoto2_opt_lowres;
break;
case GPHOTO2_OPT_ERASE:
*(SANE_Word *) value = gphoto2_opt_erase;
break;
case GPHOTO2_OPT_AUTOINC:
*(SANE_Word *) value = gphoto2_opt_autoinc;
break;
case GPHOTO2_OPT_FOLDER:
if (folder_list == NULL)
{
return SANE_STATUS_INVAL;
}
strncpy ((char *) value, (const char *) folder_list[current_folder],
256);
break;
default:
return SANE_STATUS_INVAL;
}
break;
case SANE_ACTION_SET_AUTO:
switch (option)
{
default:
return SANE_STATUS_UNSUPPORTED; /* We are DUMB */
}
}
if (info && action == SANE_ACTION_SET_VALUE)
{
*info = myinfo;
myinfo = 0;
}
return SANE_STATUS_GOOD;
}
/*
* sane_get_parameters() - From SANE API
*/
SANE_Status
sane_get_parameters (SANE_Handle handle, SANE_Parameters * params)
{
SANE_Int rc = SANE_STATUS_GOOD;
DBG (127, "sane_get_params called, wid=%d,height=%d\n",
parms.pixels_per_line, parms.lines);
if (handle != MAGIC || !is_open)
rc = SANE_STATUS_INVAL; /* Unknown handle ... */
parms.last_frame = SANE_TRUE; /* Have no idea what this does */
*params = parms;
DBG (127, "sane_get_params return %d\n", rc);
return rc;
}
typedef struct
{
struct jpeg_source_mgr pub;
JOCTET *buffer;
}
my_source_mgr;
typedef my_source_mgr *my_src_ptr;
METHODDEF (void)
jpeg_init_source (j_decompress_ptr __sane_unused__ cinfo)
{
/* nothing to do */
}
METHODDEF (boolean) jpeg_fill_input_buffer (j_decompress_ptr cinfo)
{
int n;
my_src_ptr src = (my_src_ptr) cinfo->src;
if (data_file_current_index + 512 > data_file_total_size)
{
n = data_file_total_size - data_file_current_index;
}
else
{
n = 512;
}
memcpy (src->buffer, data_ptr + data_file_current_index, n);
data_file_current_index += n;
src->pub.next_input_byte = src->buffer;
src->pub.bytes_in_buffer = n;
return TRUE;
}
METHODDEF (void) jpeg_skip_input_data (j_decompress_ptr cinfo, long num_bytes)
{
my_src_ptr src = (my_src_ptr) cinfo->src;
if (num_bytes > 0)
{
while (num_bytes > (long) src->pub.bytes_in_buffer)
{
num_bytes -= (long) src->pub.bytes_in_buffer;
(void) jpeg_fill_input_buffer (cinfo);
}
}
src->pub.next_input_byte += (size_t) num_bytes;
src->pub.bytes_in_buffer -= (size_t) num_bytes;
}
METHODDEF (void)
jpeg_term_source (j_decompress_ptr __sane_unused__ cinfo)
{
/* no work necessary here */
}
/*
* sane_start() - From SANE API
*/
SANE_Status
sane_start (SANE_Handle handle)
{
SANE_String_Const filename, mime_type;
DBG (127, "sane_start called\n");
if (handle != MAGIC || !is_open ||
(Cam_data.current_picture_number == 0
&& gphoto2_opt_snap == SANE_FALSE))
return SANE_STATUS_INVAL; /* Unknown handle ... */
if (Cam_data.scanning)
return SANE_STATUS_EOF;
/*
* This shouldn't normally happen, but we allow it as a special case
* when batch/autoinc are in effect. The first illegal picture number
* terminates the scan
*/
if (Cam_data.current_picture_number > Cam_data.pic_taken)
{
return SANE_STATUS_INVAL;
}
if (gphoto2_opt_snap)
{
/*
* Don't allow picture unless there is room in the
* camera.
*/
if (Cam_data.pic_left == 0)
{
DBG (3, "No room to store new picture\n");
return SANE_STATUS_INVAL;
}
if (snap_pic () == SANE_STATUS_INVAL)
{
DBG (1, "Failed to snap new picture\n");
return SANE_STATUS_INVAL;
}
}
DBG (4, "sane_start: about to get file\n");
CHECK_RET (gp_file_new (&data_file));
if (SubDirs)
{
sprintf (cmdbuf, "%s/%s", (char *) TopFolder,
(const char *) folder_list[current_folder]);
}
else
{
strcpy (cmdbuf, TopFolder);
}
CHECK_RET (gp_list_get_name
(dir_list, Cam_data.current_picture_number - 1, &filename));
CHECK_RET (gp_camera_file_get (camera, cmdbuf, filename,
gphoto2_opt_thumbnails ? GP_FILE_TYPE_PREVIEW
: GP_FILE_TYPE_NORMAL, data_file, NULL));
CHECK_RET (gp_file_get_mime_type (data_file, &mime_type));
if (strcmp (GP_MIME_JPEG, mime_type) != 0)
{
DBG (0,
"FIXME - Only jpeg files currently supported, can't do %s for file %s/%s\n",
mime_type, cmdbuf, filename);
return SANE_STATUS_INVAL;
}
CHECK_RET (gp_file_get_data_and_size
(data_file, (const char **)&data_ptr, &data_file_total_size));
if ( converter_init (handle) != SANE_STATUS_GOOD )
return SANE_STATUS_INVAL;
/* Check if a linebuffer has been allocated. If we had one
* previously, free it up and allocate one for (possibly) new
* size. parms.bytes_per_line is set by converter_init()
*/
if (linebuffer == NULL)
{
linebuffer = malloc (parms.bytes_per_line);
}
else
{
free (linebuffer);
linebuffer = malloc (parms.bytes_per_line);
}
if (linebuffer == NULL)
{
return SANE_STATUS_INVAL;
}
Cam_data.scanning = SANE_TRUE; /* don't overlap scan requests */
return SANE_STATUS_GOOD;
}
/*
* sane_read() - From SANE API
*/
SANE_Status
sane_read (SANE_Handle __sane_unused__ handle, SANE_Byte * data,
SANE_Int max_length, SANE_Int * length)
{
if (Cam_data.scanning == SANE_FALSE)
{
return SANE_STATUS_INVAL;
}
/* If there is anything in the buffer, satisfy the read from there */
if (linebuffer_size && linebuffer_index < linebuffer_size)
{
*length = linebuffer_size - linebuffer_index;
if (*length > max_length)
{
*length = max_length;
}
memcpy (data, linebuffer + linebuffer_index, *length);
linebuffer_index += *length;
return SANE_STATUS_GOOD;
}
if (converter_scan_complete ())
{
SANE_Status retval;
*length = 0;
retval = converter_do_scan_complete_cleanup ();
if (retval != SANE_STATUS_GOOD)
{
return retval;
}
}
*length = converter_fill_buffer ();
linebuffer_size = *length;
linebuffer_index = 0;
if (*length > max_length)
{
*length = max_length;
}
memcpy (data, linebuffer + linebuffer_index, *length);
linebuffer_index += *length;
return SANE_STATUS_GOOD;
}
/*
* sane_cancel() - From SANE API
*/
void
sane_cancel (SANE_Handle __sane_unused__ handle)
{
if (Cam_data.scanning)
{
Cam_data.scanning = SANE_FALSE; /* done with scan */
}
else
DBG (4, "sane_cancel: not scanning - nothing to do\n");
}
/*
* sane_set_io_mode() - From SANE API
*/
SANE_Status
sane_set_io_mode (SANE_Handle __sane_unused__ handle, SANE_Bool
__sane_unused__ non_blocking)
{
/* sane_set_io_mode() is only valid during a scan */
if (Cam_data.scanning)
{
if (non_blocking == SANE_FALSE)
{
return SANE_STATUS_GOOD;
}
else
{
return SANE_STATUS_UNSUPPORTED;
}
}
else
{
/* We aren't currently scanning */
return SANE_STATUS_INVAL;
}
}
/*
* sane_get_select_fd() - From SANE API
*/
SANE_Status
sane_get_select_fd (SANE_Handle __sane_unused__ handle, SANE_Int __sane_unused__ * fd)
{
return SANE_STATUS_UNSUPPORTED;
}
/*
* get_pictures_info - load information about all pictures currently in
* camera: Mainly the mapping of picture number
* to picture name. We'ld like to get other
* information such as image size, but the API
* doesn't provide any support for that.
*/
static PictureInfo *
get_pictures_info (void)
{
SANE_Char f[] = "get_pictures_info";
SANE_Char path[256];
SANE_Int num_pictures;
SANE_Int p;
PictureInfo *pics;
if (Cam_data.Pictures)
{
free (Cam_data.Pictures);
Cam_data.Pictures = NULL;
}
strcpy (path, TopFolder);
if (SubDirs)
{
if (folder_list[current_folder] != NULL)
{
strcat (path, "/");
strcat (path, (const char *) folder_list[current_folder]);
}
}
num_pictures = read_dir (path, 1);
Cam_data.pic_taken = num_pictures;
if (num_pictures > 0)
{
sod[GPHOTO2_OPT_IMAGE_NUMBER].cap &= ~SANE_CAP_INACTIVE;
image_range.min = 1;
image_range.max = num_pictures;
}
if ((pics = (PictureInfo *) malloc (Cam_data.pic_taken *
sizeof (PictureInfo))) == NULL)
{
DBG (1, "%s: error: allocate memory for pictures array\n", f);
return NULL;
}
for (p = 0; p < Cam_data.pic_taken; p++)
{
if (get_picture_info (pics + p, p) == -1)
{
free (pics);
return NULL;
}
}
Cam_data.Pictures = pics;
return pics;
}
/*
* get_picture_info() - get info about picture p. Currently we have no
* way to get information about a picture beyond it's name.
*/
static SANE_Int
get_picture_info (PictureInfo * pic, SANE_Int p)
{
SANE_Char f[] = "get_picture_info";
const char *name;
DBG (4, "%s: info for pic #%d\n", f, p);
gp_list_get_name (dir_list, p, &name);
DBG (4, "Name is %s\n", name);
read_info (name);
pic->low_res = SANE_FALSE;
return 0;
}
/*
* snap_pic - take a picture (and call get_pictures_info to re-create
* the directory related data structures)
*/
static SANE_Status
snap_pic (void)
{
SANE_Char f[] = "snap_pic";
CameraFilePath path;
/* make sure camera is set to our settings state */
if (change_res (gphoto2_opt_lowres) == -1)
{
DBG (1, "%s: Failed to set resolution\n", f);
return SANE_STATUS_INVAL;
}
/*
* This is needed when the camera has no files and the first picture
* is taken. I guess it's because a folder needs to be created and
* the filesystem doesn't know about it.
*/
if (Cam_data.pic_taken == 0)
{
gp_filesystem_reset (camera->fs);
}
CHECK_RET (gp_camera_capture (camera, GP_CAPTURE_IMAGE, &path, NULL));
/* Can't just increment picture count, because if the camera has
* zero pictures we may not know the folder name. Start over
* with get_info and get_pictures_info. (We didn't have the call
* to init_gphoto2() here before, but that was causing us to not
* see the new image - need to use a biggger hammer to get it to
* re-read the camera directory
*/
if (init_gphoto2 () != SANE_STATUS_GOOD)
{
return SANE_STATUS_INVAL;
}
if (get_info () != SANE_STATUS_GOOD)
{
DBG (1, "error: could not get info\n");
close_gphoto2 ();
return SANE_STATUS_INVAL;
}
if (get_pictures_info () == NULL)
{
DBG (1, "%s: Failed to get new picture info\n", f);
/* FIXME - I guess we should try to erase the image here */
return SANE_STATUS_INVAL;
}
sod[GPHOTO2_OPT_IMAGE_NUMBER].cap |= SANE_CAP_INACTIVE;
Cam_data.current_picture_number = Cam_data.pic_taken;
myinfo |= SANE_INFO_RELOAD_PARAMS | SANE_INFO_RELOAD_OPTIONS;
return SANE_STATUS_GOOD;
}
/*
* read_dir - read a list of file names from the specified directory
* and create a linked list of file name entries in
* alphabetical order. The first entry in the list will
* be "picture #1", etc.
*/
static SANE_Int
read_dir (SANE_String dir, SANE_Bool read_files)
{
SANE_Int retval = 0;
SANE_Char f[] = "read_dir";
/* Free up current list */
if (dir_list != NULL)
{
if (gp_list_free (dir_list) < 0)
{
DBG (0, "%s: error: gp_list_free failed\n", f);
}
dir_list = NULL;
}
if (gp_list_new (&dir_list) < 0)
{
DBG (0, "%s: error: gp_list_new failed\n", f);
}
if (read_files)
{
CHECK_RET (gp_camera_folder_list_files (camera, dir, dir_list, NULL));
}
else
{
CHECK_RET (gp_camera_folder_list_folders (camera, dir, dir_list, NULL));
}
retval = gp_list_count (dir_list);
return retval;
}
/*
* read_info - read the info block from camera for the specified file
* NOT YET SUPPORTED - If it were we could use it to do things
* like update the image size parameters displayed by the GUI
*/
static SANE_Int
read_info (SANE_String_Const fname)
{
SANE_Char path[256];
strcpy (path, "\\DCIM\\");
strcat (path, (const char *) folder_list[current_folder]);
strcat (path, "\\");
strcat (path, fname);
return 0;
}
/*
* set_res - set picture size depending on resolution settings
*/
static void
set_res (SANE_Int __sane_unused__ lowres)
{
if (gphoto2_opt_thumbnails)
{
parms.bytes_per_line = THUMB_WIDTH * 3;
parms.pixels_per_line = THUMB_WIDTH;
parms.lines = THUMB_HEIGHT;
}
else
{
parms.bytes_per_line = HIGHRES_WIDTH * 3;
parms.pixels_per_line = HIGHRES_WIDTH;
parms.lines = HIGHRES_HEIGHT;
}
}
/*
* converter_do_scan_complete_cleanup - do everything that needs to be
* once a "scan" has been completed: Unref the file, Erase the image,
* and increment image number to point to next picture.
*/
static SANE_Status
converter_do_scan_complete_cleanup (void)
{
CameraList *tmp_list;
SANE_Int i;
SANE_String_Const filename;
gp_file_unref (data_file);
if (gphoto2_opt_erase)
{
DBG (127, "sane_read bp%d, erase image\n", __LINE__);
if (erase () == -1)
{
DBG (1, "Failed to erase memory\n");
return SANE_STATUS_INVAL;
}
if (SubDirs)
{
sprintf (cmdbuf, "%s/%s", (char *) TopFolder,
(const char *) folder_list[current_folder]);
}
else
{
strcpy (cmdbuf, TopFolder);
}
CHECK_RET (gp_list_get_name
(dir_list, Cam_data.current_picture_number - 1, &filename));
Cam_data.pic_taken--;
Cam_data.pic_left++;
if (Cam_data.current_picture_number > Cam_data.pic_taken)
{
Cam_data.current_picture_number = Cam_data.pic_taken;
}
image_range.max--;
if (image_range.max == 0)
{
sod[GPHOTO2_OPT_IMAGE_NUMBER].cap |= SANE_CAP_INACTIVE;
}
myinfo |= SANE_INFO_RELOAD_OPTIONS | SANE_INFO_RELOAD_PARAMS;
/* Too bad we don't have an API function for deleting a
* list item. Instead, we copy all the entries in the
* current list, skipping over the deleted entry, and then
* replace the current list with the new list.
*/
gp_list_new (&tmp_list);
for (i = 0; i < gp_list_count (dir_list); i++)
{
SANE_String_Const tfilename;
CHECK_RET (gp_list_get_name (dir_list, i, &tfilename));
/* If not the one to delete, copy to the new list */
if (strcmp (tfilename, filename) != 0)
{
CHECK_RET (gp_list_append (tmp_list, tfilename, NULL));
}
}
gp_list_free (dir_list);
dir_list = tmp_list;
}
if (gphoto2_opt_autoinc)
{
if (Cam_data.current_picture_number <= Cam_data.pic_taken)
{
Cam_data.current_picture_number++;
myinfo |= SANE_INFO_RELOAD_PARAMS | SANE_INFO_RELOAD_OPTIONS;
/* get the image's resolution */
/* OLD:
set_res (Cam_data.Pictures[Cam_data.current_picture_number - 1].
low_res);
*/
set_res (gphoto2_opt_lowres);
}
DBG (4, "Increment count to %d (total %d)\n",
Cam_data.current_picture_number, Cam_data.pic_taken);
}
return SANE_STATUS_EOF;
}
/*
* converter_fill_buffer - Fill line buffer with next input line from image.
* Currently assumes jpeg, but this is where we would put the switch
* to handle other image types.
*/
static SANE_Int
converter_fill_buffer (void)
{
/*
* FIXME: Current implementation reads one scan line at a time. Part
* of the reason for this is in the original code is to give the frontend
* a chance to update * the progress marker periodically. Since the gphoto2
* driver sucks in the whole image before decoding it, perhaps we could
* come up with a simpler implementation.
*/
SANE_Int lines = 1;
(void) jpeg_read_scanlines (&cinfo, dest_mgr->buffer, lines);
(*dest_mgr->put_pixel_rows) (&cinfo, dest_mgr, lines, (char *) linebuffer);
return cinfo.output_width * cinfo.output_components * lines;
}
/*
* converter_scan_complete - Check if all the data for the image has been read.
* Currently assumes jpeg, but this is where we would put the
* switch to handle other image types.
*/
static SANE_Bool
converter_scan_complete (void)
{
if (cinfo.output_scanline >= cinfo.output_height)
{
return SANE_TRUE;
}
else
{
return SANE_FALSE;
}
}
/*
* converter_init - Initialize image conversion data.
* Currently assumes jpeg, but this is where we would put the
* switch to handle other image types.
*/
static SANE_Status
converter_init (SANE_Handle handle)
{
struct jpeg_error_mgr jerr;
my_src_ptr src;
data_file_current_index = 0;
/* Basic check to see if this is really a jpeg file */
if ( data_ptr[0] != 0xff || data_ptr[1] != 0xd8 ) {
sane_cancel(handle);
exit(1);
return SANE_STATUS_INVAL;
}
cinfo.err = jpeg_std_error (&jerr);
jpeg_create_decompress (&cinfo);
cinfo.src =
(struct jpeg_source_mgr *) (*cinfo.mem->
alloc_small) ((j_common_ptr) & cinfo,
JPOOL_PERMANENT,
sizeof (my_source_mgr));
src = (my_src_ptr) cinfo.src;
src->buffer = (JOCTET *) (*cinfo.mem->alloc_small) ((j_common_ptr) &
cinfo,
JPOOL_PERMANENT,
1024 * sizeof (JOCTET));
src->pub.init_source = jpeg_init_source;
src->pub.fill_input_buffer = jpeg_fill_input_buffer;
src->pub.skip_input_data = jpeg_skip_input_data;
src->pub.resync_to_restart = jpeg_resync_to_restart; /* default */
src->pub.term_source = jpeg_term_source;
src->pub.bytes_in_buffer = 0;
src->pub.next_input_byte = NULL;
(void) jpeg_read_header (&cinfo, TRUE);
dest_mgr = sanei_jpeg_jinit_write_ppm (&cinfo);
(void) jpeg_start_decompress (&cinfo);
parms.bytes_per_line = cinfo.output_width * 3; /* 3 colors */
parms.pixels_per_line = cinfo.output_width;
parms.lines = cinfo.output_height;
linebuffer_size = 0;
linebuffer_index = 0;
return(SANE_STATUS_GOOD);
}
|