Add dot at end of short comments
This commit is contained in:
@@ -12,51 +12,51 @@
|
|||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
/// Represents a byte position in a storage
|
/// Represents a byte position in a storage.
|
||||||
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
|
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
|
||||||
pub struct StorageIndex {
|
pub struct StorageIndex {
|
||||||
pub page: usize,
|
pub page: usize,
|
||||||
pub byte: usize,
|
pub byte: usize,
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Represents a possible storage error
|
/// Represents a possible storage error.
|
||||||
#[derive(Debug, PartialEq, Eq)]
|
#[derive(Debug, PartialEq, Eq)]
|
||||||
pub enum StorageError {
|
pub enum StorageError {
|
||||||
/// Arguments are not correctly aligned
|
/// Arguments are not correctly aligned.
|
||||||
NotAligned,
|
NotAligned,
|
||||||
|
|
||||||
/// Arguments are out of bounds
|
/// Arguments are out of bounds.
|
||||||
OutOfBounds,
|
OutOfBounds,
|
||||||
|
|
||||||
/// Implementation-specific error
|
/// Implementation-specific error.
|
||||||
CustomError,
|
CustomError,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub type StorageResult<T> = Result<T, StorageError>;
|
pub type StorageResult<T> = Result<T, StorageError>;
|
||||||
|
|
||||||
/// Abstracts a flash storage
|
/// Abstracts a flash storage.
|
||||||
pub trait Storage {
|
pub trait Storage {
|
||||||
/// The size of a word in bytes
|
/// The size of a word in bytes.
|
||||||
fn word_size(&self) -> usize;
|
fn word_size(&self) -> usize;
|
||||||
|
|
||||||
/// The size of a page in bytes
|
/// The size of a page in bytes.
|
||||||
fn page_size(&self) -> usize;
|
fn page_size(&self) -> usize;
|
||||||
|
|
||||||
/// The number of pages in the storage
|
/// The number of pages in the storage.
|
||||||
fn num_pages(&self) -> usize;
|
fn num_pages(&self) -> usize;
|
||||||
|
|
||||||
/// Maximum number of times a word can be written between page erasures
|
/// Maximum number of times a word can be written between page erasures.
|
||||||
fn max_word_writes(&self) -> usize;
|
fn max_word_writes(&self) -> usize;
|
||||||
|
|
||||||
/// Maximum number of times a page can be erased
|
/// Maximum number of times a page can be erased.
|
||||||
fn max_page_erases(&self) -> usize;
|
fn max_page_erases(&self) -> usize;
|
||||||
|
|
||||||
/// Reads a byte slice from the storage
|
/// Reads a byte slice from the storage.
|
||||||
///
|
///
|
||||||
/// The `index` must designate `length` bytes in the storage.
|
/// The `index` must designate `length` bytes in the storage.
|
||||||
fn read_slice(&self, index: StorageIndex, length: usize) -> StorageResult<&[u8]>;
|
fn read_slice(&self, index: StorageIndex, length: usize) -> StorageResult<&[u8]>;
|
||||||
|
|
||||||
/// Writes a word slice to the storage
|
/// Writes a word slice to the storage.
|
||||||
///
|
///
|
||||||
/// The following pre-conditions must hold:
|
/// The following pre-conditions must hold:
|
||||||
/// - The `index` must designate `value.len()` bytes in the storage.
|
/// - The `index` must designate `value.len()` bytes in the storage.
|
||||||
@@ -64,20 +64,20 @@ pub trait Storage {
|
|||||||
/// - The written words should not have been written too many times since last page erasure.
|
/// - The written words should not have been written too many times since last page erasure.
|
||||||
fn write_slice(&mut self, index: StorageIndex, value: &[u8]) -> StorageResult<()>;
|
fn write_slice(&mut self, index: StorageIndex, value: &[u8]) -> StorageResult<()>;
|
||||||
|
|
||||||
/// Erases a page of the storage
|
/// Erases a page of the storage.
|
||||||
///
|
///
|
||||||
/// The `page` must be in the storage.
|
/// The `page` must be in the storage.
|
||||||
fn erase_page(&mut self, page: usize) -> StorageResult<()>;
|
fn erase_page(&mut self, page: usize) -> StorageResult<()>;
|
||||||
}
|
}
|
||||||
|
|
||||||
impl StorageIndex {
|
impl StorageIndex {
|
||||||
/// Whether a slice fits in a storage page
|
/// Whether a slice fits in a storage page.
|
||||||
fn is_valid(self, length: usize, storage: &impl Storage) -> bool {
|
fn is_valid(self, length: usize, storage: &impl Storage) -> bool {
|
||||||
let page_size = storage.page_size();
|
let page_size = storage.page_size();
|
||||||
self.page < storage.num_pages() && length <= page_size && self.byte <= page_size - length
|
self.page < storage.num_pages() && length <= page_size && self.byte <= page_size - length
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Returns the range of a valid slice
|
/// Returns the range of a valid slice.
|
||||||
///
|
///
|
||||||
/// The range starts at `self` with `length` bytes.
|
/// The range starts at `self` with `length` bytes.
|
||||||
pub fn range(
|
pub fn range(
|
||||||
|
|||||||
Reference in New Issue
Block a user