blob: 91b5487478998e39bb8ae4a5cb667360cff82c9a [file] [log] [blame]
Junio C Hamanoc7432082006-04-27 15:37:18 -07001/*
2 * Builtin "git count-objects".
3 *
4 * Copyright (c) 2006 Junio C Hamano
5 */
6
7#include "cache.h"
8#include "builtin.h"
Pierre Habouzit833f3ab2007-10-15 22:38:51 +02009#include "parse-options.h"
Junio C Hamanoc7432082006-04-27 15:37:18 -070010
11static void count_objects(DIR *d, char *path, int len, int verbose,
12 unsigned long *loose,
13 unsigned long *loose_size,
14 unsigned long *packed_loose,
15 unsigned long *garbage)
16{
17 struct dirent *ent;
18 while ((ent = readdir(d)) != NULL) {
19 char hex[41];
20 unsigned char sha1[20];
21 const char *cp;
22 int bad = 0;
23
24 if ((ent->d_name[0] == '.') &&
25 (ent->d_name[1] == 0 ||
26 ((ent->d_name[1] == '.') && (ent->d_name[2] == 0))))
27 continue;
28 for (cp = ent->d_name; *cp; cp++) {
29 int ch = *cp;
30 if (('0' <= ch && ch <= '9') ||
31 ('a' <= ch && ch <= 'f'))
32 continue;
33 bad = 1;
34 break;
35 }
36 if (cp - ent->d_name != 38)
37 bad = 1;
38 else {
39 struct stat st;
40 memcpy(path + len + 3, ent->d_name, 38);
41 path[len + 2] = '/';
42 path[len + 41] = 0;
43 if (lstat(path, &st) || !S_ISREG(st.st_mode))
44 bad = 1;
45 else
Shawn O. Pearcedc49cd72007-03-06 20:44:37 -050046 (*loose_size) += xsize_t(st.st_blocks);
Junio C Hamanoc7432082006-04-27 15:37:18 -070047 }
48 if (bad) {
49 if (verbose) {
50 error("garbage found: %.*s/%s",
51 len + 2, path, ent->d_name);
52 (*garbage)++;
53 }
54 continue;
55 }
56 (*loose)++;
57 if (!verbose)
58 continue;
59 memcpy(hex, path+len, 2);
60 memcpy(hex+2, ent->d_name, 38);
61 hex[40] = 0;
62 if (get_sha1_hex(hex, sha1))
63 die("internal error");
Junio C Hamano106d7102006-09-06 02:12:09 -070064 if (has_sha1_pack(sha1, NULL))
Junio C Hamanoc7432082006-04-27 15:37:18 -070065 (*packed_loose)++;
66 }
67}
68
Pierre Habouzit833f3ab2007-10-15 22:38:51 +020069static char const * const count_objects_usage[] = {
Stephan Beyer1b1dd232008-07-13 15:36:15 +020070 "git count-objects [-v]",
Pierre Habouzit833f3ab2007-10-15 22:38:51 +020071 NULL
72};
73
74int cmd_count_objects(int argc, const char **argv, const char *prefix)
Junio C Hamanoc7432082006-04-27 15:37:18 -070075{
Pierre Habouzit833f3ab2007-10-15 22:38:51 +020076 int i, verbose = 0;
Junio C Hamanoc7432082006-04-27 15:37:18 -070077 const char *objdir = get_object_directory();
78 int len = strlen(objdir);
79 char *path = xmalloc(len + 50);
80 unsigned long loose = 0, packed = 0, packed_loose = 0, garbage = 0;
81 unsigned long loose_size = 0;
Pierre Habouzit833f3ab2007-10-15 22:38:51 +020082 struct option opts[] = {
83 OPT__VERBOSE(&verbose),
84 OPT_END(),
85 };
Junio C Hamanoc7432082006-04-27 15:37:18 -070086
Pierre Habouzit833f3ab2007-10-15 22:38:51 +020087 argc = parse_options(argc, argv, opts, count_objects_usage, 0);
Junio C Hamanoc7432082006-04-27 15:37:18 -070088 /* we do not take arguments other than flags for now */
Pierre Habouzit833f3ab2007-10-15 22:38:51 +020089 if (argc)
90 usage_with_options(count_objects_usage, opts);
Junio C Hamanoc7432082006-04-27 15:37:18 -070091 memcpy(path, objdir, len);
92 if (len && objdir[len-1] != '/')
93 path[len++] = '/';
94 for (i = 0; i < 256; i++) {
95 DIR *d;
96 sprintf(path + len, "%02x", i);
97 d = opendir(path);
98 if (!d)
99 continue;
100 count_objects(d, path, len, verbose,
101 &loose, &loose_size, &packed_loose, &garbage);
102 closedir(d);
103 }
104 if (verbose) {
105 struct packed_git *p;
Junio C Hamanoae72f682006-12-27 01:04:03 -0800106 unsigned long num_pack = 0;
Junio C Hamano80fe7d22006-05-02 23:03:15 -0700107 if (!packed_git)
108 prepare_packed_git();
Junio C Hamanoc7432082006-04-27 15:37:18 -0700109 for (p = packed_git; p; p = p->next) {
110 if (!p->pack_local)
111 continue;
Shawn O. Pearceeaa86772007-05-30 02:12:28 -0400112 if (open_pack_index(p))
Shawn O. Pearced0798372007-05-26 01:24:19 -0400113 continue;
Nicolas Pitre57059092007-04-09 01:06:28 -0400114 packed += p->num_objects;
Junio C Hamanoae72f682006-12-27 01:04:03 -0800115 num_pack++;
Junio C Hamanoc7432082006-04-27 15:37:18 -0700116 }
117 printf("count: %lu\n", loose);
118 printf("size: %lu\n", loose_size / 2);
119 printf("in-pack: %lu\n", packed);
Junio C Hamanoae72f682006-12-27 01:04:03 -0800120 printf("packs: %lu\n", num_pack);
Junio C Hamanoc7432082006-04-27 15:37:18 -0700121 printf("prune-packable: %lu\n", packed_loose);
122 printf("garbage: %lu\n", garbage);
123 }
124 else
125 printf("%lu objects, %lu kilobytes\n",
126 loose, loose_size / 2);
127 return 0;
128}