minix/commands/calendar/calendar.c
Gianluca Guida cc17b27a2b Build NetBSD libc library in world in ELF mode.
3 sets of libraries are built now:
  . ack: all libraries that ack can compile (/usr/lib/i386/)
  . clang+elf: all libraries with minix headers (/usr/lib/)
  . clang+elf: all libraries with netbsd headers (/usr/netbsd/)

Once everything can be compiled with netbsd libraries and headers, the
/usr/netbsd hierarchy will be obsolete and its libraries compiled with
netbsd headers will be installed in /usr/lib, and its headers
in /usr/include. (i.e. minix libc and current minix headers set
will be gone.)

To use the NetBSD libc system (libraries + headers) before
it is the default libc, see:
   http://wiki.minix3.org/en/DevelopersGuide/UsingNetBSDCode
This wiki page also documents the maintenance of the patch
files of minix-specific changes to imported NetBSD code.

Changes in this commit:
  . libsys: Add NBSD compilation and create a safe NBSD-based libc.
  . Port rest of libraries (except libddekit) to new header system.
  . Enable compilation of libddekit with new headers.
  . Enable kernel compilation with new headers.
  . Enable drivers compilation with new headers.
  . Port legacy commands to new headers and libc.
  . Port servers to new headers.
  . Add <sys/sigcontext.h> in compat library.
  . Remove dependency file in tree.
  . Enable compilation of common/lib/libc/atomic in libsys
  . Do not generate RCSID strings in libc.
  . Temporarily disable zoneinfo as they are incompatible with NetBSD format
  . obj-nbsd for .gitignore
  . Procfs: use only integer arithmetic. (Antoine Leca)
  . Increase ramdisk size to create NBSD-based images.
  . Remove INCSYMLINKS handling hack.
  . Add nbsd_include/sys/exec_elf.h
  . Enable ELF compilation with NBSD libc.
  . Add 'make nbsdsrc' in tools to download reference NetBSD sources.
  . Automate minix-port.patch creation.
  . Avoid using fstavfs() as it is *extremely* slow and unneeded.
  . Set err() as PRIVATE to avoid name clash with libc.
  . [NBSD] servers/vm: remove compilation warnings.
  . u32 is not a long in NBSD headers.
  . UPDATING info on netbsd hierarchy
  . commands fixes for netbsd libc
2011-06-24 11:46:30 +02:00

237 lines
5.1 KiB
C

/* calendar - reminder service Authors: S. & K. Hirabayashi */
/* Permission is hereby granted for nonprofit use. */
#include <sys/types.h>
#include <sys/stat.h>
#include <time.h>
#ifdef __NBSD_LIBC
#include <compat/regexp.h>
#else
#include <regexp.h>
#endif
#include <limits.h>
#include <stdlib.h>
#include <string.h>
#include <termcap.h>
#include <unistd.h>
#include <utime.h>
#include <stdio.h>
/* Change these two lines for your system needs. */
#define MAIL1 "/usr/bin/mail"
#define MAIL2 "/bin/mail"
#define PASSWD "/etc/passwd" /* system password file */
#define MAX_EXP 4 /* see date_exp() function */
char *mail; /* mail command path ("/bin/mail" etc) */
regexp *exp[MAX_EXP]; /* date expressions */
int nexp; /* # of the date expressions */
char calfile[PATH_MAX]; /* calendar file for the user */
int rflg; /* consult aged 'calendar' file and touch */
int mflg; /* mail (multi user) service */
char *cmd; /* the name of this command */
char buf[BUFSIZ];
_PROTOTYPE(int main, (int argc, char **argv));
_PROTOTYPE(void calendar, (void));
_PROTOTYPE(char *getstr, (char *s, int n));
_PROTOTYPE(int newaccess, (char *file));
_PROTOTYPE(void grep, (char *file, char *user));
_PROTOTYPE(int date_exp, (void));
_PROTOTYPE(char *date_pat, (time_t t));
/*
_PROTOTYPE(void regerror, (char *s));
*/
_PROTOTYPE(void error, (char *s, char *t));
int main(argc, argv)
int argc;
char **argv;
{
char *s;
cmd = *argv;
while (--argc > 0 && (*++argv)[0] == '-') {
s = argv[0] + 1;
if (*s == '\0')
mflg++; /* mail service */
else if (strcmp(s, "r") == 0)
rflg++, mflg++;
}
if (mflg) { /* check mailing agent */
if (access(MAIL1, X_OK) == 0)
mail = MAIL1;
else if (access(MAIL2, X_OK) == 0)
mail = MAIL2;
else
error("cannot find %s", MAIL1);
}
nexp = date_exp();
calendar();
exit(0);
}
void calendar()
{
int i;
char *s;
FILE *fp;
if (!mflg) {
grep("calendar", "");
return;
}
/* Mail sevice */
if ((fp = fopen(PASSWD, "r")) == (FILE *) NULL)
error("cannot open %s", PASSWD);
while (fgets(buf, BUFSIZ, fp) != (char *) NULL) {
for (i = 0, s = buf; *s && *s != '\n'; s++)
if (*s == ':') i++;
*s = '\0';
if (i != 6) error("illegal '/etc/passwd' format: %s", buf);
/* Calendar file = ${HOME}/calendar */
sprintf(calfile, "%s/%s", getstr(buf, 5), "calendar");
if ((access(calfile, R_OK) != 0) || (rflg && !newaccess(calfile)))
continue;
grep(calfile, getstr(buf, 0));
}
fclose(fp);
}
char *getstr(s, n)
char *s;
int n;
{
/* Returns the string value of the n-th field in the record (s) */
int i;
char *t;
static char str[512];
for (i = 0; i < n && *s; s++)
if (*s == ':') i++; /* field separator */
for (i = 0, t = str; *s && *s != ':' && i < 511; i++) *t++ = *s++;
*t = '\0';
return str;
}
int newaccess(file)
char *file; /* file name */
{
/* Check whether the file has been touched today. */
int r = 0;
struct tm *tm;
struct stat stbuf;
time_t clk;
char newdate[8], olddate[8];
time(&clk);
tm = localtime(&clk);
sprintf(newdate, "%02d%02d%02d", tm->tm_year, tm->tm_mon + 1, tm->tm_mday);
if (stat(file, &stbuf) == -1) error("cannot stat %s", file);
tm = localtime(&stbuf.st_mtime);
sprintf(olddate, "%02d%02d%02d", tm->tm_year, tm->tm_mon + 1, tm->tm_mday);
if (strcmp(newdate, olddate) != 0) {
utime(file, NULL); /* touch */
r++;
}
return r;
}
void grep(file, user)
char *file, *user;
{ /* grep 'exp[]' [| mail user] */
int i;
char command[128]; /* mail command */
FILE *ifp, *ofp;
if ((ifp = fopen(file, "r")) == (FILE *) NULL)
error("cannot open %s", file);
if (*user != '\0') {
sprintf(command, "%s %s", mail, user);
ofp = (FILE *) NULL;
} else {
ofp = stdout;
}
while (fgets(buf, BUFSIZ, ifp) != (char *) NULL) {
for (i = 0; i < nexp; i++) {
if (regexec(exp[i], buf, 1)) {
if ((ofp == (FILE *) NULL) &&
(ofp = popen(command, "w")) == (FILE *) NULL)
error("cannot popen %s", mail);
fputs(buf, ofp);
break;
}
}
}
fclose(ifp);
if (ofp == stdout)
fflush(ofp);
else if (ofp != (FILE *) NULL)
pclose(ofp);
}
int date_exp()
{
/* Set compiled regular expressions into the exp[] array. */
static int n[] = {2, 2, 2, 2, 2, 4, 3};
int i, r, wday;
time_t clk;
time(&clk);
wday = localtime(&clk)->tm_wday;
r = n[wday];
if (r > MAX_EXP) error("too many date expressions", "");
for (i = 0; i < r; i++) {
exp[i] = regcomp(date_pat(clk));
clk += 60 * 60 * 24L; /* 24 hours */
}
return(r);
}
char *date_pat(t)
time_t t;
{ /* returns date expression for the time (t) */
static char *month[] = {
"[Jj]an", "[Ff]eb", "[Mm]ar", "[Aa]pr", "[Mm]ay", "[Jj]un",
"[Jj]ul", "[Aa]ug", "[Ss]ep", "[Oo]ct", "[Nn]ov", "[Dd]ec"
};
static char str[512];
struct tm *tm;
tm = localtime(&t);
sprintf(str,
"(^|[ \t(,;])(((%s[^ \t]*[ \t])|0*%d/|\\*/)(0*%d|\\*))([^0123456789]|$)",
month[tm->tm_mon], tm->tm_mon + 1, tm->tm_mday);
return str;
}
void regerror(s)
const char *s;
{ /* regcomp() needs this */
error("REGULAR EXPRESSION ERROR (%s)", (char *) s);
}
void error(s, t)
char *s, *t;
{
fprintf(stderr, "%s: ", cmd);
fprintf(stderr, s, t);
fprintf(stderr, "\n");
exit(1);
}