7 unstable releases (3 breaking)

0.4.0 Nov 1, 2024
0.3.0 Jun 25, 2024
0.2.5 Jul 11, 2024
0.2.2 Mar 28, 2024
0.1.0 Jun 26, 2023

#2 in #discriminator

Download history 36475/week @ 2024-07-29 56357/week @ 2024-08-05 39325/week @ 2024-08-12 36002/week @ 2024-08-19 38359/week @ 2024-08-26 35479/week @ 2024-09-02 31996/week @ 2024-09-09 19940/week @ 2024-09-16 29755/week @ 2024-09-23 32226/week @ 2024-09-30 34101/week @ 2024-10-07 41098/week @ 2024-10-14 40493/week @ 2024-10-21 49839/week @ 2024-10-28 48088/week @ 2024-11-04 42636/week @ 2024-11-11

182,988 downloads per month
Used in 522 crates (10 directly)

Apache-2.0

12KB
193 lines

SPL Discriminator

This library allows for easy management of 8-byte discriminators.

The ArrayDiscriminator Struct

With this crate, you can leverage the ArrayDiscriminator type to manage an 8-byte discriminator for generic purposes.

let my_discriminator = ArrayDiscriminator::new([8, 5, 1, 56, 10, 53, 9, 198]);

The new(..) function is also a constant function, so you can use ArrayDiscriminator in constants as well.

const MY_DISCRIMINATOR: ArrayDiscriminator = ArrayDiscriminator::new([8, 5, 1, 56, 10, 53, 9, 198]);

The ArrayDiscriminator struct also offers another constant function as_slice(&self), so you can use as_slice() in constants as well.

const MY_DISCRIMINATOR_SLICE: &[u8] = MY_DISCRIMINATOR.as_slice();

The SplDiscriminate Trait

A trait, SplDiscriminate is also available, which will give you the ArrayDiscriminator constant type and also a slice representation of the discriminator. This can be particularly handy with match statements.

/// A trait for managing 8-byte discriminators in a slab of bytes
pub trait SplDiscriminate {
    /// The 8-byte discriminator as a `[u8; 8]`
    const SPL_DISCRIMINATOR: ArrayDiscriminator;
    /// The 8-byte discriminator as a slice (`&[u8]`)
    const SPL_DISCRIMINATOR_SLICE: &'static [u8] = Self::SPL_DISCRIMINATOR.as_slice();
}

The SplDiscriminate Derive Macro

The SplDiscriminate derive macro is a particularly useful tool for those who wish to derive their 8-byte discriminator from a particular string literal. Typically, you would have to run a hash function against the string literal, then copy the first 8 bytes, and then hard-code those bytes into a statement like the one above.

Instead, you can simply annotate a struct or enum with SplDiscriminate and provide a hash input via the discriminator_hash_input attribute, and the macro will automatically derive the 8-byte discriminator for you!

#[derive(SplDiscriminate)] // Implements `SplDiscriminate` for your struct/enum using your declared string literal hash_input
#[discriminator_hash_input("some_discriminator_hash_input")]
pub struct MyInstruction1 {
    arg1: String,
    arg2: u8,
}

let my_discriminator: ArrayDiscriminator = MyInstruction1::SPL_DISCRIMINATOR;
let my_discriminator_slice: &[u8] = MyInstruction1::SPL_DISCRIMINATOR_SLICE;

Note: the 8-byte discriminator derived using the macro is always the first 8 bytes of the resulting hashed bytes.

Dependencies

~1–7MB
~41K SLoC