rev-list.con commit Add "--all" flag to rev-parse that shows all refs (960bba0)
   1#include "cache.h"
   2#include "tag.h"
   3#include "commit.h"
   4#include "tree.h"
   5#include "blob.h"
   6#include "epoch.h"
   7
   8#define SEEN            (1u << 0)
   9#define INTERESTING     (1u << 1)
  10#define COUNTED         (1u << 2)
  11#define SHOWN           (LAST_EPOCH_FLAG << 2)
  12
  13static const char rev_list_usage[] =
  14        "usage: git-rev-list [OPTION] commit-id <commit-id>\n"
  15                      "  --max-count=nr\n"
  16                      "  --max-age=epoch\n"
  17                      "  --min-age=epoch\n"
  18                      "  --header\n"
  19                      "  --pretty\n"
  20                      "  --merge-order [ --show-breaks ]";
  21
  22static int bisect_list = 0;
  23static int tag_objects = 0;
  24static int tree_objects = 0;
  25static int blob_objects = 0;
  26static int verbose_header = 0;
  27static int show_parents = 0;
  28static int hdr_termination = 0;
  29static const char *prefix = "";
  30static unsigned long max_age = -1;
  31static unsigned long min_age = -1;
  32static int max_count = -1;
  33static enum cmit_fmt commit_format = CMIT_FMT_RAW;
  34static int merge_order = 0;
  35static int show_breaks = 0;
  36static int stop_traversal = 0;
  37
  38static void show_commit(struct commit *commit)
  39{
  40        commit->object.flags |= SHOWN;
  41        if (show_breaks) {
  42                prefix = "| ";
  43                if (commit->object.flags & DISCONTINUITY) {
  44                        prefix = "^ ";     
  45                } else if (commit->object.flags & BOUNDARY) {
  46                        prefix = "= ";
  47                } 
  48        }                       
  49        printf("%s%s", prefix, sha1_to_hex(commit->object.sha1));
  50        if (show_parents) {
  51                struct commit_list *parents = commit->parents;
  52                while (parents) {
  53                        printf(" %s", sha1_to_hex(parents->item->object.sha1));
  54                        parents = parents->next;
  55                }
  56        }
  57        putchar('\n');
  58        if (verbose_header) {
  59                static char pretty_header[16384];
  60                pretty_print_commit(commit_format, commit->buffer, ~0, pretty_header, sizeof(pretty_header));
  61                printf("%s%c", pretty_header, hdr_termination);
  62        }       
  63}
  64
  65static int filter_commit(struct commit * commit)
  66{
  67        if (merge_order && stop_traversal && commit->object.flags & BOUNDARY)
  68                return STOP;
  69        if (commit->object.flags & (UNINTERESTING|SHOWN))
  70                return CONTINUE;
  71        if (min_age != -1 && (commit->date > min_age))
  72                return CONTINUE;
  73        if (max_age != -1 && (commit->date < max_age)) {
  74                if (!merge_order)
  75                        return STOP;
  76                else {
  77                        stop_traversal = 1;
  78                        return CONTINUE;
  79                }
  80        }
  81        if (max_count != -1 && !max_count--)
  82                return STOP;
  83        return DO;
  84}
  85
  86static int process_commit(struct commit * commit)
  87{
  88        int action=filter_commit(commit);
  89
  90        if (action == STOP) {
  91                return STOP;
  92        }
  93
  94        if (action == CONTINUE) {
  95                return CONTINUE;
  96        }
  97
  98        show_commit(commit);
  99
 100        return CONTINUE;
 101}
 102
 103static struct object_list **add_object(struct object *obj, struct object_list **p, const char *name)
 104{
 105        struct object_list *entry = xmalloc(sizeof(*entry));
 106        entry->item = obj;
 107        entry->next = *p;
 108        entry->name = name;
 109        *p = entry;
 110        return &entry->next;
 111}
 112
 113static struct object_list **process_blob(struct blob *blob, struct object_list **p, const char *name)
 114{
 115        struct object *obj = &blob->object;
 116
 117        if (!blob_objects)
 118                return p;
 119        if (obj->flags & (UNINTERESTING | SEEN))
 120                return p;
 121        obj->flags |= SEEN;
 122        return add_object(obj, p, name);
 123}
 124
 125static struct object_list **process_tree(struct tree *tree, struct object_list **p, const char *name)
 126{
 127        struct object *obj = &tree->object;
 128        struct tree_entry_list *entry;
 129
 130        if (!tree_objects)
 131                return p;
 132        if (obj->flags & (UNINTERESTING | SEEN))
 133                return p;
 134        if (parse_tree(tree) < 0)
 135                die("bad tree object %s", sha1_to_hex(obj->sha1));
 136        obj->flags |= SEEN;
 137        p = add_object(obj, p, name);
 138        for (entry = tree->entries ; entry ; entry = entry->next) {
 139                if (entry->directory)
 140                        p = process_tree(entry->item.tree, p, entry->name);
 141                else
 142                        p = process_blob(entry->item.blob, p, entry->name);
 143        }
 144        return p;
 145}
 146
 147static struct object_list *pending_objects = NULL;
 148
 149static void show_commit_list(struct commit_list *list)
 150{
 151        struct object_list *objects = NULL, **p = &objects, *pending;
 152        while (list) {
 153                struct commit *commit = pop_most_recent_commit(&list, SEEN);
 154
 155                p = process_tree(commit->tree, p, "");
 156                if (process_commit(commit) == STOP)
 157                        break;
 158        }
 159        for (pending = pending_objects; pending; pending = pending->next) {
 160                struct object *obj = pending->item;
 161                const char *name = pending->name;
 162                if (obj->flags & (UNINTERESTING | SEEN))
 163                        continue;
 164                if (obj->type == tag_type) {
 165                        obj->flags |= SEEN;
 166                        p = add_object(obj, p, name);
 167                        continue;
 168                }
 169                if (obj->type == tree_type) {
 170                        p = process_tree((struct tree *)obj, p, name);
 171                        continue;
 172                }
 173                if (obj->type == blob_type) {
 174                        p = process_blob((struct blob *)obj, p, name);
 175                        continue;
 176                }
 177                die("unknown pending object %s (%s)", sha1_to_hex(obj->sha1), name);
 178        }
 179        while (objects) {
 180                printf("%s %s\n", sha1_to_hex(objects->item->sha1), objects->name);
 181                objects = objects->next;
 182        }
 183}
 184
 185static void mark_blob_uninteresting(struct blob *blob)
 186{
 187        if (!blob_objects)
 188                return;
 189        if (blob->object.flags & UNINTERESTING)
 190                return;
 191        blob->object.flags |= UNINTERESTING;
 192}
 193
 194static void mark_tree_uninteresting(struct tree *tree)
 195{
 196        struct object *obj = &tree->object;
 197        struct tree_entry_list *entry;
 198
 199        if (!tree_objects)
 200                return;
 201        if (obj->flags & UNINTERESTING)
 202                return;
 203        obj->flags |= UNINTERESTING;
 204        if (parse_tree(tree) < 0)
 205                die("bad tree %s", sha1_to_hex(obj->sha1));
 206        entry = tree->entries;
 207        while (entry) {
 208                if (entry->directory)
 209                        mark_tree_uninteresting(entry->item.tree);
 210                else
 211                        mark_blob_uninteresting(entry->item.blob);
 212                entry = entry->next;
 213        }
 214}
 215
 216static void mark_parents_uninteresting(struct commit *commit)
 217{
 218        struct commit_list *parents = commit->parents;
 219
 220        if (tree_objects)
 221                mark_tree_uninteresting(commit->tree);
 222        while (parents) {
 223                struct commit *commit = parents->item;
 224                commit->object.flags |= UNINTERESTING;
 225                parents = parents->next;
 226        }
 227}
 228
 229static int everybody_uninteresting(struct commit_list *list)
 230{
 231        while (list) {
 232                struct commit *commit = list->item;
 233                list = list->next;
 234                if (commit->object.flags & UNINTERESTING)
 235                        continue;
 236                return 0;
 237        }
 238        return 1;
 239}
 240
 241/*
 242 * This is a truly stupid algorithm, but it's only
 243 * used for bisection, and we just don't care enough.
 244 *
 245 * We care just barely enough to avoid recursing for
 246 * non-merge entries.
 247 */
 248static int count_distance(struct commit_list *entry)
 249{
 250        int nr = 0;
 251
 252        while (entry) {
 253                struct commit *commit = entry->item;
 254                struct commit_list *p;
 255
 256                if (commit->object.flags & (UNINTERESTING | COUNTED))
 257                        break;
 258                nr++;
 259                commit->object.flags |= COUNTED;
 260                p = commit->parents;
 261                entry = p;
 262                if (p) {
 263                        p = p->next;
 264                        while (p) {
 265                                nr += count_distance(p);
 266                                p = p->next;
 267                        }
 268                }
 269        }
 270        return nr;
 271}
 272
 273static void clear_distance(struct commit_list *list)
 274{
 275        while (list) {
 276                struct commit *commit = list->item;
 277                commit->object.flags &= ~COUNTED;
 278                list = list->next;
 279        }
 280}
 281
 282static struct commit_list *find_bisection(struct commit_list *list)
 283{
 284        int nr, closest;
 285        struct commit_list *p, *best;
 286
 287        nr = 0;
 288        p = list;
 289        while (p) {
 290                nr++;
 291                p = p->next;
 292        }
 293        closest = 0;
 294        best = list;
 295
 296        p = list;
 297        while (p) {
 298                int distance = count_distance(p);
 299                clear_distance(list);
 300                if (nr - distance < distance)
 301                        distance = nr - distance;
 302                if (distance > closest) {
 303                        best = p;
 304                        closest = distance;
 305                }
 306                p = p->next;
 307        }
 308        if (best)
 309                best->next = NULL;
 310        return best;
 311}
 312
 313static struct commit_list *limit_list(struct commit_list *list)
 314{
 315        struct commit_list *newlist = NULL;
 316        struct commit_list **p = &newlist;
 317        while (list) {
 318                struct commit *commit = pop_most_recent_commit(&list, SEEN);
 319                struct object *obj = &commit->object;
 320
 321                if (obj->flags & UNINTERESTING) {
 322                        mark_parents_uninteresting(commit);
 323                        if (everybody_uninteresting(list))
 324                                break;
 325                        continue;
 326                }
 327                p = &commit_list_insert(commit, p)->next;
 328        }
 329        if (bisect_list)
 330                newlist = find_bisection(newlist);
 331        return newlist;
 332}
 333
 334static void add_pending_object(struct object *obj, const char *name)
 335{
 336        add_object(obj, &pending_objects, name);
 337}
 338
 339static struct commit *get_commit_reference(const char *name, unsigned int flags)
 340{
 341        unsigned char sha1[20];
 342        struct object *object;
 343
 344        if (get_sha1(name, sha1))
 345                usage(rev_list_usage);
 346        object = parse_object(sha1);
 347        if (!object)
 348                die("bad object %s", name);
 349
 350        /*
 351         * Tag object? Look what it points to..
 352         */
 353        if (object->type == tag_type) {
 354                struct tag *tag = (struct tag *) object;
 355                object->flags |= flags;
 356                if (tag_objects && !(object->flags & UNINTERESTING))
 357                        add_pending_object(object, tag->tag);
 358                object = tag->tagged;
 359        }
 360
 361        /*
 362         * Commit object? Just return it, we'll do all the complex
 363         * reachability crud.
 364         */
 365        if (object->type == commit_type) {
 366                struct commit *commit = (struct commit *)object;
 367                object->flags |= flags;
 368                if (parse_commit(commit) < 0)
 369                        die("unable to parse commit %s", name);
 370                return commit;
 371        }
 372
 373        /*
 374         * Tree object? Either mark it uniniteresting, or add it
 375         * to the list of objects to look at later..
 376         */
 377        if (object->type == tree_type) {
 378                struct tree *tree = (struct tree *)object;
 379                if (!tree_objects)
 380                        return NULL;
 381                if (flags & UNINTERESTING) {
 382                        mark_tree_uninteresting(tree);
 383                        return NULL;
 384                }
 385                add_pending_object(object, "");
 386                return NULL;
 387        }
 388
 389        /*
 390         * Blob object? You know the drill by now..
 391         */
 392        if (object->type == blob_type) {
 393                struct blob *blob = (struct blob *)object;
 394                if (!blob_objects)
 395                        return NULL;
 396                if (flags & UNINTERESTING) {
 397                        mark_blob_uninteresting(blob);
 398                        return NULL;
 399                }
 400                add_pending_object(object, "");
 401                return NULL;
 402        }
 403        die("%s is unknown object", name);
 404}
 405
 406int main(int argc, char **argv)
 407{
 408        struct commit_list *list = NULL;
 409        int i, limited = 0;
 410
 411        for (i = 1 ; i < argc; i++) {
 412                int flags;
 413                char *arg = argv[i];
 414                struct commit *commit;
 415
 416                if (!strncmp(arg, "--max-count=", 12)) {
 417                        max_count = atoi(arg + 12);
 418                        continue;
 419                }
 420                if (!strncmp(arg, "--max-age=", 10)) {
 421                        max_age = atoi(arg + 10);
 422                        continue;
 423                }
 424                if (!strncmp(arg, "--min-age=", 10)) {
 425                        min_age = atoi(arg + 10);
 426                        continue;
 427                }
 428                if (!strcmp(arg, "--header")) {
 429                        verbose_header = 1;
 430                        continue;
 431                }
 432                if (!strncmp(arg, "--pretty", 8)) {
 433                        commit_format = get_commit_format(arg+8);
 434                        verbose_header = 1;
 435                        hdr_termination = '\n';
 436                        prefix = "commit ";
 437                        continue;
 438                }
 439                if (!strcmp(arg, "--parents")) {
 440                        show_parents = 1;
 441                        continue;
 442                }
 443                if (!strcmp(arg, "--bisect")) {
 444                        bisect_list = 1;
 445                        continue;
 446                }
 447                if (!strcmp(arg, "--objects")) {
 448                        tag_objects = 1;
 449                        tree_objects = 1;
 450                        blob_objects = 1;
 451                        continue;
 452                }
 453                if (!strncmp(arg, "--merge-order", 13)) {
 454                        merge_order = 1;
 455                        continue;
 456                }
 457                if (!strncmp(arg, "--show-breaks", 13)) {
 458                        show_breaks = 1;
 459                        continue;
 460                }
 461
 462                flags = 0;
 463                if (*arg == '^') {
 464                        flags = UNINTERESTING;
 465                        arg++;
 466                        limited = 1;
 467                }
 468                if (show_breaks && !merge_order)
 469                        usage(rev_list_usage);
 470                commit = get_commit_reference(arg, flags);
 471                if (!commit)
 472                        continue;
 473                commit_list_insert(commit, &list);
 474        }
 475
 476        if (!merge_order) {             
 477                if (limited)
 478                        list = limit_list(list);
 479                show_commit_list(list);
 480        } else {
 481                if (sort_list_in_merge_order(list, &process_commit)) {
 482                          die("merge order sort failed\n");
 483                }
 484        }
 485
 486        return 0;
 487}