Skip to content

Commit 1566c92

Browse files
committed
Auto merge of #4259 - matklad:conventions, r=alexcrichton
Conventions r? @alexcrichton I'd love to refactor our handing of inferring targets by convention, because it is super difficult to understand, and quite probably contains a couple of unintended/undocumented conventions (like `src/foo.rs` being a binary `foo` if there's no library in the package). As a first step, I've just moved all the logic (600 loc) to a separate file from the `toml.rs` file, which used to be just **huge** (we even use in in IntelliJ Rust for performance testing :) ), and now it is "only" just above 1kloc :)
2 parents 2b8de5d + 71e6629 commit 1566c92

14 files changed

+700
-761
lines changed

src/cargo/core/workspace.rs

+3-4
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ use glob::glob;
77

88
use core::{Package, VirtualManifest, EitherManifest, SourceId};
99
use core::{PackageIdSpec, Dependency, Profile, Profiles};
10-
use ops;
1110
use util::{Config, Filesystem};
1211
use util::errors::{CargoResult, CargoResultExt};
1312
use util::paths;
13+
use util::toml::read_manifest;
1414

1515
/// The core abstraction in Cargo for working with a workspace of crates.
1616
///
@@ -594,9 +594,8 @@ impl<'cfg> Packages<'cfg> {
594594
Entry::Occupied(e) => Ok(e.into_mut()),
595595
Entry::Vacant(v) => {
596596
let source_id = SourceId::for_path(key)?;
597-
let pair = ops::read_manifest(&manifest_path, &source_id,
598-
self.config)?;
599-
let (manifest, _nested_paths) = pair;
597+
let (manifest, _nested_paths) =
598+
read_manifest(&manifest_path, &source_id, self.config)?;
600599
Ok(v.insert(match manifest {
601600
EitherManifest::Real(manifest) => {
602601
MaybePackage::Package(Package::new(manifest,

src/cargo/ops/cargo_read_manifest.rs

+2-15
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,10 @@ use std::io;
44
use std::path::{Path, PathBuf};
55

66
use core::{Package, SourceId, PackageId, EitherManifest};
7-
use util::{self, paths, Config};
7+
use util::{self, Config};
88
use util::errors::{CargoResult, CargoResultExt};
99
use util::important_paths::find_project_manifest_exact;
10-
use util::toml::Layout;
11-
12-
pub fn read_manifest(path: &Path, source_id: &SourceId, config: &Config)
13-
-> CargoResult<(EitherManifest, Vec<PathBuf>)> {
14-
trace!("read_package; path={}; source-id={}", path.display(), source_id);
15-
let contents = paths::read(path)?;
16-
17-
let layout = Layout::from_project_path(path.parent().unwrap());
18-
let root = layout.root.clone();
19-
util::toml::to_manifest(&contents, source_id, layout, config).chain_err(|| {
20-
format!("failed to parse manifest at `{}`",
21-
root.join("Cargo.toml").display())
22-
})
23-
}
10+
use util::toml::read_manifest;
2411

2512
pub fn read_package(path: &Path, source_id: &SourceId, config: &Config)
2613
-> CargoResult<(Package, Vec<PathBuf>)> {

src/cargo/ops/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
pub use self::cargo_clean::{clean, CleanOptions};
22
pub use self::cargo_compile::{compile, compile_with_exec, compile_ws, CompileOptions};
33
pub use self::cargo_compile::{CompileFilter, CompileMode, MessageFormat, Packages};
4-
pub use self::cargo_read_manifest::{read_manifest,read_package,read_packages};
4+
pub use self::cargo_read_manifest::{read_package, read_packages};
55
pub use self::cargo_rustc::{compile_targets, Compilation, Kind, Unit};
66
pub use self::cargo_rustc::{Context, is_bad_artifact_name};
77
pub use self::cargo_rustc::{BuildOutput, BuildConfig, TargetConfig};

src/cargo/util/paths.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ pub fn normalize_path(path: &Path) -> PathBuf {
5454
ret
5555
}
5656

57-
pub fn without_prefix<'a>(a: &'a Path, b: &'a Path) -> Option<&'a Path> {
58-
let mut a = a.components();
59-
let mut b = b.components();
57+
pub fn without_prefix<'a>(long_path: &'a Path, prefix: &'a Path) -> Option<&'a Path> {
58+
let mut a = long_path.components();
59+
let mut b = prefix.components();
6060
loop {
6161
match b.next() {
6262
Some(y) => match a.next() {

0 commit comments

Comments
 (0)