97 lines
2.4 KiB
C
97 lines
2.4 KiB
C
/*
|
|
* Copyright (c) 2011, 2012, 2013, 2022, 2024 Jonas 'Sortie' Termansen.
|
|
*
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
* copyright notice and this permission notice appear in all copies.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*
|
|
* uptime.c
|
|
* Tell how long the system has been running.
|
|
*/
|
|
|
|
#include <err.h>
|
|
#include <errno.h>
|
|
#include <stdbool.h>
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
#include <unistd.h>
|
|
#include <time.h>
|
|
|
|
time_t seconds(time_t usecs)
|
|
{
|
|
return usecs % (60ULL);
|
|
}
|
|
|
|
time_t minutes(time_t usecs)
|
|
{
|
|
return (usecs / (60ULL)) % (60ULL);
|
|
}
|
|
|
|
time_t hours(time_t usecs)
|
|
{
|
|
return (usecs / (60ULL * 60ULL)) % (24ULL);
|
|
}
|
|
|
|
time_t days(time_t usecs)
|
|
{
|
|
return usecs / (60ULL * 60ULL * 24ULL);
|
|
}
|
|
|
|
void print_element(time_t num, const char* single, const char* multiple)
|
|
{
|
|
static const char* prefix = "";
|
|
if ( !num )
|
|
return;
|
|
const char* str = 2 <= num ? multiple : single;
|
|
printf("%s%ji %s", prefix, (intmax_t) num, str);
|
|
prefix = ", ";
|
|
}
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
bool raw = false;
|
|
bool pretty = false;
|
|
|
|
int opt;
|
|
while ( (opt = getopt(argc, argv, "pr")) != -1 )
|
|
{
|
|
switch ( opt )
|
|
{
|
|
case 'p': pretty = true; raw = false; break;
|
|
case 'r': raw = true; pretty = false; break;
|
|
default: return 1;
|
|
}
|
|
}
|
|
|
|
if ( optind < argc )
|
|
errx(1, "extra operand: %s", argv[optind]);
|
|
|
|
if ( pretty && raw )
|
|
errx(1, "the -p and -r options are mutually incompatible");
|
|
|
|
struct timespec uptime;
|
|
clock_gettime(CLOCK_BOOTTIME, &uptime);
|
|
|
|
if ( raw )
|
|
printf("%ji.%09li\n", (intmax_t) uptime.tv_sec, uptime.tv_nsec);
|
|
else if ( pretty )
|
|
{
|
|
print_element(days(uptime.tv_sec), "day", "days");
|
|
print_element(hours(uptime.tv_sec), "hour", "hours");
|
|
print_element(minutes(uptime.tv_sec), "min", "mins");
|
|
print_element(seconds(uptime.tv_sec), "sec", "secs");
|
|
printf("\n");
|
|
}
|
|
else
|
|
printf("up %ji.%09li s\n", (intmax_t) uptime.tv_sec, uptime.tv_nsec);
|
|
|
|
return 0;
|
|
}
|