[project @ 2001-01-12 16:16:36 by simonmar]
[ghc-hetmet.git] / ghc / lib / std / Time.hsc
1 -- -----------------------------------------------------------------------------
2 -- $Id: Time.hsc,v 1.1 2001/01/12 16:16:36 simonmar Exp $
3 --
4 -- (c) The University of Glasgow, 1995-2001
5 --
6
7 {-
8 Haskell 98 Time of Day Library
9 ------------------------------
10
11 The Time library provides standard functionality for clock times,
12 including timezone information (i.e, the functionality of "time.h",
13 adapted to the Haskell environment), It follows RFC 1129 in its use of
14 Coordinated Universal Time (UTC).
15
16 2000/06/17 <michael.weber@post.rwth-aachen.de>:
17 RESTRICTIONS:
18   * min./max. time diff currently is restricted to
19     [minBound::Int, maxBound::Int]
20
21   * surely other restrictions wrt. min/max bounds
22
23
24 NOTES:
25   * printing times
26
27     `showTime' (used in `instance Show ClockTime') always prints time
28     converted to the local timezone (even if it is taken from
29     `(toClockTime . toUTCTime)'), whereas `calendarTimeToString'
30     honors the tzone & tz fields and prints UTC or whatever timezone
31     is stored inside CalendarTime.
32
33     Maybe `showTime' should be changed to use UTC, since it would
34     better correspond to the actual representation of `ClockTime'
35     (can be done by replacing localtime(3) by gmtime(3)).
36
37
38 BUGS:
39   * add proper handling of microsecs, currently, they're mostly
40     ignored
41
42   * `formatFOO' case of `%s' is currently broken...
43
44
45 TODO:
46   * check for unusual date cases, like 1970/1/1 00:00h, and conversions
47     between different timezone's etc.
48
49   * check, what needs to be in the IO monad, the current situation
50     seems to be a bit inconsistent to me
51
52   * check whether `isDst = -1' works as expected on other arch's
53     (Solaris anyone?)
54
55   * add functions to parse strings to `CalendarTime' (some day...)
56
57   * implement padding capabilities ("%_", "%-") in `formatFOO'
58
59   * add rfc822 timezone (+0200 is CEST) representation ("%z") in `formatFOO'
60 -}
61
62 module Time 
63      (
64         Month(..)
65      ,  Day(..)
66
67      ,  ClockTime(..) -- non-standard, lib. report gives this as abstract
68      ,  getClockTime
69
70      ,  TimeDiff(..)
71      ,  noTimeDiff      -- non-standard (but useful when constructing TimeDiff vals.)
72      ,  diffClockTimes
73      ,  addToClockTime
74
75      ,  normalizeTimeDiff -- non-standard
76      ,  timeDiffToString  -- non-standard
77      ,  formatTimeDiff    -- non-standard
78
79      ,  CalendarTime(..)
80      ,  toCalendarTime
81      ,  toUTCTime
82      ,  toClockTime
83      ,  calendarTimeToString
84      ,  formatCalendarTime
85
86      ) where
87
88 #include "config.h"
89
90 #if defined(HAVE_GETTIMEOFDAY)
91 #  ifdef HAVE_SYS_TIME_H
92 #   include <sys/time.h>
93 #  endif
94 #elif defined(HAVE_GETCLOCK)
95 # ifdef HAVE_SYS_TIMERS_H
96 #  define POSIX_4D9 1
97 #  include <sys/timers.h>
98 # endif
99 #elif defined(HAVE_TIME_H)
100 # include <time.h>
101 #endif
102
103 #ifdef HAVE_WINDOWS_H
104 #include <windows.h>
105 #include <sys/types.h>
106 #include <sys/timeb.h>
107 #endif
108
109 import Ix
110 import Locale
111         
112 import PrelMarshalAlloc
113 import PrelMarshalUtils
114 import PrelMarshalError
115 import PrelStorable
116 import PrelCString
117 import PrelCTypesISO
118 import PrelCTypes
119 import PrelCError
120 import PrelInt
121 import PrelPtr
122 import PrelIOBase
123 import PrelShow
124 import PrelNum
125 import PrelBase
126
127 -- One way to partition and give name to chunks of a year and a week:
128
129 data Month
130  = January   | February | March    | April
131  | May       | June     | July     | August
132  | September | October  | November | December
133  deriving (Eq, Ord, Enum, Bounded, Ix, Read, Show)
134
135 data Day 
136  = Sunday   | Monday | Tuesday | Wednesday
137  | Thursday | Friday | Saturday
138  deriving (Eq, Ord, Enum, Bounded, Ix, Read, Show)
139
140 -- @ClockTime@ is an abstract type, used for the internal clock time.
141 -- Clock times may be compared, converted to strings, or converted to an
142 -- external calendar time @CalendarTime@.
143
144 data ClockTime = TOD Integer            -- Seconds since 00:00:00 on 1 Jan 1970
145                      Integer            -- Picoseconds with the specified second
146                deriving (Eq, Ord)
147
148 -- When a @ClockTime@ is shown, it is converted to a string of the form
149 -- @"Mon Nov 28 21:45:41 GMT 1994"@.
150
151 -- For now, we are restricted to roughly:
152 -- Fri Dec 13 20:45:52 1901 through Tue Jan 19 03:14:07 2038, because
153 -- we use the C library routines based on 32 bit integers.
154
155 instance Show ClockTime where
156     showsPrec _ (TOD secs _nsec) = 
157       showString $ unsafePerformIO $ do
158             withObject (fromIntegral secs :: CTime)  $ \ p_timer -> do
159               p_tm <- localtime p_timer -- can't fail, according to POSIX
160               allocaBytes 64 $ \ p_buf -> do  -- big enough for error message
161                 r <- strftime p_buf 50 "%a %b %d %H:%M:%S %Z %Y"## p_tm
162                 if r == 0 
163                   then return "ClockTime.show{Time}: internal error"
164                   else peekCString p_buf
165
166     showList = showList__ (showsPrec 0)
167
168 {-
169 @CalendarTime@ is a user-readable and manipulable
170 representation of the internal $ClockTime$ type.  The
171 numeric fields have the following ranges.
172
173 \begin{verbatim}
174 Value         Range             Comments
175 -----         -----             --------
176
177 year    -maxInt .. maxInt       [Pre-Gregorian dates are inaccurate]
178 mon           0 .. 11           [Jan = 0, Dec = 11]
179 day           1 .. 31
180 hour          0 .. 23
181 min           0 .. 59
182 sec           0 .. 61           [Allows for two leap seconds]
183 picosec       0 .. (10^12)-1    [This could be over-precise?]
184 wday          0 .. 6            [Sunday = 0, Saturday = 6]
185 yday          0 .. 365          [364 in non-Leap years]
186 tz       -43200 .. 43200        [Variation from UTC in seconds]
187 \end{verbatim}
188
189 The {\em tzname} field is the name of the time zone.  The {\em isdst}
190 field indicates whether Daylight Savings Time would be in effect.
191 -}
192
193 data CalendarTime 
194  = CalendarTime  {
195      ctYear    :: Int,
196      ctMonth   :: Month,
197      ctDay     :: Int,
198      ctHour    :: Int,
199      ctMin     :: Int,
200      ctSec     :: Int,
201      ctPicosec :: Integer,
202      ctWDay    :: Day,
203      ctYDay    :: Int,
204      ctTZName  :: String,
205      ctTZ      :: Int,
206      ctIsDST   :: Bool
207  }
208  deriving (Eq,Ord,Read,Show)
209
210 -- The @TimeDiff@ type records the difference between two clock times in
211 -- a user-readable way.
212
213 data TimeDiff
214  = TimeDiff {
215      tdYear    :: Int,
216      tdMonth   :: Int,
217      tdDay     :: Int,
218      tdHour    :: Int,
219      tdMin     :: Int,
220      tdSec     :: Int,
221      tdPicosec :: Integer -- not standard
222    }
223    deriving (Eq,Ord,Read,Show)
224
225 noTimeDiff :: TimeDiff
226 noTimeDiff = TimeDiff 0 0 0 0 0 0 0
227
228 -- -----------------------------------------------------------------------------
229 -- getClockTime returns the current time in its internal representation.
230
231 #if defined(_WIN32) && !defined(cygwin32_TARGET_OS)
232   -- 
233   -- ftime() as implemented by cygwin (in B20.1) is
234   -- not right, so stay away & use time() there instead.
235   -- 
236 getClockTime = do
237   allocaBytes (#const sizeof(struct timeb)) $ \ p_timeb -> do
238   ftime p_timeb
239   sec  <- (#peek struct timeb,time) p_timeb :: IO CTime
240   msec <- (#peek struct timeb,millitime) p_timeb :: IO CUShort
241   return (TOD (fromIntegral sec) (fromIntegral msec * 1000{-ToDo: correct???-}))
242
243 #elif defined(HAVE_GETTIMEOFDAY)
244 getClockTime = do
245   allocaBytes (#const sizeof(struct timeval)) $ \ p_timeval -> do
246     throwErrnoIfMinus1_ "getClockTime" $ gettimeofday p_timeval nullPtr
247     sec  <- (#peek struct timeval,tv_sec)  p_timeval :: IO CLong
248     usec <- (#peek struct timeval,tv_usec) p_timeval :: IO CLong
249     return (TOD (fromIntegral sec) ((fromIntegral usec) * 1000))
250  
251 #else /* use POSIX time() */
252 getClockTime = do
253     secs <- time nullPtr -- can't fail, according to POSIX
254     return (TOD (fromIntegral secs) 0)
255
256 #endif
257
258 -- -----------------------------------------------------------------------------
259 -- addToClockTime d t adds a time difference d and a
260 -- clock time t to yield a new clock time.  The difference d
261 -- may be either positive or negative.  diffClockTimes t1 t2 returns 
262 -- the difference between two clock times t1 and t2 as a TimeDiff.
263
264 addToClockTime  :: TimeDiff  -> ClockTime -> ClockTime
265 addToClockTime (TimeDiff year mon day hour min sec psec) 
266                (TOD c_sec c_psec) = 
267         let
268           sec_diff = fromInt sec + 60 * fromInt min + 3600 * fromInt hour + 24 * 3600 * fromInt day
269           cal      = toUTCTime (TOD (c_sec + sec_diff) (c_psec + psec))
270                                                        -- FIXME! ^^^^
271           new_mon  = fromEnum (ctMonth cal) + r_mon 
272           (month', yr_diff)
273             | new_mon < 0  = (toEnum (12 + new_mon), (-1))
274             | new_mon > 11 = (toEnum (new_mon `mod` 12), 1)
275             | otherwise    = (toEnum new_mon, 0)
276             
277           (r_yr, r_mon) = mon `quotRem` 12
278
279           year' = ctYear cal + year + r_yr + yr_diff
280         in
281         toClockTime cal{ctMonth=month', ctYear=year'}
282
283 diffClockTimes  :: ClockTime -> ClockTime -> TimeDiff
284 -- diffClockTimes is meant to be the dual to `addToClockTime'.
285 -- If you want to have the TimeDiff properly splitted, use
286 -- `normalizeTimeDiff' on this function's result
287 --
288 -- CAVEAT: see comment of normalizeTimeDiff
289 diffClockTimes (TOD sa pa) (TOD sb pb) =
290     noTimeDiff{ tdSec     = fromIntegral (sa - sb) 
291                 -- FIXME: can handle just 68 years...
292               , tdPicosec = pa - pb
293               }
294
295
296 normalizeTimeDiff :: TimeDiff -> TimeDiff
297 -- FIXME: handle psecs properly
298 -- FIXME: ?should be called by formatTimeDiff automagically?
299 --
300 -- when applied to something coming out of `diffClockTimes', you loose
301 -- the duality to `addToClockTime', since a year does not always have
302 -- 365 days, etc.
303 --
304 -- apply this function as late as possible to prevent those "rounding"
305 -- errors
306 normalizeTimeDiff td =
307   let
308       rest0 = tdSec td 
309                + 60 * (tdMin td 
310                     + 60 * (tdHour td 
311                          + 24 * (tdDay td 
312                               + 30 * (tdMonth td 
313                                    + 365 * tdYear td))))
314
315       (diffYears,  rest1)    = rest0 `quotRem` (365 * 24 * 3600)
316       (diffMonths, rest2)    = rest1 `quotRem` (30 * 24 * 3600)
317       (diffDays,   rest3)    = rest2 `quotRem` (24 * 3600)
318       (diffHours,  rest4)    = rest3 `quotRem` 3600
319       (diffMins,   diffSecs) = rest4 `quotRem` 60
320   in
321       td{ tdYear = diffYears
322         , tdMonth = diffMonths
323         , tdDay   = diffDays
324         , tdHour  = diffHours
325         , tdMin   = diffMins
326         , tdSec   = diffSecs
327         }
328
329 -- -----------------------------------------------------------------------------
330 -- toCalendarTime t converts t to a local time, modified by
331 -- the current timezone and daylight savings time settings.  toUTCTime
332 -- t converts t into UTC time.  toClockTime l converts l into the 
333 -- corresponding internal ClockTime.  The wday, yday, tzname, and isdst fields
334 -- are ignored.
335
336 #if HAVE_TM_ZONE
337 zone x      = (#peek struct tm,tm_zone) x   :: IO (Ptr CChar)
338 gmtoff x    = (#peek struct tm,tm_gmtoff) x :: IO CLong
339
340 #else /* ! HAVE_TM_ZONE */
341 # if HAVE_TZNAME || _WIN32
342 #  if cygwin32_TARGET_OS
343 #   define tzname _tzname
344 #  endif
345 #  ifndef mingw32_TARGET_OS
346 extern char *tzname[2];
347 #  endif
348 #  define ZONE(x)        (((struct tm *)x)->tm_isdst ? tzname[1] : tzname[0])
349 # else /* ! HAVE_TZNAME */
350 /* We're in trouble. If you should end up here, please report this as a bug. */
351 #  error Dont know how to get at timezone name on your OS.
352 # endif /* ! HAVE_TZNAME */
353 /* Get the offset in secs from UTC, if (struct tm) doesn't supply it. */
354
355 #if defined(mingw32_TARGET_OS) || defined(cygwin32_TARGET_OS)
356 #define timezone _timezone
357 #endif
358
359 #if !defined(HAVE_TIMEZONE) && !defined(mingw32_TARGET_OS)
360 extern TYPE_TIMEZONE timezone;
361 #endif
362
363 # if HAVE_ALTZONE
364 extern time_t altzone;
365 #  define GMTOFF(x)      (((struct tm *)x)->tm_isdst ? altzone : timezone )
366 # else /* ! HAVE_ALTZONE */
367 /* Assume that DST offset is 1 hour ... */
368 #  define GMTOFF(x) (((struct tm *)x)->tm_isdst ? (timezone - 3600) : timezone )
369 # endif /* ! HAVE_ALTZONE */
370 #endif  /* ! HAVE_TM_ZONE */
371
372
373 toCalendarTime :: ClockTime -> IO CalendarTime
374 toCalendarTime =  clockToCalendarTime localtime
375
376 toUTCTime      :: ClockTime -> CalendarTime
377 toUTCTime      =  unsafePerformIO . clockToCalendarTime gmtime
378
379 -- ToDo: should be made thread safe, because localtime uses static storage,
380 -- or use the localtime_r version.
381 clockToCalendarTime :: (Ptr CTime -> IO (Ptr CTm)) -> ClockTime
382          -> IO CalendarTime
383 clockToCalendarTime fun (TOD secs psec) = do
384   withObject (fromIntegral secs :: CTime)  $ \ p_timer -> do
385     p_tm <- fun p_timer         -- can't fail, according to POSIX
386     sec   <-  (#peek struct tm,tm_sec  ) p_tm :: IO CInt
387     min   <-  (#peek struct tm,tm_min  ) p_tm :: IO CInt
388     hour  <-  (#peek struct tm,tm_hour ) p_tm :: IO CInt
389     mday  <-  (#peek struct tm,tm_mday ) p_tm :: IO CInt
390     mon   <-  (#peek struct tm,tm_mon  ) p_tm :: IO CInt
391     year  <-  (#peek struct tm,tm_year ) p_tm :: IO CInt
392     wday  <-  (#peek struct tm,tm_wday ) p_tm :: IO CInt
393     yday  <-  (#peek struct tm,tm_yday ) p_tm :: IO CInt
394     isdst <-  (#peek struct tm,tm_isdst) p_tm :: IO CInt
395     zone  <-  zone p_tm
396     tz    <-  gmtoff p_tm
397     
398     tzname <- peekCString zone
399     
400     let month  | mon >= 0 && mon <= 11 = toEnum (fromIntegral mon)
401                | otherwise             = error ("toCalendarTime: illegal month value: " ++ show mon)
402     
403     return (CalendarTime 
404                 (1900 + fromIntegral year) 
405                 month
406                 (fromIntegral mday)
407                 (fromIntegral hour)
408                 (fromIntegral min)
409                 (fromIntegral sec)
410                 psec
411                 (toEnum (fromIntegral wday))
412                 (fromIntegral yday)
413                 tzname 
414                 (fromIntegral tz)
415                 (isdst /= 0))
416
417
418 toClockTime :: CalendarTime -> ClockTime
419 toClockTime (CalendarTime year mon mday hour min sec psec 
420                           _wday _yday _tzname tz isdst) =
421
422      -- `isDst' causes the date to be wrong by one hour...
423      -- FIXME: check, whether this works on other arch's than Linux, too...
424      -- 
425      -- so we set it to (-1) (means `unknown') and let `mktime' determine
426      -- the real value...
427     let isDst = -1 :: CInt in   -- if isdst then (1::Int) else 0
428
429     if psec < 0 || psec > 999999999999 then
430         error "Time.toClockTime: picoseconds out of range"
431     else if tz < -43200 || tz > 43200 then
432         error "Time.toClockTime: timezone offset out of range"
433     else
434       unsafePerformIO $ do
435       allocaBytes (#const sizeof(struct tm)) $ \ p_tm -> do
436         (#poke struct tm,tm_sec  ) p_tm (fromIntegral sec  :: CInt)
437         (#poke struct tm,tm_min  ) p_tm (fromIntegral min  :: CInt)
438         (#poke struct tm,tm_hour ) p_tm (fromIntegral hour :: CInt)
439         (#poke struct tm,tm_mday ) p_tm (fromIntegral mday :: CInt)
440         (#poke struct tm,tm_mon  ) p_tm (fromIntegral (fromEnum mon) :: CInt)
441         (#poke struct tm,tm_year ) p_tm (fromIntegral year - 1900 :: CInt)
442         (#poke struct tm,tm_isdst) p_tm isDst
443         t <- throwIf (== -1) (\_ -> "Time.toClockTime: invalid input")
444                 (mktime p_tm)
445         -- 
446         -- mktime expects its argument to be in the local timezone, but
447         -- toUTCTime makes UTC-encoded CalendarTime's ...
448         -- 
449         -- Since there is no any_tz_struct_tm-to-time_t conversion
450         -- function, we have to fake one... :-) If not in all, it works in
451         -- most cases (before, it was the other way round...)
452         -- 
453         -- Luckily, mktime tells us, what it *thinks* the timezone is, so,
454         -- to compensate, we add the timezone difference to mktime's
455         -- result.
456         -- 
457         gmtoff <- gmtoff p_tm
458         let res = fromIntegral t + tz + fromIntegral gmtoff
459         return (TOD (fromIntegral res) 0)
460
461 -- -----------------------------------------------------------------------------
462 -- Converting time values to strings.
463
464 calendarTimeToString  :: CalendarTime -> String
465 calendarTimeToString  =  formatCalendarTime defaultTimeLocale "%c"
466
467 formatCalendarTime :: TimeLocale -> String -> CalendarTime -> String
468 formatCalendarTime l fmt (CalendarTime year mon day hour min sec _
469                                        wday yday tzname _ _) =
470         doFmt fmt
471   where doFmt ('%':'-':cs) = doFmt ('%':cs) -- padding not implemented
472         doFmt ('%':'_':cs) = doFmt ('%':cs) -- padding not implemented
473         doFmt ('%':c:cs)   = decode c ++ doFmt cs
474         doFmt (c:cs) = c : doFmt cs
475         doFmt "" = ""
476
477         decode 'A' = fst (wDays l  !! fromEnum wday) -- day of the week, full name
478         decode 'a' = snd (wDays l  !! fromEnum wday) -- day of the week, abbrev.
479         decode 'B' = fst (months l !! fromEnum mon)  -- month, full name
480         decode 'b' = snd (months l !! fromEnum mon)  -- month, abbrev
481         decode 'h' = snd (months l !! fromEnum mon)  -- ditto
482         decode 'C' = show2 (year `quot` 100)         -- century
483         decode 'c' = doFmt (dateTimeFmt l)           -- locale's data and time format.
484         decode 'D' = doFmt "%m/%d/%y"
485         decode 'd' = show2 day                       -- day of the month
486         decode 'e' = show2' day                      -- ditto, padded
487         decode 'H' = show2 hour                      -- hours, 24-hour clock, padded
488         decode 'I' = show2 (to12 hour)               -- hours, 12-hour clock
489         decode 'j' = show3 yday                      -- day of the year
490         decode 'k' = show2' hour                     -- hours, 24-hour clock, no padding
491         decode 'l' = show2' (to12 hour)              -- hours, 12-hour clock, no padding
492         decode 'M' = show2 min                       -- minutes
493         decode 'm' = show2 (fromEnum mon+1)          -- numeric month
494         decode 'n' = "\n"
495         decode 'p' = (if hour < 12 then fst else snd) (amPm l) -- am or pm
496         decode 'R' = doFmt "%H:%M"
497         decode 'r' = doFmt (time12Fmt l)
498         decode 'T' = doFmt "%H:%M:%S"
499         decode 't' = "\t"
500         decode 'S' = show2 sec                       -- seconds
501         decode 's' = show2 sec                       -- number of secs since Epoch. (ToDo.)
502         decode 'U' = show2 ((yday + 7 - fromEnum wday) `div` 7) -- week number, starting on Sunday.
503         decode 'u' = show (let n = fromEnum wday in  -- numeric day of the week (1=Monday, 7=Sunday)
504                            if n == 0 then 7 else n)
505         decode 'V' =                                 -- week number (as per ISO-8601.)
506             let (week, days) =                       -- [yep, I've always wanted to be able to display that too.]
507                    (yday + 7 - if fromEnum wday > 0 then 
508                                fromEnum wday - 1 else 6) `divMod` 7
509             in  show2 (if days >= 4 then
510                           week+1 
511                        else if week == 0 then 53 else week)
512
513         decode 'W' =                                 -- week number, weeks starting on monday
514             show2 ((yday + 7 - if fromEnum wday > 0 then 
515                                fromEnum wday - 1 else 6) `div` 7)
516         decode 'w' = show (fromEnum wday)            -- numeric day of the week, weeks starting on Sunday.
517         decode 'X' = doFmt (timeFmt l)               -- locale's preferred way of printing time.
518         decode 'x' = doFmt (dateFmt l)               -- locale's preferred way of printing dates.
519         decode 'Y' = show year                       -- year, including century.
520         decode 'y' = show2 (year `rem` 100)          -- year, within century.
521         decode 'Z' = tzname                          -- timezone name
522         decode '%' = "%"
523         decode c   = [c]
524
525
526 show2, show2', show3 :: Int -> String
527 show2 x = [intToDigit (x `quot` 10), intToDigit (x `rem` 10)]
528
529 show2' x = if x < 10 then [ ' ', intToDigit x] else show2 x
530
531 show3 x = intToDigit (x `quot` 100) : show2 (x `rem` 100)
532
533 to12 :: Int -> Int
534 to12 h = let h' = h `mod` 12 in if h' == 0 then 12 else h'
535
536 -- Useful extensions for formatting TimeDiffs.
537
538 timeDiffToString :: TimeDiff -> String
539 timeDiffToString = formatTimeDiff defaultTimeLocale "%c"
540
541 formatTimeDiff :: TimeLocale -> String -> TimeDiff -> String
542 formatTimeDiff l fmt td@(TimeDiff year month day hour min sec _)
543  = doFmt fmt
544   where 
545    doFmt ""         = ""
546    doFmt ('%':'-':cs) = doFmt ('%':cs) -- padding not implemented
547    doFmt ('%':'_':cs) = doFmt ('%':cs) -- padding not implemented
548    doFmt ('%':c:cs) = decode c ++ doFmt cs
549    doFmt (c:cs)     = c : doFmt cs
550
551    decode spec =
552     case spec of
553       'B' -> fst (months l !! fromEnum month)
554       'b' -> snd (months l !! fromEnum month)
555       'h' -> snd (months l !! fromEnum month)
556       'c' -> defaultTimeDiffFmt td
557       'C' -> show2 (year `quot` 100)
558       'D' -> doFmt "%m/%d/%y"
559       'd' -> show2 day
560       'e' -> show2' day
561       'H' -> show2 hour
562       'I' -> show2 (to12 hour)
563       'k' -> show2' hour
564       'l' -> show2' (to12 hour)
565       'M' -> show2 min
566       'm' -> show2 (fromEnum month + 1)
567       'n' -> "\n"
568       'p' -> (if hour < 12 then fst else snd) (amPm l)
569       'R' -> doFmt "%H:%M"
570       'r' -> doFmt (time12Fmt l)
571       'T' -> doFmt "%H:%M:%S"
572       't' -> "\t"
573       'S' -> show2 sec
574       's' -> show2 sec -- Implementation-dependent, sez the lib doc..
575       'X' -> doFmt (timeFmt l)
576       'x' -> doFmt (dateFmt l)
577       'Y' -> show year
578       'y' -> show2 (year `rem` 100)
579       '%' -> "%"
580       c   -> [c]
581
582    defaultTimeDiffFmt (TimeDiff year month day hour min sec _) =
583        foldr (\ (v,s) rest -> 
584                   (if v /= 0 
585                      then show v ++ ' ':(addS v s)
586                        ++ if null rest then "" else ", "
587                      else "") ++ rest
588              )
589              ""
590              (zip [year, month, day, hour, min, sec] (intervals l))
591
592    addS v s = if abs v == 1 then fst s else snd s
593
594
595 -- -----------------------------------------------------------------------------
596 -- Foreign time interface (POSIX)
597
598 type CTm = () -- struct tm
599
600 foreign import unsafe localtime :: Ptr CTime -> IO (Ptr CTm)
601 foreign import unsafe gmtime    :: Ptr CTime -> IO (Ptr CTm)
602 foreign import unsafe strftime  :: Ptr CChar -> CSize -> Addr## -> Ptr CTm -> IO CSize
603 foreign import unsafe mktime    :: Ptr CTm   -> IO CTime
604 foreign import unsafe time      :: Ptr CTime -> IO CTime
605
606 #ifdef HAVE_GETTIMEOFDAY
607 type CTimeVal = ()
608 foreign import unsafe gettimeofday :: Ptr CTimeVal -> Ptr () -> IO CInt
609 #endif
610
611 #if defined(_WIN32) && !defined(cygwin32_TARGET_OS)
612 type CTimeB
613 foreign import unsafe ftime :: Ptr CTimeB -> IO CInt
614 #endif