@@ -105,10 +105,10 @@ impl Context<'_> {
105
105
self . dst . join ( & filename)
106
106
}
107
107
108
- fn write_shared < C : AsRef < [ u8 ] > > (
108
+ fn write_shared (
109
109
& self ,
110
110
resource : SharedResource < ' _ > ,
111
- contents : C ,
111
+ contents : impl ' static + Send + AsRef < [ u8 ] > ,
112
112
emit : & [ EmitType ] ,
113
113
) -> Result < ( ) , Error > {
114
114
if resource. should_emit ( emit) {
@@ -121,25 +121,23 @@ impl Context<'_> {
121
121
fn write_minify (
122
122
& self ,
123
123
resource : SharedResource < ' _ > ,
124
- contents : & str ,
124
+ contents : impl ' static + Send + AsRef < str > + AsRef < [ u8 ] > ,
125
125
minify : bool ,
126
126
emit : & [ EmitType ] ,
127
127
) -> Result < ( ) , Error > {
128
- let tmp ;
129
- let contents = if minify {
130
- tmp = if resource. extension ( ) == Some ( & OsStr :: new ( "css" ) ) {
128
+ if minify {
129
+ let contents = contents . as_ref ( ) ;
130
+ let contents = if resource. extension ( ) == Some ( & OsStr :: new ( "css" ) ) {
131
131
minifier:: css:: minify ( contents) . map_err ( |e| {
132
132
Error :: new ( format ! ( "failed to minify CSS file: {}" , e) , resource. path ( self ) )
133
133
} ) ?
134
134
} else {
135
135
minifier:: js:: minify ( contents)
136
136
} ;
137
- tmp . as_bytes ( )
137
+ self . write_shared ( resource , contents , emit )
138
138
} else {
139
- contents. as_bytes ( )
140
- } ;
141
-
142
- self . write_shared ( resource, contents, emit)
139
+ self . write_shared ( resource, contents, emit)
140
+ }
143
141
}
144
142
}
145
143
@@ -155,15 +153,21 @@ pub(super) fn write_shared(
155
153
let lock_file = cx. dst . join ( ".lock" ) ;
156
154
let _lock = try_err ! ( flock:: Lock :: new( & lock_file, true , true , true ) , & lock_file) ;
157
155
158
- // The weird `: &_` is to work around a borrowck bug: https://github.com/rust-lang/rust/issues/41078#issuecomment-293646723
159
- let write_minify = |p, c : & _ | {
156
+ // Minified resources are usually toolchain resources. If they're not, they should use `cx.write_minify` directly.
157
+ fn write_minify (
158
+ basename : & ' static str ,
159
+ contents : impl ' static + Send + AsRef < str > + AsRef < [ u8 ] > ,
160
+ cx : & Context < ' _ > ,
161
+ options : & RenderOptions ,
162
+ ) -> Result < ( ) , Error > {
160
163
cx. write_minify (
161
- SharedResource :: ToolchainSpecific { basename : p } ,
162
- c ,
164
+ SharedResource :: ToolchainSpecific { basename } ,
165
+ contents ,
163
166
options. enable_minification ,
164
167
& options. emit ,
165
168
)
166
- } ;
169
+ }
170
+
167
171
// Toolchain resources should never be dynamic.
168
172
let write_toolchain = |p : & ' static _ , c : & ' static _ | {
169
173
cx. write_shared ( SharedResource :: ToolchainSpecific { basename : p } , c, & options. emit )
@@ -210,12 +214,12 @@ pub(super) fn write_shared(
210
214
"details.undocumented > summary::before, details.rustdoc-toggle > summary::before" ,
211
215
"toggle-plus.svg" ,
212
216
) ;
213
- write_minify ( "rustdoc.css" , & rustdoc_css) ?;
217
+ write_minify ( "rustdoc.css" , rustdoc_css, cx , options ) ?;
214
218
215
219
// Add all the static files. These may already exist, but we just
216
220
// overwrite them anyway to make sure that they're fresh and up-to-date.
217
- write_minify ( "settings.css" , static_files:: SETTINGS_CSS ) ?;
218
- write_minify ( "noscript.css" , static_files:: NOSCRIPT_CSS ) ?;
221
+ write_minify ( "settings.css" , static_files:: SETTINGS_CSS , cx , options ) ?;
222
+ write_minify ( "noscript.css" , static_files:: NOSCRIPT_CSS , cx , options ) ?;
219
223
220
224
// To avoid "light.css" to be overwritten, we'll first run over the received themes and only
221
225
// then we'll run over the "official" styles.
@@ -228,9 +232,9 @@ pub(super) fn write_shared(
228
232
229
233
// Handle the official themes
230
234
match theme {
231
- "light" => write_minify ( "light.css" , static_files:: themes:: LIGHT ) ?,
232
- "dark" => write_minify ( "dark.css" , static_files:: themes:: DARK ) ?,
233
- "ayu" => write_minify ( "ayu.css" , static_files:: themes:: AYU ) ?,
235
+ "light" => write_minify ( "light.css" , static_files:: themes:: LIGHT , cx , options ) ?,
236
+ "dark" => write_minify ( "dark.css" , static_files:: themes:: DARK , cx , options ) ?,
237
+ "ayu" => write_minify ( "ayu.css" , static_files:: themes:: AYU , cx , options ) ?,
234
238
_ => {
235
239
// Handle added third-party themes
236
240
let filename = format ! ( "{}.{}" , theme, extension) ;
@@ -264,26 +268,30 @@ pub(super) fn write_shared(
264
268
// Maybe we can change the representation to move this out of main.js?
265
269
write_minify (
266
270
"main.js" ,
267
- & static_files:: MAIN_JS . replace (
271
+ static_files:: MAIN_JS . replace (
268
272
"/* INSERT THEMES HERE */" ,
269
273
& format ! ( " = {}" , serde_json:: to_string( & themes) . unwrap( ) ) ,
270
274
) ,
275
+ cx,
276
+ options,
271
277
) ?;
272
- write_minify ( "search.js" , static_files:: SEARCH_JS ) ?;
273
- write_minify ( "settings.js" , static_files:: SETTINGS_JS ) ?;
278
+ write_minify ( "search.js" , static_files:: SEARCH_JS , cx , options ) ?;
279
+ write_minify ( "settings.js" , static_files:: SETTINGS_JS , cx , options ) ?;
274
280
275
281
if cx. include_sources {
276
- write_minify ( "source-script.js" , static_files:: sidebar:: SOURCE_SCRIPT ) ?;
282
+ write_minify ( "source-script.js" , static_files:: sidebar:: SOURCE_SCRIPT , cx , options ) ?;
277
283
}
278
284
279
285
{
280
286
write_minify (
281
287
"storage.js" ,
282
- & format ! (
288
+ format ! (
283
289
"var resourcesSuffix = \" {}\" ;{}" ,
284
290
cx. shared. resource_suffix,
285
291
static_files:: STORAGE_JS
286
292
) ,
293
+ cx,
294
+ options,
287
295
) ?;
288
296
}
289
297
@@ -292,12 +300,12 @@ pub(super) fn write_shared(
292
300
// This varies based on the invocation, so it can't go through the write_minify wrapper.
293
301
cx. write_minify (
294
302
SharedResource :: InvocationSpecific { basename : "theme.css" } ,
295
- & buffer,
303
+ buffer,
296
304
options. enable_minification ,
297
305
& options. emit ,
298
306
) ?;
299
307
}
300
- write_minify ( "normalize.css" , static_files:: NORMALIZE_CSS ) ?;
308
+ write_minify ( "normalize.css" , static_files:: NORMALIZE_CSS , cx , options ) ?;
301
309
for ( name, contents) in & * FILES_UNVERSIONED {
302
310
cx. write_shared ( SharedResource :: Unversioned { name } , contents, & options. emit ) ?;
303
311
}
@@ -512,7 +520,7 @@ pub(super) fn write_shared(
512
520
content,
513
521
& cx. shared . style_files ,
514
522
) ;
515
- cx. shared . fs . write ( & dst, v. as_bytes ( ) ) ?;
523
+ cx. shared . fs . write ( dst, v) ?;
516
524
}
517
525
}
518
526
@@ -603,7 +611,7 @@ pub(super) fn write_shared(
603
611
}",
604
612
) ;
605
613
v. push_str ( "})()" ) ;
606
- cx. shared . fs . write ( & mydst, & v) ?;
614
+ cx. shared . fs . write ( mydst, v) ?;
607
615
}
608
616
Ok ( ( ) )
609
617
}
0 commit comments