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
|
/*
Copyright (C) 2008, Panasonic Russia Ltd.
Copyright (C) 2010, m. allan noah
*/
/*
Panasonic KV-S20xx USB-SCSI scanners.
*/
#include "../include/sane/config.h"
#include <string.h>
#define DEBUG_DECLARE_ONLY
#define BACKEND_NAME kvs20xx
#include "../include/sane/sane.h"
#include "../include/sane/saneopts.h"
#include "../include/sane/sanei.h"
#include "../include/sane/sanei_backend.h"
#include "../include/sane/sanei_config.h"
#include "../include/lassert.h"
#include "kvs20xx.h"
#include "kvs20xx_cmd.h"
#include <stdlib.h>
static size_t
max_string_size (SANE_String_Const strings[])
{
size_t size, max_size = 0;
SANE_Int i;
for (i = 0; strings[i]; ++i)
{
size = strlen (strings[i]) + 1;
if (size > max_size)
max_size = size;
}
return max_size;
}
static SANE_String_Const mode_list[] = {
SANE_VALUE_SCAN_MODE_LINEART,
SANE_VALUE_SCAN_MODE_GRAY,
SANE_VALUE_SCAN_MODE_COLOR,
NULL
};
static const unsigned mode_val[] = { 0, 2, 5 };
static const unsigned bps_val[] = { 1, 8, 24 };
static const SANE_Range resolutions_range = {100,600,10};
/* List of feeder modes */
static SANE_String_Const feeder_mode_list[] = {
SANE_I18N ("single"),
SANE_I18N ("continuous"),
NULL
};
/* List of manual feed mode */
static SANE_String_Const manual_feed_list[] = {
SANE_I18N ("off"),
SANE_I18N ("wait_doc"),
SANE_I18N ("wait_key"),
NULL
};
/* List of paper sizes */
static SANE_String_Const paper_list[] = {
SANE_I18N ("user_def"),
SANE_I18N ("business_card"),
/*SANE_I18N("Check"), */
/*SANE_I18N ("A3"), */
SANE_I18N ("A4"),
SANE_I18N ("A5"),
SANE_I18N ("A6"),
SANE_I18N ("Letter"),
/*SANE_I18N ("Double letter 11x17 in"),
SANE_I18N ("B4"), */
SANE_I18N ("B5"),
SANE_I18N ("B6"),
SANE_I18N ("Legal"),
NULL
};
static const unsigned paper_val[] = { 0, 1, 4, 5, 6, 7, 13, 14, 15 };
struct paper_size
{
int width;
int height;
};
static const struct paper_size paper_sizes[] = {
{210, 297}, /* User defined, default=A4 */
{54, 90}, /* Business card */
/*{80, 170}, *//* Check (China business) */
/*{297, 420}, *//* A3 */
{210, 297}, /* A4 */
{148, 210}, /* A5 */
{105, 148}, /* A6 */
{215, 280}, /* US Letter 8.5 x 11 in */
/*{280, 432}, *//* Double Letter 11 x 17 in */
/*{250, 353}, *//* B4 */
{176, 250}, /* B5 */
{125, 176}, /* B6 */
{215, 355} /* US Legal */
};
#define MIN_WIDTH 51
#define MAX_WIDTH 215
#define MIN_LENGTH 70
#define MAX_LENGTH 355
static SANE_Range tl_x_range = { 0, MAX_WIDTH - MIN_WIDTH, 0 };
static SANE_Range tl_y_range = { 0, MAX_LENGTH - MIN_LENGTH, 0 };
static SANE_Range br_x_range = { MIN_WIDTH, MAX_WIDTH, 0 };
static SANE_Range br_y_range = { MIN_LENGTH, MAX_LENGTH, 0 };
static SANE_Range byte_value_range = { 0, 255, 0 };
/* List of image emphasis options, 5 steps */
static SANE_String_Const image_emphasis_list[] = {
SANE_I18N ("none"),
SANE_I18N ("low"),
SANE_I18N ("medium"),
SANE_I18N ("high"),
SANE_I18N ("smooth"),
NULL
};
/* List of gamma */
static SANE_String_Const gamma_list[] = {
SANE_I18N ("normal"),
SANE_I18N ("crt"),
NULL
};
static unsigned gamma_val[] = { 0, 1 };
/* List of lamp color dropout */
static SANE_String_Const lamp_list[] = {
SANE_I18N ("normal"),
SANE_I18N ("red"),
SANE_I18N ("green"),
SANE_I18N ("blue"),
NULL
};
/* Reset the options for that scanner. */
void
kvs20xx_init_options (struct scanner *s)
{
int i;
SANE_Option_Descriptor *o;
/* Pre-initialize the options. */
memset (s->opt, 0, sizeof (s->opt));
memset (s->val, 0, sizeof (s->val));
for (i = 0; i < NUM_OPTIONS; i++)
{
s->opt[i].size = sizeof (SANE_Word);
s->opt[i].cap = SANE_CAP_SOFT_SELECT | SANE_CAP_SOFT_DETECT;
}
/* Number of options. */
o = &s->opt[NUM_OPTS];
o->name = "";
o->title = SANE_TITLE_NUM_OPTIONS;
o->desc = SANE_DESC_NUM_OPTIONS;
o->type = SANE_TYPE_INT;
o->cap = SANE_CAP_SOFT_DETECT;
s->val[NUM_OPTS].w = NUM_OPTIONS;
/* Mode group */
o = &s->opt[MODE_GROUP];
o->title = SANE_I18N ("Scan Mode");
o->desc = ""; /* not valid for a group */
o->type = SANE_TYPE_GROUP;
o->cap = 0;
o->size = 0;
o->constraint_type = SANE_CONSTRAINT_NONE;
/* Scanner supported modes */
o = &s->opt[MODE];
o->name = SANE_NAME_SCAN_MODE;
o->title = SANE_TITLE_SCAN_MODE;
o->desc = SANE_DESC_SCAN_MODE;
o->type = SANE_TYPE_STRING;
o->size = max_string_size (mode_list);
o->constraint_type = SANE_CONSTRAINT_STRING_LIST;
o->constraint.string_list = mode_list;
s->val[MODE].s = malloc (o->size);
strcpy (s->val[MODE].s, mode_list[0]);
/* X and Y resolution */
o = &s->opt[RESOLUTION];
o->name = SANE_NAME_SCAN_RESOLUTION;
o->title = SANE_TITLE_SCAN_RESOLUTION;
o->desc = SANE_DESC_SCAN_RESOLUTION;
o->type = SANE_TYPE_INT;
o->unit = SANE_UNIT_DPI;
o->constraint_type = SANE_CONSTRAINT_RANGE;
o->constraint.range = &resolutions_range;
s->val[RESOLUTION].w = 100;
/* Duplex */
o = &s->opt[DUPLEX];
o->name = "duplex";
o->title = SANE_I18N ("Duplex");
o->desc = SANE_I18N ("Enable Duplex (Dual-Sided) Scanning");
o->type = SANE_TYPE_BOOL;
o->unit = SANE_UNIT_NONE;
s->val[DUPLEX].w = SANE_FALSE;
/*FIXME
if (!s->support_info.support_duplex)
o->cap |= SANE_CAP_INACTIVE;
*/
/* Feeder mode */
o = &s->opt[FEEDER_MODE];
o->name = "feeder-mode";
o->title = SANE_I18N ("Feeder mode");
o->desc = SANE_I18N ("Sets the feeding mode");
o->type = SANE_TYPE_STRING;
o->size = max_string_size (feeder_mode_list);
o->constraint_type = SANE_CONSTRAINT_STRING_LIST;
o->constraint.string_list = feeder_mode_list;
s->val[FEEDER_MODE].s = malloc (o->size);
strcpy (s->val[FEEDER_MODE].s, feeder_mode_list[0]);
/* Length control */
o = &s->opt[LENGTHCTL];
o->name = "length-control";
o->title = SANE_I18N ("Length control mode");
o->desc =
SANE_I18N
("Length Control Mode is a mode that the scanner reads up to the shorter length of actual"
" paper or logical document length.");
o->type = SANE_TYPE_BOOL;
o->unit = SANE_UNIT_NONE;
s->val[LENGTHCTL].w = SANE_FALSE;
/* Manual feed */
o = &s->opt[MANUALFEED];
o->name = "manual-feed";
o->title = SANE_I18N ("Manual feed mode");
o->desc = SANE_I18N ("Sets the manual feed mode");
o->type = SANE_TYPE_STRING;
o->size = max_string_size (manual_feed_list);
o->constraint_type = SANE_CONSTRAINT_STRING_LIST;
o->constraint.string_list = manual_feed_list;
s->val[MANUALFEED].s = malloc (o->size);
strcpy (s->val[MANUALFEED].s, manual_feed_list[0]);
/*Manual feed timeout */
o = &s->opt[FEED_TIMEOUT];
o->name = "feed-timeout";
o->title = SANE_I18N ("Manual feed timeout");
o->desc = SANE_I18N ("Sets the manual feed timeout in seconds");
o->type = SANE_TYPE_INT;
o->unit = SANE_UNIT_NONE;
o->size = sizeof (SANE_Int);
o->constraint_type = SANE_CONSTRAINT_RANGE;
o->constraint.range = &(byte_value_range);
o->cap |= SANE_CAP_INACTIVE;
s->val[FEED_TIMEOUT].w = 30;
/* Double feed */
o = &s->opt[DBLFEED];
o->name = "double-feed";
o->title = SANE_I18N ("Double feed detection");
o->desc = SANE_I18N ("Enable/Disable double feed detection");
o->type = SANE_TYPE_BOOL;
o->unit = SANE_UNIT_NONE;
s->val[DBLFEED].w = SANE_FALSE;
/* Fit to page */
o = &s->opt[FIT_TO_PAGE];
o->name = SANE_I18N ("fit-to-page");
o->title = SANE_I18N ("Fit to page");
o->desc = SANE_I18N ("Scanner shrinks image to fit scanned page");
o->type = SANE_TYPE_BOOL;
o->unit = SANE_UNIT_NONE;
s->val[FIT_TO_PAGE].w = SANE_FALSE;
/* Geometry group */
o = &s->opt[GEOMETRY_GROUP];
o->title = SANE_I18N ("Geometry");
o->desc = ""; /* not valid for a group */
o->type = SANE_TYPE_GROUP;
o->cap = 0;
o->size = 0;
o->constraint_type = SANE_CONSTRAINT_NONE;
/* Paper sizes list */
o = &s->opt[PAPER_SIZE];
o->name = "paper-size";
o->title = SANE_I18N ("Paper size");
o->desc = SANE_I18N ("Physical size of the paper in the ADF");
o->type = SANE_TYPE_STRING;
o->size = max_string_size (paper_list);
o->constraint_type = SANE_CONSTRAINT_STRING_LIST;
o->constraint.string_list = paper_list;
s->val[PAPER_SIZE].s = malloc (o->size);
strcpy (s->val[PAPER_SIZE].s, SANE_I18N ("A4"));
/* Landscape */
o = &s->opt[LANDSCAPE];
o->name = "landscape";
o->title = SANE_I18N ("Landscape");
o->desc =
SANE_I18N ("Set paper position : "
"true for landscape, false for portrait");
o->type = SANE_TYPE_BOOL;
o->unit = SANE_UNIT_NONE;
s->val[LANDSCAPE].w = SANE_FALSE;
o->cap |= SANE_CAP_INACTIVE;
/* Upper left X */
o = &s->opt[TL_X];
o->name = SANE_NAME_SCAN_TL_X;
o->title = SANE_TITLE_SCAN_TL_X;
o->desc = SANE_DESC_SCAN_TL_X;
o->type = SANE_TYPE_INT;
o->unit = SANE_UNIT_MM;
o->constraint_type = SANE_CONSTRAINT_RANGE;
o->constraint.range = &tl_x_range;
o->cap |= SANE_CAP_INACTIVE;
s->val[TL_X].w = 0;
/* Upper left Y */
o = &s->opt[TL_Y];
o->name = SANE_NAME_SCAN_TL_Y;
o->title = SANE_TITLE_SCAN_TL_Y;
o->desc = SANE_DESC_SCAN_TL_Y;
o->type = SANE_TYPE_INT;
o->unit = SANE_UNIT_MM;
o->constraint_type = SANE_CONSTRAINT_RANGE;
o->constraint.range = &tl_y_range;
o->cap |= SANE_CAP_INACTIVE;
s->val[TL_Y].w = 0;
/* Bottom-right x */
o = &s->opt[BR_X];
o->name = SANE_NAME_SCAN_BR_X;
o->title = SANE_TITLE_SCAN_BR_X;
o->desc = SANE_DESC_SCAN_BR_X;
o->type = SANE_TYPE_INT;
o->unit = SANE_UNIT_MM;
o->constraint_type = SANE_CONSTRAINT_RANGE;
o->constraint.range = &br_x_range;
o->cap |= SANE_CAP_INACTIVE;
s->val[BR_X].w = 210;
/* Bottom-right y */
o = &s->opt[BR_Y];
o->name = SANE_NAME_SCAN_BR_Y;
o->title = SANE_TITLE_SCAN_BR_Y;
o->desc = SANE_DESC_SCAN_BR_Y;
o->type = SANE_TYPE_INT;
o->unit = SANE_UNIT_MM;
o->constraint_type = SANE_CONSTRAINT_RANGE;
o->constraint.range = &br_y_range;
o->cap |= SANE_CAP_INACTIVE;
s->val[BR_Y].w = 297;
/* Enhancement group */
o = &s->opt[ADVANCED_GROUP];
o->title = SANE_I18N ("Advanced");
o->desc = ""; /* not valid for a group */
o->type = SANE_TYPE_GROUP;
o->cap = SANE_CAP_ADVANCED;
o->size = 0;
o->constraint_type = SANE_CONSTRAINT_NONE;
/* Brightness */
o = &s->opt[BRIGHTNESS];
o->name = SANE_NAME_BRIGHTNESS;
o->title = SANE_TITLE_BRIGHTNESS;
o->desc = SANE_DESC_BRIGHTNESS;
o->type = SANE_TYPE_INT;
o->unit = SANE_UNIT_NONE;
o->size = sizeof (SANE_Int);
o->constraint_type = SANE_CONSTRAINT_RANGE;
o->constraint.range = &(byte_value_range);
s->val[BRIGHTNESS].w = 128;
/* Contrast */
o = &s->opt[CONTRAST];
o->name = SANE_NAME_CONTRAST;
o->title = SANE_TITLE_CONTRAST;
o->desc = SANE_DESC_CONTRAST;
o->type = SANE_TYPE_INT;
o->unit = SANE_UNIT_NONE;
o->size = sizeof (SANE_Int);
o->constraint_type = SANE_CONSTRAINT_RANGE;
o->constraint.range = &(byte_value_range);
s->val[CONTRAST].w = 128;
/* threshold */
o = &s->opt[THRESHOLD];
o->name = SANE_NAME_THRESHOLD;
o->title = SANE_TITLE_THRESHOLD;
o->desc = SANE_DESC_THRESHOLD;
o->type = SANE_TYPE_INT;
o->size = sizeof (SANE_Int);
o->constraint_type = SANE_CONSTRAINT_RANGE;
o->constraint.range = &(byte_value_range);
s->val[THRESHOLD].w = 128;
/* Image emphasis */
o = &s->opt[IMAGE_EMPHASIS];
o->name = "image-emphasis";
o->title = SANE_I18N ("Image emphasis");
o->desc = SANE_I18N ("Sets the image emphasis");
o->type = SANE_TYPE_STRING;
o->size = max_string_size (image_emphasis_list);
o->constraint_type = SANE_CONSTRAINT_STRING_LIST;
o->constraint.string_list = image_emphasis_list;
s->val[IMAGE_EMPHASIS].s = malloc (o->size);
strcpy (s->val[IMAGE_EMPHASIS].s, image_emphasis_list[0]);
/* Gamma */
o = &s->opt[GAMMA_CORRECTION];
o->name = "gamma-cor";
o->title = SANE_I18N ("Gamma correction");
o->desc = SANE_I18N ("Gamma correction");
o->type = SANE_TYPE_STRING;
o->size = max_string_size (gamma_list);
o->constraint_type = SANE_CONSTRAINT_STRING_LIST;
o->constraint.string_list = gamma_list;
s->val[GAMMA_CORRECTION].s = malloc (o->size);
strcpy (s->val[GAMMA_CORRECTION].s, gamma_list[0]);
/* Lamp color dropout */
o = &s->opt[LAMP];
o->name = "lamp-color";
o->title = SANE_I18N ("Lamp color");
o->desc = SANE_I18N ("Sets the lamp color (color dropout)");
o->type = SANE_TYPE_STRING;
o->size = max_string_size (lamp_list);
o->constraint_type = SANE_CONSTRAINT_STRING_LIST;
o->constraint.string_list = lamp_list;
s->val[LAMP].s = malloc (o->size);
strcpy (s->val[LAMP].s, lamp_list[0]);
}
/* Lookup a string list from one array and return its index. */
static int
str_index (const SANE_String_Const * list, SANE_String_Const name)
{
int index;
index = 0;
while (list[index])
{
if (!strcmp (list[index], name))
return (index);
index++;
}
return (-1); /* not found */
}
/* Control option */
SANE_Status
sane_control_option (SANE_Handle handle, SANE_Int option,
SANE_Action action, void *val, SANE_Int * info)
{
int i;
SANE_Status status;
SANE_Word cap;
struct scanner *s = (struct scanner *) handle;
if (info)
*info = 0;
if (option < 0 || option >= NUM_OPTIONS)
return SANE_STATUS_UNSUPPORTED;
cap = s->opt[option].cap;
if (!SANE_OPTION_IS_ACTIVE (cap))
return SANE_STATUS_UNSUPPORTED;
if (action == SANE_ACTION_GET_VALUE)
{
if (s->opt[option].type == SANE_TYPE_STRING)
{
DBG (DBG_INFO, "sane_control_option: reading opt[%d] = %s\n",
option, s->val[option].s);
strcpy (val, s->val[option].s);
}
else
{
*(SANE_Word *) val = s->val[option].w;
DBG (DBG_INFO, "sane_control_option: reading opt[%d] = %d\n",
option, s->val[option].w);
}
return SANE_STATUS_GOOD;
}
else if (action == SANE_ACTION_SET_VALUE)
{
if (!SANE_OPTION_IS_SETTABLE (cap))
return SANE_STATUS_INVAL;
status = sanei_constrain_value (s->opt + option, val, info);
if (status != SANE_STATUS_GOOD)
return status;
if (s->opt[option].type == SANE_TYPE_STRING)
{
if (!strcmp (val, s->val[option].s))
return SANE_STATUS_GOOD;
DBG (DBG_INFO, "sane_control_option: writing opt[%d] = %s\n",
option, (SANE_String_Const) val);
}
else
{
if (*(SANE_Word *) val == s->val[option].w)
return SANE_STATUS_GOOD;
DBG (DBG_INFO, "sane_control_option: writing opt[%d] = %d\n",
option, *(SANE_Word *) val);
}
switch (option)
{
/* Side-effect options */
case RESOLUTION:
s->val[option].w = *(SANE_Word *) val;
if (info)
*info |= SANE_INFO_RELOAD_PARAMS;
return SANE_STATUS_GOOD;
case TL_Y:
if ((*(SANE_Word *) val) + MIN_LENGTH <= s->val[BR_Y].w)
{
s->val[option].w = *(SANE_Word *) val;
if (info)
*info |= SANE_INFO_RELOAD_PARAMS;
}
else if (info)
*info |= SANE_INFO_INEXACT;
return SANE_STATUS_GOOD;
case BR_Y:
if ((*(SANE_Word *) val) >= s->val[TL_Y].w + MIN_LENGTH)
{
s->val[option].w = *(SANE_Word *) val;
if (info)
*info |= SANE_INFO_RELOAD_PARAMS;
}
else if (info)
*info |= SANE_INFO_INEXACT;
return SANE_STATUS_GOOD;
case TL_X:
if ((*(SANE_Word *) val) + MIN_WIDTH <= s->val[BR_X].w)
{
s->val[option].w = *(SANE_Word *) val;
if (info)
*info |= SANE_INFO_RELOAD_PARAMS;
}
else if (info)
*info |= SANE_INFO_INEXACT;
return SANE_STATUS_GOOD;
case BR_X:
if (*(SANE_Word *) val >= s->val[TL_X].w + MIN_WIDTH)
{
s->val[option].w = *(SANE_Word *) val;
if (info)
*info |= SANE_INFO_RELOAD_PARAMS;
}
else if (info)
*info |= SANE_INFO_INEXACT;
return SANE_STATUS_GOOD;
case LANDSCAPE:
s->val[option].w = *(SANE_Word *) val;
if (info)
*info |= SANE_INFO_RELOAD_PARAMS;
return SANE_STATUS_GOOD;
/* Side-effect free options */
case CONTRAST:
case BRIGHTNESS:
case DUPLEX:
case LENGTHCTL:
case DBLFEED:
case FIT_TO_PAGE:
case THRESHOLD:
s->val[option].w = *(SANE_Word *) val;
return SANE_STATUS_GOOD;
case FEED_TIMEOUT:
s->val[option].w = *(SANE_Word *) val;
return kvs20xx_set_timeout (s, s->val[option].w);
/* String mode */
case IMAGE_EMPHASIS:
case GAMMA_CORRECTION:
case LAMP:
case FEEDER_MODE:
strcpy (s->val[option].s, val);
return SANE_STATUS_GOOD;
case MODE:
strcpy (s->val[MODE].s, val);
if (!strcmp (s->val[MODE].s, SANE_VALUE_SCAN_MODE_LINEART))
{
s->opt[THRESHOLD].cap &= ~SANE_CAP_INACTIVE;
s->opt[GAMMA_CORRECTION].cap |= SANE_CAP_INACTIVE;
s->opt[BRIGHTNESS].cap |= SANE_CAP_INACTIVE;
}
else
{
s->opt[THRESHOLD].cap |= SANE_CAP_INACTIVE;
s->opt[GAMMA_CORRECTION].cap &= ~SANE_CAP_INACTIVE;
s->opt[BRIGHTNESS].cap &= ~SANE_CAP_INACTIVE;
}
if (info)
*info |= SANE_INFO_RELOAD_OPTIONS | SANE_INFO_RELOAD_PARAMS;
return SANE_STATUS_GOOD;
case MANUALFEED:
strcpy (s->val[option].s, val);
if (strcmp (s->val[option].s, manual_feed_list[0]) == 0) /* off */
s->opt[FEED_TIMEOUT].cap |= SANE_CAP_INACTIVE;
else
s->opt[FEED_TIMEOUT].cap &= ~SANE_CAP_INACTIVE;
if (info)
*info |= SANE_INFO_RELOAD_OPTIONS;
return SANE_STATUS_GOOD;
case PAPER_SIZE:
strcpy (s->val[PAPER_SIZE].s, val);
i = str_index (paper_list, s->val[PAPER_SIZE].s);
if (i == 0)
{ /*user def */
s->opt[TL_X].cap &=
s->opt[TL_Y].cap &=
s->opt[BR_X].cap &= s->opt[BR_Y].cap &= ~SANE_CAP_INACTIVE;
s->opt[LANDSCAPE].cap |= SANE_CAP_INACTIVE;
s->val[LANDSCAPE].w = 0;
}
else
{
s->opt[TL_X].cap |=
s->opt[TL_Y].cap |=
s->opt[BR_X].cap |= s->opt[BR_Y].cap |= SANE_CAP_INACTIVE;
if (i == 3 || i == 4 || i == 7)
{ /*A5, A6 or B6 */
s->opt[LANDSCAPE].cap &= ~SANE_CAP_INACTIVE;
}
else
{
s->opt[LANDSCAPE].cap |= SANE_CAP_INACTIVE;
s->val[LANDSCAPE].w = 0;
}
}
if (info)
*info |= SANE_INFO_RELOAD_OPTIONS | SANE_INFO_RELOAD_PARAMS;
return SANE_STATUS_GOOD;
}
}
return SANE_STATUS_UNSUPPORTED;
}
static inline unsigned
mm2scanner_units (unsigned mm)
{
return mm * 12000 / 254;
}
static inline unsigned
scanner_units2mm (unsigned u)
{
return u * 254 / 12000;
}
void
kvs20xx_init_window (struct scanner *s, struct window *wnd, int wnd_id)
{
int paper = str_index (paper_list, s->val[PAPER_SIZE].s);
memset (wnd, 0, sizeof (struct window));
wnd->window_descriptor_block_length = cpu2be16 (64);
wnd->window_identifier = wnd_id;
wnd->x_resolution = cpu2be16 (s->val[RESOLUTION].w);
wnd->y_resolution = cpu2be16 (s->val[RESOLUTION].w);
if (!paper)
{
wnd->upper_left_x =
cpu2be32 (mm2scanner_units (s->val[TL_X].w));
wnd->upper_left_y =
cpu2be32 (mm2scanner_units (s->val[TL_Y].w));
wnd->width =
cpu2be32 (mm2scanner_units (s->val[BR_X].w - s->val[TL_X].w));
wnd->length =
cpu2be32 (mm2scanner_units (s->val[BR_Y].w - s->val[TL_Y].w));
}
else
{
u32 w = cpu2be32 (mm2scanner_units (paper_sizes[paper].width));
u32 h = cpu2be32 (mm2scanner_units (paper_sizes[paper].height));
wnd->upper_left_x = cpu2be32 (mm2scanner_units (0));
wnd->upper_left_y = cpu2be32 (mm2scanner_units (0));
if (!s->val[LANDSCAPE].b)
{
wnd->document_width = wnd->width = w;
wnd->document_length = wnd->length = h;
}
else
{
wnd->document_width = wnd->width = h;
wnd->document_length = wnd->length = w;
}
}
wnd->brightness = s->val[BRIGHTNESS].w;
wnd->threshold = s->val[THRESHOLD].w;
wnd->contrast = s->val[CONTRAST].w;
wnd->image_composition = mode_val[str_index (mode_list, s->val[MODE].s)];
wnd->bit_per_pixel = bps_val[str_index (mode_list, s->val[MODE].s)];
wnd->halftone_pattern = 0; /*Does not supported */
wnd->bit_ordering = cpu2be16 (BIT_ORDERING);
wnd->compression_type = 0; /*Does not supported */
wnd->compression_argument = 0; /*Does not supported */
wnd->vendor_unique_identifier = 0;
wnd->nobuf_fstspeed_dfstop = 0;
wnd->mirror_image = 0;
wnd->image_emphasis = str_index (image_emphasis_list,
s->val[IMAGE_EMPHASIS].s);
wnd->gamma_correction = gamma_val[str_index (gamma_list,
s->val[GAMMA_CORRECTION].s)];
wnd->mcd_lamp_dfeed_sens = str_index (lamp_list, s->val[LAMP].s) << 4 | 2;
wnd->document_size = (paper != 0) << 7
| s->val[LENGTHCTL].b << 6 | s->val[LANDSCAPE].b << 4 | paper_val[paper];
wnd->ahead_deskew_dfeed_scan_area_fspeed_rshad = s->val[DBLFEED].b << 4
| s->val[FIT_TO_PAGE].b << 2;
wnd->continuous_scanning_pages = str_index (feeder_mode_list,
s->val[FEEDER_MODE].
s) ? 0xff : 0;
wnd->automatic_threshold_mode = 0; /*Does not supported */
wnd->automatic_separation_mode = 0; /*Does not supported */
wnd->standard_white_level_mode = 0; /*Does not supported */
wnd->b_wnr_noise_reduction = 0; /*Does not supported */
if (str_index (manual_feed_list, s->val[MANUALFEED].s) == 2)
wnd->mfeed_toppos_btmpos_dsepa_hsepa_dcont_rstkr = 2 << 6;
wnd->stop_mode = 1;
}
/* Get scan parameters */
SANE_Status
sane_get_parameters (SANE_Handle handle, SANE_Parameters * params)
{
struct scanner *s = (struct scanner *) handle;
SANE_Parameters *p = &s->params;
if (!s->scanning)
{
unsigned w, h, res = s->val[RESOLUTION].w;
unsigned i = str_index (paper_list,
s->val[PAPER_SIZE].s);
if (i)
{
if (s->val[LANDSCAPE].b)
{
w = paper_sizes[i].height;
h = paper_sizes[i].width;
}
else
{
w = paper_sizes[i].width;
h = paper_sizes[i].height;
}
}
else
{
w = s->val[BR_X].w - s->val[TL_X].w;
h = s->val[BR_Y].w - s->val[TL_Y].w;
}
p->pixels_per_line = w * res / 25.4;
p->lines = h * res / 25.4;
}
p->format = (!strcmp(s->val[MODE].s,SANE_VALUE_SCAN_MODE_COLOR)) ?
SANE_FRAME_RGB : SANE_FRAME_GRAY;
p->last_frame = SANE_TRUE;
p->depth = bps_val[str_index (mode_list, s->val[MODE].s)];
p->bytes_per_line = p->depth * p->pixels_per_line / 8;
if (p->depth > 8)
p->depth = 8;
if (params)
memcpy (params, p, sizeof (SANE_Parameters));
return SANE_STATUS_GOOD;
}
|