Expand description
Low-level date algorithms for libraries
This library aims to provide the highest performance algorithms for date manipulation in an unopinionated way. It is meant to be used by the various date and time libraries which can then provide ergonomic and opinionated interfaces for their users.
Usage
The primary contribution of this crate for date libraries are the conversions between a day number from Unix epoch (January 1st, 1970) and a Gregorian date:
use datealgo::{rd_to_date, date_to_rd};
assert_eq!(date_to_rd((1970, 1, 1)), 0);
assert_eq!(date_to_rd((2023, 5, 12)), 19489);
assert_eq!(rd_to_date(19489), (2023, 5, 12));For convenience, there is also converters to and from Unix timestamps:
use datealgo::{secs_to_datetime, datetime_to_secs};
assert_eq!(datetime_to_secs((1970, 1, 1, 0, 0, 0)), 0);
assert_eq!(datetime_to_secs((2023, 5, 20, 9, 24, 38)), 1684574678);
assert_eq!(secs_to_datetime(1684574678), (2023, 5, 20, 9, 24, 38));If the std feature is enabled, there are also converters to and from
SystemTime:
use datealgo::{systemtime_to_datetime, datetime_to_systemtime};
use std::time::{Duration, UNIX_EPOCH};
assert_eq!(systemtime_to_datetime(UNIX_EPOCH), Some((1970, 1, 1, 0, 0, 0, 0)));
assert_eq!(systemtime_to_datetime(UNIX_EPOCH + Duration::from_secs(1684574678)), Some((2023, 5, 20, 9, 24, 38, 0)));
assert_eq!(datetime_to_systemtime((2023, 5, 20, 9, 24, 38, 0)), UNIX_EPOCH.checked_add(Duration::from_secs(1684574678)));Features
The crate works in no_std environments and has no allocations. Most of the
functions also work in constant contexts.
- std(default): Include- SystemTimeconversions
Background
There are many date and time libraries for Rust for varying use cases as the standard library doesn’t include any utilities for dealing with dates. Most of these libraries contain their own copies of date algorithms, most prominently the conversion from days since an epoch to a Gregorian calendar date (year, month, day). These algorithms have been sourced from various places with various licenses, often translated either by machine or by hand from C algorithms found in different libc variants. The algorithms are usually somewhat optimized for performance, but fall short of fastest algorithms available.
Notes
The library does not expose any kind of Date or DateTime structures, but
simply tuples for the necessary values. Bounds checking is done via
debug_assert only, which means the methods are guaranteed to not panic in
release builds. Callers are required to do their own bounds checking.
Datatypes are selected as the smallest that will fit the value.
Currently the library implements algorithms for the Proleptic Gregorian Calendar which is our current calendar extended backwards indefinitely. The Gregorian calendar defines the average year to be 365.2425 days long by defining every fourth year to be a leap year, unless the year is divisible by 100 and not by 400.
The algorithms do not account for leap seconds, as is customary for Unix time. Every day is exactly 86400 seconds in length, and the calculated times do not adjust for leap seconds between timestamps.
We define Rata Die to be integral
day numbers counted from 1st of January, 1970, which is the Unix epoch. We
use the abbreviation rd to concisely refer to such values. This differs
from the epoch originally chosen by Howard Jacobson, but is more convenient
for usage.
The Rata Die values are represented as i32 for performance reasons. The
needed calculations reduce that to roughly an effective i30 integer range,
which means a usable range of roughly -1,460,000 to 1,460,000 years.
Benchmarks
Results on GitHub Codespaces 8-core VM:
| Function | datealgo | hinnant | httpdate | humantime | time | chrono | 
|---|---|---|---|---|---|---|
| date_to_rd | 2.3 ns | 4 ns | 3.2 ns | 3.2 ns | 17.7 ns | 7.2 ns | 
| rd_to_date | 3.6 ns | 9.3 ns | 11.3 ns | 11.3 ns | 18.8 ns | 8.2 ns | 
| datetime_to_systemtime | 8.6 ns | 9.9 ns | 9.8 ns | 57.3 ns | 50.1 ns | |
| systemtime_to_datetime | 14.2 ns | 18.9 ns | 19 ns | 54.6 ns | 226.4 ns | 
Some code has been adapted from the libraries to produce comparable benchmarks.
Acknowledgements
I do not claim original research on anything that is in this crate.
- Cassio Neri and Lorenz Schneider: While searching for best method for date conversion, I stumbled upon a research paper which explains a novel way to optimize the performance. These algorithms have been implemented here based on the published article. This wouldn’t be the best performing date conversion library without their work.
- Howard Hinnant: While searching for “perpetual calendar” algorithms, and having already started my library, I stumbled upon a very similar idea by Howard Hinnant. It remains one of the cleanest and simplest algorithms while still retaining excellent performance.
- Rich
Felker:
The original musl __time_to_tmfunction has spread far and wide and been translated to many languages, and is still the basis of many of the standalone implementations littered among the libraries.
- Many authors of newlib
gmtime_r.c: The newlib implementation has evolved significantly over time and has now been updated based on the work by Howard Hinnant.
Modules
- Convenience constants, mostly for input validation
Constants
- Maximum Rata Die for conversion
- Minimum Rata Die for conversion
- Maximum Rata die in seconds for conversion
- Minimum Rata Die in seconds for conversion
- Maximum supported year for conversion
- Minimum supported year for conversion
Functions
- Convert Gregorian date to ISO week date
- Convert Gregorian date to Rata Die
- Convert Gregorian date to day of week
- Convert year, month, day, hours, minutes and seconds to total seconds
- Convert year, month, day, hours, minutes, seconds and nanoseconds tostd::time::SystemTime
- Determine the number of days in the given month in the given year
- Combine days, hours, minutes and seconds to total seconds
- Determine if the given year is a leap year
- Convert ISO week date to Gregorian date
- Convert ISO week date to Rata Die
- Determine the number of ISO weeks in the given year
- Calculate next Gregorian date given a Gregorian date
- Calculate previous Gregorian date given a Gregorian date
- Convert Rata Die to Gregorian date
- Convert Rata Die to ISO week date
- Convert Rata Die to day of week
- Convert total seconds to year, month, day, hours, minutes and seconds
- Split total seconds to days, hours, minutes and seconds
- Convert seconds and nanoseconds tostd::time::SystemTime
- Convertstd::time::SystemTimeto year, month, day, hours, minutes, seconds and nanoseconds
- Convertstd::time::SystemTimeto seconds and nanoseconds