Skip to content

Commit 800172f

Browse files
committed
Implement "cargo init"
When non-existing directory is provided as argument, it works just like "cargo new". When existing directory is used, it may also create template source file like "cargo new" or may find and use existing source code for Cargo.toml. Squashed commit of the following: cargo init: Supply USER envvar for one test cargo init: Other message when Cargo.toml already exists cargo init: Resolve conflict after with #2257 fix minor issues cargo new/init: Simplify error handling code in entry points cargo new/init: Better message for invalid characters in name cargo init: fix minor issues in test cargo init: Avoid excessive builds in the test cargo init: minor fixes cargo init: Skip no_filename test on Windows cargo init: Implement better error message for bin name clash cargo init: minor fixes cargo init: handle "/" path cargo init: Actualise cargo new: Fix upper case error message in test cargo init: Remove paths::{file,directory}_already_exists fix uppper-case error messages cargo init: Fix minor issues per diff comments cargo init: Change binary handling cargo init: Move multiple lib error detection away from mk cargo init: Support optional path argument cargo init: Fix minor issues per Github comments cargo init: Fix complaint from tests/check-style.sh cargo init: Handle projects with multiple mains cargo init: Major refactor, multi-target projects cargo init: Add Cargo.lock unconditionally cargo init: Fix complains from tests/check-style.sh cargo init: Tests for handling VCS cargo init: Handle VCS cargo init: work in progress cargo init: Deduplicate some things between new and init cargo init: Auto-detection of --bin cargo init: work in progress... cargo init: Fix tests and allow explicit --vcs cargo init: intermediate refactor cargo init: First sketch of implementation cargo init: Preliminary test cargo init: first stub See https://github.com/vi/cargo/tree/cargo_init_unsquashed for individual commits
1 parent 1a929a1 commit 800172f

File tree

8 files changed

+688
-46
lines changed

8 files changed

+688
-46
lines changed

src/bin/cargo.rs

+1
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ macro_rules! each_subcommand{
6969
$mac!(generate_lockfile);
7070
$mac!(git_checkout);
7171
$mac!(help);
72+
$mac!(init);
7273
$mac!(install);
7374
$mac!(locate_project);
7475
$mac!(login);

src/bin/init.rs

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
use std::env;
2+
3+
use cargo::ops;
4+
use cargo::util::{CliResult, Config};
5+
6+
#[derive(RustcDecodable)]
7+
struct Options {
8+
flag_verbose: bool,
9+
flag_quiet: bool,
10+
flag_color: Option<String>,
11+
flag_bin: bool,
12+
arg_path: Option<String>,
13+
flag_name: Option<String>,
14+
flag_vcs: Option<ops::VersionControl>,
15+
}
16+
17+
pub const USAGE: &'static str = "
18+
Create a new cargo package in current directory
19+
20+
Usage:
21+
cargo init [options] [<path>]
22+
cargo init -h | --help
23+
24+
Options:
25+
-h, --help Print this message
26+
--vcs VCS Initialize a new repository for the given version
27+
control system (git or hg) or do not initialize any version
28+
control at all (none) overriding a global configuration.
29+
--bin Use a binary instead of a library template
30+
--name NAME Set the resulting package name
31+
-v, --verbose Use verbose output
32+
-q, --quiet No output printed to stdout
33+
--color WHEN Coloring: auto, always, never
34+
";
35+
36+
pub fn execute(options: Options, config: &Config) -> CliResult<Option<()>> {
37+
debug!("executing; cmd=cargo-init; args={:?}", env::args().collect::<Vec<_>>());
38+
try!(config.shell().set_verbosity(options.flag_verbose, options.flag_quiet));
39+
try!(config.shell().set_color_config(options.flag_color.as_ref().map(|s| &s[..])));
40+
41+
let Options { flag_bin, arg_path, flag_name, flag_vcs, .. } = options;
42+
43+
let opts = ops::NewOptions {
44+
version_control: flag_vcs,
45+
bin: flag_bin,
46+
path: &arg_path.unwrap_or(format!(".")),
47+
name: flag_name.as_ref().map(|s| s.as_ref()),
48+
};
49+
50+
try!(ops::init(opts, config));
51+
Ok(None)
52+
}
53+

0 commit comments

Comments
 (0)