blob: 7864056f1ee64b896a7378cc76555e2cf7c3fd89 [file] [log] [blame]
Matthias Kestenholzd6b64ed2006-08-03 17:24:35 +02001#include "builtin.h"
Johannes Schindelinbd321bc2005-10-26 15:10:20 +02002#include "cache.h"
3#include "commit.h"
4#include "tag.h"
5#include "refs.h"
Pierre Habouzitedefb1a2007-10-15 22:57:59 +02006#include "parse-options.h"
Johannes Schindelinbd321bc2005-10-26 15:10:20 +02007
Junio C Hamanoc075aea2007-05-24 12:20:42 -07008#define CUTOFF_DATE_SLOP 86400 /* one day */
9
Johannes Schindelinbd321bc2005-10-26 15:10:20 +020010typedef struct rev_name {
11 const char *tip_name;
Johannes Schindelinbd321bc2005-10-26 15:10:20 +020012 int generation;
Johannes Schindelinac076c22007-08-27 12:37:33 +010013 int distance;
Johannes Schindelinbd321bc2005-10-26 15:10:20 +020014} rev_name;
15
16static long cutoff = LONG_MAX;
17
Johannes Schindelinac076c22007-08-27 12:37:33 +010018/* How many generations are maximally preferred over _one_ merge traversal? */
19#define MERGE_TRAVERSAL_WEIGHT 65535
20
Johannes Schindelinbd321bc2005-10-26 15:10:20 +020021static void name_rev(struct commit *commit,
Johannes Schindelinac076c22007-08-27 12:37:33 +010022 const char *tip_name, int generation, int distance,
Johannes Schindelinbd321bc2005-10-26 15:10:20 +020023 int deref)
24{
Linus Torvaldsd3ff6f52006-06-17 18:26:18 -070025 struct rev_name *name = (struct rev_name *)commit->util;
Johannes Schindelinbd321bc2005-10-26 15:10:20 +020026 struct commit_list *parents;
Junio C Hamanof2e6f1c2005-11-28 20:51:44 -080027 int parent_number = 1;
Johannes Schindelinbd321bc2005-10-26 15:10:20 +020028
29 if (!commit->object.parsed)
30 parse_commit(commit);
31
32 if (commit->date < cutoff)
33 return;
34
35 if (deref) {
36 char *new_name = xmalloc(strlen(tip_name)+3);
37 strcpy(new_name, tip_name);
38 strcat(new_name, "^0");
39 tip_name = new_name;
40
41 if (generation)
42 die("generation: %d, but deref?", generation);
43 }
44
45 if (name == NULL) {
46 name = xmalloc(sizeof(rev_name));
Linus Torvaldsd3ff6f52006-06-17 18:26:18 -070047 commit->util = name;
Johannes Schindelinbd321bc2005-10-26 15:10:20 +020048 goto copy_data;
Johannes Schindelinac076c22007-08-27 12:37:33 +010049 } else if (name->distance > distance) {
Johannes Schindelinbd321bc2005-10-26 15:10:20 +020050copy_data:
51 name->tip_name = tip_name;
Johannes Schindelinbd321bc2005-10-26 15:10:20 +020052 name->generation = generation;
Johannes Schindelinac076c22007-08-27 12:37:33 +010053 name->distance = distance;
Johannes Schindelinbd321bc2005-10-26 15:10:20 +020054 } else
55 return;
56
57 for (parents = commit->parents;
58 parents;
59 parents = parents->next, parent_number++) {
Junio C Hamanof2e6f1c2005-11-28 20:51:44 -080060 if (parent_number > 1) {
Johannes Schindelin59d3f542007-02-20 01:08:48 +010061 int len = strlen(tip_name);
Andy Whitcroftcf606e32007-05-15 17:33:25 +010062 char *new_name = xmalloc(len +
63 1 + decimal_length(generation) + /* ~<n> */
64 1 + 2 + /* ^NN */
65 1);
Johannes Schindelinbd321bc2005-10-26 15:10:20 +020066
Johannes Schindelin59d3f542007-02-20 01:08:48 +010067 if (len > 2 && !strcmp(tip_name + len - 2, "^0"))
68 len -= 2;
Johannes Schindelinbd321bc2005-10-26 15:10:20 +020069 if (generation > 0)
Johannes Schindelin59d3f542007-02-20 01:08:48 +010070 sprintf(new_name, "%.*s~%d^%d", len, tip_name,
Johannes Schindelinbd321bc2005-10-26 15:10:20 +020071 generation, parent_number);
72 else
Johannes Schindelin59d3f542007-02-20 01:08:48 +010073 sprintf(new_name, "%.*s^%d", len, tip_name,
74 parent_number);
Johannes Schindelinbd321bc2005-10-26 15:10:20 +020075
Johannes Schindelinac076c22007-08-27 12:37:33 +010076 name_rev(parents->item, new_name, 0,
77 distance + MERGE_TRAVERSAL_WEIGHT, 0);
Johannes Schindelinbd321bc2005-10-26 15:10:20 +020078 } else {
Johannes Schindelinac076c22007-08-27 12:37:33 +010079 name_rev(parents->item, tip_name, generation + 1,
80 distance + 1, 0);
Johannes Schindelinbd321bc2005-10-26 15:10:20 +020081 }
82 }
83}
84
Johannes Schindelin2afc29a2007-02-17 19:22:35 +010085struct name_ref_data {
86 int tags_only;
Shawn O. Pearce23615702007-05-21 03:20:25 -040087 int name_only;
Johannes Schindelin2afc29a2007-02-17 19:22:35 +010088 const char *ref_filter;
89};
90
Junio C Hamano8da19772006-09-20 22:02:01 -070091static int name_ref(const char *path, const unsigned char *sha1, int flags, void *cb_data)
Johannes Schindelinbd321bc2005-10-26 15:10:20 +020092{
93 struct object *o = parse_object(sha1);
Johannes Schindelin2afc29a2007-02-17 19:22:35 +010094 struct name_ref_data *data = cb_data;
Johannes Schindelinbd321bc2005-10-26 15:10:20 +020095 int deref = 0;
96
Junio C Hamanocc44c762007-02-20 01:53:29 -080097 if (data->tags_only && prefixcmp(path, "refs/tags/"))
Johannes Schindelin2afc29a2007-02-17 19:22:35 +010098 return 0;
99
100 if (data->ref_filter && fnmatch(data->ref_filter, path, 0))
Johannes Schindelinbd321bc2005-10-26 15:10:20 +0200101 return 0;
102
Linus Torvalds19746322006-07-11 20:45:31 -0700103 while (o && o->type == OBJ_TAG) {
Johannes Schindelinbd321bc2005-10-26 15:10:20 +0200104 struct tag *t = (struct tag *) o;
105 if (!t->tagged)
106 break; /* broken repository */
107 o = parse_object(t->tagged->sha1);
108 deref = 1;
109 }
Linus Torvalds19746322006-07-11 20:45:31 -0700110 if (o && o->type == OBJ_COMMIT) {
Johannes Schindelinbd321bc2005-10-26 15:10:20 +0200111 struct commit *commit = (struct commit *)o;
Johannes Schindelinbd321bc2005-10-26 15:10:20 +0200112
Junio C Hamanocc44c762007-02-20 01:53:29 -0800113 if (!prefixcmp(path, "refs/heads/"))
Junio C Hamano2c817df2006-01-11 14:20:09 -0800114 path = path + 11;
Shawn O. Pearce23615702007-05-21 03:20:25 -0400115 else if (data->tags_only
116 && data->name_only
117 && !prefixcmp(path, "refs/tags/"))
118 path = path + 10;
Junio C Hamanocc44c762007-02-20 01:53:29 -0800119 else if (!prefixcmp(path, "refs/"))
Junio C Hamano2c817df2006-01-11 14:20:09 -0800120 path = path + 5;
Johannes Schindelinbd321bc2005-10-26 15:10:20 +0200121
Shawn Pearce9befac42006-09-02 00:16:31 -0400122 name_rev(commit, xstrdup(path), 0, 0, deref);
Johannes Schindelinbd321bc2005-10-26 15:10:20 +0200123 }
124 return 0;
125}
126
127/* returns a static buffer */
Junio C Hamanoda2478d2008-03-02 08:51:57 -0800128static const char *get_rev_name(const struct object *o)
Johannes Schindelinbd321bc2005-10-26 15:10:20 +0200129{
130 static char buffer[1024];
Linus Torvaldsd3ff6f52006-06-17 18:26:18 -0700131 struct rev_name *n;
132 struct commit *c;
133
Linus Torvalds19746322006-07-11 20:45:31 -0700134 if (o->type != OBJ_COMMIT)
Pierre Habouzita2cf9f42007-12-24 12:18:22 +0100135 return NULL;
Linus Torvaldsd3ff6f52006-06-17 18:26:18 -0700136 c = (struct commit *) o;
137 n = c->util;
Johannes Schindelinbd321bc2005-10-26 15:10:20 +0200138 if (!n)
Pierre Habouzita2cf9f42007-12-24 12:18:22 +0100139 return NULL;
Johannes Schindelinbd321bc2005-10-26 15:10:20 +0200140
141 if (!n->generation)
142 return n->tip_name;
Johannes Schindelin59d3f542007-02-20 01:08:48 +0100143 else {
144 int len = strlen(n->tip_name);
145 if (len > 2 && !strcmp(n->tip_name + len - 2, "^0"))
146 len -= 2;
147 snprintf(buffer, sizeof(buffer), "%.*s~%d", len, n->tip_name,
148 n->generation);
Johannes Schindelinbd321bc2005-10-26 15:10:20 +0200149
Johannes Schindelin59d3f542007-02-20 01:08:48 +0100150 return buffer;
151 }
Johannes Schindelinbd321bc2005-10-26 15:10:20 +0200152}
Linus Torvalds1f1e8952006-06-19 17:42:35 -0700153
Junio C Hamanoda2478d2008-03-02 08:51:57 -0800154static void show_name(const struct object *obj,
155 const char *caller_name,
156 int always, int allow_undefined, int name_only)
157{
158 const char *name;
159 const unsigned char *sha1 = obj->sha1;
160
161 if (!name_only)
162 printf("%s ", caller_name ? caller_name : sha1_to_hex(sha1));
163 name = get_rev_name(obj);
164 if (name)
165 printf("%s\n", name);
166 else if (allow_undefined)
167 printf("undefined\n");
168 else if (always)
169 printf("%s\n", find_unique_abbrev(sha1, DEFAULT_ABBREV));
170 else
171 die("cannot describe '%s'", sha1_to_hex(sha1));
172}
173
Pierre Habouzitedefb1a2007-10-15 22:57:59 +0200174static char const * const name_rev_usage[] = {
René Scharfe44c8e602011-10-01 19:04:44 +0200175 "git name-rev [options] <commit>...",
176 "git name-rev [options] --all",
177 "git name-rev [options] --stdin",
Pierre Habouzitedefb1a2007-10-15 22:57:59 +0200178 NULL
179};
180
Junio C Hamanoe8b55fa2008-08-02 11:04:22 -0700181static void name_rev_line(char *p, struct name_ref_data *data)
182{
183 int forty = 0;
184 char *p_start;
185 for (p_start = p; *p; p++) {
186#define ishex(x) (isdigit((x)) || ((x) >= 'a' && (x) <= 'f'))
187 if (!ishex(*p))
188 forty = 0;
189 else if (++forty == 40 &&
190 !ishex(*(p+1))) {
191 unsigned char sha1[40];
192 const char *name = NULL;
193 char c = *(p+1);
René Scharfe7c5b1672008-08-03 15:44:33 +0200194 int p_len = p - p_start + 1;
Junio C Hamanoe8b55fa2008-08-02 11:04:22 -0700195
196 forty = 0;
197
198 *(p+1) = 0;
199 if (!get_sha1(p - 39, sha1)) {
200 struct object *o =
201 lookup_object(sha1);
202 if (o)
203 name = get_rev_name(o);
204 }
205 *(p+1) = c;
206
207 if (!name)
208 continue;
209
René Scharfe7c5b1672008-08-03 15:44:33 +0200210 if (data->name_only)
211 printf("%.*s%s", p_len - 40, p_start, name);
212 else
213 printf("%.*s (%s)", p_len, p_start, name);
Junio C Hamanoe8b55fa2008-08-02 11:04:22 -0700214 p_start = p + 1;
215 }
216 }
217
218 /* flush */
219 if (p_start != p)
220 fwrite(p_start, p - p_start, 1, stdout);
221}
222
Matthias Kestenholzd6b64ed2006-08-03 17:24:35 +0200223int cmd_name_rev(int argc, const char **argv, const char *prefix)
Johannes Schindelinbd321bc2005-10-26 15:10:20 +0200224{
Thiago Farina3cd47452010-08-28 23:04:17 -0300225 struct object_array revs = OBJECT_ARRAY_INIT;
Junio C Hamanoda2478d2008-03-02 08:51:57 -0800226 int all = 0, transform_stdin = 0, allow_undefined = 1, always = 0;
Shawn O. Pearce23615702007-05-21 03:20:25 -0400227 struct name_ref_data data = { 0, 0, NULL };
Pierre Habouzitedefb1a2007-10-15 22:57:59 +0200228 struct option opts[] = {
229 OPT_BOOLEAN(0, "name-only", &data.name_only, "print only names (no SHA-1)"),
230 OPT_BOOLEAN(0, "tags", &data.tags_only, "only use tags to name the commits"),
231 OPT_STRING(0, "refs", &data.ref_filter, "pattern",
232 "only use refs matching <pattern>"),
233 OPT_GROUP(""),
234 OPT_BOOLEAN(0, "all", &all, "list all commits reachable from all refs"),
235 OPT_BOOLEAN(0, "stdin", &transform_stdin, "read from stdin"),
Pierre Habouzita2cf9f42007-12-24 12:18:22 +0100236 OPT_BOOLEAN(0, "undefined", &allow_undefined, "allow to print `undefined` names"),
Junio C Hamanoda2478d2008-03-02 08:51:57 -0800237 OPT_BOOLEAN(0, "always", &always,
238 "show abbreviated commit object as fallback"),
Pierre Habouzitedefb1a2007-10-15 22:57:59 +0200239 OPT_END(),
240 };
Johannes Schindelinbd321bc2005-10-26 15:10:20 +0200241
Johannes Schindelinef90d6d2008-05-14 18:46:53 +0100242 git_config(git_default_config, NULL);
Stephen Boyd37782922009-05-23 11:53:12 -0700243 argc = parse_options(argc, argv, prefix, opts, name_rev_usage, 0);
Pierre Habouzitedefb1a2007-10-15 22:57:59 +0200244 if (!!all + !!transform_stdin + !!argc > 1) {
245 error("Specify either a list, or --all, not both!");
246 usage_with_options(name_rev_usage, opts);
247 }
248 if (all || transform_stdin)
249 cutoff = 0;
Johannes Schindelinbd321bc2005-10-26 15:10:20 +0200250
Pierre Habouzitedefb1a2007-10-15 22:57:59 +0200251 for (; argc; argc--, argv++) {
Johannes Schindelinbd321bc2005-10-26 15:10:20 +0200252 unsigned char sha1[20];
253 struct object *o;
254 struct commit *commit;
255
Johannes Schindelinbd321bc2005-10-26 15:10:20 +0200256 if (get_sha1(*argv, sha1)) {
257 fprintf(stderr, "Could not get sha1 for %s. Skipping.\n",
258 *argv);
259 continue;
260 }
261
Junio C Hamano9534f402005-11-02 15:19:13 -0800262 o = deref_tag(parse_object(sha1), *argv, 0);
Linus Torvalds19746322006-07-11 20:45:31 -0700263 if (!o || o->type != OBJ_COMMIT) {
Johannes Schindelinbd321bc2005-10-26 15:10:20 +0200264 fprintf(stderr, "Could not get commit for %s. Skipping.\n",
265 *argv);
266 continue;
267 }
268
269 commit = (struct commit *)o;
Johannes Schindelinbd321bc2005-10-26 15:10:20 +0200270 if (cutoff > commit->date)
271 cutoff = commit->date;
Linus Torvalds1f1e8952006-06-19 17:42:35 -0700272 add_object_array((struct object *)commit, *argv, &revs);
Johannes Schindelinbd321bc2005-10-26 15:10:20 +0200273 }
274
Junio C Hamanoc075aea2007-05-24 12:20:42 -0700275 if (cutoff)
276 cutoff = cutoff - CUTOFF_DATE_SLOP;
Johannes Schindelin2afc29a2007-02-17 19:22:35 +0100277 for_each_ref(name_ref, &data);
Johannes Schindelinbd321bc2005-10-26 15:10:20 +0200278
279 if (transform_stdin) {
280 char buffer[2048];
Johannes Schindelinbd321bc2005-10-26 15:10:20 +0200281
282 while (!feof(stdin)) {
Junio C Hamanoe8b55fa2008-08-02 11:04:22 -0700283 char *p = fgets(buffer, sizeof(buffer), stdin);
Johannes Schindelinbd321bc2005-10-26 15:10:20 +0200284 if (!p)
285 break;
Junio C Hamanoe8b55fa2008-08-02 11:04:22 -0700286 name_rev_line(p, &data);
Johannes Schindelinbd321bc2005-10-26 15:10:20 +0200287 }
288 } else if (all) {
Linus Torvaldsfc046a72006-06-29 21:38:55 -0700289 int i, max;
Johannes Schindelinbd321bc2005-10-26 15:10:20 +0200290
Linus Torvaldsfc046a72006-06-29 21:38:55 -0700291 max = get_max_object_index();
Björn Steinbrinka83123d2008-06-06 01:31:55 +0200292 for (i = 0; i < max; i++) {
293 struct object *obj = get_indexed_object(i);
294 if (!obj)
295 continue;
296 show_name(obj, NULL,
Junio C Hamanoda2478d2008-03-02 08:51:57 -0800297 always, allow_undefined, data.name_only);
Björn Steinbrinka83123d2008-06-06 01:31:55 +0200298 }
Linus Torvalds1f1e8952006-06-19 17:42:35 -0700299 } else {
300 int i;
Junio C Hamanoda2478d2008-03-02 08:51:57 -0800301 for (i = 0; i < revs.nr; i++)
302 show_name(revs.objects[i].item, revs.objects[i].name,
303 always, allow_undefined, data.name_only);
Linus Torvalds1f1e8952006-06-19 17:42:35 -0700304 }
Johannes Schindelinbd321bc2005-10-26 15:10:20 +0200305
306 return 0;
307}