Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
(Updated: Something bad happened to the code portion during cut-and-paste to the site. This is now fixed.)

Here's a quick bit of code that provides a simple, object-oriented way to draw progress bars. To use it, just create a progress bar like so:

my $bar = ProgressBar->new( width => 40 );
(Here, our bar will be 40 characters wide.) Then, to draw the bar, just pass in the current count of completed tasks and the total number of tasks:
$bar->draw( 3, 10 );
So, in the above example, we have completed 3 of 10 tasks and the following would be drawn:
============ 30%
A couple of points:
  • If the total number of tasks is fixed, you can provide it at the time you create the progress bar via the max_val parameter and omit it in calls to the draw() method.
  • The code works properly for progress bars that go forward, backward, or both. (See the demo.)

Here's the code:

#!/usr/bin/perl -w { # TGM 2004-10-05 # Progress bar code package ProgressBar; use Class::Struct width => '$', portion => '$', max_val => '$'; use List::Util qw( min ); sub draw { local $| = 1; my ($self, $x, $max_val) = @_; $max_val ||= $self->max_val; my $old_portion = $self->portion || 0; my $new_portion = int( $self->width * $x / $max_val + 0.5 ); print "\b" x ( 6 + $self->width - min( $new_portion, $old_portion ) ) if defined $self->portion; print "=" x ( $new_portion - $old_portion ), " " x ( $self->width - $new_portion ), sprintf " %3d%% ", int( 100 * $x / $max_val + 0.5 ); $self->portion( $new_portion ); } 1; } # DEMO my $pb = ProgressBar->new( width => 40, max_val => 10 ); # show progress 0 to 100% and then back down to 0% again do { $pb->draw( $_ ) ; sleep 1 } for 0 .. 10; do { $pb->draw( 9 - $_ ); sleep 1 } for 0 .. 9; print "\n";
Hope this helps.

Cheers,
Tom


In reply to Re: Progress Bar by tmoertel
in thread Progress Bar by Texan

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (3)
As of 2024-04-19 21:45 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found