refactor(tvix/castore): add PathComponent type for checked components
This encodes a verified component on the type level. Internally, it contains a bytes::Bytes. The castore Path/PathBuf component() and file_name() methods now return this type, the old ones returning bytes were renamed to component_bytes() and component_file_name() respectively. We can drop the directory_reject_invalid_name test - it's not possible anymore to pass an invalid name to Directories::add. Invalid names in the Directory proto are still being tested to be rejected in the validate_invalid_names tests. Change-Id: Ide4d16415dfd50b7e2d7e0c36d42a3bbeeb9b6c5 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12217 Autosubmit: flokli <flokli@flokli.de> Reviewed-by: Connor Brewster <cbrewster@hey.com> Tested-by: BuildkiteCI
This commit is contained in:
parent
8ea7d2b60e
commit
5ec93b57e6
25 changed files with 282 additions and 165 deletions
|
@ -3,6 +3,8 @@ use thiserror::Error;
|
|||
use tokio::task::JoinError;
|
||||
use tonic::Status;
|
||||
|
||||
use crate::path::PathComponent;
|
||||
|
||||
/// Errors related to communication with the store.
|
||||
#[derive(Debug, Error, PartialEq)]
|
||||
pub enum Error {
|
||||
|
@ -37,11 +39,11 @@ impl From<crate::digests::Error> for ValidateNodeError {
|
|||
#[derive(Debug, thiserror::Error, PartialEq)]
|
||||
pub enum DirectoryError {
|
||||
/// Multiple elements with the same name encountered
|
||||
#[error("{:?} is a duplicate name", .0.as_bstr())]
|
||||
DuplicateName(Vec<u8>),
|
||||
#[error("{:?} is a duplicate name", .0)]
|
||||
DuplicateName(PathComponent),
|
||||
/// Node failed validation
|
||||
#[error("invalid node with name {:?}: {:?}", .0.as_bstr(), .1.to_string())]
|
||||
InvalidNode(bytes::Bytes, ValidateNodeError),
|
||||
#[error("invalid node with name {}: {:?}", .0, .1.to_string())]
|
||||
InvalidNode(PathComponent, ValidateNodeError),
|
||||
#[error("Total size exceeds u32::MAX")]
|
||||
SizeOverflow,
|
||||
/// Invalid name encountered
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue