Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: refact the recurse_create_dir_all #304

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 27 additions & 29 deletions src/fs/create_dir_all.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
use futures_util::future::LocalBoxFuture;
use std::io;
use std::path::Path;

Expand Down Expand Up @@ -117,30 +116,28 @@ impl DirBuilder {
}

// This recursive function is very closely modeled after the std library version.
//
// A recursive async function requires a Boxed Future. TODO There may be an implementation that
// is less costly in terms of heap allocations. Maybe a non-recursive version is possible given
// we even know the path separator for Linux. Or maybe expand the first level to avoid
// recursion when only the first level of the directory needs to be built. For now, this serves
// its purpose.

fn recurse_create_dir_all<'a>(&'a self, path: &'a Path) -> LocalBoxFuture<io::Result<()>> {
Box::pin(async move {
if path == Path::new("") {
return Ok(());
}
async fn recurse_create_dir_all(&self, path: &Path) -> io::Result<()> {
if path == Path::new("") {
return Ok(());
}

match self.inner.mkdir(path).await {
Ok(()) => return Ok(()),
Err(ref e) if e.kind() == io::ErrorKind::NotFound => {}
Err(_) if is_dir(path).await => return Ok(()),
Err(e) => return Err(e),
}
match path.parent() {
Some(p) => self.recurse_create_dir_all(p).await?,
let mut inexist_path = path;
let mut need_create = vec![];

while match self.inner.mkdir(inexist_path).await {
Ok(()) => false,
Err(ref e) if e.kind() == io::ErrorKind::NotFound => true,
Err(_) if is_dir(inexist_path).await => false,
Err(e) => return Err(e),
} {
match inexist_path.parent() {
Some(p) => {
need_create.push(inexist_path);
inexist_path = p;
}
None => {
return Err(std::io::Error::new(
std::io::ErrorKind::Other,
return Err(io::Error::new(
io::ErrorKind::Other,
"failed to create whole tree",
));
/* TODO build own allocation free error some day like the std library does.
Expand All @@ -151,12 +148,13 @@ impl DirBuilder {
*/
}
}
match self.inner.mkdir(path).await {
Ok(()) => Ok(()),
Err(_) if is_dir(path).await => Ok(()),
Err(e) => Err(e),
}
})
}

for p in need_create.into_iter().rev() {
self.inner.mkdir(p).await?;
}

Ok(())
}
}

Expand Down