Minix1.1/usr/src/commands/time.c

Compare this file to the similar file:
Show the results in this format:

/* time - time a command	Authors: Andy Tanenbaum & Michiel Huisjes */

#include "signal.h"
#include "../h/const.h"

char **args;
char *name;

struct time_buf {
  long user, sys;
  long childu, childs;
};

int digit_seen;
char a[12] = {"        . \n"};
main(argc, argv)
int argc;
char *argv[];
{

  struct time_buf pre_buf, post_buf;
  int status, pid;
  long start_time, end_time;

  if (argc == 1)
  	exit(0);
  
  args = &argv[1];
  name = argv[1];

 /* Get real time at start of run. */
  (void) time(&start_time);

 /* Fork off child. */
  if ((pid = fork()) < 0) {
	std_err("Cannot fork\n");
  	exit(1);
  }

  if (pid == 0)
  	execute();

 /* Parent is the time program.  Disable interrupts and wait. */
  signal(SIGINT, SIG_IGN);
  signal(SIGQUIT, SIG_IGN);

  do {
  	times(&pre_buf);
  } while (wait(&status) != pid);
  (void) time(&end_time);

  if ((status & 0377) != 0)
	std_err("Command terminated abnormally.\n");
  times(&post_buf);

 /* Print results. */
  print_time("real ", (end_time - start_time) * HZ);
  print_time("user ", post_buf.childu - pre_buf.childu);
  print_time("sys  ", post_buf.childs - pre_buf.childs);
  exit(status >> 8);
}

print_time(mess, t)
char *mess;
register long t;
{
/* Print the time 't' in hours: minutes: seconds.  't' is in ticks. */
  int hours, minutes, seconds, tenths, i;

  digit_seen = 0;
  for (i = 0; i < 8; i++) a[i] = ' ';
  hours = (int) (t / (3600L * (long) HZ));
  t -= (long) hours * 3600L * (long) HZ;
  minutes = (int) (t / (60L * (long) HZ));
  t -= (long) minutes * 60L * (long) HZ;
  seconds = (int) (t / (long) HZ);
  t -= (long) seconds * (long) HZ;
  tenths = (int) (t / ((long) HZ / 10L));

  std_err(mess);

  if (hours) {
	twin(hours, &a[0]);
	a[2] = ':';
  }
  if (minutes || digit_seen) {
	twin(minutes, &a[3]);
	a[5] = ':';
  }
  if (seconds || digit_seen) 
	twin(seconds, &a[6]);
  else
	a[7] = '0';
  a[9] = tenths + '0';
  std_err(a);
}

twin(n, p)
int n;
char *p;
{
  char c1, c2;
  c1 = (n/10) + '0';
  c2 = (n%10) + '0';
  if (digit_seen==0 && c1 == '0') c1 = ' ';
  *p++ = c1;
  *p++ = c2;
  if (n > 0) digit_seen = 1;
}

char *newargs[MAX_ISTACK_BYTES >> 2] = { "/bin/sh" };	/* 256 args */

execute()
{
  register int i;

  try("");	       /* try local directory */
  try("/bin/");
  try("/usr/bin/");

  for (i = 0; newargs[i + 1] = args[i]; i++)
  	;
  execv("/bin/sh", newargs);
  std_err("Cannot execute /bin/sh\n");

  exit(-1);
}

char pathname[200];
try(path)
char *path;
{
  register char *p1, *p2;

  p1 = path;
  p2 = pathname;
  while (*p1 != 0) *p2++ = *p1++;
  p1 = name;
  while (*p1 != 0) *p2++ = *p1++;
  *p2 = 0;
  execv(pathname, args);
}