@@ -7,13 +7,14 @@ extern crate toml;
7
7
#[ macro_use] extern crate log;
8
8
9
9
use std:: collections:: BTreeSet ;
10
+ use std:: collections:: HashMap ;
10
11
use std:: env;
11
12
use std:: fs;
12
13
use std:: path:: { Path , PathBuf } ;
13
14
14
15
use cargo:: core:: shell:: Verbosity ;
15
16
use cargo:: execute_main_without_stdin;
16
- use cargo:: util:: { self , CliResult , lev_distance, Config , human} ;
17
+ use cargo:: util:: { self , CliResult , lev_distance, Config , human, CargoResult } ;
17
18
use cargo:: util:: CliError ;
18
19
use cargo:: util:: process_builder:: process;
19
20
@@ -138,7 +139,7 @@ fn execute(flags: Flags, config: &Config) -> CliResult<Option<()>> {
138
139
return Ok ( None )
139
140
}
140
141
141
- let args = match & flags. arg_command [ ..] {
142
+ let mut args = match & flags. arg_command [ ..] {
142
143
// For the commands `cargo` and `cargo help`, re-execute ourselves as
143
144
// `cargo -h` so we can go through the normal process of printing the
144
145
// help message.
@@ -166,9 +167,30 @@ fn execute(flags: Flags, config: &Config) -> CliResult<Option<()>> {
166
167
// For all other invocations, we're of the form `cargo foo args...`. We
167
168
// use the exact environment arguments to preserve tokens like `--` for
168
169
// example.
169
- _ => env:: args ( ) . collect ( ) ,
170
+ _ => {
171
+ let mut default_alias = HashMap :: new ( ) ;
172
+ default_alias. insert ( "b" , "build" . to_string ( ) ) ;
173
+ default_alias. insert ( "t" , "test" . to_string ( ) ) ;
174
+ default_alias. insert ( "r" , "run" . to_string ( ) ) ;
175
+ let mut args: Vec < String > = env:: args ( ) . collect ( ) ;
176
+ if let Some ( new_command) = default_alias. get ( & args[ 1 ] [ ..] ) {
177
+ args[ 1 ] = new_command. clone ( ) ;
178
+ }
179
+ args
180
+ }
170
181
} ;
171
182
183
+ let alias_list = try!( aliased_command ( & config, & args[ 1 ] ) ) ;
184
+ if let Some ( alias_command) = alias_list {
185
+ // Replace old command with new command and flags
186
+ let chain = args. iter ( ) . take ( 1 )
187
+ . chain ( alias_command. iter ( ) )
188
+ . chain ( args. iter ( ) . skip ( 2 ) )
189
+ . map ( |s| s. to_string ( ) )
190
+ . collect ( ) ;
191
+ args = chain;
192
+ }
193
+
172
194
macro_rules! cmd{
173
195
( $name: ident) => ( if args[ 1 ] == stringify!( $name) . replace( "_" , "-" ) {
174
196
config. shell( ) . set_verbosity( Verbosity :: Verbose ) ;
@@ -186,6 +208,30 @@ fn execute(flags: Flags, config: &Config) -> CliResult<Option<()>> {
186
208
Ok ( None )
187
209
}
188
210
211
+ fn aliased_command ( config : & Config , command : & String ) -> CargoResult < Option < Vec < String > > > {
212
+ let alias_name = format ! ( "alias.{}" , command) ;
213
+ let mut result = Ok ( None ) ;
214
+ match config. get_string ( & alias_name) {
215
+ Ok ( value) => {
216
+ if let Some ( record) = value {
217
+ let alias_commands = record. val . split_whitespace ( )
218
+ . map ( |s| s. to_string ( ) )
219
+ . collect ( ) ;
220
+ result = Ok ( Some ( alias_commands) ) ;
221
+ }
222
+ } ,
223
+ Err ( _) => {
224
+ let value = try!( config. get_list ( & alias_name) ) ;
225
+ if let Some ( record) = value {
226
+ let alias_commands: Vec < String > = record. val . iter ( )
227
+ . map ( |s| s. 0 . to_string ( ) ) . collect ( ) ;
228
+ result = Ok ( Some ( alias_commands) ) ;
229
+ }
230
+ }
231
+ }
232
+ result
233
+ }
234
+
189
235
fn find_closest ( config : & Config , cmd : & str ) -> Option < String > {
190
236
let cmds = list_commands ( config) ;
191
237
// Only consider candidates with a lev_distance of 3 or less so we don't
0 commit comments