blob: 159f24baa8c722e756176a4b5fb90aade956e2d2 [file] [log] [blame]
Erik Andersen65fc1c72000-03-05 08:16:03 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Mini uptime implementation for busybox
4 *
Erik Andersen61677fe2000-04-13 01:18:56 +00005 * Copyright (C) 1999,2000 by Lineo, inc.
Erik Andersen65fc1c72000-03-05 08:16:03 +00006 * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 */
23
24/* This version of uptime doesn't display the number of users on the system,
25 * since busybox init doesn't mess with utmp. For folks using utmp that are
26 * just dying to have # of users reported, feel free to write it as some type
27 * of BB_FEATURE_UMTP_SUPPORT #define
28 */
29
30
Eric Andersen3570a342000-09-25 21:45:58 +000031#include "busybox.h"
Erik Andersen65fc1c72000-03-05 08:16:03 +000032#include <stdio.h>
33#include <time.h>
Eric Andersen10dc9d42000-06-26 10:45:52 +000034#include <errno.h>
Erik Andersen65fc1c72000-03-05 08:16:03 +000035
36#define FSHIFT 16 /* nr of bits of precision */
37#define FIXED_1 (1<<FSHIFT) /* 1.0 as fixed-point */
38#define LOAD_INT(x) ((x) >> FSHIFT)
39#define LOAD_FRAC(x) LOAD_INT(((x) & (FIXED_1-1)) * 100)
40
Eric Andersen10dc9d42000-06-26 10:45:52 +000041
Erik Andersen65fc1c72000-03-05 08:16:03 +000042extern int uptime_main(int argc, char **argv)
43{
44 int updays, uphours, upminutes;
45 struct sysinfo info;
46 struct tm *current_time;
47 time_t current_secs;
48
49 time(&current_secs);
50 current_time = localtime(&current_secs);
51
52 sysinfo(&info);
53
54 fprintf(stdout, " %2d:%02d%s up ",
55 current_time->tm_hour%12 ? current_time->tm_hour%12 : 12,
56 current_time->tm_min, current_time->tm_hour > 11 ? "pm" : "am");
57 updays = (int) info.uptime / (60*60*24);
58 if (updays)
59 fprintf(stdout, "%d day%s, ", updays, (updays != 1) ? "s" : "");
60 upminutes = (int) info.uptime / 60;
61 uphours = (upminutes / 60) % 24;
62 upminutes %= 60;
63 if(uphours)
64 fprintf(stdout, "%2d:%02d, ", uphours, upminutes);
65 else
66 fprintf(stdout, "%d min, ", upminutes);
67
68 printf("load average: %ld.%02ld, %ld.%02ld, %ld.%02ld\n",
69 LOAD_INT(info.loads[0]), LOAD_FRAC(info.loads[0]),
70 LOAD_INT(info.loads[1]), LOAD_FRAC(info.loads[1]),
71 LOAD_INT(info.loads[2]), LOAD_FRAC(info.loads[2]));
72
Matt Kraai3e856ce2000-12-01 02:55:13 +000073 return EXIT_SUCCESS;
Erik Andersen65fc1c72000-03-05 08:16:03 +000074}