-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
252 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
[package] | ||
name = "huak-workspace" | ||
version = "0.0.0" | ||
edition.workspace = true | ||
rust-version.workspace = true | ||
authors.workspace = true | ||
license.workspace = true | ||
|
||
[dependencies] | ||
tempfile.workspace = true | ||
|
||
[lints] | ||
workspace = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,231 @@ | ||
use std::{ | ||
fmt::Display, | ||
path::{Path, PathBuf}, | ||
}; | ||
|
||
/// A workspace is a directory on a file system. Workspaces can consist of members -- which can | ||
/// be wokspaces of their own. | ||
/// | ||
/// Given some current working directory, a workspace can be resolved by finding the root of | ||
/// the workspace. | ||
/// | ||
/// ```rust | ||
/// use huak_workspace::Workspace; | ||
/// use std::path::PathBuf; | ||
/// | ||
/// let cwd = PathBuf::new(); | ||
/// let ws = Workspace::new(cwd); | ||
/// ``` | ||
#[derive(Clone, Debug)] | ||
pub struct Workspace { | ||
root: PathBuf, | ||
members: Option<Vec<Self>>, | ||
} | ||
|
||
impl Workspace { | ||
pub fn new<T: AsRef<Path>>(root: T) -> Self { | ||
new_workspace(root) | ||
} | ||
|
||
#[must_use] | ||
pub fn members(&self) -> Option<&Vec<Self>> { | ||
self.members.as_ref() | ||
} | ||
} | ||
|
||
impl Workspace { | ||
#[must_use] | ||
pub fn root(&self) -> &PathBuf { | ||
&self.root | ||
} | ||
} | ||
|
||
// Root paths should be directories. | ||
fn new_workspace<T: AsRef<Path>>(path: T) -> Workspace { | ||
if path.as_ref().is_dir() { | ||
return Workspace { | ||
root: path.as_ref().to_path_buf(), | ||
members: None, | ||
}; | ||
} | ||
|
||
if let Some(parent) = path.as_ref().parent() { | ||
if parent.is_dir() { | ||
return Workspace { | ||
root: parent.to_path_buf(), | ||
members: None, | ||
}; | ||
} | ||
} | ||
|
||
Workspace { | ||
root: path.as_ref().to_path_buf(), | ||
members: None, | ||
} | ||
} | ||
|
||
/// Resolve a workspace by searching for a root. | ||
/// | ||
/// ```no_run | ||
/// use huak_workspace::{PathMarker, resolve_root}; | ||
/// use std::path::PathBuf; | ||
/// | ||
/// let cwd = PathBuf::from("root/member/"); | ||
/// let marker = PathMarker::file("pyproject.toml"); | ||
/// let ws = resolve_root(&cwd, marker); | ||
/// ``` | ||
pub fn resolve_root<T: Into<PathBuf>>(cwd: T, marker: PathMarker) -> Workspace { | ||
let resolver = PathResolver { | ||
cwd: cwd.into(), | ||
marker, | ||
strategy: ResolveStrategy::ResolveRoot, | ||
}; | ||
|
||
resolver.resolve() | ||
} | ||
|
||
struct PathResolver { | ||
pub cwd: PathBuf, | ||
pub marker: PathMarker, | ||
pub strategy: ResolveStrategy, | ||
} | ||
|
||
impl PathResolver { | ||
fn resolve(&self) -> Workspace { | ||
match self.strategy { | ||
ResolveStrategy::ResolveRoot => best_root(&self.cwd, &self.marker), | ||
} | ||
} | ||
} | ||
|
||
fn best_root<T: AsRef<Path>>(cwd: T, marker: &PathMarker) -> Workspace { | ||
let mut root = dir(cwd.as_ref()); | ||
|
||
for p in cwd.as_ref().ancestors() { | ||
if has_marker(p, marker) { | ||
// Roots should be directories | ||
root = dir(p); | ||
} | ||
} | ||
|
||
let members = resolve_members(root.as_path(), marker); | ||
|
||
Workspace { root, members } | ||
} | ||
|
||
fn dir<T: AsRef<Path>>(path: T) -> PathBuf { | ||
let path = path.as_ref(); | ||
|
||
if path.is_dir() { | ||
path.to_path_buf() | ||
} else { | ||
path.parent() | ||
.map(std::path::Path::to_path_buf) | ||
.expect("path buff") | ||
} | ||
} | ||
|
||
fn resolve_members<T: AsRef<Path>>(path: T, marker: &PathMarker) -> Option<Vec<Workspace>> { | ||
let Ok(paths) = std::fs::read_dir(path) else { | ||
return None; | ||
}; | ||
|
||
let mut members = Vec::new(); | ||
|
||
for entry in paths.flatten() { | ||
let p = entry.path(); | ||
|
||
if has_marker(&p, marker) { | ||
members.push(Workspace::new(&p)); | ||
} | ||
} | ||
|
||
if members.is_empty() { | ||
None | ||
} else { | ||
Some(members) | ||
} | ||
} | ||
|
||
fn has_marker<T: AsRef<Path>>(path: T, marker: &PathMarker) -> bool { | ||
let path = path.as_ref(); | ||
|
||
match marker { | ||
PathMarker::File(name) if path.is_dir() => path.join(name).exists(), | ||
PathMarker::Dir(name) | PathMarker::File(name) => matches_file_name(path, name), | ||
} | ||
} | ||
|
||
fn matches_file_name<T: AsRef<Path>>(path: T, name: &str) -> bool { | ||
path.as_ref() | ||
.file_name() | ||
.map_or(false, |s| s.eq_ignore_ascii_case(name)) | ||
} | ||
|
||
#[derive(Default)] | ||
enum ResolveStrategy { | ||
// Traverse from some location a first steps forward and a few steps backwards. | ||
#[default] | ||
ResolveRoot, | ||
} | ||
|
||
#[derive(Debug)] | ||
pub enum PathMarker { | ||
File(String), | ||
Dir(String), | ||
} | ||
|
||
impl PathMarker { | ||
#[must_use] | ||
pub fn file(s: &str) -> Self { | ||
Self::File(s.to_string()) | ||
} | ||
|
||
#[must_use] | ||
pub fn dir(s: &str) -> Self { | ||
Self::Dir(s.to_string()) | ||
} | ||
} | ||
|
||
impl Display for PathMarker { | ||
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { | ||
match self { | ||
PathMarker::File(name) | PathMarker::Dir(name) => write!(f, "{name}"), | ||
} | ||
} | ||
} | ||
|
||
#[cfg(test)] | ||
mod tests { | ||
use super::*; | ||
use std::{fs::File, io::Write}; | ||
use tempfile::TempDir; | ||
|
||
#[test] | ||
fn test_resolve_root() { | ||
let dir = TempDir::new().unwrap(); | ||
let mock = create_mock_ws(dir.as_ref()); | ||
let cwd = mock.join("package"); | ||
let ws = resolve_root(cwd, PathMarker::file("pyproject.toml")); | ||
|
||
assert!(ws.root().exists()); | ||
assert_eq!(ws.root(), dir.path()); | ||
} | ||
|
||
// Create a mock workspace and return its path. | ||
fn create_mock_ws(path: &Path) -> PathBuf { | ||
let sub = path.join("package"); | ||
|
||
std::fs::create_dir_all(&sub).unwrap(); | ||
|
||
let marker = "pyproject.toml"; | ||
|
||
let mut file = File::create(path.join(marker)).unwrap(); | ||
file.write_all(&[]).unwrap(); | ||
|
||
let mut file = File::create(sub.join(marker)).unwrap(); | ||
file.write_all(&[]).unwrap(); | ||
|
||
path.to_path_buf() | ||
} | ||
} |