Documentation improvements
[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 #ifdef G_OS_WIN32
46 #include <windows.h>
47 #endif
48
49 #include "galias.h"
50
51 GDate*
52 g_date_new (void)
53 {
54   GDate *d = g_new0 (GDate, 1); /* happily, 0 is the invalid flag for everything. */
55   
56   return d;
57 }
58
59 GDate*
60 g_date_new_dmy (GDateDay   day, 
61                 GDateMonth m, 
62                 GDateYear  y)
63 {
64   GDate *d;
65   g_return_val_if_fail (g_date_valid_dmy (day, m, y), NULL);
66   
67   d = g_new (GDate, 1);
68   
69   d->julian = FALSE;
70   d->dmy    = TRUE;
71   
72   d->month = m;
73   d->day   = day;
74   d->year  = y;
75   
76   g_assert (g_date_valid (d));
77   
78   return d;
79 }
80
81 GDate*
82 g_date_new_julian (guint32 j)
83 {
84   GDate *d;
85   g_return_val_if_fail (g_date_valid_julian (j), NULL);
86   
87   d = g_new (GDate, 1);
88   
89   d->julian = TRUE;
90   d->dmy    = FALSE;
91   
92   d->julian_days = j;
93   
94   g_assert (g_date_valid (d));
95   
96   return d;
97 }
98
99 void
100 g_date_free (GDate *d)
101 {
102   g_return_if_fail (d != NULL);
103   
104   g_free (d);
105 }
106
107 gboolean     
108 g_date_valid (const GDate *d)
109 {
110   g_return_val_if_fail (d != NULL, FALSE);
111   
112   return (d->julian || d->dmy);
113 }
114
115 static const guint8 days_in_months[2][13] = 
116 {  /* error, jan feb mar apr may jun jul aug sep oct nov dec */
117   {  0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }, 
118   {  0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 } /* leap year */
119 };
120
121 static const guint16 days_in_year[2][14] = 
122 {  /* 0, jan feb mar apr may  jun  jul  aug  sep  oct  nov  dec */
123   {  0, 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365 }, 
124   {  0, 0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335, 366 }
125 };
126
127 gboolean     
128 g_date_valid_month (GDateMonth m)
129
130   return ( (m > G_DATE_BAD_MONTH) && (m < 13) );
131 }
132
133 gboolean     
134 g_date_valid_year (GDateYear y)
135 {
136   return ( y > G_DATE_BAD_YEAR );
137 }
138
139 gboolean     
140 g_date_valid_day (GDateDay d)
141 {
142   return ( (d > G_DATE_BAD_DAY) && (d < 32) );
143 }
144
145 gboolean     
146 g_date_valid_weekday (GDateWeekday w)
147 {
148   return ( (w > G_DATE_BAD_WEEKDAY) && (w < 8) );
149 }
150
151 gboolean     
152 g_date_valid_julian (guint32 j)
153 {
154   return (j > G_DATE_BAD_JULIAN);
155 }
156
157 gboolean     
158 g_date_valid_dmy (GDateDay   d, 
159                   GDateMonth m, 
160                   GDateYear  y)
161 {
162   return ( (m > G_DATE_BAD_MONTH) &&
163            (m < 13)               && 
164            (d > G_DATE_BAD_DAY)   && 
165            (y > G_DATE_BAD_YEAR)  &&   /* must check before using g_date_is_leap_year */
166            (d <=  (g_date_is_leap_year (y) ? 
167                    days_in_months[1][m] : days_in_months[0][m])) );
168 }
169
170
171 /* "Julian days" just means an absolute number of days, where Day 1 ==
172  *   Jan 1, Year 1
173  */
174 static void
175 g_date_update_julian (const GDate *const_d)
176 {
177   GDate *d = (GDate *) const_d;
178   GDateYear year;
179   gint index;
180   
181   g_return_if_fail (d != NULL);
182   g_return_if_fail (d->dmy);
183   g_return_if_fail (!d->julian);
184   g_return_if_fail (g_date_valid_dmy (d->day, d->month, d->year));
185   
186   /* What we actually do is: multiply years * 365 days in the year,
187    *  add the number of years divided by 4, subtract the number of
188    *  years divided by 100 and add the number of years divided by 400,
189    *  which accounts for leap year stuff. Code from Steffen Beyer's
190    *  DateCalc. 
191    */
192   
193   year = d->year - 1; /* we know d->year > 0 since it's valid */
194   
195   d->julian_days = year * 365U;
196   d->julian_days += (year >>= 2); /* divide by 4 and add */
197   d->julian_days -= (year /= 25); /* divides original # years by 100 */
198   d->julian_days += year >> 2;    /* divides by 4, which divides original by 400 */
199   
200   index = g_date_is_leap_year (d->year) ? 1 : 0;
201   
202   d->julian_days += days_in_year[index][d->month] + d->day;
203   
204   g_return_if_fail (g_date_valid_julian (d->julian_days));
205   
206   d->julian = TRUE;
207 }
208
209 static void 
210 g_date_update_dmy (const GDate *const_d)
211 {
212   GDate *d = (GDate *) const_d;
213   GDateYear y;
214   GDateMonth m;
215   GDateDay day;
216   
217   guint32 A, B, C, D, E, M;
218   
219   g_return_if_fail (d != NULL);
220   g_return_if_fail (d->julian);
221   g_return_if_fail (!d->dmy);
222   g_return_if_fail (g_date_valid_julian (d->julian_days));
223   
224   /* Formula taken from the Calendar FAQ; the formula was for the
225    *  Julian Period which starts on 1 January 4713 BC, so we add
226    *  1,721,425 to the number of days before doing the formula.
227    *
228    * I'm sure this can be simplified for our 1 January 1 AD period
229    * start, but I can't figure out how to unpack the formula.  
230    */
231   
232   A = d->julian_days + 1721425 + 32045;
233   B = ( 4 *(A + 36524) )/ 146097 - 1;
234   C = A - (146097 * B)/4;
235   D = ( 4 * (C + 365) ) / 1461 - 1;
236   E = C - ((1461*D) / 4);
237   M = (5 * (E - 1) + 2)/153;
238   
239   m = M + 3 - (12*(M/10));
240   day = E - (153*M + 2)/5;
241   y = 100 * B + D - 4800 + (M/10);
242   
243 #ifdef G_ENABLE_DEBUG
244   if (!g_date_valid_dmy (day, m, y)) 
245     g_warning ("\nOOPS julian: %u  computed dmy: %u %u %u\n", 
246                d->julian_days, day, m, y);
247 #endif
248   
249   d->month = m;
250   d->day   = day;
251   d->year  = y;
252   
253   d->dmy = TRUE;
254 }
255
256 GDateWeekday 
257 g_date_get_weekday (const GDate *d)
258 {
259   g_return_val_if_fail (g_date_valid (d), G_DATE_BAD_WEEKDAY);
260   
261   if (!d->julian) 
262     g_date_update_julian (d);
263
264   g_return_val_if_fail (d->julian, G_DATE_BAD_WEEKDAY);
265   
266   return ((d->julian_days - 1) % 7) + 1;
267 }
268
269 GDateMonth   
270 g_date_get_month (const GDate *d)
271 {
272   g_return_val_if_fail (g_date_valid (d), G_DATE_BAD_MONTH);
273   
274   if (!d->dmy) 
275     g_date_update_dmy (d);
276
277   g_return_val_if_fail (d->dmy, G_DATE_BAD_MONTH);
278   
279   return d->month;
280 }
281
282 GDateYear    
283 g_date_get_year (const GDate *d)
284 {
285   g_return_val_if_fail (g_date_valid (d), G_DATE_BAD_YEAR);
286   
287   if (!d->dmy) 
288     g_date_update_dmy (d);
289
290   g_return_val_if_fail (d->dmy, G_DATE_BAD_YEAR);  
291   
292   return d->year;
293 }
294
295 GDateDay     
296 g_date_get_day (const GDate *d)
297 {
298   g_return_val_if_fail (g_date_valid (d), G_DATE_BAD_DAY);
299   
300   if (!d->dmy) 
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     g_date_update_julian (d);
315
316   g_return_val_if_fail (d->julian, G_DATE_BAD_JULIAN);  
317   
318   return d->julian_days;
319 }
320
321 guint        
322 g_date_get_day_of_year (const GDate *d)
323 {
324   gint index;
325   
326   g_return_val_if_fail (g_date_valid (d), 0);
327   
328   if (!d->dmy) 
329     g_date_update_dmy (d);
330
331   g_return_val_if_fail (d->dmy, 0);  
332   
333   index = g_date_is_leap_year (d->year) ? 1 : 0;
334   
335   return (days_in_year[index][d->month] + d->day);
336 }
337
338 guint        
339 g_date_get_monday_week_of_year (const GDate *d)
340 {
341   GDateWeekday wd;
342   guint day;
343   GDate first;
344   
345   g_return_val_if_fail (g_date_valid (d), 0);
346   
347   if (!d->dmy) 
348     g_date_update_dmy (d);
349
350   g_return_val_if_fail (d->dmy, 0);  
351   
352   g_date_clear (&first, 1);
353   
354   g_date_set_dmy (&first, 1, 1, d->year);
355   
356   wd = g_date_get_weekday (&first) - 1; /* make Monday day 0 */
357   day = g_date_get_day_of_year (d) - 1;
358   
359   return ((day + wd)/7U + (wd == 0 ? 1 : 0));
360 }
361
362 guint        
363 g_date_get_sunday_week_of_year (const GDate *d)
364 {
365   GDateWeekday wd;
366   guint day;
367   GDate first;
368   
369   g_return_val_if_fail (g_date_valid (d), 0);
370   
371   if (!d->dmy) 
372     g_date_update_dmy (d);
373
374   g_return_val_if_fail (d->dmy, 0);  
375   
376   g_date_clear (&first, 1);
377   
378   g_date_set_dmy (&first, 1, 1, d->year);
379   
380   wd = g_date_get_weekday (&first);
381   if (wd == 7) wd = 0; /* make Sunday day 0 */
382   day = g_date_get_day_of_year (d) - 1;
383   
384   return ((day + wd)/7U + (wd == 0 ? 1 : 0));
385 }
386
387 /**
388  * g_date_get_iso8601_week_of_year:
389  * @date: a valid #GDate
390  *
391  * Returns the week of the year, where weeks are interpreted according
392  * to ISO 8601. 
393  * 
394  * Returns: ISO 8601 week number of the year.
395  *
396  * Since: 2.6
397  **/
398 guint
399 g_date_get_iso8601_week_of_year (const GDate *d)
400 {
401   guint j, d4, L, d1, w;
402
403   g_return_val_if_fail (g_date_valid (d), 0);
404   
405   if (!d->julian)
406     g_date_update_julian (d);
407
408   g_return_val_if_fail (d->julian, 0);
409
410   /* Formula taken from the Calendar FAQ; the formula was for the
411    * Julian Period which starts on 1 January 4713 BC, so we add
412    * 1,721,425 to the number of days before doing the formula. 
413    */
414   j  = d->julian_days + 1721425;
415   d4 = (j + 31741 - (j % 7)) % 146097 % 36524 % 1461;
416   L  = d4 / 1460;
417   d1 = ((d4 - L) % 365) + L;
418   w  = d1 / 7 + 1;
419
420   return w;
421 }
422
423 gint
424 g_date_days_between (const GDate *d1,
425                      const GDate *d2)
426 {
427   g_return_val_if_fail (g_date_valid (d1), 0);
428   g_return_val_if_fail (g_date_valid (d2), 0);
429
430   return (gint)g_date_get_julian (d2) - (gint)g_date_get_julian (d1);
431 }
432
433 void         
434 g_date_clear (GDate *d, guint ndates)
435 {
436   g_return_if_fail (d != NULL);
437   g_return_if_fail (ndates != 0);
438   
439   memset (d, 0x0, ndates*sizeof (GDate)); 
440 }
441
442 G_LOCK_DEFINE_STATIC (g_date_global);
443
444 /* These are for the parser, output to the user should use *
445  * g_date_strftime () - this creates more never-freed memory to annoy
446  * all those memory debugger users. :-) 
447  */
448
449 static gchar *long_month_names[13] = 
450
451   NULL,
452 };
453
454 static gchar *short_month_names[13] = 
455 {
456   NULL, 
457 };
458
459 /* This tells us if we need to update the parse info */
460 static gchar *current_locale = NULL;
461
462 /* order of these in the current locale */
463 static GDateDMY dmy_order[3] = 
464 {
465    G_DATE_DAY, G_DATE_MONTH, G_DATE_YEAR
466 };
467
468 /* Where to chop two-digit years: i.e., for the 1930 default, numbers
469  * 29 and below are counted as in the year 2000, numbers 30 and above
470  * are counted as in the year 1900.  
471  */
472
473 static const GDateYear twodigit_start_year = 1930;
474
475 /* It is impossible to enter a year between 1 AD and 99 AD with this
476  * in effect.  
477  */
478 static gboolean using_twodigit_years = FALSE;
479
480 /* Adjustment of locale era to AD, non-zero means using locale era
481  */
482 static gint locale_era_adjust = 0;
483
484 struct _GDateParseTokens {
485   gint num_ints;
486   gint n[3];
487   guint month;
488 };
489
490 typedef struct _GDateParseTokens GDateParseTokens;
491
492 #define NUM_LEN 10
493
494 /* HOLDS: g_date_global_lock */
495 static void
496 g_date_fill_parse_tokens (const gchar *str, GDateParseTokens *pt)
497 {
498   gchar num[4][NUM_LEN+1];
499   gint i;
500   const guchar *s;
501   
502   /* We count 4, but store 3; so we can give an error
503    * if there are 4.
504    */
505   num[0][0] = num[1][0] = num[2][0] = num[3][0] = '\0';
506   
507   s = (const guchar *) str;
508   pt->num_ints = 0;
509   while (*s && pt->num_ints < 4) 
510     {
511       
512       i = 0;
513       while (*s && g_ascii_isdigit (*s) && i < NUM_LEN)
514         {
515           num[pt->num_ints][i] = *s;
516           ++s; 
517           ++i;
518         }
519       
520       if (i > 0) 
521         {
522           num[pt->num_ints][i] = '\0';
523           ++(pt->num_ints);
524         }
525       
526       if (*s == '\0') break;
527       
528       ++s;
529     }
530   
531   pt->n[0] = pt->num_ints > 0 ? atoi (num[0]) : 0;
532   pt->n[1] = pt->num_ints > 1 ? atoi (num[1]) : 0;
533   pt->n[2] = pt->num_ints > 2 ? atoi (num[2]) : 0;
534   
535   pt->month = G_DATE_BAD_MONTH;
536   
537   if (pt->num_ints < 3)
538     {
539       gchar *casefold;
540       gchar *normalized;
541       
542       casefold = g_utf8_casefold (str, -1);
543       normalized = g_utf8_normalize (casefold, -1, G_NORMALIZE_ALL);
544       g_free (casefold);
545
546       i = 1;
547       while (i < 13)
548         {
549           if (long_month_names[i] != NULL) 
550             {
551               const gchar *found = strstr (normalized, long_month_names[i]);
552               
553               if (found != NULL)
554                 {
555                   pt->month = i;
556                   break;
557                 }
558             }
559           
560           if (short_month_names[i] != NULL) 
561             {
562               const gchar *found = strstr (normalized, short_month_names[i]);
563               
564               if (found != NULL)
565                 {
566                   pt->month = i;
567                   break;
568                 }
569             }
570
571           ++i;
572         }
573
574       g_free (normalized);
575     }
576 }
577
578 /* HOLDS: g_date_global_lock */
579 static void
580 g_date_prepare_to_parse (const gchar      *str, 
581                          GDateParseTokens *pt)
582 {
583   const gchar *locale = setlocale (LC_TIME, NULL);
584   gboolean recompute_localeinfo = FALSE;
585   GDate d;
586   
587   g_return_if_fail (locale != NULL); /* should not happen */
588   
589   g_date_clear (&d, 1);              /* clear for scratch use */
590   
591   if ( (current_locale == NULL) || (strcmp (locale, current_locale) != 0) ) 
592     recompute_localeinfo = TRUE;  /* Uh, there used to be a reason for the temporary */
593   
594   if (recompute_localeinfo)
595     {
596       int i = 1;
597       GDateParseTokens testpt;
598       gchar buf[128];
599       
600       g_free (current_locale); /* still works if current_locale == NULL */
601       
602       current_locale = g_strdup (locale);
603       
604       short_month_names[0] = "Error";
605       long_month_names[0] = "Error";
606
607       while (i < 13) 
608         {
609           gchar *casefold;
610           
611           g_date_set_dmy (&d, 1, i, 1);
612           
613           g_return_if_fail (g_date_valid (&d));
614           
615           g_date_strftime (buf, 127, "%b", &d);
616
617           casefold = g_utf8_casefold (buf, -1);
618           g_free (short_month_names[i]);
619           short_month_names[i] = g_utf8_normalize (casefold, -1, G_NORMALIZE_ALL);
620           g_free (casefold);
621           
622           g_date_strftime (buf, 127, "%B", &d);
623           casefold = g_utf8_casefold (buf, -1);
624           g_free (long_month_names[i]);
625           long_month_names[i] = g_utf8_normalize (casefold, -1, G_NORMALIZE_ALL);
626           g_free (casefold);
627           
628           ++i;
629         }
630       
631       /* Determine DMY order */
632       
633       /* had to pick a random day - don't change this, some strftimes
634        * are broken on some days, and this one is good so far. */
635       g_date_set_dmy (&d, 4, 7, 1976);
636       
637       g_date_strftime (buf, 127, "%x", &d);
638       
639       g_date_fill_parse_tokens (buf, &testpt);
640       
641       i = 0;
642       while (i < testpt.num_ints)
643         {
644           switch (testpt.n[i])
645             {
646             case 7:
647               dmy_order[i] = G_DATE_MONTH;
648               break;
649             case 4:
650               dmy_order[i] = G_DATE_DAY;
651               break;
652             case 76:
653               using_twodigit_years = TRUE; /* FALL THRU */
654             case 1976:
655               dmy_order[i] = G_DATE_YEAR;
656               break;
657             default:
658               /* assume locale era */
659               locale_era_adjust = 1976 - testpt.n[i];
660               dmy_order[i] = G_DATE_YEAR;
661               break;
662             }
663           ++i;
664         }
665       
666 #ifdef G_ENABLE_DEBUG
667       DEBUG_MSG (("**GDate prepared a new set of locale-specific parse rules."));
668       i = 1;
669       while (i < 13) 
670         {
671           DEBUG_MSG (("  %s   %s", long_month_names[i], short_month_names[i]));
672           ++i;
673         }
674       if (using_twodigit_years)
675         DEBUG_MSG (("**Using twodigit years with cutoff year: %u", twodigit_start_year));
676       { 
677         gchar *strings[3];
678         i = 0;
679         while (i < 3)
680           {
681             switch (dmy_order[i])
682               {
683               case G_DATE_MONTH:
684                 strings[i] = "Month";
685                 break;
686               case G_DATE_YEAR:
687                 strings[i] = "Year";
688                 break;
689               case G_DATE_DAY:
690                 strings[i] = "Day";
691                 break;
692               default:
693                 strings[i] = NULL;
694                 break;
695               }
696             ++i;
697           }
698         DEBUG_MSG (("**Order: %s, %s, %s", strings[0], strings[1], strings[2]));
699         DEBUG_MSG (("**Sample date in this locale: `%s'", buf));
700       }
701 #endif
702     }
703   
704   g_date_fill_parse_tokens (str, pt);
705 }
706
707 void         
708 g_date_set_parse (GDate       *d, 
709                   const gchar *str)
710 {
711   GDateParseTokens pt;
712   guint m = G_DATE_BAD_MONTH, day = G_DATE_BAD_DAY, y = G_DATE_BAD_YEAR;
713   
714   g_return_if_fail (d != NULL);
715   
716   /* set invalid */
717   g_date_clear (d, 1);
718   
719   G_LOCK (g_date_global);
720
721   g_date_prepare_to_parse (str, &pt);
722   
723   DEBUG_MSG (("Found %d ints, `%d' `%d' `%d' and written out month %d", 
724               pt.num_ints, pt.n[0], pt.n[1], pt.n[2], pt.month));
725   
726   
727   if (pt.num_ints == 4) 
728     {
729       G_UNLOCK (g_date_global);
730       return; /* presumably a typo; bail out. */
731     }
732   
733   if (pt.num_ints > 1)
734     {
735       int i = 0;
736       int j = 0;
737       
738       g_assert (pt.num_ints < 4); /* i.e., it is 2 or 3 */
739       
740       while (i < pt.num_ints && j < 3) 
741         {
742           switch (dmy_order[j])
743             {
744             case G_DATE_MONTH:
745             {
746               if (pt.num_ints == 2 && pt.month != G_DATE_BAD_MONTH)
747                 {
748                   m = pt.month;
749                   ++j;      /* skip months, but don't skip this number */
750                   continue;
751                 }
752               else 
753                 m = pt.n[i];
754             }
755             break;
756             case G_DATE_DAY:
757             {
758               if (pt.num_ints == 2 && pt.month == G_DATE_BAD_MONTH)
759                 {
760                   day = 1;
761                   ++j;      /* skip days, since we may have month/year */
762                   continue;
763                 }
764               day = pt.n[i];
765             }
766             break;
767             case G_DATE_YEAR:
768             {
769               y  = pt.n[i];
770               
771               if (locale_era_adjust != 0)
772                 {
773                   y += locale_era_adjust;
774                 }
775               else if (using_twodigit_years && y < 100)
776                 {
777                   guint two     =  twodigit_start_year % 100;
778                   guint century = (twodigit_start_year / 100) * 100;
779                   
780                   if (y < two)
781                     century += 100;
782                   
783                   y += century;
784                 }
785             }
786             break;
787             default:
788               break;
789             }
790           
791           ++i;
792           ++j;
793         }
794       
795       
796       if (pt.num_ints == 3 && !g_date_valid_dmy (day, m, y))
797         {
798           /* Try YYYY MM DD */
799           y   = pt.n[0];
800           m   = pt.n[1];
801           day = pt.n[2];
802           
803           if (using_twodigit_years && y < 100) 
804             y = G_DATE_BAD_YEAR; /* avoids ambiguity */
805         }
806       else if (pt.num_ints == 2)
807         {
808           if (m == G_DATE_BAD_MONTH && pt.month != G_DATE_BAD_MONTH)
809             m = pt.month;
810         }
811     }
812   else if (pt.num_ints == 1) 
813     {
814       if (pt.month != G_DATE_BAD_MONTH)
815         {
816           /* Month name and year? */
817           m    = pt.month;
818           day  = 1;
819           y = pt.n[0];
820         }
821       else
822         {
823           /* Try yyyymmdd and yymmdd */
824           
825           m   = (pt.n[0]/100) % 100;
826           day = pt.n[0] % 100;
827           y   = pt.n[0]/10000;
828           
829           /* FIXME move this into a separate function */
830           if (using_twodigit_years && y < 100)
831             {
832               guint two     =  twodigit_start_year % 100;
833               guint century = (twodigit_start_year / 100) * 100;
834               
835               if (y < two)
836                 century += 100;
837               
838               y += century;
839             }
840         }
841     }
842   
843   /* See if we got anything valid out of all this. */
844   /* y < 8000 is to catch 19998 style typos; the library is OK up to 65535 or so */
845   if (y < 8000 && g_date_valid_dmy (day, m, y)) 
846     {
847       d->month = m;
848       d->day   = day;
849       d->year  = y;
850       d->dmy   = TRUE;
851     }
852 #ifdef G_ENABLE_DEBUG
853   else 
854     DEBUG_MSG (("Rejected DMY %u %u %u", day, m, y));
855 #endif
856   G_UNLOCK (g_date_global);
857 }
858
859 /**
860  * g_date_set_time_t:
861  * @date: a #GDate 
862  * @timet: <type>time_t</type> value to set
863  *
864  * Sets the value of a date to the date corresponding to a time 
865  * specified as a time_t. The time to date conversion is done using 
866  * the user's current timezone.
867  *
868  * To set the value of a date to the current day, you could write:
869  * |[
870  *  g_date_set_time_t (date, time (NULL)); 
871  * ]|
872  *
873  * Since: 2.10
874  */
875 void         
876 g_date_set_time_t (GDate *date,
877                    time_t timet)
878 {
879   struct tm tm;
880   
881   g_return_if_fail (date != NULL);
882   
883 #ifdef HAVE_LOCALTIME_R
884   localtime_r (&timet, &tm);
885 #else
886   {
887     struct tm *ptm = localtime (&timet);
888
889     if (ptm == NULL)
890       {
891         /* Happens at least in Microsoft's C library if you pass a
892          * negative time_t. Use 2000-01-01 as default date.
893          */
894 #ifndef G_DISABLE_CHECKS
895         g_return_if_fail_warning (G_LOG_DOMAIN, "g_date_set_time", "ptm != NULL");
896 #endif
897
898         tm.tm_mon = 0;
899         tm.tm_mday = 1;
900         tm.tm_year = 100;
901       }
902     else
903       memcpy ((void *) &tm, (void *) ptm, sizeof(struct tm));
904   }
905 #endif
906   
907   date->julian = FALSE;
908   
909   date->month = tm.tm_mon + 1;
910   date->day   = tm.tm_mday;
911   date->year  = tm.tm_year + 1900;
912   
913   g_return_if_fail (g_date_valid_dmy (date->day, date->month, date->year));
914   
915   date->dmy    = TRUE;
916 }
917
918
919 /**
920  * g_date_set_time:
921  * @date: a #GDate.
922  * @time_: #GTime value to set.
923  *
924  * Sets the value of a date from a #GTime value.
925  * The time to date conversion is done using the user's current timezone.
926  *
927  * @Deprecated:2.10: Use g_date_set_time_t() instead.
928  */
929 void
930 g_date_set_time (GDate *date,
931                  GTime  time_)
932 {
933   g_date_set_time_t (date, (time_t) time_);
934 }
935
936 /**
937  * g_date_set_time_val:
938  * @date: a #GDate 
939  * @timeval: #GTimeVal value to set
940  *
941  * Sets the value of a date from a #GTimeVal value.  Note that the
942  * @tv_usec member is ignored, because #GDate can't make use of the
943  * additional precision.
944  *
945  * Since: 2.10
946  */
947 void
948 g_date_set_time_val (GDate    *date,
949                      GTimeVal *timeval)
950 {
951   g_date_set_time_t (date, (time_t) timeval->tv_sec);
952 }
953
954 void         
955 g_date_set_month (GDate     *d, 
956                   GDateMonth m)
957 {
958   g_return_if_fail (d != NULL);
959   g_return_if_fail (g_date_valid_month (m));
960
961   if (d->julian && !d->dmy) g_date_update_dmy(d);
962   d->julian = FALSE;
963   
964   d->month = m;
965   
966   if (g_date_valid_dmy (d->day, d->month, d->year))
967     d->dmy = TRUE;
968   else 
969     d->dmy = FALSE;
970 }
971
972 void         
973 g_date_set_day (GDate    *d, 
974                 GDateDay  day)
975 {
976   g_return_if_fail (d != NULL);
977   g_return_if_fail (g_date_valid_day (day));
978   
979   if (d->julian && !d->dmy) g_date_update_dmy(d);
980   d->julian = FALSE;
981   
982   d->day = day;
983   
984   if (g_date_valid_dmy (d->day, d->month, d->year))
985     d->dmy = TRUE;
986   else 
987     d->dmy = FALSE;
988 }
989
990 void         
991 g_date_set_year (GDate     *d, 
992                  GDateYear  y)
993 {
994   g_return_if_fail (d != NULL);
995   g_return_if_fail (g_date_valid_year (y));
996   
997   if (d->julian && !d->dmy) g_date_update_dmy(d);
998   d->julian = FALSE;
999   
1000   d->year = y;
1001   
1002   if (g_date_valid_dmy (d->day, d->month, d->year))
1003     d->dmy = TRUE;
1004   else 
1005     d->dmy = FALSE;
1006 }
1007
1008 void         
1009 g_date_set_dmy (GDate      *d, 
1010                 GDateDay    day, 
1011                 GDateMonth  m, 
1012                 GDateYear   y)
1013 {
1014   g_return_if_fail (d != NULL);
1015   g_return_if_fail (g_date_valid_dmy (day, m, y));
1016   
1017   d->julian = FALSE;
1018   
1019   d->month = m;
1020   d->day   = day;
1021   d->year  = y;
1022   
1023   d->dmy = TRUE;
1024 }
1025
1026 void         
1027 g_date_set_julian (GDate   *d, 
1028                    guint32  j)
1029 {
1030   g_return_if_fail (d != NULL);
1031   g_return_if_fail (g_date_valid_julian (j));
1032   
1033   d->julian_days = j;
1034   d->julian = TRUE;
1035   d->dmy = FALSE;
1036 }
1037
1038
1039 gboolean     
1040 g_date_is_first_of_month (const GDate *d)
1041 {
1042   g_return_val_if_fail (g_date_valid (d), FALSE);
1043   
1044   if (!d->dmy) 
1045     g_date_update_dmy (d);
1046
1047   g_return_val_if_fail (d->dmy, FALSE);  
1048   
1049   if (d->day == 1) return TRUE;
1050   else return FALSE;
1051 }
1052
1053 gboolean     
1054 g_date_is_last_of_month (const GDate *d)
1055 {
1056   gint index;
1057   
1058   g_return_val_if_fail (g_date_valid (d), FALSE);
1059   
1060   if (!d->dmy) 
1061     g_date_update_dmy (d);
1062
1063   g_return_val_if_fail (d->dmy, FALSE);  
1064   
1065   index = g_date_is_leap_year (d->year) ? 1 : 0;
1066   
1067   if (d->day == days_in_months[index][d->month]) return TRUE;
1068   else return FALSE;
1069 }
1070
1071 void         
1072 g_date_add_days (GDate *d, 
1073                  guint  ndays)
1074 {
1075   g_return_if_fail (g_date_valid (d));
1076   
1077   if (!d->julian)
1078     g_date_update_julian (d);
1079
1080   g_return_if_fail (d->julian);
1081   
1082   d->julian_days += ndays;
1083   d->dmy = FALSE;
1084 }
1085
1086 void         
1087 g_date_subtract_days (GDate *d, 
1088                       guint  ndays)
1089 {
1090   g_return_if_fail (g_date_valid (d));
1091   
1092   if (!d->julian)
1093     g_date_update_julian (d);
1094
1095   g_return_if_fail (d->julian);
1096   g_return_if_fail (d->julian_days > ndays);
1097   
1098   d->julian_days -= ndays;
1099   d->dmy = FALSE;
1100 }
1101
1102 void         
1103 g_date_add_months (GDate *d, 
1104                    guint  nmonths)
1105 {
1106   guint years, months;
1107   gint index;
1108   
1109   g_return_if_fail (g_date_valid (d));
1110   
1111   if (!d->dmy) 
1112     g_date_update_dmy (d);
1113
1114   g_return_if_fail (d->dmy);  
1115   
1116   nmonths += d->month - 1;
1117   
1118   years  = nmonths/12;
1119   months = nmonths%12;
1120   
1121   d->month = months + 1;
1122   d->year  += years;
1123   
1124   index = g_date_is_leap_year (d->year) ? 1 : 0;
1125   
1126   if (d->day > days_in_months[index][d->month])
1127     d->day = days_in_months[index][d->month];
1128   
1129   d->julian = FALSE;
1130   
1131   g_return_if_fail (g_date_valid (d));
1132 }
1133
1134 void         
1135 g_date_subtract_months (GDate *d, 
1136                         guint  nmonths)
1137 {
1138   guint years, months;
1139   gint index;
1140   
1141   g_return_if_fail (g_date_valid (d));
1142   
1143   if (!d->dmy) 
1144     g_date_update_dmy (d);
1145
1146   g_return_if_fail (d->dmy);  
1147   
1148   years  = nmonths/12;
1149   months = nmonths%12;
1150   
1151   g_return_if_fail (d->year > years);
1152   
1153   d->year  -= years;
1154   
1155   if (d->month > months) d->month -= months;
1156   else 
1157     {
1158       months -= d->month;
1159       d->month = 12 - months;
1160       d->year -= 1;
1161     }
1162   
1163   index = g_date_is_leap_year (d->year) ? 1 : 0;
1164   
1165   if (d->day > days_in_months[index][d->month])
1166     d->day = days_in_months[index][d->month];
1167   
1168   d->julian = FALSE;
1169   
1170   g_return_if_fail (g_date_valid (d));
1171 }
1172
1173 void         
1174 g_date_add_years (GDate *d, 
1175                   guint  nyears)
1176 {
1177   g_return_if_fail (g_date_valid (d));
1178   
1179   if (!d->dmy) 
1180     g_date_update_dmy (d);
1181
1182   g_return_if_fail (d->dmy);  
1183   
1184   d->year += nyears;
1185   
1186   if (d->month == 2 && d->day == 29)
1187     {
1188       if (!g_date_is_leap_year (d->year))
1189         d->day = 28;
1190     }
1191   
1192   d->julian = FALSE;
1193 }
1194
1195 void         
1196 g_date_subtract_years (GDate *d, 
1197                        guint  nyears)
1198 {
1199   g_return_if_fail (g_date_valid (d));
1200   
1201   if (!d->dmy) 
1202     g_date_update_dmy (d);
1203
1204   g_return_if_fail (d->dmy);  
1205   g_return_if_fail (d->year > nyears);
1206   
1207   d->year -= nyears;
1208   
1209   if (d->month == 2 && d->day == 29)
1210     {
1211       if (!g_date_is_leap_year (d->year))
1212         d->day = 28;
1213     }
1214   
1215   d->julian = FALSE;
1216 }
1217
1218 gboolean     
1219 g_date_is_leap_year (GDateYear year)
1220 {
1221   g_return_val_if_fail (g_date_valid_year (year), FALSE);
1222   
1223   return ( (((year % 4) == 0) && ((year % 100) != 0)) ||
1224            (year % 400) == 0 );
1225 }
1226
1227 guint8         
1228 g_date_get_days_in_month (GDateMonth month, 
1229                           GDateYear  year)
1230 {
1231   gint index;
1232   
1233   g_return_val_if_fail (g_date_valid_year (year), 0);
1234   g_return_val_if_fail (g_date_valid_month (month), 0);
1235   
1236   index = g_date_is_leap_year (year) ? 1 : 0;
1237   
1238   return days_in_months[index][month];
1239 }
1240
1241 guint8       
1242 g_date_get_monday_weeks_in_year (GDateYear year)
1243 {
1244   GDate d;
1245   
1246   g_return_val_if_fail (g_date_valid_year (year), 0);
1247   
1248   g_date_clear (&d, 1);
1249   g_date_set_dmy (&d, 1, 1, year);
1250   if (g_date_get_weekday (&d) == G_DATE_MONDAY) return 53;
1251   g_date_set_dmy (&d, 31, 12, year);
1252   if (g_date_get_weekday (&d) == G_DATE_MONDAY) return 53;
1253   if (g_date_is_leap_year (year)) 
1254     {
1255       g_date_set_dmy (&d, 2, 1, year);
1256       if (g_date_get_weekday (&d) == G_DATE_MONDAY) return 53;
1257       g_date_set_dmy (&d, 30, 12, year);
1258       if (g_date_get_weekday (&d) == G_DATE_MONDAY) return 53;
1259     }
1260   return 52;
1261 }
1262
1263 guint8       
1264 g_date_get_sunday_weeks_in_year (GDateYear year)
1265 {
1266   GDate d;
1267   
1268   g_return_val_if_fail (g_date_valid_year (year), 0);
1269   
1270   g_date_clear (&d, 1);
1271   g_date_set_dmy (&d, 1, 1, year);
1272   if (g_date_get_weekday (&d) == G_DATE_SUNDAY) return 53;
1273   g_date_set_dmy (&d, 31, 12, year);
1274   if (g_date_get_weekday (&d) == G_DATE_SUNDAY) return 53;
1275   if (g_date_is_leap_year (year)) 
1276     {
1277       g_date_set_dmy (&d, 2, 1, year);
1278       if (g_date_get_weekday (&d) == G_DATE_SUNDAY) return 53;
1279       g_date_set_dmy (&d, 30, 12, year);
1280       if (g_date_get_weekday (&d) == G_DATE_SUNDAY) return 53;
1281     }
1282   return 52;
1283 }
1284
1285 gint         
1286 g_date_compare (const GDate *lhs, 
1287                 const GDate *rhs)
1288 {
1289   g_return_val_if_fail (lhs != NULL, 0);
1290   g_return_val_if_fail (rhs != NULL, 0);
1291   g_return_val_if_fail (g_date_valid (lhs), 0);
1292   g_return_val_if_fail (g_date_valid (rhs), 0);
1293   
1294   /* Remember the self-comparison case! I think it works right now. */
1295   
1296   while (TRUE)
1297     {
1298       if (lhs->julian && rhs->julian) 
1299         {
1300           if (lhs->julian_days < rhs->julian_days) return -1;
1301           else if (lhs->julian_days > rhs->julian_days) return 1;
1302           else                                          return 0;
1303         }
1304       else if (lhs->dmy && rhs->dmy) 
1305         {
1306           if (lhs->year < rhs->year)               return -1;
1307           else if (lhs->year > rhs->year)               return 1;
1308           else 
1309             {
1310               if (lhs->month < rhs->month)         return -1;
1311               else if (lhs->month > rhs->month)         return 1;
1312               else 
1313                 {
1314                   if (lhs->day < rhs->day)              return -1;
1315                   else if (lhs->day > rhs->day)              return 1;
1316                   else                                       return 0;
1317                 }
1318               
1319             }
1320           
1321         }
1322       else
1323         {
1324           if (!lhs->julian) g_date_update_julian (lhs);
1325           if (!rhs->julian) g_date_update_julian (rhs);
1326           g_return_val_if_fail (lhs->julian, 0);
1327           g_return_val_if_fail (rhs->julian, 0);
1328         }
1329       
1330     }
1331   return 0; /* warnings */
1332 }
1333
1334
1335 void        
1336 g_date_to_struct_tm (const GDate *d, 
1337                      struct tm   *tm)
1338 {
1339   GDateWeekday day;
1340      
1341   g_return_if_fail (g_date_valid (d));
1342   g_return_if_fail (tm != NULL);
1343   
1344   if (!d->dmy) 
1345     g_date_update_dmy (d);
1346
1347   g_return_if_fail (d->dmy);
1348   
1349   /* zero all the irrelevant fields to be sure they're valid */
1350   
1351   /* On Linux and maybe other systems, there are weird non-POSIX
1352    * fields on the end of struct tm that choke strftime if they
1353    * contain garbage.  So we need to 0 the entire struct, not just the
1354    * fields we know to exist. 
1355    */
1356   
1357   memset (tm, 0x0, sizeof (struct tm));
1358   
1359   tm->tm_mday = d->day;
1360   tm->tm_mon  = d->month - 1; /* 0-11 goes in tm */
1361   tm->tm_year = ((int)d->year) - 1900; /* X/Open says tm_year can be negative */
1362   
1363   day = g_date_get_weekday (d);
1364   if (day == 7) day = 0; /* struct tm wants days since Sunday, so Sunday is 0 */
1365   
1366   tm->tm_wday = (int)day;
1367   
1368   tm->tm_yday = g_date_get_day_of_year (d) - 1; /* 0 to 365 */
1369   tm->tm_isdst = -1; /* -1 means "information not available" */
1370 }
1371
1372 void
1373 g_date_clamp (GDate       *date,
1374               const GDate *min_date,
1375               const GDate *max_date)
1376 {
1377   g_return_if_fail (g_date_valid (date));
1378
1379   if (min_date != NULL)
1380     g_return_if_fail (g_date_valid (min_date));
1381
1382   if (max_date != NULL)
1383     g_return_if_fail (g_date_valid (max_date));
1384
1385   if (min_date != NULL && max_date != NULL)
1386     g_return_if_fail (g_date_compare (min_date, max_date) <= 0);
1387
1388   if (min_date && g_date_compare (date, min_date) < 0)
1389     *date = *min_date;
1390
1391   if (max_date && g_date_compare (max_date, date) < 0)
1392     *date = *max_date;
1393 }
1394
1395 void
1396 g_date_order (GDate *date1,
1397               GDate *date2)
1398 {
1399   g_return_if_fail (g_date_valid (date1));
1400   g_return_if_fail (g_date_valid (date2));
1401
1402   if (g_date_compare (date1, date2) > 0)
1403     {
1404       GDate tmp = *date1;
1405       *date1 = *date2;
1406       *date2 = tmp;
1407     }
1408 }
1409
1410 #ifdef G_OS_WIN32
1411 static gsize
1412 win32_strftime_helper (const GDate     *d,
1413                        const gchar     *format,
1414                        const struct tm *tm,
1415                        gchar           *s,
1416                        gsize            slen)
1417 {
1418   SYSTEMTIME systemtime;
1419   TIME_ZONE_INFORMATION tzinfo;
1420   LCID lcid;
1421   int n, k;
1422   GArray *result;
1423   const gchar *p;
1424   gunichar c;
1425   const wchar_t digits[] = L"0123456789";
1426   gchar *convbuf;
1427   glong convlen = 0;
1428   gsize retval;
1429
1430   systemtime.wYear = tm->tm_year + 1900;
1431   systemtime.wMonth = tm->tm_mon + 1;
1432   systemtime.wDayOfWeek = tm->tm_wday;
1433   systemtime.wDay = tm->tm_mday;
1434   systemtime.wHour = tm->tm_hour;
1435   systemtime.wMinute = tm->tm_min;
1436   systemtime.wSecond = tm->tm_sec;
1437   systemtime.wMilliseconds = 0;
1438   
1439   lcid = GetThreadLocale ();
1440   result = g_array_sized_new (FALSE, FALSE, sizeof (wchar_t), MAX (128, strlen (format) * 2));
1441
1442   p = format;
1443   while (*p)
1444     {
1445       c = g_utf8_get_char (p);
1446       if (c == '%')
1447         {
1448           p = g_utf8_next_char (p);
1449           if (!*p)
1450             {
1451               s[0] = '\0';
1452               g_array_free (result, TRUE);
1453
1454               return 0;
1455             }
1456           
1457           c = g_utf8_get_char (p);
1458           if (c == 'E' || c == 'O')
1459             {
1460               /* Ignore modified conversion specifiers for now. */
1461               p = g_utf8_next_char (p);
1462               if (!*p)
1463                 {
1464                   s[0] = '\0';
1465                   g_array_free (result, TRUE);
1466                   
1467                   return 0;
1468                 }
1469
1470               c = g_utf8_get_char (p);
1471             }
1472
1473           switch (c)
1474             {
1475             case 'a':
1476               if (systemtime.wDayOfWeek == 0)
1477                 k = 6;
1478               else
1479                 k = systemtime.wDayOfWeek - 1;
1480               n = GetLocaleInfoW (lcid, LOCALE_SABBREVDAYNAME1+k, NULL, 0);
1481               g_array_set_size (result, result->len + n);
1482               GetLocaleInfoW (lcid, LOCALE_SABBREVDAYNAME1+k, ((wchar_t *) result->data) + result->len - n, n);
1483               g_array_set_size (result, result->len - 1);
1484               break;
1485             case 'A':
1486               if (systemtime.wDayOfWeek == 0)
1487                 k = 6;
1488               else
1489                 k = systemtime.wDayOfWeek - 1;
1490               n = GetLocaleInfoW (lcid, LOCALE_SDAYNAME1+k, NULL, 0);
1491               g_array_set_size (result, result->len + n);
1492               GetLocaleInfoW (lcid, LOCALE_SDAYNAME1+k, ((wchar_t *) result->data) + result->len - n, n);
1493               g_array_set_size (result, result->len - 1);
1494               break;
1495             case 'b':
1496             case 'h':
1497               n = GetLocaleInfoW (lcid, LOCALE_SABBREVMONTHNAME1+systemtime.wMonth-1, NULL, 0);
1498               g_array_set_size (result, result->len + n);
1499               GetLocaleInfoW (lcid, LOCALE_SABBREVMONTHNAME1+systemtime.wMonth-1, ((wchar_t *) result->data) + result->len - n, n);
1500               g_array_set_size (result, result->len - 1);
1501               break;
1502             case 'B':
1503               n = GetLocaleInfoW (lcid, LOCALE_SMONTHNAME1+systemtime.wMonth-1, NULL, 0);
1504               g_array_set_size (result, result->len + n);
1505               GetLocaleInfoW (lcid, LOCALE_SMONTHNAME1+systemtime.wMonth-1, ((wchar_t *) result->data) + result->len - n, n);
1506               g_array_set_size (result, result->len - 1);
1507               break;
1508             case 'c':
1509               n = GetDateFormatW (lcid, 0, &systemtime, NULL, NULL, 0);
1510               if (n > 0)
1511                 {
1512                   g_array_set_size (result, result->len + n);
1513                   GetDateFormatW (lcid, 0, &systemtime, NULL, ((wchar_t *) result->data) + result->len - n, n);
1514                   g_array_set_size (result, result->len - 1);
1515                 }
1516               g_array_append_vals (result, L" ", 1);
1517               n = GetTimeFormatW (lcid, 0, &systemtime, NULL, NULL, 0);
1518               if (n > 0)
1519                 {
1520                   g_array_set_size (result, result->len + n);
1521                   GetTimeFormatW (lcid, 0, &systemtime, NULL, ((wchar_t *) result->data) + result->len - n, n);
1522                   g_array_set_size (result, result->len - 1);
1523                 }
1524               break;
1525             case 'C':
1526               g_array_append_vals (result, digits + systemtime.wYear/1000, 1);
1527               g_array_append_vals (result, digits + (systemtime.wYear/1000)%10, 1);
1528               break;
1529             case 'd':
1530               g_array_append_vals (result, digits + systemtime.wDay/10, 1);
1531               g_array_append_vals (result, digits + systemtime.wDay%10, 1);
1532               break;
1533             case 'D':
1534               g_array_append_vals (result, digits + systemtime.wMonth/10, 1);
1535               g_array_append_vals (result, digits + systemtime.wMonth%10, 1);
1536               g_array_append_vals (result, L"/", 1);
1537               g_array_append_vals (result, digits + systemtime.wDay/10, 1);
1538               g_array_append_vals (result, digits + systemtime.wDay%10, 1);
1539               g_array_append_vals (result, L"/", 1);
1540               g_array_append_vals (result, digits + (systemtime.wYear/10)%10, 1);
1541               g_array_append_vals (result, digits + systemtime.wYear%10, 1);
1542               break;
1543             case 'e':
1544               if (systemtime.wDay >= 10)
1545                 g_array_append_vals (result, digits + systemtime.wDay/10, 1);
1546               else
1547                 g_array_append_vals (result, L" ", 1);
1548               g_array_append_vals (result, digits + systemtime.wDay%10, 1);
1549               break;
1550
1551               /* A GDate has no time fields, so for now we can
1552                * hardcode all time conversions into zeros (or 12 for
1553                * %I). The alternative code snippets in the #else
1554                * branches are here ready to be taken into use when
1555                * needed by a g_strftime() or g_date_and_time_format()
1556                * or whatever.
1557                */
1558             case 'H':
1559 #if 1
1560               g_array_append_vals (result, L"00", 2);
1561 #else
1562               g_array_append_vals (result, digits + systemtime.wHour/10, 1);
1563               g_array_append_vals (result, digits + systemtime.wHour%10, 1);
1564 #endif
1565               break;
1566             case 'I':
1567 #if 1
1568               g_array_append_vals (result, L"12", 2);
1569 #else
1570               if (systemtime.wHour == 0)
1571                 g_array_append_vals (result, L"12", 2);
1572               else
1573                 {
1574                   g_array_append_vals (result, digits + (systemtime.wHour%12)/10, 1);
1575                   g_array_append_vals (result, digits + (systemtime.wHour%12)%10, 1);
1576                 }
1577 #endif
1578               break;
1579             case  'j':
1580               g_array_append_vals (result, digits + (tm->tm_yday+1)/100, 1);
1581               g_array_append_vals (result, digits + ((tm->tm_yday+1)/10)%10, 1);
1582               g_array_append_vals (result, digits + (tm->tm_yday+1)%10, 1);
1583               break;
1584             case 'm':
1585               g_array_append_vals (result, digits + systemtime.wMonth/10, 1);
1586               g_array_append_vals (result, digits + systemtime.wMonth%10, 1);
1587               break;
1588             case 'M':
1589 #if 1
1590               g_array_append_vals (result, L"00", 2);
1591 #else
1592               g_array_append_vals (result, digits + systemtime.wMinute/10, 1);
1593               g_array_append_vals (result, digits + systemtime.wMinute%10, 1);
1594 #endif
1595               break;
1596             case 'n':
1597               g_array_append_vals (result, L"\n", 1);
1598               break;
1599             case 'p':
1600               n = GetTimeFormatW (lcid, 0, &systemtime, L"tt", NULL, 0);
1601               if (n > 0)
1602                 {
1603                   g_array_set_size (result, result->len + n);
1604                   GetTimeFormatW (lcid, 0, &systemtime, L"tt", ((wchar_t *) result->data) + result->len - n, n);
1605                   g_array_set_size (result, result->len - 1);
1606                 }
1607               break;
1608             case 'r':
1609               /* This is a rather odd format. Hard to say what to do.
1610                * Let's always use the POSIX %I:%M:%S %p
1611                */
1612 #if 1
1613               g_array_append_vals (result, L"12:00:00", 8);
1614 #else
1615               if (systemtime.wHour == 0)
1616                 g_array_append_vals (result, L"12", 2);
1617               else
1618                 {
1619                   g_array_append_vals (result, digits + (systemtime.wHour%12)/10, 1);
1620                   g_array_append_vals (result, digits + (systemtime.wHour%12)%10, 1);
1621                 }
1622               g_array_append_vals (result, L":", 1);
1623               g_array_append_vals (result, digits + systemtime.wMinute/10, 1);
1624               g_array_append_vals (result, digits + systemtime.wMinute%10, 1);
1625               g_array_append_vals (result, L":", 1);
1626               g_array_append_vals (result, digits + systemtime.wSecond/10, 1);
1627               g_array_append_vals (result, digits + systemtime.wSecond%10, 1);
1628               g_array_append_vals (result, L" ", 1);
1629 #endif
1630               n = GetTimeFormatW (lcid, 0, &systemtime, L"tt", NULL, 0);
1631               if (n > 0)
1632                 {
1633                   g_array_set_size (result, result->len + n);
1634                   GetTimeFormatW (lcid, 0, &systemtime, L"tt", ((wchar_t *) result->data) + result->len - n, n);
1635                   g_array_set_size (result, result->len - 1);
1636                 }
1637               break;
1638             case 'R':
1639 #if 1
1640               g_array_append_vals (result, L"00:00", 5);
1641 #else
1642               g_array_append_vals (result, digits + systemtime.wHour/10, 1);
1643               g_array_append_vals (result, digits + systemtime.wHour%10, 1);
1644               g_array_append_vals (result, L":", 1);
1645               g_array_append_vals (result, digits + systemtime.wMinute/10, 1);
1646               g_array_append_vals (result, digits + systemtime.wMinute%10, 1);
1647 #endif
1648               break;
1649             case 'S':
1650 #if 1
1651               g_array_append_vals (result, L"00", 2);
1652 #else
1653               g_array_append_vals (result, digits + systemtime.wSecond/10, 1);
1654               g_array_append_vals (result, digits + systemtime.wSecond%10, 1);
1655 #endif
1656               break;
1657             case 't':
1658               g_array_append_vals (result, L"\t", 1);
1659               break;
1660             case 'T':
1661 #if 1
1662               g_array_append_vals (result, L"00:00:00", 8);
1663 #else
1664               g_array_append_vals (result, digits + systemtime.wHour/10, 1);
1665               g_array_append_vals (result, digits + systemtime.wHour%10, 1);
1666               g_array_append_vals (result, L":", 1);
1667               g_array_append_vals (result, digits + systemtime.wMinute/10, 1);
1668               g_array_append_vals (result, digits + systemtime.wMinute%10, 1);
1669               g_array_append_vals (result, L":", 1);
1670               g_array_append_vals (result, digits + systemtime.wSecond/10, 1);
1671               g_array_append_vals (result, digits + systemtime.wSecond%10, 1);
1672 #endif
1673               break;
1674             case 'u':
1675               if (systemtime.wDayOfWeek == 0)
1676                 g_array_append_vals (result, L"7", 1);
1677               else
1678                 g_array_append_vals (result, digits + systemtime.wDayOfWeek, 1);
1679               break;
1680             case 'U':
1681               n = g_date_get_sunday_week_of_year (d);
1682               g_array_append_vals (result, digits + n/10, 1);
1683               g_array_append_vals (result, digits + n%10, 1);
1684               break;
1685             case 'V':
1686               n = g_date_get_iso8601_week_of_year (d);
1687               g_array_append_vals (result, digits + n/10, 1);
1688               g_array_append_vals (result, digits + n%10, 1);
1689               break;
1690             case 'w':
1691               g_array_append_vals (result, digits + systemtime.wDayOfWeek, 1);
1692               break;
1693             case 'W':
1694               n = g_date_get_monday_week_of_year (d);
1695               g_array_append_vals (result, digits + n/10, 1);
1696               g_array_append_vals (result, digits + n%10, 1);
1697               break;
1698             case 'x':
1699               n = GetDateFormatW (lcid, 0, &systemtime, NULL, NULL, 0);
1700               if (n > 0)
1701                 {
1702                   g_array_set_size (result, result->len + n);
1703                   GetDateFormatW (lcid, 0, &systemtime, NULL, ((wchar_t *) result->data) + result->len - n, n);
1704                   g_array_set_size (result, result->len - 1);
1705                 }
1706               break;
1707             case 'X':
1708               n = GetTimeFormatW (lcid, 0, &systemtime, NULL, NULL, 0);
1709               if (n > 0)
1710                 {
1711                   g_array_set_size (result, result->len + n);
1712                   GetTimeFormatW (lcid, 0, &systemtime, NULL, ((wchar_t *) result->data) + result->len - n, n);
1713                   g_array_set_size (result, result->len - 1);
1714                 }
1715               break;
1716             case 'y':
1717               g_array_append_vals (result, digits + (systemtime.wYear/10)%10, 1);
1718               g_array_append_vals (result, digits + systemtime.wYear%10, 1);
1719               break;
1720             case 'Y':
1721               g_array_append_vals (result, digits + systemtime.wYear/1000, 1);
1722               g_array_append_vals (result, digits + (systemtime.wYear/100)%10, 1);
1723               g_array_append_vals (result, digits + (systemtime.wYear/10)%10, 1);
1724               g_array_append_vals (result, digits + systemtime.wYear%10, 1);
1725               break;
1726             case 'Z':
1727               n = GetTimeZoneInformation (&tzinfo);
1728               if (n == TIME_ZONE_ID_UNKNOWN)
1729                 ;
1730               else if (n == TIME_ZONE_ID_STANDARD)
1731                 g_array_append_vals (result, tzinfo.StandardName, wcslen (tzinfo.StandardName));
1732               else if (n == TIME_ZONE_ID_DAYLIGHT)
1733                 g_array_append_vals (result, tzinfo.DaylightName, wcslen (tzinfo.DaylightName));
1734               break;
1735             case '%':
1736               g_array_append_vals (result, L"%", 1);
1737               break;
1738             }      
1739         } 
1740       else if (c <= 0xFFFF)
1741         {
1742           wchar_t wc = c;
1743           g_array_append_vals (result, &wc, 1);
1744         }
1745       else
1746         {
1747           glong nwc;
1748           wchar_t *ws;
1749
1750           ws = g_ucs4_to_utf16 (&c, 1, NULL, &nwc, NULL);
1751           g_array_append_vals (result, ws, nwc);
1752           g_free (ws);
1753         }
1754       p = g_utf8_next_char (p);
1755     }
1756   
1757   convbuf = g_utf16_to_utf8 ((wchar_t *) result->data, result->len, NULL, &convlen, NULL);
1758   g_array_free (result, TRUE);
1759
1760   if (!convbuf)
1761     {
1762       s[0] = '\0';
1763       return 0;
1764     }
1765   
1766   if (slen <= convlen)
1767     {
1768       /* Ensure only whole characters are copied into the buffer. */
1769       gchar *end = g_utf8_find_prev_char (convbuf, convbuf + slen);
1770       g_assert (end != NULL);
1771       convlen = end - convbuf;
1772
1773       /* Return 0 because the buffer isn't large enough. */
1774       retval = 0;
1775     }
1776   else
1777     retval = convlen;
1778
1779   memcpy (s, convbuf, convlen);
1780   s[convlen] = '\0';
1781   g_free (convbuf);
1782
1783   return retval;
1784 }
1785
1786 #endif
1787
1788 gsize     
1789 g_date_strftime (gchar       *s, 
1790                  gsize        slen, 
1791                  const gchar *format, 
1792                  const GDate *d)
1793 {
1794   struct tm tm;
1795 #ifndef G_OS_WIN32
1796   gsize locale_format_len = 0;
1797   gchar *locale_format;
1798   gsize tmplen;
1799   gchar *tmpbuf;
1800   gsize tmpbufsize;
1801   gsize convlen = 0;
1802   gchar *convbuf;
1803   GError *error = NULL;
1804   gsize retval;
1805 #endif
1806
1807   g_return_val_if_fail (g_date_valid (d), 0);
1808   g_return_val_if_fail (slen > 0, 0); 
1809   g_return_val_if_fail (format != NULL, 0);
1810   g_return_val_if_fail (s != NULL, 0);
1811
1812   g_date_to_struct_tm (d, &tm);
1813
1814 #ifdef G_OS_WIN32
1815   if (!g_utf8_validate (format, -1, NULL))
1816     {
1817       s[0] = '\0';
1818       return 0;
1819     }
1820   return win32_strftime_helper (d, format, &tm, s, slen);
1821 #else
1822
1823   locale_format = g_locale_from_utf8 (format, -1, NULL, &locale_format_len, &error);
1824
1825   if (error)
1826     {
1827       g_warning (G_STRLOC "Error converting format to locale encoding: %s\n", error->message);
1828       g_error_free (error);
1829
1830       s[0] = '\0';
1831       return 0;
1832     }
1833
1834   tmpbufsize = MAX (128, locale_format_len * 2);
1835   while (TRUE)
1836     {
1837       tmpbuf = g_malloc (tmpbufsize);
1838
1839       /* Set the first byte to something other than '\0', to be able to
1840        * recognize whether strftime actually failed or just returned "".
1841        */
1842       tmpbuf[0] = '\1';
1843       tmplen = strftime (tmpbuf, tmpbufsize, locale_format, &tm);
1844
1845       if (tmplen == 0 && tmpbuf[0] != '\0')
1846         {
1847           g_free (tmpbuf);
1848           tmpbufsize *= 2;
1849
1850           if (tmpbufsize > 65536)
1851             {
1852               g_warning (G_STRLOC "Maximum buffer size for g_date_strftime exceeded: giving up\n");
1853               g_free (locale_format);
1854
1855               s[0] = '\0';
1856               return 0;
1857             }
1858         }
1859       else
1860         break;
1861     }
1862   g_free (locale_format);
1863
1864   convbuf = g_locale_to_utf8 (tmpbuf, tmplen, NULL, &convlen, &error);
1865   g_free (tmpbuf);
1866
1867   if (error)
1868     {
1869       g_warning (G_STRLOC "Error converting results of strftime to UTF-8: %s\n", error->message);
1870       g_error_free (error);
1871
1872       s[0] = '\0';
1873       return 0;
1874     }
1875
1876   if (slen <= convlen)
1877     {
1878       /* Ensure only whole characters are copied into the buffer.
1879        */
1880       gchar *end = g_utf8_find_prev_char (convbuf, convbuf + slen);
1881       g_assert (end != NULL);
1882       convlen = end - convbuf;
1883
1884       /* Return 0 because the buffer isn't large enough.
1885        */
1886       retval = 0;
1887     }
1888   else
1889     retval = convlen;
1890
1891   memcpy (s, convbuf, convlen);
1892   s[convlen] = '\0';
1893   g_free (convbuf);
1894
1895   return retval;
1896 #endif
1897 }
1898
1899 #define __G_DATE_C__
1900 #include "galiasdef.c"
1901