1 /*- 2 * SPDX-License-Identifier: BSD-3-Clause 3 * 4 * Copyright (c) 1989, 1993, 1994 5 * The Regents of the University of California. All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions 9 * are met: 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. 18 * 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 29 * SUCH DAMAGE. 30 */ 31 32 #include <sys/cdefs.h> 33 __FBSDID("$FreeBSD$"); 34 35 #include <err.h> 36 #include <locale.h> 37 #include <stdio.h> 38 #include <stdlib.h> 39 #include <string.h> 40 #include <time.h> 41 42 #include "calendar.h" 43 44 static time_t time1, time2; 45 const struct tm tm0; 46 char dayname[100]; 47 int year1, year2; 48 49 50 void 51 settimes(time_t now, int before, int after, int friday, struct tm *tp1, struct tm *tp2) 52 { 53 char *oldl, *lbufp; 54 struct tm tp; 55 56 localtime_r(&now, &tp); 57 58 /* Friday displays Monday's events */ 59 if (after == 0 && before == 0 && friday != -1) 60 after = tp.tm_wday == friday ? 3 : 1; 61 62 time1 = now - SECSPERDAY * before; 63 localtime_r(&time1, tp1); 64 year1 = 1900 + tp1->tm_year; 65 time2 = now + SECSPERDAY * after; 66 localtime_r(&time2, tp2); 67 year2 = 1900 + tp2->tm_year; 68 69 strftime(dayname, sizeof(dayname) - 1, "%A, %d %B %Y", tp1); 70 71 oldl = NULL; 72 lbufp = setlocale(LC_TIME, NULL); 73 if (lbufp != NULL && (oldl = strdup(lbufp)) == NULL) 74 errx(1, "cannot allocate memory"); 75 (void)setlocale(LC_TIME, "C"); 76 (void)setlocale(LC_TIME, (oldl != NULL ? oldl : "")); 77 if (oldl != NULL) 78 free(oldl); 79 80 setnnames(); 81 } 82 83 /* convert Day[/Month][/Year] into unix time (since 1970) 84 * Day: two digits, Month: two digits, Year: digits 85 */ 86 time_t 87 Mktime(char *dp) 88 { 89 time_t t; 90 int d, m, y; 91 struct tm tm, tp; 92 93 (void)time(&t); 94 localtime_r(&t, &tp); 95 96 tm = tm0; 97 tm.tm_mday = tp.tm_mday; 98 tm.tm_mon = tp.tm_mon; 99 tm.tm_year = tp.tm_year; 100 101 switch (sscanf(dp, "%d.%d.%d", &d, &m, &y)) { 102 case 3: 103 if (y > 1900) 104 y -= 1900; 105 tm.tm_year = y; 106 /* FALLTHROUGH */ 107 case 2: 108 tm.tm_mon = m - 1; 109 /* FALLTHROUGH */ 110 case 1: 111 tm.tm_mday = d; 112 } 113 114 #ifdef DEBUG 115 fprintf(stderr, "Mktime: %d %d %s\n", 116 (int)mktime(&tm), (int)t, asctime(&tm)); 117 #endif 118 return (mktime(&tm)); 119 } 120