@@ -147,27 +147,57 @@ impl MultiShell {
147
147
}
148
148
149
149
impl Shell {
150
- pub fn create ( out : Box < Write + Send > , config : ShellConfig ) -> Shell {
150
+ pub fn create < T : FnMut ( ) -> Box < Write + Send > > ( mut out_fn : T , config : ShellConfig ) -> Shell {
151
+ let term = match Shell :: get_term ( out_fn ( ) ) {
152
+ Ok ( t) => t,
153
+ Err ( _) => NoColor ( out_fn ( ) )
154
+ } ;
155
+
156
+ Shell {
157
+ terminal : term,
158
+ config : config,
159
+ }
160
+ }
161
+
162
+ #[ cfg( any( windows) ) ]
163
+ fn get_term ( out : Box < Write + Send > ) -> CargoResult < AdequateTerminal > {
164
+ // Check if the creation of a console will succeed
165
+ if :: term:: WinConsole :: new ( vec ! [ 0u8 ; 0 ] ) . is_ok ( ) {
166
+ let t = try!( :: term:: WinConsole :: new ( out) ) ;
167
+ if !t. supports_color ( ) {
168
+ Ok ( NoColor ( Box :: new ( t) ) )
169
+ } else {
170
+ Ok ( Colored ( Box :: new ( t) ) )
171
+ }
172
+ } else {
173
+ // If we fail to get a windows console, we try to get a `TermInfo` one
174
+ Ok ( Shell :: get_terminfo_term ( out) )
175
+ }
176
+ }
177
+
178
+ #[ cfg( any( unix) ) ]
179
+ fn get_term ( out : Box < Write + Send > ) -> CargoResult < AdequateTerminal > {
180
+ Ok ( Shell :: get_terminfo_term ( out) )
181
+ }
182
+
183
+ fn get_terminfo_term ( out : Box < Write + Send > ) -> AdequateTerminal {
151
184
// Use `TermInfo::from_env()` and `TerminfoTerminal::supports_color()`
152
185
// to determine if creation of a TerminfoTerminal is possible regardless
153
186
// of the tty status. --color options are parsed after Shell creation so
154
187
// always try to create a terminal that supports color output. Fall back
155
188
// to a no-color terminal regardless of whether or not a tty is present
156
189
// and if color output is not possible.
157
- Shell {
158
- terminal : match :: term:: terminfo:: TermInfo :: from_env ( ) {
159
- Ok ( ti) => {
160
- let term = TerminfoTerminal :: new_with_terminfo ( out, ti) ;
161
- if !term. supports_color ( ) {
162
- NoColor ( term. into_inner ( ) )
163
- } else {
164
- // Color output is possible.
165
- Colored ( Box :: new ( term) )
166
- }
167
- } ,
168
- Err ( _) => NoColor ( out) ,
190
+ match :: term:: terminfo:: TermInfo :: from_env ( ) {
191
+ Ok ( ti) => {
192
+ let term = TerminfoTerminal :: new_with_terminfo ( out, ti) ;
193
+ if !term. supports_color ( ) {
194
+ NoColor ( term. into_inner ( ) )
195
+ } else {
196
+ // Color output is possible.
197
+ Colored ( Box :: new ( term) )
198
+ }
169
199
} ,
170
- config : config ,
200
+ Err ( _ ) => NoColor ( out ) ,
171
201
}
172
202
}
173
203
0 commit comments