Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F160998427
D34541.id.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
5 KB
Referenced Files
None
Subscribers
None
D34541.id.diff
View Options
Index: usr.bin/who/Makefile
===================================================================
--- usr.bin/who/Makefile
+++ usr.bin/who/Makefile
@@ -2,5 +2,6 @@
# $FreeBSD$
PROG= who
+LIBADD= xo
.include <bsd.prog.mk>
Index: usr.bin/who/who.c
===================================================================
--- usr.bin/who/who.c
+++ usr.bin/who/who.c
@@ -48,6 +48,7 @@
#include <timeconv.h>
#include <unistd.h>
#include <utmpx.h>
+#include <libxo/xo.h>
static void heading(void);
static void process_utmp(void);
@@ -73,6 +74,8 @@
setlocale(LC_TIME, "");
+ argc = xo_parse_args(argc, argv);
+
while ((ch = getopt(argc, argv, "HTabmqsu")) != -1) {
switch (ch) {
case 'H': /* Write column headings */
@@ -122,20 +125,26 @@
err(1, "%s", *argv);
}
- if (qflag)
+ xo_open_container("who");
+
+ if (qflag) {
quick();
- else {
+ } else {
if (sflag)
Tflag = uflag = 0;
if (Hflag)
heading();
+ xo_open_list("entry");
if (mflag)
whoami();
else
process_utmp();
+ xo_close_list("entry");
}
endutxent();
+ xo_close_container("who");
+ xo_finish();
exit(0);
}
@@ -144,7 +153,8 @@
usage(void)
{
- fprintf(stderr, "usage: who [-abHmqsTu] [am I] [file]\n");
+ xo_error("usage: who [-abHmqsTu] [am I] [file]\n");
+ xo_finish();
exit(1);
}
@@ -152,13 +162,15 @@
heading(void)
{
- printf("%-16s ", "NAME");
- if (Tflag)
- printf("S ");
- printf("%-12s %-12s ", "LINE", "TIME");
- if (uflag)
- printf("IDLE ");
- printf("%-16s\n", "FROM");
+ if (xo_get_style(NULL) == XO_STYLE_TEXT) {
+ xo_emit("{:headingname/%-16s} ", "NAME");
+ if (Tflag)
+ xo_emit("%s", "S ");
+ xo_emit("{:headingline/%-12s} {:headingtime/%-12s} ", "LINE", "TIME");
+ if (uflag)
+ xo_emit("{:idle/%s}", "IDLE ");
+ xo_emit("{:headingfrom/%-16s}\n", "FROM");
+ }
}
static void
@@ -171,6 +183,7 @@
struct tm *tm;
char state;
+ xo_open_instance("entry");
if (d_first < 0)
d_first = (*nl_langinfo(D_MD_ORDER) == 'd');
@@ -185,29 +198,64 @@
}
}
- printf("%-16s ", ut->ut_user);
- if (Tflag)
- printf("%c ", state);
+ if (xo_get_style(NULL) != XO_STYLE_TEXT)
+ xo_emit("{:name/%s}", ut->ut_user);
+ else
+ xo_emit("{:name/%-16s} ", ut->ut_user);
+ if (Tflag) {
+ if (xo_get_style(NULL) != XO_STYLE_TEXT) {
+ xo_emit("{:state/%c}", state);
+ } else {
+ xo_emit("{:state/%c} ", state);
+ }
+ }
+
if (ut->ut_type == BOOT_TIME)
- printf("%-12s ", "system boot");
+ if (xo_get_style(NULL) != XO_STYLE_TEXT)
+ xo_emit("{:line/%s}", "system boot");
+ else
+ xo_emit("{:line/%-12s} ", "system boot");
else
- printf("%-12s ", ut->ut_line);
+ if (xo_get_style(NULL) != XO_STYLE_TEXT)
+ xo_emit("{:line/%s}", ut->ut_line);
+ else
+ xo_emit("{:line/%-12s} ", ut->ut_line);
t = ut->ut_tv.tv_sec;
tm = localtime(&t);
strftime(buf, sizeof(buf), d_first ? "%e %b %R" : "%b %e %R", tm);
- printf("%-*s ", 12, buf);
+ if (xo_get_style(NULL) != XO_STYLE_TEXT)
+ xo_emit("{:time/%s}", buf);
+ else
+ xo_emit("{:time/%-12s} ", buf);
if (uflag) {
- if (idle < 60)
- printf(" . ");
- else if (idle < 24 * 60 * 60)
- printf("%02d:%02d ", (int)(idle / 60 / 60),
- (int)(idle / 60 % 60));
- else
- printf(" old ");
+ if (idle < 60) {
+ if (xo_get_style(NULL) != XO_STYLE_TEXT) {
+ xo_emit("{:idle/%s}", ".");
+ } else {
+ xo_emit("{:idle/%s}", " . ");
+ }
+ } else if (idle < 24 * 60 * 60) {
+ if (xo_get_style(NULL) != XO_STYLE_TEXT) {
+ xo_emit("{:idle/%02d:%02d}", (int)(idle / 60 / 60), (int)(idle / 60 % 60));
+ } else {
+ xo_emit("{:idle/%02d:%02d} ", (int)(idle / 60 / 60), (int)(idle / 60 % 60));
+ }
+ } else {
+ if (xo_get_style(NULL) != XO_STYLE_TEXT) {
+ xo_emit("{:idle/%s}", "old");
+ } else {
+ xo_emit("{:idle/%s}", " old ");
+ }
+ }
+ }
+ if (*ut->ut_host != '\0') {
+ xo_emit("{:host/(%s)}", ut->ut_host);
+ } else {
+ xo_emit("{:host/%s}", "");
}
- if (*ut->ut_host != '\0')
- printf("(%s)", ut->ut_host);
- putchar('\n');
+ if (xo_get_style(NULL) == XO_STYLE_TEXT)
+ xo_emit("\n");
+ xo_close_instance("entry");
}
static int
@@ -247,22 +295,31 @@
ncols = ttywidth();
col = num = 0;
+ xo_open_list("entry");
while ((utx = getutxent()) != NULL) {
if (utx->ut_type != USER_PROCESS)
continue;
- printf("%-16s", utx->ut_user);
- if (++col < ncols / (16 + 1))
- putchar(' ');
- else {
- col = 0;
- putchar('\n');
+ xo_open_instance("entry");
+ if (xo_get_style(NULL) == XO_STYLE_TEXT)
+ xo_emit("{:name/%-16s}", utx->ut_user);
+ else
+ xo_emit("{:name/%s}", utx->ut_user);
+ if (xo_get_style(NULL) == XO_STYLE_TEXT) {
+ if (++col < ncols / (16 + 1))
+ xo_emit(" ");
+ else {
+ col = 0;
+ xo_emit("\n");
+ }
}
num++;
+ xo_close_instance("entry");
}
if (col != 0)
- putchar('\n');
+ xo_emit("\n");
- printf("# users = %d\n", num);
+ xo_close_list("entry");
+ xo_emit("# users = {:users/%d}\n", num);
}
static void
@@ -307,7 +364,7 @@
width = strtol(cols, &ep, 10);
if (errno || width <= 0 || width > INT_MAX || ep == cols ||
*ep != '\0')
- warnx("invalid COLUMNS environment variable ignored");
+ xo_warnx("invalid COLUMNS environment variable ignored");
else
return (width);
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Jun 30, 5:33 PM (17 h, 21 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
34515859
Default Alt Text
D34541.id.diff (5 KB)
Attached To
Mode
D34541: who: add libxo support
Attached
Detach File
Event Timeline
Log In to Comment