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
|
package Gscan2pdf::Dialog::Scan::Image_Sane;
use warnings;
use strict;
use Glib qw(TRUE FALSE); # To get TRUE and FALSE
use Image::Sane ':all'; # To get SANE_NAME_PAGE_WIDTH & SANE_NAME_PAGE_HEIGHT
use Gscan2pdf::Dialog::Scan;
use Gscan2pdf::Frontend::Image_Sane;
use Gscan2pdf::Translation '__'; # easier to extract strings with xgettext
use Locale::gettext 1.05; # For translations
use Data::Dumper;
$Data::Dumper::Sortkeys = 1;
use Readonly;
Readonly my $LAST_PAGE => -1;
# logger duplicated from Gscan2pdf::Dialog::Scan
# to ensure that SET_PROPERTIES gets called in both places
use Glib::Object::Subclass Gscan2pdf::Dialog::Scan::, properties => [
Glib::ParamSpec->scalar(
'logger', # name
'Logger', # nick
'Log::Log4perl::get_logger object', # blurb
[qw/readable writable/] # flags
),
Glib::ParamSpec->boolean(
'cycle-sane-handle', # name
'Cycle SANE handle after scan', # nick
'In some scanners, this allows the ADF to eject the last page', # blurb
FALSE, # default_value
[qw/readable writable/] # flags
),
Glib::ParamSpec->boolean(
'cancel-between-pages', # name
'Cancel previous page when starting new one', # nick
'Otherwise, some Brother scanners report out of documents, despite scanning from flatbed.'
, # blurb
FALSE, # default_value
[qw/readable writable/] # flags
),
];
our $VERSION = '2.13.5';
my $SANE_NAME_SCAN_TL_X = SANE_NAME_SCAN_TL_X;
my $SANE_NAME_SCAN_TL_Y = SANE_NAME_SCAN_TL_Y;
my $SANE_NAME_SCAN_BR_X = SANE_NAME_SCAN_BR_X;
my $SANE_NAME_SCAN_BR_Y = SANE_NAME_SCAN_BR_Y;
my $SANE_NAME_PAGE_HEIGHT = SANE_NAME_PAGE_HEIGHT;
my $SANE_NAME_PAGE_WIDTH = SANE_NAME_PAGE_WIDTH;
my $EMPTY = q{};
my ( $d_sane, $logger );
sub INIT_INSTANCE {
my $self = shift;
$d_sane = Locale::gettext->domain('sane-backends');
return $self;
}
sub SET_PROPERTY {
my ( $self, $pspec, $newval ) = @_;
my $name = $pspec->get_name;
my $oldval = $self->get($name);
$self->{$name} = $newval;
if ( ( defined $newval and defined $oldval and $newval ne $oldval )
or ( defined $newval xor defined $oldval ) )
{
if ( $name eq 'logger' ) {
$logger = $newval;
$logger->debug('Set logger in Gscan2pdf::Dialog::Scan::Image_Sane');
}
}
$self->SUPER::SET_PROPERTY( $pspec, $newval );
return;
}
# Run Sane->get_devices
sub get_devices {
my ($self) = @_;
$self->set( 'cursor', 'wait' );
my $pbar;
my $hboxd = $self->{hboxd};
Gscan2pdf::Frontend::Image_Sane->get_devices(
sub {
# Set up ProgressBar
$pbar = Gtk3::ProgressBar->new;
$pbar->set_show_text(TRUE);
$pbar->set_pulse_step( $self->get('progress-pulse-step') );
$pbar->set_text( __('Fetching list of devices') );
$hboxd->pack_start( $pbar, TRUE, TRUE, 0 );
$hboxd->hide;
$hboxd->show;
$pbar->show;
},
sub {
$pbar->pulse;
},
sub {
my ($data) = @_;
$pbar->destroy;
my @device_list = @{$data};
$logger->info( 'Sane->get_devices returned: ',
Dumper( \@device_list ) );
$self->set( 'device-list', \@device_list );
if ( @device_list == 0 ) {
$self->signal_emit( 'process-error', 'get_devices',
__('No devices found') );
$self->destroy;
undef $self;
return FALSE;
}
$hboxd->show_all;
$self->set( 'cursor', 'default' );
}
);
return;
}
# retrieve device-dependent scan options
sub scan_options {
my ($self) = @_;
# Remove any existing pages
while ( $self->{notebook}->get_n_pages > 2 ) {
$self->{notebook}->remove_page($LAST_PAGE);
}
# Remove lookups to geometry boxes and option widgets
delete $self->{geometry_boxes};
delete $self->{option_widgets};
delete $self->{option_info};
my $signal;
Gscan2pdf::Frontend::Image_Sane->open_device(
device_name => $self->get('device'),
started_callback => sub {
$self->set( 'cursor', 'wait' );
$self->signal_emit( 'started-process', __('Opening device') );
# Ghost the scan button whilst options being updated
$self->set_response_sensitive( 'ok', FALSE );
},
running_callback => sub {
$self->signal_emit( 'changed-progress', undef, undef );
},
finished_callback => sub {
$self->signal_emit( 'finished-process', 'open_device' );
Gscan2pdf::Frontend::Image_Sane->find_scan_options(
sub { # started callback
$self->signal_emit( 'started-process',
__('Retrieving options') );
},
sub { # running callback
$self->signal_emit( 'changed-progress', undef, undef );
},
sub { # finished callback
my ($data) = @_;
my $options =
Gscan2pdf::Scanner::Options->new_from_data($data);
$self->_initialise_options($options);
$self->signal_emit( 'finished-process',
'find_scan_options' );
# This fires the reloaded-scan-options signal,
# so don't set this until we have finished
$self->set( 'available-scan-options', $options );
$self->set_paper_formats( $self->{paper_formats} );
$self->set( 'cursor', 'default' );
},
sub { # error callback
my ($message) = @_;
$self->signal_emit( 'process-error',
'find_scan_options',
__( 'Error retrieving scanner options: ' . $message ) );
$self->set( 'cursor', 'default' );
}
);
},
error_callback => sub {
my ($message) = @_;
$self->signal_emit( 'process-error', 'open_device',
__( 'Error opening device: ' . $message ) );
$self->set( 'cursor', 'default' );
}
);
return;
}
sub _initialise_options { ## no critic (ProhibitExcessComplexity)
my ( $self, $options ) = @_;
$logger->debug( 'Sane->get_option_descriptor returned: ',
Dumper($options) );
my ( $vbox, $hboxp );
my $num_dev_options = $options->num_options;
# We have hereby removed the active profile and paper,
# so update the properties without triggering the signals
$self->{profile} = undef;
$self->{paper} = undef;
delete $self->{combobp}; # So we don't carry over from one device to another
for ( 1 .. $num_dev_options - 1 ) {
my $opt = $options->by_index($_);
# Notebook page for group
if ( $opt->{type} == SANE_TYPE_GROUP or not defined $vbox ) {
$vbox = Gtk3::VBox->new;
$vbox->set_border_width( $self->style_get('content-area-border') );
my $text = (
$opt->{type} == SANE_TYPE_GROUP
# A brother scanner used an empty string as a group title,
# which then results in a tab with no title, which is
# confusing and can be missed, so set to the default.
and $opt->{title} ne $EMPTY
)
? $d_sane->get( $opt->{title} )
: __('Scan Options');
my $scwin = Gtk3::ScrolledWindow->new;
$self->{notebook}->append_page( $scwin, Gtk3::Label->new($text) );
$scwin->set_policy( 'automatic', 'automatic' );
$scwin->add_with_viewport($vbox);
if ( $opt->{type} == SANE_TYPE_GROUP ) { next }
}
if ( not( $opt->{cap} & SANE_CAP_SOFT_DETECT ) ) { next }
# Widget
my ( $widget, $val );
$val = $opt->{val};
# Define HBox for paper size here
# so that it can be put before first geometry option
if ( not defined $hboxp and $self->_geometry_option($opt) ) {
$hboxp = Gtk3::HBox->new;
$vbox->pack_start( $hboxp, FALSE, FALSE, 0 );
}
# HBox for option
my $hbox = Gtk3::HBox->new;
$vbox->pack_start( $hbox, FALSE, TRUE, 0 );
if ( $opt->{cap} & SANE_CAP_INACTIVE
or not $opt->{cap} & SANE_CAP_SOFT_SELECT )
{
$hbox->set_sensitive(FALSE);
}
if ( $opt->{max_values} < 2 ) {
# Label
if ( $opt->{type} != SANE_TYPE_BUTTON ) {
my $text = $opt->{title};
if ( not defined $text or $text eq $EMPTY ) {
$text = $opt->{name};
}
my $label = Gtk3::Label->new( $d_sane->get($text) );
$hbox->pack_start( $label, FALSE, FALSE, 0 );
}
# Switch
if ( $opt->{type} == SANE_TYPE_BOOL ) { ## no critic (ProhibitCascadingIfElse)
$widget = Gtk3::Switch->new;
if ($val) { $widget->set_active(TRUE) }
$widget->{signal} = $widget->signal_connect(
'notify::active' => sub {
$self->{num_reloads} = 0; # num-reloads is read-only
my $value = $widget->get_active;
$self->set_option( $opt, $value );
}
);
}
# Button
elsif ( $opt->{type} == SANE_TYPE_BUTTON ) {
$widget = Gtk3::Button->new( $d_sane->get( $opt->{title} ) );
$widget->{signal} = $widget->signal_connect(
clicked => sub {
$self->{num_reloads} = 0; # num-reloads is read-only
$self->set_option($opt);
}
);
}
# SpinButton
elsif ( $opt->{constraint_type} == SANE_CONSTRAINT_RANGE ) {
my $step = 1;
if ( $opt->{constraint}{quant} and $opt->{constraint}{quant} > 0 ) {
$step = $opt->{constraint}{quant};
}
if ( $opt->{constraint}{min} > $opt->{constraint}{max} ) {
$logger->error(
sprintf __(
"Ignoring scan option '%s', minimum range (%s) > maximum (%s)"
),
$opt->{name},
$opt->{constraint}{min},
$opt->{constraint}{max}
);
next;
}
$widget =
Gtk3::SpinButton->new_with_range( $opt->{constraint}{min},
$opt->{constraint}{max}, $step );
# Set the default
if ( defined $val and not $opt->{cap} & SANE_CAP_INACTIVE ) {
$widget->set_value($val);
}
$widget->{signal} = $widget->signal_connect(
'value-changed' => sub {
$self->{num_reloads} = 0; # num-reloads is read-only
my $value = $widget->get_value;
$self->set_option( $opt, $value );
}
);
}
# ComboBox
elsif ($opt->{constraint_type} == SANE_CONSTRAINT_STRING_LIST
or $opt->{constraint_type} == SANE_CONSTRAINT_WORD_LIST )
{
$widget = Gtk3::ComboBoxText->new;
my $index = 0;
for ( 0 .. $#{ $opt->{constraint} } ) {
$widget->append_text(
$d_sane->get( $opt->{constraint}[$_] ) );
if ( defined $val and $opt->{constraint}[$_] eq $val ) {
$index = $_;
}
}
# Set the default
if ( defined $index ) { $widget->set_active($index) }
$widget->{signal} = $widget->signal_connect(
changed => sub {
$self->{num_reloads} = 0; # num-reloads is read-only
my $i = $widget->get_active;
# refetch options in case they have changed.
# tested by t/06197_Dialog_Scan_Image_Sane.t
$options = $self->get('available-scan-options');
$opt = $options->by_name( $opt->{name} );
$self->set_option( $opt, $opt->{constraint}[$i] );
}
);
}
# Entry
elsif ( $opt->{constraint_type} == SANE_CONSTRAINT_NONE ) {
$widget = Gtk3::Entry->new;
# Set the default
if ( defined $val and not $opt->{cap} & SANE_CAP_INACTIVE ) {
$widget->set_text($val);
}
$widget->{signal} = $widget->signal_connect(
activate => sub {
$self->{num_reloads} = 0; # num-reloads is read-only
my $value = $widget->get_text;
$self->set_option( $opt, $value );
}
);
}
}
else { # $opt->{max_values} > 1
$widget = Gtk3::Button->new( $d_sane->get( $opt->{title} ) );
$widget->{signal} = $widget->signal_connect(
clicked =>
\&Gscan2pdf::Dialog::Scan::multiple_values_button_callback,
[ $self, $opt ]
);
}
$self->pack_widget( $widget, [ $options, $opt, $hbox, $hboxp ] );
}
# Show new pages
for ( 2 .. $self->{notebook}->get_n_pages - 1 ) {
$self->{notebook}->get_nth_page($_)->show_all;
}
$self->set_response_sensitive( 'ok', TRUE );
return;
}
sub _post_set_option_hook {
my ( $self, $option, $val, $uuid ) = @_;
# We can carry on applying defaults now, if necessary.
$self->signal_emit( 'finished-process',
"set_option $option->{name}"
. ( $option->{type} == SANE_TYPE_BUTTON ? $EMPTY : " to $val" ) );
# Unset the profile unless we are actively setting it
if ( not @{ $self->{setting_profile} } ) {
$self->set( 'profile', undef );
# Emit the changed-current-scan-options signal
# unless we are actively setting it
if ( not @{ $self->{setting_current_scan_options} } ) {
$self->signal_emit( 'changed-current-scan-options',
$self->get('current-scan-options'), $EMPTY );
}
}
$self->update_widget_value( $option, $val );
$self->signal_emit( 'changed-scan-option', $option->{name}, $val, $uuid );
return;
}
# Update the sane option in the thread
# If necessary, reload the options,
# and walking the options tree, update the widgets
sub set_option {
my ( $self, $option, $val, $uuid ) = @_;
if ( not defined $option ) { return }
if ( $option->{constraint_type} == SANE_CONSTRAINT_RANGE ) {
if ( $val < $option->{constraint}{min} ) {
$val = $option->{constraint}{min};
}
elsif ( $val > $option->{constraint}{max} ) {
$val = $option->{constraint}{max};
}
}
my $signal;
my $options = $self->get('available-scan-options');
Gscan2pdf::Frontend::Image_Sane->set_option(
index => $option->{index},
value => $val,
started_callback => sub {
$self->signal_emit( 'started-process',
sprintf __('Setting option %s'),
$option->{name} );
},
running_callback => sub {
$self->signal_emit( 'changed-progress', undef, undef );
},
finished_callback => sub {
my ( $info, $status ) = @_;
if ( $status != SANE_STATUS_INVAL ) {
$self->{current_scan_options}
->add_backend_option( $option->{name}, $val );
}
$self->{option_info}{ $option->{name} } = $info;
if ( defined $info and $info & SANE_INFO_RELOAD_OPTIONS ) {
Gscan2pdf::Frontend::Image_Sane->find_scan_options(
sub { # started callback
$self->signal_emit( 'started-process',
__('Retrieving options') );
},
sub { # running callback
$self->signal_emit( 'changed-progress', undef, undef );
},
sub { # finished callback
my ($data) = @_;
$self->update_options(
Gscan2pdf::Scanner::Options->new_from_data($data) );
$self->_post_set_option_hook( $option, $val, $uuid );
},
sub { # error callback
my ($message) = @_;
$self->signal_emit(
'process-error',
'find_scan_options',
__(
'Error retrieving scanner options: ' . $message
)
);
}
);
}
else {
my $opt = $options->by_name( $option->{name} );
$opt->{val} = $val;
$self->_post_set_option_hook( $option, $val, $uuid );
}
},
error_callback => sub {
my ($message) = @_;
$self->signal_emit( 'process-error', 'set_option',
__( 'Error setting option: ' . $message ) );
},
);
return;
}
sub scan {
my ($self) = @_;
$self->set( 'cursor', 'progress' );
# Get selected number of pages
my $npages = $self->get('num-pages');
my $start = $self->get('page-number-start');
my $step = $self->get('page-number-increment');
if ( $npages > 0 and $step < 0 ) { $npages = $self->get('max-pages') }
if ( $start == 1 and $step < 0 ) {
$self->signal_emit( 'process-error', 'scan',
__('Must scan facing pages first') );
return TRUE;
}
my ( $xresolution, $yresolution ) = $self->get_xy_resolution;
my $i = 1;
Gscan2pdf::Frontend::Image_Sane->scan_pages(
dir => $self->get('dir'),
npages => $npages,
start => $start,
step => $step,
cancel_between_pages => (
$self->get('cancel-between-pages')
and $self->get('available-scan-options')->flatbed_selected
),
started_callback => sub {
if ( $npages == 0 and $self->get('max-pages') > 0 ) {
$npages = $self->get('max-pages');
}
$logger->info("Scanning $npages pages from $start with step $step");
$self->signal_emit( 'started-process',
Gscan2pdf::Dialog::Scan::make_progress_string( $i, $npages ) );
},
running_callback => sub {
my ($progress) = @_;
$self->signal_emit( 'changed-progress', $progress, undef );
},
finished_callback => sub {
$self->signal_emit( 'finished-process', 'scan_pages' );
$self->set( 'cursor', 'default' );
if ( $self->get('cycle-sane-handle') ) {
my $current = $self->get('current-scan-options');
my $signal;
$signal = $self->signal_connect(
'reloaded-scan-options' => sub {
$self->signal_handler_disconnect($signal);
$self->set_current_scan_options($current);
}
);
$self->scan_options( $self->get('device') );
}
},
new_page_callback => sub {
my ( $status, $path, $n ) = @_;
$self->signal_emit( 'new-scan', $path, $n, $xresolution,
$yresolution );
$self->signal_emit( 'changed-progress', 0,
Gscan2pdf::Dialog::Scan::make_progress_string( ++$i, $npages )
);
},
error_callback => sub {
my ($msg) = @_;
$self->signal_emit( 'process-error', 'scan_pages', $msg );
$self->set( 'cursor', 'default' );
}
);
return;
}
sub cancel_scan {
Gscan2pdf::Frontend::Image_Sane->cancel_scan;
$logger->info('Cancelled scan');
return;
}
1;
__END__
|