david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

[monojob] Display percentage progress, if available

Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
Michael Brown 2011-03-07 23:55:57 +00:00
parent b2332d5118
commit 3936136e5e
1 changed files with 23 additions and 6 deletions

View File

@ -57,14 +57,17 @@ struct interface monojob = INTF_INIT ( monojob_intf_desc );
* @ret rc Job final status code * @ret rc Job final status code
*/ */
int monojob_wait ( const char *string ) { int monojob_wait ( const char *string ) {
struct job_progress progress;
int key; int key;
int rc; int rc;
unsigned long last_progress_dot; unsigned long last_progress;
unsigned long elapsed; unsigned long elapsed;
unsigned int percentage;
int shown_percentage = 0;
printf ( "%s.", string ); printf ( "%s...", string );
monojob_rc = -EINPROGRESS; monojob_rc = -EINPROGRESS;
last_progress_dot = currticks(); last_progress = currticks();
while ( monojob_rc == -EINPROGRESS ) { while ( monojob_rc == -EINPROGRESS ) {
step(); step();
if ( iskey() ) { if ( iskey() ) {
@ -77,14 +80,28 @@ int monojob_wait ( const char *string ) {
break; break;
} }
} }
elapsed = ( currticks() - last_progress_dot ); elapsed = ( currticks() - last_progress );
if ( elapsed >= TICKS_PER_SEC ) { if ( elapsed >= TICKS_PER_SEC ) {
printf ( "." ); if ( shown_percentage )
last_progress_dot = currticks(); printf ( "\b\b\b\b \b\b\b\b" );
job_progress ( &monojob, &progress );
if ( progress.total ) {
percentage = ( ( 100 * progress.completed ) /
progress.total );
printf ( "%3d%%", percentage );
shown_percentage = 1;
} else {
printf ( "." );
shown_percentage = 0;
}
last_progress = currticks();
} }
} }
rc = monojob_rc; rc = monojob_rc;
if ( shown_percentage )
printf ( "\b\b\b\b \b\b\b\b" );
if ( rc ) { if ( rc ) {
printf ( " %s\n", strerror ( rc ) ); printf ( " %s\n", strerror ( rc ) );
} else { } else {