6 #include "parse-options.h"
7 #include "sha1-lookup.h"
9 #define CUTOFF_DATE_SLOP 86400 /* one day */
11 typedef struct rev_name
{
17 static long cutoff
= LONG_MAX
;
19 /* How many generations are maximally preferred over _one_ merge traversal? */
20 #define MERGE_TRAVERSAL_WEIGHT 65535
22 static void name_rev(struct commit
*commit
,
23 const char *tip_name
, int generation
, int distance
,
26 struct rev_name
*name
= (struct rev_name
*)commit
->util
;
27 struct commit_list
*parents
;
28 int parent_number
= 1;
32 if (commit
->date
< cutoff
)
36 tip_name
= xstrfmt("%s^0", tip_name
);
39 die("generation: %d, but deref?", generation
);
43 name
= xmalloc(sizeof(rev_name
));
46 } else if (name
->distance
> distance
) {
48 name
->tip_name
= tip_name
;
49 name
->generation
= generation
;
50 name
->distance
= distance
;
54 for (parents
= commit
->parents
;
56 parents
= parents
->next
, parent_number
++) {
57 if (parent_number
> 1) {
61 strip_suffix(tip_name
, "^0", &len
);
63 new_name
= xstrfmt("%.*s~%d^%d", (int)len
, tip_name
,
64 generation
, parent_number
);
66 new_name
= xstrfmt("%.*s^%d", (int)len
, tip_name
,
69 name_rev(parents
->item
, new_name
, 0,
70 distance
+ MERGE_TRAVERSAL_WEIGHT
, 0);
72 name_rev(parents
->item
, tip_name
, generation
+ 1,
78 static int subpath_matches(const char *path
, const char *filter
)
80 const char *subpath
= path
;
83 if (!wildmatch(filter
, subpath
, 0, NULL
))
84 return subpath
- path
;
85 subpath
= strchr(subpath
, '/');
92 static const char *name_ref_abbrev(const char *refname
, int shorten_unambiguous
)
94 if (shorten_unambiguous
)
95 refname
= shorten_unambiguous_ref(refname
, 0);
96 else if (starts_with(refname
, "refs/heads/"))
97 refname
= refname
+ 11;
98 else if (starts_with(refname
, "refs/"))
99 refname
= refname
+ 5;
103 struct name_ref_data
{
106 const char *ref_filter
;
109 static struct tip_table
{
110 struct tip_table_entry
{
111 unsigned char sha1
[20];
119 static void add_to_tip_table(const unsigned char *sha1
, const char *refname
,
120 int shorten_unambiguous
)
122 refname
= name_ref_abbrev(refname
, shorten_unambiguous
);
124 ALLOC_GROW(tip_table
.table
, tip_table
.nr
+ 1, tip_table
.alloc
);
125 hashcpy(tip_table
.table
[tip_table
.nr
].sha1
, sha1
);
126 tip_table
.table
[tip_table
.nr
].refname
= xstrdup(refname
);
128 tip_table
.sorted
= 0;
131 static int tipcmp(const void *a_
, const void *b_
)
133 const struct tip_table_entry
*a
= a_
, *b
= b_
;
134 return hashcmp(a
->sha1
, b
->sha1
);
137 static int name_ref(const char *path
, const struct object_id
*oid
, int flags
, void *cb_data
)
139 struct object
*o
= parse_object(oid
->hash
);
140 struct name_ref_data
*data
= cb_data
;
141 int can_abbreviate_output
= data
->tags_only
&& data
->name_only
;
144 if (data
->tags_only
&& !starts_with(path
, "refs/tags/"))
147 if (data
->ref_filter
) {
148 switch (subpath_matches(path
, data
->ref_filter
)) {
149 case -1: /* did not match */
151 case 0: /* matched fully */
153 default: /* matched subpath */
154 can_abbreviate_output
= 1;
159 add_to_tip_table(oid
->hash
, path
, can_abbreviate_output
);
161 while (o
&& o
->type
== OBJ_TAG
) {
162 struct tag
*t
= (struct tag
*) o
;
164 break; /* broken repository */
165 o
= parse_object(t
->tagged
->oid
.hash
);
168 if (o
&& o
->type
== OBJ_COMMIT
) {
169 struct commit
*commit
= (struct commit
*)o
;
171 path
= name_ref_abbrev(path
, can_abbreviate_output
);
172 name_rev(commit
, xstrdup(path
), 0, 0, deref
);
177 static const unsigned char *nth_tip_table_ent(size_t ix
, void *table_
)
179 struct tip_table_entry
*table
= table_
;
180 return table
[ix
].sha1
;
183 static const char *get_exact_ref_match(const struct object
*o
)
187 if (!tip_table
.table
|| !tip_table
.nr
)
190 if (!tip_table
.sorted
) {
191 qsort(tip_table
.table
, tip_table
.nr
, sizeof(*tip_table
.table
),
193 tip_table
.sorted
= 1;
196 found
= sha1_pos(o
->oid
.hash
, tip_table
.table
, tip_table
.nr
,
199 return tip_table
.table
[found
].refname
;
203 /* returns a static buffer */
204 static const char *get_rev_name(const struct object
*o
)
206 static char buffer
[1024];
210 if (o
->type
!= OBJ_COMMIT
)
211 return get_exact_ref_match(o
);
212 c
= (struct commit
*) o
;
220 int len
= strlen(n
->tip_name
);
221 if (len
> 2 && !strcmp(n
->tip_name
+ len
- 2, "^0"))
223 snprintf(buffer
, sizeof(buffer
), "%.*s~%d", len
, n
->tip_name
,
230 static void show_name(const struct object
*obj
,
231 const char *caller_name
,
232 int always
, int allow_undefined
, int name_only
)
235 const struct object_id
*oid
= &obj
->oid
;
238 printf("%s ", caller_name
? caller_name
: oid_to_hex(oid
));
239 name
= get_rev_name(obj
);
241 printf("%s\n", name
);
242 else if (allow_undefined
)
243 printf("undefined\n");
245 printf("%s\n", find_unique_abbrev(oid
->hash
, DEFAULT_ABBREV
));
247 die("cannot describe '%s'", oid_to_hex(oid
));
250 static char const * const name_rev_usage
[] = {
251 N_("git name-rev [<options>] <commit>..."),
252 N_("git name-rev [<options>] --all"),
253 N_("git name-rev [<options>] --stdin"),
257 static void name_rev_line(char *p
, struct name_ref_data
*data
)
261 for (p_start
= p
; *p
; p
++) {
262 #define ishex(x) (isdigit((x)) || ((x) >= 'a' && (x) <= 'f'))
265 else if (++forty
== 40 &&
267 unsigned char sha1
[40];
268 const char *name
= NULL
;
270 int p_len
= p
- p_start
+ 1;
275 if (!get_sha1(p
- 39, sha1
)) {
279 name
= get_rev_name(o
);
287 printf("%.*s%s", p_len
- 40, p_start
, name
);
289 printf("%.*s (%s)", p_len
, p_start
, name
);
296 fwrite(p_start
, p
- p_start
, 1, stdout
);
299 int cmd_name_rev(int argc
, const char **argv
, const char *prefix
)
301 struct object_array revs
= OBJECT_ARRAY_INIT
;
302 int all
= 0, transform_stdin
= 0, allow_undefined
= 1, always
= 0, peel_tag
= 0;
303 struct name_ref_data data
= { 0, 0, NULL
};
304 struct option opts
[] = {
305 OPT_BOOL(0, "name-only", &data
.name_only
, N_("print only names (no SHA-1)")),
306 OPT_BOOL(0, "tags", &data
.tags_only
, N_("only use tags to name the commits")),
307 OPT_STRING(0, "refs", &data
.ref_filter
, N_("pattern"),
308 N_("only use refs matching <pattern>")),
310 OPT_BOOL(0, "all", &all
, N_("list all commits reachable from all refs")),
311 OPT_BOOL(0, "stdin", &transform_stdin
, N_("read from stdin")),
312 OPT_BOOL(0, "undefined", &allow_undefined
, N_("allow to print `undefined` names (default)")),
313 OPT_BOOL(0, "always", &always
,
314 N_("show abbreviated commit object as fallback")),
316 /* A Hidden OPT_BOOL */
317 OPTION_SET_INT
, 0, "peel-tag", &peel_tag
, NULL
,
318 N_("dereference tags in the input (internal use)"),
319 PARSE_OPT_NOARG
| PARSE_OPT_HIDDEN
, NULL
, 1,
324 git_config(git_default_config
, NULL
);
325 argc
= parse_options(argc
, argv
, prefix
, opts
, name_rev_usage
, 0);
326 if (all
+ transform_stdin
+ !!argc
> 1) {
327 error("Specify either a list, or --all, not both!");
328 usage_with_options(name_rev_usage
, opts
);
330 if (all
|| transform_stdin
)
333 for (; argc
; argc
--, argv
++) {
334 unsigned char sha1
[20];
335 struct object
*object
;
336 struct commit
*commit
;
338 if (get_sha1(*argv
, sha1
)) {
339 fprintf(stderr
, "Could not get sha1 for %s. Skipping.\n",
345 object
= parse_object(sha1
);
347 struct object
*peeled
= deref_tag(object
, *argv
, 0);
348 if (peeled
&& peeled
->type
== OBJ_COMMIT
)
349 commit
= (struct commit
*)peeled
;
353 fprintf(stderr
, "Could not get object for %s. Skipping.\n",
359 if (cutoff
> commit
->date
)
360 cutoff
= commit
->date
;
365 fprintf(stderr
, "Could not get commit for %s. Skipping.\n",
369 object
= (struct object
*)commit
;
371 add_object_array(object
, *argv
, &revs
);
375 cutoff
= cutoff
- CUTOFF_DATE_SLOP
;
376 for_each_ref(name_ref
, &data
);
378 if (transform_stdin
) {
381 while (!feof(stdin
)) {
382 char *p
= fgets(buffer
, sizeof(buffer
), stdin
);
385 name_rev_line(p
, &data
);
390 max
= get_max_object_index();
391 for (i
= 0; i
< max
; i
++) {
392 struct object
*obj
= get_indexed_object(i
);
393 if (!obj
|| obj
->type
!= OBJ_COMMIT
)
396 always
, allow_undefined
, data
.name_only
);
400 for (i
= 0; i
< revs
.nr
; i
++)
401 show_name(revs
.objects
[i
].item
, revs
.objects
[i
].name
,
402 always
, allow_undefined
, data
.name_only
);