Fast and precise systemd time span parser of rust strings to a Duration

fundu-systemd Docs | Changelog


GitHub branch checks state Crates.io docs.rs MSRV

Table of Contents

Overview

This crate provides a simple to use and fast parser based on fundu aiming for full compatibility with the systemd time span format as specified in their documentation.

fundu-systemd can parse rust strings like

| &str | Duration | | -- | -- | | "2 h" | Duration::positive(2 * 60 * 60, 0) | | "2hours" |Duration::positive(2 * 60 * 60, 0) | | "second" |Duration::positive(1, 0) | | "48hr" |Duration::positive(48 * 60 * 60, 0) | | "12.3 seconds" |Duration::positive(12, 300_000_000) | | "1y 12month" | Duration::positive(63_115_200, 0) | | "999us +1d" |Duration::positive(86_400, 999_000) | | "55s500ms" | Duration::positive(55, 500_000_000) | | "300ms20s 5day" |Duration::positive(20 + 5 * 60 * 60 * 24, 300_000_000) | | "123456789" |Duration::positive(123_456_789, 0) (Default: Second) | | "100" |Duration::positive(0, 100_000) (when default is set to MicroSecond) | | "infinity" | variable: the maximum duration which is currently in use (see below) |

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.

Audience

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 systemd. See the main fundu project, if you want to use a parser tailored to your needs.

Installation

Add this to Cargo.toml

toml [dependencies] fundu-systemd = "0.1.0"

or install with cargo add fundu-systemd.

Activating the chrono or time feature provides a TryFrom 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

Description of the Format

Supported time units:

Summary of the rest of the format:

Please see also the systemd documentation for a description of their format.

Benchmarks

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-systemd benchmarks with

shell cargo bench --package fundu-systemd

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 | 55.572 ns 123456789.123456789 | 88.750 ns format!("{}.{}", "1".repeat(1022), "1".repeat(1022)) | 475.07 ns s | 83.724 ns minutes | 133.26 ns 1ns 1us | 200.59 ns 1ns 1us 1ms 1s | 379.75 ns 1ns 1us 1ns 1us | 391.54 ns "1ns 1us".repeat(100) | 18.644 µs

License

MIT license (LICENSE or http://opensource.org/licenses/MIT)