Home | History | Annotate | Line # | Download | only in finger
sprint.c revision 1.4
      1  1.1      cgd /*
      2  1.1      cgd  * Copyright (c) 1989 The Regents of the University of California.
      3  1.1      cgd  * All rights reserved.
      4  1.1      cgd  *
      5  1.1      cgd  * This code is derived from software contributed to Berkeley by
      6  1.1      cgd  * Tony Nardo of the Johns Hopkins University/Applied Physics Lab.
      7  1.1      cgd  *
      8  1.1      cgd  * Redistribution and use in source and binary forms, with or without
      9  1.1      cgd  * modification, are permitted provided that the following conditions
     10  1.1      cgd  * are met:
     11  1.1      cgd  * 1. Redistributions of source code must retain the above copyright
     12  1.1      cgd  *    notice, this list of conditions and the following disclaimer.
     13  1.1      cgd  * 2. Redistributions in binary form must reproduce the above copyright
     14  1.1      cgd  *    notice, this list of conditions and the following disclaimer in the
     15  1.1      cgd  *    documentation and/or other materials provided with the distribution.
     16  1.1      cgd  * 3. All advertising materials mentioning features or use of this software
     17  1.1      cgd  *    must display the following acknowledgement:
     18  1.1      cgd  *	This product includes software developed by the University of
     19  1.1      cgd  *	California, Berkeley and its contributors.
     20  1.1      cgd  * 4. Neither the name of the University nor the names of its contributors
     21  1.1      cgd  *    may be used to endorse or promote products derived from this software
     22  1.1      cgd  *    without specific prior written permission.
     23  1.1      cgd  *
     24  1.1      cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     25  1.1      cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     26  1.1      cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     27  1.1      cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     28  1.1      cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     29  1.1      cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     30  1.1      cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     31  1.1      cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     32  1.1      cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     33  1.1      cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     34  1.1      cgd  * SUCH DAMAGE.
     35  1.1      cgd  */
     36  1.1      cgd 
     37  1.1      cgd #ifndef lint
     38  1.2  mycroft /*static char sccsid[] = "from: @(#)sprint.c	5.8 (Berkeley) 12/4/90";*/
     39  1.4    lukem static char rcsid[] = "$Id: sprint.c,v 1.4 1996/11/21 06:01:51 lukem Exp $";
     40  1.1      cgd #endif /* not lint */
     41  1.1      cgd 
     42  1.1      cgd #include <sys/types.h>
     43  1.1      cgd #include <sys/time.h>
     44  1.1      cgd #include <tzfile.h>
     45  1.1      cgd #include <stdio.h>
     46  1.4    lukem #include <stdlib.h>
     47  1.1      cgd #include "finger.h"
     48  1.4    lukem #include "extern.h"
     49  1.1      cgd 
     50  1.4    lukem void
     51  1.1      cgd sflag_print()
     52  1.1      cgd {
     53  1.4    lukem 	PERSON *pn;
     54  1.4    lukem 	WHERE *w;
     55  1.4    lukem 	int cnt;
     56  1.4    lukem 	char *p;
     57  1.4    lukem 	PERSON **list;
     58  1.1      cgd 
     59  1.1      cgd 	list = sort();
     60  1.1      cgd 	/*
     61  1.1      cgd 	 * short format --
     62  1.1      cgd 	 *	login name
     63  1.1      cgd 	 *	real name
     64  1.1      cgd 	 *	terminal name (the XX of ttyXX)
     65  1.1      cgd 	 *	if terminal writeable (add an '*' to the terminal name
     66  1.1      cgd 	 *		if not)
     67  1.1      cgd 	 *	if logged in show idle time and day logged in, else
     68  1.4    lukem 	 *		show last login date and time.  If > 6 months,
     69  1.4    lukem 	 *		show year instead of time.  If < 6 days,
     70  1.4    lukem 	 *		show day name instead of month & day.
     71  1.4    lukem 	 *	if -h given
     72  1.4    lukem 	 *		remote host
     73  1.4    lukem 	 *	else if -o given (overriding -h) (default)
     74  1.4    lukem 	 *		office location
     75  1.4    lukem 	 *		office phone
     76  1.1      cgd 	 */
     77  1.1      cgd #define	MAXREALNAME	20
     78  1.4    lukem #define	MAXHOSTNAME	20
     79  1.4    lukem 	(void)printf("%-*s %-*s %s  %s\n", UT_NAMESIZE, "Login", MAXREALNAME,
     80  1.4    lukem 	    "Name", "Tty  Idle   Login Time",
     81  1.4    lukem 	    (oflag) ? "Office     Office Phone" : "Where");
     82  1.1      cgd 	for (cnt = 0; cnt < entries; ++cnt) {
     83  1.1      cgd 		pn = list[cnt];
     84  1.1      cgd 		for (w = pn->whead; w != NULL; w = w->next) {
     85  1.1      cgd 			(void)printf("%-*.*s %-*.*s ", UT_NAMESIZE, UT_NAMESIZE,
     86  1.1      cgd 			    pn->name, MAXREALNAME, MAXREALNAME,
     87  1.1      cgd 			    pn->realname ? pn->realname : "");
     88  1.1      cgd 			if (!w->loginat) {
     89  1.1      cgd 				(void)printf("  *     *  No logins   ");
     90  1.1      cgd 				goto office;
     91  1.1      cgd 			}
     92  1.1      cgd 			(void)putchar(w->info == LOGGEDIN && !w->writable ?
     93  1.1      cgd 			    '*' : ' ');
     94  1.1      cgd 			if (*w->tty)
     95  1.1      cgd 				(void)printf("%-2.2s ",
     96  1.1      cgd 				    w->tty[0] != 't' || w->tty[1] != 't' ||
     97  1.1      cgd 				    w->tty[2] != 'y' ? w->tty : w->tty + 3);
     98  1.1      cgd 			else
     99  1.1      cgd 				(void)printf("   ");
    100  1.1      cgd 			if (w->info == LOGGEDIN) {
    101  1.1      cgd 				stimeprint(w);
    102  1.1      cgd 				(void)printf("  ");
    103  1.1      cgd 			} else
    104  1.1      cgd 				(void)printf("    *  ");
    105  1.1      cgd 			p = ctime(&w->loginat);
    106  1.4    lukem 			if (now - w->loginat < SECSPERDAY * (DAYSPERWEEK - 1))
    107  1.4    lukem 				(void)printf("  %.3s ", p);
    108  1.4    lukem 			else
    109  1.4    lukem 				(void)printf("%.6s", p + 4);
    110  1.1      cgd 			if (now - w->loginat >= SECSPERDAY * DAYSPERNYEAR / 2)
    111  1.1      cgd 				(void)printf("  %.4s", p + 20);
    112  1.1      cgd 			else
    113  1.1      cgd 				(void)printf(" %.5s", p + 11);
    114  1.4    lukem office:
    115  1.4    lukem 			putchar(' ');
    116  1.4    lukem 			if (oflag) {
    117  1.4    lukem 				if (pn->office)
    118  1.4    lukem 					(void)printf("%-10.10s", pn->office);
    119  1.4    lukem 				else if (pn->officephone)
    120  1.4    lukem 					(void)printf("%-10.10s", " ");
    121  1.4    lukem 				if (pn->officephone)
    122  1.4    lukem 					(void)printf(" %-.15s",
    123  1.4    lukem 						    prphone(pn->officephone));
    124  1.4    lukem 			} else
    125  1.4    lukem 				(void)printf("%.*s", MAXHOSTNAME, w->host);
    126  1.1      cgd 			putchar('\n');
    127  1.1      cgd 		}
    128  1.1      cgd 	}
    129  1.1      cgd }
    130  1.1      cgd 
    131  1.1      cgd PERSON **
    132  1.1      cgd sort()
    133  1.1      cgd {
    134  1.4    lukem 	PERSON *pn, **lp;
    135  1.1      cgd 	PERSON **list;
    136  1.1      cgd 
    137  1.1      cgd 	if (!(list = (PERSON **)malloc((u_int)(entries * sizeof(PERSON *))))) {
    138  1.1      cgd 		(void)fprintf(stderr, "finger: out of space.\n");
    139  1.1      cgd 		exit(1);
    140  1.1      cgd 	}
    141  1.1      cgd 	for (lp = list, pn = phead; pn != NULL; pn = pn->next)
    142  1.1      cgd 		*lp++ = pn;
    143  1.1      cgd 	(void)qsort(list, entries, sizeof(PERSON *), psort);
    144  1.1      cgd 	return(list);
    145  1.1      cgd }
    146  1.1      cgd 
    147  1.4    lukem int
    148  1.1      cgd psort(p, t)
    149  1.4    lukem 	const void *p, *t;
    150  1.1      cgd {
    151  1.4    lukem 	return(strcmp((*(PERSON **)p)->name, (*(PERSON **)t)->name));
    152  1.1      cgd }
    153  1.1      cgd 
    154  1.4    lukem void
    155  1.1      cgd stimeprint(w)
    156  1.1      cgd 	WHERE *w;
    157  1.1      cgd {
    158  1.4    lukem 	struct tm *delta;
    159  1.1      cgd 
    160  1.1      cgd 	delta = gmtime(&w->idletime);
    161  1.1      cgd 	if (!delta->tm_yday)
    162  1.1      cgd 		if (!delta->tm_hour)
    163  1.1      cgd 			if (!delta->tm_min)
    164  1.3  mycroft 				(void)printf("    -");
    165  1.1      cgd 			else
    166  1.1      cgd 				(void)printf("%5d", delta->tm_min);
    167  1.1      cgd 		else
    168  1.1      cgd 			(void)printf("%2d:%02d",
    169  1.1      cgd 			    delta->tm_hour, delta->tm_min);
    170  1.1      cgd 	else
    171  1.1      cgd 		(void)printf("%4dd", delta->tm_yday);
    172  1.1      cgd }
    173