2010-03-29 06:49:20 +00:00
|
|
|
/*-
|
2017-11-20 19:49:47 +00:00
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
*
|
1994-05-27 12:33:43 +00:00
|
|
|
* Copyright (c) 1989, 1993, 1994
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2017-02-28 23:42:47 +00:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1994-05-27 12:33:43 +00:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lint
|
1996-05-10 16:30:22 +00:00
|
|
|
static const char copyright[] =
|
1994-05-27 12:33:43 +00:00
|
|
|
"@(#) Copyright (c) 1989, 1993\n\
|
|
|
|
The Regents of the University of California. All rights reserved.\n";
|
2001-12-02 22:44:14 +00:00
|
|
|
#endif
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2001-12-10 21:13:08 +00:00
|
|
|
#if 0
|
1994-05-27 12:33:43 +00:00
|
|
|
#ifndef lint
|
2011-11-09 01:40:46 +00:00
|
|
|
static char sccsid[] = "@(#)calendar.c 8.3 (Berkeley) 3/25/94";
|
2001-12-02 22:44:14 +00:00
|
|
|
#endif
|
2001-12-10 21:13:08 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
1994-05-27 12:33:43 +00:00
|
|
|
|
1996-05-10 16:30:22 +00:00
|
|
|
#include <err.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <locale.h>
|
2019-02-20 06:40:52 +00:00
|
|
|
#include <langinfo.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
#include <pwd.h>
|
|
|
|
#include <stdio.h>
|
1996-02-02 06:02:41 +00:00
|
|
|
#include <stdlib.h>
|
2010-03-29 06:49:20 +00:00
|
|
|
#include <string.h>
|
1996-02-02 06:02:41 +00:00
|
|
|
#include <time.h>
|
1996-05-10 16:30:22 +00:00
|
|
|
#include <unistd.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
|
1996-02-02 06:02:41 +00:00
|
|
|
#include "calendar.h"
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2010-03-29 06:49:20 +00:00
|
|
|
#define UTCOFFSET_NOTSET 100 /* Expected between -24 and +24 */
|
|
|
|
#define LONGITUDE_NOTSET 1000 /* Expected between -360 and +360 */
|
|
|
|
|
2008-08-05 08:11:54 +00:00
|
|
|
struct passwd *pw;
|
|
|
|
int doall = 0;
|
2010-03-29 06:49:20 +00:00
|
|
|
int debug = 0;
|
2012-10-19 14:49:42 +00:00
|
|
|
static char *DEBUG = NULL;
|
|
|
|
static time_t f_time = 0;
|
2010-03-29 06:49:20 +00:00
|
|
|
double UTCOffset = UTCOFFSET_NOTSET;
|
|
|
|
int EastLongitude = LONGITUDE_NOTSET;
|
2019-02-20 06:40:52 +00:00
|
|
|
#ifdef WITH_ICONV
|
|
|
|
const char *outputEncoding;
|
|
|
|
#endif
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2008-08-05 08:16:37 +00:00
|
|
|
static void usage(void) __dead2;
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
int
|
2007-05-07 11:18:30 +00:00
|
|
|
main(int argc, char *argv[])
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2010-03-29 06:49:20 +00:00
|
|
|
int f_dayAfter = 0; /* days after current date */
|
|
|
|
int f_dayBefore = 0; /* days before current date */
|
|
|
|
int Friday = 5; /* day before weekend */
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
int ch;
|
2010-03-29 06:49:20 +00:00
|
|
|
struct tm tp1, tp2;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2008-08-05 08:11:54 +00:00
|
|
|
(void)setlocale(LC_ALL, "");
|
2019-02-20 06:40:52 +00:00
|
|
|
#ifdef WITH_ICONV
|
|
|
|
/* save the information about the encoding used in the terminal */
|
|
|
|
outputEncoding = strdup(nl_langinfo(CODESET));
|
|
|
|
if (outputEncoding == NULL)
|
|
|
|
errx(1, "cannot allocate memory");
|
|
|
|
#endif
|
1996-05-10 16:30:22 +00:00
|
|
|
|
2011-11-09 01:40:46 +00:00
|
|
|
while ((ch = getopt(argc, argv, "-A:aB:D:dF:f:l:t:U:W:?")) != -1)
|
1994-05-27 12:33:43 +00:00
|
|
|
switch (ch) {
|
|
|
|
case '-': /* backward contemptible */
|
|
|
|
case 'a':
|
|
|
|
if (getuid()) {
|
|
|
|
errno = EPERM;
|
|
|
|
err(1, NULL);
|
|
|
|
}
|
|
|
|
doall = 1;
|
|
|
|
break;
|
1996-02-02 06:02:41 +00:00
|
|
|
|
2002-06-13 21:20:56 +00:00
|
|
|
case 'W': /* we don't need no steenking Fridays */
|
|
|
|
Friday = -1;
|
2008-08-05 08:11:54 +00:00
|
|
|
/* FALLTHROUGH */
|
2010-03-29 06:49:20 +00:00
|
|
|
|
1996-02-02 06:02:41 +00:00
|
|
|
case 'A': /* days after current date */
|
|
|
|
f_dayAfter = atoi(optarg);
|
2014-02-17 03:24:00 +00:00
|
|
|
if (f_dayAfter < 0)
|
|
|
|
errx(1, "number of days must be positive");
|
1996-02-02 06:02:41 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'B': /* days before current date */
|
2008-08-05 08:11:54 +00:00
|
|
|
f_dayBefore = atoi(optarg);
|
2014-02-17 03:24:00 +00:00
|
|
|
if (f_dayBefore < 0)
|
|
|
|
errx(1, "number of days must be positive");
|
1996-02-02 06:02:41 +00:00
|
|
|
break;
|
|
|
|
|
2011-11-09 01:40:46 +00:00
|
|
|
case 'D': /* debug output of sun and moon info */
|
|
|
|
DEBUG = optarg;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'd': /* debug output of current date */
|
|
|
|
debug = 1;
|
|
|
|
break;
|
|
|
|
|
2010-03-29 06:49:20 +00:00
|
|
|
case 'F': /* Change the time: When does weekend start? */
|
2002-06-13 21:20:56 +00:00
|
|
|
Friday = atoi(optarg);
|
|
|
|
break;
|
2011-11-09 01:40:46 +00:00
|
|
|
|
|
|
|
case 'f': /* other calendar file */
|
|
|
|
calendarFile = optarg;
|
|
|
|
break;
|
|
|
|
|
2010-03-29 06:49:20 +00:00
|
|
|
case 'l': /* Change longitudal position */
|
|
|
|
EastLongitude = strtol(optarg, NULL, 10);
|
|
|
|
break;
|
|
|
|
|
2011-11-09 01:40:46 +00:00
|
|
|
case 't': /* other date, for tests */
|
2010-03-29 06:49:20 +00:00
|
|
|
f_time = Mktime(optarg);
|
|
|
|
break;
|
2002-06-13 21:20:56 +00:00
|
|
|
|
2011-11-09 01:40:46 +00:00
|
|
|
case 'U': /* Change UTC offset */
|
|
|
|
UTCOffset = strtod(optarg, NULL);
|
|
|
|
break;
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
case '?':
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
}
|
2008-08-05 08:11:54 +00:00
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
|
|
|
|
|
|
|
if (argc)
|
|
|
|
usage();
|
|
|
|
|
1996-02-02 06:02:41 +00:00
|
|
|
/* use current time */
|
2008-08-05 08:11:54 +00:00
|
|
|
if (f_time <= 0)
|
|
|
|
(void)time(&f_time);
|
1996-02-02 06:02:41 +00:00
|
|
|
|
2010-03-29 06:49:20 +00:00
|
|
|
/* if not set, determine where I could be */
|
|
|
|
{
|
|
|
|
if (UTCOffset == UTCOFFSET_NOTSET &&
|
|
|
|
EastLongitude == LONGITUDE_NOTSET) {
|
|
|
|
/* Calculate on difference between here and UTC */
|
|
|
|
time_t t;
|
|
|
|
struct tm tm;
|
|
|
|
long utcoffset, hh, mm, ss;
|
|
|
|
double uo;
|
|
|
|
|
|
|
|
time(&t);
|
|
|
|
localtime_r(&t, &tm);
|
|
|
|
utcoffset = tm.tm_gmtoff;
|
|
|
|
/* seconds -> hh:mm:ss */
|
|
|
|
hh = utcoffset / SECSPERHOUR;
|
|
|
|
utcoffset %= SECSPERHOUR;
|
|
|
|
mm = utcoffset / SECSPERMINUTE;
|
|
|
|
utcoffset %= SECSPERMINUTE;
|
|
|
|
ss = utcoffset;
|
|
|
|
|
|
|
|
/* hh:mm:ss -> hh.mmss */
|
|
|
|
uo = mm + (100.0 * (ss / 60.0));
|
|
|
|
uo /= 60.0 / 100.0;
|
|
|
|
uo = hh + uo / 100;
|
|
|
|
|
|
|
|
UTCOffset = uo;
|
|
|
|
EastLongitude = UTCOffset * 15;
|
|
|
|
} else if (UTCOffset == UTCOFFSET_NOTSET) {
|
|
|
|
/* Base on information given */
|
|
|
|
UTCOffset = EastLongitude / 15;
|
|
|
|
} else if (EastLongitude == LONGITUDE_NOTSET) {
|
|
|
|
/* Base on information given */
|
|
|
|
EastLongitude = UTCOffset * 15;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
settimes(f_time, f_dayBefore, f_dayAfter, Friday, &tp1, &tp2);
|
|
|
|
generatedates(&tp1, &tp2);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* FROM now on, we are working in UTC.
|
|
|
|
* This will only affect moon and sun related events anyway.
|
|
|
|
*/
|
|
|
|
if (setenv("TZ", "UTC", 1) != 0)
|
|
|
|
errx(1, "setenv: %s", strerror(errno));
|
|
|
|
tzset();
|
|
|
|
|
|
|
|
if (debug)
|
|
|
|
dumpdates();
|
|
|
|
|
|
|
|
if (DEBUG != NULL) {
|
|
|
|
dodebug(DEBUG);
|
|
|
|
exit(0);
|
|
|
|
}
|
2008-08-05 08:11:54 +00:00
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
if (doall)
|
|
|
|
while ((pw = getpwent()) != NULL) {
|
|
|
|
(void)setegid(pw->pw_gid);
|
1997-02-06 05:42:49 +00:00
|
|
|
(void)initgroups(pw->pw_name, pw->pw_gid);
|
1994-05-27 12:33:43 +00:00
|
|
|
(void)seteuid(pw->pw_uid);
|
|
|
|
if (!chdir(pw->pw_dir))
|
|
|
|
cal();
|
|
|
|
(void)seteuid(0);
|
|
|
|
}
|
1995-10-08 14:15:20 +00:00
|
|
|
else
|
1994-05-27 12:33:43 +00:00
|
|
|
cal();
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-08-05 08:16:37 +00:00
|
|
|
static void __dead2
|
2007-05-07 11:18:30 +00:00
|
|
|
usage(void)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2013-06-13 04:11:21 +00:00
|
|
|
|
2010-03-29 06:49:20 +00:00
|
|
|
fprintf(stderr, "%s\n%s\n%s\n",
|
2011-11-09 01:40:46 +00:00
|
|
|
"usage: calendar [-A days] [-a] [-B days] [-D sun|moon] [-d]",
|
|
|
|
" [-F friday] [-f calendarfile] [-l longitude]",
|
|
|
|
" [-t dd[.mm[.year]]] [-U utcoffset] [-W days]"
|
2010-03-29 06:49:20 +00:00
|
|
|
);
|
1994-05-27 12:33:43 +00:00
|
|
|
exit(1);
|
|
|
|
}
|