1
1
use clap:: Parser ;
2
+ use flate2:: { write:: GzEncoder , Compression } ;
2
3
use oxc:: {
3
4
codegen:: CodegenOptions ,
4
5
minifier:: { MangleOptions , MinifierOptions } ,
@@ -194,15 +195,24 @@ fn main() {
194
195
}
195
196
196
197
let out_dir = PathBuf :: from ( args. output . unwrap_or ( String :: from ( "output" ) ) ) ;
198
+ let _ = std:: fs:: remove_dir_all ( & out_dir) ;
197
199
if let Err ( e) = std:: fs:: create_dir_all ( & out_dir) {
198
200
eprintln ! ( "Couldn't create directory {}: {}" , out_dir. display( ) , e) ;
199
201
std:: process:: exit ( 1 ) ;
200
202
}
201
203
202
204
let mut input_total = 0 ;
203
205
let mut output_total = 0 ;
206
+ let mut input_g_total = 0 ;
207
+ let mut output_g_total = 0 ;
204
208
for ( path, codegen_return) in shaken. codegen_return {
205
209
let out_path = out_dir. join ( & path) ;
210
+ let orig_ext = if let Some ( ext) = out_path. extension ( ) {
211
+ format ! ( "orig.{}" , ext. to_string_lossy( ) )
212
+ } else {
213
+ "orig" . to_string ( )
214
+ } ;
215
+ let copy_path = out_path. with_extension ( orig_ext) ;
206
216
println ! ( "{}\t --> {}" , path, out_path. display( ) ) ;
207
217
208
218
let mut output_file = match File :: create ( & out_path) {
@@ -227,25 +237,56 @@ fn main() {
227
237
) ;
228
238
let non_shaken_code = non_shaken. codegen_return [ SingleFileFs :: ENTRY_PATH ] . code . clone ( ) ;
229
239
240
+ let mut copy_file = match File :: create ( & copy_path) {
241
+ Err ( why) => {
242
+ eprintln ! ( "Couldn't create {}: {}" , copy_path. display( ) , why) ;
243
+ std:: process:: exit ( 1 ) ;
244
+ }
245
+ Ok ( file) => file,
246
+ } ;
247
+ copy_file. write_all ( non_shaken_code. as_bytes ( ) ) . unwrap ( ) ;
248
+
230
249
input_total += non_shaken_code. len ( ) ;
231
250
output_total += codegen_return. code . len ( ) ;
232
251
println ! (
233
- " Original: {}B,\t {}: {}B,\t {}: {}B\t Rate: {:.2}%" ,
252
+ " [RAW] Original: {}B,\t {}: {}B,\t {}: {}B\t Rate: {:.2}%" ,
234
253
source. len( ) ,
235
254
if args. minify { "Shaken&Minified" } else { "Shaken" } ,
236
255
codegen_return. code. len( ) ,
237
256
if args. minify { "Minified" } else { "Copied" } ,
238
257
non_shaken_code. len( ) ,
239
258
( codegen_return. code. len( ) as f64 / non_shaken_code. len( ) as f64 ) * 100.0
240
259
) ;
260
+
261
+ let source_g_size = get_gzipped_size ( & source) ;
262
+ let input_g_size = get_gzipped_size ( & non_shaken_code) ;
263
+ let output_g_size = get_gzipped_size ( & codegen_return. code ) ;
264
+ input_g_total += input_g_size;
265
+ output_g_total += output_g_size;
266
+ println ! (
267
+ " [GZIP] Original: {}B,\t {}: {}B,\t {}: {}B\t Rate: {:.2}%" ,
268
+ source_g_size,
269
+ if args. minify { "Shaken&Minified" } else { "Shaken" } ,
270
+ output_g_size,
271
+ if args. minify { "Minified" } else { "Copied" } ,
272
+ input_g_size,
273
+ ( output_g_size as f64 / input_g_size as f64 ) * 100.0 ,
274
+ ) ;
241
275
}
242
276
243
277
let elapsed = start_time. elapsed ( ) ;
244
278
println ! ( "-------------------" ) ;
245
279
println ! (
246
- "Completed in {:?}, Rate: {:.2}%" ,
280
+ "Completed in {:?}, Rate: {:.2}%, Gzipped Rate: {:.2}% " ,
247
281
elapsed,
248
- ( output_total as f64 / input_total as f64 ) * 100.0
282
+ ( output_total as f64 / input_total as f64 ) * 100.0 ,
283
+ ( output_g_total as f64 / input_g_total as f64 ) * 100.0 ,
249
284
) ;
250
285
}
251
286
}
287
+
288
+ fn get_gzipped_size ( content : & str ) -> usize {
289
+ let mut encoder = GzEncoder :: new ( Vec :: new ( ) , Compression :: best ( ) ) ;
290
+ encoder. write_all ( content. as_bytes ( ) ) . unwrap ( ) ;
291
+ encoder. finish ( ) . unwrap ( ) . len ( )
292
+ }
0 commit comments