Skip to main content

PageHeader

Struct PageHeader 

Source
pub struct PageHeader {
    pub shard: u32,
    pub page_addr: u64,
    pub used: u32,
    pub dead_bytes: u32,
    pub epoch: u32,
}
Expand description

The header at the front of a log page.

Fields§

§shard: u32

Which shard owns this page. Two shards never touch each other’s pages, so this is a check rather than a lookup, and it is the check that catches a segment allocated to two shards at once.

§page_addr: u64

The log address of byte zero of the payload, meaning of byte 32 of the page. Log addresses are logically infinite, so this is what maps a physical segment back to a position in the log.

§used: u32

Bytes of the payload that have been written, header excluded.

§dead_bytes: u32

Of those, how many belong to records the index no longer points at. Compaction reads this and nothing else to decide what to do (06 section 5).

§epoch: u32

The epoch the page was last written in.

Implementations§

Source§

impl PageHeader

Source

pub fn encode(&self, page: &mut [u8])

Writes the header and its checksum into the first 32 bytes of page.

§Panics

If page is shorter than PAGE_HEADER_LEN.

Source

pub fn decode(page: &[u8]) -> Result<PageHeader>

Reads the header back, checking the magic and the checksum.

Source

pub fn dead_fraction(&self) -> f64

The fraction of this page that is dead, between 0 and 1.

An empty page is 0 rather than a division by zero, because an empty page is not worth compacting and that is the only question this answers.

Source

pub fn wants_compaction(&self) -> bool

Whether this page is worth compacting, at 06 section 5’s threshold.

Trait Implementations§

Source§

impl Clone for PageHeader

Source§

fn clone(&self) -> PageHeader

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for PageHeader

Source§

impl Debug for PageHeader

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for PageHeader

Source§

fn default() -> PageHeader

Returns the “default value” for a type. Read more
Source§

impl Eq for PageHeader

Source§

impl PartialEq for PageHeader

Source§

fn eq(&self, other: &PageHeader) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for PageHeader

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.