From: Richard W.M. Jones Date: Mon, 24 Jan 2011 14:33:25 +0000 (+0000) Subject: Obey virt-top --end-time down to near millisecond accuracy (RHBZ#637964). X-Git-Tag: 1.0.6~14 X-Git-Url: http://git.annexia.org/?p=virt-top.git;a=commitdiff_plain;h=4e1409917c38f8bf57838f5119f58edbcad41937 Obey virt-top --end-time down to near millisecond accuracy (RHBZ#637964). Adjust the final delay down so that the --end-time option is obeyed down to near millisecond accuracy. The 'usleep' function has been renamed more accurately as 'millisleep' since it sleeps for milliseconds not microseconds. --- diff --git a/virt-top/virt_top.ml b/virt-top/virt_top.ml index 3990b55..87e4f80 100644 --- a/virt-top/virt_top.ml +++ b/virt-top/virt_top.ml @@ -335,7 +335,7 @@ let show_state = function let sleep = Unix.sleep (* Sleep in milliseconds. *) -let usleep n = +let millisleep n = ignore (Unix.select [] [] [] (float n /. 1000.)) (* The curses getstr/getnstr functions are just weird. @@ -1279,36 +1279,47 @@ let rec main_loop ((_, batch_mode, script_mode, csv_enabled, _, _, _) (* Clear up unused virDomainPtr objects. *) Gc.compact (); - (* Get next key. This does the sleep. *) - if not batch_mode && not script_mode then - get_key_press setup; - (* Max iterations? *) if !iterations >= 0 then ( decr iterations; if !iterations = 0 then quit := true ); - (* End time? *) - (match !end_time with - | None -> () - | Some end_time -> - let (_, time, _, _, _, _, _, _) = state in - let delay_secs = float !delay /. 1000. in - if end_time <= time +. delay_secs then quit := true - ); - - (* Batch mode or script mode. We didn't call get_key_press above, so - * we didn't sleep. Sleep now, unless we are about to quit. + (* End time? We might need to adjust the precise delay down if + * the delay would be longer than the end time (RHBZ#637964). Note + * 'delay' is in milliseconds. *) - if batch_mode || script_mode then - if not !quit then - usleep !delay; + let delay = + match !end_time with + | None -> + (* No --end-time option, so use the current delay. *) + !delay + | Some end_time -> + let (_, time, _, _, _, _, _, _) = state in + let delay_secs = float !delay /. 1000. in + if end_time <= time +. delay_secs then ( + quit := true; + let delay = int_of_float (1000. *. (end_time -. time)) in + if delay >= 0 then delay else 0 + ) else + !delay in + (*eprintf "adjusted delay = %d\n%!" delay;*) + + (* Get next key. This does the sleep. *) + if not batch_mode && not script_mode then + get_key_press setup delay + else ( + (* Batch mode or script mode. We didn't call get_key_press, so + * we didn't sleep. Sleep now, unless we are about to quit. + *) + if not !quit || !end_time <> None then + millisleep delay + ) done -and get_key_press setup = - (* Read the next key, waiting up to !delay milliseconds. *) - timeout !delay; +and get_key_press setup delay = + (* Read the next key, waiting up to 'delay' milliseconds. *) + timeout delay; let k = getch () in timeout (-1); (* Reset to blocking mode. *)