blob: ebfb15e5ae7523285f929d32951de28d1169fa90 [file] [log] [blame]
Mike Lockwood5ffbf262010-04-09 15:27:16 -04001/*
Kenny Root53308d42010-07-27 10:57:00 -07002 * Copyright (c) 2010, The Android Open Source Project
3 * All rights reserved.
Mike Lockwood5ffbf262010-04-09 15:27:16 -04004 *
Kenny Root53308d42010-07-27 10:57:00 -07005 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in
12 * the documentation and/or other materials provided with the
13 * distribution.
14 * * Neither the name of Google, Inc. nor the names of its contributors
15 * may be used to endorse or promote products derived from this
16 * software without specific prior written permission.
Mike Lockwood5ffbf262010-04-09 15:27:16 -040017 *
Kenny Root53308d42010-07-27 10:57:00 -070018 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
21 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
22 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
23 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
24 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
25 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
26 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
27 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
28 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * SUCH DAMAGE.
Mike Lockwood5ffbf262010-04-09 15:27:16 -040030 */
31
Elliott Hughes12235942015-03-20 11:14:50 -070032#include <errno.h>
Mike Lockwood5ffbf262010-04-09 15:27:16 -040033#include <stdio.h>
Elliott Hughes12235942015-03-20 11:14:50 -070034#include <string.h>
Colin Cross9d6d0302011-01-05 15:19:31 -080035#include <time.h>
Mike Lockwood5ffbf262010-04-09 15:27:16 -040036
37static void format_time(int time, char* buffer) {
Elliott Hughes12235942015-03-20 11:14:50 -070038 int seconds = time % 60;
Mike Lockwood5ffbf262010-04-09 15:27:16 -040039 time /= 60;
Elliott Hughes12235942015-03-20 11:14:50 -070040 int minutes = time % 60;
Mike Lockwood5ffbf262010-04-09 15:27:16 -040041 time /= 60;
Elliott Hughes12235942015-03-20 11:14:50 -070042 int hours = time % 24;
43 int days = time / 24;
Mike Lockwood5ffbf262010-04-09 15:27:16 -040044
Elliott Hughes12235942015-03-20 11:14:50 -070045 if (days > 0) {
46 sprintf(buffer, "%d day%s, %02d:%02d:%02d", days, (days == 1) ? "" : "s", hours, minutes, seconds);
47 } else {
Mike Lockwood5ffbf262010-04-09 15:27:16 -040048 sprintf(buffer, "%02d:%02d:%02d", hours, minutes, seconds);
Elliott Hughes12235942015-03-20 11:14:50 -070049 }
Mike Lockwood5ffbf262010-04-09 15:27:16 -040050}
51
Elliott Hughes12235942015-03-20 11:14:50 -070052int uptime_main(int argc __attribute__((unused)), char *argv[] __attribute__((unused))) {
Mike Lockwood5ffbf262010-04-09 15:27:16 -040053 FILE* file = fopen("/proc/uptime", "r");
54 if (!file) {
55 fprintf(stderr, "Could not open /proc/uptime\n");
56 return -1;
57 }
Elliott Hughes12235942015-03-20 11:14:50 -070058 float idle_time;
Colin Cross9d6d0302011-01-05 15:19:31 -080059 if (fscanf(file, "%*f %f", &idle_time) != 1) {
Mike Lockwood5ffbf262010-04-09 15:27:16 -040060 fprintf(stderr, "Could not parse /proc/uptime\n");
61 fclose(file);
62 return -1;
63 }
64 fclose(file);
65
Elliott Hughes12235942015-03-20 11:14:50 -070066 struct timespec up_timespec;
67 if (clock_gettime(CLOCK_MONOTONIC, &up_timespec) == -1) {
68 fprintf(stderr, "Could not get monotonic time: %s\n", strerror(errno));
Colin Cross9d6d0302011-01-05 15:19:31 -080069 return -1;
70 }
Elliott Hughes12235942015-03-20 11:14:50 -070071 float up_time = up_timespec.tv_sec + up_timespec.tv_nsec / 1e9;
Colin Cross9d6d0302011-01-05 15:19:31 -080072
Elliott Hughes12235942015-03-20 11:14:50 -070073 struct timespec elapsed_timespec;
74 if (clock_gettime(CLOCK_BOOTTIME, &elapsed_timespec) == -1) {
75 fprintf(stderr, "Could not get boot time: %s\n", strerror(errno));
Mike Lockwood5ffbf262010-04-09 15:27:16 -040076 return -1;
77 }
Elliott Hughes12235942015-03-20 11:14:50 -070078 int elapsed = elapsed_timespec.tv_sec;
Mike Lockwood5ffbf262010-04-09 15:27:16 -040079
Elliott Hughes12235942015-03-20 11:14:50 -070080 char up_string[100], idle_string[100], sleep_string[100];
Mike Lockwood5ffbf262010-04-09 15:27:16 -040081 format_time(elapsed, up_string);
82 format_time((int)idle_time, idle_string);
83 format_time((int)(elapsed - up_time), sleep_string);
84 printf("up time: %s, idle time: %s, sleep time: %s\n", up_string, idle_string, sleep_string);
85
86 return 0;
87}