| Tk-ExecuteCommand documentation | Contained in the Tk-ExecuteCommand distribution. |
Tk::ExecuteCommand - execute a command asynchronously (non-blocking).
$exec = $parent->ExecuteCommand;
Tk::ExecuteCommand runs a command yet still allows Tk events to flow. All command output and errors are displayed in a window.
This ExecuteCommand mega widget is composed of an LabEntry widget for command entry, a "Do It" Button that initiates command execution, and a ROText widget that collects command execution output.
While the command is executing, the "Do It" Button changes to a "Cancel" Button that can prematurely kill the executing command. The kill_command method does the same thing programmatically.
The primary benefit of this widget is the ability to execute system commands asynchronously without blocking Tk's event loop. The widget doesn't even have to be managed (pack/grid), see the EXAMPLES section.
The command to execute asynchronously.
Character width of command Entry widget.
Character height of the ROText widget.
Label text for command Entry widget.
Label text for "Do It!" Button.
Character width of the ROText widget.
Initiates command execution.
Returns a 2 element array of $? and $! from last command execution.
Terminates the command. This subroutine is called automatically via an OnDestroy handler when the ExecuteCommand widget goes away.
packForgets all but the minimal ROText widget. Currently, this action cannot be rescinded.
Component subwidgets can be accessed via the Subwidget method. Valid subwidget names are listed below.
Refers to the command LabEntry widget.
Refers to the command execution Button.
Refers to the spacer Frame separating the Entry and ROText widgets.
Refers to the Label across the top of the ROText widget.
Refers to the ROText widget that collects command execution output.
$ec = $mw->ExecuteCommand(
-command => '',
-entryWidth => 50,
-height => 10,
-label => '',
-text => 'Execute',
)->pack;
$ec->configure(-command => 'mtx -f /dev/sch0 load 1 0');
$ec->execute_command;
$ec->bell;
$ec->update;
=================================================================
# More complicated example to read AC temps via snmpget. The target
# air conditioner IPs have been changed to protect them ;)
#!/usr/local/bin/perl
use Tk;
use Tk::ExecuteCommand;
use subs qw/ init main read_acs sys /;
use strict;
use warnings;
# Globals.
my $ec; # ExecuteCommand widget
my @gauges; # list of AC NGauge widgets
my $interval; # interval between SNMP scans, seconds
my $mw; # MainWindow
my $snmp_liebert_temperature_actual; # temperature, actual reading
my $snmp_liebert_temperature_tolerance; # temperature, desired tolerance
my $snmp_liebert_temperature_setting; # temperature, desired setting
my $snmp_root; # snmpget/snmpset dirname
my $temp_tolerance_factor; # tolerance value * factor = degrees
init;
main;
sub init {
$mw = MainWindow->new;
$ec = $mw->ExecuteCommand;
$interval = 2;
$snmp_root = '/usr/bin';
$snmp_liebert_temperature_setting = '.1.3.6.1.4.1.476.1.42.3.4.1.2.1.0';
$snmp_liebert_temperature_tolerance = '.1.3.6.1.4.1.476.1.42.3.4.1.2.2.0';
$snmp_liebert_temperature_actual = '.1.3.6.1.4.1.476.1.42.3.4.1.2.3.1.3.1';
$gauges[0] = {-ac => 'some-ip-1'};
$gauges[1] = {-ac => 'some-ip-2'};
} # end init
sub main {
read_acs;
MainLoop;
} # end main
sub read_acs {
my( $stat, @temperature, @humidity );
foreach my $g ( @gauges ) {
my $ac_ip = $g->{ -ac } . '.some.domain.name';
( $stat, @temperature ) = sys "$snmp_root/snmpget $ac_ip communityname $snmp_liebert_temperature_setting $snmp_liebert_temperature_tolerance $snmp_liebert_temperature_actual";
die "Cannot get temperature data for AC '$ac_ip': $stat." if $stat or $#temperature != 2;
print "stat=$stat, data=@temperature.\n";
} # forend all air conditioners
$mw->after( $interval * 1000 => \&read_acs );
} # end read_acs
sub sys {
# Execute a command asynchronously and return its status and output.
my $cmd = shift;
$ec->configure( -command => $cmd );
my $t = $ec->Subwidget( 'text' ); # ROText widget
$t->delete( '1.0' => 'end' );
$ec->execute_command;
return ($ec->get_status)[0], split /\n/, $t->get( '1.0' => 'end -1 chars' );
} # end sys
exec, command, fork, asynchronous, non-blocking, widget
Copyright (C) 1999 - 2004 Stephen O. Lidie. All rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Tk-ExecuteCommand documentation | Contained in the Tk-ExecuteCommand distribution. |
$Tk::ExecuteCommand::VERSION = '1.6'; package Tk::ExecuteCommand; use IO::Handle; use Proc::Killfam; use Tk::widgets qw/LabEntry ROText/; use base qw/Tk::Frame/; use strict; Construct Tk::Widget 'ExecuteCommand'; sub Populate { my($self, $args) = @_; $self->SUPER::Populate($args); my $f1 = $self->Frame->pack; my $c = $f1->LabEntry->pack(qw/-side left/); $self->Advertise('command' => $c); my $doit = $f1->Button->pack(qw/-side left/); $self->Advertise('doit' => $doit); $self->_reset_doit_button; $c->bind('<Return>' => [$doit => 'invoke']); my $s = $self->Frame->pack(qw/-pady 10/); $self->Advertise('spacer' => $s); my $l = $self->Label(-text => 'Command\'s stdout and stderr')->pack; $self->Advertise('label' => $l); my $text = $self->Scrolled('ROText'); $text->pack(qw/-expand 1 -fill both/); $self->Advertise('text' => $text); $self->OnDestroy( sub { killfam 'TERM', $self->{-pid} if defined $self->{-pid} } ); $self->{-finish} = 0; $self->{-tid} = undef; $self->{doit_text} = 'Do It!'; $self->ConfigSpecs( -command => [qw/METHOD command Command/, 'sleep 5; pwd' ], -entryWidth => [{-width => $c}, qw/entryWidth EntryWidth 10/ ], -height => [$text, qw/height Height 24/ ], -label => [$c, qw/label Label/, 'Command to Execute' ], -labelPack => [$c, qw/labelPack LabelPack/, [-side=>'left'] ], -scrollbars => [$text, qw/scrollbar Scrollbar sw/ ], -text => [qw/METHOD text Text/, $self->{doit_text} ], -textvariable => [$c,qw/textvariable Textvariable/,\$self->{-command}], -width => [$text, qw/width Width 80/ ], -wrap => [$text, qw/wrap Wrap/, 'none' ], ); } # end Populate sub command { my($self, $command) = @_; $self->{-command} = $command; } # end command sub _flash_doit { # Flash "Do It" by alternating its background color. my($self, $option, $val1, $val2, $interval) = @_; if ($self->{-finish} == 0) { $self->Subwidget('doit')->configure($option => $val1); $self->idletasks; $self->{-tid} = $self->after($interval, [\&_flash_doit, $self, $option, $val2, $val1, $interval]); } } # end _flash_doit sub _read_stdout { # Called when input is available for the output window. Also checks # to see if the user has clicked Cancel. my($self) = @_; if ($self->{-finish}) { $self->kill_command; } else { my $h = $self->{-handle}; die "ExecuteCommand handle is udefined!\n" unless defined $h; my $stat; if ( $stat = sysread $h, $_, 4096 ) { my $t = $self->Subwidget('text'); $t->insert('end', $_); $t->yview('end'); } elsif ( $stat == 0 ) { $self->{-finish} = 1; } else { die "ExecuteCommand sysread error: $!"; } } } # end _read_stdout sub _reset_doit_button { # Establish normal "Do It" button parameters. my($self) = @_; my $doit = $self->Subwidget('doit'); my $doit_bg = ($doit->configure(-background))[3]; $doit->configure( -text => $self->{doit_text}, -relief => 'raised', -background => $doit_bg, -state => 'normal', -command => [sub { my($self) = @_; $self->Subwidget('doit')->configure( -text => 'Working ...', -relief => 'sunken', -state => 'disabled' ); $self->{-finish} = 0; $self->execute_command; }, $self], ); $self->{-finish} = 0; } # end _reset_doit_button sub text { my($self, $text) = @_; $self->{doit_text} = $text; $self->Subwidget('doit')->configure(-text => $text); } # end text # Public methods. sub execute_command { # Execute the command and capture stdout/stderr. my($self) = @_; $self->{-finish} = 0; $self->{-handle} = undef; $self->{-pid} = undef; $self->{-tid} = undef; my $h = IO::Handle->new; die "IO::Handle->new failed." unless defined $h; $self->{-handle} = $h; $self->{-pid} = open $h, $self->{-command} . ' 2>&1 |'; if (not defined $self->{-pid}) { $self->Subwidget('text')->insert('end', "'" . $self->{-command} . "' : $!\n"); $self->kill_command; return; } $h->autoflush(1); $self->fileevent($h, 'readable' => [\&_read_stdout, $self]); my $doit = $self->Subwidget('doit'); $doit->configure( -text => 'Cancel', -relief => 'raised', -state => 'normal', -command => [\&kill_command, $self], ); my $doit_bg = ($doit->configure(-background))[3]; $self->_flash_doit(-background => $doit_bg, qw/cyan 500/); $self->waitVariable(\$self->{-finish}); $self->kill_command; } # end execute_command sub get_status { # Return a 2 element array of $? and $! from last command execution. my($self) = @_; my $stat = $self->{-status}; return (defined $stat ? @$stat : undef); } # end get_status sub kill_command { # A click on the blinking Cancel button resumes normal operations. my($self) = @_; $self->{-finish} = 1; $self->afterCancel($self->{-tid}) if defined $self->{-tid}; my $h = $self->{-handle}; if( defined $h ) { $self->fileevent($h, 'readable' => ''); killfam 'TERM', $self->{-pid} if defined $self->{-pid}; close $h; $self->{-status} = [$?, $!]; } $self->_reset_doit_button; } # end kill_command sub terse_gui { # Remove all but ROText widget. Currently, cannot be reversed. my ($self) =@_; my $n = 0; foreach ($self->children) { if (ref($_) eq 'Tk::Frame') { $n++; $_->packForget if $n <= 2; } elsif (ref($_) eq 'Tk::Label') { $_->packForget; } } } # end terse_gui 1; __END__