1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
use self::code_from_cargo::Kind;
use crate::errors::*;
use std::collections::HashMap;
use std::path::{Path, PathBuf};
use url::Url;
const CRATES_IO_INDEX: &str = "https://github.com/rust-lang/crates.io-index";
const CRATES_IO_REGISTRY: &str = "crates-io";
pub fn registry_path(manifest_path: &Path, registry: Option<&str>) -> Result<PathBuf> {
registry_path_from_url(®istry_url(manifest_path, registry)?)
}
pub fn registry_path_from_url(registry: &Url) -> Result<PathBuf> {
Ok(cargo_home()?
.join("registry")
.join("index")
.join(short_name(registry)))
}
#[derive(Debug, Deserialize)]
struct Source {
#[serde(rename = "replace-with")]
replace_with: Option<String>,
registry: Option<String>,
}
#[derive(Debug, Deserialize)]
struct Registry {
index: Option<String>,
}
#[derive(Debug, Deserialize)]
struct CargoConfig {
#[serde(default)]
registries: HashMap<String, Registry>,
#[serde(default)]
source: HashMap<String, Source>,
}
fn cargo_home() -> Result<PathBuf> {
let default_cargo_home = dirs::home_dir()
.map(|x| x.join(".cargo"))
.chain_err(|| ErrorKind::ReadHomeDirFailure)?;
let cargo_home = std::env::var("CARGO_HOME")
.map(PathBuf::from)
.unwrap_or(default_cargo_home);
Ok(cargo_home)
}
pub fn registry_url(manifest_path: &Path, registry: Option<&str>) -> Result<Url> {
fn read_config(registries: &mut HashMap<String, Source>, path: impl AsRef<Path>) -> Result<()> {
let content = std::fs::read(path)?;
let config =
toml::from_slice::<CargoConfig>(&content).map_err(|_| ErrorKind::InvalidCargoConfig)?;
for (key, value) in config.registries {
registries.entry(key).or_insert(Source {
registry: value.index,
replace_with: None,
});
}
for (key, value) in config.source {
registries.entry(key).or_insert(value);
}
Ok(())
}
let mut registries: HashMap<String, Source> = HashMap::new();
for work_dir in manifest_path
.parent()
.expect("there must be a parent directory")
.ancestors()
{
let config_path = work_dir.join(".cargo").join("config");
if config_path.is_file() {
read_config(&mut registries, config_path)?;
}
}
let default_config_path = cargo_home()?.join("config");
if default_config_path.is_file() {
read_config(&mut registries, default_config_path)?;
}
let mut source = match registry {
Some(CRATES_IO_INDEX) | None => {
registries
.remove(CRATES_IO_REGISTRY)
.unwrap_or_else(|| Source {
replace_with: None,
registry: Some(CRATES_IO_INDEX.to_string()),
})
}
Some(r) => registries
.remove(r)
.chain_err(|| ErrorKind::NoSuchRegistryFound(r.to_string()))?,
};
while let Some(replace_with) = &source.replace_with {
source = registries
.remove(replace_with)
.chain_err(|| ErrorKind::NoSuchSourceFound(replace_with.to_string()))?;
}
let registry_url = source
.registry
.and_then(|x| Url::parse(&x).ok())
.chain_err(|| ErrorKind::InvalidCargoConfig)?;
Ok(registry_url)
}
fn short_name(registry: &Url) -> String {
#![allow(deprecated)]
use std::hash::{Hash, Hasher, SipHasher};
let mut hasher = SipHasher::new_with_keys(0, 0);
Kind::Registry.hash(&mut hasher);
registry.as_str().hash(&mut hasher);
let hash = hex::encode(hasher.finish().to_le_bytes());
let ident = registry.host_str().unwrap_or("").to_string();
format!("{}-{}", ident, hash)
}
#[test]
fn test_short_name() {
fn test_helper(url: &str, name: &str) {
let url = Url::parse(url).unwrap();
assert_eq!(short_name(&url), name);
}
test_helper(
"https://github.com/rust-lang/crates.io-index",
"github.com-1ecc6299db9ec823",
);
}
mod code_from_cargo {
#![allow(dead_code)]
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub enum Kind {
Git(GitReference),
Path,
Registry,
LocalRegistry,
Directory,
}
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub enum GitReference {
Tag(String),
Branch(String),
Rev(String),
}
}