I'm trying to write some code to sleep until the start of the next minute in the local timezone, but am having great difficulty doing so. The time library has always been one of my weak points, so I'm assuming there's some easy way to do this.
I thought of just computing a new TimeOfDay, but that wouldn't handle 23:59 to 00:00, and would presumably do very confusing things with daylight savings time switch-overs.
Handling leap seconds would be a nice bonus, too.
Using Control.Concurrent.threadDelay to do the sleeping seems like the simplest method to me, so an alternate question would be: How can I get the number of microseconds until the start of the next minute? DiffTime and NominalDiffTime would be perfectly acceptable ways to achieve this.
UTCTimeseems to imply that leap seconds aren't handled by the measuring actions likegetCurrentTime, so it would be an acceptable solution after all; the seconds field is actually given to picosecond precision, so it would give the best accuracy I could hope for. I'll give it a try. – ehird Dec 20 '11 at 15:58threadDelayonly sets a lower bound on the time a thread will sleep; it doesn't guarantee that the thread will be re-scheduled promptly. Although if you don't care about being a bit late, just add some padding to your time, e.g.61-sseconds. – John L Dec 20 '11 at 16:00timelibrary doesn't keep track of them, then that shouldn't be a problem... – ehird Dec 20 '11 at 16:02