@@ -60,15 +60,36 @@ struct survey_report_object_summary {
60
60
size_t blobs_nr ;
61
61
};
62
62
63
+ /**
64
+ * For some category given by 'label', count the number of objects
65
+ * that match that label along with the on-disk size and the size
66
+ * after decompressing (both with delta bases and zlib).
67
+ */
68
+ struct survey_report_object_size_summary {
69
+ char * label ;
70
+ size_t nr ;
71
+ size_t disk_size ;
72
+ size_t inflated_size ;
73
+ size_t num_missing ;
74
+ };
75
+
63
76
/**
64
77
* This struct contains all of the information that needs to be printed
65
78
* at the end of the exploration of the repository and its references.
66
79
*/
67
80
struct survey_report {
68
81
struct survey_report_ref_summary refs ;
69
82
struct survey_report_object_summary reachable_objects ;
83
+
84
+ struct survey_report_object_size_summary * by_type ;
70
85
};
71
86
87
+ #define REPORT_TYPE_COMMIT 0
88
+ #define REPORT_TYPE_TREE 1
89
+ #define REPORT_TYPE_BLOB 2
90
+ #define REPORT_TYPE_TAG 3
91
+ #define REPORT_TYPE_COUNT 4
92
+
72
93
struct survey_context {
73
94
struct repository * repo ;
74
95
@@ -280,12 +301,48 @@ static void survey_report_plaintext_reachable_object_summary(struct survey_conte
280
301
clear_table (& table );
281
302
}
282
303
304
+ static void survey_report_object_sizes (const char * title ,
305
+ const char * categories ,
306
+ struct survey_report_object_size_summary * summary ,
307
+ size_t summary_nr )
308
+ {
309
+ struct survey_table table = SURVEY_TABLE_INIT ;
310
+ table .table_name = title ;
311
+
312
+ strvec_push (& table .header , categories );
313
+ strvec_push (& table .header , _ ("Count" ));
314
+ strvec_push (& table .header , _ ("Disk Size" ));
315
+ strvec_push (& table .header , _ ("Inflated Size" ));
316
+
317
+ for (size_t i = 0 ; i < summary_nr ; i ++ ) {
318
+ char * label_str = xstrdup (summary [i ].label );
319
+ char * nr_str = xstrfmt ("%" PRIuMAX , (uintmax_t )summary [i ].nr );
320
+ char * disk_str = xstrfmt ("%" PRIuMAX , (uintmax_t )summary [i ].disk_size );
321
+ char * inflate_str = xstrfmt ("%" PRIuMAX , (uintmax_t )summary [i ].inflated_size );
322
+
323
+ insert_table_rowv (& table , label_str , nr_str ,
324
+ disk_str , inflate_str , NULL );
325
+
326
+ free (label_str );
327
+ free (nr_str );
328
+ free (disk_str );
329
+ free (inflate_str );
330
+ }
331
+
332
+ print_table_plaintext (& table );
333
+ clear_table (& table );
334
+ }
335
+
283
336
static void survey_report_plaintext (struct survey_context * ctx )
284
337
{
285
338
printf ("GIT SURVEY for \"%s\"\n" , ctx -> repo -> worktree );
286
339
printf ("-----------------------------------------------------\n" );
287
340
survey_report_plaintext_refs (ctx );
288
341
survey_report_plaintext_reachable_object_summary (ctx );
342
+ survey_report_object_sizes (_ ("TOTAL OBJECT SIZES BY TYPE" ),
343
+ _ ("Object Type" ),
344
+ ctx -> report .by_type ,
345
+ REPORT_TYPE_COUNT );
289
346
}
290
347
291
348
/*
@@ -499,6 +556,68 @@ static void increment_object_counts(
499
556
}
500
557
}
501
558
559
+ static void increment_totals (struct survey_context * ctx ,
560
+ struct oid_array * oids ,
561
+ struct survey_report_object_size_summary * summary )
562
+ {
563
+ for (size_t i = 0 ; i < oids -> nr ; i ++ ) {
564
+ struct object_info oi = OBJECT_INFO_INIT ;
565
+ unsigned oi_flags = OBJECT_INFO_FOR_PREFETCH ;
566
+ unsigned long object_length = 0 ;
567
+ off_t disk_sizep = 0 ;
568
+ enum object_type type ;
569
+
570
+ oi .typep = & type ;
571
+ oi .sizep = & object_length ;
572
+ oi .disk_sizep = & disk_sizep ;
573
+
574
+ if (oid_object_info_extended (ctx -> repo , & oids -> oid [i ],
575
+ & oi , oi_flags ) < 0 ) {
576
+ summary -> num_missing ++ ;
577
+ } else {
578
+ summary -> nr ++ ;
579
+ summary -> disk_size += disk_sizep ;
580
+ summary -> inflated_size += object_length ;
581
+ }
582
+ }
583
+ }
584
+
585
+ static void increment_object_totals (struct survey_context * ctx ,
586
+ struct oid_array * oids ,
587
+ enum object_type type )
588
+ {
589
+ struct survey_report_object_size_summary * total ;
590
+ struct survey_report_object_size_summary summary = { 0 };
591
+
592
+ increment_totals (ctx , oids , & summary );
593
+
594
+ switch (type ) {
595
+ case OBJ_COMMIT :
596
+ total = & ctx -> report .by_type [REPORT_TYPE_COMMIT ];
597
+ break ;
598
+
599
+ case OBJ_TREE :
600
+ total = & ctx -> report .by_type [REPORT_TYPE_TREE ];
601
+ break ;
602
+
603
+ case OBJ_BLOB :
604
+ total = & ctx -> report .by_type [REPORT_TYPE_BLOB ];
605
+ break ;
606
+
607
+ case OBJ_TAG :
608
+ total = & ctx -> report .by_type [REPORT_TYPE_TAG ];
609
+ break ;
610
+
611
+ default :
612
+ BUG ("No other type allowed" );
613
+ }
614
+
615
+ total -> nr += summary .nr ;
616
+ total -> disk_size += summary .disk_size ;
617
+ total -> inflated_size += summary .inflated_size ;
618
+ total -> num_missing += summary .num_missing ;
619
+ }
620
+
502
621
static int survey_objects_path_walk_fn (const char * path ,
503
622
struct oid_array * oids ,
504
623
enum object_type type ,
@@ -508,10 +627,20 @@ static int survey_objects_path_walk_fn(const char *path,
508
627
509
628
increment_object_counts (& ctx -> report .reachable_objects ,
510
629
type , oids -> nr );
630
+ increment_object_totals (ctx , oids , type );
511
631
512
632
return 0 ;
513
633
}
514
634
635
+ static void initialize_report (struct survey_context * ctx )
636
+ {
637
+ CALLOC_ARRAY (ctx -> report .by_type , REPORT_TYPE_COUNT );
638
+ ctx -> report .by_type [REPORT_TYPE_COMMIT ].label = xstrdup (_ ("Commits" ));
639
+ ctx -> report .by_type [REPORT_TYPE_TREE ].label = xstrdup (_ ("Trees" ));
640
+ ctx -> report .by_type [REPORT_TYPE_BLOB ].label = xstrdup (_ ("Blobs" ));
641
+ ctx -> report .by_type [REPORT_TYPE_TAG ].label = xstrdup (_ ("Tags" ));
642
+ }
643
+
515
644
static void survey_phase_objects (struct survey_context * ctx )
516
645
{
517
646
struct rev_info revs = REV_INFO_INIT ;
@@ -524,12 +653,15 @@ static void survey_phase_objects(struct survey_context *ctx)
524
653
info .path_fn = survey_objects_path_walk_fn ;
525
654
info .path_fn_data = ctx ;
526
655
656
+ initialize_report (ctx );
657
+
527
658
repo_init_revisions (ctx -> repo , & revs , "" );
528
659
revs .tag_objects = 1 ;
529
660
530
661
for (int i = 0 ; i < ctx -> ref_array .nr ; i ++ ) {
531
662
struct ref_array_item * item = ctx -> ref_array .items [i ];
532
663
add_pending_oid (& revs , NULL , & item -> objectname , add_flags );
664
+ display_progress (ctx -> progress , ++ (ctx -> progress_nr ));
533
665
}
534
666
535
667
walk_objects_by_path (& info );
0 commit comments