[PATCH] Split out "pull" from particular methods
[git/mingw.git] / fsck-cache.c
blobd8d2e594fc787e9d0f8d0485568ff6635efca4c1
1 #include <sys/types.h>
2 #include <dirent.h>
4 #include "cache.h"
5 #include "commit.h"
6 #include "tree.h"
7 #include "blob.h"
8 #include "tag.h"
10 #define REACHABLE 0x0001
12 static int show_root = 0;
13 static int show_tags = 0;
14 static int show_unreachable = 0;
15 static unsigned char head_sha1[20];
17 static void check_connectivity(void)
19 int i;
21 /* Look up all the requirements, warn about missing objects.. */
22 for (i = 0; i < nr_objs; i++) {
23 struct object *obj = objs[i];
24 struct object_list *refs;
26 if (!obj->parsed) {
27 printf("missing %s %s\n", obj->type, sha1_to_hex(obj->sha1));
28 continue;
31 for (refs = obj->refs; refs; refs = refs->next) {
32 if (refs->item->parsed)
33 continue;
34 printf("broken link from %7s %s\n",
35 obj->type, sha1_to_hex(obj->sha1));
36 printf(" to %7s %s\n",
37 obj->type, sha1_to_hex(refs->item->sha1));
40 /* Don't bother with tag reachability. */
41 if (obj->type == tag_type)
42 continue;
44 if (show_unreachable && !(obj->flags & REACHABLE)) {
45 printf("unreachable %s %s\n", obj->type, sha1_to_hex(obj->sha1));
46 continue;
49 if (!obj->used) {
50 printf("dangling %s %s\n", obj->type,
51 sha1_to_hex(obj->sha1));
56 static int fsck_tree(struct tree *item)
58 if (item->has_full_path) {
59 fprintf(stderr, "warning: fsck-cache: tree %s "
60 "has full pathnames in it\n",
61 sha1_to_hex(item->object.sha1));
63 return 0;
66 static int fsck_commit(struct commit *commit)
68 if (!commit->tree)
69 return -1;
70 if (!commit->parents && show_root)
71 printf("root %s\n", sha1_to_hex(commit->object.sha1));
72 if (!commit->date)
73 printf("bad commit date in %s\n",
74 sha1_to_hex(commit->object.sha1));
75 return 0;
78 static int fsck_tag(struct tag *tag)
80 if (!show_tags)
81 return 0;
83 printf("tagged %s %s",
84 tag->tagged->type,
85 sha1_to_hex(tag->tagged->sha1));
86 printf(" (%s) in %s\n",
87 tag->tag, sha1_to_hex(tag->object.sha1));
88 return 0;
91 static int fsck_name(char *hex)
93 unsigned char sha1[20];
94 if (!get_sha1_hex(hex, sha1)) {
95 struct object *obj = parse_object(sha1);
96 if (!obj)
97 return -1;
98 if (obj->type == blob_type)
99 return 0;
100 if (obj->type == tree_type)
101 return fsck_tree((struct tree *) obj);
102 if (obj->type == commit_type)
103 return fsck_commit((struct commit *) obj);
104 if (obj->type == tag_type)
105 return fsck_tag((struct tag *) obj);
107 return -1;
110 static int fsck_dir(int i, char *path)
112 DIR *dir = opendir(path);
113 struct dirent *de;
115 if (!dir) {
116 return error("missing sha1 directory '%s'", path);
119 while ((de = readdir(dir)) != NULL) {
120 char name[100];
121 int len = strlen(de->d_name);
123 switch (len) {
124 case 2:
125 if (de->d_name[1] != '.')
126 break;
127 case 1:
128 if (de->d_name[0] != '.')
129 break;
130 continue;
131 case 38:
132 sprintf(name, "%02x", i);
133 memcpy(name+2, de->d_name, len+1);
134 if (!fsck_name(name))
135 continue;
137 fprintf(stderr, "bad sha1 file: %s/%s\n", path, de->d_name);
139 closedir(dir);
140 return 0;
143 int main(int argc, char **argv)
145 int i, heads;
146 char *sha1_dir;
148 for (i = 1; i < argc; i++) {
149 const char *arg = argv[i];
151 if (!strcmp(arg, "--unreachable")) {
152 show_unreachable = 1;
153 continue;
155 if (!strcmp(arg, "--tags")) {
156 show_tags = 1;
157 continue;
159 if (!strcmp(arg, "--root")) {
160 show_root = 1;
161 continue;
163 if (*arg == '-')
164 usage("fsck-cache [--tags] [[--unreachable] <head-sha1>*]");
167 sha1_dir = getenv(DB_ENVIRONMENT) ? : DEFAULT_DB_ENVIRONMENT;
168 for (i = 0; i < 256; i++) {
169 static char dir[4096];
170 sprintf(dir, "%s/%02x", sha1_dir, i);
171 fsck_dir(i, dir);
174 heads = 0;
175 for (i = 1; i < argc; i++) {
176 const char *arg = argv[i];
178 if (*arg == '-')
179 continue;
181 if (!get_sha1_hex(arg, head_sha1)) {
182 struct commit *commit = lookup_commit(head_sha1);
183 struct object *obj;
185 /* Error is printed by lookup_commit(). */
186 if (!commit)
187 continue;
189 obj = &commit->object;
190 obj->used = 1;
191 mark_reachable(obj, REACHABLE);
192 heads++;
193 continue;
195 error("expected sha1, got %s", arg);
198 if (!heads) {
199 if (show_unreachable) {
200 fprintf(stderr, "unable to do reachability without a head\n");
201 show_unreachable = 0;
203 fprintf(stderr, "expect dangling commits - potential heads - due to lack of head information\n");
206 check_connectivity();
207 return 0;