This crate provides a simple to use and fast parser based on fundu aiming for full compatibility with gnu relative items in date strings format as specified in their [documentation].
fundu-gnu
can parse rust strings with RelativeTimeParser::parse
or the global parse
method:
| &str
| Duration |
| -- | -- |
| "1hour"
| Duration::positive(60 * 60, 0)
|
| "minute"
| Duration::positive(60, 0)
|
| "2 hours"
| Duration::positive(2 * 60 * 60, 0)
|
| "1year 12months"
| Duration::positive(63_115_200, 0)
|
| "-3minutes"
| Duration::negative(3 * 60, 0)
|
| "3 mins ago"
| Duration::negative(3 * 60, 0)
|
| "999sec +1day"
| Duration::positive(86_400 + 999, 0)
|
| "55secs500week"
| Duration::positive(55 + 500 * 604_800, 0)
|
| "123456789"
| Duration::positive(123_456_789, 0)
|
| "42fortnight"
| Duration::positive(42 * 2 * 604_800, 0)
|
| "yesterday"
| Duration::negative(24 * 60 * 60, 0)
|
| "now"
| Duration::positive(0, 0)
|
| "today -10seconds"
| Duration::negative(10, 0)
|
| "1000000000000000000000000000000000000years"
| Duration::MAX
|
Note that fundu
parses into its own Duration
which is a superset of other Durations
like
[std::time::Duration
], [chrono::Duration
] and [time::Duration
]. See the
documentation how to easily handle
the conversion between these durations. For a full description of this crate and examples see the
docs!
This crate is for you if you
This crate might not be for you if you want to customize the parser to a format which would not be
compatible with gnu
. See the main fundu project, if you want to use a parser
tailored to your needs.
Add this to Cargo.toml
toml
[dependencies]
fundu-gnu = "0.1.0"
or install with cargo add fundu-gnu
.
Activating the chrono
or time
feature provides a TryFrom
and SaturatingInto
implementation
for [chrono::Duration
] or [time::Duration
]. Converting from/to [std::time::Duration
] does not
require an additional feature. Activating the serde
feature allows some structs and enums to be
serialized or deserialized with serde
Supported time units:
seconds
, second
, secs
, sec
minutes
, minute
, mins
, min
hours
, hour
days
, day
weeks
, week
fortnights
, fortnight
(2 weeks)months
, month
(defined as 30.44
days or a 1/12
year)years
, year
(defined as 365.25
days)The special keywords yesterday
worth -1 day
, tomorrow
worth +1 day
, today
and now
each
worth a zero duration are allowed, too. These keywords count as a full duration and don't accept a
number, time unit or the ago
time unit suffix.
Summary of the rest of the format:
"123 days"
without fraction (like in "1.2 days"
) and without exponent (like
"3e9 days"
) are allowed"1sec 2min"
or "1week2secs"
in the source string accumulate"second"
) are allowed and a value of 1
is assumed.Duration::MAX
) has u64::MAX
seconds
(18_446_744_073_709_551_615
) and 999_999_999
nano seconds"100000000000000years"
) saturate at
the maximum duration"-1min"
or "1 week ago"
are allowed"1
\n sec"
) and multiple durations (like in "1week \n 2minutes"
) is ignored and follows the posix
definition of whitespace which is:
' '
)'\x09'
)'\x0A'
)'\x0B'
)'\x0C'
)'\x0D'
)Please see also the gnu [documentation] for a description of their format.
To run the benchmarks on your machine, clone the repository
shell
git clone https://github.com/Joining7943/fundu.git
cd fundu
and then run the fundu-gnu
benchmarks with
shell
cargo bench --package fundu-gnu
The above won't run the flamegraph
and iai-callgrind
benchmarks.
The iai-callgrind
(feature = with-iai
) and flamegraph
(feature = with-flamegraph
) benchmarks
can only be run on unix. Use the --features
option of cargo to run the benchmarks with these
features.
To get a rough idea about the parsing times, here the average parsing speed of some inputs (Quad core 3000Mhz, 8GB DDR3, Linux):
Input | avg parsing time
--- | ---:|
1
| 67.685 ns
123456789
| 72.265 ns
"1".repeat(1022)
| 266.01 ns
1sec
| 102.45 ns
1minutes
| 158.92 ns
1sec 1min
| 235.11 ns
1sec 1min 1sec 1min
| 476.53 ns
1sec 1min 1hour 1day
| 527.04 ns
"1sec 1min".repeat(100)
| 22.895 µs
this second
, next week
etc. (See issue
#23)fundu
uses static years and
month definitions like 1year = 365.25 days
MIT license (LICENSE or http://opensource.org/licenses/MIT)