Skip to content

Commit 083909b

Browse files
committed
Merge branch 'adjustments-for-cargo'
2 parents fbfd290 + 680c143 commit 083909b

File tree

105 files changed

+1017
-398
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

105 files changed

+1017
-398
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120
- uses: actions/checkout@v3
121121
- uses: dtolnay/rust-toolchain@master
122122
with:
123-
toolchain: stable
123+
toolchain: 1.65 # clippy is broken for us in 1.66
124124
components: clippy,rustfmt
125125
- name: Run cargo clippy
126126
run: cargo clippy --all --tests

Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ check: ## Build all code in suitable configurations
9595
&& cargo check
9696
cd git-features && cargo check --all-features \
9797
&& cargo check --features parallel \
98-
&& cargo check --features parallel,fs-walkdir-parallel \
98+
&& cargo check --features fs-walkdir-parallel \
9999
&& cargo check --features rustsha1 \
100100
&& cargo check --features fast-sha1 \
101101
&& cargo check --features progress \

git-attributes/tests/match_group/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ mod ignore {
3232

3333
#[test]
3434
fn from_git_dir() -> crate::Result {
35-
let dir = git_testtools::scripted_fixture_repo_read_only("make_global_and_external_and_dir_ignores.sh")?;
35+
let dir = git_testtools::scripted_fixture_read_only("make_global_and_external_and_dir_ignores.sh")?;
3636
let repo_dir = dir.join("repo");
3737
let git_dir = repo_dir.join(".git");
3838
let baseline = std::fs::read(git_dir.parent().unwrap().join("git-check-ignore.baseline"))?;

git-commitgraph/tests/commitgraph.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ pub fn check_common(cg: &Graph, expected: &HashMap<String, RefInfo, impl BuildHa
6060
);
6161
}
6262

63-
use git_testtools::scripted_fixture_repo_read_only;
63+
use git_testtools::scripted_fixture_read_only;
6464
pub fn make_readonly_repo(script_path: &str) -> std::path::PathBuf {
65-
scripted_fixture_repo_read_only(script_path).expect("script succeeds all the time")
65+
scripted_fixture_read_only(script_path).expect("script succeeds all the time")
6666
}
6767

6868
pub fn hex_to_id(hex: &[u8]) -> git_hash::ObjectId {

git-config/tests/file/init/comfort.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ fn from_environment_overrides() {
2121
#[test]
2222
#[serial]
2323
fn from_git_dir() -> crate::Result {
24-
let worktree_dir = git_testtools::scripted_fixture_repo_read_only("make_config_repo.sh")?;
24+
let worktree_dir = git_testtools::scripted_fixture_read_only("make_config_repo.sh")?;
2525
let git_dir = worktree_dir.join(".git");
2626
let worktree_dir = worktree_dir.canonicalize()?;
2727
let _env = Env::new()
@@ -84,7 +84,7 @@ fn from_git_dir() -> crate::Result {
8484
#[test]
8585
#[serial]
8686
fn from_git_dir_with_worktree_extension() -> crate::Result {
87-
let git_dir = git_testtools::scripted_fixture_repo_read_only("config_with_worktree_extension.sh")?
87+
let git_dir = git_testtools::scripted_fixture_read_only("config_with_worktree_extension.sh")?
8888
.join("main-worktree")
8989
.join(".git");
9090
let config = git_config::File::from_git_dir(git_dir)?;

git-date/tests/time/baseline.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ struct Sample {
1313

1414
static BASELINE: Lazy<HashMap<String, Sample>> = Lazy::new(|| {
1515
(|| -> Result<_> {
16-
let base = git_testtools::scripted_fixture_repo_read_only("generate_git_date_baseline.sh")?;
16+
let base = git_testtools::scripted_fixture_read_only("generate_git_date_baseline.sh")?;
1717
let mut map = HashMap::new();
1818
let file = std::fs::read(base.join("baseline.git"))?;
1919
let baseline = std::str::from_utf8(&file).expect("valid utf");

git-diff/tests/tree/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ mod changes {
1111

1212
fn db(args: impl IntoIterator<Item = &'static str>) -> crate::Result<git_odb::Handle> {
1313
git_odb::at(
14-
git_testtools::scripted_fixture_repo_read_only_with_args("make_diff_repo.sh", args)?
14+
git_testtools::scripted_fixture_read_only_with_args("make_diff_repo.sh", args)?
1515
.join(".git")
1616
.join("objects"),
1717
)

git-discover/tests/is_git/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ fn verify_on_exfat() -> crate::Result<()> {
77

88
use git_discover::repository::Kind;
99

10-
let fixtures = git_testtools::scripted_fixture_repo_read_only("make_exfat_repo_darwin.sh")?;
10+
let fixtures = git_testtools::scripted_fixture_read_only("make_exfat_repo_darwin.sh")?;
1111
let mount_point = tempfile::tempdir()?;
1212

1313
let _cleanup = {
@@ -54,7 +54,7 @@ fn missing_configuration_file_is_not_a_dealbreaker_in_bare_repo() -> crate::Resu
5454
fn missing_configuration_file_is_not_a_dealbreaker_in_nonbare_repo() -> crate::Result {
5555
for name in ["worktree-no-config-after-init/.git", "worktree-no-config/.git"] {
5656
let repo = repo_path()?.join(name);
57-
let kind = git_discover::is_git(&repo)?;
57+
let kind = git_discover::is_git(repo)?;
5858
assert_eq!(kind, git_discover::repository::Kind::WorkTree { linked_git_dir: None });
5959
}
6060
Ok(())

git-discover/tests/isolated.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use serial_test::serial;
66
#[test]
77
#[serial]
88
fn upwards_with_relative_directories_and_optional_ceiling() -> git_testtools::Result {
9-
let repo = git_testtools::scripted_fixture_repo_read_only("make_basic_repo.sh")?;
9+
let repo = git_testtools::scripted_fixture_read_only("make_basic_repo.sh")?;
1010

1111
std::env::set_current_dir(repo.join("subdir"))?;
1212
let cwd = std::env::current_dir()?;

git-discover/tests/upwards/ceiling_dirs.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ fn git_dir_candidate_within_ceiling_allows_discovery() -> crate::Result {
1919
let work_dir = repo_path()?;
2020
let dir = work_dir.join("some/very/deeply/nested/subdir");
2121
let (repo_path, _trust) = git_discover::upwards_opts(
22-
&dir,
22+
dir,
2323
Options {
2424
ceiling_dirs: vec![work_dir.clone()],
2525
..Default::default()
@@ -37,7 +37,7 @@ fn ceiling_dir_limits_are_respected_and_prevent_discovery() -> crate::Result {
3737
let dir = work_dir.join("some/very/deeply/nested/subdir");
3838

3939
let err = git_discover::upwards_opts(
40-
&dir,
40+
dir,
4141
Options {
4242
ceiling_dirs: vec![work_dir.join("some/../some")],
4343
..Default::default()
@@ -57,7 +57,7 @@ fn no_matching_ceiling_dir_error_can_be_suppressed() -> crate::Result {
5757
let work_dir = repo_path()?;
5858
let dir = work_dir.join("some/very/deeply/nested/subdir");
5959
let (repo_path, _trust) = git_discover::upwards_opts(
60-
&dir,
60+
dir,
6161
Options {
6262
match_ceiling_dir_or_error: false,
6363
ceiling_dirs: vec![
@@ -80,7 +80,7 @@ fn more_restrictive_ceiling_dirs_overrule_less_restrictive_ones() -> crate::Resu
8080
let work_dir = repo_path()?;
8181
let dir = work_dir.join("some/very/deeply/nested/subdir");
8282
let err = git_discover::upwards_opts(
83-
&dir,
83+
dir,
8484
Options {
8585
ceiling_dirs: vec![work_dir.clone(), work_dir.join("some")],
8686
..Default::default()
@@ -100,7 +100,7 @@ fn ceiling_dirs_are_not_processed_differently_than_the_git_dir_candidate() -> cr
100100
let work_dir = repo_path()?;
101101
let dir = work_dir.join("some/very/deeply/nested/subdir/../../../../../..");
102102
let (repo_path, _trust) = git_discover::upwards_opts(
103-
&dir,
103+
dir,
104104
Options {
105105
match_ceiling_dir_or_error: false,
106106
ceiling_dirs: vec![Path::new("./some").into()],
@@ -123,7 +123,7 @@ fn no_matching_ceiling_dirs_errors_by_default() -> crate::Result {
123123
let relative_work_dir = repo_path()?;
124124
let dir = relative_work_dir.join("some");
125125
let res = git_discover::upwards_opts(
126-
&dir,
126+
dir,
127127
Options {
128128
ceiling_dirs: vec!["/something/somewhere".into()],
129129
..Default::default()

git-discover/tests/upwards/mod.rs

+10-10
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ fn from_bare_git_dir_without_config_file() -> crate::Result {
3838
fn from_inside_bare_git_dir() -> crate::Result {
3939
let git_dir = repo_path()?.join("bare.git");
4040
let dir = git_dir.join("objects");
41-
let (path, trust) = git_discover::upwards(&dir)?;
41+
let (path, trust) = git_discover::upwards(dir)?;
4242
assert_eq!(
4343
path.as_ref(),
4444
git_dir,
@@ -89,7 +89,7 @@ fn from_working_dir_no_config() -> crate::Result {
8989
fn from_nested_dir() -> crate::Result {
9090
let working_dir = repo_path()?;
9191
let dir = working_dir.join("some/very/deeply/nested/subdir");
92-
let (path, trust) = git_discover::upwards(&dir)?;
92+
let (path, trust) = git_discover::upwards(dir)?;
9393
assert_eq!(path.kind(), Kind::WorkTree { linked_git_dir: None });
9494
assert_eq!(path.as_ref(), working_dir, "a working tree dir yields the git dir");
9595
assert_eq!(trust, expected_trust());
@@ -105,7 +105,7 @@ fn from_dir_with_dot_dot() -> crate::Result {
105105
// exploring ancestors.)
106106
let working_dir = repo_path()?;
107107
let dir = working_dir.join("some/very/deeply/nested/subdir/../../../../../..");
108-
let (path, trust) = git_discover::upwards(&dir)?;
108+
let (path, trust) = git_discover::upwards(dir)?;
109109
assert_ne!(
110110
path.as_ref().canonicalize()?,
111111
working_dir.canonicalize()?,
@@ -140,7 +140,7 @@ fn from_dir_with_dot_dot() -> crate::Result {
140140
fn from_nested_dir_inside_a_git_dir() -> crate::Result {
141141
let working_dir = repo_path()?;
142142
let dir = working_dir.join(".git").join("objects");
143-
let (path, trust) = git_discover::upwards(&dir)?;
143+
let (path, trust) = git_discover::upwards(dir)?;
144144
assert_eq!(path.kind(), Kind::WorkTree { linked_git_dir: None });
145145
assert_eq!(path.as_ref(), working_dir, "we find .git directories on the way");
146146
assert_eq!(trust, expected_trust());
@@ -226,7 +226,7 @@ fn cross_fs() -> crate::Result {
226226
return Ok(());
227227
}
228228

229-
let top_level_repo = git_testtools::scripted_fixture_repo_writable("make_basic_repo.sh")?;
229+
let top_level_repo = git_testtools::scripted_fixture_writable("make_basic_repo.sh")?;
230230

231231
let _cleanup = {
232232
// Create an empty dmg file
@@ -269,7 +269,7 @@ fn cross_fs() -> crate::Result {
269269
));
270270

271271
let (repo_path, _trust) = git_discover::upwards_opts(
272-
&top_level_repo.path().join("remote"),
272+
top_level_repo.path().join("remote"),
273273
Options {
274274
cross_fs: true,
275275
..Default::default()
@@ -307,7 +307,7 @@ fn do_not_shorten_absolute_paths() -> crate::Result {
307307
mod submodules {
308308
#[test]
309309
fn by_their_worktree_checkout() -> crate::Result {
310-
let dir = git_testtools::scripted_fixture_repo_read_only("make_submodules.sh")?;
310+
let dir = git_testtools::scripted_fixture_read_only("make_submodules.sh")?;
311311
let parent = dir.join("with-submodules");
312312
let modules = parent.join(".git").join("modules");
313313
for module in ["m1", "dir/m1"] {
@@ -322,7 +322,7 @@ mod submodules {
322322
submodule_m1_gitdir
323323
);
324324

325-
let (path, _trust) = git_discover::upwards(&submodule_m1_workdir.join("subdir"))?;
325+
let (path, _trust) = git_discover::upwards(submodule_m1_workdir.join("subdir"))?;
326326
assert!(
327327
matches!(path, git_discover::repository::Path::LinkedWorkTree{ref work_dir, ref git_dir} if work_dir == &submodule_m1_workdir && git_dir == &submodule_m1_gitdir),
328328
"{:?} should match {:?} {:?}",
@@ -336,7 +336,7 @@ mod submodules {
336336

337337
#[test]
338338
fn by_their_module_git_dir() -> crate::Result {
339-
let dir = git_testtools::scripted_fixture_repo_read_only("make_submodules.sh")?;
339+
let dir = git_testtools::scripted_fixture_read_only("make_submodules.sh")?;
340340
let modules = dir.join("with-submodules").join(".git").join("modules");
341341
for module in ["m1", "dir/m1"] {
342342
let submodule_m1_gitdir = modules.join(module);
@@ -353,5 +353,5 @@ mod submodules {
353353
}
354354

355355
pub(crate) fn repo_path() -> crate::Result<PathBuf> {
356-
git_testtools::scripted_fixture_repo_read_only("make_basic_repo.sh")
356+
git_testtools::scripted_fixture_read_only("make_basic_repo.sh")
357357
}

git-features/Cargo.toml

+2-3
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ default = []
1919
progress = ["prodash"]
2020

2121
## If set, walkdir iterators will be multi-threaded.
22-
## This feature has [certain side-effects](https://github.com/starship/starship/issues/4251) of rayon threadpool configuration with `jwalk`.
23-
fs-walkdir-parallel = ["parallel", "jwalk" ]
22+
fs-walkdir-parallel = [ "num_cpus", "jwalk" ]
2423

2524
## Use scoped threads and channels to parallelize common workloads on multiple objects. If enabled, it is used everywhere
2625
## where it makes sense.
@@ -107,7 +106,7 @@ crossbeam-channel = { version = "0.5.0", optional = true }
107106
num_cpus = { version = "1.13.0", optional = true }
108107
parking_lot = { version = "0.12.0", default-features = false, optional = true }
109108

110-
jwalk = { version = "0.6.0", optional = true }
109+
jwalk = { version = "0.8.1", optional = true }
111110
## Makes facilities of the `walkdir` crate partially available.
112111
## In conjunction with the **parallel** feature, directory walking will be parallel instead behind a compatible interface.
113112
walkdir = { version = "2.3.2", optional = true } # used when parallel is off

git-features/src/fs.rs

+48-14
Original file line numberDiff line numberDiff line change
@@ -6,29 +6,62 @@
66
//! For information on how to use the [`WalkDir`] type, have a look at
77
//! * [`jwalk::WalkDir`](https://docs.rs/jwalk/0.5.1/jwalk/type.WalkDir.html) if `parallel` feature is enabled
88
//! * [walkdir::WalkDir](https://docs.rs/walkdir/2.3.1/walkdir/struct.WalkDir.html) otherwise
9-
#[cfg(feature = "fs-walkdir-parallel")]
9+
10+
#[cfg(any(feature = "walkdir", feature = "fs-walkdir-parallel"))]
11+
mod shared {
12+
/// The desired level of parallelism.
13+
pub enum Parallelism {
14+
/// Do not parallelize at all by making a serial traversal on the current thread.
15+
Serial,
16+
/// Create a new thread pool for each traversal with up to 16 threads or the amount of logical cores of the machine.
17+
ThreadPoolPerTraversal {
18+
/// The base name of the threads we create as part of the thread-pool.
19+
thread_name: &'static str,
20+
},
21+
}
22+
}
23+
1024
///
25+
#[cfg(feature = "fs-walkdir-parallel")]
1126
pub mod walkdir {
12-
use std::path::Path;
13-
27+
pub use super::shared::Parallelism;
1428
pub use jwalk::{DirEntry as DirEntryGeneric, DirEntryIter as DirEntryIterGeneric, Error, WalkDir};
29+
use std::path::Path;
1530

1631
/// An alias for an uncustomized directory entry to match the one of the non-parallel version offered by `walkdir`.
1732
pub type DirEntry = DirEntryGeneric<((), ())>;
1833

19-
/// Instantiate a new directory iterator which will not skip hidden files.
20-
pub fn walkdir_new(root: impl AsRef<Path>) -> WalkDir {
21-
WalkDir::new(root)
22-
.skip_hidden(false)
23-
.parallelism(jwalk::Parallelism::Serial)
34+
impl From<Parallelism> for jwalk::Parallelism {
35+
fn from(v: Parallelism) -> Self {
36+
match v {
37+
Parallelism::Serial => jwalk::Parallelism::Serial,
38+
Parallelism::ThreadPoolPerTraversal { thread_name } => {
39+
let pool = jwalk::rayon::ThreadPoolBuilder::new()
40+
.num_threads(num_cpus::get().min(16))
41+
.stack_size(128 * 1024)
42+
.thread_name(move |idx| format!("{thread_name} {idx}"))
43+
.build()
44+
.expect("we only set options that can't cause a build failure");
45+
jwalk::Parallelism::RayonExistingPool {
46+
pool: pool.into(),
47+
busy_timeout: None,
48+
}
49+
}
50+
}
51+
}
52+
}
53+
54+
/// Instantiate a new directory iterator which will not skip hidden files, with the given level of `parallelism`.
55+
pub fn walkdir_new(root: impl AsRef<Path>, parallelism: Parallelism) -> WalkDir {
56+
WalkDir::new(root).skip_hidden(false).parallelism(parallelism.into())
2457
}
2558

2659
/// Instantiate a new directory iterator which will not skip hidden files and is sorted
27-
pub fn walkdir_sorted_new(root: impl AsRef<Path>) -> WalkDir {
60+
pub fn walkdir_sorted_new(root: impl AsRef<Path>, parallelism: Parallelism) -> WalkDir {
2861
WalkDir::new(root)
2962
.skip_hidden(false)
3063
.sort(true)
31-
.parallelism(jwalk::Parallelism::Serial)
64+
.parallelism(parallelism.into())
3265
}
3366

3467
/// The Iterator yielding directory items
@@ -38,17 +71,18 @@ pub mod walkdir {
3871
#[cfg(all(feature = "walkdir", not(feature = "fs-walkdir-parallel")))]
3972
///
4073
pub mod walkdir {
74+
pub use super::shared::Parallelism;
4175
use std::path::Path;
4276

4377
pub use walkdir::{DirEntry, Error, WalkDir};
4478

45-
/// Instantiate a new directory iterator which will not skip hidden files.
46-
pub fn walkdir_new(root: impl AsRef<Path>) -> WalkDir {
79+
/// Instantiate a new directory iterator which will not skip hidden files, with the given level of `parallelism`.
80+
pub fn walkdir_new(root: impl AsRef<Path>, _: Parallelism) -> WalkDir {
4781
WalkDir::new(root)
4882
}
4983

50-
/// Instantiate a new directory iterator which will not skip hidden files and is sorted
51-
pub fn walkdir_sorted_new(root: impl AsRef<Path>) -> WalkDir {
84+
/// Instantiate a new directory iterator which will not skip hidden files and is sorted, with the given level of `parallelism`.
85+
pub fn walkdir_sorted_new(root: impl AsRef<Path>, _: Parallelism) -> WalkDir {
5286
WalkDir::new(root).sort_by_file_name()
5387
}
5488

git-features/src/parallel/mod.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,7 @@ pub fn optimize_chunk_size_and_thread_limit(
8888
.map(|num_items| {
8989
let desired_chunks_per_thread_at_least = 2;
9090
let items = num_items;
91-
let chunk_size = (items / (available_threads * desired_chunks_per_thread_at_least))
92-
.max(1)
93-
.min(upper);
91+
let chunk_size = (items / (available_threads * desired_chunks_per_thread_at_least)).clamp(1, upper);
9492
let num_chunks = items / chunk_size;
9593
let thread_limit = if num_chunks <= available_threads {
9694
(num_chunks / desired_chunks_per_thread_at_least).max(1)

git-features/src/progress.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ where
5050
{
5151
fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
5252
let bytes_read = self.inner.read(buf)?;
53-
self.progress.inc_by(bytes_read as usize);
53+
self.progress.inc_by(bytes_read);
5454
Ok(bytes_read)
5555
}
5656
}

git-glob/tests/pattern/matching.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ impl<'a> Baseline<'a> {
4343

4444
#[test]
4545
fn compare_baseline_with_ours() {
46-
let dir = git_testtools::scripted_fixture_repo_read_only("make_baseline.sh").unwrap();
46+
let dir = git_testtools::scripted_fixture_read_only("make_baseline.sh").unwrap();
4747
let (mut total_matches, mut total_correct, mut panics) = (0, 0, 0);
4848
let mut mismatches = Vec::new();
4949
for (input_file, expected_matches, case) in &[

0 commit comments

Comments
 (0)