1 /* $NetBSD: cfscores.c,v 1.20 2010/01/01 06:37:16 dholland Exp $ */
4 * Copyright (c) 1983, 1993
5 * The Regents of the University of California. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of the University nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 #include <sys/cdefs.h>
34 __COPYRIGHT("@(#) Copyright (c) 1983, 1993\
35 The Regents of the University of California. All rights reserved.");
40 static char sccsid
[] = "@(#)cfscores.c 8.1 (Berkeley) 5/31/93";
42 __RCSID("$NetBSD: cfscores.c,v 1.20 2010/01/01 06:37:16 dholland Exp $");
46 #include <sys/types.h>
55 #include "pathnames.h"
59 static void printuser(const struct passwd
*, int);
62 main(int argc
, char *argv
[])
67 /* Revoke setgid privileges */
71 fprintf(stderr
, "Usage: %s -a | %s [user]\n",
72 getprogname(), getprogname());
75 dbfd
= open(_PATH_SCORE
, O_RDONLY
);
77 err(2, "open %s", _PATH_SCORE
);
83 errx(2, "You are not listed in the password file?!?");
88 if (strcmp(argv
[1], "-a") == 0) {
89 while ((pw
= getpwent()) != NULL
)
93 pw
= getpwnam(argv
[1]);
95 errx(3, "User %s unknown", argv
[1]);
102 * print out info for specified password entry
105 printuser(const struct passwd
*pw
, int printfail
)
107 struct betinfo total
;
111 pos
= pw
->pw_uid
* (off_t
)sizeof(struct betinfo
);
112 /* test pos, not pw_uid; uid_t can be unsigned, which makes gcc warn */
114 warnx("Bad uid %d", (int)pw
->pw_uid
);
117 i
= lseek(dbfd
, pos
, SEEK_SET
);
119 warn("lseek %s", _PATH_SCORE
);
120 i
= read(dbfd
, &total
, sizeof(total
));
122 warn("read %s", _PATH_SCORE
);
123 if (i
== 0 || total
.hand
== 0) {
125 printf("%s has never played canfield.\n", pw
->pw_name
);
128 printf("*----------------------*\n");
129 if (total
.worth
>= 0)
130 printf("* Winnings for %-8s*\n", pw
->pw_name
);
132 printf("* Losses for %-10s*\n", pw
->pw_name
);
133 printf("*======================*\n");
134 printf("|Costs Total |\n");
135 printf("| Hands %8ld |\n", total
.hand
);
136 printf("| Inspections %8ld |\n", total
.inspection
);
137 printf("| Games %8ld |\n", total
.game
);
138 printf("| Runs %8ld |\n", total
.runs
);
139 printf("| Information %8ld |\n", total
.information
);
140 printf("| Think time %8ld |\n", total
.thinktime
);
141 printf("|Total Costs %8ld |\n", total
.wins
- total
.worth
);
142 printf("|Winnings %8ld |\n", total
.wins
);
143 printf("|Net Worth %8ld |\n", total
.worth
);
144 printf("*----------------------*\n\n");