iPXE
Functions | Variables
monojob.h File Reference

Single foreground job. More...

Go to the source code of this file.

Functions

 FILE_LICENCE (GPL2_OR_LATER_OR_UBDL)
 
int monojob_wait (const char *string, unsigned long timeout)
 Wait for single foreground job to complete. More...
 

Variables

struct interface monojob
 

Detailed Description

Single foreground job.

Definition in file monojob.h.

Function Documentation

◆ FILE_LICENCE()

FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL  )

◆ monojob_wait()

int monojob_wait ( const char *  string,
unsigned long  timeout 
)

Wait for single foreground job to complete.

Parameters
stringJob description to display, or NULL to be silent
timeoutTimeout period, in ticks (0=indefinite)
Return values
rcJob final status code

Definition at line 81 of file monojob.c.

81  {
82  struct job_progress progress;
83  unsigned long last_check;
84  unsigned long last_progress;
85  unsigned long last_display;
86  unsigned long now;
87  unsigned long elapsed;
88  unsigned long completed = 0;
89  unsigned long scaled_completed;
90  unsigned long scaled_total;
91  unsigned int percentage;
92  size_t clear_len = 0;
93  int ongoing_rc;
94  int key;
95  int rc;
96 
97  if ( string )
98  printf ( "%s...", string );
100  last_check = last_progress = last_display = currticks();
101  while ( monojob_rc == -EINPROGRESS ) {
102 
103  /* Allow job to progress */
104  step();
105  now = currticks();
106 
107  /* Continue until a timer tick occurs (to minimise
108  * time wasted checking for progress and keypresses).
109  */
110  elapsed = ( now - last_check );
111  if ( ! elapsed )
112  continue;
113  last_check = now;
114 
115  /* Check for keypresses */
116  if ( iskey() ) {
117  key = getchar();
118  if ( key == CTRL_C ) {
120  break;
121  }
122  }
123 
124  /* Monitor progress */
125  ongoing_rc = job_progress ( &monojob, &progress );
126 
127  /* Reset timeout if progress has been made */
128  if ( completed != progress.completed )
129  last_progress = now;
130  completed = progress.completed;
131 
132  /* Check for timeout, if applicable */
133  elapsed = ( now - last_progress );
134  if ( timeout && ( elapsed >= timeout ) ) {
135  monojob_rc = ( ongoing_rc ? ongoing_rc : -ETIMEDOUT );
136  break;
137  }
138 
139  /* Display progress, if applicable */
140  elapsed = ( now - last_display );
141  if ( string && ( elapsed >= TICKS_PER_SEC ) ) {
142  monojob_clear ( clear_len );
143  /* Normalise progress figures to avoid overflow */
144  scaled_completed = ( progress.completed / 128 );
145  scaled_total = ( progress.total / 128 );
146  if ( scaled_total ) {
147  percentage = ( ( 100 * scaled_completed ) /
148  scaled_total );
149  clear_len = printf ( "%3d%%", percentage );
150  } else {
151  printf ( "." );
152  clear_len = 0;
153  }
154  if ( progress.message[0] ) {
155  clear_len += printf ( " [%s]",
156  progress.message );
157  }
158  last_display = now;
159  }
160  }
161  rc = monojob_rc;
162  monojob_close ( &monojob, rc );
163 
164  monojob_clear ( clear_len );
165  if ( string ) {
166  if ( rc ) {
167  printf ( " %s\n", strerror ( rc ) );
168  } else {
169  printf ( " ok\n" );
170  }
171  }
172 
173  return rc;
174 }
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
#define TICKS_PER_SEC
Number of ticks per second.
Definition: timer.h:15
int printf(const char *fmt,...)
Write a formatted string to the console.
Definition: vsprintf.c:464
#define ECANCELED
Operation canceled.
Definition: errno.h:343
#define CTRL_C
Definition: keys.h:20
unsigned long completed
Amount of operation completed so far.
Definition: job.h:23
struct interface monojob
Definition: monojob.c:56
#define EINPROGRESS
Operation in progress.
Definition: errno.h:418
int getchar(void)
Read a single character from any console.
Definition: console.c:85
char * strerror(int errno)
Retrieve string representation of error number.
Definition: strerror.c:78
Job progress.
Definition: job.h:15
static void monojob_close(struct interface *intf, int rc)
Definition: monojob.c:44
static int monojob_rc
Definition: monojob.c:42
void step(void)
Single-step a single process.
Definition: process.c:98
int job_progress(struct interface *intf, struct job_progress *progress)
Get job progress.
Definition: job.c:43
static void monojob_clear(size_t len)
Clear previously displayed message.
Definition: monojob.c:63
void timeout(int)
unsigned long currticks(void)
Get current system time in ticks.
Definition: timer.c:42
#define ETIMEDOUT
Connection timed out.
Definition: errno.h:669
int iskey(void)
Check for available input on any console.
Definition: console.c:130
union @382 key
Sense key.
Definition: crypto.h:284

References job_progress::completed, CTRL_C, currticks(), ECANCELED, EINPROGRESS, ETIMEDOUT, getchar(), iskey(), job_progress(), key, job_progress::message, monojob, monojob_clear(), monojob_close(), monojob_rc, printf(), rc, step(), strerror(), TICKS_PER_SEC, timeout(), and job_progress::total.

Referenced by fcels(), ifpoller_wait(), imgdownload(), imgverify(), nslookup(), ntp(), ping(), pxebs(), and sync().

Variable Documentation

◆ monojob

struct interface monojob