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