@@ -17,7 +17,6 @@ use lint;
17
17
use metadata;
18
18
19
19
use std:: any:: AnyRefExt ;
20
- use std:: cmp;
21
20
use std:: io;
22
21
use std:: os;
23
22
use std:: str;
@@ -50,6 +49,12 @@ fn run_compiler(args: &[String]) {
50
49
None => return
51
50
} ;
52
51
52
+ let sopts = config:: build_session_options ( & matches) ;
53
+ if sopts. describe_lints {
54
+ describe_lints ( ) ;
55
+ return ;
56
+ }
57
+
53
58
let ( input, input_file_path) = match matches. free . len ( ) {
54
59
0 u => early_error ( "no input filename given" ) ,
55
60
1 u => {
@@ -66,7 +71,6 @@ fn run_compiler(args: &[String]) {
66
71
_ => early_error ( "multiple input filenames provided" )
67
72
} ;
68
73
69
- let sopts = config:: build_session_options ( & matches) ;
70
74
let sess = build_session ( sopts, input_file_path) ;
71
75
let cfg = config:: build_configuration ( & sess) ;
72
76
let odir = matches. opt_str ( "out-dir" ) . map ( |o| Path :: new ( o) ) ;
@@ -124,7 +128,7 @@ Additional help:
124
128
config:: optgroups( ) . as_slice( ) ) ) ;
125
129
}
126
130
127
- fn describe_warnings ( ) {
131
+ fn describe_lints ( ) {
128
132
println ! ( "
129
133
Available lint options:
130
134
-W <foo> Warn about <foo>
@@ -133,30 +137,32 @@ Available lint options:
133
137
-F <foo> Forbid <foo> (deny, and deny all overrides)
134
138
" ) ;
135
139
136
- let lint_dict = lint:: get_lint_dict ( ) ;
137
- let mut lint_dict = lint_dict. move_iter ( )
138
- . map ( |( k, v) | ( v, k) )
139
- . collect :: < Vec < ( lint:: LintSpec , & ' static str ) > > ( ) ;
140
- lint_dict. as_mut_slice ( ) . sort ( ) ;
140
+ let mut builtin_specs = lint:: builtin_lint_specs ( ) ;
141
+ builtin_specs. sort_by ( |x, y| {
142
+ match x. default_level . cmp ( & y. default_level ) {
143
+ Equal => x. name . cmp ( & y. name ) ,
144
+ r => r,
145
+ }
146
+ } ) ;
147
+
148
+ // FIXME: What if someone uses combining characters or East Asian fullwidth
149
+ // characters in a lint name?!?!?
150
+ let max_name_len = builtin_specs. iter ( )
151
+ . map ( |& s| s. name . char_len ( ) )
152
+ . max ( ) . unwrap_or ( 0 ) ;
153
+ let padded = |x : & str | {
154
+ format ! ( "{}{}" , " " . repeat( max_name_len - x. char_len( ) ) , x)
155
+ } ;
141
156
142
- let mut max_key = 0 ;
143
- for & ( _, name) in lint_dict. iter ( ) {
144
- max_key = cmp:: max ( name. len ( ) , max_key) ;
145
- }
146
- fn padded ( max : uint , s : & str ) -> String {
147
- format ! ( "{}{}" , " " . repeat( max - s. len( ) ) , s)
148
- }
149
157
println ! ( "\n Available lint checks:\n " ) ;
150
- println ! ( " {} {:7.7s} {}" ,
151
- padded( max_key , "name ") , "default " , "meaning " ) ;
152
- println ! ( " {} {:7.7s} {} \n " ,
153
- padded ( max_key , "----" ) , "-------" , "-------" ) ;
154
- for ( spec, name ) in lint_dict . move_iter ( ) {
155
- let name = name. replace ( "_" , "-" ) ;
158
+ println ! ( " {} {:7.7s} {}" , padded ( "name" ) , "default" , "meaning" ) ;
159
+ println ! ( " {} {:7.7s} {}" , padded( "---- ") , "------- " , "------- " ) ;
160
+ println ! ( "" ) ;
161
+
162
+ for spec in builtin_specs . move_iter ( ) {
163
+ let name = spec . name . replace ( "_" , "-" ) ;
156
164
println ! ( " {} {:7.7s} {}" ,
157
- padded( max_key, name. as_slice( ) ) ,
158
- lint:: level_to_str( spec. default ) ,
159
- spec. desc) ;
165
+ padded( name. as_slice( ) ) , spec. default_level. as_str( ) , spec. desc) ;
160
166
}
161
167
println ! ( "" ) ;
162
168
}
@@ -214,12 +220,7 @@ pub fn handle_options(mut args: Vec<String>) -> Option<getopts::Matches> {
214
220
return None ;
215
221
}
216
222
217
- let lint_flags = matches. opt_strs ( "W" ) . move_iter ( ) . collect :: < Vec < _ > > ( ) . append (
218
- matches. opt_strs ( "warn" ) . as_slice ( ) ) ;
219
- if lint_flags. iter ( ) . any ( |x| x. as_slice ( ) == "help" ) {
220
- describe_warnings ( ) ;
221
- return None ;
222
- }
223
+ // Don't handle -W help here, because we might first load plugins.
223
224
224
225
let r = matches. opt_strs ( "Z" ) ;
225
226
if r. iter ( ) . any ( |x| x. as_slice ( ) == "help" ) {
0 commit comments