1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
21 * Modified by the GLib Team and others 1997-2000. See the AUTHORS
22 * file for a list of people on the GLib Team. See the ChangeLog
23 * files for a list of changes. These files are distributed with
24 * GLib at ftp://ftp.gtk.org/pub/gtk/.
33 #define DEBUG_MSG(x) /* */
35 /* #define DEBUG_MSG(args) g_message args ; */
49 GDate *d = g_new0 (GDate, 1); /* happily, 0 is the invalid flag for everything. */
55 g_date_new_dmy (GDateDay day, GDateMonth m, GDateYear y)
58 g_return_val_if_fail (g_date_valid_dmy (day, m, y), NULL);
69 g_assert (g_date_valid (d));
75 g_date_new_julian (guint32 j)
78 g_return_val_if_fail (g_date_valid_julian (j), NULL);
87 g_assert (g_date_valid (d));
93 g_date_free (GDate *d)
95 g_return_if_fail (d != NULL);
101 g_date_valid (const GDate *d)
103 g_return_val_if_fail (d != NULL, FALSE);
105 return (d->julian || d->dmy);
108 static const guint8 days_in_months[2][13] =
109 { /* error, jan feb mar apr may jun jul aug sep oct nov dec */
110 { 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 },
111 { 0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 } /* leap year */
114 static const guint16 days_in_year[2][14] =
115 { /* 0, jan feb mar apr may jun jul aug sep oct nov dec */
116 { 0, 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365 },
117 { 0, 0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335, 366 }
121 g_date_valid_month (GDateMonth m)
123 return ( (m > G_DATE_BAD_MONTH) && (m < 13) );
127 g_date_valid_year (GDateYear y)
129 return ( y > G_DATE_BAD_YEAR );
133 g_date_valid_day (GDateDay d)
135 return ( (d > G_DATE_BAD_DAY) && (d < 32) );
139 g_date_valid_weekday (GDateWeekday w)
141 return ( (w > G_DATE_BAD_WEEKDAY) && (w < 8) );
145 g_date_valid_julian (guint32 j)
147 return (j > G_DATE_BAD_JULIAN);
151 g_date_valid_dmy (GDateDay d,
155 return ( (m > G_DATE_BAD_MONTH) &&
157 (d > G_DATE_BAD_DAY) &&
158 (y > G_DATE_BAD_YEAR) && /* must check before using g_date_is_leap_year */
159 (d <= (g_date_is_leap_year (y) ?
160 days_in_months[1][m] : days_in_months[0][m])) );
164 /* "Julian days" just means an absolute number of days, where Day 1 ==
168 g_date_update_julian (const GDate *const_d)
170 GDate *d = (GDate *) const_d;
174 g_return_if_fail (d != NULL);
175 g_return_if_fail (d->dmy);
176 g_return_if_fail (!d->julian);
177 g_return_if_fail (g_date_valid_dmy (d->day, d->month, d->year));
179 /* What we actually do is: multiply years * 365 days in the year,
180 * add the number of years divided by 4, subtract the number of
181 * years divided by 100 and add the number of years divided by 400,
182 * which accounts for leap year stuff. Code from Steffen Beyer's
186 year = d->year - 1; /* we know d->year > 0 since it's valid */
188 d->julian_days = year * 365U;
189 d->julian_days += (year >>= 2); /* divide by 4 and add */
190 d->julian_days -= (year /= 25); /* divides original # years by 100 */
191 d->julian_days += year >> 2; /* divides by 4, which divides original by 400 */
193 index = g_date_is_leap_year (d->year) ? 1 : 0;
195 d->julian_days += days_in_year[index][d->month] + d->day;
197 g_return_if_fail (g_date_valid_julian (d->julian_days));
203 g_date_update_dmy (const GDate *const_d)
205 GDate *d = (GDate *) const_d;
210 guint32 A, B, C, D, E, M;
212 g_return_if_fail (d != NULL);
213 g_return_if_fail (d->julian);
214 g_return_if_fail (!d->dmy);
215 g_return_if_fail (g_date_valid_julian (d->julian_days));
217 /* Formula taken from the Calendar FAQ; the formula was for the
218 * Julian Period which starts on 1 January 4713 BC, so we add
219 * 1,721,425 to the number of days before doing the formula.
221 * I'm sure this can be simplified for our 1 January 1 AD period
222 * start, but I can't figure out how to unpack the formula.
225 A = d->julian_days + 1721425 + 32045;
226 B = ( 4 *(A + 36524) )/ 146097 - 1;
227 C = A - (146097 * B)/4;
228 D = ( 4 * (C + 365) ) / 1461 - 1;
229 E = C - ((1461*D) / 4);
230 M = (5 * (E - 1) + 2)/153;
232 m = M + 3 - (12*(M/10));
233 day = E - (153*M + 2)/5;
234 y = 100 * B + D - 4800 + (M/10);
236 #ifdef G_ENABLE_DEBUG
237 if (!g_date_valid_dmy (day, m, y))
239 g_warning ("\nOOPS julian: %u computed dmy: %u %u %u\n",
240 d->julian_days, day, m, y);
252 g_date_get_weekday (const GDate *d)
254 g_return_val_if_fail (d != NULL, G_DATE_BAD_WEEKDAY);
255 g_return_val_if_fail (g_date_valid (d), G_DATE_BAD_WEEKDAY);
259 g_date_update_julian (d);
261 g_return_val_if_fail (d->julian, G_DATE_BAD_WEEKDAY);
263 return ((d->julian_days - 1) % 7) + 1;
267 g_date_get_month (const GDate *d)
269 g_return_val_if_fail (d != NULL, G_DATE_BAD_MONTH);
270 g_return_val_if_fail (g_date_valid (d), G_DATE_BAD_MONTH);
274 g_date_update_dmy (d);
276 g_return_val_if_fail (d->dmy, G_DATE_BAD_MONTH);
282 g_date_get_year (const GDate *d)
284 g_return_val_if_fail (d != NULL, G_DATE_BAD_YEAR);
285 g_return_val_if_fail (g_date_valid (d), G_DATE_BAD_YEAR);
289 g_date_update_dmy (d);
291 g_return_val_if_fail (d->dmy, G_DATE_BAD_YEAR);
297 g_date_get_day (const GDate *d)
299 g_return_val_if_fail (d != NULL, G_DATE_BAD_DAY);
300 g_return_val_if_fail (g_date_valid (d), G_DATE_BAD_DAY);
304 g_date_update_dmy (d);
306 g_return_val_if_fail (d->dmy, G_DATE_BAD_DAY);
312 g_date_get_julian (const GDate *d)
314 g_return_val_if_fail (d != NULL, G_DATE_BAD_JULIAN);
315 g_return_val_if_fail (g_date_valid (d), G_DATE_BAD_JULIAN);
319 g_date_update_julian (d);
321 g_return_val_if_fail (d->julian, G_DATE_BAD_JULIAN);
323 return d->julian_days;
327 g_date_get_day_of_year (const GDate *d)
331 g_return_val_if_fail (d != NULL, 0);
332 g_return_val_if_fail (g_date_valid (d), 0);
336 g_date_update_dmy (d);
338 g_return_val_if_fail (d->dmy, 0);
340 index = g_date_is_leap_year (d->year) ? 1 : 0;
342 return (days_in_year[index][d->month] + d->day);
346 g_date_get_monday_week_of_year (const GDate *d)
352 g_return_val_if_fail (d != NULL, 0);
353 g_return_val_if_fail (g_date_valid (d), 0);
357 g_date_update_dmy (d);
359 g_return_val_if_fail (d->dmy, 0);
361 g_date_clear (&first, 1);
363 g_date_set_dmy (&first, 1, 1, d->year);
365 wd = g_date_get_weekday (&first) - 1; /* make Monday day 0 */
366 day = g_date_get_day_of_year (d) - 1;
368 return ((day + wd)/7U + (wd == 0 ? 1 : 0));
372 g_date_get_sunday_week_of_year (const GDate *d)
378 g_return_val_if_fail (d != NULL, 0);
379 g_return_val_if_fail (g_date_valid (d), 0);
383 g_date_update_dmy (d);
385 g_return_val_if_fail (d->dmy, 0);
387 g_date_clear (&first, 1);
389 g_date_set_dmy (&first, 1, 1, d->year);
391 wd = g_date_get_weekday (&first);
392 if (wd == 7) wd = 0; /* make Sunday day 0 */
393 day = g_date_get_day_of_year (d) - 1;
395 return ((day + wd)/7U + (wd == 0 ? 1 : 0));
399 * g_date_get_iso8601_week_of_year:
400 * @date: a valid #GDate
402 * Returns the week of the year, where weeks are interpreted according
405 * Returns: ISO 8601 week number of the year.
410 g_date_get_iso8601_week_of_year (const GDate *d)
412 guint j, d4, L, d1, w;
414 g_return_val_if_fail (d != NULL, 0);
415 g_return_val_if_fail (g_date_valid (d), 0);
418 g_date_update_julian (d);
419 g_return_val_if_fail (d->julian, 0);
421 /* Formula taken from the Calendar FAQ; the formula was for the
422 * Julian Period which starts on 1 January 4713 BC, so we add
423 * 1,721,425 to the number of days before doing the formula.
425 j = d->julian + 1721425;
426 d4 = (j + 31741 - (j % 7)) % 146097 % 36524 % 1461;
428 d1 = ((d4 - L) % 365) + L;
435 g_date_days_between (const GDate *d1,
438 g_return_val_if_fail (d1 != NULL, 0);
439 g_return_val_if_fail (d2 != NULL, 0);
441 g_return_val_if_fail (g_date_valid (d1), 0);
442 g_return_val_if_fail (g_date_valid (d2), 0);
444 return (gint)g_date_get_julian (d2) - (gint)g_date_get_julian (d1);
448 g_date_clear (GDate *d, guint ndates)
450 g_return_if_fail (d != NULL);
451 g_return_if_fail (ndates != 0);
453 memset (d, 0x0, ndates*sizeof (GDate));
456 G_LOCK_DEFINE_STATIC (g_date_global);
458 /* These are for the parser, output to the user should use *
459 * g_date_strftime () - this creates more never-freed memory to annoy
460 * all those memory debugger users. :-)
463 static gchar *long_month_names[13] =
465 "Error", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL
468 static gchar *short_month_names[13] =
470 "Error", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL
473 /* This tells us if we need to update the parse info */
474 static gchar *current_locale = NULL;
476 /* order of these in the current locale */
477 static GDateDMY dmy_order[3] =
479 G_DATE_DAY, G_DATE_MONTH, G_DATE_YEAR
482 /* Where to chop two-digit years: i.e., for the 1930 default, numbers
483 * 29 and below are counted as in the year 2000, numbers 30 and above
484 * are counted as in the year 1900.
487 static GDateYear twodigit_start_year = 1930;
489 /* It is impossible to enter a year between 1 AD and 99 AD with this
492 static gboolean using_twodigit_years = FALSE;
494 /* Adjustment of locale era to AD, non-zero means using locale era
496 static gint locale_era_adjust = 0;
498 struct _GDateParseTokens {
504 typedef struct _GDateParseTokens GDateParseTokens;
508 /* HOLDS: g_date_global_lock */
510 g_date_fill_parse_tokens (const gchar *str, GDateParseTokens *pt)
512 gchar num[4][NUM_LEN+1];
516 /* We count 4, but store 3; so we can give an error
519 num[0][0] = num[1][0] = num[2][0] = num[3][0] = '\0';
521 s = (const guchar *) str;
523 while (*s && pt->num_ints < 4)
527 while (*s && g_ascii_isdigit (*s) && i <= NUM_LEN)
529 num[pt->num_ints][i] = *s;
536 num[pt->num_ints][i] = '\0';
540 if (*s == '\0') break;
545 pt->n[0] = pt->num_ints > 0 ? atoi (num[0]) : 0;
546 pt->n[1] = pt->num_ints > 1 ? atoi (num[1]) : 0;
547 pt->n[2] = pt->num_ints > 2 ? atoi (num[2]) : 0;
549 pt->month = G_DATE_BAD_MONTH;
551 if (pt->num_ints < 3)
556 casefold = g_utf8_casefold (str, -1);
557 normalized = g_utf8_normalize (casefold, -1, G_NORMALIZE_ALL);
563 if (long_month_names[i] != NULL)
565 const gchar *found = strstr (normalized, long_month_names[i]);
574 if (short_month_names[i] != NULL)
576 const gchar *found = strstr (normalized, short_month_names[i]);
592 /* HOLDS: g_date_global_lock */
594 g_date_prepare_to_parse (const gchar *str, GDateParseTokens *pt)
596 const gchar *locale = setlocale (LC_TIME, NULL);
597 gboolean recompute_localeinfo = FALSE;
600 g_return_if_fail (locale != NULL); /* should not happen */
602 g_date_clear (&d, 1); /* clear for scratch use */
604 if ( (current_locale == NULL) || (strcmp (locale, current_locale) != 0) )
606 recompute_localeinfo = TRUE; /* Uh, there used to be a reason for the temporary */
609 if (recompute_localeinfo)
612 GDateParseTokens testpt;
615 g_free (current_locale); /* still works if current_locale == NULL */
617 current_locale = g_strdup (locale);
623 g_date_set_dmy (&d, 1, i, 1);
625 g_return_if_fail (g_date_valid (&d));
627 g_date_strftime (buf, 127, "%b", &d);
629 casefold = g_utf8_casefold (buf, -1);
630 g_free (short_month_names[i]);
631 short_month_names[i] = g_utf8_normalize (casefold, -1, G_NORMALIZE_ALL);
634 g_date_strftime (buf, 127, "%B", &d);
635 casefold = g_utf8_casefold (buf, -1);
636 g_free (long_month_names[i]);
637 long_month_names[i] = g_utf8_normalize (casefold, -1, G_NORMALIZE_ALL);
643 /* Determine DMY order */
645 /* had to pick a random day - don't change this, some strftimes
646 * are broken on some days, and this one is good so far. */
647 g_date_set_dmy (&d, 4, 7, 1976);
649 g_date_strftime (buf, 127, "%x", &d);
651 g_date_fill_parse_tokens (buf, &testpt);
654 while (i < testpt.num_ints)
659 dmy_order[i] = G_DATE_MONTH;
662 dmy_order[i] = G_DATE_DAY;
665 using_twodigit_years = TRUE; /* FALL THRU */
667 dmy_order[i] = G_DATE_YEAR;
670 /* assume locale era */
671 locale_era_adjust = 1976 - testpt.n[i];
672 dmy_order[i] = G_DATE_YEAR;
678 #ifdef G_ENABLE_DEBUG
679 DEBUG_MSG (("**GDate prepared a new set of locale-specific parse rules."));
683 DEBUG_MSG ((" %s %s", long_month_names[i], short_month_names[i]));
686 if (using_twodigit_years)
687 DEBUG_MSG (("**Using twodigit years with cutoff year: %u", twodigit_start_year));
693 switch (dmy_order[i])
696 strings[i] = "Month";
710 DEBUG_MSG (("**Order: %s, %s, %s", strings[0], strings[1], strings[2]));
711 DEBUG_MSG (("**Sample date in this locale: `%s'", buf));
716 g_date_fill_parse_tokens (str, pt);
720 g_date_set_parse (GDate *d,
724 guint m = G_DATE_BAD_MONTH, day = G_DATE_BAD_DAY, y = G_DATE_BAD_YEAR;
726 g_return_if_fail (d != NULL);
731 G_LOCK (g_date_global);
733 g_date_prepare_to_parse (str, &pt);
735 DEBUG_MSG (("Found %d ints, `%d' `%d' `%d' and written out month %d",
736 pt.num_ints, pt.n[0], pt.n[1], pt.n[2], pt.month));
739 if (pt.num_ints == 4)
741 G_UNLOCK (g_date_global);
742 return; /* presumably a typo; bail out. */
750 g_assert (pt.num_ints < 4); /* i.e., it is 2 or 3 */
752 while (i < pt.num_ints && j < 3)
754 switch (dmy_order[j])
758 if (pt.num_ints == 2 && pt.month != G_DATE_BAD_MONTH)
761 ++j; /* skip months, but don't skip this number */
770 if (pt.num_ints == 2 && pt.month == G_DATE_BAD_MONTH)
773 ++j; /* skip days, since we may have month/year */
783 if (locale_era_adjust != 0)
785 y += locale_era_adjust;
787 else if (using_twodigit_years && y < 100)
789 guint two = twodigit_start_year % 100;
790 guint century = (twodigit_start_year / 100) * 100;
808 if (pt.num_ints == 3 && !g_date_valid_dmy (day, m, y))
815 if (using_twodigit_years && y < 100)
816 y = G_DATE_BAD_YEAR; /* avoids ambiguity */
818 else if (pt.num_ints == 2)
820 if (m == G_DATE_BAD_MONTH && pt.month != G_DATE_BAD_MONTH)
826 else if (pt.num_ints == 1)
828 if (pt.month != G_DATE_BAD_MONTH)
830 /* Month name and year? */
837 /* Try yyyymmdd and yymmdd */
839 m = (pt.n[0]/100) % 100;
843 /* FIXME move this into a separate function */
844 if (using_twodigit_years && y < 100)
846 guint two = twodigit_start_year % 100;
847 guint century = (twodigit_start_year / 100) * 100;
857 /* See if we got anything valid out of all this. */
858 /* y < 8000 is to catch 19998 style typos; the library is OK up to 65535 or so */
859 if (y < 8000 && g_date_valid_dmy (day, m, y))
866 #ifdef G_ENABLE_DEBUG
868 DEBUG_MSG (("Rejected DMY %u %u %u", day, m, y));
870 G_UNLOCK (g_date_global);
874 g_date_set_time (GDate *d,
880 g_return_if_fail (d != NULL);
882 #ifdef HAVE_LOCALTIME_R
883 localtime_r (&t, &tm);
886 struct tm *ptm = localtime (&t);
888 memcpy ((void *) &tm, (void *) ptm, sizeof(struct tm));
894 d->month = tm.tm_mon + 1;
896 d->year = tm.tm_year + 1900;
898 g_return_if_fail (g_date_valid_dmy (d->day, d->month, d->year));
904 g_date_set_month (GDate *d,
907 g_return_if_fail (d != NULL);
908 g_return_if_fail (g_date_valid_month (m));
910 if (d->julian && !d->dmy) g_date_update_dmy(d);
915 if (g_date_valid_dmy (d->day, d->month, d->year))
922 g_date_set_day (GDate *d,
925 g_return_if_fail (d != NULL);
926 g_return_if_fail (g_date_valid_day (day));
928 if (d->julian && !d->dmy) g_date_update_dmy(d);
933 if (g_date_valid_dmy (d->day, d->month, d->year))
940 g_date_set_year (GDate *d,
943 g_return_if_fail (d != NULL);
944 g_return_if_fail (g_date_valid_year (y));
946 if (d->julian && !d->dmy) g_date_update_dmy(d);
951 if (g_date_valid_dmy (d->day, d->month, d->year))
958 g_date_set_dmy (GDate *d,
963 g_return_if_fail (d != NULL);
964 g_return_if_fail (g_date_valid_dmy (day, m, y));
976 g_date_set_julian (GDate *d, guint32 j)
978 g_return_if_fail (d != NULL);
979 g_return_if_fail (g_date_valid_julian (j));
988 g_date_is_first_of_month (const GDate *d)
990 g_return_val_if_fail (d != NULL, FALSE);
991 g_return_val_if_fail (g_date_valid (d), FALSE);
995 g_date_update_dmy (d);
997 g_return_val_if_fail (d->dmy, FALSE);
999 if (d->day == 1) return TRUE;
1004 g_date_is_last_of_month (const GDate *d)
1008 g_return_val_if_fail (d != NULL, FALSE);
1009 g_return_val_if_fail (g_date_valid (d), FALSE);
1013 g_date_update_dmy (d);
1015 g_return_val_if_fail (d->dmy, FALSE);
1017 index = g_date_is_leap_year (d->year) ? 1 : 0;
1019 if (d->day == days_in_months[index][d->month]) return TRUE;
1024 g_date_add_days (GDate *d, guint ndays)
1026 g_return_if_fail (d != NULL);
1027 g_return_if_fail (g_date_valid (d));
1031 g_date_update_julian (d);
1033 g_return_if_fail (d->julian);
1035 d->julian_days += ndays;
1040 g_date_subtract_days (GDate *d, guint ndays)
1042 g_return_if_fail (d != NULL);
1043 g_return_if_fail (g_date_valid (d));
1047 g_date_update_julian (d);
1049 g_return_if_fail (d->julian);
1050 g_return_if_fail (d->julian_days > ndays);
1052 d->julian_days -= ndays;
1057 g_date_add_months (GDate *d,
1060 guint years, months;
1063 g_return_if_fail (d != NULL);
1064 g_return_if_fail (g_date_valid (d));
1068 g_date_update_dmy (d);
1070 g_return_if_fail (d->dmy);
1072 nmonths += d->month - 1;
1075 months = nmonths%12;
1077 d->month = months + 1;
1080 index = g_date_is_leap_year (d->year) ? 1 : 0;
1082 if (d->day > days_in_months[index][d->month])
1083 d->day = days_in_months[index][d->month];
1087 g_return_if_fail (g_date_valid (d));
1091 g_date_subtract_months (GDate *d,
1094 guint years, months;
1097 g_return_if_fail (d != NULL);
1098 g_return_if_fail (g_date_valid (d));
1102 g_date_update_dmy (d);
1104 g_return_if_fail (d->dmy);
1107 months = nmonths%12;
1109 g_return_if_fail (d->year > years);
1113 if (d->month > months) d->month -= months;
1117 d->month = 12 - months;
1121 index = g_date_is_leap_year (d->year) ? 1 : 0;
1123 if (d->day > days_in_months[index][d->month])
1124 d->day = days_in_months[index][d->month];
1128 g_return_if_fail (g_date_valid (d));
1132 g_date_add_years (GDate *d,
1135 g_return_if_fail (d != NULL);
1136 g_return_if_fail (g_date_valid (d));
1140 g_date_update_dmy (d);
1142 g_return_if_fail (d->dmy);
1146 if (d->month == 2 && d->day == 29)
1148 if (!g_date_is_leap_year (d->year))
1158 g_date_subtract_years (GDate *d,
1161 g_return_if_fail (d != NULL);
1162 g_return_if_fail (g_date_valid (d));
1166 g_date_update_dmy (d);
1168 g_return_if_fail (d->dmy);
1169 g_return_if_fail (d->year > nyears);
1173 if (d->month == 2 && d->day == 29)
1175 if (!g_date_is_leap_year (d->year))
1186 g_date_is_leap_year (GDateYear year)
1188 g_return_val_if_fail (g_date_valid_year (year), FALSE);
1190 return ( (((year % 4) == 0) && ((year % 100) != 0)) ||
1191 (year % 400) == 0 );
1195 g_date_get_days_in_month (GDateMonth month,
1200 g_return_val_if_fail (g_date_valid_year (year), 0);
1201 g_return_val_if_fail (g_date_valid_month (month), 0);
1203 index = g_date_is_leap_year (year) ? 1 : 0;
1205 return days_in_months[index][month];
1209 g_date_get_monday_weeks_in_year (GDateYear year)
1213 g_return_val_if_fail (g_date_valid_year (year), 0);
1215 g_date_clear (&d, 1);
1216 g_date_set_dmy (&d, 1, 1, year);
1217 if (g_date_get_weekday (&d) == G_DATE_MONDAY) return 53;
1218 g_date_set_dmy (&d, 31, 12, year);
1219 if (g_date_get_weekday (&d) == G_DATE_MONDAY) return 53;
1220 if (g_date_is_leap_year (year))
1222 g_date_set_dmy (&d, 2, 1, year);
1223 if (g_date_get_weekday (&d) == G_DATE_MONDAY) return 53;
1224 g_date_set_dmy (&d, 30, 12, year);
1225 if (g_date_get_weekday (&d) == G_DATE_MONDAY) return 53;
1231 g_date_get_sunday_weeks_in_year (GDateYear year)
1235 g_return_val_if_fail (g_date_valid_year (year), 0);
1237 g_date_clear (&d, 1);
1238 g_date_set_dmy (&d, 1, 1, year);
1239 if (g_date_get_weekday (&d) == G_DATE_SUNDAY) return 53;
1240 g_date_set_dmy (&d, 31, 12, year);
1241 if (g_date_get_weekday (&d) == G_DATE_SUNDAY) return 53;
1242 if (g_date_is_leap_year (year))
1244 g_date_set_dmy (&d, 2, 1, year);
1245 if (g_date_get_weekday (&d) == G_DATE_SUNDAY) return 53;
1246 g_date_set_dmy (&d, 30, 12, year);
1247 if (g_date_get_weekday (&d) == G_DATE_SUNDAY) return 53;
1253 g_date_compare (const GDate *lhs,
1256 g_return_val_if_fail (lhs != NULL, 0);
1257 g_return_val_if_fail (rhs != NULL, 0);
1258 g_return_val_if_fail (g_date_valid (lhs), 0);
1259 g_return_val_if_fail (g_date_valid (rhs), 0);
1261 /* Remember the self-comparison case! I think it works right now. */
1266 if (lhs->julian && rhs->julian)
1268 if (lhs->julian_days < rhs->julian_days) return -1;
1269 else if (lhs->julian_days > rhs->julian_days) return 1;
1272 else if (lhs->dmy && rhs->dmy)
1274 if (lhs->year < rhs->year) return -1;
1275 else if (lhs->year > rhs->year) return 1;
1278 if (lhs->month < rhs->month) return -1;
1279 else if (lhs->month > rhs->month) return 1;
1282 if (lhs->day < rhs->day) return -1;
1283 else if (lhs->day > rhs->day) return 1;
1292 if (!lhs->julian) g_date_update_julian (lhs);
1293 if (!rhs->julian) g_date_update_julian (rhs);
1294 g_return_val_if_fail (lhs->julian, 0);
1295 g_return_val_if_fail (rhs->julian, 0);
1299 return 0; /* warnings */
1304 g_date_to_struct_tm (const GDate *d,
1309 g_return_if_fail (d != NULL);
1310 g_return_if_fail (g_date_valid (d));
1311 g_return_if_fail (tm != NULL);
1315 g_date_update_dmy (d);
1317 g_return_if_fail (d->dmy);
1319 /* zero all the irrelevant fields to be sure they're valid */
1321 /* On Linux and maybe other systems, there are weird non-POSIX
1322 * fields on the end of struct tm that choke strftime if they
1323 * contain garbage. So we need to 0 the entire struct, not just the
1324 * fields we know to exist.
1327 memset (tm, 0x0, sizeof (struct tm));
1329 tm->tm_mday = d->day;
1330 tm->tm_mon = d->month - 1; /* 0-11 goes in tm */
1331 tm->tm_year = ((int)d->year) - 1900; /* X/Open says tm_year can be negative */
1333 day = g_date_get_weekday (d);
1334 if (day == 7) day = 0; /* struct tm wants days since Sunday, so Sunday is 0 */
1336 tm->tm_wday = (int)day;
1338 tm->tm_yday = g_date_get_day_of_year (d) - 1; /* 0 to 365 */
1339 tm->tm_isdst = -1; /* -1 means "information not available" */
1343 g_date_clamp (GDate *date,
1344 const GDate *min_date,
1345 const GDate *max_date)
1347 g_return_if_fail (date);
1348 g_return_if_fail (g_date_valid (date));
1349 if (min_date != NULL)
1350 g_return_if_fail (g_date_valid (min_date));
1351 if (max_date != NULL)
1352 g_return_if_fail (g_date_valid (max_date));
1353 if (min_date != NULL && max_date != NULL)
1354 g_return_if_fail (g_date_compare (min_date, max_date) <= 0);
1356 if (min_date && g_date_compare (date, min_date) < 0)
1359 if (max_date && g_date_compare (max_date, date) < 0)
1364 g_date_order (GDate *date1,
1367 g_return_if_fail (date1 != NULL);
1368 g_return_if_fail (date2 != NULL);
1369 g_return_if_fail (g_date_valid (date1));
1370 g_return_if_fail (g_date_valid (date2));
1372 if (g_date_compare (date1, date2) > 0)
1381 g_date_strftime (gchar *s,
1383 const gchar *format,
1387 gsize locale_format_len = 0;
1388 gchar *locale_format;
1394 GError *error = NULL;
1397 g_return_val_if_fail (d != NULL, 0);
1398 g_return_val_if_fail (g_date_valid (d), 0);
1399 g_return_val_if_fail (slen > 0, 0);
1400 g_return_val_if_fail (format != 0, 0);
1401 g_return_val_if_fail (s != 0, 0);
1403 g_date_to_struct_tm (d, &tm);
1405 locale_format = g_locale_from_utf8 (format, -1, NULL, &locale_format_len, &error);
1409 g_warning (G_STRLOC "Error converting format to locale encoding: %s\n", error->message);
1410 g_error_free (error);
1416 tmpbufsize = MAX (128, locale_format_len * 2);
1419 tmpbuf = g_malloc (tmpbufsize);
1421 /* Set the first byte to something other than '\0', to be able to
1422 * recognize whether strftime actually failed or just returned "".
1425 tmplen = strftime (tmpbuf, tmpbufsize, locale_format, &tm);
1427 if (tmplen == 0 && tmpbuf[0] != '\0')
1432 if (tmpbufsize > 65536)
1434 g_warning (G_STRLOC "Maximum buffer size for g_date_strftime exceeded: giving up\n");
1435 g_free (locale_format);
1444 g_free (locale_format);
1446 convbuf = g_locale_to_utf8 (tmpbuf, tmplen, NULL, &convlen, &error);
1451 g_warning (G_STRLOC "Error converting results of strftime to UTF-8: %s\n", error->message);
1452 g_error_free (error);
1458 if (slen <= convlen)
1460 /* Ensure only whole characters are copied into the buffer.
1462 gchar *end = g_utf8_find_prev_char (convbuf, convbuf + slen);
1463 g_assert (end != NULL);
1464 convlen = end - convbuf;
1466 /* Return 0 because the buffer isn't large enough.
1473 memcpy (s, convbuf, convlen);