forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Lib datetime
kud1ing edited this page Aug 8, 2013
·
194 revisions
A library for date and time.
- Instant: an infinitesimal location in the time continuum.
- Time Interval: a part of the the time continuum limited by two instants.
- Time Scale: a system of ordered marks of instants. One instant is chosen as the Origin, see Epoch.
- Epoch: the origin of a particular era, e.g. the Incarnation of Jesus.
- Time Point: an instant, defined by the means of a Time Scale.
- Duration: a non-negative length of time.
- International Atomic Time (TAI): ?
- Coordinated Universal Time (UTC): is the primary time scale by which the world regulates clocks and time.
- Standard Time: the result of synchronizing clocks in different geographical locations within a time zone to the same time.
- Local Time: a time in the local non-UTC based standard time
See ISO 8601, which relies on IEC 60050-111, IEC 60050-713.
- leap seconds
- infinity
- high resolution
- network time sources
- daylight saving time
- eras, e.g. BC/AD
- time zone changes, sometimes on short notice
- Proposed editor: your name
- Date proposed: date of proposal
- Link: link to email
- note
- note
- note
- ISO 31-1 defines the units day, hour, minute, second for time, time interval and duration
- ISO 8601days
- Gregorian calendar - 1582-10-04 last day of the Julian calendar, followed by - 1582-10-15 first day of the Gregorian calendar
- ITU-R TF.460-5
- Coordinated Universal Time (UTC) - Leap second
- Julian Day - Epoch: -4714-11-24T12:00:00Z
- Modified Julian Day - Epoch: 1858-11-17T00:00:00Z - MJD = JD - 2400000.5
- Unix Time - Epoch: 1970-01-01T00:00:00Z - UnixTime = (JD − 2440587.5) × 86400
- TAI (Temps Atomique International) - The underlying atomic time, non-leap seconds - International Atomic Time - UTC vs. TAI discussion
- Network Time Protocol
- IANA Time Zone Database
- Sources for Time Zone and Daylight Saving Time Data
- Gregorian Date <=> Julian Day conversion:
- Letter to the editor of Communications of the ACM (CACM, volume 11, number 10, October 1968, p.657) Henry F. Fliegel and Thomas C. Van Flandern
- Proposal to Add Date-Time to the C++ Standard Library
- https://github.com/ThreeTen/threeten/wiki/Multi-calendar-system
Used by: Boost, Cocoa, JSR-310
Options:
- having separate types for Date and Time
- Used by: Boost, Haskell, Joda, Python, Qt, Ruby
- Cons:
- more complex API (to use and implement)
- Pros:
- more space-efficient if one only needs date or time
- more expressive (e.g. for birthdays often the time of birth is not known)
- having only one type for Date/Time
- Used by: Cocoa, Go, .Net
- Cons:
- less space-efficient if one only needs date or time
- less expressive (e.g. for birthdays often the time of birth is not known)
- Pros:
- simpler API (to use and implement)
All known representations are based on the time passed from a certain epoch, either counted in days or seconds/milliseconds/nanoseconds.
Options:
- floats
- Used by:
- Cocoa: NSTimeInterval := double (seconds since the Cocoa epoch)
- Cons:
- ?
- Pros:
- ?
- Used by:
- integers
- Used by:
- Boost: int?? (template argument) (days since 1400-01-01)
- Go: int64 (seconds since 0001-01-01) + int32 (nanoseconds)
- Haskell: arbitrary-precision integers (days since Modified Julian Day epoch)
- Joda: long (milliseconds since the Unix Time epoch)
- Qt: int64 (days since the Julian Day epoch)
- Ruby: int (days since the Julian Day epoch)
- Cons:
- ?
- Pros:
- faster comparison and calculation
- more space-efficient
- lossless calculations
- Used by:
Epochs are the reference for the internal date/time counting. It does not matter so much, which instant in time one chooses if the type is large enough (Year 2038 problem for int32).
Options:
-
0001-01-01T00:00:00Z
- Used by: Go
-
Julian Day
- Used by: Qt
- Cons:
- ?
- Pros:
- ?
-
Modified Julian Day
- Used by: Haskell
- Cons:
- ?
- Pros:
- more space-efficient
-
Unix Time
- Used by: Joda, Unix
- Cons:
- ?
- Pros:
- ?
-
2001-01-01T00:00:00Z
- Used by: Apple Cocoa
- Cons:
- ?
- Pros:
- ?
Options:
- date/time interface is coupled to a calendar (Gregorian)
- Used by: Go, Qt
- Cons:
- ?
- Pros:
- less code is needed to get started
- date/time interface is tied to a configurable calendar
- Used by: Boost, Joda
- Cons:
- ?
- Pros:
- not much code is needed to get started
- date/time interface is independent of a calendar
- Used by:
- Cocoa: NSCalendar create NSDates and are used for calendrical calculation
- Cons:
- more code is needed to get started
- Pros:
- seperated interfaces are themselves easier to understand and extend
- Used by:
Sometimes the timezone information is missing, e.g. parsing from a textual representation.
Options:
- support Date/Time with no attached timezone
- Used by:
- Joda: LocalDate, LocalTime, LocalDateTime
- Cons:
- more complex interfaces/types
- ?
- Pros:
- clear distinction between dates that are comparable and date that are not
- more space-efficient
- Used by:
- assume the local timezone if the timezone is not available
- Used by:
- Cocoa
- Cons:
- dates are created that appear to be comparable, but are not. One needs to keep tracks of those dates.
- less space-efficient
- Pros:
- ?
- Used by:
- Language: C
- time.h
- glib
- libtai
- Modernized
<time.h>
API proposal by Markus Kuhn - Language: C++
- Boost.Date_Time
- boost::date_time
- boost::date_time::date
- [boost::date_time::period] (http://www.boost.org/doc/libs/1_53_0/doc/html/boost/date_time/period.html)
- boost::date_time::gregorian
-
Gregorian
- valid date range: 1400-01-01 to 9999-12-03
-
Gregorian
- boost::date_time::posix_time
- Unit tests - Qt
- QDate
- QTime: a clock time since midnight
- QDateTime
- Unit tests:
- Date
- Period
- Calendar
- boost::date_time
- Language: Go - time
- Language: Haskell - Data.Time
- Language: Java
- JSR-310
- Joda-Time
- DateTime: the datetime as milliseconds from the Unix epoch and a Chronology (calendar system).
- Chronology
- LocalDate: a date without a time zone.
- LocalTime: a time without a time zone.
- LocalDateTime: a datetime without a time zone. - java.util
- java.util.Date: a time period with millisecond duration
- java.util.Calendar
- java.util.GregorianCalendar
- java.util.TimeZone
- java.util.SimpleTimeZone
- Language: Objective-C - Cocoa Date and Time Programming Guide
- Language: Python
- builtin
-
datetime
- distinguishes between "naive" and "aware" date/time objects
- datetime.date
- datetime.time
- datetime.datetime
- datetime.timedelta
- datetime.timezone
- time
- calendar - pytz - dateutil
-
datetime
- Language: Ruby - Date
- Language: Scheme - SRFI 19
- Pull request: link to bug