Skip to content

Commit

Permalink
Use the libsyntax PkgId parser in Rustpkg, but keep Rustpkg's version…
Browse files Browse the repository at this point in the history
… smarts.

This fixes a bug where new syntax crate IDs would cause rustpkg to fail to
build crates.
  • Loading branch information
metajack committed Jan 17, 2014
1 parent 4098327 commit 363fa51
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 26 deletions.
34 changes: 11 additions & 23 deletions src/librustpkg/crate_id.rs
Expand Up @@ -9,9 +9,10 @@
// except according to those terms.

use version::{try_getting_version, try_getting_local_version,
Version, NoVersion, split_version};
Version, NoVersion, ExactRevision};
use std::hash::Streaming;
use std::hash;
use syntax::crateid;

/// Path-fragment identifier of a package such as
/// 'github.com/graydon/test'; path must be a relative
Expand Down Expand Up @@ -45,27 +46,14 @@ impl CrateId {
pub fn new(s: &str) -> CrateId {
use conditions::bad_pkg_id::cond;

let mut given_version = None;

// Did the user request a specific version?
let s = match split_version(s) {
Some((path, v)) => {
given_version = Some(v);
path
}
None => {
s
}
};

let path = Path::new(s);
if !path.is_relative() {
return cond.raise((path, ~"absolute crate_id"));
}
if path.filename().is_none() {
return cond.raise((path, ~"0-length crate_id"));
let raw_crateid: Option<crateid::CrateId> = from_str(s);
if raw_crateid.is_none() {
return cond.raise((Path::new(s), ~"bad crateid"))
}
let short_name = path.filestem_str().expect(format!("Strange path! {}", s));
let raw_crateid = raw_crateid.unwrap();
let crateid::CrateId { path, name, version } = raw_crateid;
let path = Path::new(path);
let given_version = version.map(|v| ExactRevision(v));

let version = match given_version {
Some(v) => v,
Expand All @@ -79,8 +67,8 @@ impl CrateId {
};

CrateId {
path: path.clone(),
short_name: short_name.to_owned(),
path: path,
short_name: name,
version: version
}
}
Expand Down
6 changes: 3 additions & 3 deletions src/librustpkg/tests.rs
Expand Up @@ -746,8 +746,8 @@ fn test_crate_ids_must_be_relative_path_like() {
CrateId::new("github.com/catamorphism/test-pkg").to_str());

cond.trap(|(p, e)| {
assert!(p.filename().is_none())
assert!("0-length crate_id" == e);
assert!(p.filename().is_none());
assert!("bad crateid" == e);
whatever.clone()
}).inside(|| {
let x = CrateId::new("");
Expand All @@ -757,7 +757,7 @@ fn test_crate_ids_must_be_relative_path_like() {
cond.trap(|(p, e)| {
let abs = os::make_absolute(&Path::new("foo/bar/quux"));
assert_eq!(p, abs);
assert!("absolute crate_id" == e);
assert!("bad crateid" == e);
whatever.clone()
}).inside(|| {
let zp = os::make_absolute(&Path::new("foo/bar/quux"));
Expand Down

0 comments on commit 363fa51

Please sign in to comment.