Low-level date algorithms for libraries
Warning This is a very preliminary release as I test the releasing process. A proper release will follow soon.
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.
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:
```rust use datealgo::{rdtodate, datetord};
asserteq!(datetord((1970, 1, 1)), 0); asserteq!(datetord((2023, 5, 12)), 19489); asserteq!(rdto_date(19489), (2023, 5, 12)); ```
For convenience, there is also converters to and from Unix timestamps:
```rust use datealgo::{secstodatetime, datetimetosecs};
asserteq!(datetimetosecs((1970, 1, 1, 0, 0, 0)), 0); asserteq!(datetimetosecs((2023, 5, 20, 9, 24, 38)), 1684574678); asserteq!(secsto_datetime(1684574678), (2023, 5, 20, 9, 24, 38)); ```
If the std
feature is enabled, there are also converters to and from
SystemTime
:
```rust use datealgo::{systemtimetodatetime, datetimetosystemtime}; use std::time::{Duration, UNIX_EPOCH};
asserteq!(systemtimetodatetime(UNIXEPOCH), Some((1970, 1, 1, 0, 0, 0, 0))); asserteq!(systemtimetodatetime(UNIXEPOCH + Duration::fromsecs(1684574678)), Some((2023, 5, 20, 9, 24, 38, 0))); asserteq!(datetimetosystemtime((2023, 5, 20, 9, 24, 38, 0)), UNIXEPOCH + Duration::fromsecs(1684574678)); ```
The crate works in no_std
environments and has no allocations. Most of the
functions also work in constant contexts.
std
(default): Include [std::time::SystemTime] conversionThere 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.
The library does not expose any kind of Date
or DateTime
structures, but
simply tuples for the necessary values. There is bounds checking via
debug_assert
, which means that it is not present in release builds.
Callers are required to do their own bounds checking where ever input
require it. Datatypes are selected for performance and utility, rather than
what is most natural for 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 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, 1979, 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.
Results on GitHub Codespaces default VM:
| x | datealgo | hinnant | httpdate | humantime | time | chrono | | ---------------------- | ------------- | --------- | --------- | --------- | --------- | --------- | | rdtodate | 5.0 ns | 9.6 ns | 12.4 ns | 12.3 ns | 23.6 ns | 10.1 ns | | datetord | 3.1 ns | 3.9 ns | 4.2 ns | 3.8 ns | 18.5 ns | 8.6 ns | | systemtimetodatetime | 17.2 ns | | 27.0 ns | 26.8 ns | 51.1 ns | 216.8 ns | | datetimetosystemtime | 6.2 ns | | 10.9 ns | 10.1 ns | 46.1 ns | 47.5 ns |
Some code has been adapted from the libraries to produce comparable benchmarks.
Current version: 0.0.1
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.