nybbles/nibbles.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945
use core::{borrow::Borrow, fmt, mem::MaybeUninit, ops::Index, slice};
use smallvec::SmallVec;
#[cfg(not(feature = "nightly"))]
#[allow(unused_imports)]
use core::convert::{identity as likely, identity as unlikely};
#[cfg(feature = "nightly")]
#[allow(unused_imports)]
use core::intrinsics::{likely, unlikely};
#[cfg(not(feature = "std"))]
use alloc::vec::Vec;
type Repr = SmallVec<[u8; 64]>;
/// Structure representing a sequence of nibbles.
///
/// A nibble is a 4-bit value, and this structure is used to store the nibble sequence representing
/// the keys in a Merkle Patricia Trie (MPT).
/// Using nibbles simplifies trie operations and enables consistent key representation in the MPT.
///
/// # Internal representation
///
/// The internal representation is currently a [`SmallVec`] that stores one nibble per byte. Nibbles
/// are stored inline (on the stack) up to a length of 64 nibbles, or 32 unpacked bytes. This means
/// that each byte has its upper 4 bits set to zero and the lower 4 bits representing the nibble
/// value.
///
/// This is enforced in the public API, but it is possible to create invalid [`Nibbles`] instances
/// using methods suffixed with `_unchecked`. These methods are not marked as `unsafe` as they
/// are not memory-unsafe, but creating invalid values will cause unexpected behavior in other
/// methods, and users should exercise caution when using them.
///
/// # Examples
///
/// ```
/// use nybbles::Nibbles;
///
/// let bytes = [0xAB, 0xCD];
/// let nibbles = Nibbles::unpack(&bytes);
/// assert_eq!(nibbles, Nibbles::from_nibbles(&[0x0A, 0x0B, 0x0C, 0x0D]));
/// assert_eq!(nibbles[..], [0x0A, 0x0B, 0x0C, 0x0D]);
///
/// let packed = nibbles.pack();
/// assert_eq!(&packed[..], &bytes[..]);
/// ```
#[derive(Default, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(feature = "arbitrary", derive(arbitrary::Arbitrary))]
pub struct Nibbles(Repr);
impl core::ops::Deref for Nibbles {
type Target = [u8];
#[inline]
fn deref(&self) -> &Self::Target {
self.as_slice()
}
}
// Override `SmallVec::from` in the default `Clone` implementation since it's not specialized for
// `Copy` types.
impl Clone for Nibbles {
#[inline]
fn clone(&self) -> Self {
Self(SmallVec::from_slice(&self.0))
}
#[inline]
fn clone_from(&mut self, source: &Self) {
self.0.clone_from(&source.0);
}
}
impl fmt::Debug for Nibbles {
#[inline]
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "Nibbles(0x{})", const_hex::encode(self.as_slice()))
}
}
impl From<Nibbles> for Vec<u8> {
#[inline]
fn from(value: Nibbles) -> Self {
value.0.into_vec()
}
}
impl PartialEq<[u8]> for Nibbles {
#[inline]
fn eq(&self, other: &[u8]) -> bool {
self.as_slice() == other
}
}
impl PartialEq<Nibbles> for [u8] {
#[inline]
fn eq(&self, other: &Nibbles) -> bool {
self == other.as_slice()
}
}
impl PartialOrd<[u8]> for Nibbles {
#[inline]
fn partial_cmp(&self, other: &[u8]) -> Option<core::cmp::Ordering> {
self.as_slice().partial_cmp(other)
}
}
impl PartialOrd<Nibbles> for [u8] {
#[inline]
fn partial_cmp(&self, other: &Nibbles) -> Option<core::cmp::Ordering> {
self.partial_cmp(other.as_slice())
}
}
impl Borrow<[u8]> for Nibbles {
#[inline]
fn borrow(&self) -> &[u8] {
self.as_slice()
}
}
impl<Idx> core::ops::Index<Idx> for Nibbles
where
Repr: core::ops::Index<Idx>,
{
type Output = <Repr as core::ops::Index<Idx>>::Output;
#[inline]
fn index(&self, index: Idx) -> &Self::Output {
self.0.index(index)
}
}
#[cfg(feature = "rlp")]
impl alloy_rlp::Encodable for Nibbles {
#[inline]
fn length(&self) -> usize {
alloy_rlp::Encodable::length(self.as_slice())
}
#[inline]
fn encode(&self, out: &mut dyn alloy_rlp::BufMut) {
alloy_rlp::Encodable::encode(self.as_slice(), out)
}
}
#[cfg(feature = "arbitrary")]
impl proptest::arbitrary::Arbitrary for Nibbles {
type Parameters = proptest::collection::SizeRange;
type Strategy = proptest::strategy::Map<
proptest::collection::VecStrategy<core::ops::RangeInclusive<u8>>,
fn(Vec<u8>) -> Self,
>;
#[inline]
fn arbitrary_with(size: proptest::collection::SizeRange) -> Self::Strategy {
use proptest::prelude::*;
proptest::collection::vec(0x0..=0xf, size).prop_map(Self::from_nibbles_unchecked)
}
}
impl Nibbles {
/// Creates a new empty [`Nibbles`] instance.
///
/// # Examples
///
/// ```
/// # use nybbles::Nibbles;
/// let nibbles = Nibbles::new();
/// assert_eq!(nibbles.len(), 0);
/// ```
#[inline]
pub const fn new() -> Self {
Self(SmallVec::new_const())
}
/// Creates a new [`Nibbles`] instance with the given capacity.
///
/// # Examples
///
/// ```
/// # use nybbles::Nibbles;
/// let nibbles = Nibbles::with_capacity(10);
/// assert_eq!(nibbles.len(), 0);
/// ```
#[inline]
pub fn with_capacity(capacity: usize) -> Self {
Self(SmallVec::with_capacity(capacity))
}
/// Creates a new [`Nibbles`] instance with the given nibbles.
#[inline]
pub fn from_repr(nibbles: Repr) -> Self {
check_nibbles(&nibbles);
Self::from_repr_unchecked(nibbles)
}
/// Creates a new [`Nibbles`] instance with the given nibbles.
///
/// This will not unpack the bytes into nibbles, and will instead store the bytes as-is.
///
/// Note that it is possible to create a [`Nibbles`] instance with invalid nibble values (i.e.
/// values greater than 0xf) using this method. See [the type docs](Self) for more details.
///
/// # Panics
///
/// Panics if the any of the bytes is not a valid nibble (`0..=0x0f`).
#[inline]
pub const fn from_repr_unchecked(small_vec: Repr) -> Self {
Self(small_vec)
}
/// Creates a new [`Nibbles`] instance by copying the given bytes.
///
/// # Panics
///
/// Panics if the any of the bytes is not a valid nibble (`0..=0x0f`).
///
/// # Examples
///
/// ```
/// # use nybbles::Nibbles;
/// let nibbles = Nibbles::from_nibbles(&[0x0A, 0x0B, 0x0C, 0x0D]);
/// assert_eq!(nibbles[..], [0x0A, 0x0B, 0x0C, 0x0D]);
/// ```
///
/// Invalid values will cause panics:
///
/// ```should_panic
/// # use nybbles::Nibbles;
/// let nibbles = Nibbles::from_nibbles(&[0xFF]);
/// ```
#[inline]
#[track_caller]
pub fn from_nibbles<T: AsRef<[u8]>>(nibbles: T) -> Self {
let nibbles = nibbles.as_ref();
check_nibbles(nibbles);
Self::from_nibbles_unchecked(nibbles)
}
/// Creates a new [`Nibbles`] instance by copying the given bytes, without checking their
/// validity.
///
/// This will not unpack the bytes into nibbles, and will instead store the bytes as-is.
///
/// Note that it is possible to create a [`Nibbles`] instance with invalid nibble values (i.e.
/// values greater than 0xf) using this method. See [the type docs](Self) for more details.
///
/// # Examples
///
/// ```
/// # use nybbles::Nibbles;
/// let nibbles = Nibbles::from_nibbles_unchecked(&[0x0A, 0x0B, 0x0C, 0x0D]);
/// assert_eq!(nibbles[..], [0x0A, 0x0B, 0x0C, 0x0D]);
///
/// // Invalid value!
/// let nibbles = Nibbles::from_nibbles_unchecked(&[0xFF]);
/// assert_eq!(nibbles[..], [0xFF]);
/// ```
#[inline]
pub fn from_nibbles_unchecked<T: AsRef<[u8]>>(nibbles: T) -> Self {
Self(SmallVec::from_slice(nibbles.as_ref()))
}
/// Creates a new [`Nibbles`] instance from a byte vector, without checking its validity.
///
/// This will not unpack the bytes into nibbles, and will instead store the bytes as-is.
///
/// Note that it is possible to create a [`Nibbles`] instance with invalid nibble values (i.e.
/// values greater than 0xf) using this method. See [the type docs](Self) for more details.
///
/// # Examples
///
/// ```
/// # use nybbles::Nibbles;
/// let nibbles = Nibbles::from_vec_unchecked(vec![0x0A, 0x0B, 0x0C, 0x0D]);
/// assert_eq!(nibbles[..], [0x0A, 0x0B, 0x0C, 0x0D]);
/// ```
///
/// Invalid values will cause panics:
///
/// ```should_panic
/// # use nybbles::Nibbles;
/// let nibbles = Nibbles::from_vec(vec![0xFF]);
/// ```
#[inline]
#[track_caller]
pub fn from_vec(vec: Vec<u8>) -> Self {
check_nibbles(&vec);
Self::from_vec_unchecked(vec)
}
/// Creates a new [`Nibbles`] instance from a byte vector, without checking its validity.
///
/// Note that it is possible to create a [`Nibbles`] instance with invalid nibble values (i.e.
/// values greater than 0xf) using this method. See [the type docs](Self) for more details.
///
/// # Examples
///
/// ```
/// # use nybbles::Nibbles;
/// let nibbles = Nibbles::from_vec_unchecked(vec![0x0A, 0x0B, 0x0C, 0x0D]);
/// assert_eq!(nibbles[..], [0x0A, 0x0B, 0x0C, 0x0D]);
///
/// // Invalid value!
/// let nibbles = Nibbles::from_vec_unchecked(vec![0xFF]);
/// assert_eq!(nibbles[..], [0xFF]);
/// ```
#[inline]
pub fn from_vec_unchecked(vec: Vec<u8>) -> Self {
Self(SmallVec::from_vec(vec))
}
/// Converts a byte slice into a [`Nibbles`] instance containing the nibbles (half-bytes or 4
/// bits) that make up the input byte data.
///
/// # Panics
///
/// Panics if the length of the input is greater than `usize::MAX / 2`.
///
/// # Examples
///
/// ```
/// # use nybbles::Nibbles;
/// let nibbles = Nibbles::unpack(&[0xAB, 0xCD]);
/// assert_eq!(nibbles[..], [0x0A, 0x0B, 0x0C, 0x0D]);
/// ```
#[inline]
pub fn unpack<T: AsRef<[u8]>>(data: T) -> Self {
Self::unpack_(data.as_ref())
}
#[inline]
fn unpack_(data: &[u8]) -> Self {
let unpacked_len =
data.len().checked_mul(2).expect("trying to unpack usize::MAX / 2 bytes");
Self(unsafe { smallvec_with(unpacked_len, |out| Self::unpack_to_unchecked(data, out)) })
}
/// Unpacks into the given slice rather than allocating a new [`Nibbles`] instance.
#[inline]
pub fn unpack_to(data: &[u8], out: &mut [u8]) {
assert!(out.len() >= data.len() * 2);
// SAFETY: asserted length.
unsafe {
let out = slice::from_raw_parts_mut(out.as_mut_ptr().cast(), out.len());
Self::unpack_to_unchecked(data, out)
}
}
/// Unpacks into the given slice rather than allocating a new [`Nibbles`] instance.
///
/// # Safety
///
/// `out` must be valid for at least `data.len() * 2` bytes.
#[inline]
pub unsafe fn unpack_to_unchecked(data: &[u8], out: &mut [MaybeUninit<u8>]) {
debug_assert!(out.len() >= data.len() * 2);
let ptr = out.as_mut_ptr().cast::<u8>();
for (i, &byte) in data.iter().enumerate() {
ptr.add(i * 2).write(byte >> 4);
ptr.add(i * 2 + 1).write(byte & 0x0f);
}
}
/// Packs the nibbles into the given slice.
///
/// This method combines each pair of consecutive nibbles into a single byte,
/// effectively reducing the size of the data by a factor of two.
/// If the number of nibbles is odd, the last nibble is shifted left by 4 bits and
/// added to the packed byte vector.
///
/// # Examples
///
/// ```
/// # use nybbles::Nibbles;
/// let nibbles = Nibbles::from_nibbles(&[0x0A, 0x0B, 0x0C, 0x0D]);
/// assert_eq!(nibbles.pack()[..], [0xAB, 0xCD]);
/// ```
#[inline]
pub fn pack(&self) -> SmallVec<[u8; 32]> {
let packed_len = (self.len() + 1) / 2;
unsafe { smallvec_with(packed_len, |out| self.pack_to_unchecked2(out)) }
}
/// Packs the nibbles into the given slice.
///
/// See [`pack`](Self::pack) for more information.
///
/// # Panics
///
/// Panics if the slice is not at least `(self.len() + 1) / 2` bytes long.
///
/// # Examples
///
/// ```
/// # use nybbles::Nibbles;
/// let nibbles = Nibbles::from_nibbles(&[0x0A, 0x0B, 0x0C, 0x0D]);
/// let mut packed = [0; 2];
/// nibbles.pack_to(&mut packed);
/// assert_eq!(packed[..], [0xAB, 0xCD]);
/// ```
#[inline]
#[track_caller]
pub fn pack_to(&self, out: &mut [u8]) {
pack_to(self, out);
}
/// Packs the nibbles into the given pointer.
///
/// See [`pack`](Self::pack) for more information.
///
/// # Safety
///
/// `ptr` must be valid for at least `(self.len() + 1) / 2` bytes.
///
/// # Examples
///
/// ```
/// # use nybbles::Nibbles;
/// let nibbles = Nibbles::from_nibbles(&[0x0A, 0x0B, 0x0C, 0x0D]);
/// let mut packed = [0; 2];
/// // SAFETY: enough capacity.
/// unsafe { nibbles.pack_to_unchecked(packed.as_mut_ptr()) };
/// assert_eq!(packed[..], [0xAB, 0xCD]);
/// ```
#[inline]
#[deprecated = "prefer using `pack_to` or `pack_to_unchecked2` instead"]
pub unsafe fn pack_to_unchecked(&self, ptr: *mut u8) {
self.pack_to_unchecked2(slice::from_raw_parts_mut(ptr.cast(), (self.len() + 1) / 2));
}
/// Packs the nibbles into the given slice without checking its length.
///
/// # Safety
///
/// `out` must be valid for at least `(self.len() + 1) / 2` bytes.
#[inline]
pub unsafe fn pack_to_unchecked2(&self, out: &mut [MaybeUninit<u8>]) {
pack_to_unchecked(self, out);
}
/// Gets the byte at the given index by combining two consecutive nibbles.
///
/// # Examples
///
/// ```
/// # use nybbles::Nibbles;
/// let nibbles = Nibbles::from_nibbles(&[0x0A, 0x0B, 0x0C, 0x0D]);
/// assert_eq!(nibbles.get_byte(0), Some(0xAB));
/// assert_eq!(nibbles.get_byte(1), Some(0xBC));
/// assert_eq!(nibbles.get_byte(2), Some(0xCD));
/// assert_eq!(nibbles.get_byte(3), None);
/// ```
#[inline]
pub fn get_byte(&self, i: usize) -> Option<u8> {
get_byte(self, i)
}
/// Gets the byte at the given index by combining two consecutive nibbles.
///
/// # Safety
///
/// `i..i + 1` must be in range.
///
/// # Examples
///
/// ```
/// # use nybbles::Nibbles;
/// let nibbles = Nibbles::from_nibbles(&[0x0A, 0x0B, 0x0C, 0x0D]);
/// // SAFETY: in range.
/// unsafe {
/// assert_eq!(nibbles.get_byte_unchecked(0), 0xAB);
/// assert_eq!(nibbles.get_byte_unchecked(1), 0xBC);
/// assert_eq!(nibbles.get_byte_unchecked(2), 0xCD);
/// }
/// ```
#[inline]
pub unsafe fn get_byte_unchecked(&self, i: usize) -> u8 {
get_byte_unchecked(self, i)
}
/// Increments the nibble sequence by one.
#[inline]
pub fn increment(&self) -> Option<Self> {
let mut incremented = self.clone();
for nibble in incremented.0.iter_mut().rev() {
debug_assert!(*nibble <= 0xf);
if *nibble < 0xf {
*nibble += 1;
return Some(incremented);
} else {
*nibble = 0;
}
}
None
}
/// The last element of the hex vector is used to determine whether the nibble sequence
/// represents a leaf or an extension node. If the last element is 0x10 (16), then it's a leaf.
#[inline]
pub fn is_leaf(&self) -> bool {
self.last() == Some(16)
}
/// Returns `true` if this nibble sequence starts with the given prefix.
#[inline]
pub fn has_prefix(&self, other: &[u8]) -> bool {
self.starts_with(other)
}
/// Returns the nibble at the given index.
///
/// # Panics
///
/// Panics if the index is out of bounds.
#[inline]
#[track_caller]
pub fn at(&self, i: usize) -> usize {
self[i] as usize
}
/// Sets the nibble at the given index.
///
/// # Panics
///
/// Panics if the index is out of bounds, or if `value` is not a valid nibble (`0..=0x0f`).
#[inline]
#[track_caller]
pub fn set_at(&mut self, i: usize, value: u8) {
assert!(value <= 0xf);
self.set_at_unchecked(i, value);
}
/// Sets the nibble at the given index, without checking its validity.
///
/// # Panics
///
/// Panics if the index is out of bounds.
#[inline]
#[track_caller]
pub fn set_at_unchecked(&mut self, i: usize, value: u8) {
self.0[i] = value;
}
/// Returns the first nibble of this nibble sequence.
#[inline]
pub fn first(&self) -> Option<u8> {
self.0.first().copied()
}
/// Returns the last nibble of this nibble sequence.
#[inline]
pub fn last(&self) -> Option<u8> {
self.0.last().copied()
}
/// Returns the length of the common prefix between this nibble sequence and the given.
///
/// # Examples
///
/// ```
/// # use nybbles::Nibbles;
/// let a = Nibbles::from_nibbles(&[0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F]);
/// let b = &[0x0A, 0x0B, 0x0C, 0x0E];
/// assert_eq!(a.common_prefix_length(b), 3);
/// ```
#[inline]
pub fn common_prefix_length(&self, other: &[u8]) -> usize {
common_prefix_length(self, other)
}
/// Returns a reference to the underlying byte slice.
#[inline]
pub fn as_slice(&self) -> &[u8] {
&self.0
}
/// Returns a mutable reference to the underlying byte slice.
///
/// Note that it is possible to create invalid [`Nibbles`] instances using this method. See
/// [the type docs](Self) for more details.
#[inline]
pub fn as_mut_slice_unchecked(&mut self) -> &mut [u8] {
&mut self.0
}
/// Returns a mutable reference to the underlying byte vector.
///
/// Note that it is possible to create invalid [`Nibbles`] instances using this method. See
/// [the type docs](Self) for more details.
#[inline]
pub fn as_mut_vec_unchecked(&mut self) -> &mut Repr {
&mut self.0
}
/// Slice the current nibbles within the provided index range.
///
/// # Panics
///
/// Panics if the range is out of bounds.
#[inline]
#[track_caller]
pub fn slice<I>(&self, range: I) -> Self
where
Self: Index<I, Output = [u8]>,
{
Self::from_nibbles_unchecked(&self[range])
}
/// Join two nibbles together.
#[inline]
pub fn join(&self, b: &Self) -> Self {
let mut nibbles = SmallVec::with_capacity(self.len() + b.len());
nibbles.extend_from_slice(self);
nibbles.extend_from_slice(b);
Self(nibbles)
}
/// Pushes a nibble to the end of the current nibbles.
///
/// # Panics
///
/// Panics if the nibble is not a valid nibble (`0..=0x0f`).
#[inline]
#[track_caller]
pub fn push(&mut self, nibble: u8) {
assert!(nibble <= 0xf);
self.push_unchecked(nibble);
}
/// Pushes a nibble to the end of the current nibbles without checking its validity.
///
/// Note that it is possible to create invalid [`Nibbles`] instances using this method. See
/// [the type docs](Self) for more details.
#[inline]
pub fn push_unchecked(&mut self, nibble: u8) {
self.0.push(nibble);
}
/// Pops a nibble from the end of the current nibbles.
#[inline]
pub fn pop(&mut self) -> Option<u8> {
self.0.pop()
}
/// Extend the current nibbles with another nibbles.
#[inline]
pub fn extend_from_slice(&mut self, b: &Nibbles) {
self.0.extend_from_slice(b.as_slice());
}
/// Extend the current nibbles with another byte slice.
///
/// Note that it is possible to create invalid [`Nibbles`] instances using this method. See
/// [the type docs](Self) for more details.
#[inline]
pub fn extend_from_slice_unchecked(&mut self, b: &[u8]) {
self.0.extend_from_slice(b);
}
/// Truncates the current nibbles to the given length.
#[inline]
pub fn truncate(&mut self, new_len: usize) {
self.0.truncate(new_len);
}
/// Clears the current nibbles.
#[inline]
pub fn clear(&mut self) {
self.0.clear();
}
}
/// Gets the byte at the given index by combining two consecutive nibbles.
///
/// # Examples
///
/// ```
/// # use nybbles::get_byte;
/// let nibbles: &[u8] = &[0x0A, 0x0B, 0x0C, 0x0D];
/// assert_eq!(get_byte(nibbles, 0), Some(0xAB));
/// assert_eq!(get_byte(nibbles, 1), Some(0xBC));
/// assert_eq!(get_byte(nibbles, 2), Some(0xCD));
/// assert_eq!(get_byte(nibbles, 3), None);
/// ```
#[inline]
pub fn get_byte(nibbles: &[u8], i: usize) -> Option<u8> {
if likely((i < usize::MAX) & (i.wrapping_add(1) < nibbles.len())) {
Some(unsafe { get_byte_unchecked(nibbles, i) })
} else {
None
}
}
/// Gets the byte at the given index by combining two consecutive nibbles.
///
/// # Safety
///
/// `i..i + 1` must be in range.
///
/// # Examples
///
/// ```
/// # use nybbles::get_byte_unchecked;
/// let nibbles: &[u8] = &[0x0A, 0x0B, 0x0C, 0x0D];
/// // SAFETY: in range.
/// unsafe {
/// assert_eq!(get_byte_unchecked(nibbles, 0), 0xAB);
/// assert_eq!(get_byte_unchecked(nibbles, 1), 0xBC);
/// assert_eq!(get_byte_unchecked(nibbles, 2), 0xCD);
/// }
/// ```
#[inline]
pub unsafe fn get_byte_unchecked(nibbles: &[u8], i: usize) -> u8 {
debug_assert!(
i < usize::MAX && i + 1 < nibbles.len(),
"index {i}..{} out of bounds of {}",
i + 1,
nibbles.len()
);
let hi = *nibbles.get_unchecked(i);
let lo = *nibbles.get_unchecked(i + 1);
(hi << 4) | lo
}
/// Packs the nibbles into the given slice.
///
/// See [`Nibbles::pack`] for more information.
///
/// # Panics
///
/// Panics if the slice is not at least `(self.len() + 1) / 2` bytes long.
///
/// # Examples
///
/// ```
/// # use nybbles::Nibbles;
/// let nibbles = Nibbles::from_nibbles(&[0x0A, 0x0B, 0x0C, 0x0D]);
/// let mut packed = [0; 2];
/// nibbles.pack_to(&mut packed);
/// assert_eq!(packed[..], [0xAB, 0xCD]);
/// ```
#[inline]
pub fn pack_to(nibbles: &[u8], out: &mut [u8]) {
assert!(out.len() >= (nibbles.len() + 1) / 2);
// SAFETY: asserted length.
unsafe {
let out = slice::from_raw_parts_mut(out.as_mut_ptr().cast(), out.len());
pack_to_unchecked(nibbles, out)
}
}
/// Packs the nibbles into the given slice without checking its length.
///
/// # Safety
///
/// `out` must be valid for at least `(self.len() + 1) / 2` bytes.
#[inline]
pub unsafe fn pack_to_unchecked(nibbles: &[u8], out: &mut [MaybeUninit<u8>]) {
let len = nibbles.len();
debug_assert!(out.len() >= (len + 1) / 2);
let ptr = out.as_mut_ptr().cast::<u8>();
for i in 0..len / 2 {
ptr.add(i).write(get_byte_unchecked(nibbles, i * 2));
}
if len % 2 != 0 {
let i = len / 2;
ptr.add(i).write(nibbles.last().unwrap_unchecked() << 4);
}
}
/// Returns the length of the common prefix between the two slices.
///
/// # Examples
///
/// ```
/// # use nybbles::common_prefix_length;
/// let a = &[0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F];
/// let b = &[0x0A, 0x0B, 0x0C, 0x0E];
/// assert_eq!(common_prefix_length(a, b), 3);
/// ```
#[inline]
pub fn common_prefix_length(a: &[u8], b: &[u8]) -> usize {
let len = core::cmp::min(a.len(), b.len());
let a = &a[..len];
let b = &b[..len];
for i in 0..len {
if a[i] != b[i] {
return i;
}
}
len
}
/// Initializes a smallvec with the given length and a closure that initializes the buffer.
///
/// Optimized version of `SmallVec::with_capacity` + `f()` + `.set_len`.
///
/// # Safety
///
/// The closure must fully initialize the buffer with the given length.
#[inline]
pub unsafe fn smallvec_with<const N: usize>(
len: usize,
f: impl FnOnce(&mut [MaybeUninit<u8>]),
) -> SmallVec<[u8; N]> {
let mut buf = smallvec_with_len::<N>(len);
f(unsafe { slice::from_raw_parts_mut(buf.as_mut_ptr().cast(), len) });
buf
}
#[inline]
#[allow(clippy::uninit_vec)]
unsafe fn smallvec_with_len<const N: usize>(len: usize) -> SmallVec<[u8; N]> {
if likely(len <= N) {
SmallVec::from_buf_and_len_unchecked(MaybeUninit::<[u8; N]>::uninit(), len)
} else {
let mut vec = Vec::with_capacity(len);
unsafe { vec.set_len(len) };
SmallVec::from_vec(vec)
}
}
#[inline]
#[track_caller]
fn check_nibbles(nibbles: &[u8]) {
if !valid_nibbles(nibbles) {
panic_invalid_nibbles();
}
}
fn valid_nibbles(nibbles: &[u8]) -> bool {
nibbles.iter().all(|&nibble| nibble <= 0xf)
}
#[cold]
#[track_caller]
const fn panic_invalid_nibbles() -> ! {
panic!("attempted to create invalid nibbles");
}
#[cfg(test)]
mod tests {
use super::*;
use hex_literal::hex;
#[test]
fn pack_nibbles() {
let tests = [
(&[][..], &[][..]),
(&[0xa], &[0xa0]),
(&[0xa, 0x0], &[0xa0]),
(&[0xa, 0xb], &[0xab]),
(&[0xa, 0xb, 0x2], &[0xab, 0x20]),
(&[0xa, 0xb, 0x2, 0x0], &[0xab, 0x20]),
(&[0xa, 0xb, 0x2, 0x7], &[0xab, 0x27]),
];
for (input, expected) in tests {
assert!(valid_nibbles(input));
let nibbles = Nibbles::from_nibbles(input);
let encoded = nibbles.pack();
assert_eq!(&encoded[..], expected);
}
}
#[test]
fn slice() {
const RAW: &[u8] = &hex!("05010406040a040203030f010805020b050c04070003070e0909070f010b0a0805020301070c0a0902040b0f000f0006040a04050f020b090701000a0a040b");
#[track_caller]
fn test_slice<I>(range: I, expected: &[u8])
where
Nibbles: Index<I, Output = [u8]>,
{
let nibbles = Nibbles::from_nibbles_unchecked(RAW);
let sliced = nibbles.slice(range);
assert_eq!(sliced, Nibbles::from_nibbles(expected));
assert_eq!(sliced.as_slice(), expected);
}
test_slice(0..0, &[]);
test_slice(0..1, &[0x05]);
test_slice(1..1, &[]);
test_slice(1..=1, &[0x01]);
test_slice(0..=1, &[0x05, 0x01]);
test_slice(0..2, &[0x05, 0x01]);
test_slice(..0, &[]);
test_slice(..1, &[0x05]);
test_slice(..=1, &[0x05, 0x01]);
test_slice(..2, &[0x05, 0x01]);
test_slice(.., RAW);
test_slice(..RAW.len(), RAW);
test_slice(0.., RAW);
test_slice(0..RAW.len(), RAW);
}
#[test]
fn indexing() {
let mut nibbles = Nibbles::from_nibbles([0x0A]);
assert_eq!(nibbles.at(0), 0x0A);
nibbles.set_at(0, 0x0B);
assert_eq!(nibbles.at(0), 0x0B);
}
#[test]
fn push_pop() {
let mut nibbles = Nibbles::new();
nibbles.push(0x0A);
assert_eq!(nibbles[0], 0x0A);
assert_eq!(nibbles.len(), 1);
assert_eq!(nibbles.pop(), Some(0x0A));
assert_eq!(nibbles.len(), 0);
}
#[test]
fn get_byte_max() {
let nibbles = Nibbles::from_nibbles([0x0A, 0x0B, 0x0C, 0x0D]);
assert_eq!(nibbles.get_byte(usize::MAX), None);
}
#[cfg(feature = "arbitrary")]
mod arbitrary {
use super::*;
use proptest::{collection::vec, prelude::*};
proptest::proptest! {
#[test]
#[cfg_attr(miri, ignore = "no proptest")]
fn pack_unpack_roundtrip(input in vec(any::<u8>(), 0..64)) {
let nibbles = Nibbles::unpack(&input);
prop_assert!(valid_nibbles(&nibbles));
let packed = nibbles.pack();
prop_assert_eq!(&packed[..], input);
}
}
}
}