uhlc-rs

build crate API

A Unique Hybrid Logical Clock for Rust.

This library is an implementation of an Hybrid Logical Clock (HLC) associated to a unique identifier. Thus, it is able to generate timestamps that are unique across a distributed system, without the need of a centralized time source.

Usage

Add this to your Cargo.toml:

toml [dependencies] uhlc = "0.6"

Then in your code: ```rust use uhlc::*;

// create an HLC with a random u128 and relying on SystemTime::now() let hlc = HLC::default();

// generate a timestamp let ts = hlc.new_timestamp();

// update the HLC with a timestamp incoming from another HLC if ! hlc.updatewithtimestamp(&otherts).isok() { println!(r#"The incoming timestamp would make this HLC to drift too much. You should refuse it!"#); } ```

What is an HLC ?

A Hybrid Logical Clock combines a Physical Clock with a Logical Clock. It generates monotonic timestamps that are close to the physical time, but with a counter part in the last bits that allow to preserve the "happen before" relationship.

You can find more detailled explanations in: - This blog: http://sergeiturukin.com/2017/06/26/hybrid-logical-clocks.html - The original paper: https://cse.buffalo.edu/tech-reports/2014-04.pdf

Why "Unique" ?

In this implementation, each HLC instance is associated with an identifier that must be unique accross the system (by default a random u128). Each generated timestamp, in addition of the hybrid time, contains the identifier of the HLC that generated it, and it therefore unique across the system.

Such property allows the ordering all timestamped events in a distributed system, without the need of a centralized time source or decision.

Note that this ordering preserve the "happen before" relationship only when events can be correlated. I.e.:

Implementation details

The uhlc::HLC::default() operation generate a random u128 as identifier and uses std::time::SystemTime::now() as physical clock.
But using the uhlc::HLCBuilder allows you to configure the HLC differently. Example:
```Rust let customhlc = HLCBuilder::new() .withid(ID::tryfrom([0x01, 0x02, 0x03]).unwrap()) // use a custom identifier .withclock(mycustomgpsclock) // use a custom physical clock (e.g. using GPS as time source) .withmaxdelta(Duration::fromsecs(1)) // use a custom maximum delta (see explanations below) .build();

```

A uhlc::HLC::NTP64 time is 64-bits unsigned integer as specified in RFC-5909. The first 32-bits part is the number of second since the EPOCH of the physical clock, and the second 32-bits part is the fraction of second. In case its generated by an HLC, the last few bits of the second part are replaced by the HLC logical counter. The size of this counter currently hard-coded to 4 bits in uhlc::CSIZE.

To avoid a "too fast clock" to make an HLC drift too much in the future, the uhlc::HLC::update_with_timestamp(timestamp) operation will return an error if the incoming timestamp exceeds the current physical time more than a delta (500ms by default, configurable declaring the UHLC_MAX_DELTA_MS environment variable). In such case, it could be wise to refuse or drop the incoming event, since it might not be correctly ordered with further events.

Cargo features

This crate provides the following Cargo features:

Only the std feature is enabled by default.

Usage in no_std environments

In order to use this crate in a no_std environment, the default-features = false flag should be added in the dependencies section of the Cargo.toml file. The main differences with respect to the std implementation include:

Usages

uhlc is currently used in Eclipse zenoh.