3 #include "repository.h"
 
   8 #include "parse-options.h"
 
   9 #include "sha1-lookup.h"
 
  10 #include "commit-slab.h"
 
  12 #define CUTOFF_DATE_SLOP 86400 /* one day */
 
  14 typedef struct rev_name {
 
  16         timestamp_t taggerdate;
 
  22 define_commit_slab(commit_rev_name, struct rev_name *);
 
  24 static timestamp_t cutoff = TIME_MAX;
 
  25 static struct commit_rev_name rev_names;
 
  27 /* How many generations are maximally preferred over _one_ merge traversal? */
 
  28 #define MERGE_TRAVERSAL_WEIGHT 65535
 
  30 static struct rev_name *get_commit_rev_name(struct commit *commit)
 
  32         struct rev_name **slot = commit_rev_name_peek(&rev_names, commit);
 
  34         return slot ? *slot : NULL;
 
  37 static void set_commit_rev_name(struct commit *commit, struct rev_name *name)
 
  39         *commit_rev_name_at(&rev_names, commit) = name;
 
  42 static int is_better_name(struct rev_name *name,
 
  44                           timestamp_t taggerdate,
 
  50          * When comparing names based on tags, prefer names
 
  51          * based on the older tag, even if it is farther away.
 
  53         if (from_tag && name->from_tag)
 
  54                 return (name->taggerdate > taggerdate ||
 
  55                         (name->taggerdate == taggerdate &&
 
  56                          name->distance > distance));
 
  59          * We know that at least one of them is a non-tag at this point.
 
  60          * favor a tag over a non-tag.
 
  62         if (name->from_tag != from_tag)
 
  66          * We are now looking at two non-tags.  Tiebreak to favor
 
  69         if (name->distance != distance)
 
  70                 return name->distance > distance;
 
  72         /* ... or tiebreak to favor older date */
 
  73         if (name->taggerdate != taggerdate)
 
  74                 return name->taggerdate > taggerdate;
 
  76         /* keep the current one if we cannot decide */
 
  80 static void name_rev(struct commit *commit,
 
  81                 const char *tip_name, timestamp_t taggerdate,
 
  82                 int generation, int distance, int from_tag,
 
  85         struct rev_name *name = get_commit_rev_name(commit);
 
  86         struct commit_list *parents;
 
  87         int parent_number = 1;
 
  92         if (commit->date < cutoff)
 
  96                 tip_name = to_free = xstrfmt("%s^0", tip_name);
 
  99                         die("generation: %d, but deref?", generation);
 
 103                 name = xmalloc(sizeof(rev_name));
 
 104                 set_commit_rev_name(commit, name);
 
 106         } else if (is_better_name(name, tip_name, taggerdate,
 
 107                                   generation, distance, from_tag)) {
 
 109                 name->tip_name = tip_name;
 
 110                 name->taggerdate = taggerdate;
 
 111                 name->generation = generation;
 
 112                 name->distance = distance;
 
 113                 name->from_tag = from_tag;
 
 119         for (parents = commit->parents;
 
 121                         parents = parents->next, parent_number++) {
 
 122                 if (parent_number > 1) {
 
 126                         strip_suffix(tip_name, "^0", &len);
 
 128                                 new_name = xstrfmt("%.*s~%d^%d", (int)len, tip_name,
 
 129                                                    generation, parent_number);
 
 131                                 new_name = xstrfmt("%.*s^%d", (int)len, tip_name,
 
 134                         name_rev(parents->item, new_name, taggerdate, 0,
 
 135                                  distance + MERGE_TRAVERSAL_WEIGHT,
 
 138                         name_rev(parents->item, tip_name, taggerdate,
 
 139                                  generation + 1, distance + 1,
 
 145 static int subpath_matches(const char *path, const char *filter)
 
 147         const char *subpath = path;
 
 150                 if (!wildmatch(filter, subpath, 0))
 
 151                         return subpath - path;
 
 152                 subpath = strchr(subpath, '/');
 
 159 static const char *name_ref_abbrev(const char *refname, int shorten_unambiguous)
 
 161         if (shorten_unambiguous)
 
 162                 refname = shorten_unambiguous_ref(refname, 0);
 
 163         else if (starts_with(refname, "refs/heads/"))
 
 164                 refname = refname + 11;
 
 165         else if (starts_with(refname, "refs/"))
 
 166                 refname = refname + 5;
 
 170 struct name_ref_data {
 
 173         struct string_list ref_filters;
 
 174         struct string_list exclude_filters;
 
 177 static struct tip_table {
 
 178         struct tip_table_entry {
 
 179                 struct object_id oid;
 
 187 static void add_to_tip_table(const struct object_id *oid, const char *refname,
 
 188                              int shorten_unambiguous)
 
 190         refname = name_ref_abbrev(refname, shorten_unambiguous);
 
 192         ALLOC_GROW(tip_table.table, tip_table.nr + 1, tip_table.alloc);
 
 193         oidcpy(&tip_table.table[tip_table.nr].oid, oid);
 
 194         tip_table.table[tip_table.nr].refname = xstrdup(refname);
 
 196         tip_table.sorted = 0;
 
 199 static int tipcmp(const void *a_, const void *b_)
 
 201         const struct tip_table_entry *a = a_, *b = b_;
 
 202         return oidcmp(&a->oid, &b->oid);
 
 205 static int name_ref(const char *path, const struct object_id *oid, int flags, void *cb_data)
 
 207         struct object *o = parse_object(the_repository, oid);
 
 208         struct name_ref_data *data = cb_data;
 
 209         int can_abbreviate_output = data->tags_only && data->name_only;
 
 211         timestamp_t taggerdate = TIME_MAX;
 
 213         if (data->tags_only && !starts_with(path, "refs/tags/"))
 
 216         if (data->exclude_filters.nr) {
 
 217                 struct string_list_item *item;
 
 219                 for_each_string_list_item(item, &data->exclude_filters) {
 
 220                         if (subpath_matches(path, item->string) >= 0)
 
 225         if (data->ref_filters.nr) {
 
 226                 struct string_list_item *item;
 
 229                 /* See if any of the patterns match. */
 
 230                 for_each_string_list_item(item, &data->ref_filters) {
 
 232                          * Check all patterns even after finding a match, so
 
 233                          * that we can see if a match with a subpath exists.
 
 234                          * When a user asked for 'refs/tags/v*' and 'v1.*',
 
 235                          * both of which match, the user is showing her
 
 236                          * willingness to accept a shortened output by having
 
 237                          * the 'v1.*' in the acceptable refnames, so we
 
 238                          * shouldn't stop when seeing 'refs/tags/v1.4' matches
 
 239                          * 'refs/tags/v*'.  We should show it as 'v1.4'.
 
 241                         switch (subpath_matches(path, item->string)) {
 
 242                         case -1: /* did not match */
 
 244                         case 0: /* matched fully */
 
 247                         default: /* matched subpath */
 
 249                                 can_abbreviate_output = 1;
 
 254                 /* If none of the patterns matched, stop now */
 
 259         add_to_tip_table(oid, path, can_abbreviate_output);
 
 261         while (o && o->type == OBJ_TAG) {
 
 262                 struct tag *t = (struct tag *) o;
 
 264                         break; /* broken repository */
 
 265                 o = parse_object(the_repository, &t->tagged->oid);
 
 267                 taggerdate = t->date;
 
 269         if (o && o->type == OBJ_COMMIT) {
 
 270                 struct commit *commit = (struct commit *)o;
 
 271                 int from_tag = starts_with(path, "refs/tags/");
 
 273                 if (taggerdate == TIME_MAX)
 
 274                         taggerdate = ((struct commit *)o)->date;
 
 275                 path = name_ref_abbrev(path, can_abbreviate_output);
 
 276                 name_rev(commit, xstrdup(path), taggerdate, 0, 0,
 
 282 static const unsigned char *nth_tip_table_ent(size_t ix, void *table_)
 
 284         struct tip_table_entry *table = table_;
 
 285         return table[ix].oid.hash;
 
 288 static const char *get_exact_ref_match(const struct object *o)
 
 292         if (!tip_table.table || !tip_table.nr)
 
 295         if (!tip_table.sorted) {
 
 296                 QSORT(tip_table.table, tip_table.nr, tipcmp);
 
 297                 tip_table.sorted = 1;
 
 300         found = sha1_pos(o->oid.hash, tip_table.table, tip_table.nr,
 
 303                 return tip_table.table[found].refname;
 
 307 /* may return a constant string or use "buf" as scratch space */
 
 308 static const char *get_rev_name(const struct object *o, struct strbuf *buf)
 
 313         if (o->type != OBJ_COMMIT)
 
 314                 return get_exact_ref_match(o);
 
 315         c = (struct commit *) o;
 
 316         n = get_commit_rev_name(c);
 
 323                 int len = strlen(n->tip_name);
 
 324                 if (len > 2 && !strcmp(n->tip_name + len - 2, "^0"))
 
 327                 strbuf_addf(buf, "%.*s~%d", len, n->tip_name, n->generation);
 
 332 static void show_name(const struct object *obj,
 
 333                       const char *caller_name,
 
 334                       int always, int allow_undefined, int name_only)
 
 337         const struct object_id *oid = &obj->oid;
 
 338         struct strbuf buf = STRBUF_INIT;
 
 341                 printf("%s ", caller_name ? caller_name : oid_to_hex(oid));
 
 342         name = get_rev_name(obj, &buf);
 
 344                 printf("%s\n", name);
 
 345         else if (allow_undefined)
 
 346                 printf("undefined\n");
 
 348                 printf("%s\n", find_unique_abbrev(oid, DEFAULT_ABBREV));
 
 350                 die("cannot describe '%s'", oid_to_hex(oid));
 
 351         strbuf_release(&buf);
 
 354 static char const * const name_rev_usage[] = {
 
 355         N_("git name-rev [<options>] <commit>..."),
 
 356         N_("git name-rev [<options>] --all"),
 
 357         N_("git name-rev [<options>] --stdin"),
 
 361 static void name_rev_line(char *p, struct name_ref_data *data)
 
 363         struct strbuf buf = STRBUF_INIT;
 
 366         const unsigned hexsz = the_hash_algo->hexsz;
 
 368         for (p_start = p; *p; p++) {
 
 369 #define ishex(x) (isdigit((x)) || ((x) >= 'a' && (x) <= 'f'))
 
 372                 else if (++counter == hexsz &&
 
 374                         struct object_id oid;
 
 375                         const char *name = NULL;
 
 377                         int p_len = p - p_start + 1;
 
 382                         if (!get_oid(p - (hexsz - 1), &oid)) {
 
 384                                         lookup_object(the_repository,
 
 387                                         name = get_rev_name(o, &buf);
 
 395                                 printf("%.*s%s", p_len - hexsz, p_start, name);
 
 397                                 printf("%.*s (%s)", p_len, p_start, name);
 
 404                 fwrite(p_start, p - p_start, 1, stdout);
 
 406         strbuf_release(&buf);
 
 409 int cmd_name_rev(int argc, const char **argv, const char *prefix)
 
 411         struct object_array revs = OBJECT_ARRAY_INIT;
 
 412         int all = 0, transform_stdin = 0, allow_undefined = 1, always = 0, peel_tag = 0;
 
 413         struct name_ref_data data = { 0, 0, STRING_LIST_INIT_NODUP, STRING_LIST_INIT_NODUP };
 
 414         struct option opts[] = {
 
 415                 OPT_BOOL(0, "name-only", &data.name_only, N_("print only names (no SHA-1)")),
 
 416                 OPT_BOOL(0, "tags", &data.tags_only, N_("only use tags to name the commits")),
 
 417                 OPT_STRING_LIST(0, "refs", &data.ref_filters, N_("pattern"),
 
 418                                    N_("only use refs matching <pattern>")),
 
 419                 OPT_STRING_LIST(0, "exclude", &data.exclude_filters, N_("pattern"),
 
 420                                    N_("ignore refs matching <pattern>")),
 
 422                 OPT_BOOL(0, "all", &all, N_("list all commits reachable from all refs")),
 
 423                 OPT_BOOL(0, "stdin", &transform_stdin, N_("read from stdin")),
 
 424                 OPT_BOOL(0, "undefined", &allow_undefined, N_("allow to print `undefined` names (default)")),
 
 425                 OPT_BOOL(0, "always",     &always,
 
 426                            N_("show abbreviated commit object as fallback")),
 
 428                         /* A Hidden OPT_BOOL */
 
 429                         OPTION_SET_INT, 0, "peel-tag", &peel_tag, NULL,
 
 430                         N_("dereference tags in the input (internal use)"),
 
 431                         PARSE_OPT_NOARG | PARSE_OPT_HIDDEN, NULL, 1,
 
 436         init_commit_rev_name(&rev_names);
 
 437         git_config(git_default_config, NULL);
 
 438         argc = parse_options(argc, argv, prefix, opts, name_rev_usage, 0);
 
 439         if (all + transform_stdin + !!argc > 1) {
 
 440                 error("Specify either a list, or --all, not both!");
 
 441                 usage_with_options(name_rev_usage, opts);
 
 443         if (all || transform_stdin)
 
 446         for (; argc; argc--, argv++) {
 
 447                 struct object_id oid;
 
 448                 struct object *object;
 
 449                 struct commit *commit;
 
 451                 if (get_oid(*argv, &oid)) {
 
 452                         fprintf(stderr, "Could not get sha1 for %s. Skipping.\n",
 
 458                 object = parse_object(the_repository, &oid);
 
 460                         struct object *peeled = deref_tag(the_repository,
 
 462                         if (peeled && peeled->type == OBJ_COMMIT)
 
 463                                 commit = (struct commit *)peeled;
 
 467                         fprintf(stderr, "Could not get object for %s. Skipping.\n",
 
 473                         if (cutoff > commit->date)
 
 474                                 cutoff = commit->date;
 
 479                                 fprintf(stderr, "Could not get commit for %s. Skipping.\n",
 
 483                         object = (struct object *)commit;
 
 485                 add_object_array(object, *argv, &revs);
 
 489                 cutoff = cutoff - CUTOFF_DATE_SLOP;
 
 490         for_each_ref(name_ref, &data);
 
 492         if (transform_stdin) {
 
 495                 while (!feof(stdin)) {
 
 496                         char *p = fgets(buffer, sizeof(buffer), stdin);
 
 499                         name_rev_line(p, &data);
 
 504                 max = get_max_object_index();
 
 505                 for (i = 0; i < max; i++) {
 
 506                         struct object *obj = get_indexed_object(i);
 
 507                         if (!obj || obj->type != OBJ_COMMIT)
 
 510                                   always, allow_undefined, data.name_only);
 
 514                 for (i = 0; i < revs.nr; i++)
 
 515                         show_name(revs.objects[i].item, revs.objects[i].name,
 
 516                                   always, allow_undefined, data.name_only);