pub mod error;
mod validation;
use crate::error::InvalidS3PathComponent;
use std::borrow::Cow;
use std::fmt::Formatter;
use std::ops::Deref;
use std::path::PathBuf;
#[macro_export]
macro_rules! s3_path {
($($component:expr),*) => {{
let components = &[$(::std::borrow::Cow::Borrowed($component)),*];
$crate::S3Path::new(components)
}}
}
#[macro_export]
macro_rules! s3_path_buf {
($($component:expr),*) => {{
#[allow(unused_mut)] let mut path = $crate::S3PathBuf::new();
#[allow(unused_mut)] let mut error = None;
$(
if error.is_none() {
match path.join($component) {
Ok(_) => {},
Err(e) => error = Some(e),
}
}
)*
match error {
Some(err) => Result::<$crate::S3PathBuf, $crate::error::InvalidS3PathComponent>::Err(err),
None => Result::<$crate::S3PathBuf, $crate::error::InvalidS3PathComponent>::Ok(path),
}
}}
}
#[repr(transparent)]
#[derive(PartialEq, Eq)]
pub struct S3Path<'i>([Cow<'i, str>]);
#[derive(Clone, PartialEq, Eq, Default)]
pub struct S3PathBuf {
components: Vec<Cow<'static, str>>,
}
impl<'i> PartialEq<&S3Path<'i>> for S3PathBuf {
fn eq(&self, other: &&S3Path<'i>) -> bool {
self.as_path() == *other
}
}
impl<'i> PartialEq<S3PathBuf> for &S3Path<'i> {
fn eq(&self, other: &S3PathBuf) -> bool {
*self == other.as_path()
}
}
impl<'i> AsRef<S3Path<'i>> for S3Path<'i> {
fn as_ref(&self) -> &S3Path<'i> {
self
}
}
impl<'i> AsRef<S3Path<'i>> for S3PathBuf {
fn as_ref(&self) -> &S3Path<'i> {
self.deref()
}
}
impl AsRef<S3PathBuf> for S3PathBuf {
fn as_ref(&self) -> &S3PathBuf {
self
}
}
fn write_components<C: AsRef<str>>(
components: impl Iterator<Item = C>,
f: &mut Formatter,
) -> Result<(), std::fmt::Error> {
for (i, c) in components.enumerate() {
if i > 0 {
f.write_str("/")?;
}
f.write_str(c.as_ref())?;
}
Ok(())
}
impl<'i> std::fmt::Display for S3Path<'i> {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
write_components(self.0.iter(), f)?;
Ok(())
}
}
impl<'i> std::fmt::Debug for S3Path<'i> {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
write_components(self.0.iter(), f)?;
Ok(())
}
}
impl std::fmt::Display for S3PathBuf {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
write_components(self.components.iter(), f)?;
Ok(())
}
}
impl std::fmt::Debug for S3PathBuf {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
write_components(self.components.iter(), f)?;
Ok(())
}
}
impl<'i> S3Path<'i> {
pub fn new(components: &'i [Cow<'i, str>]) -> Result<&'i S3Path<'i>, InvalidS3PathComponent> {
for component in components {
validation::validate_component(component)?;
}
Ok(unsafe { &*(components as *const [Cow<'i, str>] as *const S3Path<'i>) })
}
pub fn to_owned(&'i self) -> S3PathBuf {
S3PathBuf {
components: self.0.iter().map(|it| Cow::Owned(it.to_string())).collect(),
}
}
pub fn join<C: Into<Cow<'static, str>>>(
&self,
component: C,
) -> Result<S3PathBuf, InvalidS3PathComponent> {
let mut path = self.to_owned();
path.join(component)?;
Ok(path)
}
pub fn is_empty(&'i self) -> bool {
self.0.is_empty()
}
pub fn len(&'i self) -> usize {
self.0.len()
}
pub fn components(&'i self) -> impl Iterator<Item = &'i str> {
self.0.iter().map(move |it| it.as_ref())
}
pub fn get(&'i self, index: usize) -> Option<&'i str> {
self.0.get(index).map(|it| it.as_ref())
}
pub fn last(&'i self) -> Option<&'i str> {
self.0.last().map(|it| it.as_ref())
}
pub fn parent(&'i self) -> Option<&'i S3Path<'i>> {
if self.0.is_empty() {
None
} else {
let parent_slice = &self.0[..self.0.len() - 1];
Some(
unsafe { &*(parent_slice as *const [Cow<'i, str>] as *const S3Path<'i>) },
)
}
}
pub fn to_std_path_buf(&self) -> PathBuf {
let mut path = PathBuf::new();
for c in &self.0 {
path = path.join(c.as_ref());
}
path
}
}
impl Deref for S3PathBuf {
type Target = S3Path<'static>;
fn deref(&self) -> &Self::Target {
unsafe {
&*(self.components.as_slice() as *const [Cow<'static, str>] as *const S3Path<'static>)
}
}
}
impl S3PathBuf {
pub fn new() -> Self {
Self::default()
}
pub fn try_from<C: Into<Cow<'static, str>>, I: IntoIterator<Item = C>>(
components: I,
) -> Result<Self, InvalidS3PathComponent> {
let mut path = S3PathBuf::new();
for component in components {
path.join(component)?;
}
Ok(path)
}
pub fn try_from_str(string: impl AsRef<str>) -> Result<Self, InvalidS3PathComponent> {
let mut path = S3PathBuf::new();
for c in string.as_ref().split('/') {
if !c.is_empty() {
path.join(Cow::Owned(c.to_string()))?;
}
}
Ok(path)
}
pub fn join(
&mut self,
component: impl Into<Cow<'static, str>>,
) -> Result<&mut Self, InvalidS3PathComponent> {
let comp = component.into();
validation::validate_component(&comp)?;
self.components.push(comp);
Ok(self)
}
#[must_use]
#[inline]
pub fn as_path(&self) -> &S3Path<'_> {
self.deref()
}
pub fn pop(&mut self) -> Option<Cow<'static, str>> {
self.components.pop()
}
}
impl TryFrom<&str> for S3PathBuf {
type Error = InvalidS3PathComponent;
fn try_from(value: &str) -> Result<Self, Self::Error> {
let mut path = S3PathBuf::new();
for c in value.split('/') {
if !c.is_empty() {
path.join(Cow::Owned(c.to_string()))?;
}
}
Ok(path)
}
}
impl TryFrom<String> for S3PathBuf {
type Error = InvalidS3PathComponent;
fn try_from(value: String) -> Result<Self, Self::Error> {
TryFrom::try_from(value.as_str())
}
}
#[cfg(test)]
impl assertr::assertions::HasLength for S3PathBuf {
fn length(&self) -> usize {
self.len()
}
}
#[cfg(test)]
mod test {
use crate::S3PathBuf;
use assertr::prelude::*;
mod s3_path_buf {
use crate::S3PathBuf;
use assertr::prelude::*;
#[test]
fn new_is_initially_empty() {
let path = S3PathBuf::new();
assert_that(path).has_display_value("");
}
#[test]
fn construct_using_new_and_join_components() {
let mut path = S3PathBuf::new();
path.join("foo").unwrap();
path.join("bar").unwrap();
assert_that(path).has_display_value("foo/bar");
}
#[test]
fn try_from_str_parses_empty_string_as_empty_path() {
let path = S3PathBuf::try_from_str("").unwrap();
assert_that(path).has_display_value("");
}
#[test]
fn try_from_str_parses_single_slash_as_empty_path() {
let path = S3PathBuf::try_from_str("/").unwrap();
assert_that(path).has_display_value("");
}
#[test]
fn try_from_str_removes_leading_and_trailing_slashes() {
let path = S3PathBuf::try_from_str("/foo/bar/").unwrap();
assert_that(path).has_display_value("foo/bar");
}
#[test]
fn try_from_str_ignores_repeated_slashes() {
let path = S3PathBuf::try_from_str("foo/////bar").unwrap();
assert_that(path).has_display_value("foo/bar");
}
#[test]
fn construct_using_try_from_given_str() {
let path = S3PathBuf::try_from_str("foo/bar").unwrap();
assert_that(path).has_display_value("foo/bar");
}
#[test]
fn construct_using_try_from_given_string() {
let path = S3PathBuf::try_from_str("foo/bar".to_string()).unwrap();
assert_that(path).has_display_value("foo/bar");
}
#[test]
fn try_from_static_str_array() {
let path = S3PathBuf::try_from(["foo", "bar"]).unwrap();
assert_that(path).has_display_value("foo/bar");
}
#[test]
fn try_from_string_array() {
let path = S3PathBuf::try_from(["foo".to_string(), "bar".to_string()]).unwrap();
assert_that(path).has_display_value("foo/bar");
}
#[test]
fn reject_invalid_characters() {
let mut path = S3PathBuf::new();
let result = path.join("invalid/path");
assert_that(result.is_err()).is_true();
let result = S3PathBuf::try_from_str("foo/bar$baz");
assert_that(result.is_err()).is_true();
}
#[test]
fn as_path() {
let path_buf = S3PathBuf::try_from(["foo", "bar"]).unwrap();
let path = path_buf.as_path();
assert_that(path).has_display_value("foo/bar");
let cloned = path.to_owned();
drop(path_buf);
assert_that(cloned).has_display_value("foo/bar");
}
#[test] fn is_empty_returns_true_when_path_has_no_components() {
let path_buf = S3PathBuf::new();
assert_that(path_buf.is_empty()).is_true();
}
#[test] fn is_empty_returns_false_when_path_has_components() {
let path_buf = S3PathBuf::try_from(["foo", "bar"]).unwrap();
assert_that(path_buf.is_empty()).is_false();
}
#[test] fn len_returns_number_of_components() {
let path_buf = S3PathBuf::try_from(["foo", "bar"]).unwrap();
assert_that(path_buf.len()).is_equal_to(2);
}
#[test] fn components_iterates_over_all_components() {
let path_buf = S3PathBuf::try_from(["foo", "bar"]).unwrap();
assert_that(path_buf.components()).contains_exactly(&["foo", "bar"]);
}
#[test] fn get_returns_component_at_index() {
let path_buf = S3PathBuf::try_from(["foo", "bar"]).unwrap();
assert_that(path_buf.get(1)).is_some().is_equal_to("bar");
}
#[test] fn last_returns_last_component() {
let path_buf = S3PathBuf::try_from(["foo", "bar"]).unwrap();
assert_that(path_buf.last()).is_some().is_equal_to("bar");
}
#[test] fn parent_returns_none_when_path_has_no_components() {
let path_buf = S3PathBuf::new();
assert_that(path_buf.parent()).is_none();
}
#[test] fn parent_returns_empty_component_when_path_has_only_one_component() {
let path_buf = S3PathBuf::try_from(["foo"]).unwrap();
assert_that(path_buf.parent())
.is_some()
.has_display_value("");
}
#[test] fn parent_returns_view_of_parent_path_when_path_has_multiple_components() {
let path_buf = S3PathBuf::try_from(["foo", "bar", "baz"]).unwrap();
assert_that(path_buf.parent())
.is_some()
.has_display_value("foo/bar");
}
#[test] fn to_std_path_buf_returns_empty_path_buf_when_s3_path_has_zero_components() {
let path_buf = S3PathBuf::new();
assert_that(path_buf.to_std_path_buf().display()).has_display_value("");
}
#[test] fn to_std_path_buf_joins_components_with_path_separator_does_not_add_slashes() {
let path_buf = S3PathBuf::try_from(["foo", "bar"]).unwrap();
assert_that(path_buf.to_std_path_buf().display()).has_display_value("foo/bar");
}
mod s3_path_buf_macro {
use assertr::prelude::*;
use std::borrow::Cow;
#[test]
fn taking_nothing() {
let path = s3_path_buf!().unwrap();
assert_that(path).has_display_value("");
}
#[test]
fn taking_single_static_str() {
let path = s3_path_buf!("foo").unwrap();
assert_that(path).has_display_value("foo");
}
#[test]
fn taking_owned_string_and_static_str() {
let foo = String::from("foo");
let path = s3_path_buf!(foo, "bar").unwrap();
assert_that(path).has_display_value("foo/bar");
}
#[test]
fn taking_owned_string_and_static_str_and_cow() {
let foo = String::from("foo");
let path = s3_path_buf!(foo, "bar", Cow::Borrowed("baz")).unwrap();
assert_that(path).has_display_value("foo/bar/baz");
}
}
}
mod s3_path {
use crate::S3Path;
use assertr::prelude::*;
use std::borrow::Cow;
#[test]
fn new_is_initially_empty() {
let path = S3Path::new(&[]).unwrap();
assert_that(path).has_display_value("");
}
#[test]
fn construct_using_new_and_join_components() {
let path = S3Path::new(&[Cow::Borrowed("foo"), Cow::Borrowed("bar")]).unwrap();
assert_that(path).has_display_value("foo/bar");
}
#[test]
fn to_owned_converts_to_owned_path() {
let path = s3_path!("foo", "bar").unwrap();
let path_owned = path.to_owned();
assert_that(path_owned).has_display_value("foo/bar");
}
#[test]
fn join_converts_to_owned_path_and_appends_component() {
let path = s3_path!("foo", "bar").unwrap();
let path_owned = path.join("baz").unwrap();
assert_that(path_owned).has_display_value("foo/bar/baz");
}
mod s3_path_macro {
use assertr::prelude::*;
#[test]
fn handles_zero_components() {
let path = s3_path!().unwrap();
assert_that(path).has_display_value("");
}
#[test]
fn handles_one_component() {
let path = s3_path!("foo").unwrap();
assert_that(path).has_display_value("foo");
}
#[test]
fn handles_multiple_components() {
let path = s3_path!("foo", "bar").unwrap();
assert_that(path).has_display_value("foo/bar");
}
}
}
mod validation {
use crate::S3PathBuf;
use assertr::prelude::*;
#[test]
fn reject_invalid_characters() {
assert_that(S3PathBuf::try_from(["foo-bar"]))
.is_ok()
.has_display_value("foo-bar");
assert_that(S3PathBuf::try_from(["foo_bar"]))
.is_ok()
.has_display_value("foo_bar");
assert_that(S3PathBuf::try_from(["foo.bar"]))
.is_ok()
.has_display_value("foo.bar");
assert_that(S3PathBuf::try_from([".test"]))
.is_ok()
.has_display_value(".test");
assert_that(S3PathBuf::try_from(["..test"]))
.is_ok()
.has_display_value("..test");
assert_that(S3PathBuf::try_from(["foo:bar"])).is_err();
assert_that(S3PathBuf::try_from(["foo;bar"])).is_err();
assert_that(S3PathBuf::try_from(["foo$bar"])).is_err();
assert_that(S3PathBuf::try_from(["foo&bar"])).is_err();
assert_that(S3PathBuf::try_from(["foo#bar"])).is_err();
assert_that(S3PathBuf::try_from(["foo/bar"])).is_err();
assert_that(S3PathBuf::try_from(["foo|bar"])).is_err();
assert_that(S3PathBuf::try_from(["foo\\bar"])).is_err();
assert_that(S3PathBuf::try_from(["."])).is_err();
assert_that(S3PathBuf::try_from([".."])).is_err();
}
}
mod take_any_path {
use crate::{S3Path, S3PathBuf};
fn take_any_path<'p>(path: impl AsRef<S3Path<'p>>) {
let _path: &S3Path<'p> = path.as_ref();
}
#[test]
fn takes_owned_s3_path_buf() {
take_any_path(S3PathBuf::new());
}
#[test]
fn takes_borrowed_s3_path_buf() {
take_any_path(&S3PathBuf::new());
}
#[test]
fn takes_s3_path() {
take_any_path(S3Path::new(&[]).unwrap());
}
}
#[test]
fn comparison_between_types() {
let path_buf = S3PathBuf::try_from(["foo", "bar"]).unwrap();
let path = path_buf.as_path();
assert_that(path == path_buf).is_true();
assert_that(path_buf == path).is_true();
}
}