Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most
[dragonfly.git] / usr.bin / finger / sprint.c
1 /*
2  * Copyright (c) 1989, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * Tony Nardo of the Johns Hopkins University/Applied Physics Lab.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
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. All advertising materials mentioning features or use of this software
17  *    must display the following acknowledgement:
18  *      This product includes software developed by the University of
19  *      California, Berkeley and its contributors.
20  * 4. Neither the name of the University nor the names of its contributors
21  *    may be used to endorse or promote products derived from this software
22  *    without specific prior written permission.
23  *
24  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34  * SUCH DAMAGE.
35  *
36  * @(#)sprint.c 8.3 (Berkeley) 4/28/95
37  * $FreeBSD: src/usr.bin/finger/sprint.c,v 1.11.2.5 2002/07/03 01:14:24 des Exp $
38  * $DragonFly: src/usr.bin/finger/sprint.c,v 1.2 2003/06/17 04:29:26 dillon Exp $
39  */
40
41 #include <db.h>
42 #include <err.h>
43 #include <langinfo.h>
44 #include <pwd.h>
45 #include <stdio.h>
46 #include <string.h>
47 #include <time.h>
48 #include <utmp.h>
49 #include "finger.h"
50
51 static void       stimeprint(WHERE *);
52
53 void
54 sflag_print()
55 {
56         extern time_t now;
57         extern int    oflag;
58         PERSON *pn;
59         WHERE *w;
60         int sflag, r, namelen;
61         char p[80];
62         PERSON *tmp;
63         DBT data, key;
64         struct tm *lc;
65
66         if (d_first < 0)
67                 d_first = (*nl_langinfo(D_MD_ORDER) == 'd');
68         /*
69          * short format --
70          *      login name
71          *      real name
72          *      terminal name (the XX of ttyXX)
73          *      if terminal writeable (add an '*' to the terminal name
74          *              if not)
75          *      if logged in show idle time and day logged in, else
76          *              show last login date and time.
77          *              If > 6 months, show year instead of time.
78          *      if (-o)
79          *              office location
80          *              office phone
81          *      else
82          *              remote host
83          */
84 #define MAXREALNAME     20
85 #define MAXHOSTNAME     17      /* in reality, hosts are never longer than 16 */
86         (void)printf("%-*s %-*s%s  %s\n", UT_NAMESIZE, "Login", MAXREALNAME,
87             "Name", " TTY  Idle  Login  Time ", (gflag) ? "" :
88             oflag ? "Office  Phone" : "Where");
89
90         for (sflag = R_FIRST;; sflag = R_NEXT) {
91                 r = (*db->seq)(db, &key, &data, sflag);
92                 if (r == -1)
93                         err(1, "db seq");
94                 if (r == 1)
95                         break;
96                 memmove(&tmp, data.data, sizeof tmp);
97                 pn = tmp;
98
99                 for (w = pn->whead; w != NULL; w = w->next) {
100                         namelen = MAXREALNAME;
101                         if (w->info == LOGGEDIN && !w->writable)
102                                 --namelen;      /* leave space before `*' */
103                         (void)printf("%-*.*s %-*.*s", UT_NAMESIZE, UT_NAMESIZE,
104                                 pn->name, MAXREALNAME, namelen,
105                                 pn->realname ? pn->realname : "");
106                         if (!w->loginat) {
107                                 (void)printf("  *     *   No logins   ");
108                                 goto office;
109                         }
110                         (void)putchar(w->info == LOGGEDIN && !w->writable ?
111                             '*' : ' ');
112                         if (*w->tty)
113                                 (void)printf("%-3.3s ",
114                                              (strncmp(w->tty, "tty", 3)
115                                               && strncmp(w->tty, "cua", 3))
116                                              ? w->tty : w->tty + 3);
117                         else
118                                 (void)printf("    ");
119                         if (w->info == LOGGEDIN) {
120                                 stimeprint(w);
121                                 (void)printf("  ");
122                         } else
123                                 (void)printf("    *  ");
124                         lc = localtime(&w->loginat);
125 #define SECSPERDAY 86400
126 #define DAYSPERWEEK 7
127 #define DAYSPERNYEAR 365
128                         if (now - w->loginat < SECSPERDAY * (DAYSPERWEEK - 1)) {
129                                 (void)strftime(p, sizeof(p), "%a", lc);
130                         } else {
131                                 (void)strftime(p, sizeof(p),
132                                              d_first ? "%e %b" : "%b %e", lc);
133                         }
134                         (void)printf("%-6.6s", p);
135                         if (now - w->loginat >= SECSPERDAY * DAYSPERNYEAR / 2) {
136                                 (void)strftime(p, sizeof(p), "%Y", lc);
137                         } else {
138                                 (void)strftime(p, sizeof(p), "%R", lc);
139                         }
140                         (void)printf(" %-5.5s", p);
141 office:
142                         if (gflag)
143                                 goto no_gecos;
144                         if (oflag) {
145                                 if (pn->office)
146                                         (void)printf(" %-7.7s", pn->office);
147                                 else if (pn->officephone)
148                                         (void)printf(" %-7.7s", " ");
149                                 if (pn->officephone)
150                                         (void)printf(" %-.9s",
151                                             prphone(pn->officephone));
152                         } else
153                                 (void)printf(" %.*s", MAXHOSTNAME, w->host);
154 no_gecos:
155                         putchar('\n');
156                 }
157         }
158 }
159
160 static void
161 stimeprint(w)
162         WHERE *w;
163 {
164         struct tm *delta;
165
166         delta = gmtime(&w->idletime);
167         if (!delta->tm_yday)
168                 if (!delta->tm_hour)
169                         if (!delta->tm_min)
170                                 (void)printf("     ");
171                         else
172                                 (void)printf("%5d", delta->tm_min);
173                 else
174                         (void)printf("%2d:%02d",
175                             delta->tm_hour, delta->tm_min);
176         else
177                 (void)printf("%4dd", delta->tm_yday);
178 }