If Julian is valid, we have to update the dmy representation before
[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 Library 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  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library 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 #include "glib.h"
20
21 #include <time.h>
22 #include <string.h>
23 #include <ctype.h>
24 #include <stdlib.h>
25 #include <locale.h>
26
27 GDate*
28 g_date_new ()
29 {
30   GDate *d = g_new0 (GDate, 1); /* happily, 0 is the invalid flag for everything. */
31   
32   return d;
33 }
34
35 GDate*
36 g_date_new_dmy (GDateDay day, GDateMonth m, GDateYear y)
37 {
38   GDate *d;
39   g_return_val_if_fail (g_date_valid_dmy (day, m, y), NULL);
40   
41   d = g_new (GDate, 1);
42   
43   d->julian = FALSE;
44   d->dmy    = TRUE;
45   
46   d->month = m;
47   d->day   = day;
48   d->year  = y;
49   
50   g_assert (g_date_valid (d));
51   
52   return d;
53 }
54
55 GDate*
56 g_date_new_julian (guint32 j)
57 {
58   GDate *d;
59   g_return_val_if_fail (g_date_valid_julian (j), NULL);
60   
61   d = g_new (GDate, 1);
62   
63   d->julian = TRUE;
64   d->dmy    = FALSE;
65   
66   d->julian_days = j;
67   
68   g_assert (g_date_valid (d));
69   
70   return d;
71 }
72
73 void
74 g_date_free (GDate *d)
75 {
76   g_return_if_fail (d != NULL);
77   
78   g_free (d);
79 }
80
81 gboolean     
82 g_date_valid (GDate       *d)
83 {
84   g_return_val_if_fail (d != NULL, FALSE);
85   
86   return (d->julian || d->dmy);
87 }
88
89 static const guint8 days_in_months[2][13] = 
90 {  /* error, jan feb mar apr may jun jul aug sep oct nov dec */
91   {  0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }, 
92   {  0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 } /* leap year */
93 };
94
95 static const guint16 days_in_year[2][14] = 
96 {  /* 0, jan feb mar apr may  jun  jul  aug  sep  oct  nov  dec */
97   {  0, 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365 }, 
98   {  0, 0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335, 366 }
99 };
100
101 gboolean     
102 g_date_valid_month (GDateMonth   m)
103
104   return ( (m > G_DATE_BAD_MONTH) && (m < 13) );
105 }
106
107 gboolean     
108 g_date_valid_year (GDateYear    y)
109 {
110   return ( y > G_DATE_BAD_YEAR );
111 }
112
113 gboolean     
114 g_date_valid_day (GDateDay     d)
115 {
116   return ( (d > G_DATE_BAD_DAY) && (d < 32) );
117 }
118
119 gboolean     
120 g_date_valid_weekday (GDateWeekday w)
121 {
122   return ( (w > G_DATE_BAD_WEEKDAY) && (w < 8) );
123 }
124
125 gboolean     
126 g_date_valid_julian (guint32      j)
127 {
128   return (j > G_DATE_BAD_JULIAN);
129 }
130
131 gboolean     
132 g_date_valid_dmy (GDateDay     d, 
133                   GDateMonth   m, 
134                   GDateYear    y)
135 {
136   return ( (m > G_DATE_BAD_MONTH) &&
137            (m < 13)               && 
138            (d > G_DATE_BAD_DAY)   && 
139            (y > G_DATE_BAD_YEAR)  &&   /* must check before using g_date_is_leap_year */
140            (d <=  (g_date_is_leap_year (y) ? 
141                    days_in_months[1][m] : days_in_months[0][m])) );
142 }
143
144
145 /* "Julian days" just means an absolute number of days, where Day 1 ==
146  *   Jan 1, Year 1
147  */
148 static void
149 g_date_update_julian (GDate *d)
150 {
151   GDateYear year;
152   gint index;
153   
154   g_return_if_fail (d != NULL);
155   g_return_if_fail (d->dmy);
156   g_return_if_fail (!d->julian);
157   g_return_if_fail (g_date_valid_dmy (d->day, d->month, d->year));
158   
159   /* What we actually do is: multiply years * 365 days in the year,
160    *  add the number of years divided by 4, subtract the number of
161    *  years divided by 100 and add the number of years divided by 400,
162    *  which accounts for leap year stuff. Code from Steffen Beyer's
163    *  DateCalc. 
164    */
165   
166   year = d->year - 1; /* we know d->year > 0 since it's valid */
167   
168   d->julian_days = year * 365U;
169   d->julian_days += (year >>= 2); /* divide by 4 and add */
170   d->julian_days -= (year /= 25); /* divides original # years by 100 */
171   d->julian_days += year >> 2;    /* divides by 4, which divides original by 400 */
172   
173   index = g_date_is_leap_year (d->year) ? 1 : 0;
174   
175   d->julian_days += days_in_year[index][d->month] + d->day;
176   
177   g_return_if_fail (g_date_valid_julian (d->julian_days));
178   
179   d->julian = TRUE;
180 }
181
182 static void 
183 g_date_update_dmy (GDate *d)
184 {
185   GDateYear y;
186   GDateMonth m;
187   GDateDay day;
188   
189   guint32 A, B, C, D, E, M;
190   
191   g_return_if_fail (d != NULL);
192   g_return_if_fail (d->julian);
193   g_return_if_fail (!d->dmy);
194   g_return_if_fail (g_date_valid_julian (d->julian_days));
195   
196   /* Formula taken from the Calendar FAQ; the formula was for the
197    *  Julian Period which starts on 1 January 4713 BC, so we add
198    *  1,721,425 to the number of days before doing the formula.
199    *
200    * I'm sure this can be simplified for our 1 January 1 AD period
201    * start, but I can't figure out how to unpack the formula.  
202    */
203   
204   A = d->julian_days + 1721425 + 32045;
205   B = ( 4 *(A + 36524) )/ 146097 - 1;
206   C = A - (146097 * B)/4;
207   D = ( 4 * (C + 365) ) / 1461 - 1;
208   E = C - ((1461*D) / 4);
209   M = (5 * (E - 1) + 2)/153;
210   
211   m = M + 3 - (12*(M/10));
212   day = E - (153*M + 2)/5;
213   y = 100 * B + D - 4800 + (M/10);
214   
215 #ifdef G_ENABLE_DEBUG
216   if (!g_date_valid_dmy (day, m, y)) 
217     {
218       g_warning ("\nOOPS julian: %u  computed dmy: %u %u %u\n", 
219                  d->julian_days, day, m, y);
220     }
221 #endif
222   
223   d->month = m;
224   d->day   = day;
225   d->year  = y;
226   
227   d->dmy = TRUE;
228 }
229
230 GDateWeekday 
231 g_date_weekday (GDate *d)
232 {
233   g_return_val_if_fail (d != NULL, G_DATE_BAD_WEEKDAY);
234   g_return_val_if_fail (g_date_valid (d), G_DATE_BAD_WEEKDAY);
235   
236   if (!d->julian) 
237     {
238       g_date_update_julian (d);
239     }
240   g_return_val_if_fail (d->julian, G_DATE_BAD_WEEKDAY);
241   
242   return ((d->julian_days - 1) % 7) + 1;
243 }
244
245 GDateMonth   
246 g_date_month (GDate *d)
247 {
248   g_return_val_if_fail (d != NULL, G_DATE_BAD_MONTH);
249   g_return_val_if_fail (g_date_valid (d), G_DATE_BAD_MONTH);
250   
251   if (!d->dmy) 
252     {
253       g_date_update_dmy (d);
254     }
255   g_return_val_if_fail (d->dmy, G_DATE_BAD_MONTH);
256   
257   return d->month;
258 }
259
260 GDateYear    
261 g_date_year (GDate *d)
262 {
263   g_return_val_if_fail (d != NULL, G_DATE_BAD_YEAR);
264   g_return_val_if_fail (g_date_valid (d), G_DATE_BAD_YEAR);
265   
266   if (!d->dmy) 
267     {
268       g_date_update_dmy (d);
269     }
270   g_return_val_if_fail (d->dmy, G_DATE_BAD_YEAR);  
271   
272   return d->year;
273 }
274
275 GDateDay     
276 g_date_day (GDate *d)
277 {
278   g_return_val_if_fail (d != NULL, G_DATE_BAD_DAY);
279   g_return_val_if_fail (g_date_valid (d), G_DATE_BAD_DAY);
280   
281   if (!d->dmy) 
282     {
283       g_date_update_dmy (d);
284     }
285   g_return_val_if_fail (d->dmy, G_DATE_BAD_DAY);  
286   
287   return d->day;
288 }
289
290 guint32      
291 g_date_julian (GDate *d)
292 {
293   g_return_val_if_fail (d != NULL, G_DATE_BAD_JULIAN);
294   g_return_val_if_fail (g_date_valid (d), G_DATE_BAD_JULIAN);
295   
296   if (!d->julian) 
297     {
298       g_date_update_julian (d);
299     }
300   g_return_val_if_fail (d->julian, G_DATE_BAD_JULIAN);  
301   
302   return d->julian_days;
303 }
304
305 guint        
306 g_date_day_of_year (GDate *d)
307 {
308   gint index;
309   
310   g_return_val_if_fail (d != NULL, 0);
311   g_return_val_if_fail (g_date_valid (d), 0);
312   
313   if (!d->dmy) 
314     {
315       g_date_update_dmy (d);
316     }
317   g_return_val_if_fail (d->dmy, 0);  
318   
319   index = g_date_is_leap_year (d->year) ? 1 : 0;
320   
321   return (days_in_year[index][d->month] + d->day);
322 }
323
324 guint        
325 g_date_monday_week_of_year (GDate *d)
326 {
327   GDateWeekday wd;
328   guint day;
329   GDate first;
330   
331   g_return_val_if_fail (d != NULL, 0);
332   g_return_val_if_fail (g_date_valid (d), 0);
333   
334   if (!d->dmy) 
335     {
336       g_date_update_dmy (d);
337     }
338   g_return_val_if_fail (d->dmy, 0);  
339   
340   g_date_clear (&first, 1);
341   
342   g_date_set_dmy (&first, 1, 1, d->year);
343   
344   wd = g_date_weekday (&first) - 1; /* make Monday day 0 */
345   day = g_date_day_of_year (d) - 1;
346   
347   return ((day + wd)/7U + (wd == 0 ? 1 : 0));
348 }
349
350 guint        
351 g_date_sunday_week_of_year (GDate *d)
352 {
353   GDateWeekday wd;
354   guint day;
355   GDate first;
356   
357   g_return_val_if_fail (d != NULL, 0);
358   g_return_val_if_fail (g_date_valid (d), 0);
359   
360   if (!d->dmy) 
361     {
362       g_date_update_dmy (d);
363     }
364   g_return_val_if_fail (d->dmy, 0);  
365   
366   g_date_clear (&first, 1);
367   
368   g_date_set_dmy (&first, 1, 1, d->year);
369   
370   wd = g_date_weekday (&first);
371   if (wd == 7) wd = 0; /* make Sunday day 0 */
372   day = g_date_day_of_year (d) - 1;
373   
374   return ((day + wd)/7U + (wd == 0 ? 1 : 0));
375 }
376
377 void         
378 g_date_clear (GDate       *d, guint ndates)
379 {
380   g_return_if_fail (d != NULL);
381   g_return_if_fail (ndates != 0);
382   
383   memset (d, 0x0, ndates*sizeof (GDate)); 
384 }
385
386 /* These are for the parser, output to the user should use *
387  * g_date_strftime () - this creates more never-freed memory to annoy
388  * all those memory debugger users. :-) 
389  */
390
391 static gchar *long_month_names[13] = 
392
393   "Error", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL 
394 };
395
396 static gchar *short_month_names[13] = 
397 {
398   "Error", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL 
399 };
400
401 /* This tells us if we need to update the parse info */
402 static gchar *current_locale = NULL;
403
404 /* order of these in the current locale */
405 static GDateDMY dmy_order[3] = 
406 {
407    G_DATE_DAY, G_DATE_MONTH, G_DATE_YEAR
408 };
409
410 /* Where to chop two-digit years: i.e., for the 1930 default, numbers
411  * 29 and below are counted as in the year 2000, numbers 30 and above
412  * are counted as in the year 1900.  
413  */
414
415 static GDateYear twodigit_start_year = 1930;
416
417 /* It is impossible to enter a year between 1 AD and 99 AD with this
418  * in effect.  
419  */
420 static gboolean using_twodigit_years = FALSE;
421
422 struct _GDateParseTokens {
423   gint num_ints;
424   gint n[3];
425   guint month;
426 };
427
428 typedef struct _GDateParseTokens GDateParseTokens;
429
430 #define NUM_LEN 10
431
432 static void
433 g_date_fill_parse_tokens (const gchar *str, GDateParseTokens *pt)
434 {
435   gchar num[4][NUM_LEN+1];
436   gint i;
437   const gchar *s;
438   
439   /* We count 4, but store 3; so we can give an error
440    * if there are 4.
441    */
442   num[0][0] = num[1][0] = num[2][0] = num[3][0] = '\0';
443   
444   s = str;
445   pt->num_ints = 0;
446   while (*s && pt->num_ints < 4) 
447     {
448       
449       i = 0;
450       while (*s && isdigit (*s) && i <= NUM_LEN)
451         {
452           num[pt->num_ints][i] = *s;
453           ++s; 
454           ++i;
455         }
456       
457       if (i > 0) 
458         {
459           num[pt->num_ints][i] = '\0';
460           ++(pt->num_ints);
461         }
462       
463       if (*s == '\0') break;
464       
465       ++s;
466     }
467   
468   pt->n[0] = pt->num_ints > 0 ? atoi (num[0]) : 0;
469   pt->n[1] = pt->num_ints > 1 ? atoi (num[1]) : 0;
470   pt->n[2] = pt->num_ints > 2 ? atoi (num[2]) : 0;
471   
472   pt->month = G_DATE_BAD_MONTH;
473   
474   if (pt->num_ints < 3)
475     {
476       gchar lcstr[128];
477       int i = 1;
478       
479       strncpy (lcstr, str, 127);
480       g_strdown (lcstr);
481       
482       while (i < 13)
483         {
484           if (long_month_names[i] != NULL) 
485             {
486               const gchar *found = strstr (lcstr, long_month_names[i]);
487               
488               if (found != NULL)
489                 {
490                   pt->month = i;
491                   return;
492                 }
493             }
494           
495           if (short_month_names[i] != NULL) 
496             {
497               const gchar *found = strstr (lcstr, short_month_names[i]);
498               
499               if (found != NULL)
500                 {
501                   pt->month = i;
502                   return;
503                 }
504             }
505           
506           ++i;
507         }
508     }
509 }
510
511 static void
512 g_date_prepare_to_parse (const gchar *str, GDateParseTokens *pt)
513 {
514   const gchar *locale = setlocale (LC_TIME, NULL);
515   gboolean recompute_localeinfo = FALSE;
516   GDate d;
517   
518   g_return_if_fail (locale != NULL); /* should not happen */
519   
520   g_date_clear (&d, 1);              /* clear for scratch use */
521   
522   if ( (current_locale == NULL) || (strcmp (locale, current_locale) != 0) ) 
523     {
524       recompute_localeinfo = TRUE;  /* Uh, there used to be a reason for the temporary */
525     }
526   
527   if (recompute_localeinfo)
528     {
529       int i = 1;
530       GDateParseTokens testpt;
531       gchar buf[128];
532       
533       g_free (current_locale); /* still works if current_locale == NULL */
534       
535       current_locale = g_strdup (locale);
536       
537       while (i < 13) 
538         {
539           g_date_set_dmy (&d, 1, i, 1);
540           
541           g_return_if_fail (g_date_valid (&d));
542           
543           g_date_strftime (buf, 127, "%b", &d);
544           g_free (short_month_names[i]);
545           g_strdown (buf);
546           short_month_names[i] = g_strdup (buf);
547           
548           
549           
550           g_date_strftime (buf, 127, "%B", &d);
551           g_free (long_month_names[i]);
552           g_strdown (buf);
553           long_month_names[i] = g_strdup (buf);
554           
555           ++i;
556         }
557       
558       /* Determine DMY order */
559       
560       g_date_set_dmy (&d, 4, 7, 1776); /* had to pick a random day */
561       
562       g_date_strftime (buf, 127, "%x", &d);
563       
564       g_date_fill_parse_tokens (buf, &testpt);
565       
566       i = 0;
567       while (i < testpt.num_ints)
568         {
569           switch (testpt.n[i])
570             {
571             case 7:
572               dmy_order[i] = G_DATE_MONTH;
573               break;
574             case 4:
575               dmy_order[i] = G_DATE_DAY;
576               break;
577             case 76:
578               using_twodigit_years = TRUE; /* FALL THRU */
579             case 1776:
580               dmy_order[i] = G_DATE_YEAR;
581               break;
582             default:
583               /* leave it unchanged */
584               break;
585             }
586           ++i;
587         }
588       
589 #ifdef G_ENABLE_DEBUG
590       g_message ("**GDate prepared a new set of locale-specific parse rules.");
591       i = 1;
592       while (i < 13) 
593         {
594           g_message ("  %s   %s", long_month_names[i], short_month_names[i]);
595           ++i;
596         }
597       if (using_twodigit_years)
598         {
599           g_message ("**Using twodigit years with cutoff year: %u", twodigit_start_year);
600         }
601       { 
602         gchar *strings[3];
603         i = 0;
604         while (i < 3)
605           {
606             switch (dmy_order[i])
607               {
608               case G_DATE_MONTH:
609                 strings[i] = "Month";
610                 break;
611               case G_DATE_YEAR:
612                 strings[i] = "Year";
613                 break;
614               case G_DATE_DAY:
615                 strings[i] = "Day";
616                 break;
617               default:
618                 strings[i] = NULL;
619                 break;
620               }
621             ++i;
622           }
623         g_message ("**Order: %s, %s, %s", strings[0], strings[1], strings[2]);
624         g_message ("**Sample date in this locale: `%s'", buf);
625       }
626 #endif
627     }
628   
629   g_date_fill_parse_tokens (str, pt);
630 }
631
632 void         
633 g_date_set_parse (GDate       *d, 
634                   const gchar *str)
635 {
636   GDateParseTokens pt;
637   guint m = G_DATE_BAD_MONTH, day = G_DATE_BAD_DAY, y = G_DATE_BAD_YEAR;
638   
639   g_return_if_fail (d != NULL);
640   
641   /* set invalid */
642   g_date_clear (d, 1);
643   
644   g_date_prepare_to_parse (str, &pt);
645   
646 #ifdef G_ENABLE_DEBUG
647   g_message ("Found %d ints, `%d' `%d' `%d' and written out month %d", 
648              pt.num_ints, pt.n[0], pt.n[1], pt.n[2], pt.month);
649 #endif
650   
651   
652   if (pt.num_ints == 4) return; /* presumably a typo; bail out. */
653   
654   if (pt.num_ints > 1)
655     {
656       int i = 0;
657       int j = 0;
658       
659       g_assert (pt.num_ints < 4); /* i.e., it is 2 or 3 */
660       
661       while (i < pt.num_ints && j < 3) 
662         {
663           switch (dmy_order[j])
664             {
665             case G_DATE_MONTH:
666             {
667               if (pt.num_ints == 2 && pt.month != G_DATE_BAD_MONTH)
668                 {
669                   m = pt.month;
670                   ++j;      /* skip months, but don't skip this number */
671                   continue;
672                 }
673               else 
674                 m = pt.n[i];
675             }
676             break;
677             case G_DATE_DAY:
678             {
679               if (pt.num_ints == 2 && pt.month == G_DATE_BAD_MONTH)
680                 {
681                   day = 1;
682                   ++j;      /* skip days, since we may have month/year */
683                   continue;
684                 }
685               day = pt.n[i];
686             }
687             break;
688             case G_DATE_YEAR:
689             {
690               y  = pt.n[i];
691               
692               if (using_twodigit_years && y < 100)
693                 {
694                   guint two     =  twodigit_start_year % 100;
695                   guint century = (twodigit_start_year / 100) * 100;
696                   
697                   if (y < two)
698                     century += 100;
699                   
700                   y += century;
701                 }
702             }
703             break;
704             default:
705               break;
706             }
707           
708           ++i;
709           ++j;
710         }
711       
712       
713       if (pt.num_ints == 3 && !g_date_valid_dmy (day, m, y))
714         {
715           /* Try YYYY MM DD */
716           y   = pt.n[0];
717           m   = pt.n[1];
718           day = pt.n[2];
719           
720           if (using_twodigit_years && y < 100) 
721             y = G_DATE_BAD_YEAR; /* avoids ambiguity */
722         }
723     }
724   else if (pt.num_ints == 1) 
725     {
726       if (pt.month != G_DATE_BAD_MONTH)
727         {
728           /* Month name and year? */
729           m    = pt.month;
730           day  = 1;
731           y = pt.n[0];
732         }
733       else
734         {
735           /* Try yyyymmdd and yymmdd */
736           
737           m   = (pt.n[0]/100) % 100;
738           day = pt.n[0] % 100;
739           y   = pt.n[0]/10000;
740           
741           /* FIXME move this into a separate function */
742           if (using_twodigit_years && y < 100)
743             {
744               guint two     =  twodigit_start_year % 100;
745               guint century = (twodigit_start_year / 100) * 100;
746               
747               if (y < two)
748                 century += 100;
749               
750               y += century;
751             }
752         }
753     }
754   
755   /* See if we got anything valid out of all this. */
756   /* y < 8000 is to catch 19998 style typos; the library is OK up to 65535 or so */
757   if (y < 8000 && g_date_valid_dmy (day, m, y)) 
758     {
759       d->month = m;
760       d->day   = day;
761       d->year  = y;
762       d->dmy   = TRUE;
763     }
764 #ifdef G_ENABLE_DEBUG
765   else 
766     g_message ("Rejected DMY %u %u %u", day, m, y);
767 #endif
768 }
769
770 void         
771 g_date_set_time (GDate *d,
772                  GTime  time)
773 {
774   time_t t = time;
775   struct tm *tm;
776   
777   g_return_if_fail (d != NULL);
778   
779   tm = localtime (&t);
780   
781   if (tm) 
782     {
783       d->julian = FALSE;
784       
785       d->month = tm->tm_mon + 1;
786       d->day   = tm->tm_mday;
787       d->year  = tm->tm_year + 1900;
788       
789       g_return_if_fail (g_date_valid_dmy (d->day, d->month, d->year));
790       
791       d->dmy    = TRUE;
792     }
793   else 
794     {
795       g_date_clear (d, 1);
796     }
797 }
798
799 void         
800 g_date_set_month (GDate     *d, 
801                   GDateMonth m)
802 {
803   g_return_if_fail (d != NULL);
804   g_return_if_fail (g_date_valid_month (m));
805
806   if (d->julian && !d->dmy) g_date_update_dmy(d);
807   d->julian = FALSE;
808   
809   d->month = m;
810   
811   if (g_date_valid_dmy (d->day, d->month, d->year))
812     d->dmy = TRUE;
813   else 
814     d->dmy = FALSE;
815 }
816
817 void         
818 g_date_set_day (GDate     *d, 
819                 GDateDay day)
820 {
821   g_return_if_fail (d != NULL);
822   g_return_if_fail (g_date_valid_day (day));
823   
824   if (d->julian && !d->dmy) g_date_update_dmy(d);
825   d->julian = FALSE;
826   
827   d->day = day;
828   
829   if (g_date_valid_dmy (d->day, d->month, d->year))
830     d->dmy = TRUE;
831   else 
832     d->dmy = FALSE;
833 }
834
835 void         
836 g_date_set_year (GDate     *d, 
837                  GDateYear  y)
838 {
839   g_return_if_fail (d != NULL);
840   g_return_if_fail (g_date_valid_year (y));
841   
842   if (d->julian && !d->dmy) g_date_update_dmy(d);
843   d->julian = FALSE;
844   
845   d->year = y;
846   
847   if (g_date_valid_dmy (d->day, d->month, d->year))
848     d->dmy = TRUE;
849   else 
850     d->dmy = FALSE;
851 }
852
853 void         
854 g_date_set_dmy (GDate     *d, 
855                 GDateDay   day, 
856                 GDateMonth m, 
857                 GDateYear  y)
858 {
859   g_return_if_fail (d != NULL);
860   g_return_if_fail (g_date_valid_dmy (day, m, y));
861   
862   d->julian = FALSE;
863   
864   d->month = m;
865   d->day   = day;
866   d->year  = y;
867   
868   d->dmy = TRUE;
869 }
870
871 void         
872 g_date_set_julian (GDate *d, guint32 j)
873 {
874   g_return_if_fail (d != NULL);
875   g_return_if_fail (g_date_valid_julian (j));
876   
877   d->julian_days = j;
878   d->julian = TRUE;
879   d->dmy = FALSE;
880 }
881
882
883 gboolean     
884 g_date_is_first_of_month (GDate *d)
885 {
886   g_return_val_if_fail (d != NULL, FALSE);
887   g_return_val_if_fail (g_date_valid (d), FALSE);
888   
889   if (!d->dmy) 
890     {
891       g_date_update_dmy (d);
892     }
893   g_return_val_if_fail (d->dmy, FALSE);  
894   
895   if (d->day == 1) return TRUE;
896   else return FALSE;
897 }
898
899 gboolean     
900 g_date_is_last_of_month (GDate *d)
901 {
902   gint index;
903   
904   g_return_val_if_fail (d != NULL, FALSE);
905   g_return_val_if_fail (g_date_valid (d), FALSE);
906   
907   if (!d->dmy) 
908     {
909       g_date_update_dmy (d);
910     }
911   g_return_val_if_fail (d->dmy, FALSE);  
912   
913   index = g_date_is_leap_year (d->year) ? 1 : 0;
914   
915   if (d->day == days_in_months[index][d->month]) return TRUE;
916   else return FALSE;
917 }
918
919 void         
920 g_date_add_days (GDate *d, guint ndays)
921 {
922   g_return_if_fail (d != NULL);
923   g_return_if_fail (g_date_valid (d));
924   
925   if (!d->julian)
926     {
927       g_date_update_julian (d);
928     }
929   g_return_if_fail (d->julian);
930   
931   d->julian_days += ndays;
932   d->dmy = FALSE;
933 }
934
935 void         
936 g_date_subtract_days (GDate *d, guint ndays)
937 {
938   g_return_if_fail (d != NULL);
939   g_return_if_fail (g_date_valid (d));
940   
941   if (!d->julian)
942     {
943       g_date_update_julian (d);
944     }
945   g_return_if_fail (d->julian);
946   g_return_if_fail (d->julian_days > ndays);
947   
948   d->julian_days -= ndays;
949   d->dmy = FALSE;
950 }
951
952 void         
953 g_date_add_months (GDate       *d, 
954                    guint        nmonths)
955 {
956   guint years, months;
957   gint index;
958   
959   g_return_if_fail (d != NULL);
960   g_return_if_fail (g_date_valid (d));
961   
962   if (!d->dmy) 
963     {
964       g_date_update_dmy (d);
965     }
966   g_return_if_fail (d->dmy);  
967   
968   nmonths += d->month - 1;
969   
970   years  = nmonths/12;
971   months = nmonths%12;
972   
973   d->month = months + 1;
974   d->year  += years;
975   
976   index = g_date_is_leap_year (d->year) ? 1 : 0;
977   
978   if (d->day > days_in_months[index][d->month])
979     d->day = days_in_months[index][d->month];
980   
981   d->julian = FALSE;
982   
983   g_return_if_fail (g_date_valid (d));
984 }
985
986 void         
987 g_date_subtract_months (GDate       *d, 
988                         guint        nmonths)
989 {
990   guint years, months;
991   gint index;
992   
993   g_return_if_fail (d != NULL);
994   g_return_if_fail (g_date_valid (d));
995   
996   if (!d->dmy) 
997     {
998       g_date_update_dmy (d);
999     }
1000   g_return_if_fail (d->dmy);  
1001   
1002   years  = nmonths/12;
1003   months = nmonths%12;
1004   
1005   g_return_if_fail (d->year > years);
1006   
1007   d->year  -= years;
1008   
1009   if (d->month > months) d->month -= months;
1010   else 
1011     {
1012       months -= d->month;
1013       d->month = 12 - months;
1014       d->year -= 1;
1015     }
1016   
1017   index = g_date_is_leap_year (d->year) ? 1 : 0;
1018   
1019   if (d->day > days_in_months[index][d->month])
1020     d->day = days_in_months[index][d->month];
1021   
1022   d->julian = FALSE;
1023   
1024   g_return_if_fail (g_date_valid (d));
1025 }
1026
1027 void         
1028 g_date_add_years (GDate       *d, 
1029                   guint        nyears)
1030 {
1031   g_return_if_fail (d != NULL);
1032   g_return_if_fail (g_date_valid (d));
1033   
1034   if (!d->dmy) 
1035     {
1036       g_date_update_dmy (d);
1037     }
1038   g_return_if_fail (d->dmy);  
1039   
1040   d->year += nyears;
1041   
1042   if (d->month == 2 && d->day == 29)
1043     {
1044       if (!g_date_is_leap_year (d->year))
1045         {
1046           d->day = 28;
1047         }
1048     }
1049   
1050   d->julian = FALSE;
1051 }
1052
1053 void         
1054 g_date_subtract_years (GDate       *d, 
1055                        guint        nyears)
1056 {
1057   g_return_if_fail (d != NULL);
1058   g_return_if_fail (g_date_valid (d));
1059   
1060   if (!d->dmy) 
1061     {
1062       g_date_update_dmy (d);
1063     }
1064   g_return_if_fail (d->dmy);  
1065   g_return_if_fail (d->year > nyears);
1066   
1067   d->year -= nyears;
1068   
1069   if (d->month == 2 && d->day == 29)
1070     {
1071       if (!g_date_is_leap_year (d->year))
1072         {
1073           d->day = 28;
1074         }
1075     }
1076   
1077   d->julian = FALSE;
1078 }
1079
1080
1081 gboolean     
1082 g_date_is_leap_year (GDateYear  year)
1083 {
1084   g_return_val_if_fail (g_date_valid_year (year), FALSE);
1085   
1086   return ( (((year % 4) == 0) && ((year % 100) != 0)) ||
1087            (year % 400) == 0 );
1088 }
1089
1090 guint8         
1091 g_date_days_in_month (GDateMonth month, 
1092                       GDateYear  year)
1093 {
1094   gint index;
1095   
1096   g_return_val_if_fail (g_date_valid_year (year), 0);
1097   g_return_val_if_fail (g_date_valid_month (month), 0);
1098   
1099   index = g_date_is_leap_year (year) ? 1 : 0;
1100   
1101   return days_in_months[index][month];
1102 }
1103
1104 guint8       
1105 g_date_monday_weeks_in_year (GDateYear  year)
1106 {
1107   GDate d;
1108   
1109   g_return_val_if_fail (g_date_valid_year (year), 0);
1110   
1111   g_date_clear (&d, 1);
1112   g_date_set_dmy (&d, 1, 1, year);
1113   if (g_date_weekday (&d) == G_DATE_MONDAY) return 53;
1114   g_date_set_dmy (&d, 31, 12, year);
1115   if (g_date_weekday (&d) == G_DATE_MONDAY) return 53;
1116   if (g_date_is_leap_year (year)) 
1117     {
1118       g_date_set_dmy (&d, 2, 1, year);
1119       if (g_date_weekday (&d) == G_DATE_MONDAY) return 53;
1120       g_date_set_dmy (&d, 30, 12, year);
1121       if (g_date_weekday (&d) == G_DATE_MONDAY) return 53;
1122     }
1123   return 52;
1124 }
1125
1126 guint8       
1127 g_date_sunday_weeks_in_year (GDateYear  year)
1128 {
1129   GDate d;
1130   
1131   g_return_val_if_fail (g_date_valid_year (year), 0);
1132   
1133   g_date_clear (&d, 1);
1134   g_date_set_dmy (&d, 1, 1, year);
1135   if (g_date_weekday (&d) == G_DATE_SUNDAY) return 53;
1136   g_date_set_dmy (&d, 31, 12, year);
1137   if (g_date_weekday (&d) == G_DATE_SUNDAY) return 53;
1138   if (g_date_is_leap_year (year)) 
1139     {
1140       g_date_set_dmy (&d, 2, 1, year);
1141       if (g_date_weekday (&d) == G_DATE_SUNDAY) return 53;
1142       g_date_set_dmy (&d, 30, 12, year);
1143       if (g_date_weekday (&d) == G_DATE_SUNDAY) return 53;
1144     }
1145   return 52;
1146 }
1147
1148 gint         
1149 g_date_compare (GDate     *lhs, 
1150                 GDate     *rhs)
1151 {
1152   g_return_val_if_fail (lhs != NULL, 0);
1153   g_return_val_if_fail (rhs != NULL, 0);
1154   g_return_val_if_fail (g_date_valid (lhs), 0);
1155   g_return_val_if_fail (g_date_valid (rhs), 0);
1156   
1157   /* Remember the self-comparison case! I think it works right now. */
1158   
1159   while (TRUE)
1160     {
1161       
1162       if (lhs->julian && rhs->julian) 
1163         {
1164           if (lhs->julian_days < rhs->julian_days) return -1;
1165           else if (lhs->julian_days > rhs->julian_days) return 1;
1166           else                                          return 0;
1167         }
1168       else if (lhs->dmy && rhs->dmy) 
1169         {
1170           if (lhs->year < rhs->year)               return -1;
1171           else if (lhs->year > rhs->year)               return 1;
1172           else 
1173             {
1174               if (lhs->month < rhs->month)         return -1;
1175               else if (lhs->month > rhs->month)         return 1;
1176               else 
1177                 {
1178                   if (lhs->day < rhs->day)              return -1;
1179                   else if (lhs->day > rhs->day)              return 1;
1180                   else                                       return 0;
1181                 }
1182               
1183             }
1184           
1185         }
1186       else
1187         {
1188           if (!lhs->julian) g_date_update_julian (lhs);
1189           if (!rhs->julian) g_date_update_julian (rhs);
1190           g_return_val_if_fail (lhs->julian, 0);
1191           g_return_val_if_fail (rhs->julian, 0);
1192         }
1193       
1194     }
1195   return 0; /* warnings */
1196 }
1197
1198
1199 void        
1200 g_date_to_struct_tm (GDate      *d, 
1201                      struct tm   *tm)
1202 {
1203   GDateWeekday day;
1204      
1205   g_return_if_fail (d != NULL);
1206   g_return_if_fail (g_date_valid (d));
1207   g_return_if_fail (tm != NULL);
1208   
1209   if (!d->dmy) 
1210     {
1211       g_date_update_dmy (d);
1212     }
1213   g_return_if_fail (d->dmy);
1214   
1215   /* zero all the irrelevant fields to be sure they're valid */
1216   
1217   /* On Linux and maybe other systems, there are weird non-POSIX
1218    * fields on the end of struct tm that choke strftime if they
1219    * contain garbage.  So we need to 0 the entire struct, not just the
1220    * fields we know to exist. 
1221    */
1222   
1223   memset (tm, 0x0, sizeof (struct tm));
1224   
1225   tm->tm_mday = d->day;
1226   tm->tm_mon  = d->month - 1; /* 0-11 goes in tm */
1227   tm->tm_year = ((int)d->year) - 1900; /* X/Open says tm_year can be negative */
1228   
1229   day = g_date_weekday (d);
1230   if (day == 7) day = 0; /* struct tm wants days since Sunday, so Sunday is 0 */
1231   
1232   tm->tm_wday = (int)day;
1233   
1234   tm->tm_yday = g_date_day_of_year (d) - 1; /* 0 to 365 */
1235   tm->tm_isdst = -1; /* -1 means "information not available" */
1236 }
1237
1238 gsize     
1239 g_date_strftime (gchar       *s, 
1240                  gsize        slen, 
1241                  const gchar *format, 
1242                  GDate       *d)
1243 {
1244   struct tm tm;
1245   gsize retval;
1246   
1247   g_return_val_if_fail (d != NULL, 0);
1248   g_return_val_if_fail (g_date_valid (d), 0);
1249   g_return_val_if_fail (slen > 0, 0); 
1250   g_return_val_if_fail (format != 0, 0);
1251   g_return_val_if_fail (s != 0, 0);
1252   
1253   g_date_to_struct_tm (d, &tm);
1254   
1255   retval = strftime (s, slen, format, &tm);
1256   if (retval == 0)
1257     {
1258       /* If retval == 0, the contents of s are undefined.  We define
1259        *  them. 
1260        */
1261       s[0] = '\0';
1262     }
1263   return retval;
1264 }