2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley by
6 * Tony Nardo of the Johns Hopkins University/Applied Physics Lab.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the name of the University nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * @(#)sprint.c 8.3 (Berkeley) 4/28/95
33 * $FreeBSD: src/usr.bin/finger/sprint.c,v 1.11.2.5 2002/07/03 01:14:24 des Exp $
34 * $DragonFly: src/usr.bin/finger/sprint.c,v 1.4 2008/02/09 17:12:05 matthias Exp $
37 #include <sys/socket.h>
48 static void stimeprint(WHERE
*);
55 int sflag
, r
, namelen
;
62 d_first
= (*nl_langinfo(D_MD_ORDER
) == 'd');
67 * terminal name (the XX of ttyXX)
68 * if terminal writeable (add an '*' to the terminal name
70 * if logged in show idle time and day logged in, else
71 * show last login date and time.
72 * If > 6 months, show year instead of time.
79 #define MAXREALNAME 20
80 #define MAXHOSTNAME 17 /* in reality, hosts are never longer than 16 */
81 (void)printf("%-*s %-*s%s %s\n", UT_NAMESIZE
, "Login", MAXREALNAME
,
82 "Name", " TTY Idle Login Time ", (gflag
) ? "" :
83 oflag
? "Office Phone" : "Where");
85 for (sflag
= R_FIRST
;; sflag
= R_NEXT
) {
86 r
= (*db
->seq
)(db
, &key
, &data
, sflag
);
91 memmove(&tmp
, data
.data
, sizeof tmp
);
94 for (w
= pn
->whead
; w
!= NULL
; w
= w
->next
) {
95 namelen
= MAXREALNAME
;
96 if (w
->info
== LOGGEDIN
&& !w
->writable
)
97 --namelen
; /* leave space before `*' */
98 (void)printf("%-*.*s %-*.*s", UT_NAMESIZE
, UT_NAMESIZE
,
99 pn
->name
, MAXREALNAME
, namelen
,
100 pn
->realname
? pn
->realname
: "");
102 (void)printf(" * * No logins ");
105 (void)putchar(w
->info
== LOGGEDIN
&& !w
->writable
?
108 (void)printf("%-3.3s ",
109 (strncmp(w
->tty
, "tty", 3)
110 && strncmp(w
->tty
, "cua", 3))
111 ? w
->tty
: w
->tty
+ 3);
114 if (w
->info
== LOGGEDIN
) {
119 lc
= localtime(&w
->loginat
);
120 #define SECSPERDAY 86400
121 #define DAYSPERWEEK 7
122 #define DAYSPERNYEAR 365
123 if (now
- w
->loginat
< SECSPERDAY
* (DAYSPERWEEK
- 1)) {
124 (void)strftime(p
, sizeof(p
), "%a", lc
);
126 (void)strftime(p
, sizeof(p
),
127 d_first
? "%e %b" : "%b %e", lc
);
129 (void)printf("%-6.6s", p
);
130 if (now
- w
->loginat
>= SECSPERDAY
* DAYSPERNYEAR
/ 2) {
131 (void)strftime(p
, sizeof(p
), "%Y", lc
);
133 (void)strftime(p
, sizeof(p
), "%R", lc
);
135 (void)printf(" %-5.5s ", p
);
141 (void)printf(" %-7.7s", pn
->office
);
142 else if (pn
->officephone
)
143 (void)printf(" %-7.7s", " ");
145 (void)printf(" %-.9s",
146 prphone(pn
->officephone
));
148 (void)printf(" %.*s", MAXHOSTNAME
, w
->host
);
160 delta
= gmtime(&w
->idletime
);
166 (void)printf("%5d", delta
->tm_min
);
168 (void)printf("%2d:%02d",
169 delta
->tm_hour
, delta
->tm_min
);
171 (void)printf("%4dd", delta
->tm_yday
);