Print this page
2849 uptime should use locale settings for current time

@@ -75,11 +75,11 @@
 #define NMAX    (sizeof (((struct utmpx *)0)->ut_user))
 #define LMAX    (sizeof (((struct utmpx *)0)->ut_line))
 
 /* Print minimum field widths. */
 #define LOGIN_WIDTH     8
-#define LINE_WIDTH      12
+#define LINE_WIDTH      8
 
 #define DIV60(t)        ((t+30)/60)    /* x/60 rounded */
 
 #ifdef ERR
 #undef ERR

@@ -131,13 +131,12 @@
 static void     clnarglist(char *);
 static void     showproc(struct uproc *);
 static void     showtotals(struct uproc *);
 static void     calctotals(struct uproc *);
 static char     *getty(dev_t);
-static void     prttime(time_t, char *);
+static void     prttime(time_t, int);
 static void     prtat(time_t *);
-static void     checkampm(char *);
 
 static char     *prog;
 static int      header = 1;     /* true if -h flag: don't print heading */
 static int      lflag = 0;      /* true if -l flag: w command format */
 static char     *sel_user;      /* login of particular user selected */

@@ -281,19 +280,20 @@
 
                         ut = utmpbegin; /* rewind utmp data */
                         (void) printf(dcgettext(NULL,
                             "  %d user(s)\n", LC_TIME), nusers);
                         (void) printf(dcgettext(NULL, "User     tty           "
-                            "login@  idle   JCPU   PCPU  what\n", LC_TIME));
+                            "login@      idle    JCPU    PCPU    what\n",
+                            LC_TIME));
                 } else {        /* standard whodo header */
                         char date_buf[100];
 
                         /*
                          * print current time and date
                          */
                         (void) strftime(date_buf, sizeof (date_buf),
-                            dcgettext(NULL, "%C", LC_TIME), localtime(&now));
+                            "%c", localtime(&now));
                         (void) printf("%s\n", date_buf);
 
                         /*
                          * print system name
                          */

@@ -472,24 +472,20 @@
                         /* print login name of the user */
                         (void) printf("%-*.*s ", LOGIN_WIDTH, (int)NMAX,
                             ut->ut_name);
 
                         /* print tty user is on */
-                        (void) printf("%-*.*s", LINE_WIDTH, (int)LMAX,
+                        (void) printf("%-*.*s ", LINE_WIDTH, (int)LMAX,
                             ut->ut_line);
 
                         /* print when the user logged in */
                         tim = ut->ut_xtime;
                         (void) prtat(&tim);
 
                         /* print idle time */
                         idle = findidle(ut->ut_line);
-                        if (idle >= 36 * 60)
-                                (void) printf(dcgettext(NULL, "%2ddays ",
-                                    LC_TIME), (idle + 12 * 60) / (24 * 60));
-                        else
-                                prttime(idle, " ");
+                        prttime(idle, 8);
                         showtotals(findhash((pid_t)ut->ut_pid));
                 } else {        /* standard whodo format */
                         tim = ut->ut_xtime;
                         tm = localtime(&tim);
                         (void) printf("\n%-*.*s %-*.*s %2.1d:%2.2d\n",

@@ -560,18 +556,18 @@
         (void) strcpy(doing, "-"); /* default act: normally never prints */
         calctotals(up);
 
         /* print CPU time for all processes & children */
         /* and need to convert clock ticks to seconds first */
-        prttime((time_t)jobtime, " ");
+        prttime((time_t)jobtime, 8);
 
         /* print cpu time for interesting process */
         /* and need to convert clock ticks to seconds first */
-        prttime((time_t)proctime, " ");
+        prttime((time_t)proctime, 8);
 
         /* what user is doing, current process */
-        (void) printf(" %-.32s\n", doing);
+        (void) printf("%-.32s\n", doing);
 }
 
 /*
  *  Used for -l flag (w command) format.
  *  This recursive routine descends the process

@@ -736,56 +732,71 @@
 #define HR      (60 * 60)
 #define DAY     (24 * HR)
 #define MON     (30 * DAY)
 
 /*
- * prints a time in hours and minutes or minutes and seconds.
- * The character string 'tail' is printed at the end, obvious
- * strings to pass are "", " ", or "am".
+ * prttime prints a time in days, hours, minutes, or seconds.
+ * The second argument is the field width.
  */
 static void
-prttime(time_t tim, char *tail)
+prttime(time_t tim, int width)
 {
-        if (tim >= 60)
-                (void) printf(dcgettext(NULL, "%3d:%02d", LC_TIME),
-                    (int)tim/60, (int)tim%60);
-        else if (tim > 0)
-                (void) printf(dcgettext(NULL, "    %2d", LC_TIME), (int)tim);
-        else
-                (void) printf("      ");
-        (void) printf("%s", tail);
+        char value[12];
+        char *unit;
+
+        if (tim >= 36 * HR) {
+                (void) snprintf(value, sizeof (value), "%d",
+                    (tim + (DAY / 2)) / (DAY));
+                unit = dcgettext(NULL, "days", LC_TIME);
+        } else if (tim >= 36 * 60) {
+                (void) snprintf(value, sizeof (value), "%d",
+                    (tim + (HR / 2)) / (HR));
+                unit = dcgettext(NULL, "hours", LC_TIME);
+        } else if (tim >= 60) {
+                (void) snprintf(value, sizeof (value), "%d",
+                    (tim + 30) / 60);
+                unit = dcgettext(NULL, "mins", LC_TIME);
+        } else if (tim > 0) {
+                (void) snprintf(value, sizeof (value), "%d", (int)tim);
+                unit = dcgettext(NULL, "secs", LC_TIME);
+        } else {
+                (void) strcpy(value, "0");
+                unit = " ";
+        }
+        width -= 2 + strlen(value);
+        width = (width > 1) ? width : 1;
+        printf("%s %-*s ", value, width, unit);
 }
 
 
 /*
- * prints a 12 hour time given a pointer to a time of day
+ * prints a locale-specific time given a pointer to a time of day
  */
 static void
 prtat(time_t *time)
 {
         struct tm *p;
 
         p = localtime(time);
         if (now - *time <= 18 * HR) {
                 char timestr[50];
+
                 (void) strftime(timestr, sizeof (timestr),
-                    dcgettext(NULL, " %l:%M""%p", LC_TIME), p);
-                checkampm(timestr);
-                (void) printf("%s", timestr);
+                    "%X", p);
+                printf("%-11s ", timestr);
         } else if (now - *time <= 7 * DAY) {
                 char weekdaytime[20];
 
                 (void) strftime(weekdaytime, sizeof (weekdaytime),
-                    dcgettext(NULL, "%a%l%p", LC_TIME), p);
-                checkampm(weekdaytime);
-                (void) printf(" %s", weekdaytime);
+                    "%d %b", p);
+                printf("%-11s ", weekdaytime);
         } else {
                 char monthtime[20];
 
                 (void) strftime(monthtime, sizeof (monthtime),
-                    dcgettext(NULL, "%e%b%y", LC_TIME), p);
-                (void) printf(" %s", monthtime);
+                    "%b %Y", p);
+                printf("%-11s ", monthtime);
         }
 }
 
 /*
  * find & return number of minutes current tty has been idle

@@ -828,17 +839,5 @@
                         }
                         *c = '?';
                 }
         }
 }
-
-/* replaces all occurences of AM/PM with am/pm */
-static void
-checkampm(char *str)
-{
-        char *ampm;
-        while ((ampm = strstr(str, "AM")) != NULL ||
-            (ampm = strstr(str, "PM")) != NULL) {
-                *ampm = tolower(*ampm);
-                *(ampm+1) = tolower(*(ampm+1));
-        }
-}