- add testcase for grep bug (http://busybox.net/bugs/view.php?id=887)
[oweals/busybox.git] / procps / uptime.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini uptime implementation for busybox
4  *
5  * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
6  *
7  * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
8  */
9
10 /* This version of uptime doesn't display the number of users on the system,
11  * since busybox init doesn't mess with utmp.  For folks using utmp that are
12  * just dying to have # of users reported, feel free to write it as some type
13  * of CONFIG_FEATURE_UTMP_SUPPORT #define
14  */
15
16 /* getopt not needed */
17
18 #include "busybox.h"
19 #include <stdio.h>
20 #include <time.h>
21 #include <errno.h>
22 #include <stdlib.h>
23
24 #ifndef FSHIFT
25 # define FSHIFT 16              /* nr of bits of precision */
26 #endif
27 #define FIXED_1         (1<<FSHIFT)     /* 1.0 as fixed-point */
28 #define LOAD_INT(x) ((x) >> FSHIFT)
29 #define LOAD_FRAC(x) LOAD_INT(((x) & (FIXED_1-1)) * 100)
30
31
32 int uptime_main(int argc, char **argv)
33 {
34         int updays, uphours, upminutes;
35         struct sysinfo info;
36         struct tm *current_time;
37         time_t current_secs;
38
39         time(&current_secs);
40         current_time = localtime(&current_secs);
41
42         sysinfo(&info);
43
44         printf(" %02d:%02d:%02d up ",
45                         current_time->tm_hour, current_time->tm_min, current_time->tm_sec);
46         updays = (int) info.uptime / (60*60*24);
47         if (updays)
48                 printf("%d day%s, ", updays, (updays != 1) ? "s" : "");
49         upminutes = (int) info.uptime / 60;
50         uphours = (upminutes / 60) % 24;
51         upminutes %= 60;
52         if(uphours)
53                 printf("%2d:%02d, ", uphours, upminutes);
54         else
55                 printf("%d min, ", upminutes);
56
57         printf("load average: %ld.%02ld, %ld.%02ld, %ld.%02ld\n",
58                         LOAD_INT(info.loads[0]), LOAD_FRAC(info.loads[0]),
59                         LOAD_INT(info.loads[1]), LOAD_FRAC(info.loads[1]),
60                         LOAD_INT(info.loads[2]), LOAD_FRAC(info.loads[2]));
61
62         return EXIT_SUCCESS;
63 }