6 #include "parse-options.h"
7 #include "sha1-lookup.h"
9 #define CUTOFF_DATE_SLOP 86400 /* one day */
11 typedef struct rev_name {
13 unsigned long taggerdate;
18 static long cutoff = LONG_MAX;
20 /* How many generations are maximally preferred over _one_ merge traversal? */
21 #define MERGE_TRAVERSAL_WEIGHT 65535
23 static void name_rev(struct commit *commit,
24 const char *tip_name, unsigned long taggerdate,
25 int generation, int distance,
28 struct rev_name *name = (struct rev_name *)commit->util;
29 struct commit_list *parents;
30 int parent_number = 1;
34 if (commit->date < cutoff)
38 tip_name = xstrfmt("%s^0", tip_name);
41 die("generation: %d, but deref?", generation);
45 name = xmalloc(sizeof(rev_name));
48 } else if (name->taggerdate > taggerdate ||
49 (name->taggerdate == taggerdate &&
50 name->distance > distance)) {
52 name->tip_name = tip_name;
53 name->taggerdate = taggerdate;
54 name->generation = generation;
55 name->distance = distance;
59 for (parents = commit->parents;
61 parents = parents->next, parent_number++) {
62 if (parent_number > 1) {
66 strip_suffix(tip_name, "^0", &len);
68 new_name = xstrfmt("%.*s~%d^%d", (int)len, tip_name,
69 generation, parent_number);
71 new_name = xstrfmt("%.*s^%d", (int)len, tip_name,
74 name_rev(parents->item, new_name, taggerdate, 0,
75 distance + MERGE_TRAVERSAL_WEIGHT, 0);
77 name_rev(parents->item, tip_name, taggerdate,
78 generation + 1, distance + 1, 0);
83 static int subpath_matches(const char *path, const char *filter)
85 const char *subpath = path;
88 if (!wildmatch(filter, subpath, 0, NULL))
89 return subpath - path;
90 subpath = strchr(subpath, '/');
97 static const char *name_ref_abbrev(const char *refname, int shorten_unambiguous)
99 if (shorten_unambiguous)
100 refname = shorten_unambiguous_ref(refname, 0);
101 else if (starts_with(refname, "refs/heads/"))
102 refname = refname + 11;
103 else if (starts_with(refname, "refs/"))
104 refname = refname + 5;
108 struct name_ref_data {
111 struct string_list ref_filters;
112 struct string_list exclude_filters;
115 static struct tip_table {
116 struct tip_table_entry {
117 unsigned char sha1[20];
125 static void add_to_tip_table(const unsigned char *sha1, const char *refname,
126 int shorten_unambiguous)
128 refname = name_ref_abbrev(refname, shorten_unambiguous);
130 ALLOC_GROW(tip_table.table, tip_table.nr + 1, tip_table.alloc);
131 hashcpy(tip_table.table[tip_table.nr].sha1, sha1);
132 tip_table.table[tip_table.nr].refname = xstrdup(refname);
134 tip_table.sorted = 0;
137 static int tipcmp(const void *a_, const void *b_)
139 const struct tip_table_entry *a = a_, *b = b_;
140 return hashcmp(a->sha1, b->sha1);
143 static int name_ref(const char *path, const struct object_id *oid, int flags, void *cb_data)
145 struct object *o = parse_object(oid->hash);
146 struct name_ref_data *data = cb_data;
147 int can_abbreviate_output = data->tags_only && data->name_only;
149 unsigned long taggerdate = ULONG_MAX;
151 if (data->tags_only && !starts_with(path, "refs/tags/"))
154 if (data->exclude_filters.nr) {
155 struct string_list_item *item;
157 for_each_string_list_item(item, &data->exclude_filters) {
158 if (subpath_matches(path, item->string) >= 0)
163 if (data->ref_filters.nr) {
164 struct string_list_item *item;
167 /* See if any of the patterns match. */
168 for_each_string_list_item(item, &data->ref_filters) {
170 * Check all patterns even after finding a match, so
171 * that we can see if a match with a subpath exists.
172 * When a user asked for 'refs/tags/v*' and 'v1.*',
173 * both of which match, the user is showing her
174 * willingness to accept a shortened output by having
175 * the 'v1.*' in the acceptable refnames, so we
176 * shouldn't stop when seeing 'refs/tags/v1.4' matches
177 * 'refs/tags/v*'. We should show it as 'v1.4'.
179 switch (subpath_matches(path, item->string)) {
180 case -1: /* did not match */
182 case 0: /* matched fully */
185 default: /* matched subpath */
187 can_abbreviate_output = 1;
192 /* If none of the patterns matched, stop now */
197 add_to_tip_table(oid->hash, path, can_abbreviate_output);
199 while (o && o->type == OBJ_TAG) {
200 struct tag *t = (struct tag *) o;
202 break; /* broken repository */
203 o = parse_object(t->tagged->oid.hash);
205 taggerdate = t->date;
207 if (o && o->type == OBJ_COMMIT) {
208 struct commit *commit = (struct commit *)o;
210 path = name_ref_abbrev(path, can_abbreviate_output);
211 name_rev(commit, xstrdup(path), taggerdate, 0, 0, deref);
216 static const unsigned char *nth_tip_table_ent(size_t ix, void *table_)
218 struct tip_table_entry *table = table_;
219 return table[ix].sha1;
222 static const char *get_exact_ref_match(const struct object *o)
226 if (!tip_table.table || !tip_table.nr)
229 if (!tip_table.sorted) {
230 QSORT(tip_table.table, tip_table.nr, tipcmp);
231 tip_table.sorted = 1;
234 found = sha1_pos(o->oid.hash, tip_table.table, tip_table.nr,
237 return tip_table.table[found].refname;
241 /* returns a static buffer */
242 static const char *get_rev_name(const struct object *o)
244 static char buffer[1024];
248 if (o->type != OBJ_COMMIT)
249 return get_exact_ref_match(o);
250 c = (struct commit *) o;
258 int len = strlen(n->tip_name);
259 if (len > 2 && !strcmp(n->tip_name + len - 2, "^0"))
261 snprintf(buffer, sizeof(buffer), "%.*s~%d", len, n->tip_name,
268 static void show_name(const struct object *obj,
269 const char *caller_name,
270 int always, int allow_undefined, int name_only)
273 const struct object_id *oid = &obj->oid;
276 printf("%s ", caller_name ? caller_name : oid_to_hex(oid));
277 name = get_rev_name(obj);
279 printf("%s\n", name);
280 else if (allow_undefined)
281 printf("undefined\n");
283 printf("%s\n", find_unique_abbrev(oid->hash, DEFAULT_ABBREV));
285 die("cannot describe '%s'", oid_to_hex(oid));
288 static char const * const name_rev_usage[] = {
289 N_("git name-rev [<options>] <commit>..."),
290 N_("git name-rev [<options>] --all"),
291 N_("git name-rev [<options>] --stdin"),
295 static void name_rev_line(char *p, struct name_ref_data *data)
299 for (p_start = p; *p; p++) {
300 #define ishex(x) (isdigit((x)) || ((x) >= 'a' && (x) <= 'f'))
303 else if (++forty == 40 &&
305 unsigned char sha1[40];
306 const char *name = NULL;
308 int p_len = p - p_start + 1;
313 if (!get_sha1(p - 39, sha1)) {
317 name = get_rev_name(o);
325 printf("%.*s%s", p_len - 40, p_start, name);
327 printf("%.*s (%s)", p_len, p_start, name);
334 fwrite(p_start, p - p_start, 1, stdout);
337 int cmd_name_rev(int argc, const char **argv, const char *prefix)
339 struct object_array revs = OBJECT_ARRAY_INIT;
340 int all = 0, transform_stdin = 0, allow_undefined = 1, always = 0, peel_tag = 0;
341 struct name_ref_data data = { 0, 0, STRING_LIST_INIT_NODUP, STRING_LIST_INIT_NODUP };
342 struct option opts[] = {
343 OPT_BOOL(0, "name-only", &data.name_only, N_("print only names (no SHA-1)")),
344 OPT_BOOL(0, "tags", &data.tags_only, N_("only use tags to name the commits")),
345 OPT_STRING_LIST(0, "refs", &data.ref_filters, N_("pattern"),
346 N_("only use refs matching <pattern>")),
347 OPT_STRING_LIST(0, "exclude", &data.exclude_filters, N_("pattern"),
348 N_("ignore refs matching <pattern>")),
350 OPT_BOOL(0, "all", &all, N_("list all commits reachable from all refs")),
351 OPT_BOOL(0, "stdin", &transform_stdin, N_("read from stdin")),
352 OPT_BOOL(0, "undefined", &allow_undefined, N_("allow to print `undefined` names (default)")),
353 OPT_BOOL(0, "always", &always,
354 N_("show abbreviated commit object as fallback")),
356 /* A Hidden OPT_BOOL */
357 OPTION_SET_INT, 0, "peel-tag", &peel_tag, NULL,
358 N_("dereference tags in the input (internal use)"),
359 PARSE_OPT_NOARG | PARSE_OPT_HIDDEN, NULL, 1,
364 git_config(git_default_config, NULL);
365 argc = parse_options(argc, argv, prefix, opts, name_rev_usage, 0);
366 if (all + transform_stdin + !!argc > 1) {
367 error("Specify either a list, or --all, not both!");
368 usage_with_options(name_rev_usage, opts);
370 if (all || transform_stdin)
373 for (; argc; argc--, argv++) {
374 unsigned char sha1[20];
375 struct object *object;
376 struct commit *commit;
378 if (get_sha1(*argv, sha1)) {
379 fprintf(stderr, "Could not get sha1 for %s. Skipping.\n",
385 object = parse_object(sha1);
387 struct object *peeled = deref_tag(object, *argv, 0);
388 if (peeled && peeled->type == OBJ_COMMIT)
389 commit = (struct commit *)peeled;
393 fprintf(stderr, "Could not get object for %s. Skipping.\n",
399 if (cutoff > commit->date)
400 cutoff = commit->date;
405 fprintf(stderr, "Could not get commit for %s. Skipping.\n",
409 object = (struct object *)commit;
411 add_object_array(object, *argv, &revs);
415 cutoff = cutoff - CUTOFF_DATE_SLOP;
416 for_each_ref(name_ref, &data);
418 if (transform_stdin) {
421 while (!feof(stdin)) {
422 char *p = fgets(buffer, sizeof(buffer), stdin);
425 name_rev_line(p, &data);
430 max = get_max_object_index();
431 for (i = 0; i < max; i++) {
432 struct object *obj = get_indexed_object(i);
433 if (!obj || obj->type != OBJ_COMMIT)
436 always, allow_undefined, data.name_only);
440 for (i = 0; i < revs.nr; i++)
441 show_name(revs.objects[i].item, revs.objects[i].name,
442 always, allow_undefined, data.name_only);