| // Licensed to the Apache Software Foundation (ASF) under one |
| // or more contributor license agreements. See the NOTICE file |
| // distributed with this work for additional information |
| // regarding copyright ownership. The ASF licenses this file |
| // to you under the Apache License, Version 2.0 (the |
| // "License"); you may not use this file except in compliance |
| // with the License. You may obtain a copy of the License at |
| // |
| // http://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, |
| // software distributed under the License is distributed on an |
| // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| // KIND, either express or implied. See the License for the |
| // specific language governing permissions and limitations |
| // under the License. |
| |
| use std::io; |
| use std::ops::{Deref, RangeInclusive}; |
| use std::rc::Rc; |
| |
| pub use server_common::Storage; |
| |
| pub mod file_storage; |
| pub mod local_gate; |
| pub mod prepare_journal; |
| pub mod superblock; |
| |
| pub trait Journal { |
| type Header; |
| type Entry; |
| type HeaderRef<'a>: Deref<Target = Self::Header> |
| where |
| Self: 'a; |
| |
| fn header(&self, idx: usize) -> Option<Self::HeaderRef<'_>>; |
| fn previous_header(&self, header: &Self::Header) -> Option<Self::HeaderRef<'_>>; |
| |
| fn append(&self, entry: Self::Entry) -> impl Future<Output = io::Result<()>>; |
| fn entry(&self, header: &Self::Header) -> impl Future<Output = Option<Self::Entry>>; |
| |
| /// Number of entries that can be appended before the journal would need |
| /// to evict un-snapshotted slots. Returns `None` for journals that don't persist to disk. |
| fn remaining_capacity(&self) -> Option<usize> { |
| None |
| } |
| |
| /// Remove every entry at or above `from_op`, returning how many went, and |
| /// leave the snapshot watermark where it is. |
| /// |
| /// Not `drain` with a different range: `drain` advances the watermark past what |
| /// it removed, which would mark the removed ops evictable when a suffix |
| /// truncation needs them refillable. |
| /// |
| /// Required, not defaulted: an `Unsupported` default hides a missing impl until |
| /// mid-view-change, where the caller can only wedge or start a view over a log it |
| /// cannot serve. |
| /// |
| /// # Errors |
| /// I/O error if the rewrite fails. |
| fn truncate_from(&self, from_op: u64) -> impl Future<Output = io::Result<usize>>; |
| |
| /// Highest op the index holds. Not derivable from [`Self::header`]: a caller |
| /// looking for a suffix ABOVE some op has no bound to probe up to. |
| fn last_op(&self) -> Option<u64>; |
| |
| /// Remove entries with ops in `ops` from the journal, |
| /// returning the removed entries sorted by op. |
| /// |
| /// Implementations that persist to disk should rewrite the underlying |
| /// storage to reclaim space. The default is a no-op for journals that |
| /// do not persist to disk. |
| /// |
| /// # Errors |
| /// Returns an I/O error if the drain fails. |
| fn drain( |
| &self, |
| _ops: RangeInclusive<u64>, |
| ) -> impl Future<Output = io::Result<Vec<Self::Entry>>> { |
| async { Ok(Vec::new()) } |
| } |
| |
| /// Snapshot watermark: entries at or below it are evictable. `0` for |
| /// journals without snapshot bookkeeping. |
| /// |
| /// Required rather than defaulted, and paired with |
| /// [`Self::set_snapshot_op`]: a wrapper that forwards one while inheriting |
| /// the other is silently broken in one direction and panics in the other |
| /// (an implementation whose setter asserts monotonicity would see a getter |
| /// stuck at `0` hand it a watermark below the real one). Journals without |
| /// snapshot bookkeeping answer `0` and no-op the setter EXPLICITLY. |
| fn snapshot_op(&self) -> u64; |
| |
| /// Advance the snapshot watermark (see [`Self::snapshot_op`]). State |
| /// transfer uses this to mark pre-transfer residents superseded by the |
| /// installed snapshot. |
| fn set_snapshot_op(&self, op: u64); |
| } |
| |
| pub trait JournalHandle { |
| type Target: Journal; |
| |
| fn handle(&self) -> &Self::Target; |
| } |
| |
| /// Forwarding impl so a journal held behind an `Rc` still drives the shard |
| /// through [`JournalHandle`]. The deterministic simulator needs this to retain |
| /// the metadata WAL across a replica restart: the bytes and index survive the |
| /// shard being dropped and rebuilt. |
| impl<T: JournalHandle> JournalHandle for Rc<T> { |
| type Target = T::Target; |
| |
| fn handle(&self) -> &Self::Target { |
| (**self).handle() |
| } |
| } |