1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-30 08:09:04 +00:00
emacs/lib-src/yow.c

183 lines
3.6 KiB
C
Raw Normal View History

1990-01-02 17:15:30 +00:00
/*
* yow.c
2003-02-04 14:56:31 +00:00
*
1988-04-13 06:13:41 +00:00
* Print a quotation from Zippy the Pinhead.
* Qux <Kaufman-David@Yale> March 6, 1986
1995-04-02 07:34:28 +00:00
*
* This file is in the public domain because the author published it
* with no copyright notice before the US signed the Bern Convention.
2003-02-04 14:56:31 +00:00
*
1990-01-02 17:15:30 +00:00
* With dynamic memory allocation.
1988-04-13 06:13:41 +00:00
*/
2001-12-29 22:25:06 +00:00
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
1990-01-02 17:15:30 +00:00
#include <stdio.h>
#include <ctype.h>
#ifdef TIME_WITH_SYS_TIME
#include <sys/time.h>
#include <time.h>
#else
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#else
#include <time.h>
#endif
#endif
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include "epaths.h" /* For PATH_DATA. */
1990-01-02 17:15:30 +00:00
#define BUFSIZE 80
1988-04-13 06:13:41 +00:00
#define SEP '\0'
1990-01-02 17:15:30 +00:00
#ifndef YOW_FILE
1988-04-13 06:13:41 +00:00
#define YOW_FILE "yow.lines"
1990-01-02 17:15:30 +00:00
#endif
1988-04-13 06:13:41 +00:00
#ifdef MSDOS
#define rootrelativepath(rel) \
({\
static char res[BUFSIZE], *p;\
strcpy (res, argv[0]);\
p = res + strlen (res);\
while (p != res && *p != '/' && *p != '\\' && *p != ':') p--;\
strcpy (p + 1, "../");\
strcpy (p + 4, rel);\
&res;})
#endif
void yow();
void setup_yow();
1994-10-12 20:21:51 +00:00
int
1988-04-13 06:13:41 +00:00
main (argc, argv)
int argc;
char *argv[];
{
FILE *fp;
char file[BUFSIZ];
if (argc > 2 && !strcmp (argv[1], "-f"))
strcpy (file, argv[2]);
else
#ifdef vms
1991-12-04 22:51:54 +00:00
sprintf (file, "%s%s", PATH_DATA, YOW_FILE);
1988-04-13 06:13:41 +00:00
#else
1991-12-04 22:51:54 +00:00
sprintf (file, "%s/%s", PATH_DATA, YOW_FILE);
1988-04-13 06:13:41 +00:00
#endif
if ((fp = fopen(file, "r")) == NULL) {
fprintf(stderr, "yow: ");
1988-04-13 06:13:41 +00:00
perror(file);
exit(1);
}
/* initialize random seed */
srand((int) (getpid() + time((time_t *) 0)));
1988-04-13 06:13:41 +00:00
1990-01-02 17:15:30 +00:00
setup_yow(fp);
1988-04-13 06:13:41 +00:00
yow(fp);
fclose(fp);
1994-10-12 20:21:51 +00:00
return 0;
1988-04-13 06:13:41 +00:00
}
1990-01-02 17:15:30 +00:00
static long len = -1;
static long header_len;
#define AVG_LEN 40 /* average length of a quotation */
/* Sets len and header_len */
void
setup_yow(fp)
FILE *fp;
{
int c;
/* Get length of file */
/* Because the header (stuff before the first SEP) can be very long,
* thus biasing our search in favor of the first quotation in the file,
* we explicitly skip that. */
while ((c = getc(fp)) != SEP) {
if (c == EOF) {
fprintf(stderr, "yow: file contains no separators\n");
1990-01-02 17:15:30 +00:00
exit(2);
}
}
header_len = ftell(fp);
if (header_len > AVG_LEN)
header_len -= AVG_LEN; /* allow the first quotation to appear */
2003-02-04 14:56:31 +00:00
1990-01-02 17:15:30 +00:00
if (fseek(fp, 0L, 2) == -1) {
perror("yow");
1990-01-02 17:15:30 +00:00
exit(1);
}
len = ftell(fp) - header_len;
}
/* go to a random place in the file and print the quotation there */
1988-04-13 06:13:41 +00:00
void
yow (fp)
FILE *fp;
{
long offset;
int c, i = 0;
1990-01-02 17:15:30 +00:00
char *buf;
unsigned int bufsize;
1988-04-13 06:13:41 +00:00
1990-01-02 17:15:30 +00:00
offset = rand() % len + header_len;
1988-04-13 06:13:41 +00:00
if (fseek(fp, offset, 0) == -1) {
perror("yow");
1988-04-13 06:13:41 +00:00
exit(1);
}
/* Read until SEP, read next line, print it.
1993-06-09 11:59:12 +00:00
(Note that we will never print anything before the first separator.)
1988-04-13 06:13:41 +00:00
If we hit EOF looking for the first SEP, just recurse. */
while ((c = getc(fp)) != SEP)
if (c == EOF) {
yow(fp);
return;
}
/* Skip leading whitespace, then read in a quotation.
If we hit EOF before we find a non-whitespace char, recurse. */
while (isspace(c = getc(fp)))
;
if (c == EOF) {
yow(fp);
return;
}
1990-01-02 17:15:30 +00:00
bufsize = BUFSIZE;
buf = (char *) malloc(bufsize);
1990-01-02 17:15:30 +00:00
if (buf == (char *)0) {
fprintf(stderr, "yow: virtual memory exhausted\n");
1990-01-02 17:15:30 +00:00
exit (3);
}
1988-04-13 06:13:41 +00:00
buf[i++] = c;
while ((c = getc(fp)) != SEP && c != EOF) {
buf[i++] = c;
2003-02-04 14:56:31 +00:00
1990-01-02 17:15:30 +00:00
if (i == bufsize-1) {
1988-04-13 06:13:41 +00:00
/* Yow! Is this quotation too long yet? */
1990-01-02 17:15:30 +00:00
bufsize *= 2;
buf = (char *) realloc(buf, bufsize);
1990-01-02 17:15:30 +00:00
if (buf == (char *)0) {
fprintf(stderr, "yow: virtual memory exhausted\n");
1990-01-02 17:15:30 +00:00
exit (3);
}
}
1988-04-13 06:13:41 +00:00
}
buf[i++] = 0;
printf("%s\n", buf);
}
2003-09-01 15:45:59 +00:00
/* arch-tag: e40fc0df-bafb-4001-af24-5c883d1c685e
(do not change this comment) */