8 static const char describe_usage
[] =
9 "git-describe [--all] [--tags] [--abbrev=<n>] <committish>*";
11 static int all
= 0; /* Default to annotated tags only */
12 static int tags
= 0; /* But allow any tags if --tags is specified */
14 #define DEFAULT_ABBREV 8 /* maybe too many */
15 static int abbrev
= DEFAULT_ABBREV
;
17 static int names
= 0, allocs
= 0;
18 static struct commit_name
{
19 const struct commit
*commit
;
20 int prio
; /* annotated tag = 2, tag = 1, head = 0 */
21 char path
[FLEX_ARRAY
]; /* more */
22 } **name_array
= NULL
;
24 static struct commit_name
*match(struct commit
*cmit
)
27 struct commit_name
**p
= name_array
;
30 struct commit_name
*n
= *p
++;
31 if (n
->commit
== cmit
)
37 static void add_to_known_names(const char *path
,
38 const struct commit
*commit
,
42 int len
= strlen(path
)+1;
43 struct commit_name
*name
= xmalloc(sizeof(struct commit_name
) + len
);
45 name
->commit
= commit
;
47 memcpy(name
->path
, path
, len
);
50 allocs
= (idx
+ 50) * 3 / 2;
51 name_array
= xrealloc(name_array
, allocs
*sizeof(*name_array
));
53 name_array
[idx
] = name
;
57 static int get_name(const char *path
, const unsigned char *sha1
)
59 struct commit
*commit
= lookup_commit_reference_gently(sha1
, 1);
60 struct object
*object
;
65 object
= parse_object(sha1
);
66 /* If --all, then any refs are used.
67 * If --tags, then any tags are used.
68 * Otherwise only annotated tags are used.
70 if (!strncmp(path
, "refs/tags/", 10)) {
71 if (object
->type
== tag_type
)
82 if (!tags
&& prio
< 2)
85 add_to_known_names(all
? path
+ 5 : path
+ 10, commit
, prio
);
89 static int compare_names(const void *_a
, const void *_b
)
91 struct commit_name
*a
= *(struct commit_name
**)_a
;
92 struct commit_name
*b
= *(struct commit_name
**)_b
;
93 unsigned long a_date
= a
->commit
->date
;
94 unsigned long b_date
= b
->commit
->date
;
96 if (a
->prio
!= b
->prio
)
97 return b
->prio
- a
->prio
;
98 return (a_date
> b_date
) ? -1 : (a_date
== b_date
) ? 0 : 1;
101 static void describe(char *arg
, int last_one
)
103 unsigned char sha1
[20];
105 struct commit_list
*list
;
106 static int initialized
= 0;
107 struct commit_name
*n
;
109 if (get_sha1(arg
, sha1
) < 0)
110 usage(describe_usage
);
111 cmit
= lookup_commit_reference(sha1
);
113 usage(describe_usage
);
117 for_each_ref(get_name
);
118 qsort(name_array
, names
, sizeof(*name_array
), compare_names
);
123 printf("%s\n", n
->path
);
128 commit_list_insert(cmit
, &list
);
130 struct commit
*c
= pop_most_recent_commit(&list
, SEEN
);
133 printf("%s-g%s\n", n
->path
,
134 find_unique_abbrev(cmit
->object
.sha1
, abbrev
));
136 clear_commit_marks(cmit
, SEEN
);
140 die("cannot describe '%s'", sha1_to_hex(cmit
->object
.sha1
));
143 int main(int argc
, char **argv
)
147 for (i
= 1; i
< argc
; i
++) {
148 const char *arg
= argv
[i
];
152 else if (!strcmp(arg
, "--all"))
154 else if (!strcmp(arg
, "--tags"))
156 else if (!strncmp(arg
, "--abbrev=", 9)) {
157 abbrev
= strtoul(arg
+ 9, NULL
, 10);
158 if (abbrev
< 4 || 40 <= abbrev
)
159 abbrev
= DEFAULT_ABBREV
;
162 usage(describe_usage
);
169 describe(argv
[i
], (i
== argc
- 1));