blob: 207fa967b743ac961cf22c164c478a2bdd449326 [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Eric Andersenc98c0622001-12-06 15:16:43 +00002/*
3 * Calendar implementation for busybox
4 *
Eric Andersenc98c0622001-12-06 15:16:43 +00005 * See original copyright at the end of this file
6 *
"Robert P. J. Day"801ab142006-07-12 07:56:04 +00007 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
8 */
Manuel Novoa III cad53642003-03-19 09:13:01 +00009
10/* BB_AUDIT SUSv3 compliant with -j and -y extensions (from util-linux). */
11/* BB_AUDIT BUG: The output of 'cal -j 1752' is incorrect. The upstream
12 * BB_AUDIT BUG: version in util-linux seems to be broken as well. */
13/* http://www.opengroup.org/onlinepubs/007904975/utilities/cal.html */
14
15/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
16 *
17 * Major size reduction... over 50% (>1.5k) on i386.
18 */
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000019#include "libbb.h"
Denys Vlasenko9f93d622010-01-24 07:44:03 +010020#include "unicode.h"
Manuel Novoa III b99cb642002-05-29 19:08:41 +000021
Denis Vlasenko661f6fa2007-07-26 11:12:51 +000022/* We often use "unsigned" intead of "int", it's easier to div on most CPUs */
23
Eric Andersenc98c0622001-12-06 15:16:43 +000024#define THURSDAY 4 /* for reformation */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000025#define SATURDAY 6 /* 1 Jan 1 was a Saturday */
Eric Andersenc98c0622001-12-06 15:16:43 +000026
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000027#define FIRST_MISSING_DAY 639787 /* 3 Sep 1752 */
28#define NUMBER_MISSING_DAYS 11 /* 11 day correction */
Eric Andersenc98c0622001-12-06 15:16:43 +000029
30#define MAXDAYS 42 /* max slots in a month array */
31#define SPACE -1 /* used in day array */
32
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000033static const unsigned char days_in_month[] ALIGN1 = {
Manuel Novoa III cad53642003-03-19 09:13:01 +000034 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31
Eric Andersenc98c0622001-12-06 15:16:43 +000035};
36
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000037static const unsigned char sep1752[] ALIGN1 = {
Denis Vlasenko9213a9e2006-09-17 16:28:10 +000038 1, 2, 14, 15, 16,
Eric Andersenc98c0622001-12-06 15:16:43 +000039 17, 18, 19, 20, 21, 22, 23,
Manuel Novoa III cad53642003-03-19 09:13:01 +000040 24, 25, 26, 27, 28, 29, 30
Eric Andersenc98c0622001-12-06 15:16:43 +000041};
42
Denis Vlasenkoa5254032008-07-22 10:10:13 +000043/* Set to 0 or 1 in main */
44#define julian ((unsigned)option_mask32)
Eric Andersenc98c0622001-12-06 15:16:43 +000045
Eric Andersenaff114c2004-04-14 17:51:38 +000046/* leap year -- account for Gregorian reformation in 1752 */
Denis Vlasenko661f6fa2007-07-26 11:12:51 +000047static int leap_year(unsigned yr)
Manuel Novoa III cad53642003-03-19 09:13:01 +000048{
Denis Vlasenko319f8eb2007-08-13 11:09:30 +000049 if (yr <= 1752)
Denis Vlasenko661f6fa2007-07-26 11:12:51 +000050 return !(yr % 4);
51 return (!(yr % 4) && (yr % 100)) || !(yr % 400);
Manuel Novoa III cad53642003-03-19 09:13:01 +000052}
Manuel Novoa III cad53642003-03-19 09:13:01 +000053
Eric Andersenc98c0622001-12-06 15:16:43 +000054/* number of centuries since 1700, not inclusive */
55#define centuries_since_1700(yr) \
56 ((yr) > 1700 ? (yr) / 100 - 17 : 0)
57
58/* number of centuries since 1700 whose modulo of 400 is 0 */
59#define quad_centuries_since_1700(yr) \
60 ((yr) > 1600 ? ((yr) - 1600) / 400 : 0)
61
62/* number of leap years between year 1 and this year, not inclusive */
63#define leap_years_since_year_1(yr) \
64 ((yr) / 4 - centuries_since_1700(yr) + quad_centuries_since_1700(yr))
65
Denis Vlasenko661f6fa2007-07-26 11:12:51 +000066static void center(char *, unsigned, unsigned);
67static void day_array(unsigned, unsigned, unsigned *);
68static void trim_trailing_spaces_and_print(char *);
Manuel Novoa III cad53642003-03-19 09:13:01 +000069
70static void blank_string(char *buf, size_t buflen);
Denis Vlasenko661f6fa2007-07-26 11:12:51 +000071static char *build_row(char *p, unsigned *dp);
Manuel Novoa III cad53642003-03-19 09:13:01 +000072
73#define DAY_LEN 3 /* 3 spaces per day */
74#define J_DAY_LEN (DAY_LEN + 1)
75#define WEEK_LEN 20 /* 7 * 3 - one space at the end */
76#define J_WEEK_LEN (WEEK_LEN + 7)
77#define HEAD_SEP 2 /* spaces between day headings */
Eric Andersenc98c0622001-12-06 15:16:43 +000078
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000079int cal_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko2ec91ae2010-01-04 14:15:38 +010080int cal_main(int argc UNUSED_PARAM, char **argv)
Eric Andersenc98c0622001-12-06 15:16:43 +000081{
Manuel Novoa III cad53642003-03-19 09:13:01 +000082 struct tm zero_tm;
Eric Andersenc98c0622001-12-06 15:16:43 +000083 time_t now;
Denis Vlasenko661f6fa2007-07-26 11:12:51 +000084 unsigned month, year, flags, i;
Manuel Novoa III cad53642003-03-19 09:13:01 +000085 char *month_names[12];
Denys Vlasenko9f93d622010-01-24 07:44:03 +010086 /* normal heading: */
87 /* "Su Mo Tu We Th Fr Sa" */
88 /* -j heading: */
89 /* " Su Mo Tu We Th Fr Sa" */
90 char day_headings[ENABLE_FEATURE_ASSUME_UNICODE ? 28 * 6 : 28];
91 IF_FEATURE_ASSUME_UNICODE(char *hp = day_headings;)
Eric Andersenc98c0622001-12-06 15:16:43 +000092 char buf[40];
93
Denys Vlasenko9f93d622010-01-24 07:44:03 +010094 init_unicode();
95
Denis Vlasenkofe7cd642007-08-18 15:32:12 +000096 flags = getopt32(argv, "jy");
Denis Vlasenkoa5254032008-07-22 10:10:13 +000097 /* This sets julian = flags & 1: */
98 option_mask32 &= 1;
Eric Andersenc98c0622001-12-06 15:16:43 +000099 month = 0;
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000100 argv += optind;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000101
Denys Vlasenko2ec91ae2010-01-04 14:15:38 +0100102 if (!argv[0]) {
Denys Vlasenkodc698bb2010-01-09 19:10:49 +0100103 struct tm *ptm;
104
Eric Andersenc98c0622001-12-06 15:16:43 +0000105 time(&now);
Denys Vlasenkodc698bb2010-01-09 19:10:49 +0100106 ptm = localtime(&now);
107 year = ptm->tm_year + 1900;
Denis Vlasenkoa5254032008-07-22 10:10:13 +0000108 if (!(flags & 2)) { /* no -y */
Denys Vlasenkodc698bb2010-01-09 19:10:49 +0100109 month = ptm->tm_mon + 1;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000110 }
111 } else {
Denys Vlasenko2ec91ae2010-01-04 14:15:38 +0100112 if (argv[1]) {
113 if (argv[2]) {
114 bb_show_usage();
115 }
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000116 month = xatou_range(*argv++, 1, 12);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000117 }
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000118 year = xatou_range(*argv, 1, 9999);
Eric Andersenc98c0622001-12-06 15:16:43 +0000119 }
120
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000121 blank_string(day_headings, sizeof(day_headings) - 7 + 7*julian);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000122
123 i = 0;
124 do {
Eric Andersenc98c0622001-12-06 15:16:43 +0000125 zero_tm.tm_mon = i;
Denys Vlasenko86350f82010-01-06 10:18:37 +0100126 /* full month name according to locale */
Eric Andersenc98c0622001-12-06 15:16:43 +0000127 strftime(buf, sizeof(buf), "%B", &zero_tm);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000128 month_names[i] = xstrdup(buf);
Eric Andersenc98c0622001-12-06 15:16:43 +0000129
Manuel Novoa III cad53642003-03-19 09:13:01 +0000130 if (i < 7) {
131 zero_tm.tm_wday = i;
Denys Vlasenko86350f82010-01-06 10:18:37 +0100132 /* abbreviated weekday name according to locale */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000133 strftime(buf, sizeof(buf), "%a", &zero_tm);
Denys Vlasenko9f93d622010-01-24 07:44:03 +0100134#if ENABLE_FEATURE_ASSUME_UNICODE
135 if (julian)
136 *hp++ = ' ';
137 {
Denys Vlasenkoe17764c2010-01-30 23:16:21 +0100138 char *two_wchars = unicode_conv_to_printable_fixedwidth(NULL, buf, 2);
Denys Vlasenko9f93d622010-01-24 07:44:03 +0100139 strcpy(hp, two_wchars);
140 free(two_wchars);
141 }
142 hp += strlen(hp);
143 *hp++ = ' ';
144#else
Manuel Novoa III cad53642003-03-19 09:13:01 +0000145 strncpy(day_headings + i * (3+julian) + julian, buf, 2);
Denys Vlasenko9f93d622010-01-24 07:44:03 +0100146#endif
Manuel Novoa III cad53642003-03-19 09:13:01 +0000147 }
148 } while (++i < 12);
Denys Vlasenko9f93d622010-01-24 07:44:03 +0100149 IF_FEATURE_ASSUME_UNICODE(hp[-1] = '\0';)
Eric Andersenc98c0622001-12-06 15:16:43 +0000150
Manuel Novoa III cad53642003-03-19 09:13:01 +0000151 if (month) {
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000152 unsigned row, len, days[MAXDAYS];
153 unsigned *dp = days;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000154 char lineout[30];
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000155
Manuel Novoa III cad53642003-03-19 09:13:01 +0000156 day_array(month, year, dp);
157 len = sprintf(lineout, "%s %d", month_names[month - 1], year);
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000158 printf("%*s%s\n%s\n",
Manuel Novoa III cad53642003-03-19 09:13:01 +0000159 ((7*julian + WEEK_LEN) - len) / 2, "",
160 lineout, day_headings);
Eric Andersenc98c0622001-12-06 15:16:43 +0000161 for (row = 0; row < 6; row++) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000162 build_row(lineout, dp)[0] = '\0';
163 dp += 7;
164 trim_trailing_spaces_and_print(lineout);
165 }
166 } else {
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000167 unsigned row, which_cal, week_len, days[12][MAXDAYS];
168 unsigned *dp;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000169 char lineout[80];
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000170
Denys Vlasenko7bb346f2009-10-06 22:09:50 +0200171 sprintf(lineout, "%u", year);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000172 center(lineout,
173 (WEEK_LEN * 3 + HEAD_SEP * 2)
174 + julian * (J_WEEK_LEN * 2 + HEAD_SEP
175 - (WEEK_LEN * 3 + HEAD_SEP * 2)),
176 0);
177 puts("\n"); /* two \n's */
178 for (i = 0; i < 12; i++) {
179 day_array(i + 1, year, days[i]);
180 }
181 blank_string(lineout, sizeof(lineout));
182 week_len = WEEK_LEN + julian * (J_WEEK_LEN - WEEK_LEN);
183 for (month = 0; month < 12; month += 3-julian) {
184 center(month_names[month], week_len, HEAD_SEP);
185 if (!julian) {
186 center(month_names[month + 1], week_len, HEAD_SEP);
Eric Andersenc98c0622001-12-06 15:16:43 +0000187 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000188 center(month_names[month + 2 - julian], week_len, 0);
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000189 printf("\n%s%*s%s", day_headings, HEAD_SEP, "", day_headings);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000190 if (!julian) {
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000191 printf("%*s%s", HEAD_SEP, "", day_headings);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000192 }
Denis Vlasenko4daad902007-09-27 10:20:47 +0000193 bb_putchar('\n');
Manuel Novoa III cad53642003-03-19 09:13:01 +0000194 for (row = 0; row < (6*7); row += 7) {
195 for (which_cal = 0; which_cal < 3-julian; which_cal++) {
196 dp = days[month + which_cal] + row;
197 build_row(lineout + which_cal * (week_len + 2), dp);
198 }
199 /* blank_string took care of nul termination. */
200 trim_trailing_spaces_and_print(lineout);
201 }
Eric Andersenc98c0622001-12-06 15:16:43 +0000202 }
203 }
Eric Andersenc98c0622001-12-06 15:16:43 +0000204
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000205 fflush_stdout_and_exit(EXIT_SUCCESS);
Eric Andersenc98c0622001-12-06 15:16:43 +0000206}
207
208/*
209 * day_array --
210 * Fill in an array of 42 integers with a calendar. Assume for a moment
211 * that you took the (maximum) 6 rows in a calendar and stretched them
212 * out end to end. You would have 42 numbers or spaces. This routine
213 * builds that array for any month from Jan. 1 through Dec. 9999.
214 */
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000215static void day_array(unsigned month, unsigned year, unsigned *days)
Eric Andersenc98c0622001-12-06 15:16:43 +0000216{
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000217 unsigned long temp;
218 unsigned i;
219 unsigned day, dw, dm;
Eric Andersenc98c0622001-12-06 15:16:43 +0000220
Manuel Novoa III cad53642003-03-19 09:13:01 +0000221 memset(days, SPACE, MAXDAYS * sizeof(int));
Eric Andersenc98c0622001-12-06 15:16:43 +0000222
Manuel Novoa III cad53642003-03-19 09:13:01 +0000223 if ((month == 9) && (year == 1752)) {
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000224 /* Assumes the Gregorian reformation eliminates
225 * 3 Sep. 1752 through 13 Sep. 1752.
226 */
227 unsigned j_offset = julian * 244;
"Vladimir N. Oleynik"676b15e2006-01-30 13:47:19 +0000228 size_t oday = 0;
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000229
Manuel Novoa III cad53642003-03-19 09:13:01 +0000230 do {
"Vladimir N. Oleynik"676b15e2006-01-30 13:47:19 +0000231 days[oday+2] = sep1752[oday] + j_offset;
232 } while (++oday < sizeof(sep1752));
Eric Andersenc98c0622001-12-06 15:16:43 +0000233
Eric Andersenc98c0622001-12-06 15:16:43 +0000234 return;
235 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000236
237 /* day_in_year
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000238 * return the 1 based day number within the year
Manuel Novoa III cad53642003-03-19 09:13:01 +0000239 */
240 day = 1;
241 if ((month > 2) && leap_year(year)) {
242 ++day;
Eric Andersenc98c0622001-12-06 15:16:43 +0000243 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000244
245 i = month;
246 while (i) {
247 day += days_in_month[--i];
248 }
249
250 /* day_in_week
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000251 * return the 0 based day number for any date from 1 Jan. 1 to
252 * 31 Dec. 9999. Assumes the Gregorian reformation eliminates
253 * 3 Sep. 1752 through 13 Sep. 1752. Returns Thursday for all
254 * missing days.
Manuel Novoa III cad53642003-03-19 09:13:01 +0000255 */
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000256 temp = (long)(year - 1) * 365 + leap_years_since_year_1(year - 1) + day;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000257 if (temp < FIRST_MISSING_DAY) {
258 dw = ((temp - 1 + SATURDAY) % 7);
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000259 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000260 dw = (((temp - 1 + SATURDAY) - NUMBER_MISSING_DAYS) % 7);
261 }
262
263 if (!julian) {
264 day = 1;
265 }
266
267 dm = days_in_month[month];
268 if ((month == 2) && leap_year(year)) {
269 ++dm;
270 }
271
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000272 do {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000273 days[dw++] = day++;
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000274 } while (--dm);
Eric Andersenc98c0622001-12-06 15:16:43 +0000275}
276
Manuel Novoa III cad53642003-03-19 09:13:01 +0000277static void trim_trailing_spaces_and_print(char *s)
Eric Andersenc98c0622001-12-06 15:16:43 +0000278{
Manuel Novoa III cad53642003-03-19 09:13:01 +0000279 char *p = s;
Eric Andersenc98c0622001-12-06 15:16:43 +0000280
Manuel Novoa III cad53642003-03-19 09:13:01 +0000281 while (*p) {
Eric Andersenc98c0622001-12-06 15:16:43 +0000282 ++p;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000283 }
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000284 while (p != s) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000285 --p;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +0200286 if (!isspace(*p)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000287 p[1] = '\0';
288 break;
289 }
290 }
291
292 puts(s);
Eric Andersenc98c0622001-12-06 15:16:43 +0000293}
294
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000295static void center(char *str, unsigned len, unsigned separate)
Eric Andersenc98c0622001-12-06 15:16:43 +0000296{
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000297 unsigned n = strlen(str);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000298 len -= n;
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000299 printf("%*s%*s", (len/2) + n, str, (len/2) + (len % 2) + separate, "");
Eric Andersenc98c0622001-12-06 15:16:43 +0000300}
301
Manuel Novoa III cad53642003-03-19 09:13:01 +0000302static void blank_string(char *buf, size_t buflen)
303{
304 memset(buf, ' ', buflen);
305 buf[buflen-1] = '\0';
306}
307
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000308static char *build_row(char *p, unsigned *dp)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000309{
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000310 unsigned col, val, day;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000311
Manuel Novoa III cad53642003-03-19 09:13:01 +0000312 memset(p, ' ', (julian + DAY_LEN) * 7);
313
314 col = 0;
315 do {
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000316 day = *dp++;
317 if (day != SPACE) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000318 if (julian) {
Manuel Novoa III 5b3c0562003-08-13 12:11:33 +0000319 ++p;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000320 if (day >= 100) {
321 *p = '0';
322 p[-1] = (day / 100) + '0';
323 day %= 100;
324 }
325 }
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000326 val = day / 10;
327 if (val > 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000328 *p = val + '0';
329 }
330 *++p = day % 10 + '0';
331 p += 2;
332 } else {
333 p += DAY_LEN + julian;
334 }
335 } while (++col < 7);
336
337 return p;
338}
Eric Andersenc98c0622001-12-06 15:16:43 +0000339
340/*
341 * Copyright (c) 1989, 1993, 1994
342 * The Regents of the University of California. All rights reserved.
343 *
344 * This code is derived from software contributed to Berkeley by
345 * Kim Letkeman.
346 *
347 * Redistribution and use in source and binary forms, with or without
348 * modification, are permitted provided that the following conditions
349 * are met:
350 * 1. Redistributions of source code must retain the above copyright
351 * notice, this list of conditions and the following disclaimer.
352 * 2. Redistributions in binary form must reproduce the above copyright
353 * notice, this list of conditions and the following disclaimer in the
354 * documentation and/or other materials provided with the distribution.
Aaron Lehmann69d41782002-06-23 22:25:24 +0000355 * 3. Neither the name of the University nor the names of its contributors
Eric Andersenc98c0622001-12-06 15:16:43 +0000356 * may be used to endorse or promote products derived from this software
357 * without specific prior written permission.
358 *
359 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
360 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
361 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
362 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
363 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
364 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
365 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
366 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
367 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
368 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
369 * SUCH DAMAGE.
370 */