rust/src/cargo/cargo.rs

1920 lines
53 KiB
Rust
Raw Normal View History

2011-11-30 17:57:46 -06:00
// cargo.rs - Rust package manager
import syntax::{ast, codemap, parse, visit, attr};
import syntax::diagnostic::span_handler;
import codemap::span;
import rustc::metadata::filesearch::{get_cargo_root, get_cargo_root_nearest,
get_cargo_sysroot, libdir};
import syntax::diagnostic;
2011-11-30 17:57:46 -06:00
import result::{ok, err};
2012-08-14 15:38:35 -05:00
import io::WriterUtil;
import std::{map, json, tempfile, term, sort, getopts};
import map::hashmap;
import to_str::to_str;
import getopts::{optflag, optopt, opt_present};
2011-11-30 17:57:46 -06:00
2011-12-16 19:33:39 -06:00
type package = {
name: ~str,
uuid: ~str,
url: ~str,
method: ~str,
description: ~str,
reference: option<~str>,
tags: ~[~str],
versions: ~[(~str, ~str)]
};
type local_package = {
name: ~str,
metaname: ~str,
version: ~str,
files: ~[~str]
2011-12-16 19:33:39 -06:00
};
type source = @{
name: ~str,
mut url: ~str,
mut method: ~str,
mut key: option<~str>,
mut keyfp: option<~str>,
mut packages: ~[mut package]
2011-12-16 19:33:39 -06:00
};
2011-12-08 22:50:25 -06:00
type cargo = {
pgp: bool,
root: Path,
installdir: Path,
bindir: Path,
libdir: Path,
workdir: Path,
sourcedir: Path,
sources: map::hashmap<~str, source>,
mut current_install: ~str,
dep_cache: map::hashmap<~str, bool>,
opts: options
2011-12-08 22:50:25 -06:00
};
type crate = {
name: ~str,
vers: ~str,
uuid: ~str,
desc: option<~str>,
sigs: option<~str>,
crate_type: option<~str>,
deps: ~[~str]
2011-11-30 17:57:46 -06:00
};
type options = {
test: bool,
mode: mode,
free: ~[~str],
help: bool,
};
enum mode { system_mode, user_mode, local_mode }
fn opts() -> ~[getopts::opt] {
~[optflag(~"g"), optflag(~"G"), optflag(~"test"),
optflag(~"h"), optflag(~"help")]
}
fn info(msg: ~str) {
let out = io::stdout();
if term::color_supported() {
term::fg(out, term::color_green);
out.write_str(~"info: ");
term::reset(out);
out.write_line(msg);
} else { out.write_line(~"info: " + msg); }
2011-12-16 19:33:39 -06:00
}
fn warn(msg: ~str) {
let out = io::stdout();
if term::color_supported() {
term::fg(out, term::color_yellow);
out.write_str(~"warning: ");
term::reset(out);
out.write_line(msg);
}else { out.write_line(~"warning: " + msg); }
2011-12-16 19:33:39 -06:00
}
fn error(msg: ~str) {
let out = io::stdout();
if term::color_supported() {
term::fg(out, term::color_red);
out.write_str(~"error: ");
term::reset(out);
out.write_line(msg);
}
else { out.write_line(~"error: " + msg); }
}
fn is_uuid(id: ~str) -> bool {
let parts = str::split_str(id, ~"-");
if vec::len(parts) == 5u {
let mut correct = 0u;
2012-06-30 18:19:07 -05:00
for vec::eachi(parts) |i, part| {
fn is_hex_digit(ch: char) -> bool {
('0' <= ch && ch <= '9') ||
('a' <= ch && ch <= 'f') ||
('A' <= ch && ch <= 'F')
}
2012-06-03 01:55:32 -05:00
if !part.all(is_hex_digit) {
2012-08-01 19:30:05 -05:00
return false;
2012-06-03 01:55:32 -05:00
}
2012-08-06 14:34:08 -05:00
match i {
2012-08-03 21:59:04 -05:00
0u => {
if str::len(part) == 8u {
correct += 1u;
}
}
2012-08-03 21:59:04 -05:00
1u | 2u | 3u => {
if str::len(part) == 4u {
correct += 1u;
}
}
2012-08-03 21:59:04 -05:00
4u => {
if str::len(part) == 12u {
correct += 1u;
}
}
2012-08-03 21:59:04 -05:00
_ => { }
}
}
if correct >= 5u {
2012-08-01 19:30:05 -05:00
return true;
}
}
2012-08-01 19:30:05 -05:00
return false;
}
2012-06-03 01:30:11 -05:00
#[test]
fn test_is_uuid() {
assert is_uuid(~"aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaafAF09");
assert !is_uuid(~"aaaaaaaa-aaaa-aaaa-aaaaa-aaaaaaaaaaaa");
assert !is_uuid(~"");
assert !is_uuid(~"aaaaaaaa-aaa -aaaa-aaaa-aaaaaaaaaaaa");
assert !is_uuid(~"aaaaaaaa-aaa!-aaaa-aaaa-aaaaaaaaaaaa");
assert !is_uuid(~"aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa-a");
assert !is_uuid(~"aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaป");
2012-06-03 01:30:11 -05:00
}
// FIXME (#2661): implement url/URL parsing so we don't have to resort
// to weak checks
fn has_archive_extension(p: ~str) -> bool {
str::ends_with(p, ~".tar") ||
str::ends_with(p, ~".tar.gz") ||
str::ends_with(p, ~".tar.bz2") ||
str::ends_with(p, ~".tar.Z") ||
str::ends_with(p, ~".tar.lz") ||
str::ends_with(p, ~".tar.xz") ||
str::ends_with(p, ~".tgz") ||
str::ends_with(p, ~".tbz") ||
str::ends_with(p, ~".tbz2") ||
str::ends_with(p, ~".tb2") ||
str::ends_with(p, ~".taz") ||
str::ends_with(p, ~".tlz") ||
str::ends_with(p, ~".txz")
}
fn is_archive_path(u: ~str) -> bool {
has_archive_extension(u) && os::path_exists(&Path(u))
}
fn is_archive_url(u: ~str) -> bool {
// FIXME (#2661): this requires the protocol bit - if we had proper
// url parsing, we wouldn't need it
2012-08-06 14:34:08 -05:00
match str::find_str(u, ~"://") {
2012-08-25 20:19:54 -05:00
option::some(_) => has_archive_extension(u),
2012-08-03 21:59:04 -05:00
_ => false
}
}
fn is_git_url(url: ~str) -> bool {
if str::ends_with(url, ~"/") { str::ends_with(url, ~".git/") }
else {
str::starts_with(url, ~"git://") || str::ends_with(url, ~".git")
}
}
fn assume_source_method(url: ~str) -> ~str {
if is_git_url(url) {
2012-08-01 19:30:05 -05:00
return ~"git";
}
if str::starts_with(url, ~"file://") || os::path_exists(&Path(url)) {
2012-08-01 19:30:05 -05:00
return ~"file";
}
~"curl"
}
fn load_link(mis: ~[@ast::meta_item]) -> (option<~str>,
option<~str>,
option<~str>) {
let mut name = none;
let mut vers = none;
let mut uuid = none;
2012-06-30 18:19:07 -05:00
for mis.each |a| {
2012-08-06 14:34:08 -05:00
match a.node {
2012-08-03 21:59:04 -05:00
ast::meta_name_value(v, {node: ast::lit_str(s), span: _}) => {
2012-07-18 18:18:02 -05:00
match v {
2012-08-03 21:59:04 -05:00
~"name" => name = some(*s),
~"vers" => vers = some(*s),
~"uuid" => uuid = some(*s),
_ => { }
2011-11-30 17:57:46 -06:00
}
}
2012-08-03 21:59:04 -05:00
_ => fail ~"load_link: meta items must be name-values"
2011-11-30 17:57:46 -06:00
}
}
(name, vers, uuid)
}
fn load_crate(filename: &Path) -> option<crate> {
2012-06-06 11:50:08 -05:00
let sess = parse::new_parse_sess(none);
let c = parse::parse_crate_from_crate_file(filename, ~[], sess);
2011-11-30 17:57:46 -06:00
let mut name = none;
let mut vers = none;
let mut uuid = none;
let mut desc = none;
let mut sigs = none;
let mut crate_type = none;
2011-11-30 17:57:46 -06:00
2012-06-30 18:19:07 -05:00
for c.node.attrs.each |a| {
2012-08-06 14:34:08 -05:00
match a.node.value.node {
2012-08-25 20:19:54 -05:00
ast::meta_name_value(v, {node: ast::lit_str(_), span: _}) => {
2012-07-18 18:18:02 -05:00
match v {
~"desc" => desc = some(v),
~"sigs" => sigs = some(v),
~"crate_type" => crate_type = some(v),
2012-08-03 21:59:04 -05:00
_ => { }
2011-11-30 17:57:46 -06:00
}
}
2012-08-03 21:59:04 -05:00
ast::meta_list(v, mis) => {
2012-07-18 18:18:02 -05:00
if v == ~"link" {
2011-11-30 17:57:46 -06:00
let (n, v, u) = load_link(mis);
name = n;
vers = v;
uuid = u;
}
}
2012-08-03 21:59:04 -05:00
_ => {
fail ~"crate attributes may not contain " +
~"meta_words";
}
2011-11-30 17:57:46 -06:00
}
}
type env = @{
mut deps: ~[~str]
};
2012-07-18 18:18:02 -05:00
fn goto_view_item(ps: syntax::parse::parse_sess, e: env,
i: @ast::view_item) {
2012-08-06 14:34:08 -05:00
match i.node {
2012-08-25 20:19:54 -05:00
ast::view_item_use(ident, metas, _) => {
let name_items =
attr::find_meta_items_by_name(metas, ~"name");
let m = if name_items.is_empty() {
2012-07-18 18:18:02 -05:00
metas + ~[attr::mk_name_value_item_str(
~"name", *ps.interner.get(ident))]
} else {
metas
};
let mut attr_name = ident;
let mut attr_vers = ~"";
let mut attr_from = ~"";
2012-06-30 18:19:07 -05:00
for m.each |item| {
2012-08-06 14:34:08 -05:00
match attr::get_meta_item_value_str(item) {
2012-08-03 21:59:04 -05:00
some(value) => {
let name = attr::get_meta_item_name(item);
2012-07-18 18:18:02 -05:00
match name {
~"vers" => attr_vers = value,
~"from" => attr_from = value,
2012-08-03 21:59:04 -05:00
_ => ()
}
}
2012-08-03 21:59:04 -05:00
none => ()
}
}
let query = if !str::is_empty(attr_from) {
attr_from
} else {
if !str::is_empty(attr_vers) {
2012-07-18 18:18:02 -05:00
ps.interner.get(attr_name) + ~"@" + attr_vers
} else { *ps.interner.get(attr_name) }
};
2012-07-18 18:18:02 -05:00
match *ps.interner.get(attr_name) {
2012-08-03 21:59:04 -05:00
~"std" | ~"core" => (),
_ => vec::push(e.deps, query)
}
}
2012-08-03 21:59:04 -05:00
_ => ()
}
}
fn goto_item(_e: env, _i: @ast::item) {
}
let e = @{
mut deps: ~[]
};
let v = visit::mk_simple_visitor(@{
2012-07-18 18:18:02 -05:00
visit_view_item: |a| goto_view_item(sess, e, a),
2012-06-30 18:19:07 -05:00
visit_item: |a| goto_item(e, a),
with *visit::default_simple_visitor()
});
visit::visit_crate(*c, (), v);
let deps = copy e.deps;
2012-08-06 14:34:08 -05:00
match (name, vers, uuid) {
2012-08-03 21:59:04 -05:00
(some(name0), some(vers0), some(uuid0)) => {
2011-11-30 17:57:46 -06:00
some({
name: name0,
vers: vers0,
uuid: uuid0,
desc: desc,
sigs: sigs,
crate_type: crate_type,
deps: deps })
2011-11-30 17:57:46 -06:00
}
2012-08-03 21:59:04 -05:00
_ => return none
2011-11-30 17:57:46 -06:00
}
}
fn print(s: ~str) {
2011-11-30 17:57:46 -06:00
io::stdout().write_line(s);
}
fn rest(s: ~str, start: uint) -> ~str {
2012-02-23 03:44:04 -06:00
if (start >= str::len(s)) {
~""
2011-11-30 17:57:46 -06:00
} else {
2012-02-23 03:44:04 -06:00
str::slice(s, start, str::len(s))
2011-11-30 17:57:46 -06:00
}
}
fn need_dir(s: &Path) {
2012-08-01 19:30:05 -05:00
if os::path_is_dir(s) { return; }
if !os::make_dir(s, 493_i32 /* oct: 755 */) {
fail fmt!("can't make_dir %s", s.to_str());
}
}
fn valid_pkg_name(s: ~str) -> bool {
fn is_valid_digit(c: char) -> bool {
('0' <= c && c <= '9') ||
('a' <= c && c <= 'z') ||
('A' <= c && c <= 'Z') ||
c == '-' ||
c == '_'
}
s.all(is_valid_digit)
}
fn parse_source(name: ~str, j: json::json) -> source {
if !valid_pkg_name(name) {
2012-08-22 19:24:52 -05:00
fail fmt!("'%s' is an invalid source name", name);
}
2012-08-06 14:34:08 -05:00
match j {
2012-08-03 21:59:04 -05:00
json::dict(j) => {
2012-08-06 14:34:08 -05:00
let mut url = match j.find(~"url") {
2012-08-03 21:59:04 -05:00
some(json::string(u)) => *u,
_ => fail ~"needed 'url' field in source"
2011-12-16 19:33:39 -06:00
};
2012-08-06 14:34:08 -05:00
let method = match j.find(~"method") {
2012-08-03 21:59:04 -05:00
some(json::string(u)) => *u,
_ => assume_source_method(url)
};
2012-08-06 14:34:08 -05:00
let key = match j.find(~"key") {
2012-08-03 21:59:04 -05:00
some(json::string(u)) => some(*u),
_ => none
};
2012-08-06 14:34:08 -05:00
let keyfp = match j.find(~"keyfp") {
2012-08-03 21:59:04 -05:00
some(json::string(u)) => some(*u),
_ => none
};
if method == ~"file" {
url = os::make_absolute(&Path(url)).to_str();
}
2012-08-01 19:30:05 -05:00
return @{
name: name,
mut url: url,
mut method: method,
mut key: key,
mut keyfp: keyfp,
mut packages: ~[mut] };
2011-12-16 19:33:39 -06:00
}
2012-08-03 21:59:04 -05:00
_ => fail ~"needed dict value in source"
2011-12-16 19:33:39 -06:00
};
}
fn try_parse_sources(filename: &Path, sources: map::hashmap<~str, source>) {
2012-08-01 19:30:05 -05:00
if !os::path_exists(filename) { return; }
2011-12-16 19:33:39 -06:00
let c = io::read_whole_file_str(filename);
2012-08-06 14:34:08 -05:00
match json::from_str(result::get(c)) {
2012-08-03 21:59:04 -05:00
ok(json::dict(j)) => {
2012-06-30 18:19:07 -05:00
for j.each |k, v| {
2011-12-16 19:33:39 -06:00
sources.insert(k, parse_source(k, v));
2012-08-22 19:24:52 -05:00
debug!("source: %s", k);
2011-12-16 19:33:39 -06:00
}
}
2012-08-03 21:59:04 -05:00
ok(_) => fail ~"malformed sources.json",
err(e) => fail fmt!("%s:%s", filename.to_str(), e.to_str())
2011-12-16 19:33:39 -06:00
}
}
fn load_one_source_package(src: source, p: map::hashmap<~str, json::json>) {
2012-08-06 14:34:08 -05:00
let name = match p.find(~"name") {
2012-08-03 21:59:04 -05:00
some(json::string(n)) => {
2012-06-12 19:20:51 -05:00
if !valid_pkg_name(*n) {
warn(~"malformed source json: "
+ src.name + ~", '" + *n + ~"'"+
~" is an invalid name (alphanumeric, underscores and" +
~" dashes only)");
2012-08-01 19:30:05 -05:00
return;
}
2012-06-12 19:20:51 -05:00
*n
}
2012-08-03 21:59:04 -05:00
_ => {
warn(~"malformed source json: " + src.name + ~" (missing name)");
2012-08-01 19:30:05 -05:00
return;
2011-12-16 19:33:39 -06:00
}
};
2012-08-06 14:34:08 -05:00
let uuid = match p.find(~"uuid") {
2012-08-03 21:59:04 -05:00
some(json::string(n)) => {
2012-06-12 19:20:51 -05:00
if !is_uuid(*n) {
warn(~"malformed source json: "
+ src.name + ~", '" + *n + ~"'"+
~" is an invalid uuid");
2012-08-01 19:30:05 -05:00
return;
}
2012-06-12 19:20:51 -05:00
*n
}
2012-08-03 21:59:04 -05:00
_ => {
warn(~"malformed source json: " + src.name + ~" (missing uuid)");
2012-08-01 19:30:05 -05:00
return;
2011-12-16 19:33:39 -06:00
}
};
2012-08-06 14:34:08 -05:00
let url = match p.find(~"url") {
2012-08-03 21:59:04 -05:00
some(json::string(n)) => *n,
_ => {
warn(~"malformed source json: " + src.name + ~" (missing url)");
2012-08-01 19:30:05 -05:00
return;
2011-12-16 19:33:39 -06:00
}
};
2012-08-06 14:34:08 -05:00
let method = match p.find(~"method") {
2012-08-03 21:59:04 -05:00
some(json::string(n)) => *n,
_ => {
warn(~"malformed source json: "
+ src.name + ~" (missing method)");
2012-08-01 19:30:05 -05:00
return;
}
};
2012-08-06 14:34:08 -05:00
let reference = match p.find(~"ref") {
2012-08-03 21:59:04 -05:00
some(json::string(n)) => some(*n),
_ => none
};
let mut tags = ~[];
2012-08-06 14:34:08 -05:00
match p.find(~"tags") {
2012-08-03 21:59:04 -05:00
some(json::list(js)) => {
2012-06-30 18:19:07 -05:00
for (*js).each |j| {
2012-08-06 14:34:08 -05:00
match j {
2012-08-03 21:59:04 -05:00
json::string(j) => vec::grow(tags, 1u, *j),
_ => ()
}
}
}
2012-08-03 21:59:04 -05:00
_ => ()
}
2012-08-06 14:34:08 -05:00
let description = match p.find(~"description") {
2012-08-03 21:59:04 -05:00
some(json::string(n)) => *n,
_ => {
warn(~"malformed source json: " + src.name
+ ~" (missing description)");
2012-08-01 19:30:05 -05:00
return;
}
};
let newpkg = {
name: name,
uuid: uuid,
url: url,
method: method,
description: description,
reference: reference,
tags: tags,
versions: ~[]
};
2012-08-06 14:34:08 -05:00
match vec::position(src.packages, |pkg| pkg.uuid == uuid) {
2012-08-03 21:59:04 -05:00
some(idx) => {
src.packages[idx] = newpkg;
log(debug, ~" updated package: " + src.name + ~"/" + name);
}
2012-08-03 21:59:04 -05:00
none => {
vec::grow(src.packages, 1u, newpkg);
}
}
log(debug, ~" loaded package: " + src.name + ~"/" + name);
2011-12-16 19:33:39 -06:00
}
fn load_source_info(c: cargo, src: source) {
let dir = c.sourcedir.push(src.name);
let srcfile = dir.push("source.json");
if !os::path_exists(&srcfile) { return; }
let srcstr = io::read_whole_file_str(&srcfile);
2012-08-06 14:34:08 -05:00
match json::from_str(result::get(srcstr)) {
2012-08-03 21:59:04 -05:00
ok(json::dict(s)) => {
2012-06-13 11:34:43 -05:00
let o = parse_source(src.name, json::dict(s));
src.key = o.key;
src.keyfp = o.keyfp;
}
2012-08-03 21:59:04 -05:00
ok(_) => {
warn(~"malformed source.json: " + src.name +
~"(source info is not a dict)");
}
2012-08-03 21:59:04 -05:00
err(e) => {
2012-08-22 19:24:52 -05:00
warn(fmt!("%s:%s", src.name, e.to_str()));
}
};
}
fn load_source_packages(c: cargo, src: source) {
log(debug, ~"loading source: " + src.name);
let dir = c.sourcedir.push(src.name);
let pkgfile = dir.push("packages.json");
if !os::path_exists(&pkgfile) { return; }
let pkgstr = io::read_whole_file_str(&pkgfile);
2012-08-06 14:34:08 -05:00
match json::from_str(result::get(pkgstr)) {
2012-08-03 21:59:04 -05:00
ok(json::list(js)) => {
2012-06-30 18:19:07 -05:00
for (*js).each |j| {
2012-08-06 14:34:08 -05:00
match j {
2012-08-03 21:59:04 -05:00
json::dict(p) => {
2012-06-11 10:19:49 -05:00
load_one_source_package(src, p);
2011-12-16 19:33:39 -06:00
}
2012-08-03 21:59:04 -05:00
_ => {
warn(~"malformed source json: " + src.name +
~" (non-dict pkg)");
2011-12-16 19:33:39 -06:00
}
}
}
}
2012-08-03 21:59:04 -05:00
ok(_) => {
warn(~"malformed packages.json: " + src.name +
~"(packages is not a list)");
}
2012-08-03 21:59:04 -05:00
err(e) => {
2012-08-22 19:24:52 -05:00
warn(fmt!("%s:%s", src.name, e.to_str()));
2011-12-16 19:33:39 -06:00
}
};
}
fn build_cargo_options(argv: ~[~str]) -> options {
2012-08-06 14:34:08 -05:00
let matches = match getopts::getopts(argv, opts()) {
2012-08-03 21:59:04 -05:00
result::ok(m) => m,
result::err(f) => {
2012-08-22 19:24:52 -05:00
fail fmt!("%s", getopts::fail_str(f));
}
};
let test = opt_present(matches, ~"test");
let G = opt_present(matches, ~"G");
let g = opt_present(matches, ~"g");
let help = opt_present(matches, ~"h") || opt_present(matches, ~"help");
let len = vec::len(matches.free);
let is_install = len > 1u && matches.free[1] == ~"install";
let is_uninstall = len > 1u && matches.free[1] == ~"uninstall";
if G && g { fail ~"-G and -g both provided"; }
if !is_install && !is_uninstall && (g || G) {
fail ~"-g and -G are only valid for `install` and `uninstall|rm`";
}
let mode =
if (!is_install && !is_uninstall) || g { user_mode }
else if G { system_mode }
else { local_mode };
{test: test, mode: mode, free: matches.free, help: help}
}
fn configure(opts: options) -> cargo {
2012-08-06 14:34:08 -05:00
let home = match get_cargo_root() {
2012-08-03 21:59:04 -05:00
ok(home) => home,
err(_err) => result::get(get_cargo_sysroot())
};
2012-08-06 14:34:08 -05:00
let get_cargo_dir = match opts.mode {
2012-08-03 21:59:04 -05:00
system_mode => get_cargo_sysroot,
user_mode => get_cargo_root,
local_mode => get_cargo_root_nearest
};
let p = result::get(get_cargo_dir());
2012-06-13 11:34:43 -05:00
let sources = map::str_hash();
try_parse_sources(&home.push("sources.json"), sources);
try_parse_sources(&home.push("local-sources.json"), sources);
2012-06-13 11:34:43 -05:00
let dep_cache = map::str_hash();
let mut c = {
pgp: pgp::supported(),
root: home,
installdir: p,
bindir: p.push("bin"),
libdir: p.push("lib"),
workdir: p.push("work"),
sourcedir: home.push("sources"),
2012-01-18 21:16:14 -06:00
sources: sources,
mut current_install: ~"",
dep_cache: dep_cache,
opts: opts
2011-12-08 22:50:25 -06:00
};
need_dir(&c.root);
need_dir(&c.installdir);
need_dir(&c.sourcedir);
need_dir(&c.workdir);
need_dir(&c.libdir);
need_dir(&c.bindir);
2012-06-30 18:19:07 -05:00
for sources.each_key |k| {
let mut s = sources.get(k);
load_source_packages(c, s);
sources.insert(k, s);
}
2011-12-16 19:33:39 -06:00
if c.pgp {
pgp::init(&c.root);
} else {
warn(~"command `gpg` was not found");
warn(~"you have to install gpg from source " +
~" or package manager to get it to work correctly");
}
2011-12-08 22:50:25 -06:00
c
}
fn for_each_package(c: cargo, b: fn(source, package)) {
2012-06-30 18:19:07 -05:00
for c.sources.each_value |v| {
// FIXME (#2280): this temporary shouldn't be
// necessary, but seems to be, for borrowing.
let pks = copy v.packages;
2012-06-30 18:19:07 -05:00
for vec::each(pks) |p| {
b(v, p);
2011-12-16 19:33:39 -06:00
}
}
2011-12-16 19:33:39 -06:00
}
2012-03-15 16:03:30 -05:00
// Runs all programs in directory <buildpath>
fn run_programs(buildpath: &Path) {
let newv = os::list_dir_path(buildpath);
2012-06-30 18:19:07 -05:00
for newv.each |ct| {
run::run_program(ct.to_str(), ~[]);
2012-01-18 21:24:07 -06:00
}
}
2012-03-15 16:03:30 -05:00
// Runs rustc in <path + subdir> with the given flags
// and returns <patho + subdir>
fn run_in_buildpath(what: &str, path: &Path, subdir: &Path, cf: &Path,
extra_flags: ~[~str]) -> option<Path> {
let buildpath = path.push_rel(subdir);
need_dir(&buildpath);
debug!("%s: %s -> %s", what, cf.to_str(), buildpath.to_str());
let p = run::program_output(rustc_sysroot(),
~[~"--out-dir",
buildpath.to_str(),
cf.to_str()] + extra_flags);
2012-01-18 21:16:14 -06:00
if p.status != 0 {
2012-08-22 19:24:52 -05:00
error(fmt!("rustc failed: %d\n%s\n%s", p.status, p.err, p.out));
2012-08-01 19:30:05 -05:00
return none;
2012-01-18 21:16:14 -06:00
}
2012-03-15 16:03:30 -05:00
some(buildpath)
}
fn test_one_crate(_c: cargo, path: &Path, cf: &Path) {
let buildpath = match run_in_buildpath(~"testing", path,
&Path("test"),
cf,
~[ ~"--test"]) {
2012-08-03 21:59:04 -05:00
none => return,
some(bp) => bp
2012-03-15 16:03:30 -05:00
};
run_programs(&buildpath);
2012-03-15 16:03:30 -05:00
}
fn install_one_crate(c: cargo, path: &Path, cf: &Path) {
2012-08-06 14:34:08 -05:00
let buildpath = match run_in_buildpath(~"installing", path,
&Path("build"),
cf, ~[]) {
2012-08-03 21:59:04 -05:00
none => return,
some(bp) => bp
2012-03-15 16:03:30 -05:00
};
let newv = os::list_dir_path(&buildpath);
let exec_suffix = os::exe_suffix();
2012-06-30 18:19:07 -05:00
for newv.each |ct| {
if (exec_suffix != ~"" && str::ends_with(ct.to_str(),
exec_suffix)) ||
(exec_suffix == ~"" &&
!str::starts_with(option::get(ct.filename()),
~"lib")) {
debug!(" bin: %s", ct.to_str());
install_to_dir(ct, &c.bindir);
if c.opts.mode == system_mode {
// FIXME (#2662): Put this file in PATH / symlink it so it can
// be used as a generic executable
// `cargo install -G rustray` and `rustray file.obj`
}
} else {
debug!(" lib: %s", ct.to_str());
install_to_dir(ct, &c.libdir);
}
2012-07-06 11:35:43 -05:00
}
}
fn rustc_sysroot() -> ~str {
2012-08-06 14:34:08 -05:00
match os::self_exe_path() {
2012-08-03 21:59:04 -05:00
some(path) => {
let rustc = path.push_many([~"..", ~"bin", ~"rustc"]);
debug!(" rustc: %s", rustc.to_str());
rustc.to_str()
}
2012-08-03 21:59:04 -05:00
none => ~"rustc"
}
}
fn install_source(c: cargo, path: &Path) {
debug!("source: %s", path.to_str());
os::change_dir(path);
let mut cratefiles = ~[];
for os::walk_dir(&Path(".")) |p| {
if p.filetype() == some(~"rc") {
vec::push(cratefiles, *p);
}
}
if vec::is_empty(cratefiles) {
fail ~"this doesn't look like a rust package (no .rc files)";
}
2012-06-30 18:19:07 -05:00
for cratefiles.each |cf| {
match load_crate(&cf) {
2012-08-03 21:59:04 -05:00
none => again,
some(crate) => {
2012-06-30 18:19:07 -05:00
for crate.deps.each |query| {
// FIXME (#1356): handle cyclic dependencies
// (n.b. #1356 says "Cyclic dependency is an error
// condition")
let wd = get_temp_workdir(c);
install_query(c, &wd, query);
2012-07-06 11:35:43 -05:00
}
os::change_dir(path);
if c.opts.test {
test_one_crate(c, path, &cf);
2012-01-18 21:16:14 -06:00
}
install_one_crate(c, path, &cf);
}
}
}
}
fn install_git(c: cargo, wd: &Path, url: ~str, reference: option<~str>) {
run::program_output(~"git", ~[~"clone", url, wd.to_str()]);
if option::is_some(reference) {
let r = option::get(reference);
os::change_dir(wd);
run::run_program(~"git", ~[~"checkout", r]);
}
2011-12-08 23:39:41 -06:00
install_source(c, wd);
2011-12-08 23:34:06 -06:00
}
fn install_curl(c: cargo, wd: &Path, url: ~str) {
let tarpath = wd.push("pkg.tar");
let p = run::program_output(~"curl", ~[~"-f", ~"-s", ~"-o",
tarpath.to_str(), url]);
if p.status != 0 {
2012-08-22 19:24:52 -05:00
fail fmt!("fetch of %s failed: %s", url, p.err);
}
run::run_program(~"tar", ~[~"-x", ~"--strip-components=1",
~"-C", wd.to_str(),
~"-f", tarpath.to_str()]);
2011-12-16 21:27:04 -06:00
install_source(c, wd);
}
fn install_file(c: cargo, wd: &Path, path: &Path) {
run::program_output(~"tar", ~[~"-x", ~"--strip-components=1",
~"-C", wd.to_str(),
~"-f", path.to_str()]);
2011-12-08 23:39:41 -06:00
install_source(c, wd);
2011-11-30 17:57:46 -06:00
}
fn install_package(c: cargo, src: ~str, wd: &Path, pkg: package) {
let url = copy pkg.url;
2012-08-06 14:34:08 -05:00
let method = match pkg.method {
2012-08-03 21:59:04 -05:00
~"git" => ~"git",
~"file" => ~"file",
_ => ~"curl"
};
2012-08-22 19:24:52 -05:00
info(fmt!("installing %s/%s via %s...", src, pkg.name, method));
2012-08-06 14:34:08 -05:00
match method {
2012-08-03 21:59:04 -05:00
~"git" => install_git(c, wd, url, copy pkg.reference),
~"file" => install_file(c, wd, &Path(url)),
2012-08-03 21:59:04 -05:00
~"curl" => install_curl(c, wd, copy url),
_ => ()
}
}
fn cargo_suggestion(c: cargo, fallback: fn())
{
if c.sources.size() == 0u {
error(~"no sources defined - you may wish to run " +
~"`cargo init`");
2012-08-01 19:30:05 -05:00
return;
}
fallback();
}
fn install_uuid(c: cargo, wd: &Path, uuid: ~str) {
let mut ps = ~[];
2012-06-30 18:19:07 -05:00
for_each_package(c, |s, p| {
2011-12-16 19:33:39 -06:00
if p.uuid == uuid {
vec::grow(ps, 1u, (s.name, copy p));
2011-12-16 19:33:39 -06:00
}
});
if vec::len(ps) == 1u {
let (sname, p) = copy ps[0];
install_package(c, sname, wd, p);
2012-08-01 19:30:05 -05:00
return;
} else if vec::len(ps) == 0u {
2012-06-30 18:19:07 -05:00
cargo_suggestion(c, || {
error(~"can't find package: " + uuid);
});
2012-08-01 19:30:05 -05:00
return;
}
error(~"found multiple packages:");
2012-06-30 18:19:07 -05:00
for ps.each |elt| {
let (sname,p) = copy elt;
info(~" " + sname + ~"/" + p.uuid + ~" (" + p.name + ~")");
2011-12-16 19:33:39 -06:00
}
}
fn install_named(c: cargo, wd: &Path, name: ~str) {
let mut ps = ~[];
2012-06-30 18:19:07 -05:00
for_each_package(c, |s, p| {
2011-12-16 19:33:39 -06:00
if p.name == name {
vec::grow(ps, 1u, (s.name, copy p));
2011-12-16 19:33:39 -06:00
}
});
if vec::len(ps) == 1u {
let (sname, p) = copy ps[0];
install_package(c, sname, wd, p);
2012-08-01 19:30:05 -05:00
return;
} else if vec::len(ps) == 0u {
2012-06-30 18:19:07 -05:00
cargo_suggestion(c, || {
error(~"can't find package: " + name);
});
2012-08-01 19:30:05 -05:00
return;
}
error(~"found multiple packages:");
2012-06-30 18:19:07 -05:00
for ps.each |elt| {
let (sname,p) = copy elt;
info(~" " + sname + ~"/" + p.uuid + ~" (" + p.name + ~")");
}
}
fn install_uuid_specific(c: cargo, wd: &Path, src: ~str, uuid: ~str) {
2012-08-06 14:34:08 -05:00
match c.sources.find(src) {
2012-08-03 21:59:04 -05:00
some(s) => {
let packages = copy s.packages;
2012-06-30 18:19:07 -05:00
if vec::any(packages, |p| {
if p.uuid == uuid {
install_package(c, src, wd, p);
true
} else { false }
2012-08-01 19:30:05 -05:00
}) { return; }
}
2012-08-03 21:59:04 -05:00
_ => ()
2011-12-16 19:33:39 -06:00
}
error(~"can't find package: " + src + ~"/" + uuid);
}
fn install_named_specific(c: cargo, wd: &Path, src: ~str, name: ~str) {
2012-08-06 14:34:08 -05:00
match c.sources.find(src) {
2012-08-03 21:59:04 -05:00
some(s) => {
let packages = copy s.packages;
2012-06-30 18:19:07 -05:00
if vec::any(packages, |p| {
if p.name == name {
install_package(c, src, wd, p);
true
} else { false }
2012-08-01 19:30:05 -05:00
}) { return; }
}
2012-08-03 21:59:04 -05:00
_ => ()
}
error(~"can't find package: " + src + ~"/" + name);
}
fn cmd_uninstall(c: cargo) {
if vec::len(c.opts.free) < 3u {
2011-11-30 17:57:46 -06:00
cmd_usage();
2012-08-01 19:30:05 -05:00
return;
2011-11-30 17:57:46 -06:00
}
let lib = &c.libdir;
let bin = &c.bindir;
let target = c.opts.free[2u];
// FIXME (#2662): needs stronger pattern matching
// FIXME (#2662): needs to uninstall from a specified location in a
// cache instead of looking for it (binaries can be uninstalled by
// name only)
fn try_uninstall(p: &Path) -> bool {
if os::remove_file(p) {
info(~"uninstalled: '" + p.to_str() + ~"'");
true
} else {
error(~"could not uninstall: '" +
p.to_str() + ~"'");
false
}
}
if is_uuid(target) {
2012-06-30 18:19:07 -05:00
for os::list_dir(lib).each |file| {
2012-08-06 14:34:08 -05:00
match str::find_str(file, ~"-" + target + ~"-") {
some(_) => if !try_uninstall(&lib.push(file)) { return },
none => ()
}
}
error(~"can't find package with uuid: " + target);
} else {
2012-06-30 18:19:07 -05:00
for os::list_dir(lib).each |file| {
2012-08-06 14:34:08 -05:00
match str::find_str(file, ~"lib" + target + ~"-") {
some(_) => if !try_uninstall(&lib.push(file)) { return },
none => ()
}
}
2012-06-30 18:19:07 -05:00
for os::list_dir(bin).each |file| {
2012-08-06 14:34:08 -05:00
match str::find_str(file, target) {
some(_) => if !try_uninstall(&lib.push(file)) { return },
none => ()
}
}
error(~"can't find package with name: " + target);
}
}
fn install_query(c: cargo, wd: &Path, target: ~str) {
2012-08-06 14:34:08 -05:00
match c.dep_cache.find(target) {
2012-08-03 21:59:04 -05:00
some(inst) => {
2012-06-13 11:34:43 -05:00
if inst {
2012-08-01 19:30:05 -05:00
return;
}
}
2012-08-03 21:59:04 -05:00
none => ()
}
c.dep_cache.insert(target, true);
if is_archive_path(target) {
install_file(c, wd, &Path(target));
2012-08-01 19:30:05 -05:00
return;
} else if is_git_url(target) {
let reference = if c.opts.free.len() >= 4u {
2012-05-28 20:58:01 -05:00
some(c.opts.free[3u])
} else {
none
};
install_git(c, wd, target, reference);
} else if !valid_pkg_name(target) && has_archive_extension(target) {
install_curl(c, wd, target);
2012-08-01 19:30:05 -05:00
return;
} else {
let mut ps = copy target;
2012-08-06 14:34:08 -05:00
match str::find_char(ps, '/') {
2012-08-03 21:59:04 -05:00
option::some(idx) => {
let source = str::slice(ps, 0u, idx);
ps = str::slice(ps, idx + 1u, str::len(ps));
if is_uuid(ps) {
install_uuid_specific(c, wd, source, ps);
} else {
install_named_specific(c, wd, source, ps);
}
2012-02-11 05:20:45 -06:00
}
2012-08-03 21:59:04 -05:00
option::none => {
if is_uuid(ps) {
install_uuid(c, wd, ps);
} else {
install_named(c, wd, ps);
}
2012-02-11 05:20:45 -06:00
}
}
}
// FIXME (#2662): This whole dep_cache and current_install thing is
// a bit of a hack. It should be cleaned up in the future.
if target == c.current_install {
2012-06-30 18:19:07 -05:00
for c.dep_cache.each |k, _v| {
c.dep_cache.remove(k);
}
c.current_install = ~"";
}
}
fn get_temp_workdir(c: cargo) -> Path {
match tempfile::mkdtemp(&c.workdir, "cargo") {
some(wd) => wd,
none => fail fmt!("needed temp dir: %s",
c.workdir.to_str())
}
}
fn cmd_install(c: cargo) unsafe {
let wd = get_temp_workdir(c);
if vec::len(c.opts.free) == 2u {
let cwd = os::getcwd();
let status = run::run_program(~"cp", ~[~"-R", cwd.to_str(),
wd.to_str()]);
if status != 0 {
fail fmt!("could not copy directory: %s", cwd.to_str());
}
install_source(c, &wd);
2012-08-01 19:30:05 -05:00
return;
}
sync(c);
let query = c.opts.free[2];
c.current_install = query.to_str();
install_query(c, &wd, query);
}
fn sync(c: cargo) {
2012-06-30 18:19:07 -05:00
for c.sources.each_key |k| {
let mut s = c.sources.get(k);
sync_one(c, s);
c.sources.insert(k, s);
}
2011-11-30 17:57:46 -06:00
}
fn sync_one_file(c: cargo, dir: &Path, src: source) -> bool {
let name = src.name;
let srcfile = dir.push("source.json.new");
let destsrcfile = dir.push("source.json");
let pkgfile = dir.push("packages.json.new");
let destpkgfile = dir.push("packages.json");
let keyfile = dir.push("key.gpg");
let srcsigfile = dir.push("source.json.sig");
let sigfile = dir.push("packages.json.sig");
let url = Path(src.url);
let mut has_src_file = false;
if !os::copy_file(&url.push("packages.json"), &pkgfile) {
error(fmt!("fetch for source %s (url %s) failed",
name, url.to_str()));
2012-08-01 19:30:05 -05:00
return false;
}
if os::copy_file(&url.push("source.json"), &srcfile) {
has_src_file = false;
2011-12-16 19:33:39 -06:00
}
os::copy_file(&url.push("source.json.sig"), &srcsigfile);
os::copy_file(&url.push("packages.json.sig"), &sigfile);
2012-08-06 14:34:08 -05:00
match copy src.key {
2012-08-03 21:59:04 -05:00
some(u) => {
let p = run::program_output(~"curl",
~[~"-f", ~"-s",
~"-o", keyfile.to_str(), u]);
if p.status != 0 {
2012-08-22 19:24:52 -05:00
error(fmt!("fetch for source %s (key %s) failed", name, u));
2012-08-01 19:30:05 -05:00
return false;
}
pgp::add(&c.root, &keyfile);
}
2012-08-03 21:59:04 -05:00
_ => ()
}
2012-08-06 14:34:08 -05:00
match (src.key, src.keyfp) {
2012-08-03 21:59:04 -05:00
(some(_), some(f)) => {
let r = pgp::verify(&c.root, &pkgfile, &sigfile, f);
if !r {
2012-08-22 19:24:52 -05:00
error(fmt!("signature verification failed for source %s",
name));
2012-08-01 19:30:05 -05:00
return false;
}
if has_src_file {
let e = pgp::verify(&c.root, &srcfile, &srcsigfile, f);
if !e {
2012-08-22 19:24:52 -05:00
error(fmt!("signature verification failed for source %s",
name));
2012-08-01 19:30:05 -05:00
return false;
}
}
}
2012-08-03 21:59:04 -05:00
_ => ()
}
copy_warn(&pkgfile, &destpkgfile);
if has_src_file {
copy_warn(&srcfile, &destsrcfile);
}
os::remove_file(&keyfile);
os::remove_file(&srcfile);
os::remove_file(&srcsigfile);
os::remove_file(&pkgfile);
os::remove_file(&sigfile);
2012-08-22 19:24:52 -05:00
info(fmt!("synced source: %s", name));
2012-08-01 19:30:05 -05:00
return true;
}
fn sync_one_git(c: cargo, dir: &Path, src: source) -> bool {
let name = src.name;
let srcfile = dir.push("source.json");
let pkgfile = dir.push("packages.json");
let keyfile = dir.push("key.gpg");
let srcsigfile = dir.push("source.json.sig");
let sigfile = dir.push("packages.json.sig");
let url = src.url;
fn rollback(name: ~str, dir: &Path, insecure: bool) {
fn msg(name: ~str, insecure: bool) {
2012-08-22 19:24:52 -05:00
error(fmt!("could not rollback source: %s", name));
if insecure {
warn(~"a past security check failed on source " +
name + ~" and rolling back the source failed -"
+ ~" this source may be compromised");
}
}
if !os::change_dir(dir) {
msg(name, insecure);
}
else {
let p = run::program_output(~"git", ~[~"reset", ~"--hard",
~"HEAD@{1}"]);
if p.status != 0 {
msg(name, insecure);
}
}
}
if !os::path_exists(&dir.push(".git")) {
let p = run::program_output(~"git", ~[~"clone", url, dir.to_str()]);
if p.status != 0 {
2012-08-22 19:24:52 -05:00
error(fmt!("fetch for source %s (url %s) failed", name, url));
2012-08-01 19:30:05 -05:00
return false;
}
}
else {
if !os::change_dir(dir) {
2012-08-22 19:24:52 -05:00
error(fmt!("fetch for source %s (url %s) failed", name, url));
2012-08-01 19:30:05 -05:00
return false;
}
let p = run::program_output(~"git", ~[~"pull"]);
if p.status != 0 {
2012-08-22 19:24:52 -05:00
error(fmt!("fetch for source %s (url %s) failed", name, url));
2012-08-01 19:30:05 -05:00
return false;
}
}
let has_src_file = os::path_exists(&srcfile);
2012-08-06 14:34:08 -05:00
match copy src.key {
2012-08-03 21:59:04 -05:00
some(u) => {
let p = run::program_output(~"curl",
~[~"-f", ~"-s",
~"-o", keyfile.to_str(), u]);
if p.status != 0 {
2012-08-22 19:24:52 -05:00
error(fmt!("fetch for source %s (key %s) failed", name, u));
rollback(name, dir, false);
2012-08-01 19:30:05 -05:00
return false;
}
pgp::add(&c.root, &keyfile);
}
2012-08-03 21:59:04 -05:00
_ => ()
}
2012-08-06 14:34:08 -05:00
match (src.key, src.keyfp) {
2012-08-03 21:59:04 -05:00
(some(_), some(f)) => {
let r = pgp::verify(&c.root, &pkgfile, &sigfile, f);
if !r {
2012-08-22 19:24:52 -05:00
error(fmt!("signature verification failed for source %s",
name));
rollback(name, dir, false);
2012-08-01 19:30:05 -05:00
return false;
}
if has_src_file {
let e = pgp::verify(&c.root, &srcfile, &srcsigfile, f);
if !e {
2012-08-22 19:24:52 -05:00
error(fmt!("signature verification failed for source %s",
name));
rollback(name, dir, false);
2012-08-01 19:30:05 -05:00
return false;
}
}
}
2012-08-03 21:59:04 -05:00
_ => ()
}
os::remove_file(&keyfile);
2012-08-22 19:24:52 -05:00
info(fmt!("synced source: %s", name));
2012-08-01 19:30:05 -05:00
return true;
}
fn sync_one_curl(c: cargo, dir: &Path, src: source) -> bool {
let name = src.name;
let srcfile = dir.push("source.json.new");
let destsrcfile = dir.push("source.json");
let pkgfile = dir.push("packages.json.new");
let destpkgfile = dir.push("packages.json");
let keyfile = dir.push("key.gpg");
let srcsigfile = dir.push("source.json.sig");
let sigfile = dir.push("packages.json.sig");
let mut url = src.url;
let smart = !str::ends_with(src.url, ~"packages.json");
let mut has_src_file = false;
if smart {
url += ~"/packages.json";
}
let p = run::program_output(~"curl",
~[~"-f", ~"-s",
~"-o", pkgfile.to_str(), url]);
if p.status != 0 {
2012-08-22 19:24:52 -05:00
error(fmt!("fetch for source %s (url %s) failed", name, url));
2012-08-01 19:30:05 -05:00
return false;
}
if smart {
url = src.url + ~"/source.json";
let p =
run::program_output(~"curl",
~[~"-f", ~"-s",
~"-o", srcfile.to_str(), url]);
if p.status == 0 {
has_src_file = true;
}
}
2012-08-06 14:34:08 -05:00
match copy src.key {
2012-08-03 21:59:04 -05:00
some(u) => {
let p = run::program_output(~"curl",
~[~"-f", ~"-s",
~"-o", keyfile.to_str(), u]);
if p.status != 0 {
2012-08-22 19:24:52 -05:00
error(fmt!("fetch for source %s (key %s) failed", name, u));
2012-08-01 19:30:05 -05:00
return false;
}
pgp::add(&c.root, &keyfile);
}
2012-08-03 21:59:04 -05:00
_ => ()
}
2012-08-06 14:34:08 -05:00
match (src.key, src.keyfp) {
2012-08-03 21:59:04 -05:00
(some(_), some(f)) => {
if smart {
url = src.url + ~"/packages.json.sig";
}
else {
url = src.url + ~".sig";
}
let mut p = run::program_output(~"curl",
~[~"-f", ~"-s", ~"-o",
sigfile.to_str(), url]);
if p.status != 0 {
2012-08-22 19:24:52 -05:00
error(fmt!("fetch for source %s (sig %s) failed", name, url));
2012-08-01 19:30:05 -05:00
return false;
}
let r = pgp::verify(&c.root, &pkgfile, &sigfile, f);
if !r {
2012-08-22 19:24:52 -05:00
error(fmt!("signature verification failed for source %s",
name));
2012-08-01 19:30:05 -05:00
return false;
}
if smart && has_src_file {
url = src.url + ~"/source.json.sig";
p = run::program_output(~"curl",
~[~"-f", ~"-s", ~"-o",
srcsigfile.to_str(), url]);
if p.status != 0 {
2012-08-22 19:24:52 -05:00
error(fmt!("fetch for source %s (sig %s) failed",
name, url));
2012-08-01 19:30:05 -05:00
return false;
}
let e = pgp::verify(&c.root, &srcfile, &srcsigfile, f);
if !e {
error(~"signature verification failed for " +
~"source " + name);
2012-08-01 19:30:05 -05:00
return false;
}
}
}
2012-08-03 21:59:04 -05:00
_ => ()
}
copy_warn(&pkgfile, &destpkgfile);
if smart && has_src_file {
copy_warn(&srcfile, &destsrcfile);
}
os::remove_file(&keyfile);
os::remove_file(&srcfile);
os::remove_file(&srcsigfile);
os::remove_file(&pkgfile);
os::remove_file(&sigfile);
2012-08-22 19:24:52 -05:00
info(fmt!("synced source: %s", name));
2012-08-01 19:30:05 -05:00
return true;
}
fn sync_one(c: cargo, src: source) {
let name = src.name;
let dir = c.sourcedir.push(name);
2012-08-22 19:24:52 -05:00
info(fmt!("syncing source: %s...", name));
need_dir(&dir);
2012-08-06 14:34:08 -05:00
let result = match src.method {
~"git" => sync_one_git(c, &dir, src),
~"file" => sync_one_file(c, &dir, src),
_ => sync_one_curl(c, &dir, src)
};
if result {
load_source_info(c, src);
load_source_packages(c, src);
2011-12-16 19:33:39 -06:00
}
}
fn cmd_init(c: cargo) {
let srcurl = ~"http://www.rust-lang.org/cargo/sources.json";
let sigurl = ~"http://www.rust-lang.org/cargo/sources.json.sig";
let srcfile = c.root.push("sources.json.new");
let sigfile = c.root.push("sources.json.sig");
let destsrcfile = c.root.push("sources.json");
let p =
run::program_output(~"curl", ~[~"-f", ~"-s",
~"-o", srcfile.to_str(), srcurl]);
if p.status != 0 {
2012-08-22 19:24:52 -05:00
error(fmt!("fetch of sources.json failed: %s", p.out));
2012-08-01 19:30:05 -05:00
return;
}
let p =
run::program_output(~"curl", ~[~"-f", ~"-s",
~"-o", sigfile.to_str(), sigurl]);
if p.status != 0 {
2012-08-22 19:24:52 -05:00
error(fmt!("fetch of sources.json.sig failed: %s", p.out));
2012-08-01 19:30:05 -05:00
return;
}
let r = pgp::verify(&c.root, &srcfile, &sigfile,
pgp::signing_key_fp());
if !r {
error(fmt!("signature verification failed for '%s'",
srcfile.to_str()));
2012-08-01 19:30:05 -05:00
return;
}
copy_warn(&srcfile, &destsrcfile);
os::remove_file(&srcfile);
os::remove_file(&sigfile);
info(fmt!("initialized .cargo in %s", c.root.to_str()));
}
fn print_pkg(s: source, p: package) {
let mut m = s.name + ~"/" + p.name + ~" (" + p.uuid + ~")";
if vec::len(p.tags) > 0u {
m = m + ~" [" + str::connect(p.tags, ~", ") + ~"]";
}
info(m);
if p.description != ~"" {
print(~" >> " + p.description + ~"\n")
}
}
fn print_source(s: source) {
info(s.name + ~" (" + s.url + ~")");
let pks = sort::merge_sort(sys::shape_lt, copy s.packages);
let l = vec::len(pks);
2012-06-30 18:19:07 -05:00
print(io::with_str_writer(|writer| {
let mut list = ~" >> ";
2012-06-30 18:19:07 -05:00
do vec::iteri(pks) |i, pk| {
if str::len(list) > 78u {
writer.write_line(list);
list = ~" >> ";
}
list += pk.name + (if l - 1u == i { ~"" } else { ~", " });
}
writer.write_line(list);
}));
}
fn cmd_list(c: cargo) {
sync(c);
if vec::len(c.opts.free) >= 3u {
2012-06-30 18:19:07 -05:00
do vec::iter_between(c.opts.free, 2u, vec::len(c.opts.free)) |name| {
if !valid_pkg_name(name) {
2012-08-22 19:24:52 -05:00
error(fmt!("'%s' is an invalid source name", name));
} else {
2012-08-06 14:34:08 -05:00
match c.sources.find(name) {
2012-08-03 21:59:04 -05:00
some(source) => {
print_source(source);
}
2012-08-03 21:59:04 -05:00
none => {
2012-08-22 19:24:52 -05:00
error(fmt!("no such source: %s", name));
}
}
}
}
} else {
2012-06-30 18:19:07 -05:00
for c.sources.each_value |v| {
print_source(v);
}
}
}
fn cmd_search(c: cargo) {
if vec::len(c.opts.free) < 3u {
cmd_usage();
2012-08-01 19:30:05 -05:00
return;
}
sync(c);
let mut n = 0;
let name = c.opts.free[2];
let tags = vec::slice(c.opts.free, 3u, vec::len(c.opts.free));
2012-06-30 18:19:07 -05:00
for_each_package(c, |s, p| {
if (str::contains(p.name, name) || name == ~"*") &&
2012-06-30 18:19:07 -05:00
vec::all(tags, |t| vec::contains(p.tags, t) ) {
print_pkg(s, p);
n += 1;
}
});
2012-08-22 19:24:52 -05:00
info(fmt!("found %d packages", n));
}
fn install_to_dir(srcfile: &Path, destdir: &Path) {
let newfile = destdir.push(option::get(srcfile.filename()));
let status = run::run_program(~"cp", ~[~"-r", srcfile.to_str(),
newfile.to_str()]);
if status == 0 {
info(fmt!("installed: '%s'", newfile.to_str()));
} else {
error(fmt!("could not install: '%s'", newfile.to_str()));
}
}
fn dump_cache(c: cargo) {
need_dir(&c.root);
let out = c.root.push("cache.json");
let _root = json::dict(map::str_hash());
if os::path_exists(&out) {
copy_warn(&out, &c.root.push("cache.json.old"));
}
}
fn dump_sources(c: cargo) {
if c.sources.size() < 1u {
2012-08-01 19:30:05 -05:00
return;
}
need_dir(&c.root);
let out = c.root.push("sources.json");
if os::path_exists(&out) {
copy_warn(&out, &c.root.push("sources.json.old"));
}
match io::buffered_file_writer(&out) {
2012-08-03 21:59:04 -05:00
result::ok(writer) => {
let hash = map::str_hash();
let root = json::dict(hash);
2012-06-30 18:19:07 -05:00
for c.sources.each |k, v| {
let chash = map::str_hash();
let child = json::dict(chash);
chash.insert(~"url", json::string(@v.url));
chash.insert(~"method", json::string(@v.method));
2012-08-06 14:34:08 -05:00
match copy v.key {
2012-08-03 21:59:04 -05:00
some(key) => {
chash.insert(~"key", json::string(@key));
}
2012-08-03 21:59:04 -05:00
_ => ()
}
2012-08-06 14:34:08 -05:00
match copy v.keyfp {
2012-08-03 21:59:04 -05:00
some(keyfp) => {
chash.insert(~"keyfp", json::string(@keyfp));
}
2012-08-03 21:59:04 -05:00
_ => ()
}
hash.insert(k, child);
}
writer.write_str(json::to_str(root));
}
2012-08-03 21:59:04 -05:00
result::err(e) => {
2012-08-22 19:24:52 -05:00
error(fmt!("could not dump sources: %s", e));
}
}
}
fn copy_warn(srcfile: &Path, destfile: &Path) {
if !os::copy_file(srcfile, destfile) {
warn(fmt!("copying %s to %s failed",
srcfile.to_str(), destfile.to_str()));
}
}
fn cmd_sources(c: cargo) {
if vec::len(c.opts.free) < 3u {
2012-06-30 18:19:07 -05:00
for c.sources.each_value |v| {
2012-08-22 19:24:52 -05:00
info(fmt!("%s (%s) via %s",
v.name, v.url, v.method));
}
2012-08-01 19:30:05 -05:00
return;
}
let action = c.opts.free[2u];
2012-08-06 14:34:08 -05:00
match action {
2012-08-03 21:59:04 -05:00
~"clear" => {
2012-06-30 18:19:07 -05:00
for c.sources.each_key |k| {
c.sources.remove(k);
}
info(~"cleared sources");
}
2012-08-03 21:59:04 -05:00
~"add" => {
if vec::len(c.opts.free) < 5u {
cmd_usage();
2012-08-01 19:30:05 -05:00
return;
}
let name = c.opts.free[3u];
let url = c.opts.free[4u];
if !valid_pkg_name(name) {
2012-08-22 19:24:52 -05:00
error(fmt!("'%s' is an invalid source name", name));
2012-08-01 19:30:05 -05:00
return;
}
2012-08-25 20:19:54 -05:00
if c.sources.contains_key(name) {
error(fmt!("source already exists: %s", name));
} else {
c.sources.insert(name, @{
name: name,
mut url: url,
mut method: assume_source_method(url),
mut key: none,
mut keyfp: none,
mut packages: ~[mut]
});
info(fmt!("added source: %s", name));
}
}
2012-08-03 21:59:04 -05:00
~"remove" => {
if vec::len(c.opts.free) < 4u {
cmd_usage();
2012-08-01 19:30:05 -05:00
return;
}
let name = c.opts.free[3u];
if !valid_pkg_name(name) {
2012-08-22 19:24:52 -05:00
error(fmt!("'%s' is an invalid source name", name));
2012-08-01 19:30:05 -05:00
return;
}
2012-08-25 20:19:54 -05:00
if c.sources.contains_key(name) {
c.sources.remove(name);
info(fmt!("removed source: %s", name));
} else {
error(fmt!("no such source: %s", name));
}
}
2012-08-03 21:59:04 -05:00
~"set-url" => {
if vec::len(c.opts.free) < 5u {
cmd_usage();
2012-08-01 19:30:05 -05:00
return;
}
let name = c.opts.free[3u];
let url = c.opts.free[4u];
if !valid_pkg_name(name) {
2012-08-22 19:24:52 -05:00
error(fmt!("'%s' is an invalid source name", name));
2012-08-01 19:30:05 -05:00
return;
}
2012-08-06 14:34:08 -05:00
match c.sources.find(name) {
2012-08-03 21:59:04 -05:00
some(source) => {
let old = copy source.url;
let method = assume_source_method(url);
source.url = url;
source.method = method;
c.sources.insert(name, source);
2012-08-22 19:24:52 -05:00
info(fmt!("changed source url: '%s' to '%s'", old, url));
}
2012-08-03 21:59:04 -05:00
none => {
2012-08-22 19:24:52 -05:00
error(fmt!("no such source: %s", name));
}
}
}
2012-08-03 21:59:04 -05:00
~"set-method" => {
if vec::len(c.opts.free) < 5u {
cmd_usage();
2012-08-01 19:30:05 -05:00
return;
}
let name = c.opts.free[3u];
let method = c.opts.free[4u];
if !valid_pkg_name(name) {
2012-08-22 19:24:52 -05:00
error(fmt!("'%s' is an invalid source name", name));
2012-08-01 19:30:05 -05:00
return;
}
2012-08-06 14:34:08 -05:00
match c.sources.find(name) {
2012-08-03 21:59:04 -05:00
some(source) => {
let old = copy source.method;
2012-08-06 14:34:08 -05:00
source.method = match method {
2012-08-03 21:59:04 -05:00
~"git" => ~"git",
~"file" => ~"file",
_ => ~"curl"
};
c.sources.insert(name, source);
2012-08-22 19:24:52 -05:00
info(fmt!("changed source method: '%s' to '%s'", old,
method));
}
2012-08-03 21:59:04 -05:00
none => {
2012-08-22 19:24:52 -05:00
error(fmt!("no such source: %s", name));
}
}
}
2012-08-03 21:59:04 -05:00
~"rename" => {
if vec::len(c.opts.free) < 5u {
cmd_usage();
2012-08-01 19:30:05 -05:00
return;
}
let name = c.opts.free[3u];
let newn = c.opts.free[4u];
if !valid_pkg_name(name) {
2012-08-22 19:24:52 -05:00
error(fmt!("'%s' is an invalid source name", name));
2012-08-01 19:30:05 -05:00
return;
}
if !valid_pkg_name(newn) {
2012-08-22 19:24:52 -05:00
error(fmt!("'%s' is an invalid source name", newn));
2012-08-01 19:30:05 -05:00
return;
}
2012-08-06 14:34:08 -05:00
match c.sources.find(name) {
2012-08-03 21:59:04 -05:00
some(source) => {
c.sources.remove(name);
c.sources.insert(newn, source);
2012-08-22 19:24:52 -05:00
info(fmt!("renamed source: %s to %s", name, newn));
}
2012-08-03 21:59:04 -05:00
none => {
2012-08-22 19:24:52 -05:00
error(fmt!("no such source: %s", name));
}
}
}
2012-08-03 21:59:04 -05:00
_ => cmd_usage()
}
2012-04-03 00:53:40 -05:00
}
2011-11-30 17:57:46 -06:00
fn cmd_usage() {
print(~"Usage: cargo <cmd> [options] [args..]
e.g. cargo install <name>
Where <cmd> is one of:
init, install, list, search, sources,
uninstall, usage
Options:
-h, --help Display this message
<cmd> -h, <cmd> --help Display help for <cmd>
");
}
fn cmd_usage_init() {
print(~"cargo init
Re-initialize cargo in ~/.cargo. Clears all sources and then adds the
default sources from <www.rust-lang.org/sources.json>.");
}
fn cmd_usage_install() {
print(~"cargo install
cargo install [source/]<name>[@version]
cargo install [source/]<uuid>[@version]
cargo install <git url> [ref]
cargo install <tarball url>
cargo install <tarball file>
Options:
--test Run crate tests before installing
-g Install to the user level (~/.cargo/bin/ instead of
locally in ./.cargo/bin/ by default)
-G Install to the system level (/usr/local/lib/cargo/bin/)
Install a crate. If no arguments are supplied, it installs from
the current working directory. If a source is provided, only install
from that source, otherwise it installs from any source.");
}
fn cmd_usage_uninstall() {
print(~"cargo uninstall [source/]<name>[@version]
cargo uninstall [source/]<uuid>[@version]
cargo uninstall <meta-name>[@version]
cargo uninstall <meta-uuid>[@version]
Options:
-g Remove from the user level (~/.cargo/bin/ instead of
locally in ./.cargo/bin/ by default)
-G Remove from the system level (/usr/local/lib/cargo/bin/)
Remove a crate. If a source is provided, only remove
from that source, otherwise it removes from any source.
If a crate was installed directly (git, tarball, etc.), you can remove
it by metadata.");
}
fn cmd_usage_list() {
print(~"cargo list [sources..]
If no arguments are provided, list all sources and their packages.
If source names are provided, list those sources and their packages.
");
2011-11-30 17:57:46 -06:00
}
fn cmd_usage_search() {
print(~"cargo search <query | '*'> [tags..]
Search packages.");
}
fn cmd_usage_sources() {
print(~"cargo sources
cargo sources add <name> <url>
cargo sources remove <name>
cargo sources rename <name> <new>
cargo sources set-url <name> <url>
cargo sources set-method <name> <method>
If no arguments are supplied, list all sources (but not their packages).
Commands:
add Add a source. The source method will be guessed
from the URL.
remove Remove a source.
rename Rename a source.
set-url Change the URL for a source.
set-method Change the method for a source.");
}
fn main(argv: ~[~str]) {
let o = build_cargo_options(argv);
if vec::len(o.free) < 2u {
cmd_usage();
2012-08-01 19:30:05 -05:00
return;
}
if o.help {
2012-08-06 14:34:08 -05:00
match o.free[1] {
2012-08-03 21:59:04 -05:00
~"init" => cmd_usage_init(),
~"install" => cmd_usage_install(),
~"uninstall" => cmd_usage_uninstall(),
~"list" => cmd_usage_list(),
~"search" => cmd_usage_search(),
~"sources" => cmd_usage_sources(),
_ => cmd_usage()
}
2012-08-01 19:30:05 -05:00
return;
}
if o.free[1] == ~"usage" {
2011-11-30 17:57:46 -06:00
cmd_usage();
2012-08-01 19:30:05 -05:00
return;
2011-11-30 17:57:46 -06:00
}
let mut c = configure(o);
let home = c.root;
let first_time = os::path_exists(&home.push("sources.json"));
if !first_time && o.free[1] != ~"init" {
cmd_init(c);
// FIXME (#2662): shouldn't need to reconfigure
c = configure(o);
}
2012-08-06 14:34:08 -05:00
match o.free[1] {
2012-08-03 21:59:04 -05:00
~"init" => cmd_init(c),
~"install" => cmd_install(c),
~"uninstall" => cmd_uninstall(c),
~"list" => cmd_list(c),
~"search" => cmd_search(c),
~"sources" => cmd_sources(c),
_ => cmd_usage()
2011-11-30 17:57:46 -06:00
}
dump_cache(c);
dump_sources(c);
}