Fix a typo. (#398203, Owen Taylor)
[platform/upstream/glib.git] / glib / gdate.c
1 /* GLIB - Library of useful routines for C programming
2  * Copyright (C) 1995-1997  Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
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.
8  *
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.
13  *
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.
18  */
19
20 /*
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/. 
25  */
26
27 /* 
28  * MT safe
29  */
30
31 #include "config.h"
32
33 #define DEBUG_MSG(x)    /* */
34 #ifdef G_ENABLE_DEBUG
35 /* #define DEBUG_MSG(args)      g_message args ; */
36 #endif
37
38 #include "glib.h"
39
40 #include <time.h>
41 #include <string.h>
42 #include <stdlib.h>
43 #include <locale.h>
44
45 #include "galias.h"
46
47 GDate*
48 g_date_new (void)
49 {
50   GDate *d = g_new0 (GDate, 1); /* happily, 0 is the invalid flag for everything. */
51   
52   return d;
53 }
54
55 GDate*
56 g_date_new_dmy (GDateDay day, GDateMonth m, GDateYear y)
57 {
58   GDate *d;
59   g_return_val_if_fail (g_date_valid_dmy (day, m, y), NULL);
60   
61   d = g_new (GDate, 1);
62   
63   d->julian = FALSE;
64   d->dmy    = TRUE;
65   
66   d->month = m;
67   d->day   = day;
68   d->year  = y;
69   
70   g_assert (g_date_valid (d));
71   
72   return d;
73 }
74
75 GDate*
76 g_date_new_julian (guint32 j)
77 {
78   GDate *d;
79   g_return_val_if_fail (g_date_valid_julian (j), NULL);
80   
81   d = g_new (GDate, 1);
82   
83   d->julian = TRUE;
84   d->dmy    = FALSE;
85   
86   d->julian_days = j;
87   
88   g_assert (g_date_valid (d));
89   
90   return d;
91 }
92
93 void
94 g_date_free (GDate *d)
95 {
96   g_return_if_fail (d != NULL);
97   
98   g_free (d);
99 }
100
101 gboolean     
102 g_date_valid (const GDate *d)
103 {
104   g_return_val_if_fail (d != NULL, FALSE);
105   
106   return (d->julian || d->dmy);
107 }
108
109 static const guint8 days_in_months[2][13] = 
110 {  /* error, jan feb mar apr may jun jul aug sep oct nov dec */
111   {  0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }, 
112   {  0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 } /* leap year */
113 };
114
115 static const guint16 days_in_year[2][14] = 
116 {  /* 0, jan feb mar apr may  jun  jul  aug  sep  oct  nov  dec */
117   {  0, 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365 }, 
118   {  0, 0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335, 366 }
119 };
120
121 gboolean     
122 g_date_valid_month (GDateMonth   m)
123
124   return ( (m > G_DATE_BAD_MONTH) && (m < 13) );
125 }
126
127 gboolean     
128 g_date_valid_year (GDateYear    y)
129 {
130   return ( y > G_DATE_BAD_YEAR );
131 }
132
133 gboolean     
134 g_date_valid_day (GDateDay     d)
135 {
136   return ( (d > G_DATE_BAD_DAY) && (d < 32) );
137 }
138
139 gboolean     
140 g_date_valid_weekday (GDateWeekday w)
141 {
142   return ( (w > G_DATE_BAD_WEEKDAY) && (w < 8) );
143 }
144
145 gboolean     
146 g_date_valid_julian (guint32      j)
147 {
148   return (j > G_DATE_BAD_JULIAN);
149 }
150
151 gboolean     
152 g_date_valid_dmy (GDateDay     d, 
153                   GDateMonth   m, 
154                   GDateYear    y)
155 {
156   return ( (m > G_DATE_BAD_MONTH) &&
157            (m < 13)               && 
158            (d > G_DATE_BAD_DAY)   && 
159            (y > G_DATE_BAD_YEAR)  &&   /* must check before using g_date_is_leap_year */
160            (d <=  (g_date_is_leap_year (y) ? 
161                    days_in_months[1][m] : days_in_months[0][m])) );
162 }
163
164
165 /* "Julian days" just means an absolute number of days, where Day 1 ==
166  *   Jan 1, Year 1
167  */
168 static void
169 g_date_update_julian (const GDate *const_d)
170 {
171   GDate *d = (GDate *) const_d;
172   GDateYear year;
173   gint index;
174   
175   g_return_if_fail (d != NULL);
176   g_return_if_fail (d->dmy);
177   g_return_if_fail (!d->julian);
178   g_return_if_fail (g_date_valid_dmy (d->day, d->month, d->year));
179   
180   /* What we actually do is: multiply years * 365 days in the year,
181    *  add the number of years divided by 4, subtract the number of
182    *  years divided by 100 and add the number of years divided by 400,
183    *  which accounts for leap year stuff. Code from Steffen Beyer's
184    *  DateCalc. 
185    */
186   
187   year = d->year - 1; /* we know d->year > 0 since it's valid */
188   
189   d->julian_days = year * 365U;
190   d->julian_days += (year >>= 2); /* divide by 4 and add */
191   d->julian_days -= (year /= 25); /* divides original # years by 100 */
192   d->julian_days += year >> 2;    /* divides by 4, which divides original by 400 */
193   
194   index = g_date_is_leap_year (d->year) ? 1 : 0;
195   
196   d->julian_days += days_in_year[index][d->month] + d->day;
197   
198   g_return_if_fail (g_date_valid_julian (d->julian_days));
199   
200   d->julian = TRUE;
201 }
202
203 static void 
204 g_date_update_dmy (const GDate *const_d)
205 {
206   GDate *d = (GDate *) const_d;
207   GDateYear y;
208   GDateMonth m;
209   GDateDay day;
210   
211   guint32 A, B, C, D, E, M;
212   
213   g_return_if_fail (d != NULL);
214   g_return_if_fail (d->julian);
215   g_return_if_fail (!d->dmy);
216   g_return_if_fail (g_date_valid_julian (d->julian_days));
217   
218   /* Formula taken from the Calendar FAQ; the formula was for the
219    *  Julian Period which starts on 1 January 4713 BC, so we add
220    *  1,721,425 to the number of days before doing the formula.
221    *
222    * I'm sure this can be simplified for our 1 January 1 AD period
223    * start, but I can't figure out how to unpack the formula.  
224    */
225   
226   A = d->julian_days + 1721425 + 32045;
227   B = ( 4 *(A + 36524) )/ 146097 - 1;
228   C = A - (146097 * B)/4;
229   D = ( 4 * (C + 365) ) / 1461 - 1;
230   E = C - ((1461*D) / 4);
231   M = (5 * (E - 1) + 2)/153;
232   
233   m = M + 3 - (12*(M/10));
234   day = E - (153*M + 2)/5;
235   y = 100 * B + D - 4800 + (M/10);
236   
237 #ifdef G_ENABLE_DEBUG
238   if (!g_date_valid_dmy (day, m, y)) 
239     {
240       g_warning ("\nOOPS julian: %u  computed dmy: %u %u %u\n", 
241                  d->julian_days, day, m, y);
242     }
243 #endif
244   
245   d->month = m;
246   d->day   = day;
247   d->year  = y;
248   
249   d->dmy = TRUE;
250 }
251
252 GDateWeekday 
253 g_date_get_weekday (const GDate *d)
254 {
255   g_return_val_if_fail (g_date_valid (d), G_DATE_BAD_WEEKDAY);
256   
257   if (!d->julian) 
258     {
259       g_date_update_julian (d);
260     }
261   g_return_val_if_fail (d->julian, G_DATE_BAD_WEEKDAY);
262   
263   return ((d->julian_days - 1) % 7) + 1;
264 }
265
266 GDateMonth   
267 g_date_get_month (const GDate *d)
268 {
269   g_return_val_if_fail (g_date_valid (d), G_DATE_BAD_MONTH);
270   
271   if (!d->dmy) 
272     {
273       g_date_update_dmy (d);
274     }
275   g_return_val_if_fail (d->dmy, G_DATE_BAD_MONTH);
276   
277   return d->month;
278 }
279
280 GDateYear    
281 g_date_get_year (const GDate *d)
282 {
283   g_return_val_if_fail (g_date_valid (d), G_DATE_BAD_YEAR);
284   
285   if (!d->dmy) 
286     {
287       g_date_update_dmy (d);
288     }
289   g_return_val_if_fail (d->dmy, G_DATE_BAD_YEAR);  
290   
291   return d->year;
292 }
293
294 GDateDay     
295 g_date_get_day (const GDate *d)
296 {
297   g_return_val_if_fail (g_date_valid (d), G_DATE_BAD_DAY);
298   
299   if (!d->dmy) 
300     {
301       g_date_update_dmy (d);
302     }
303   g_return_val_if_fail (d->dmy, G_DATE_BAD_DAY);  
304   
305   return d->day;
306 }
307
308 guint32      
309 g_date_get_julian (const GDate *d)
310 {
311   g_return_val_if_fail (g_date_valid (d), G_DATE_BAD_JULIAN);
312   
313   if (!d->julian) 
314     {
315       g_date_update_julian (d);
316     }
317   g_return_val_if_fail (d->julian, G_DATE_BAD_JULIAN);  
318   
319   return d->julian_days;
320 }
321
322 guint        
323 g_date_get_day_of_year (const GDate *d)
324 {
325   gint index;
326   
327   g_return_val_if_fail (g_date_valid (d), 0);
328   
329   if (!d->dmy) 
330     {
331       g_date_update_dmy (d);
332     }
333   g_return_val_if_fail (d->dmy, 0);  
334   
335   index = g_date_is_leap_year (d->year) ? 1 : 0;
336   
337   return (days_in_year[index][d->month] + d->day);
338 }
339
340 guint        
341 g_date_get_monday_week_of_year (const GDate *d)
342 {
343   GDateWeekday wd;
344   guint day;
345   GDate first;
346   
347   g_return_val_if_fail (g_date_valid (d), 0);
348   
349   if (!d->dmy) 
350     {
351       g_date_update_dmy (d);
352     }
353   g_return_val_if_fail (d->dmy, 0);  
354   
355   g_date_clear (&first, 1);
356   
357   g_date_set_dmy (&first, 1, 1, d->year);
358   
359   wd = g_date_get_weekday (&first) - 1; /* make Monday day 0 */
360   day = g_date_get_day_of_year (d) - 1;
361   
362   return ((day + wd)/7U + (wd == 0 ? 1 : 0));
363 }
364
365 guint        
366 g_date_get_sunday_week_of_year (const GDate *d)
367 {
368   GDateWeekday wd;
369   guint day;
370   GDate first;
371   
372   g_return_val_if_fail (g_date_valid (d), 0);
373   
374   if (!d->dmy) 
375     {
376       g_date_update_dmy (d);
377     }
378   g_return_val_if_fail (d->dmy, 0);  
379   
380   g_date_clear (&first, 1);
381   
382   g_date_set_dmy (&first, 1, 1, d->year);
383   
384   wd = g_date_get_weekday (&first);
385   if (wd == 7) wd = 0; /* make Sunday day 0 */
386   day = g_date_get_day_of_year (d) - 1;
387   
388   return ((day + wd)/7U + (wd == 0 ? 1 : 0));
389 }
390
391 /**
392  * g_date_get_iso8601_week_of_year:
393  * @date: a valid #GDate
394  *
395  * Returns the week of the year, where weeks are interpreted according
396  * to ISO 8601. 
397  * 
398  * Returns: ISO 8601 week number of the year.
399  *
400  * Since: 2.6
401  **/
402 guint
403 g_date_get_iso8601_week_of_year (const GDate *d)
404 {
405   guint j, d4, L, d1, w;
406
407   g_return_val_if_fail (g_date_valid (d), 0);
408   
409   if (!d->julian)
410     g_date_update_julian (d);
411   g_return_val_if_fail (d->julian, 0);
412
413   /* Formula taken from the Calendar FAQ; the formula was for the
414    * Julian Period which starts on 1 January 4713 BC, so we add
415    * 1,721,425 to the number of days before doing the formula. 
416    */
417   j  = d->julian_days + 1721425;
418   d4 = (j + 31741 - (j % 7)) % 146097 % 36524 % 1461;
419   L  = d4 / 1460;
420   d1 = ((d4 - L) % 365) + L;
421   w  = d1 / 7 + 1;
422
423   return w;
424 }
425
426 gint
427 g_date_days_between (const GDate *d1,
428                      const GDate *d2)
429 {
430   g_return_val_if_fail (g_date_valid (d1), 0);
431   g_return_val_if_fail (g_date_valid (d2), 0);
432
433   return (gint)g_date_get_julian (d2) - (gint)g_date_get_julian (d1);
434 }
435
436 void         
437 g_date_clear (GDate *d, guint ndates)
438 {
439   g_return_if_fail (d != NULL);
440   g_return_if_fail (ndates != 0);
441   
442   memset (d, 0x0, ndates*sizeof (GDate)); 
443 }
444
445 G_LOCK_DEFINE_STATIC (g_date_global);
446
447 /* These are for the parser, output to the user should use *
448  * g_date_strftime () - this creates more never-freed memory to annoy
449  * all those memory debugger users. :-) 
450  */
451
452 static gchar *long_month_names[13] = 
453
454   NULL,
455 };
456
457 static gchar *short_month_names[13] = 
458 {
459   NULL, 
460 };
461
462 /* This tells us if we need to update the parse info */
463 static gchar *current_locale = NULL;
464
465 /* order of these in the current locale */
466 static GDateDMY dmy_order[3] = 
467 {
468    G_DATE_DAY, G_DATE_MONTH, G_DATE_YEAR
469 };
470
471 /* Where to chop two-digit years: i.e., for the 1930 default, numbers
472  * 29 and below are counted as in the year 2000, numbers 30 and above
473  * are counted as in the year 1900.  
474  */
475
476 static const GDateYear twodigit_start_year = 1930;
477
478 /* It is impossible to enter a year between 1 AD and 99 AD with this
479  * in effect.  
480  */
481 static gboolean using_twodigit_years = FALSE;
482
483 /* Adjustment of locale era to AD, non-zero means using locale era
484  */
485 static gint locale_era_adjust = 0;
486
487 struct _GDateParseTokens {
488   gint num_ints;
489   gint n[3];
490   guint month;
491 };
492
493 typedef struct _GDateParseTokens GDateParseTokens;
494
495 #define NUM_LEN 10
496
497 /* HOLDS: g_date_global_lock */
498 static void
499 g_date_fill_parse_tokens (const gchar *str, GDateParseTokens *pt)
500 {
501   gchar num[4][NUM_LEN+1];
502   gint i;
503   const guchar *s;
504   
505   /* We count 4, but store 3; so we can give an error
506    * if there are 4.
507    */
508   num[0][0] = num[1][0] = num[2][0] = num[3][0] = '\0';
509   
510   s = (const guchar *) str;
511   pt->num_ints = 0;
512   while (*s && pt->num_ints < 4) 
513     {
514       
515       i = 0;
516       while (*s && g_ascii_isdigit (*s) && i < NUM_LEN)
517         {
518           num[pt->num_ints][i] = *s;
519           ++s; 
520           ++i;
521         }
522       
523       if (i > 0) 
524         {
525           num[pt->num_ints][i] = '\0';
526           ++(pt->num_ints);
527         }
528       
529       if (*s == '\0') break;
530       
531       ++s;
532     }
533   
534   pt->n[0] = pt->num_ints > 0 ? atoi (num[0]) : 0;
535   pt->n[1] = pt->num_ints > 1 ? atoi (num[1]) : 0;
536   pt->n[2] = pt->num_ints > 2 ? atoi (num[2]) : 0;
537   
538   pt->month = G_DATE_BAD_MONTH;
539   
540   if (pt->num_ints < 3)
541     {
542       gchar *casefold;
543       gchar *normalized;
544       
545       casefold = g_utf8_casefold (str, -1);
546       normalized = g_utf8_normalize (casefold, -1, G_NORMALIZE_ALL);
547       g_free (casefold);
548
549       i = 1;
550       while (i < 13)
551         {
552           if (long_month_names[i] != NULL) 
553             {
554               const gchar *found = strstr (normalized, long_month_names[i]);
555               
556               if (found != NULL)
557                 {
558                   pt->month = i;
559                   break;
560                 }
561             }
562           
563           if (short_month_names[i] != NULL) 
564             {
565               const gchar *found = strstr (normalized, short_month_names[i]);
566               
567               if (found != NULL)
568                 {
569                   pt->month = i;
570                   break;
571                 }
572             }
573
574           ++i;
575         }
576
577       g_free (normalized);
578     }
579 }
580
581 /* HOLDS: g_date_global_lock */
582 static void
583 g_date_prepare_to_parse (const gchar *str, GDateParseTokens *pt)
584 {
585   const gchar *locale = setlocale (LC_TIME, NULL);
586   gboolean recompute_localeinfo = FALSE;
587   GDate d;
588   
589   g_return_if_fail (locale != NULL); /* should not happen */
590   
591   g_date_clear (&d, 1);              /* clear for scratch use */
592   
593   if ( (current_locale == NULL) || (strcmp (locale, current_locale) != 0) ) 
594     {
595       recompute_localeinfo = TRUE;  /* Uh, there used to be a reason for the temporary */
596     }
597   
598   if (recompute_localeinfo)
599     {
600       int i = 1;
601       GDateParseTokens testpt;
602       gchar buf[128];
603       
604       g_free (current_locale); /* still works if current_locale == NULL */
605       
606       current_locale = g_strdup (locale);
607       
608       short_month_names[0] = "Error";
609       long_month_names[0] = "Error";
610
611       while (i < 13) 
612         {
613           gchar *casefold;
614           
615           g_date_set_dmy (&d, 1, i, 1);
616           
617           g_return_if_fail (g_date_valid (&d));
618           
619           g_date_strftime (buf, 127, "%b", &d);
620
621           casefold = g_utf8_casefold (buf, -1);
622           g_free (short_month_names[i]);
623           short_month_names[i] = g_utf8_normalize (casefold, -1, G_NORMALIZE_ALL);
624           g_free (casefold);
625           
626           g_date_strftime (buf, 127, "%B", &d);
627           casefold = g_utf8_casefold (buf, -1);
628           g_free (long_month_names[i]);
629           long_month_names[i] = g_utf8_normalize (casefold, -1, G_NORMALIZE_ALL);
630           g_free (casefold);
631           
632           ++i;
633         }
634       
635       /* Determine DMY order */
636       
637       /* had to pick a random day - don't change this, some strftimes
638        * are broken on some days, and this one is good so far. */
639       g_date_set_dmy (&d, 4, 7, 1976);
640       
641       g_date_strftime (buf, 127, "%x", &d);
642       
643       g_date_fill_parse_tokens (buf, &testpt);
644       
645       i = 0;
646       while (i < testpt.num_ints)
647         {
648           switch (testpt.n[i])
649             {
650             case 7:
651               dmy_order[i] = G_DATE_MONTH;
652               break;
653             case 4:
654               dmy_order[i] = G_DATE_DAY;
655               break;
656             case 76:
657               using_twodigit_years = TRUE; /* FALL THRU */
658             case 1976:
659               dmy_order[i] = G_DATE_YEAR;
660               break;
661             default:
662               /* assume locale era */
663               locale_era_adjust = 1976 - testpt.n[i];
664               dmy_order[i] = G_DATE_YEAR;
665               break;
666             }
667           ++i;
668         }
669       
670 #ifdef G_ENABLE_DEBUG
671       DEBUG_MSG (("**GDate prepared a new set of locale-specific parse rules."));
672       i = 1;
673       while (i < 13) 
674         {
675           DEBUG_MSG (("  %s   %s", long_month_names[i], short_month_names[i]));
676           ++i;
677         }
678       if (using_twodigit_years)
679         DEBUG_MSG (("**Using twodigit years with cutoff year: %u", twodigit_start_year));
680       { 
681         gchar *strings[3];
682         i = 0;
683         while (i < 3)
684           {
685             switch (dmy_order[i])
686               {
687               case G_DATE_MONTH:
688                 strings[i] = "Month";
689                 break;
690               case G_DATE_YEAR:
691                 strings[i] = "Year";
692                 break;
693               case G_DATE_DAY:
694                 strings[i] = "Day";
695                 break;
696               default:
697                 strings[i] = NULL;
698                 break;
699               }
700             ++i;
701           }
702         DEBUG_MSG (("**Order: %s, %s, %s", strings[0], strings[1], strings[2]));
703         DEBUG_MSG (("**Sample date in this locale: `%s'", buf));
704       }
705 #endif
706     }
707   
708   g_date_fill_parse_tokens (str, pt);
709 }
710
711 void         
712 g_date_set_parse (GDate       *d, 
713                   const gchar *str)
714 {
715   GDateParseTokens pt;
716   guint m = G_DATE_BAD_MONTH, day = G_DATE_BAD_DAY, y = G_DATE_BAD_YEAR;
717   
718   g_return_if_fail (d != NULL);
719   
720   /* set invalid */
721   g_date_clear (d, 1);
722   
723   G_LOCK (g_date_global);
724
725   g_date_prepare_to_parse (str, &pt);
726   
727   DEBUG_MSG (("Found %d ints, `%d' `%d' `%d' and written out month %d", 
728               pt.num_ints, pt.n[0], pt.n[1], pt.n[2], pt.month));
729   
730   
731   if (pt.num_ints == 4) 
732     {
733       G_UNLOCK (g_date_global);
734       return; /* presumably a typo; bail out. */
735     }
736   
737   if (pt.num_ints > 1)
738     {
739       int i = 0;
740       int j = 0;
741       
742       g_assert (pt.num_ints < 4); /* i.e., it is 2 or 3 */
743       
744       while (i < pt.num_ints && j < 3) 
745         {
746           switch (dmy_order[j])
747             {
748             case G_DATE_MONTH:
749             {
750               if (pt.num_ints == 2 && pt.month != G_DATE_BAD_MONTH)
751                 {
752                   m = pt.month;
753                   ++j;      /* skip months, but don't skip this number */
754                   continue;
755                 }
756               else 
757                 m = pt.n[i];
758             }
759             break;
760             case G_DATE_DAY:
761             {
762               if (pt.num_ints == 2 && pt.month == G_DATE_BAD_MONTH)
763                 {
764                   day = 1;
765                   ++j;      /* skip days, since we may have month/year */
766                   continue;
767                 }
768               day = pt.n[i];
769             }
770             break;
771             case G_DATE_YEAR:
772             {
773               y  = pt.n[i];
774               
775               if (locale_era_adjust != 0)
776                 {
777                   y += locale_era_adjust;
778                 }
779               else if (using_twodigit_years && y < 100)
780                 {
781                   guint two     =  twodigit_start_year % 100;
782                   guint century = (twodigit_start_year / 100) * 100;
783                   
784                   if (y < two)
785                     century += 100;
786                   
787                   y += century;
788                 }
789             }
790             break;
791             default:
792               break;
793             }
794           
795           ++i;
796           ++j;
797         }
798       
799       
800       if (pt.num_ints == 3 && !g_date_valid_dmy (day, m, y))
801         {
802           /* Try YYYY MM DD */
803           y   = pt.n[0];
804           m   = pt.n[1];
805           day = pt.n[2];
806           
807           if (using_twodigit_years && y < 100) 
808             y = G_DATE_BAD_YEAR; /* avoids ambiguity */
809         }
810       else if (pt.num_ints == 2)
811         {
812           if (m == G_DATE_BAD_MONTH && pt.month != G_DATE_BAD_MONTH)
813             {
814               m = pt.month;
815             }
816         }
817     }
818   else if (pt.num_ints == 1) 
819     {
820       if (pt.month != G_DATE_BAD_MONTH)
821         {
822           /* Month name and year? */
823           m    = pt.month;
824           day  = 1;
825           y = pt.n[0];
826         }
827       else
828         {
829           /* Try yyyymmdd and yymmdd */
830           
831           m   = (pt.n[0]/100) % 100;
832           day = pt.n[0] % 100;
833           y   = pt.n[0]/10000;
834           
835           /* FIXME move this into a separate function */
836           if (using_twodigit_years && y < 100)
837             {
838               guint two     =  twodigit_start_year % 100;
839               guint century = (twodigit_start_year / 100) * 100;
840               
841               if (y < two)
842                 century += 100;
843               
844               y += century;
845             }
846         }
847     }
848   
849   /* See if we got anything valid out of all this. */
850   /* y < 8000 is to catch 19998 style typos; the library is OK up to 65535 or so */
851   if (y < 8000 && g_date_valid_dmy (day, m, y)) 
852     {
853       d->month = m;
854       d->day   = day;
855       d->year  = y;
856       d->dmy   = TRUE;
857     }
858 #ifdef G_ENABLE_DEBUG
859   else 
860     DEBUG_MSG (("Rejected DMY %u %u %u", day, m, y));
861 #endif
862   G_UNLOCK (g_date_global);
863 }
864
865 /**
866  * g_date_set_time_t:
867  * @date: a #GDate 
868  * @timet: <type>time_t</type> value to set
869  *
870  * Sets the value of a date from a <type>time_t</type> value. 
871  *
872  * To set the value of a date to the current day, you could write:
873  * <informalexample><programlisting> 
874  *  g_date_set_time_t (date, time (NULL)); 
875  * </programlisting></informalexample>
876  *
877  * Since: 2.10
878  */
879 void         
880 g_date_set_time_t (GDate *date,
881                    time_t timet)
882 {
883   struct tm tm;
884   
885   g_return_if_fail (date != NULL);
886   
887 #ifdef HAVE_LOCALTIME_R
888   localtime_r (&timet, &tm);
889 #else
890   {
891     struct tm *ptm = localtime (&timet);
892
893     if (ptm == NULL)
894       {
895         /* Happens at least in Microsoft's C library if you pass a
896          * negative time_t. Use 2000-01-01 as default date.
897          */
898 #ifndef G_DISABLE_CHECKS
899         g_return_if_fail_warning (G_LOG_DOMAIN, "g_date_set_time", "ptm != NULL");
900 #endif
901
902         tm.tm_mon = 0;
903         tm.tm_mday = 1;
904         tm.tm_year = 100;
905       }
906     else
907       memcpy ((void *) &tm, (void *) ptm, sizeof(struct tm));
908   }
909 #endif
910   
911   date->julian = FALSE;
912   
913   date->month = tm.tm_mon + 1;
914   date->day   = tm.tm_mday;
915   date->year  = tm.tm_year + 1900;
916   
917   g_return_if_fail (g_date_valid_dmy (date->day, date->month, date->year));
918   
919   date->dmy    = TRUE;
920 }
921
922
923 /**
924  * g_date_set_time:
925  * @date: a #GDate.
926  * @time_: #GTime value to set.
927  *
928  * Sets the value of a date from a #GTime value. 
929  *
930  * @Deprecated:2.10: Use g_date_set_time_t() instead.
931  */
932 void
933 g_date_set_time (GDate    *date,
934                  GTime     time_)
935 {
936   g_date_set_time_t (date, (time_t) time_);
937 }
938
939 /**
940  * g_date_set_time_val:
941  * @date: a #GDate 
942  * @timeval: #GTimeVal value to set
943  *
944  * Sets the value of a date from a #GTimeVal value.  Note that the
945  * @tv_usec member is ignored, because #GDate can't make use of the
946  * additional precision.
947  *
948  * Since: 2.10
949  */
950 void
951 g_date_set_time_val (GDate    *date,
952                      GTimeVal *timeval)
953 {
954   g_date_set_time_t (date, (time_t) timeval->tv_sec);
955 }
956
957 void         
958 g_date_set_month (GDate     *d, 
959                   GDateMonth m)
960 {
961   g_return_if_fail (d != NULL);
962   g_return_if_fail (g_date_valid_month (m));
963
964   if (d->julian && !d->dmy) g_date_update_dmy(d);
965   d->julian = FALSE;
966   
967   d->month = m;
968   
969   if (g_date_valid_dmy (d->day, d->month, d->year))
970     d->dmy = TRUE;
971   else 
972     d->dmy = FALSE;
973 }
974
975 void         
976 g_date_set_day (GDate     *d, 
977                 GDateDay day)
978 {
979   g_return_if_fail (d != NULL);
980   g_return_if_fail (g_date_valid_day (day));
981   
982   if (d->julian && !d->dmy) g_date_update_dmy(d);
983   d->julian = FALSE;
984   
985   d->day = day;
986   
987   if (g_date_valid_dmy (d->day, d->month, d->year))
988     d->dmy = TRUE;
989   else 
990     d->dmy = FALSE;
991 }
992
993 void         
994 g_date_set_year (GDate     *d, 
995                  GDateYear  y)
996 {
997   g_return_if_fail (d != NULL);
998   g_return_if_fail (g_date_valid_year (y));
999   
1000   if (d->julian && !d->dmy) g_date_update_dmy(d);
1001   d->julian = FALSE;
1002   
1003   d->year = y;
1004   
1005   if (g_date_valid_dmy (d->day, d->month, d->year))
1006     d->dmy = TRUE;
1007   else 
1008     d->dmy = FALSE;
1009 }
1010
1011 void         
1012 g_date_set_dmy (GDate     *d, 
1013                 GDateDay   day, 
1014                 GDateMonth m, 
1015                 GDateYear  y)
1016 {
1017   g_return_if_fail (d != NULL);
1018   g_return_if_fail (g_date_valid_dmy (day, m, y));
1019   
1020   d->julian = FALSE;
1021   
1022   d->month = m;
1023   d->day   = day;
1024   d->year  = y;
1025   
1026   d->dmy = TRUE;
1027 }
1028
1029 void         
1030 g_date_set_julian (GDate *d, guint32 j)
1031 {
1032   g_return_if_fail (d != NULL);
1033   g_return_if_fail (g_date_valid_julian (j));
1034   
1035   d->julian_days = j;
1036   d->julian = TRUE;
1037   d->dmy = FALSE;
1038 }
1039
1040
1041 gboolean     
1042 g_date_is_first_of_month (const GDate *d)
1043 {
1044   g_return_val_if_fail (g_date_valid (d), FALSE);
1045   
1046   if (!d->dmy) 
1047     {
1048       g_date_update_dmy (d);
1049     }
1050   g_return_val_if_fail (d->dmy, FALSE);  
1051   
1052   if (d->day == 1) return TRUE;
1053   else return FALSE;
1054 }
1055
1056 gboolean     
1057 g_date_is_last_of_month (const GDate *d)
1058 {
1059   gint index;
1060   
1061   g_return_val_if_fail (g_date_valid (d), FALSE);
1062   
1063   if (!d->dmy) 
1064     {
1065       g_date_update_dmy (d);
1066     }
1067   g_return_val_if_fail (d->dmy, FALSE);  
1068   
1069   index = g_date_is_leap_year (d->year) ? 1 : 0;
1070   
1071   if (d->day == days_in_months[index][d->month]) return TRUE;
1072   else return FALSE;
1073 }
1074
1075 void         
1076 g_date_add_days (GDate *d, guint ndays)
1077 {
1078   g_return_if_fail (g_date_valid (d));
1079   
1080   if (!d->julian)
1081     {
1082       g_date_update_julian (d);
1083     }
1084   g_return_if_fail (d->julian);
1085   
1086   d->julian_days += ndays;
1087   d->dmy = FALSE;
1088 }
1089
1090 void         
1091 g_date_subtract_days (GDate *d, guint ndays)
1092 {
1093   g_return_if_fail (g_date_valid (d));
1094   
1095   if (!d->julian)
1096     {
1097       g_date_update_julian (d);
1098     }
1099   g_return_if_fail (d->julian);
1100   g_return_if_fail (d->julian_days > ndays);
1101   
1102   d->julian_days -= ndays;
1103   d->dmy = FALSE;
1104 }
1105
1106 void         
1107 g_date_add_months (GDate       *d, 
1108                    guint        nmonths)
1109 {
1110   guint years, months;
1111   gint index;
1112   
1113   g_return_if_fail (g_date_valid (d));
1114   
1115   if (!d->dmy) 
1116     {
1117       g_date_update_dmy (d);
1118     }
1119   g_return_if_fail (d->dmy);  
1120   
1121   nmonths += d->month - 1;
1122   
1123   years  = nmonths/12;
1124   months = nmonths%12;
1125   
1126   d->month = months + 1;
1127   d->year  += years;
1128   
1129   index = g_date_is_leap_year (d->year) ? 1 : 0;
1130   
1131   if (d->day > days_in_months[index][d->month])
1132     d->day = days_in_months[index][d->month];
1133   
1134   d->julian = FALSE;
1135   
1136   g_return_if_fail (g_date_valid (d));
1137 }
1138
1139 void         
1140 g_date_subtract_months (GDate       *d, 
1141                         guint        nmonths)
1142 {
1143   guint years, months;
1144   gint index;
1145   
1146   g_return_if_fail (g_date_valid (d));
1147   
1148   if (!d->dmy) 
1149     {
1150       g_date_update_dmy (d);
1151     }
1152   g_return_if_fail (d->dmy);  
1153   
1154   years  = nmonths/12;
1155   months = nmonths%12;
1156   
1157   g_return_if_fail (d->year > years);
1158   
1159   d->year  -= years;
1160   
1161   if (d->month > months) d->month -= months;
1162   else 
1163     {
1164       months -= d->month;
1165       d->month = 12 - months;
1166       d->year -= 1;
1167     }
1168   
1169   index = g_date_is_leap_year (d->year) ? 1 : 0;
1170   
1171   if (d->day > days_in_months[index][d->month])
1172     d->day = days_in_months[index][d->month];
1173   
1174   d->julian = FALSE;
1175   
1176   g_return_if_fail (g_date_valid (d));
1177 }
1178
1179 void         
1180 g_date_add_years (GDate       *d, 
1181                   guint        nyears)
1182 {
1183   g_return_if_fail (g_date_valid (d));
1184   
1185   if (!d->dmy) 
1186     {
1187       g_date_update_dmy (d);
1188     }
1189   g_return_if_fail (d->dmy);  
1190   
1191   d->year += nyears;
1192   
1193   if (d->month == 2 && d->day == 29)
1194     {
1195       if (!g_date_is_leap_year (d->year))
1196         {
1197           d->day = 28;
1198         }
1199     }
1200   
1201   d->julian = FALSE;
1202 }
1203
1204 void         
1205 g_date_subtract_years (GDate       *d, 
1206                        guint        nyears)
1207 {
1208   g_return_if_fail (g_date_valid (d));
1209   
1210   if (!d->dmy) 
1211     {
1212       g_date_update_dmy (d);
1213     }
1214   g_return_if_fail (d->dmy);  
1215   g_return_if_fail (d->year > nyears);
1216   
1217   d->year -= nyears;
1218   
1219   if (d->month == 2 && d->day == 29)
1220     {
1221       if (!g_date_is_leap_year (d->year))
1222         {
1223           d->day = 28;
1224         }
1225     }
1226   
1227   d->julian = FALSE;
1228 }
1229
1230
1231 gboolean     
1232 g_date_is_leap_year (GDateYear  year)
1233 {
1234   g_return_val_if_fail (g_date_valid_year (year), FALSE);
1235   
1236   return ( (((year % 4) == 0) && ((year % 100) != 0)) ||
1237            (year % 400) == 0 );
1238 }
1239
1240 guint8         
1241 g_date_get_days_in_month (GDateMonth month, 
1242                           GDateYear  year)
1243 {
1244   gint index;
1245   
1246   g_return_val_if_fail (g_date_valid_year (year), 0);
1247   g_return_val_if_fail (g_date_valid_month (month), 0);
1248   
1249   index = g_date_is_leap_year (year) ? 1 : 0;
1250   
1251   return days_in_months[index][month];
1252 }
1253
1254 guint8       
1255 g_date_get_monday_weeks_in_year (GDateYear  year)
1256 {
1257   GDate d;
1258   
1259   g_return_val_if_fail (g_date_valid_year (year), 0);
1260   
1261   g_date_clear (&d, 1);
1262   g_date_set_dmy (&d, 1, 1, year);
1263   if (g_date_get_weekday (&d) == G_DATE_MONDAY) return 53;
1264   g_date_set_dmy (&d, 31, 12, year);
1265   if (g_date_get_weekday (&d) == G_DATE_MONDAY) return 53;
1266   if (g_date_is_leap_year (year)) 
1267     {
1268       g_date_set_dmy (&d, 2, 1, year);
1269       if (g_date_get_weekday (&d) == G_DATE_MONDAY) return 53;
1270       g_date_set_dmy (&d, 30, 12, year);
1271       if (g_date_get_weekday (&d) == G_DATE_MONDAY) return 53;
1272     }
1273   return 52;
1274 }
1275
1276 guint8       
1277 g_date_get_sunday_weeks_in_year (GDateYear  year)
1278 {
1279   GDate d;
1280   
1281   g_return_val_if_fail (g_date_valid_year (year), 0);
1282   
1283   g_date_clear (&d, 1);
1284   g_date_set_dmy (&d, 1, 1, year);
1285   if (g_date_get_weekday (&d) == G_DATE_SUNDAY) return 53;
1286   g_date_set_dmy (&d, 31, 12, year);
1287   if (g_date_get_weekday (&d) == G_DATE_SUNDAY) return 53;
1288   if (g_date_is_leap_year (year)) 
1289     {
1290       g_date_set_dmy (&d, 2, 1, year);
1291       if (g_date_get_weekday (&d) == G_DATE_SUNDAY) return 53;
1292       g_date_set_dmy (&d, 30, 12, year);
1293       if (g_date_get_weekday (&d) == G_DATE_SUNDAY) return 53;
1294     }
1295   return 52;
1296 }
1297
1298 gint         
1299 g_date_compare (const GDate *lhs, 
1300                 const GDate *rhs)
1301 {
1302   g_return_val_if_fail (lhs != NULL, 0);
1303   g_return_val_if_fail (rhs != NULL, 0);
1304   g_return_val_if_fail (g_date_valid (lhs), 0);
1305   g_return_val_if_fail (g_date_valid (rhs), 0);
1306   
1307   /* Remember the self-comparison case! I think it works right now. */
1308   
1309   while (TRUE)
1310     {
1311       
1312       if (lhs->julian && rhs->julian) 
1313         {
1314           if (lhs->julian_days < rhs->julian_days) return -1;
1315           else if (lhs->julian_days > rhs->julian_days) return 1;
1316           else                                          return 0;
1317         }
1318       else if (lhs->dmy && rhs->dmy) 
1319         {
1320           if (lhs->year < rhs->year)               return -1;
1321           else if (lhs->year > rhs->year)               return 1;
1322           else 
1323             {
1324               if (lhs->month < rhs->month)         return -1;
1325               else if (lhs->month > rhs->month)         return 1;
1326               else 
1327                 {
1328                   if (lhs->day < rhs->day)              return -1;
1329                   else if (lhs->day > rhs->day)              return 1;
1330                   else                                       return 0;
1331                 }
1332               
1333             }
1334           
1335         }
1336       else
1337         {
1338           if (!lhs->julian) g_date_update_julian (lhs);
1339           if (!rhs->julian) g_date_update_julian (rhs);
1340           g_return_val_if_fail (lhs->julian, 0);
1341           g_return_val_if_fail (rhs->julian, 0);
1342         }
1343       
1344     }
1345   return 0; /* warnings */
1346 }
1347
1348
1349 void        
1350 g_date_to_struct_tm (const GDate *d, 
1351                      struct tm   *tm)
1352 {
1353   GDateWeekday day;
1354      
1355   g_return_if_fail (g_date_valid (d));
1356   g_return_if_fail (tm != NULL);
1357   
1358   if (!d->dmy) 
1359     {
1360       g_date_update_dmy (d);
1361     }
1362   g_return_if_fail (d->dmy);
1363   
1364   /* zero all the irrelevant fields to be sure they're valid */
1365   
1366   /* On Linux and maybe other systems, there are weird non-POSIX
1367    * fields on the end of struct tm that choke strftime if they
1368    * contain garbage.  So we need to 0 the entire struct, not just the
1369    * fields we know to exist. 
1370    */
1371   
1372   memset (tm, 0x0, sizeof (struct tm));
1373   
1374   tm->tm_mday = d->day;
1375   tm->tm_mon  = d->month - 1; /* 0-11 goes in tm */
1376   tm->tm_year = ((int)d->year) - 1900; /* X/Open says tm_year can be negative */
1377   
1378   day = g_date_get_weekday (d);
1379   if (day == 7) day = 0; /* struct tm wants days since Sunday, so Sunday is 0 */
1380   
1381   tm->tm_wday = (int)day;
1382   
1383   tm->tm_yday = g_date_get_day_of_year (d) - 1; /* 0 to 365 */
1384   tm->tm_isdst = -1; /* -1 means "information not available" */
1385 }
1386
1387 void
1388 g_date_clamp (GDate *date,
1389               const GDate *min_date,
1390               const GDate *max_date)
1391 {
1392   g_return_if_fail (g_date_valid (date));
1393
1394   if (min_date != NULL)
1395     g_return_if_fail (g_date_valid (min_date));
1396   if (max_date != NULL)
1397     g_return_if_fail (g_date_valid (max_date));
1398   if (min_date != NULL && max_date != NULL)
1399     g_return_if_fail (g_date_compare (min_date, max_date) <= 0);
1400
1401   if (min_date && g_date_compare (date, min_date) < 0)
1402     *date = *min_date;
1403
1404   if (max_date && g_date_compare (max_date, date) < 0)
1405     *date = *max_date;
1406 }
1407
1408 void
1409 g_date_order (GDate *date1,
1410               GDate *date2)
1411 {
1412   g_return_if_fail (g_date_valid (date1));
1413   g_return_if_fail (g_date_valid (date2));
1414
1415   if (g_date_compare (date1, date2) > 0)
1416     {
1417       GDate tmp = *date1;
1418       *date1 = *date2;
1419       *date2 = tmp;
1420     }
1421 }
1422
1423 gsize     
1424 g_date_strftime (gchar       *s, 
1425                  gsize        slen, 
1426                  const gchar *format, 
1427                  const GDate *d)
1428 {
1429   struct tm tm;
1430   gsize locale_format_len = 0;
1431   gchar *locale_format;
1432   gsize tmplen;
1433   gchar *tmpbuf;
1434   gsize tmpbufsize;
1435   gsize convlen = 0;
1436   gchar *convbuf;
1437   GError *error = NULL;
1438   gsize retval;
1439
1440   g_return_val_if_fail (g_date_valid (d), 0);
1441   g_return_val_if_fail (slen > 0, 0); 
1442   g_return_val_if_fail (format != 0, 0);
1443   g_return_val_if_fail (s != 0, 0);
1444
1445   g_date_to_struct_tm (d, &tm);
1446
1447   locale_format = g_locale_from_utf8 (format, -1, NULL, &locale_format_len, &error);
1448
1449   if (error)
1450     {
1451       g_warning (G_STRLOC "Error converting format to locale encoding: %s\n", error->message);
1452       g_error_free (error);
1453
1454       s[0] = '\0';
1455       return 0;
1456     }
1457
1458   tmpbufsize = MAX (128, locale_format_len * 2);
1459   while (TRUE)
1460     {
1461       tmpbuf = g_malloc (tmpbufsize);
1462
1463       /* Set the first byte to something other than '\0', to be able to
1464        * recognize whether strftime actually failed or just returned "".
1465        */
1466       tmpbuf[0] = '\1';
1467       tmplen = strftime (tmpbuf, tmpbufsize, locale_format, &tm);
1468
1469       if (tmplen == 0 && tmpbuf[0] != '\0')
1470         {
1471           g_free (tmpbuf);
1472           tmpbufsize *= 2;
1473
1474           if (tmpbufsize > 65536)
1475             {
1476               g_warning (G_STRLOC "Maximum buffer size for g_date_strftime exceeded: giving up\n");
1477               g_free (locale_format);
1478
1479               s[0] = '\0';
1480               return 0;
1481             }
1482         }
1483       else
1484         break;
1485     }
1486   g_free (locale_format);
1487
1488   convbuf = g_locale_to_utf8 (tmpbuf, tmplen, NULL, &convlen, &error);
1489   g_free (tmpbuf);
1490
1491   if (error)
1492     {
1493       g_warning (G_STRLOC "Error converting results of strftime to UTF-8: %s\n", error->message);
1494       g_error_free (error);
1495
1496       s[0] = '\0';
1497       return 0;
1498     }
1499
1500   if (slen <= convlen)
1501     {
1502       /* Ensure only whole characters are copied into the buffer.
1503        */
1504       gchar *end = g_utf8_find_prev_char (convbuf, convbuf + slen);
1505       g_assert (end != NULL);
1506       convlen = end - convbuf;
1507
1508       /* Return 0 because the buffer isn't large enough.
1509        */
1510       retval = 0;
1511     }
1512   else
1513     retval = convlen;
1514
1515   memcpy (s, convbuf, convlen);
1516   s[convlen] = '\0';
1517   g_free (convbuf);
1518
1519   return retval;
1520 }
1521
1522 #define __G_DATE_C__
1523 #include "galiasdef.c"
1524