#include "cache.h" /* * The low 16 bits of the "flags" field shows whether * a commit is part of the path to the root for that * parent. * * Bit 16 is an internal flag that we've seen the * definition for this rev, and not just seen it as * a parent target. */ #define MAX_COMMITS (16) #define marked(rev) ((rev)->flags & 0xffff) #define SEEN 0x10000 static int show_edges = 0; struct parent { struct revision *parent; struct parent *next; }; struct revision { unsigned int flags; unsigned char sha1[20]; struct parent *parent; }; static struct revision **revs; static int nr_revs, rev_allocs; static int find_rev(unsigned char *sha1) { int first = 0, last = nr_revs; while (first < last) { int next = (first + last) / 2; struct revision *rev = revs[next]; int cmp; cmp = memcmp(sha1, rev->sha1, 20); if (!cmp) return next; if (cmp < 0) { last = next; continue; } first = next+1; } return -first-1; } static struct revision *lookup_rev(unsigned char *sha1) { int pos = find_rev(sha1); struct revision *n; if (pos >= 0) return revs[pos]; pos = -pos-1; if (rev_allocs == nr_revs) { rev_allocs = alloc_nr(rev_allocs); revs = realloc(revs, rev_allocs * sizeof(struct revision *)); } n = malloc(sizeof(struct revision)); n->flags = 0; memcpy(n->sha1, sha1, 20); n->parent = NULL; /* Insert it into the right place */ memmove(revs + pos + 1, revs + pos, (nr_revs - pos) * sizeof(struct revision *)); revs[pos] = n; nr_revs++; return n; } static int add_relationship(struct revision *rev, unsigned char *parent_sha) { struct revision *parent_rev = lookup_rev(parent_sha); struct parent **pp = &rev->parent, *p; while ((p = *pp) != NULL) { if (p->parent == parent_rev) return 0; pp = &p->next; } p = malloc(sizeof(*p)); p->parent = parent_rev; p->next = NULL; *pp = p; return 1; } static int parse_commit(unsigned char *sha1) { struct revision *rev = lookup_rev(sha1); if (!(rev->flags & SEEN)) { void *buffer; unsigned long size; char type[20]; unsigned char parent[20]; rev->flags |= SEEN; buffer = read_sha1_file(sha1, type, &size); if (!buffer || strcmp(type, "commit")) return -1; buffer += 46; /* "tree " + "hex sha1" + "\n" */ while (!memcmp(buffer, "parent ", 7) && !get_sha1_hex(buffer+7, parent)) { add_relationship(rev, parent); parse_commit(parent); buffer += 48; /* "parent " + "hex sha1" + "\n" */ } } return 0; } static void read_cache_file(const char *path) { FILE *file = fopen(path, "r"); char line[100]; if (!file) usage("bad revtree cache file (%s)", path); while (fgets(line, sizeof(line), file)) { unsigned char sha1[20], parent[20]; struct revision *rev; if (get_sha1_hex(line, sha1) || get_sha1_hex(line + 41, parent)) usage("bad rev-tree cache file %s", path); rev = lookup_rev(sha1); rev->flags |= SEEN; add_relationship(rev, parent); } fclose(file); } static void mark_sha1_path(struct revision *rev, unsigned int mask) { struct parent *p; if (rev->flags & mask) return; rev->flags |= mask; p = rev->parent; while (p) { mark_sha1_path(p->parent, mask); p = p->next; } } /* * Some revisions are less interesting than others. * * For example, if we use a cache-file, that one may contain * revisions that were never used. They are never interesting. * * And sometimes we're only interested in "edge" commits, ie * places where the marking changes between parent and child. */ static int interesting(struct revision *rev) { unsigned mask = marked(rev); if (!mask) return 0; if (show_edges) { struct parent *p = rev->parent; while (p) { if (mask != marked(p->parent)) return 1; p = p->next; } return 0; } return 1; } /* * Usage: rev-tree [--edges] [--cache ] [] * * The cache-file can be quite important for big trees. This is an * expensive operation if you have to walk the whole chain of * parents in a tree with a long revision history. */ int main(int argc, char **argv) { int i; int nr = 0; unsigned char sha1[MAX_COMMITS][20]; /* * First - pick up all the revisions we can (both from * caches and from commit file chains). */ for (i = 1; i < argc ; i++) { char *arg = argv[i]; if (!strcmp(arg, "--cache")) { read_cache_file(argv[2]); i++; continue; } if (!strcmp(arg, "--edges")) { show_edges = 1; continue; } if (nr >= MAX_COMMITS || get_sha1_hex(arg, sha1[nr])) usage("rev-tree [--edges] [--cache ] []"); parse_commit(sha1[nr]); nr++; } /* * Now we have the maximal tree. Walk the different sha files back to the root. */ for (i = 0; i < nr; i++) mark_sha1_path(lookup_rev(sha1[i]), 1 << i); /* * Now print out the results.. */ for (i = 0; i < nr_revs; i++) { struct revision *rev = revs[i]; struct parent *p; if (!interesting(rev)) continue; printf("%s:%d", sha1_to_hex(rev->sha1), marked(rev)); p = rev->parent; while (p) { printf(" %s:%d", sha1_to_hex(p->parent->sha1), marked(p->parent)); p = p->next; } printf("\n"); } return 0; }