]> git.ipfire.org Git - thirdparty/git.git/blame - ref-filter.c
ref-filter: support different email formats
[thirdparty/git.git] / ref-filter.c
CommitLineData
c95b7585
KN
1#include "builtin.h"
2#include "cache.h"
3#include "parse-options.h"
4#include "refs.h"
5#include "wildmatch.h"
cbd53a21 6#include "object-store.h"
109cd76d 7#include "repository.h"
c95b7585
KN
8#include "commit.h"
9#include "remote.h"
10#include "color.h"
11#include "tag.h"
12#include "quote.h"
13#include "ref-filter.h"
35257aa0 14#include "revision.h"
ce592082 15#include "utf8.h"
90c00408
KN
16#include "git-compat-util.h"
17#include "version.h"
b1d31c89 18#include "trailer.h"
d4919bb2 19#include "wt-status.h"
a91aca44 20#include "commit-slab.h"
819807b3 21#include "commit-graph.h"
64043556 22#include "commit-reach.h"
2582083f
NB
23#include "worktree.h"
24#include "hashmap.h"
dbbcd44f 25#include "strvec.h"
c95b7585 26
6eac70fa
KN
27static struct ref_msg {
28 const char *gone;
29 const char *ahead;
30 const char *behind;
31 const char *ahead_behind;
32} msgs = {
33 /* Untranslated plumbing messages: */
34 "gone",
35 "ahead %d",
36 "behind %d",
37 "ahead %d, behind %d"
38};
39
40void setup_ref_filter_porcelain_msg(void)
41{
42 msgs.gone = _("gone");
43 msgs.ahead = _("ahead %d");
44 msgs.behind = _("behind %d");
45 msgs.ahead_behind = _("ahead %d, behind %d");
46}
c95b7585
KN
47
48typedef enum { FIELD_STR, FIELD_ULONG, FIELD_TIME } cmp_type;
4f3e3b37 49typedef enum { COMPARE_EQUAL, COMPARE_UNEQUAL, COMPARE_NONE } cmp_status;
a8e7e385 50typedef enum { SOURCE_NONE = 0, SOURCE_OBJ, SOURCE_OTHER } info_source;
c95b7585 51
5bd881d9
KN
52struct align {
53 align_type position;
54 unsigned int width;
55};
56
c58492d4 57struct if_then_else {
4f3e3b37
KN
58 cmp_status cmp_status;
59 const char *str;
c58492d4
KN
60 unsigned int then_atom_seen : 1,
61 else_atom_seen : 1,
62 condition_satisfied : 1;
63};
64
b180e6fe 65struct refname_atom {
1a34728e
KN
66 enum { R_NORMAL, R_SHORT, R_LSTRIP, R_RSTRIP } option;
67 int lstrip, rstrip;
b180e6fe
KN
68};
69
aa46a0da
OT
70static struct expand_data {
71 struct object_id oid;
72 enum object_type type;
73 unsigned long size;
74 off_t disk_size;
75 struct object_id delta_base_oid;
76 void *content;
77
78 struct object_info info;
79} oi, oi_deref;
80
2582083f 81struct ref_to_worktree_entry {
e2b5038d 82 struct hashmap_entry ent;
2582083f
NB
83 struct worktree *wt; /* key is wt->head_ref */
84};
85
86static int ref_to_worktree_map_cmpfnc(const void *unused_lookupdata,
939af16e
EW
87 const struct hashmap_entry *eptr,
88 const struct hashmap_entry *kptr,
2582083f
NB
89 const void *keydata_aka_refname)
90{
939af16e
EW
91 const struct ref_to_worktree_entry *e, *k;
92
93 e = container_of(eptr, const struct ref_to_worktree_entry, ent);
94 k = container_of(kptr, const struct ref_to_worktree_entry, ent);
95
2582083f
NB
96 return strcmp(e->wt->head_ref,
97 keydata_aka_refname ? keydata_aka_refname : k->wt->head_ref);
98}
99
100static struct ref_to_worktree_map {
101 struct hashmap map;
102 struct worktree **worktrees;
103} ref_to_worktree_map;
104
50cd83dc
KN
105/*
106 * An atom is a valid field atom listed below, possibly prefixed with
107 * a "*" to denote deref_tag().
108 *
109 * We parse given format string and sort specifiers, and make a list
110 * of properties that we need to extract out of objects. ref_array_item
111 * structure will hold an array of values extracted that can be
112 * indexed with the "atom number", which is an index into this
113 * array.
114 */
b072add7
KN
115static struct used_atom {
116 const char *name;
117 cmp_type type;
a8e7e385 118 info_source source;
fd935cc7
KN
119 union {
120 char color[COLOR_MAXLEN];
5bd881d9 121 struct align align;
7743fcca 122 struct {
cc72385f 123 enum {
9700fae5 124 RR_REF, RR_TRACK, RR_TRACKSHORT, RR_REMOTE_NAME, RR_REMOTE_REF
cc72385f 125 } option;
3ba308cb 126 struct refname_atom refname;
cc72385f 127 unsigned int nobracket : 1, push : 1, push_remote : 1;
7743fcca 128 } remote_ref;
452db397 129 struct {
b6839fda
CC
130 enum { C_BARE, C_BODY, C_BODY_DEP, C_LENGTH,
131 C_LINES, C_SIG, C_SUB, C_TRAILERS } option;
67a20a00 132 struct process_trailer_options trailer_opts;
452db397
KN
133 unsigned int nlines;
134 } contents;
4f3e3b37
KN
135 struct {
136 cmp_status cmp_status;
137 const char *str;
138 } if_then_else;
42d0eb05
KN
139 struct {
140 enum { O_FULL, O_LENGTH, O_SHORT } option;
141 unsigned int length;
142 } objectname;
b82445dc
HV
143 struct email_option {
144 enum { EO_RAW, EO_TRIM, EO_LOCALPART } option;
145 } email_option;
b180e6fe 146 struct refname_atom refname;
613a0e52 147 char *head;
fd935cc7 148 } u;
b072add7 149} *used_atom;
50cd83dc 150static int used_atom_cnt, need_tagged, need_symref;
50cd83dc 151
e2e7a245
OT
152/*
153 * Expand string, append it to strbuf *sb, then return error code ret.
154 * Allow to save few lines of code.
155 */
156static int strbuf_addf_ret(struct strbuf *sb, int ret, const char *fmt, ...)
157{
158 va_list ap;
159 va_start(ap, fmt);
160 strbuf_vaddf(sb, fmt, ap);
161 va_end(ap);
162 return ret;
163}
164
74efea94
OT
165static int color_atom_parser(const struct ref_format *format, struct used_atom *atom,
166 const char *color_value, struct strbuf *err)
fd935cc7
KN
167{
168 if (!color_value)
74efea94 169 return strbuf_addf_ret(err, -1, _("expected format: %%(color:<color>)"));
fd935cc7 170 if (color_parse(color_value, atom->u.color) < 0)
74efea94
OT
171 return strbuf_addf_ret(err, -1, _("unrecognized color: %%(color:%s)"),
172 color_value);
11b087ad
JK
173 /*
174 * We check this after we've parsed the color, which lets us complain
175 * about syntactically bogus color names even if they won't be used.
176 */
177 if (!want_color(format->use_color))
178 color_parse("", atom->u.color);
74efea94 179 return 0;
fd935cc7
KN
180}
181
74efea94
OT
182static int refname_atom_parser_internal(struct refname_atom *atom, const char *arg,
183 const char *name, struct strbuf *err)
5339bdad
KN
184{
185 if (!arg)
b180e6fe 186 atom->option = R_NORMAL;
5339bdad 187 else if (!strcmp(arg, "short"))
b180e6fe 188 atom->option = R_SHORT;
44a6b6ce
JH
189 else if (skip_prefix(arg, "lstrip=", &arg) ||
190 skip_prefix(arg, "strip=", &arg)) {
17938f17 191 atom->option = R_LSTRIP;
1a0ca5e3 192 if (strtol_i(arg, 10, &atom->lstrip))
74efea94 193 return strbuf_addf_ret(err, -1, _("Integer value expected refname:lstrip=%s"), arg);
1a34728e
KN
194 } else if (skip_prefix(arg, "rstrip=", &arg)) {
195 atom->option = R_RSTRIP;
196 if (strtol_i(arg, 10, &atom->rstrip))
74efea94 197 return strbuf_addf_ret(err, -1, _("Integer value expected refname:rstrip=%s"), arg);
b180e6fe 198 } else
74efea94
OT
199 return strbuf_addf_ret(err, -1, _("unrecognized %%(%s) argument: %s"), name, arg);
200 return 0;
b180e6fe
KN
201}
202
74efea94
OT
203static int remote_ref_atom_parser(const struct ref_format *format, struct used_atom *atom,
204 const char *arg, struct strbuf *err)
5339bdad 205{
7743fcca
KN
206 struct string_list params = STRING_LIST_INIT_DUP;
207 int i;
208
cc72385f
JS
209 if (!strcmp(atom->name, "push") || starts_with(atom->name, "push:"))
210 atom->u.remote_ref.push = 1;
211
7743fcca 212 if (!arg) {
3ba308cb 213 atom->u.remote_ref.option = RR_REF;
74efea94
OT
214 return refname_atom_parser_internal(&atom->u.remote_ref.refname,
215 arg, atom->name, err);
7743fcca
KN
216 }
217
218 atom->u.remote_ref.nobracket = 0;
219 string_list_split(&params, arg, ',', -1);
220
221 for (i = 0; i < params.nr; i++) {
222 const char *s = params.items[i].string;
223
3ba308cb 224 if (!strcmp(s, "track"))
7743fcca
KN
225 atom->u.remote_ref.option = RR_TRACK;
226 else if (!strcmp(s, "trackshort"))
227 atom->u.remote_ref.option = RR_TRACKSHORT;
228 else if (!strcmp(s, "nobracket"))
229 atom->u.remote_ref.nobracket = 1;
cc72385f
JS
230 else if (!strcmp(s, "remotename")) {
231 atom->u.remote_ref.option = RR_REMOTE_NAME;
232 atom->u.remote_ref.push_remote = 1;
9700fae5
W
233 } else if (!strcmp(s, "remoteref")) {
234 atom->u.remote_ref.option = RR_REMOTE_REF;
235 atom->u.remote_ref.push_remote = 1;
cc72385f 236 } else {
3ba308cb 237 atom->u.remote_ref.option = RR_REF;
74efea94
OT
238 if (refname_atom_parser_internal(&atom->u.remote_ref.refname,
239 arg, atom->name, err)) {
240 string_list_clear(&params, 0);
241 return -1;
242 }
3ba308cb 243 }
7743fcca
KN
244 }
245
246 string_list_clear(&params, 0);
74efea94 247 return 0;
5339bdad
KN
248}
249
aa46a0da
OT
250static int objecttype_atom_parser(const struct ref_format *format, struct used_atom *atom,
251 const char *arg, struct strbuf *err)
252{
253 if (arg)
254 return strbuf_addf_ret(err, -1, _("%%(objecttype) does not take arguments"));
255 if (*atom->name == '*')
256 oi_deref.info.typep = &oi_deref.type;
257 else
258 oi.info.typep = &oi.type;
259 return 0;
260}
261
262static int objectsize_atom_parser(const struct ref_format *format, struct used_atom *atom,
263 const char *arg, struct strbuf *err)
264{
1867ce6c
OT
265 if (!arg) {
266 if (*atom->name == '*')
267 oi_deref.info.sizep = &oi_deref.size;
268 else
269 oi.info.sizep = &oi.size;
270 } else if (!strcmp(arg, "disk")) {
271 if (*atom->name == '*')
272 oi_deref.info.disk_sizep = &oi_deref.disk_size;
273 else
274 oi.info.disk_sizep = &oi.disk_size;
275 } else
276 return strbuf_addf_ret(err, -1, _("unrecognized %%(objectsize) argument: %s"), arg);
aa46a0da
OT
277 return 0;
278}
279
33311fa1
OT
280static int deltabase_atom_parser(const struct ref_format *format, struct used_atom *atom,
281 const char *arg, struct strbuf *err)
aa46a0da
OT
282{
283 if (arg)
33311fa1 284 return strbuf_addf_ret(err, -1, _("%%(deltabase) does not take arguments"));
aa46a0da 285 if (*atom->name == '*')
b99b6bcc 286 oi_deref.info.delta_base_oid = &oi_deref.delta_base_oid;
aa46a0da 287 else
b99b6bcc 288 oi.info.delta_base_oid = &oi.delta_base_oid;
aa46a0da
OT
289 return 0;
290}
291
74efea94
OT
292static int body_atom_parser(const struct ref_format *format, struct used_atom *atom,
293 const char *arg, struct strbuf *err)
452db397
KN
294{
295 if (arg)
74efea94 296 return strbuf_addf_ret(err, -1, _("%%(body) does not take arguments"));
452db397 297 atom->u.contents.option = C_BODY_DEP;
74efea94 298 return 0;
452db397
KN
299}
300
74efea94
OT
301static int subject_atom_parser(const struct ref_format *format, struct used_atom *atom,
302 const char *arg, struct strbuf *err)
452db397
KN
303{
304 if (arg)
74efea94 305 return strbuf_addf_ret(err, -1, _("%%(subject) does not take arguments"));
452db397 306 atom->u.contents.option = C_SUB;
74efea94 307 return 0;
452db397
KN
308}
309
74efea94
OT
310static int trailers_atom_parser(const struct ref_format *format, struct used_atom *atom,
311 const char *arg, struct strbuf *err)
b1d31c89 312{
67a20a00
TB
313 struct string_list params = STRING_LIST_INIT_DUP;
314 int i;
315
e5fba5d5
JK
316 atom->u.contents.trailer_opts.no_divider = 1;
317
67a20a00
TB
318 if (arg) {
319 string_list_split(&params, arg, ',', -1);
320 for (i = 0; i < params.nr; i++) {
321 const char *s = params.items[i].string;
322 if (!strcmp(s, "unfold"))
323 atom->u.contents.trailer_opts.unfold = 1;
324 else if (!strcmp(s, "only"))
325 atom->u.contents.trailer_opts.only_trailers = 1;
74efea94
OT
326 else {
327 strbuf_addf(err, _("unknown %%(trailers) argument: %s"), s);
328 string_list_clear(&params, 0);
329 return -1;
330 }
67a20a00
TB
331 }
332 }
b1d31c89 333 atom->u.contents.option = C_TRAILERS;
67a20a00 334 string_list_clear(&params, 0);
74efea94 335 return 0;
b1d31c89
JK
336}
337
74efea94
OT
338static int contents_atom_parser(const struct ref_format *format, struct used_atom *atom,
339 const char *arg, struct strbuf *err)
452db397
KN
340{
341 if (!arg)
342 atom->u.contents.option = C_BARE;
343 else if (!strcmp(arg, "body"))
344 atom->u.contents.option = C_BODY;
b6839fda
CC
345 else if (!strcmp(arg, "size"))
346 atom->u.contents.option = C_LENGTH;
452db397
KN
347 else if (!strcmp(arg, "signature"))
348 atom->u.contents.option = C_SIG;
349 else if (!strcmp(arg, "subject"))
350 atom->u.contents.option = C_SUB;
7a5edbdb
TB
351 else if (skip_prefix(arg, "trailers", &arg)) {
352 skip_prefix(arg, ":", &arg);
74efea94
OT
353 if (trailers_atom_parser(format, atom, *arg ? arg : NULL, err))
354 return -1;
7a5edbdb 355 } else if (skip_prefix(arg, "lines=", &arg)) {
452db397
KN
356 atom->u.contents.option = C_LINES;
357 if (strtoul_ui(arg, 10, &atom->u.contents.nlines))
74efea94 358 return strbuf_addf_ret(err, -1, _("positive value expected contents:lines=%s"), arg);
452db397 359 } else
74efea94
OT
360 return strbuf_addf_ret(err, -1, _("unrecognized %%(contents) argument: %s"), arg);
361 return 0;
452db397
KN
362}
363
74efea94
OT
364static int objectname_atom_parser(const struct ref_format *format, struct used_atom *atom,
365 const char *arg, struct strbuf *err)
fe63c4d1
KN
366{
367 if (!arg)
42d0eb05 368 atom->u.objectname.option = O_FULL;
fe63c4d1 369 else if (!strcmp(arg, "short"))
42d0eb05
KN
370 atom->u.objectname.option = O_SHORT;
371 else if (skip_prefix(arg, "short=", &arg)) {
372 atom->u.objectname.option = O_LENGTH;
373 if (strtoul_ui(arg, 10, &atom->u.objectname.length) ||
374 atom->u.objectname.length == 0)
74efea94 375 return strbuf_addf_ret(err, -1, _("positive value expected objectname:short=%s"), arg);
42d0eb05
KN
376 if (atom->u.objectname.length < MINIMUM_ABBREV)
377 atom->u.objectname.length = MINIMUM_ABBREV;
378 } else
74efea94
OT
379 return strbuf_addf_ret(err, -1, _("unrecognized %%(objectname) argument: %s"), arg);
380 return 0;
fe63c4d1
KN
381}
382
b82445dc
HV
383static int person_email_atom_parser(const struct ref_format *format, struct used_atom *atom,
384 const char *arg, struct strbuf *err)
385{
386 if (!arg)
387 atom->u.email_option.option = EO_RAW;
388 else if (!strcmp(arg, "trim"))
389 atom->u.email_option.option = EO_TRIM;
390 else if (!strcmp(arg, "localpart"))
391 atom->u.email_option.option = EO_LOCALPART;
392 else
393 return strbuf_addf_ret(err, -1, _("unrecognized email option: %s"), arg);
394 return 0;
395}
396
74efea94
OT
397static int refname_atom_parser(const struct ref_format *format, struct used_atom *atom,
398 const char *arg, struct strbuf *err)
a7984101 399{
74efea94 400 return refname_atom_parser_internal(&atom->u.refname, arg, atom->name, err);
a7984101
KN
401}
402
25a8d79e
KN
403static align_type parse_align_position(const char *s)
404{
405 if (!strcmp(s, "right"))
406 return ALIGN_RIGHT;
407 else if (!strcmp(s, "middle"))
408 return ALIGN_MIDDLE;
409 else if (!strcmp(s, "left"))
410 return ALIGN_LEFT;
411 return -1;
412}
413
74efea94
OT
414static int align_atom_parser(const struct ref_format *format, struct used_atom *atom,
415 const char *arg, struct strbuf *err)
5bd881d9
KN
416{
417 struct align *align = &atom->u.align;
418 struct string_list params = STRING_LIST_INIT_DUP;
419 int i;
420 unsigned int width = ~0U;
421
422 if (!arg)
74efea94 423 return strbuf_addf_ret(err, -1, _("expected format: %%(align:<width>,<position>)"));
5bd881d9
KN
424
425 align->position = ALIGN_LEFT;
426
427 string_list_split(&params, arg, ',', -1);
428 for (i = 0; i < params.nr; i++) {
429 const char *s = params.items[i].string;
430 int position;
431
395fb8f9
KN
432 if (skip_prefix(s, "position=", &s)) {
433 position = parse_align_position(s);
74efea94
OT
434 if (position < 0) {
435 strbuf_addf(err, _("unrecognized position:%s"), s);
436 string_list_clear(&params, 0);
437 return -1;
438 }
395fb8f9
KN
439 align->position = position;
440 } else if (skip_prefix(s, "width=", &s)) {
74efea94
OT
441 if (strtoul_ui(s, 10, &width)) {
442 strbuf_addf(err, _("unrecognized width:%s"), s);
443 string_list_clear(&params, 0);
444 return -1;
445 }
395fb8f9 446 } else if (!strtoul_ui(s, 10, &width))
5bd881d9
KN
447 ;
448 else if ((position = parse_align_position(s)) >= 0)
449 align->position = position;
74efea94
OT
450 else {
451 strbuf_addf(err, _("unrecognized %%(align) argument: %s"), s);
452 string_list_clear(&params, 0);
453 return -1;
454 }
5bd881d9
KN
455 }
456
74efea94
OT
457 if (width == ~0U) {
458 string_list_clear(&params, 0);
459 return strbuf_addf_ret(err, -1, _("positive width expected with the %%(align) atom"));
460 }
5bd881d9
KN
461 align->width = width;
462 string_list_clear(&params, 0);
74efea94 463 return 0;
5bd881d9
KN
464}
465
74efea94
OT
466static int if_atom_parser(const struct ref_format *format, struct used_atom *atom,
467 const char *arg, struct strbuf *err)
4f3e3b37
KN
468{
469 if (!arg) {
470 atom->u.if_then_else.cmp_status = COMPARE_NONE;
74efea94 471 return 0;
4f3e3b37
KN
472 } else if (skip_prefix(arg, "equals=", &atom->u.if_then_else.str)) {
473 atom->u.if_then_else.cmp_status = COMPARE_EQUAL;
474 } else if (skip_prefix(arg, "notequals=", &atom->u.if_then_else.str)) {
475 atom->u.if_then_else.cmp_status = COMPARE_UNEQUAL;
74efea94
OT
476 } else
477 return strbuf_addf_ret(err, -1, _("unrecognized %%(if) argument: %s"), arg);
478 return 0;
4f3e3b37
KN
479}
480
74efea94
OT
481static int head_atom_parser(const struct ref_format *format, struct used_atom *atom,
482 const char *arg, struct strbuf *unused_err)
613a0e52 483{
efbd4fdf 484 atom->u.head = resolve_refdup("HEAD", RESOLVE_REF_READING, NULL, NULL);
74efea94 485 return 0;
613a0e52 486}
4f3e3b37 487
c95b7585
KN
488static struct {
489 const char *name;
a8e7e385 490 info_source source;
c95b7585 491 cmp_type cmp_type;
74efea94
OT
492 int (*parser)(const struct ref_format *format, struct used_atom *atom,
493 const char *arg, struct strbuf *err);
c95b7585 494} valid_atom[] = {
a8e7e385 495 { "refname", SOURCE_NONE, FIELD_STR, refname_atom_parser },
aa46a0da
OT
496 { "objecttype", SOURCE_OTHER, FIELD_STR, objecttype_atom_parser },
497 { "objectsize", SOURCE_OTHER, FIELD_ULONG, objectsize_atom_parser },
a8e7e385 498 { "objectname", SOURCE_OTHER, FIELD_STR, objectname_atom_parser },
33311fa1 499 { "deltabase", SOURCE_OTHER, FIELD_STR, deltabase_atom_parser },
a8e7e385
OT
500 { "tree", SOURCE_OBJ },
501 { "parent", SOURCE_OBJ },
502 { "numparent", SOURCE_OBJ, FIELD_ULONG },
503 { "object", SOURCE_OBJ },
504 { "type", SOURCE_OBJ },
505 { "tag", SOURCE_OBJ },
506 { "author", SOURCE_OBJ },
507 { "authorname", SOURCE_OBJ },
b82445dc 508 { "authoremail", SOURCE_OBJ, FIELD_STR, person_email_atom_parser },
a8e7e385
OT
509 { "authordate", SOURCE_OBJ, FIELD_TIME },
510 { "committer", SOURCE_OBJ },
511 { "committername", SOURCE_OBJ },
b82445dc 512 { "committeremail", SOURCE_OBJ, FIELD_STR, person_email_atom_parser },
a8e7e385
OT
513 { "committerdate", SOURCE_OBJ, FIELD_TIME },
514 { "tagger", SOURCE_OBJ },
515 { "taggername", SOURCE_OBJ },
b82445dc 516 { "taggeremail", SOURCE_OBJ, FIELD_STR, person_email_atom_parser },
a8e7e385
OT
517 { "taggerdate", SOURCE_OBJ, FIELD_TIME },
518 { "creator", SOURCE_OBJ },
519 { "creatordate", SOURCE_OBJ, FIELD_TIME },
520 { "subject", SOURCE_OBJ, FIELD_STR, subject_atom_parser },
521 { "body", SOURCE_OBJ, FIELD_STR, body_atom_parser },
522 { "trailers", SOURCE_OBJ, FIELD_STR, trailers_atom_parser },
523 { "contents", SOURCE_OBJ, FIELD_STR, contents_atom_parser },
524 { "upstream", SOURCE_NONE, FIELD_STR, remote_ref_atom_parser },
525 { "push", SOURCE_NONE, FIELD_STR, remote_ref_atom_parser },
526 { "symref", SOURCE_NONE, FIELD_STR, refname_atom_parser },
527 { "flag", SOURCE_NONE },
528 { "HEAD", SOURCE_NONE, FIELD_STR, head_atom_parser },
529 { "color", SOURCE_NONE, FIELD_STR, color_atom_parser },
2582083f 530 { "worktreepath", SOURCE_NONE },
a8e7e385
OT
531 { "align", SOURCE_NONE, FIELD_STR, align_atom_parser },
532 { "end", SOURCE_NONE },
533 { "if", SOURCE_NONE, FIELD_STR, if_atom_parser },
534 { "then", SOURCE_NONE },
535 { "else", SOURCE_NONE },
5a59a230
NTND
536 /*
537 * Please update $__git_ref_fieldlist in git-completion.bash
538 * when you add new atoms
539 */
c95b7585
KN
540};
541
574e96a2
KN
542#define REF_FORMATTING_STATE_INIT { 0, NULL }
543
544struct ref_formatting_stack {
545 struct ref_formatting_stack *prev;
546 struct strbuf output;
c58492d4 547 void (*at_end)(struct ref_formatting_stack **stack);
ce592082 548 void *at_end_data;
574e96a2
KN
549};
550
551struct ref_formatting_state {
552 int quote_style;
553 struct ref_formatting_stack *stack;
554};
555
3a25761a
KN
556struct atom_value {
557 const char *s;
3fc8439c
OT
558 int (*handler)(struct atom_value *atomv, struct ref_formatting_state *state,
559 struct strbuf *err);
e467dc14 560 uintmax_t value; /* used for sorting when not FIELD_STR */
c58fc856 561 struct used_atom *atom;
3a25761a
KN
562};
563
c95b7585
KN
564/*
565 * Used to parse format string and sort specifiers
566 */
ab7ded34 567static int parse_ref_filter_atom(const struct ref_format *format,
e6ff7b3b
OT
568 const char *atom, const char *ep,
569 struct strbuf *err)
c95b7585
KN
570{
571 const char *sp;
4de707ea 572 const char *arg;
e94ce139 573 int i, at, atom_len;
c95b7585
KN
574
575 sp = atom;
576 if (*sp == '*' && sp < ep)
577 sp++; /* deref */
578 if (ep <= sp)
e6ff7b3b
OT
579 return strbuf_addf_ret(err, -1, _("malformed field name: %.*s"),
580 (int)(ep-atom), atom);
c95b7585
KN
581
582 /* Do we have the atom already used elsewhere? */
583 for (i = 0; i < used_atom_cnt; i++) {
b072add7
KN
584 int len = strlen(used_atom[i].name);
585 if (len == ep - atom && !memcmp(used_atom[i].name, atom, len))
c95b7585
KN
586 return i;
587 }
588
e94ce139
SG
589 /*
590 * If the atom name has a colon, strip it and everything after
591 * it off - it specifies the format for this entry, and
592 * shouldn't be used for checking against the valid_atom
593 * table.
594 */
595 arg = memchr(sp, ':', ep - sp);
596 atom_len = (arg ? arg : ep) - sp;
597
c95b7585
KN
598 /* Is the atom a valid one? */
599 for (i = 0; i < ARRAY_SIZE(valid_atom); i++) {
600 int len = strlen(valid_atom[i].name);
e94ce139 601 if (len == atom_len && !memcmp(valid_atom[i].name, sp, len))
c95b7585
KN
602 break;
603 }
604
605 if (ARRAY_SIZE(valid_atom) <= i)
e6ff7b3b
OT
606 return strbuf_addf_ret(err, -1, _("unknown field name: %.*s"),
607 (int)(ep-atom), atom);
47bd3d0c
SG
608 if (valid_atom[i].source != SOURCE_NONE && !have_git_dir())
609 return strbuf_addf_ret(err, -1,
610 _("not a git repository, but the field '%.*s' requires access to object data"),
611 (int)(ep-atom), atom);
c95b7585
KN
612
613 /* Add it in, including the deref prefix */
614 at = used_atom_cnt;
615 used_atom_cnt++;
616 REALLOC_ARRAY(used_atom, used_atom_cnt);
b072add7
KN
617 used_atom[at].name = xmemdupz(atom, ep - atom);
618 used_atom[at].type = valid_atom[i].cmp_type;
a8e7e385 619 used_atom[at].source = valid_atom[i].source;
aa46a0da
OT
620 if (used_atom[at].source == SOURCE_OBJ) {
621 if (*atom == '*')
622 oi_deref.info.contentp = &oi_deref.content;
623 else
624 oi.info.contentp = &oi.content;
625 }
bea4dbea 626 if (arg) {
4de707ea 627 arg = used_atom[at].name + (arg - atom) + 1;
bea4dbea
TB
628 if (!*arg) {
629 /*
630 * Treat empty sub-arguments list as NULL (i.e.,
631 * "%(atom:)" is equivalent to "%(atom)").
632 */
633 arg = NULL;
634 }
635 }
fd935cc7 636 memset(&used_atom[at].u, 0, sizeof(used_atom[at].u));
74efea94
OT
637 if (valid_atom[i].parser && valid_atom[i].parser(format, &used_atom[at], arg, err))
638 return -1;
c95b7585
KN
639 if (*atom == '*')
640 need_tagged = 1;
01f95825 641 if (!strcmp(valid_atom[i].name, "symref"))
c95b7585
KN
642 need_symref = 1;
643 return at;
644}
645
63d89fbc
KN
646static void quote_formatting(struct strbuf *s, const char *str, int quote_style)
647{
648 switch (quote_style) {
649 case QUOTE_NONE:
650 strbuf_addstr(s, str);
651 break;
652 case QUOTE_SHELL:
653 sq_quote_buf(s, str);
654 break;
655 case QUOTE_PERL:
656 perl_quote_buf(s, str);
657 break;
658 case QUOTE_PYTHON:
659 python_quote_buf(s, str);
660 break;
661 case QUOTE_TCL:
662 tcl_quote_buf(s, str);
663 break;
664 }
665}
666
3fc8439c
OT
667static int append_atom(struct atom_value *v, struct ref_formatting_state *state,
668 struct strbuf *unused_err)
63d89fbc 669{
ce592082
KN
670 /*
671 * Quote formatting is only done when the stack has a single
672 * element. Otherwise quote formatting is done on the
673 * element's entire output strbuf when the %(end) atom is
674 * encountered.
675 */
676 if (!state->stack->prev)
677 quote_formatting(&state->stack->output, v->s, state->quote_style);
678 else
679 strbuf_addstr(&state->stack->output, v->s);
3fc8439c 680 return 0;
63d89fbc
KN
681}
682
574e96a2
KN
683static void push_stack_element(struct ref_formatting_stack **stack)
684{
685 struct ref_formatting_stack *s = xcalloc(1, sizeof(struct ref_formatting_stack));
686
687 strbuf_init(&s->output, 0);
688 s->prev = *stack;
689 *stack = s;
690}
691
692static void pop_stack_element(struct ref_formatting_stack **stack)
693{
694 struct ref_formatting_stack *current = *stack;
695 struct ref_formatting_stack *prev = current->prev;
696
697 if (prev)
698 strbuf_addbuf(&prev->output, &current->output);
699 strbuf_release(&current->output);
700 free(current);
701 *stack = prev;
702}
703
c58492d4 704static void end_align_handler(struct ref_formatting_stack **stack)
ce592082 705{
c58492d4
KN
706 struct ref_formatting_stack *cur = *stack;
707 struct align *align = (struct align *)cur->at_end_data;
ce592082
KN
708 struct strbuf s = STRBUF_INIT;
709
c58492d4
KN
710 strbuf_utf8_align(&s, align->position, align->width, cur->output.buf);
711 strbuf_swap(&cur->output, &s);
ce592082
KN
712 strbuf_release(&s);
713}
714
3fc8439c
OT
715static int align_atom_handler(struct atom_value *atomv, struct ref_formatting_state *state,
716 struct strbuf *unused_err)
ce592082 717{
1472b5bf 718 struct ref_formatting_stack *new_stack;
ce592082
KN
719
720 push_stack_element(&state->stack);
1472b5bf
BW
721 new_stack = state->stack;
722 new_stack->at_end = end_align_handler;
723 new_stack->at_end_data = &atomv->atom->u.align;
3fc8439c 724 return 0;
ce592082
KN
725}
726
c58492d4
KN
727static void if_then_else_handler(struct ref_formatting_stack **stack)
728{
729 struct ref_formatting_stack *cur = *stack;
730 struct ref_formatting_stack *prev = cur->prev;
731 struct if_then_else *if_then_else = (struct if_then_else *)cur->at_end_data;
732
733 if (!if_then_else->then_atom_seen)
734 die(_("format: %%(if) atom used without a %%(then) atom"));
735
736 if (if_then_else->else_atom_seen) {
737 /*
738 * There is an %(else) atom: we need to drop one state from the
739 * stack, either the %(else) branch if the condition is satisfied, or
740 * the %(then) branch if it isn't.
741 */
742 if (if_then_else->condition_satisfied) {
743 strbuf_reset(&cur->output);
744 pop_stack_element(&cur);
745 } else {
746 strbuf_swap(&cur->output, &prev->output);
747 strbuf_reset(&cur->output);
748 pop_stack_element(&cur);
749 }
750 } else if (!if_then_else->condition_satisfied) {
751 /*
752 * No %(else) atom: just drop the %(then) branch if the
753 * condition is not satisfied.
754 */
755 strbuf_reset(&cur->output);
756 }
757
758 *stack = cur;
759 free(if_then_else);
760}
761
3fc8439c
OT
762static int if_atom_handler(struct atom_value *atomv, struct ref_formatting_state *state,
763 struct strbuf *unused_err)
c58492d4 764{
1472b5bf 765 struct ref_formatting_stack *new_stack;
c58492d4
KN
766 struct if_then_else *if_then_else = xcalloc(sizeof(struct if_then_else), 1);
767
4f3e3b37
KN
768 if_then_else->str = atomv->atom->u.if_then_else.str;
769 if_then_else->cmp_status = atomv->atom->u.if_then_else.cmp_status;
770
c58492d4 771 push_stack_element(&state->stack);
1472b5bf
BW
772 new_stack = state->stack;
773 new_stack->at_end = if_then_else_handler;
774 new_stack->at_end_data = if_then_else;
3fc8439c 775 return 0;
c58492d4
KN
776}
777
778static int is_empty(const char *s)
779{
780 while (*s != '\0') {
781 if (!isspace(*s))
782 return 0;
783 s++;
784 }
785 return 1;
786}
787
3fc8439c
OT
788static int then_atom_handler(struct atom_value *atomv, struct ref_formatting_state *state,
789 struct strbuf *err)
c58492d4
KN
790{
791 struct ref_formatting_stack *cur = state->stack;
792 struct if_then_else *if_then_else = NULL;
793
794 if (cur->at_end == if_then_else_handler)
795 if_then_else = (struct if_then_else *)cur->at_end_data;
796 if (!if_then_else)
3fc8439c 797 return strbuf_addf_ret(err, -1, _("format: %%(then) atom used without an %%(if) atom"));
c58492d4 798 if (if_then_else->then_atom_seen)
3fc8439c 799 return strbuf_addf_ret(err, -1, _("format: %%(then) atom used more than once"));
c58492d4 800 if (if_then_else->else_atom_seen)
3fc8439c 801 return strbuf_addf_ret(err, -1, _("format: %%(then) atom used after %%(else)"));
c58492d4
KN
802 if_then_else->then_atom_seen = 1;
803 /*
4f3e3b37
KN
804 * If the 'equals' or 'notequals' attribute is used then
805 * perform the required comparison. If not, only non-empty
806 * strings satisfy the 'if' condition.
c58492d4 807 */
4f3e3b37
KN
808 if (if_then_else->cmp_status == COMPARE_EQUAL) {
809 if (!strcmp(if_then_else->str, cur->output.buf))
810 if_then_else->condition_satisfied = 1;
811 } else if (if_then_else->cmp_status == COMPARE_UNEQUAL) {
812 if (strcmp(if_then_else->str, cur->output.buf))
813 if_then_else->condition_satisfied = 1;
814 } else if (cur->output.len && !is_empty(cur->output.buf))
c58492d4
KN
815 if_then_else->condition_satisfied = 1;
816 strbuf_reset(&cur->output);
3fc8439c 817 return 0;
c58492d4
KN
818}
819
3fc8439c
OT
820static int else_atom_handler(struct atom_value *atomv, struct ref_formatting_state *state,
821 struct strbuf *err)
c58492d4
KN
822{
823 struct ref_formatting_stack *prev = state->stack;
824 struct if_then_else *if_then_else = NULL;
825
826 if (prev->at_end == if_then_else_handler)
827 if_then_else = (struct if_then_else *)prev->at_end_data;
828 if (!if_then_else)
3fc8439c 829 return strbuf_addf_ret(err, -1, _("format: %%(else) atom used without an %%(if) atom"));
c58492d4 830 if (!if_then_else->then_atom_seen)
3fc8439c 831 return strbuf_addf_ret(err, -1, _("format: %%(else) atom used without a %%(then) atom"));
c58492d4 832 if (if_then_else->else_atom_seen)
3fc8439c 833 return strbuf_addf_ret(err, -1, _("format: %%(else) atom used more than once"));
c58492d4
KN
834 if_then_else->else_atom_seen = 1;
835 push_stack_element(&state->stack);
836 state->stack->at_end_data = prev->at_end_data;
837 state->stack->at_end = prev->at_end;
3fc8439c 838 return 0;
ce592082
KN
839}
840
3fc8439c
OT
841static int end_atom_handler(struct atom_value *atomv, struct ref_formatting_state *state,
842 struct strbuf *err)
ce592082
KN
843{
844 struct ref_formatting_stack *current = state->stack;
845 struct strbuf s = STRBUF_INIT;
846
847 if (!current->at_end)
3fc8439c 848 return strbuf_addf_ret(err, -1, _("format: %%(end) atom used without corresponding atom"));
c58492d4
KN
849 current->at_end(&state->stack);
850
851 /* Stack may have been popped within at_end(), hence reset the current pointer */
852 current = state->stack;
ce592082
KN
853
854 /*
855 * Perform quote formatting when the stack element is that of
856 * a supporting atom. If nested then perform quote formatting
857 * only on the topmost supporting atom.
858 */
c58492d4 859 if (!current->prev->prev) {
ce592082
KN
860 quote_formatting(&s, current->output.buf, state->quote_style);
861 strbuf_swap(&current->output, &s);
862 }
863 strbuf_release(&s);
864 pop_stack_element(&state->stack);
3fc8439c 865 return 0;
ce592082
KN
866}
867
c95b7585
KN
868/*
869 * In a format string, find the next occurrence of %(atom).
870 */
871static const char *find_next(const char *cp)
872{
873 while (*cp) {
874 if (*cp == '%') {
875 /*
876 * %( is the start of an atom;
877 * %% is a quoted per-cent.
878 */
879 if (cp[1] == '(')
880 return cp;
881 else if (cp[1] == '%')
882 cp++; /* skip over two % */
883 /* otherwise this is a singleton, literal % */
884 }
885 cp++;
886 }
887 return NULL;
888}
889
890/*
891 * Make sure the format string is well formed, and parse out
892 * the used atoms.
893 */
4a68e36d 894int verify_ref_format(struct ref_format *format)
c95b7585
KN
895{
896 const char *cp, *sp;
897
bf285ae6 898 format->need_color_reset_at_eol = 0;
4a68e36d 899 for (cp = format->format; *cp && (sp = find_next(cp)); ) {
e6ff7b3b 900 struct strbuf err = STRBUF_INIT;
c95b7585
KN
901 const char *color, *ep = strchr(sp, ')');
902 int at;
903
904 if (!ep)
1823c619 905 return error(_("malformed format string %s"), sp);
c95b7585 906 /* sp points at "%(" and ep points at the closing ")" */
e6ff7b3b
OT
907 at = parse_ref_filter_atom(format, sp + 2, ep, &err);
908 if (at < 0)
909 die("%s", err.buf);
c95b7585
KN
910 cp = ep + 1;
911
b072add7 912 if (skip_prefix(used_atom[at].name, "color:", &color))
bf285ae6 913 format->need_color_reset_at_eol = !!strcmp(color, "reset");
e6ff7b3b 914 strbuf_release(&err);
c95b7585 915 }
11b087ad
JK
916 if (format->need_color_reset_at_eol && !want_color(format->use_color))
917 format->need_color_reset_at_eol = 0;
c95b7585
KN
918 return 0;
919}
920
17769795 921static int grab_objectname(const char *name, const struct object_id *oid,
fe63c4d1 922 struct atom_value *v, struct used_atom *atom)
c95b7585 923{
fe63c4d1 924 if (starts_with(name, "objectname")) {
42d0eb05 925 if (atom->u.objectname.option == O_SHORT) {
aab9583f 926 v->s = xstrdup(find_unique_abbrev(oid, DEFAULT_ABBREV));
fe63c4d1 927 return 1;
42d0eb05 928 } else if (atom->u.objectname.option == O_FULL) {
17769795 929 v->s = xstrdup(oid_to_hex(oid));
fe63c4d1 930 return 1;
42d0eb05 931 } else if (atom->u.objectname.option == O_LENGTH) {
aab9583f 932 v->s = xstrdup(find_unique_abbrev(oid, atom->u.objectname.length));
42d0eb05 933 return 1;
fe63c4d1 934 } else
033abf97 935 BUG("unknown %%(objectname) option");
c95b7585
KN
936 }
937 return 0;
938}
939
940/* See grab_values */
aa46a0da 941static void grab_common_values(struct atom_value *val, int deref, struct expand_data *oi)
c95b7585
KN
942{
943 int i;
944
945 for (i = 0; i < used_atom_cnt; i++) {
b072add7 946 const char *name = used_atom[i].name;
c95b7585
KN
947 struct atom_value *v = &val[i];
948 if (!!deref != (*name == '*'))
949 continue;
950 if (deref)
951 name++;
952 if (!strcmp(name, "objecttype"))
f0062d3b 953 v->s = xstrdup(type_name(oi->type));
1867ce6c
OT
954 else if (!strcmp(name, "objectsize:disk")) {
955 v->value = oi->disk_size;
f2ddd9e5 956 v->s = xstrfmt("%"PRIuMAX, (uintmax_t)oi->disk_size);
1867ce6c 957 } else if (!strcmp(name, "objectsize")) {
aa46a0da 958 v->value = oi->size;
ca473cef 959 v->s = xstrfmt("%"PRIuMAX , (uintmax_t)oi->size);
33311fa1
OT
960 } else if (!strcmp(name, "deltabase"))
961 v->s = xstrdup(oid_to_hex(&oi->delta_base_oid));
c95b7585 962 else if (deref)
aa46a0da 963 grab_objectname(name, &oi->oid, v, &used_atom[i]);
c95b7585
KN
964 }
965}
966
967/* See grab_values */
e0329199 968static void grab_tag_values(struct atom_value *val, int deref, struct object *obj)
c95b7585
KN
969{
970 int i;
971 struct tag *tag = (struct tag *) obj;
972
973 for (i = 0; i < used_atom_cnt; i++) {
b072add7 974 const char *name = used_atom[i].name;
c95b7585
KN
975 struct atom_value *v = &val[i];
976 if (!!deref != (*name == '*'))
977 continue;
978 if (deref)
979 name++;
980 if (!strcmp(name, "tag"))
f0062d3b 981 v->s = xstrdup(tag->tag);
c95b7585 982 else if (!strcmp(name, "type") && tag->tagged)
f0062d3b 983 v->s = xstrdup(type_name(tag->tagged->type));
a5e03bf5 984 else if (!strcmp(name, "object") && tag->tagged)
f2fd0760 985 v->s = xstrdup(oid_to_hex(&tag->tagged->oid));
c95b7585
KN
986 }
987}
988
989/* See grab_values */
e0329199 990static void grab_commit_values(struct atom_value *val, int deref, struct object *obj)
c95b7585
KN
991{
992 int i;
993 struct commit *commit = (struct commit *) obj;
994
995 for (i = 0; i < used_atom_cnt; i++) {
b072add7 996 const char *name = used_atom[i].name;
c95b7585
KN
997 struct atom_value *v = &val[i];
998 if (!!deref != (*name == '*'))
999 continue;
1000 if (deref)
1001 name++;
1002 if (!strcmp(name, "tree")) {
2e27bd77 1003 v->s = xstrdup(oid_to_hex(get_commit_tree_oid(commit)));
c95b7585 1004 }
a5e03bf5 1005 else if (!strcmp(name, "numparent")) {
e467dc14
JS
1006 v->value = commit_list_count(commit->parents);
1007 v->s = xstrfmt("%lu", (unsigned long)v->value);
c95b7585
KN
1008 }
1009 else if (!strcmp(name, "parent")) {
c95b7585 1010 struct commit_list *parents;
a5e03bf5
JK
1011 struct strbuf s = STRBUF_INIT;
1012 for (parents = commit->parents; parents; parents = parents->next) {
c95b7585 1013 struct commit *parent = parents->item;
a5e03bf5
JK
1014 if (parents != commit->parents)
1015 strbuf_addch(&s, ' ');
f2fd0760 1016 strbuf_addstr(&s, oid_to_hex(&parent->object.oid));
c95b7585 1017 }
a5e03bf5 1018 v->s = strbuf_detach(&s, NULL);
c95b7585
KN
1019 }
1020 }
1021}
1022
5c326d12 1023static const char *find_wholine(const char *who, int wholen, const char *buf)
c95b7585
KN
1024{
1025 const char *eol;
1026 while (*buf) {
1027 if (!strncmp(buf, who, wholen) &&
1028 buf[wholen] == ' ')
1029 return buf + wholen + 1;
1030 eol = strchr(buf, '\n');
1031 if (!eol)
1032 return "";
1033 eol++;
1034 if (*eol == '\n')
1035 return ""; /* end of header */
1036 buf = eol;
1037 }
1038 return "";
1039}
1040
1041static const char *copy_line(const char *buf)
1042{
1043 const char *eol = strchrnul(buf, '\n');
1044 return xmemdupz(buf, eol - buf);
1045}
1046
1047static const char *copy_name(const char *buf)
1048{
1049 const char *cp;
1050 for (cp = buf; *cp && *cp != '\n'; cp++) {
1051 if (!strncmp(cp, " <", 2))
1052 return xmemdupz(buf, cp - buf);
1053 }
8b3f33ef 1054 return xstrdup("");
c95b7585
KN
1055}
1056
b82445dc 1057static const char *copy_email(const char *buf, struct used_atom *atom)
c95b7585
KN
1058{
1059 const char *email = strchr(buf, '<');
1060 const char *eoemail;
1061 if (!email)
8b3f33ef 1062 return xstrdup("");
b82445dc
HV
1063 switch (atom->u.email_option.option) {
1064 case EO_RAW:
1065 eoemail = strchr(email, '>');
1066 if (eoemail)
1067 eoemail++;
1068 break;
1069 case EO_TRIM:
1070 email++;
1071 eoemail = strchr(email, '>');
1072 break;
1073 case EO_LOCALPART:
1074 email++;
1075 eoemail = strchr(email, '@');
1076 if (!eoemail)
1077 eoemail = strchr(email, '>');
1078 break;
1079 default:
1080 BUG("unknown email option");
1081 }
1082
c95b7585 1083 if (!eoemail)
8b3f33ef 1084 return xstrdup("");
b82445dc 1085 return xmemdupz(email, eoemail - email);
c95b7585
KN
1086}
1087
1088static char *copy_subject(const char *buf, unsigned long len)
1089{
1090 char *r = xmemdupz(buf, len);
1091 int i;
1092
1093 for (i = 0; i < len; i++)
1094 if (r[i] == '\n')
1095 r[i] = ' ';
1096
1097 return r;
1098}
1099
1100static void grab_date(const char *buf, struct atom_value *v, const char *atomname)
1101{
1102 const char *eoemail = strstr(buf, "> ");
1103 char *zone;
dddbad72 1104 timestamp_t timestamp;
c95b7585 1105 long tz;
d939af12 1106 struct date_mode date_mode = { DATE_NORMAL };
c95b7585
KN
1107 const char *formatp;
1108
1109 /*
1110 * We got here because atomname ends in "date" or "date<something>";
1111 * it's not possible that <something> is not ":<format>" because
1112 * parse_ref_filter_atom() wouldn't have allowed it, so we can assume that no
1113 * ":" means no format is specified, and use the default.
1114 */
1115 formatp = strchr(atomname, ':');
1116 if (formatp != NULL) {
1117 formatp++;
d939af12 1118 parse_date_format(formatp, &date_mode);
c95b7585
KN
1119 }
1120
1121 if (!eoemail)
1122 goto bad;
1aeb7e75 1123 timestamp = parse_timestamp(eoemail + 2, &zone, 10);
dddbad72 1124 if (timestamp == TIME_MAX)
c95b7585
KN
1125 goto bad;
1126 tz = strtol(zone, NULL, 10);
1127 if ((tz == LONG_MIN || tz == LONG_MAX) && errno == ERANGE)
1128 goto bad;
d939af12 1129 v->s = xstrdup(show_date(timestamp, tz, &date_mode));
e467dc14 1130 v->value = timestamp;
c95b7585
KN
1131 return;
1132 bad:
f0062d3b 1133 v->s = xstrdup("");
e467dc14 1134 v->value = 0;
c95b7585
KN
1135}
1136
1137/* See grab_values */
5c326d12 1138static void grab_person(const char *who, struct atom_value *val, int deref, void *buf)
c95b7585
KN
1139{
1140 int i;
1141 int wholen = strlen(who);
1142 const char *wholine = NULL;
1143
1144 for (i = 0; i < used_atom_cnt; i++) {
b072add7 1145 const char *name = used_atom[i].name;
c95b7585
KN
1146 struct atom_value *v = &val[i];
1147 if (!!deref != (*name == '*'))
1148 continue;
1149 if (deref)
1150 name++;
1151 if (strncmp(who, name, wholen))
1152 continue;
1153 if (name[wholen] != 0 &&
1154 strcmp(name + wholen, "name") &&
b82445dc 1155 !starts_with(name + wholen, "email") &&
c95b7585
KN
1156 !starts_with(name + wholen, "date"))
1157 continue;
1158 if (!wholine)
5c326d12 1159 wholine = find_wholine(who, wholen, buf);
c95b7585
KN
1160 if (!wholine)
1161 return; /* no point looking for it */
1162 if (name[wholen] == 0)
1163 v->s = copy_line(wholine);
1164 else if (!strcmp(name + wholen, "name"))
1165 v->s = copy_name(wholine);
b82445dc
HV
1166 else if (starts_with(name + wholen, "email"))
1167 v->s = copy_email(wholine, &used_atom[i]);
c95b7585
KN
1168 else if (starts_with(name + wholen, "date"))
1169 grab_date(wholine, v, name);
1170 }
1171
1172 /*
1173 * For a tag or a commit object, if "creator" or "creatordate" is
1174 * requested, do something special.
1175 */
1176 if (strcmp(who, "tagger") && strcmp(who, "committer"))
1177 return; /* "author" for commit object is not wanted */
1178 if (!wholine)
5c326d12 1179 wholine = find_wholine(who, wholen, buf);
c95b7585
KN
1180 if (!wholine)
1181 return;
1182 for (i = 0; i < used_atom_cnt; i++) {
b072add7 1183 const char *name = used_atom[i].name;
c95b7585
KN
1184 struct atom_value *v = &val[i];
1185 if (!!deref != (*name == '*'))
1186 continue;
1187 if (deref)
1188 name++;
1189
1190 if (starts_with(name, "creatordate"))
1191 grab_date(wholine, v, name);
1192 else if (!strcmp(name, "creator"))
1193 v->s = copy_line(wholine);
1194 }
1195}
1196
5c326d12 1197static void find_subpos(const char *buf,
c95b7585
KN
1198 const char **sub, unsigned long *sublen,
1199 const char **body, unsigned long *bodylen,
1200 unsigned long *nonsiglen,
1201 const char **sig, unsigned long *siglen)
1202{
1203 const char *eol;
1204 /* skip past header until we hit empty line */
1205 while (*buf && *buf != '\n') {
1206 eol = strchrnul(buf, '\n');
1207 if (*eol)
1208 eol++;
1209 buf = eol;
1210 }
1211 /* skip any empty lines */
1212 while (*buf == '\n')
1213 buf++;
1214
1215 /* parse signature first; we might not even have a subject line */
1216 *sig = buf + parse_signature(buf, strlen(buf));
1217 *siglen = strlen(*sig);
1218
1219 /* subject is first non-empty line */
1220 *sub = buf;
1221 /* subject goes to first empty line */
1222 while (buf < *sig && *buf && *buf != '\n') {
1223 eol = strchrnul(buf, '\n');
1224 if (*eol)
1225 eol++;
1226 buf = eol;
1227 }
1228 *sublen = buf - *sub;
1229 /* drop trailing newline, if present */
1230 if (*sublen && (*sub)[*sublen - 1] == '\n')
1231 *sublen -= 1;
1232
1233 /* skip any empty lines */
1234 while (*buf == '\n')
1235 buf++;
1236 *body = buf;
1237 *bodylen = strlen(buf);
1238 *nonsiglen = *sig - buf;
1239}
1240
1bb38e5a
KN
1241/*
1242 * If 'lines' is greater than 0, append that many lines from the given
1243 * 'buf' of length 'size' to the given strbuf.
1244 */
1245static void append_lines(struct strbuf *out, const char *buf, unsigned long size, int lines)
1246{
1247 int i;
1248 const char *sp, *eol;
1249 size_t len;
1250
1251 sp = buf;
1252
1253 for (i = 0; i < lines && sp < buf + size; i++) {
1254 if (i)
1255 strbuf_addstr(out, "\n ");
1256 eol = memchr(sp, '\n', size - (sp - buf));
1257 len = eol ? eol - sp : size - (sp - buf);
1258 strbuf_add(out, sp, len);
1259 if (!eol)
1260 break;
1261 sp = eol + 1;
1262 }
1263}
1264
c95b7585 1265/* See grab_values */
5c326d12 1266static void grab_sub_body_contents(struct atom_value *val, int deref, void *buf)
c95b7585
KN
1267{
1268 int i;
1269 const char *subpos = NULL, *bodypos = NULL, *sigpos = NULL;
1270 unsigned long sublen = 0, bodylen = 0, nonsiglen = 0, siglen = 0;
1271
1272 for (i = 0; i < used_atom_cnt; i++) {
452db397
KN
1273 struct used_atom *atom = &used_atom[i];
1274 const char *name = atom->name;
c95b7585
KN
1275 struct atom_value *v = &val[i];
1276 if (!!deref != (*name == '*'))
1277 continue;
1278 if (deref)
1279 name++;
1280 if (strcmp(name, "subject") &&
1281 strcmp(name, "body") &&
67a20a00 1282 !starts_with(name, "trailers") &&
452db397 1283 !starts_with(name, "contents"))
c95b7585
KN
1284 continue;
1285 if (!subpos)
5c326d12 1286 find_subpos(buf,
c95b7585
KN
1287 &subpos, &sublen,
1288 &bodypos, &bodylen, &nonsiglen,
1289 &sigpos, &siglen);
1290
452db397 1291 if (atom->u.contents.option == C_SUB)
c95b7585 1292 v->s = copy_subject(subpos, sublen);
452db397 1293 else if (atom->u.contents.option == C_BODY_DEP)
c95b7585 1294 v->s = xmemdupz(bodypos, bodylen);
b6839fda
CC
1295 else if (atom->u.contents.option == C_LENGTH)
1296 v->s = xstrfmt("%"PRIuMAX, (uintmax_t)strlen(subpos));
452db397 1297 else if (atom->u.contents.option == C_BODY)
c95b7585 1298 v->s = xmemdupz(bodypos, nonsiglen);
452db397 1299 else if (atom->u.contents.option == C_SIG)
c95b7585 1300 v->s = xmemdupz(sigpos, siglen);
452db397 1301 else if (atom->u.contents.option == C_LINES) {
1bb38e5a
KN
1302 struct strbuf s = STRBUF_INIT;
1303 const char *contents_end = bodylen + bodypos - siglen;
1304
1bb38e5a 1305 /* Size is the length of the message after removing the signature */
452db397 1306 append_lines(&s, subpos, contents_end - subpos, atom->u.contents.nlines);
1bb38e5a 1307 v->s = strbuf_detach(&s, NULL);
b1d31c89 1308 } else if (atom->u.contents.option == C_TRAILERS) {
67a20a00 1309 struct strbuf s = STRBUF_INIT;
b1d31c89 1310
67a20a00
TB
1311 /* Format the trailer info according to the trailer_opts given */
1312 format_trailers_from_commit(&s, subpos, &atom->u.contents.trailer_opts);
1313
1314 v->s = strbuf_detach(&s, NULL);
452db397
KN
1315 } else if (atom->u.contents.option == C_BARE)
1316 v->s = xstrdup(subpos);
c95b7585
KN
1317 }
1318}
1319
1320/*
1321 * We want to have empty print-string for field requests
1322 * that do not apply (e.g. "authordate" for a tag object)
1323 */
1324static void fill_missing_values(struct atom_value *val)
1325{
1326 int i;
1327 for (i = 0; i < used_atom_cnt; i++) {
1328 struct atom_value *v = &val[i];
1329 if (v->s == NULL)
f0062d3b 1330 v->s = xstrdup("");
c95b7585
KN
1331 }
1332}
1333
1334/*
1335 * val is a list of atom_value to hold returned values. Extract
1336 * the values for atoms in used_atom array out of (obj, buf, sz).
1337 * when deref is false, (obj, buf, sz) is the object that is
1338 * pointed at by the ref itself; otherwise it is the object the
1339 * ref (which is a tag) refers to.
1340 */
5c326d12 1341static void grab_values(struct atom_value *val, int deref, struct object *obj, void *buf)
c95b7585 1342{
c95b7585
KN
1343 switch (obj->type) {
1344 case OBJ_TAG:
e0329199 1345 grab_tag_values(val, deref, obj);
5c326d12
JK
1346 grab_sub_body_contents(val, deref, buf);
1347 grab_person("tagger", val, deref, buf);
c95b7585
KN
1348 break;
1349 case OBJ_COMMIT:
e0329199 1350 grab_commit_values(val, deref, obj);
5c326d12
JK
1351 grab_sub_body_contents(val, deref, buf);
1352 grab_person("author", val, deref, buf);
1353 grab_person("committer", val, deref, buf);
c95b7585
KN
1354 break;
1355 case OBJ_TREE:
1356 /* grab_tree_values(val, deref, obj, buf, sz); */
1357 break;
1358 case OBJ_BLOB:
1359 /* grab_blob_values(val, deref, obj, buf, sz); */
1360 break;
1361 default:
1362 die("Eh? Object of type %d?", obj->type);
1363 }
1364}
1365
1366static inline char *copy_advance(char *dst, const char *src)
1367{
1368 while (*src)
1369 *dst++ = *src++;
1370 return dst;
1371}
1372
1a0ca5e3 1373static const char *lstrip_ref_components(const char *refname, int len)
0571979b 1374{
a7984101 1375 long remaining = len;
f0062d3b
OT
1376 const char *start = xstrdup(refname);
1377 const char *to_free = start;
0571979b 1378
1a0ca5e3
KN
1379 if (len < 0) {
1380 int i;
1381 const char *p = refname;
1382
1383 /* Find total no of '/' separated path-components */
1384 for (i = 0; p[i]; p[i] == '/' ? i++ : *p++)
1385 ;
1386 /*
1387 * The number of components we need to strip is now
1388 * the total minus the components to be left (Plus one
1389 * because we count the number of '/', but the number
1390 * of components is one more than the no of '/').
1391 */
1392 remaining = i + len + 1;
1393 }
0571979b 1394
1a0ca5e3 1395 while (remaining > 0) {
0571979b
JK
1396 switch (*start++) {
1397 case '\0':
f0062d3b
OT
1398 free((char *)to_free);
1399 return xstrdup("");
0571979b
JK
1400 case '/':
1401 remaining--;
1402 break;
1403 }
1404 }
1a0ca5e3 1405
f0062d3b
OT
1406 start = xstrdup(start);
1407 free((char *)to_free);
0571979b
JK
1408 return start;
1409}
1410
1a34728e
KN
1411static const char *rstrip_ref_components(const char *refname, int len)
1412{
1413 long remaining = len;
f0062d3b
OT
1414 const char *start = xstrdup(refname);
1415 const char *to_free = start;
1a34728e
KN
1416
1417 if (len < 0) {
1418 int i;
1419 const char *p = refname;
1420
1421 /* Find total no of '/' separated path-components */
1422 for (i = 0; p[i]; p[i] == '/' ? i++ : *p++)
1423 ;
1424 /*
1425 * The number of components we need to strip is now
1426 * the total minus the components to be left (Plus one
1427 * because we count the number of '/', but the number
1428 * of components is one more than the no of '/').
1429 */
1430 remaining = i + len + 1;
1431 }
1432
1433 while (remaining-- > 0) {
1434 char *p = strrchr(start, '/');
f0062d3b
OT
1435 if (p == NULL) {
1436 free((char *)to_free);
1437 return xstrdup("");
1438 } else
1a34728e
KN
1439 p[0] = '\0';
1440 }
1441 return start;
1442}
1443
a7984101
KN
1444static const char *show_ref(struct refname_atom *atom, const char *refname)
1445{
1446 if (atom->option == R_SHORT)
1447 return shorten_unambiguous_ref(refname, warn_ambiguous_refs);
17938f17
KN
1448 else if (atom->option == R_LSTRIP)
1449 return lstrip_ref_components(refname, atom->lstrip);
1a34728e
KN
1450 else if (atom->option == R_RSTRIP)
1451 return rstrip_ref_components(refname, atom->rstrip);
a7984101 1452 else
f0062d3b 1453 return xstrdup(refname);
a7984101
KN
1454}
1455
5339bdad
KN
1456static void fill_remote_ref_details(struct used_atom *atom, const char *refname,
1457 struct branch *branch, const char **s)
1458{
1459 int num_ours, num_theirs;
3ba308cb
KN
1460 if (atom->u.remote_ref.option == RR_REF)
1461 *s = show_ref(&atom->u.remote_ref.refname, refname);
7743fcca 1462 else if (atom->u.remote_ref.option == RR_TRACK) {
d7d1b496 1463 if (stat_tracking_info(branch, &num_ours, &num_theirs,
c646d093
DR
1464 NULL, atom->u.remote_ref.push,
1465 AHEAD_BEHIND_FULL) < 0) {
6eac70fa 1466 *s = xstrdup(msgs.gone);
7743fcca 1467 } else if (!num_ours && !num_theirs)
f0062d3b 1468 *s = xstrdup("");
5339bdad 1469 else if (!num_ours)
6eac70fa 1470 *s = xstrfmt(msgs.behind, num_theirs);
5339bdad 1471 else if (!num_theirs)
6eac70fa 1472 *s = xstrfmt(msgs.ahead, num_ours);
5339bdad 1473 else
6eac70fa 1474 *s = xstrfmt(msgs.ahead_behind,
5339bdad 1475 num_ours, num_theirs);
7743fcca
KN
1476 if (!atom->u.remote_ref.nobracket && *s[0]) {
1477 const char *to_free = *s;
1478 *s = xstrfmt("[%s]", *s);
1479 free((void *)to_free);
1480 }
1481 } else if (atom->u.remote_ref.option == RR_TRACKSHORT) {
d7d1b496 1482 if (stat_tracking_info(branch, &num_ours, &num_theirs,
c646d093
DR
1483 NULL, atom->u.remote_ref.push,
1484 AHEAD_BEHIND_FULL) < 0) {
f0062d3b 1485 *s = xstrdup("");
5339bdad 1486 return;
f0062d3b 1487 }
5339bdad 1488 if (!num_ours && !num_theirs)
f0062d3b 1489 *s = xstrdup("=");
5339bdad 1490 else if (!num_ours)
f0062d3b 1491 *s = xstrdup("<");
5339bdad 1492 else if (!num_theirs)
f0062d3b 1493 *s = xstrdup(">");
5339bdad 1494 else
f0062d3b 1495 *s = xstrdup("<>");
cc72385f
JS
1496 } else if (atom->u.remote_ref.option == RR_REMOTE_NAME) {
1497 int explicit;
1498 const char *remote = atom->u.remote_ref.push ?
1499 pushremote_for_branch(branch, &explicit) :
1500 remote_for_branch(branch, &explicit);
f0062d3b 1501 *s = xstrdup(explicit ? remote : "");
9700fae5 1502 } else if (atom->u.remote_ref.option == RR_REMOTE_REF) {
9700fae5
W
1503 const char *merge;
1504
af8ccd8a
JK
1505 merge = remote_ref_for_branch(branch, atom->u.remote_ref.push);
1506 *s = xstrdup(merge ? merge : "");
3ba308cb 1507 } else
033abf97 1508 BUG("unhandled RR_* enum");
5339bdad
KN
1509}
1510
d4919bb2
KN
1511char *get_head_description(void)
1512{
1513 struct strbuf desc = STRBUF_INIT;
1514 struct wt_status_state state;
1515 memset(&state, 0, sizeof(state));
78845457 1516 wt_status_get_state(the_repository, &state, 1);
28438e84
MD
1517
1518 /*
1519 * The ( character must be hard-coded and not part of a localizable
1520 * string, since the description is used as a sort key and compared
1521 * with ref names.
1522 */
1523 strbuf_addch(&desc, '(');
d4919bb2 1524 if (state.rebase_in_progress ||
a236f900
KS
1525 state.rebase_interactive_in_progress) {
1526 if (state.branch)
28438e84 1527 strbuf_addf(&desc, _("no branch, rebasing %s"),
a236f900
KS
1528 state.branch);
1529 else
28438e84 1530 strbuf_addf(&desc, _("no branch, rebasing detached HEAD %s"),
a236f900
KS
1531 state.detached_from);
1532 } else if (state.bisect_in_progress)
28438e84 1533 strbuf_addf(&desc, _("no branch, bisect started on %s"),
d4919bb2
KN
1534 state.branch);
1535 else if (state.detached_from) {
d4919bb2 1536 if (state.detached_at)
28438e84 1537 strbuf_addstr(&desc, HEAD_DETACHED_AT);
d4919bb2 1538 else
28438e84
MD
1539 strbuf_addstr(&desc, HEAD_DETACHED_FROM);
1540 strbuf_addstr(&desc, state.detached_from);
d4919bb2
KN
1541 }
1542 else
28438e84
MD
1543 strbuf_addstr(&desc, _("no branch"));
1544 strbuf_addch(&desc, ')');
1545
d4919bb2
KN
1546 free(state.branch);
1547 free(state.onto);
1548 free(state.detached_from);
1549 return strbuf_detach(&desc, NULL);
1550}
1551
a7984101
KN
1552static const char *get_symref(struct used_atom *atom, struct ref_array_item *ref)
1553{
1554 if (!ref->symref)
f0062d3b 1555 return xstrdup("");
a7984101
KN
1556 else
1557 return show_ref(&atom->u.refname, ref->symref);
1558}
1559
1560static const char *get_refname(struct used_atom *atom, struct ref_array_item *ref)
1561{
1562 if (ref->kind & FILTER_REFS_DETACHED_HEAD)
1563 return get_head_description();
1564 return show_ref(&atom->u.refname, ref->refname);
5339bdad
KN
1565}
1566
aa46a0da
OT
1567static int get_object(struct ref_array_item *ref, int deref, struct object **obj,
1568 struct expand_data *oi, struct strbuf *err)
2bbc6e8a 1569{
04f6ee1a
OT
1570 /* parse_object_buffer() will set eaten to 0 if free() will be needed */
1571 int eaten = 1;
aa46a0da
OT
1572 if (oi->info.contentp) {
1573 /* We need to know that to use parse_object_buffer properly */
1574 oi->info.sizep = &oi->size;
1575 oi->info.typep = &oi->type;
1576 }
1577 if (oid_object_info_extended(the_repository, &oi->oid, &oi->info,
1578 OBJECT_INFO_LOOKUP_REPLACE))
1579 return strbuf_addf_ret(err, -1, _("missing object %s for %s"),
1580 oid_to_hex(&oi->oid), ref->refname);
5305a553
OT
1581 if (oi->info.disk_sizep && oi->disk_size < 0)
1582 BUG("Object size is less than zero.");
aa46a0da
OT
1583
1584 if (oi->info.contentp) {
c83149ac 1585 *obj = parse_object_buffer(the_repository, &oi->oid, oi->type, oi->size, oi->content, &eaten);
aa46a0da
OT
1586 if (!obj) {
1587 if (!eaten)
1588 free(oi->content);
1589 return strbuf_addf_ret(err, -1, _("parse_object_buffer failed on %s for %s"),
1590 oid_to_hex(&oi->oid), ref->refname);
1591 }
5c326d12 1592 grab_values(ref->value, deref, *obj, oi->content);
e2255179 1593 }
aa46a0da
OT
1594
1595 grab_common_values(ref->value, deref, oi);
2bbc6e8a 1596 if (!eaten)
aa46a0da
OT
1597 free(oi->content);
1598 return 0;
2bbc6e8a
OT
1599}
1600
2582083f
NB
1601static void populate_worktree_map(struct hashmap *map, struct worktree **worktrees)
1602{
1603 int i;
1604
1605 for (i = 0; worktrees[i]; i++) {
1606 if (worktrees[i]->head_ref) {
1607 struct ref_to_worktree_entry *entry;
1608 entry = xmalloc(sizeof(*entry));
1609 entry->wt = worktrees[i];
d22245a2
EW
1610 hashmap_entry_init(&entry->ent,
1611 strhash(worktrees[i]->head_ref));
2582083f 1612
b94e5c1d 1613 hashmap_add(map, &entry->ent);
2582083f
NB
1614 }
1615 }
1616}
1617
1618static void lazy_init_worktree_map(void)
1619{
1620 if (ref_to_worktree_map.worktrees)
1621 return;
1622
03f2465b 1623 ref_to_worktree_map.worktrees = get_worktrees();
2582083f
NB
1624 hashmap_init(&(ref_to_worktree_map.map), ref_to_worktree_map_cmpfnc, NULL, 0);
1625 populate_worktree_map(&(ref_to_worktree_map.map), ref_to_worktree_map.worktrees);
1626}
1627
1628static char *get_worktree_path(const struct used_atom *atom, const struct ref_array_item *ref)
1629{
f23a4651 1630 struct hashmap_entry entry, *e;
2582083f
NB
1631 struct ref_to_worktree_entry *lookup_result;
1632
1633 lazy_init_worktree_map();
1634
1635 hashmap_entry_init(&entry, strhash(ref->refname));
f23a4651 1636 e = hashmap_get(&(ref_to_worktree_map.map), &entry, ref->refname);
2582083f 1637
f23a4651 1638 if (!e)
2582083f 1639 return xstrdup("");
f23a4651
EW
1640
1641 lookup_result = container_of(e, struct ref_to_worktree_entry, ent);
1642
1643 return xstrdup(lookup_result->wt->path);
2582083f
NB
1644}
1645
c95b7585
KN
1646/*
1647 * Parse the object referred by ref, and grab needed value.
1648 */
e339611b 1649static int populate_value(struct ref_array_item *ref, struct strbuf *err)
c95b7585 1650{
c95b7585 1651 struct object *obj;
2bbc6e8a 1652 int i;
aa46a0da 1653 struct object_info empty = OBJECT_INFO_INIT;
c95b7585
KN
1654
1655 ref->value = xcalloc(used_atom_cnt, sizeof(struct atom_value));
1656
1657 if (need_symref && (ref->flag & REF_ISSYMREF) && !ref->symref) {
c95b7585 1658 ref->symref = resolve_refdup(ref->refname, RESOLVE_REF_READING,
efbd4fdf 1659 NULL, NULL);
c95b7585 1660 if (!ref->symref)
f0062d3b 1661 ref->symref = xstrdup("");
c95b7585
KN
1662 }
1663
1664 /* Fill in specials first */
1665 for (i = 0; i < used_atom_cnt; i++) {
fd935cc7 1666 struct used_atom *atom = &used_atom[i];
b072add7 1667 const char *name = used_atom[i].name;
c95b7585
KN
1668 struct atom_value *v = &ref->value[i];
1669 int deref = 0;
1670 const char *refname;
c95b7585
KN
1671 struct branch *branch = NULL;
1672
63d89fbc 1673 v->handler = append_atom;
c58fc856 1674 v->atom = atom;
63d89fbc 1675
c95b7585
KN
1676 if (*name == '*') {
1677 deref = 1;
1678 name++;
1679 }
1680
1681 if (starts_with(name, "refname"))
a7984101 1682 refname = get_refname(atom, ref);
2582083f
NB
1683 else if (!strcmp(name, "worktreepath")) {
1684 if (ref->kind == FILTER_REFS_BRANCHES)
1685 v->s = get_worktree_path(atom, ref);
1686 else
1687 v->s = xstrdup("");
1688 continue;
1689 }
c95b7585 1690 else if (starts_with(name, "symref"))
a7984101 1691 refname = get_symref(atom, ref);
c95b7585
KN
1692 else if (starts_with(name, "upstream")) {
1693 const char *branch_name;
1694 /* only local branches may have an upstream */
1695 if (!skip_prefix(ref->refname, "refs/heads/",
f0062d3b
OT
1696 &branch_name)) {
1697 v->s = xstrdup("");
c95b7585 1698 continue;
f0062d3b 1699 }
c95b7585
KN
1700 branch = branch_get(branch_name);
1701
1702 refname = branch_get_upstream(branch, NULL);
5339bdad
KN
1703 if (refname)
1704 fill_remote_ref_details(atom, refname, branch, &v->s);
f0062d3b
OT
1705 else
1706 v->s = xstrdup("");
5339bdad 1707 continue;
cc72385f 1708 } else if (atom->u.remote_ref.push) {
c95b7585 1709 const char *branch_name;
f0062d3b 1710 v->s = xstrdup("");
c95b7585
KN
1711 if (!skip_prefix(ref->refname, "refs/heads/",
1712 &branch_name))
1713 continue;
1714 branch = branch_get(branch_name);
1715
cc72385f
JS
1716 if (atom->u.remote_ref.push_remote)
1717 refname = NULL;
1718 else {
1719 refname = branch_get_push(branch, NULL);
1720 if (!refname)
1721 continue;
1722 }
f0062d3b
OT
1723 /* We will definitely re-init v->s on the next line. */
1724 free((char *)v->s);
5339bdad
KN
1725 fill_remote_ref_details(atom, refname, branch, &v->s);
1726 continue;
fd935cc7 1727 } else if (starts_with(name, "color:")) {
f0062d3b 1728 v->s = xstrdup(atom->u.color);
c95b7585
KN
1729 continue;
1730 } else if (!strcmp(name, "flag")) {
1731 char buf[256], *cp = buf;
1732 if (ref->flag & REF_ISSYMREF)
1733 cp = copy_advance(cp, ",symref");
1734 if (ref->flag & REF_ISPACKED)
1735 cp = copy_advance(cp, ",packed");
1736 if (cp == buf)
f0062d3b 1737 v->s = xstrdup("");
c95b7585
KN
1738 else {
1739 *cp = '\0';
1740 v->s = xstrdup(buf + 1);
1741 }
1742 continue;
17769795 1743 } else if (!deref && grab_objectname(name, &ref->objectname, v, atom)) {
c95b7585
KN
1744 continue;
1745 } else if (!strcmp(name, "HEAD")) {
613a0e52 1746 if (atom->u.head && !strcmp(ref->refname, atom->u.head))
f0062d3b 1747 v->s = xstrdup("*");
c95b7585 1748 else
f0062d3b 1749 v->s = xstrdup(" ");
c95b7585 1750 continue;
5bd881d9 1751 } else if (starts_with(name, "align")) {
ce592082 1752 v->handler = align_atom_handler;
f0062d3b 1753 v->s = xstrdup("");
ce592082
KN
1754 continue;
1755 } else if (!strcmp(name, "end")) {
1756 v->handler = end_atom_handler;
f0062d3b 1757 v->s = xstrdup("");
ce592082 1758 continue;
4f3e3b37
KN
1759 } else if (starts_with(name, "if")) {
1760 const char *s;
4f3e3b37
KN
1761 if (skip_prefix(name, "if:", &s))
1762 v->s = xstrdup(s);
f0062d3b
OT
1763 else
1764 v->s = xstrdup("");
c58492d4
KN
1765 v->handler = if_atom_handler;
1766 continue;
1767 } else if (!strcmp(name, "then")) {
1768 v->handler = then_atom_handler;
f0062d3b 1769 v->s = xstrdup("");
c58492d4
KN
1770 continue;
1771 } else if (!strcmp(name, "else")) {
1772 v->handler = else_atom_handler;
f0062d3b 1773 v->s = xstrdup("");
c58492d4 1774 continue;
c95b7585
KN
1775 } else
1776 continue;
1777
c95b7585 1778 if (!deref)
f0062d3b 1779 v->s = xstrdup(refname);
a5e03bf5
JK
1780 else
1781 v->s = xstrfmt("%s^{}", refname);
f0062d3b 1782 free((char *)refname);
c95b7585
KN
1783 }
1784
1785 for (i = 0; i < used_atom_cnt; i++) {
1786 struct atom_value *v = &ref->value[i];
aa46a0da
OT
1787 if (v->s == NULL && used_atom[i].source == SOURCE_NONE)
1788 return strbuf_addf_ret(err, -1, _("missing object %s for %s"),
1789 oid_to_hex(&ref->objectname), ref->refname);
c95b7585 1790 }
aa46a0da
OT
1791
1792 if (need_tagged)
1793 oi.info.contentp = &oi.content;
1794 if (!memcmp(&oi.info, &empty, sizeof(empty)) &&
1795 !memcmp(&oi_deref.info, &empty, sizeof(empty)))
e339611b 1796 return 0;
c95b7585 1797
aa46a0da
OT
1798
1799 oi.oid = ref->objectname;
1800 if (get_object(ref, 0, &obj, &oi, err))
e339611b 1801 return -1;
c95b7585
KN
1802
1803 /*
1804 * If there is no atom that wants to know about tagged
1805 * object, we are done.
1806 */
1807 if (!need_tagged || (obj->type != OBJ_TAG))
e339611b 1808 return 0;
c95b7585
KN
1809
1810 /*
1811 * If it is a tag object, see if we use a value that derefs
1812 * the object, and if we do grab the object it refers to.
1813 */
c77722b3 1814 oi_deref.oid = *get_tagged_oid((struct tag *)obj);
c95b7585
KN
1815
1816 /*
1817 * NEEDSWORK: This derefs tag only once, which
1818 * is good to deal with chains of trust, but
1819 * is not consistent with what deref_tag() does
1820 * which peels the onion to the core.
1821 */
aa46a0da 1822 return get_object(ref, 1, &obj, &oi_deref, err);
c95b7585
KN
1823}
1824
1825/*
1826 * Given a ref, return the value for the atom. This lazily gets value
1827 * out of the object by calling populate value.
1828 */
e339611b
OT
1829static int get_ref_atom_value(struct ref_array_item *ref, int atom,
1830 struct atom_value **v, struct strbuf *err)
c95b7585
KN
1831{
1832 if (!ref->value) {
e339611b
OT
1833 if (populate_value(ref, err))
1834 return -1;
c95b7585
KN
1835 fill_missing_values(ref->value);
1836 }
1837 *v = &ref->value[atom];
e339611b 1838 return 0;
c95b7585
KN
1839}
1840
bef0e12b
KN
1841/*
1842 * Return 1 if the refname matches one of the patterns, otherwise 0.
1843 * A pattern can be a literal prefix (e.g. a refname "refs/heads/master"
1844 * matches a pattern "refs/heads/mas") or a wildcard (e.g. the same ref
1845 * matches "refs/heads/mas*", too).
1846 */
3bb16a8b 1847static int match_pattern(const struct ref_filter *filter, const char *refname)
bef0e12b 1848{
3bb16a8b
NTND
1849 const char **patterns = filter->name_patterns;
1850 unsigned flags = 0;
1851
1852 if (filter->ignore_case)
1853 flags |= WM_CASEFOLD;
1854
bef0e12b
KN
1855 /*
1856 * When no '--format' option is given we need to skip the prefix
1857 * for matching refs of tags and branches.
1858 */
1859 (void)(skip_prefix(refname, "refs/tags/", &refname) ||
1860 skip_prefix(refname, "refs/heads/", &refname) ||
1861 skip_prefix(refname, "refs/remotes/", &refname) ||
1862 skip_prefix(refname, "refs/", &refname));
1863
1864 for (; *patterns; patterns++) {
55d34269 1865 if (!wildmatch(*patterns, refname, flags))
bef0e12b
KN
1866 return 1;
1867 }
1868 return 0;
1869}
1870
c95b7585
KN
1871/*
1872 * Return 1 if the refname matches one of the patterns, otherwise 0.
1873 * A pattern can be path prefix (e.g. a refname "refs/heads/master"
bef0e12b
KN
1874 * matches a pattern "refs/heads/" but not "refs/heads/m") or a
1875 * wildcard (e.g. the same ref matches "refs/heads/m*", too).
c95b7585 1876 */
3bb16a8b 1877static int match_name_as_path(const struct ref_filter *filter, const char *refname)
c95b7585 1878{
3bb16a8b 1879 const char **pattern = filter->name_patterns;
c95b7585 1880 int namelen = strlen(refname);
3bb16a8b
NTND
1881 unsigned flags = WM_PATHNAME;
1882
1883 if (filter->ignore_case)
1884 flags |= WM_CASEFOLD;
1885
c95b7585
KN
1886 for (; *pattern; pattern++) {
1887 const char *p = *pattern;
1888 int plen = strlen(p);
1889
1890 if ((plen <= namelen) &&
1891 !strncmp(refname, p, plen) &&
1892 (refname[plen] == '\0' ||
1893 refname[plen] == '/' ||
1894 p[plen-1] == '/'))
1895 return 1;
639ab5ef 1896 if (!wildmatch(p, refname, flags))
c95b7585
KN
1897 return 1;
1898 }
1899 return 0;
1900}
1901
bef0e12b
KN
1902/* Return 1 if the refname matches one of the patterns, otherwise 0. */
1903static int filter_pattern_match(struct ref_filter *filter, const char *refname)
1904{
1905 if (!*filter->name_patterns)
1906 return 1; /* No pattern always matches */
1907 if (filter->match_as_path)
3bb16a8b
NTND
1908 return match_name_as_path(filter, refname);
1909 return match_pattern(filter, refname);
bef0e12b
KN
1910}
1911
b31e2680
TB
1912static int qsort_strcmp(const void *va, const void *vb)
1913{
1914 const char *a = *(const char **)va;
1915 const char *b = *(const char **)vb;
1916
1917 return strcmp(a, b);
1918}
1919
1920static void find_longest_prefixes_1(struct string_list *out,
1921 struct strbuf *prefix,
1922 const char **patterns, size_t nr)
cfe004a5 1923{
b31e2680
TB
1924 size_t i;
1925
1926 for (i = 0; i < nr; i++) {
1927 char c = patterns[i][prefix->len];
1928 if (!c || is_glob_special(c)) {
1929 string_list_append(out, prefix->buf);
1930 return;
1931 }
1932 }
1933
1934 i = 0;
1935 while (i < nr) {
1936 size_t end;
1937
1938 /*
1939 * Set "end" to the index of the element _after_ the last one
1940 * in our group.
1941 */
1942 for (end = i + 1; end < nr; end++) {
1943 if (patterns[i][prefix->len] != patterns[end][prefix->len])
1944 break;
1945 }
cfe004a5 1946
b31e2680
TB
1947 strbuf_addch(prefix, patterns[i][prefix->len]);
1948 find_longest_prefixes_1(out, prefix, patterns + i, end - i);
1949 strbuf_setlen(prefix, prefix->len - 1);
cfe004a5 1950
b31e2680
TB
1951 i = end;
1952 }
1953}
1954
1955static void find_longest_prefixes(struct string_list *out,
1956 const char **patterns)
1957{
c972bf4c 1958 struct strvec sorted = STRVEC_INIT;
b31e2680
TB
1959 struct strbuf prefix = STRBUF_INIT;
1960
c972bf4c 1961 strvec_pushv(&sorted, patterns);
d70a9eb6 1962 QSORT(sorted.v, sorted.nr, qsort_strcmp);
b31e2680 1963
d70a9eb6 1964 find_longest_prefixes_1(out, &prefix, sorted.v, sorted.nr);
b31e2680 1965
c972bf4c 1966 strvec_clear(&sorted);
b31e2680 1967 strbuf_release(&prefix);
cfe004a5
JK
1968}
1969
1970/*
1971 * This is the same as for_each_fullref_in(), but it tries to iterate
1972 * only over the patterns we'll care about. Note that it _doesn't_ do a full
1973 * pattern match, so the callback still has to match each ref individually.
1974 */
1975static int for_each_fullref_in_pattern(struct ref_filter *filter,
1976 each_ref_fn cb,
1977 void *cb_data,
1978 int broken)
1979{
b31e2680
TB
1980 struct string_list prefixes = STRING_LIST_INIT_DUP;
1981 struct string_list_item *prefix;
cfe004a5
JK
1982 int ret;
1983
1984 if (!filter->match_as_path) {
1985 /*
1986 * in this case, the patterns are applied after
1987 * prefixes like "refs/heads/" etc. are stripped off,
1988 * so we have to look at everything:
1989 */
1990 return for_each_fullref_in("", cb, cb_data, broken);
1991 }
1992
e674eb25
JK
1993 if (filter->ignore_case) {
1994 /*
1995 * we can't handle case-insensitive comparisons,
1996 * so just return everything and let the caller
1997 * sort it out.
1998 */
1999 return for_each_fullref_in("", cb, cb_data, broken);
2000 }
2001
cfe004a5
JK
2002 if (!filter->name_patterns[0]) {
2003 /* no patterns; we have to look at everything */
2004 return for_each_fullref_in("", cb, cb_data, broken);
2005 }
2006
b31e2680 2007 find_longest_prefixes(&prefixes, filter->name_patterns);
cfe004a5 2008
b31e2680
TB
2009 for_each_string_list_item(prefix, &prefixes) {
2010 ret = for_each_fullref_in(prefix->string, cb, cb_data, broken);
2011 if (ret)
2012 break;
2013 }
cfe004a5 2014
b31e2680 2015 string_list_clear(&prefixes, 0);
cfe004a5
JK
2016 return ret;
2017}
2018
68411046 2019/*
c79eddf5
JK
2020 * Given a ref (oid, refname), check if the ref belongs to the array
2021 * of oids. If the given ref is a tag, check if the given tag points
2022 * at one of the oids in the given oid array.
68411046 2023 * NEEDSWORK:
84544f2e 2024 * 1. Only a single level of indirection is obtained, we might want to
68411046
KN
2025 * change this to account for multiple levels (e.g. annotated tags
2026 * pointing to annotated tags pointing to a commit.)
2027 * 2. As the refs are cached we might know what refname peels to without
2028 * the need to parse the object via parse_object(). peel_ref() might be a
2029 * more efficient alternative to obtain the pointee.
2030 */
910650d2 2031static const struct object_id *match_points_at(struct oid_array *points_at,
4ce3621a 2032 const struct object_id *oid,
2033 const char *refname)
68411046 2034{
4ce3621a 2035 const struct object_id *tagged_oid = NULL;
68411046
KN
2036 struct object *obj;
2037
910650d2 2038 if (oid_array_lookup(points_at, oid) >= 0)
4ce3621a 2039 return oid;
109cd76d 2040 obj = parse_object(the_repository, oid);
68411046
KN
2041 if (!obj)
2042 die(_("malformed object at '%s'"), refname);
2043 if (obj->type == OBJ_TAG)
c77722b3 2044 tagged_oid = get_tagged_oid((struct tag *)obj);
910650d2 2045 if (tagged_oid && oid_array_lookup(points_at, tagged_oid) >= 0)
4ce3621a 2046 return tagged_oid;
68411046
KN
2047 return NULL;
2048}
2049
0ffaa00f
JK
2050/*
2051 * Allocate space for a new ref_array_item and copy the name and oid to it.
2052 *
2053 * Callers can then fill in other struct members at their leisure.
2054 */
c95b7585 2055static struct ref_array_item *new_ref_array_item(const char *refname,
0ffaa00f 2056 const struct object_id *oid)
c95b7585 2057{
96ffc06f 2058 struct ref_array_item *ref;
0ffaa00f 2059
96ffc06f 2060 FLEX_ALLOC_STR(ref, refname, refname);
53df97a2 2061 oidcpy(&ref->objectname, oid);
c95b7585
KN
2062
2063 return ref;
2064}
2065
427cbc9d
JK
2066struct ref_array_item *ref_array_push(struct ref_array *array,
2067 const char *refname,
2068 const struct object_id *oid)
2069{
2070 struct ref_array_item *ref = new_ref_array_item(refname, oid);
2071
2072 ALLOC_GROW(array->items, array->nr + 1, array->alloc);
2073 array->items[array->nr++] = ref;
c95b7585
KN
2074
2075 return ref;
2076}
2077
2111aa79 2078static int ref_kind_from_refname(const char *refname)
5b4f2851
KN
2079{
2080 unsigned int i;
2081
2082 static struct {
2083 const char *prefix;
2084 unsigned int kind;
2085 } ref_kind[] = {
2086 { "refs/heads/" , FILTER_REFS_BRANCHES },
2087 { "refs/remotes/" , FILTER_REFS_REMOTES },
2088 { "refs/tags/", FILTER_REFS_TAGS}
2089 };
2090
2111aa79 2091 if (!strcmp(refname, "HEAD"))
5b4f2851
KN
2092 return FILTER_REFS_DETACHED_HEAD;
2093
2094 for (i = 0; i < ARRAY_SIZE(ref_kind); i++) {
2095 if (starts_with(refname, ref_kind[i].prefix))
2096 return ref_kind[i].kind;
2097 }
2098
2099 return FILTER_REFS_OTHERS;
2100}
2101
2111aa79
LP
2102static int filter_ref_kind(struct ref_filter *filter, const char *refname)
2103{
2104 if (filter->kind == FILTER_REFS_BRANCHES ||
2105 filter->kind == FILTER_REFS_REMOTES ||
2106 filter->kind == FILTER_REFS_TAGS)
2107 return filter->kind;
2108 return ref_kind_from_refname(refname);
2109}
2110
920f93ca
DS
2111struct ref_filter_cbdata {
2112 struct ref_array *array;
2113 struct ref_filter *filter;
2114 struct contains_cache contains_cache;
2115 struct contains_cache no_contains_cache;
2116};
2117
c95b7585
KN
2118/*
2119 * A call-back given to for_each_ref(). Filter refs and keep them for
2120 * later object processing.
2121 */
14de7fba 2122static int ref_filter_handler(const char *refname, const struct object_id *oid, int flag, void *cb_data)
c95b7585
KN
2123{
2124 struct ref_filter_cbdata *ref_cbdata = cb_data;
14de7fba 2125 struct ref_filter *filter = ref_cbdata->filter;
c95b7585 2126 struct ref_array_item *ref;
35257aa0 2127 struct commit *commit = NULL;
5b4f2851 2128 unsigned int kind;
c95b7585
KN
2129
2130 if (flag & REF_BAD_NAME) {
1823c619 2131 warning(_("ignoring ref with broken name %s"), refname);
c95b7585
KN
2132 return 0;
2133 }
2134
7ebc8cbe 2135 if (flag & REF_ISBROKEN) {
1823c619 2136 warning(_("ignoring broken ref %s"), refname);
7ebc8cbe
JH
2137 return 0;
2138 }
2139
5b4f2851
KN
2140 /* Obtain the current ref kind from filter_ref_kind() and ignore unwanted refs. */
2141 kind = filter_ref_kind(filter, refname);
2142 if (!(kind & filter->kind))
2143 return 0;
2144
bef0e12b 2145 if (!filter_pattern_match(filter, refname))
c95b7585
KN
2146 return 0;
2147
4ce3621a 2148 if (filter->points_at.nr && !match_points_at(&filter->points_at, oid, refname))
68411046
KN
2149 return 0;
2150
35257aa0
KN
2151 /*
2152 * A merge filter is applied on refs pointing to commits. Hence
2153 * obtain the commit using the 'oid' available and discard all
2154 * non-commits early. The actual filtering is done later.
2155 */
ac3f5a34 2156 if (filter->merge_commit || filter->with_commit || filter->no_commit || filter->verbose) {
21e1ee8f
SB
2157 commit = lookup_commit_reference_gently(the_repository, oid,
2158 1);
35257aa0
KN
2159 if (!commit)
2160 return 0;
ac3f5a34 2161 /* We perform the filtering for the '--contains' option... */
ee2bd06b 2162 if (filter->with_commit &&
ac3f5a34
ÆAB
2163 !commit_contains(filter, commit, filter->with_commit, &ref_cbdata->contains_cache))
2164 return 0;
2165 /* ...or for the `--no-contains' option */
2166 if (filter->no_commit &&
2167 commit_contains(filter, commit, filter->no_commit, &ref_cbdata->no_contains_cache))
ee2bd06b 2168 return 0;
35257aa0
KN
2169 }
2170
c95b7585
KN
2171 /*
2172 * We do not open the object yet; sort may only need refname
2173 * to do its job and the resulting list may yet to be pruned
2174 * by maxcount logic.
2175 */
427cbc9d 2176 ref = ref_array_push(ref_cbdata->array, refname, oid);
35257aa0 2177 ref->commit = commit;
0ffaa00f 2178 ref->flag = flag;
5b4f2851 2179 ref->kind = kind;
c95b7585 2180
c95b7585
KN
2181 return 0;
2182}
2183
2184/* Free memory allocated for a ref_array_item */
2185static void free_array_item(struct ref_array_item *item)
2186{
2187 free((char *)item->symref);
f0062d3b 2188 if (item->value) {
14d30cdf
2189 int i;
2190 for (i = 0; i < used_atom_cnt; i++)
2191 free((char *)item->value[i].s);
f0062d3b
OT
2192 free(item->value);
2193 }
c95b7585
KN
2194 free(item);
2195}
2196
2197/* Free all memory allocated for ref_array */
2198void ref_array_clear(struct ref_array *array)
2199{
2200 int i;
2201
2202 for (i = 0; i < array->nr; i++)
2203 free_array_item(array->items[i]);
6a83d902 2204 FREE_AND_NULL(array->items);
c95b7585 2205 array->nr = array->alloc = 0;
14d30cdf
2206
2207 for (i = 0; i < used_atom_cnt; i++)
2208 free((char *)used_atom[i].name);
2209 FREE_AND_NULL(used_atom);
2210 used_atom_cnt = 0;
2211
2582083f 2212 if (ref_to_worktree_map.worktrees) {
c8e424c9
EW
2213 hashmap_free_entries(&(ref_to_worktree_map.map),
2214 struct ref_to_worktree_entry, ent);
2582083f
NB
2215 free_worktrees(ref_to_worktree_map.worktrees);
2216 ref_to_worktree_map.worktrees = NULL;
2217 }
c95b7585
KN
2218}
2219
35257aa0
KN
2220static void do_merge_filter(struct ref_filter_cbdata *ref_cbdata)
2221{
2222 struct rev_info revs;
2223 int i, old_nr;
2224 struct ref_filter *filter = ref_cbdata->filter;
2225 struct ref_array *array = ref_cbdata->array;
2226 struct commit **to_clear = xcalloc(sizeof(struct commit *), array->nr);
2227
2abf3503 2228 repo_init_revisions(the_repository, &revs, NULL);
35257aa0
KN
2229
2230 for (i = 0; i < array->nr; i++) {
2231 struct ref_array_item *item = array->items[i];
2232 add_pending_object(&revs, &item->commit->object, item->refname);
2233 to_clear[i] = item->commit;
2234 }
2235
2236 filter->merge_commit->object.flags |= UNINTERESTING;
2237 add_pending_object(&revs, &filter->merge_commit->object, "");
2238
2239 revs.limited = 1;
2240 if (prepare_revision_walk(&revs))
2241 die(_("revision walk setup failed"));
2242
2243 old_nr = array->nr;
2244 array->nr = 0;
2245
2246 for (i = 0; i < old_nr; i++) {
2247 struct ref_array_item *item = array->items[i];
2248 struct commit *commit = item->commit;
2249
2250 int is_merged = !!(commit->object.flags & UNINTERESTING);
2251
2252 if (is_merged == (filter->merge == REF_FILTER_MERGED_INCLUDE))
2253 array->items[array->nr++] = array->items[i];
2254 else
2255 free_array_item(item);
2256 }
2257
5dee6d6f 2258 clear_commit_marks_many(old_nr, to_clear, ALL_REV_FLAGS);
35257aa0
KN
2259 clear_commit_marks(filter->merge_commit, ALL_REV_FLAGS);
2260 free(to_clear);
2261}
2262
14de7fba
KN
2263/*
2264 * API for filtering a set of refs. Based on the type of refs the user
2265 * has requested, we iterate through those refs and apply filters
2266 * as per the given ref_filter structure and finally store the
2267 * filtered refs in the ref_array structure.
2268 */
2269int filter_refs(struct ref_array *array, struct ref_filter *filter, unsigned int type)
2270{
2271 struct ref_filter_cbdata ref_cbdata;
35257aa0 2272 int ret = 0;
5b4f2851 2273 unsigned int broken = 0;
14de7fba
KN
2274
2275 ref_cbdata.array = array;
2276 ref_cbdata.filter = filter;
2277
5b4f2851
KN
2278 if (type & FILTER_REFS_INCLUDE_BROKEN)
2279 broken = 1;
2280 filter->kind = type & FILTER_REFS_KIND_MASK;
2281
a91aca44 2282 init_contains_cache(&ref_cbdata.contains_cache);
ac3f5a34 2283 init_contains_cache(&ref_cbdata.no_contains_cache);
a91aca44 2284
35257aa0 2285 /* Simple per-ref filtering */
5b4f2851 2286 if (!filter->kind)
14de7fba 2287 die("filter_refs: invalid type");
5b4f2851
KN
2288 else {
2289 /*
2290 * For common cases where we need only branches or remotes or tags,
2291 * we only iterate through those refs. If a mix of refs is needed,
2292 * we iterate over all refs and filter out required refs with the help
2293 * of filter_ref_kind().
2294 */
2295 if (filter->kind == FILTER_REFS_BRANCHES)
2296 ret = for_each_fullref_in("refs/heads/", ref_filter_handler, &ref_cbdata, broken);
2297 else if (filter->kind == FILTER_REFS_REMOTES)
2298 ret = for_each_fullref_in("refs/remotes/", ref_filter_handler, &ref_cbdata, broken);
2299 else if (filter->kind == FILTER_REFS_TAGS)
2300 ret = for_each_fullref_in("refs/tags/", ref_filter_handler, &ref_cbdata, broken);
2301 else if (filter->kind & FILTER_REFS_ALL)
cfe004a5 2302 ret = for_each_fullref_in_pattern(filter, ref_filter_handler, &ref_cbdata, broken);
5b4f2851
KN
2303 if (!ret && (filter->kind & FILTER_REFS_DETACHED_HEAD))
2304 head_ref(ref_filter_handler, &ref_cbdata);
2305 }
2306
a91aca44 2307 clear_contains_cache(&ref_cbdata.contains_cache);
ac3f5a34 2308 clear_contains_cache(&ref_cbdata.no_contains_cache);
35257aa0
KN
2309
2310 /* Filters that need revision walking */
2311 if (filter->merge_commit)
2312 do_merge_filter(&ref_cbdata);
2313
2314 return ret;
14de7fba
KN
2315}
2316
c95b7585
KN
2317static int cmp_ref_sorting(struct ref_sorting *s, struct ref_array_item *a, struct ref_array_item *b)
2318{
2319 struct atom_value *va, *vb;
2320 int cmp;
b072add7 2321 cmp_type cmp_type = used_atom[s->atom].type;
3bb16a8b 2322 int (*cmp_fn)(const char *, const char *);
e339611b 2323 struct strbuf err = STRBUF_INIT;
c95b7585 2324
e339611b
OT
2325 if (get_ref_atom_value(a, s->atom, &va, &err))
2326 die("%s", err.buf);
2327 if (get_ref_atom_value(b, s->atom, &vb, &err))
2328 die("%s", err.buf);
2329 strbuf_release(&err);
3bb16a8b 2330 cmp_fn = s->ignore_case ? strcasecmp : strcmp;
90c00408
KN
2331 if (s->version)
2332 cmp = versioncmp(va->s, vb->s);
2333 else if (cmp_type == FIELD_STR)
3bb16a8b 2334 cmp = cmp_fn(va->s, vb->s);
90c00408 2335 else {
e467dc14 2336 if (va->value < vb->value)
c95b7585 2337 cmp = -1;
e467dc14 2338 else if (va->value == vb->value)
7c5045fc 2339 cmp = 0;
c95b7585
KN
2340 else
2341 cmp = 1;
c95b7585 2342 }
90c00408 2343
c95b7585
KN
2344 return (s->reverse) ? -cmp : cmp;
2345}
2346
83fc4d64 2347static int compare_refs(const void *a_, const void *b_, void *ref_sorting)
c95b7585
KN
2348{
2349 struct ref_array_item *a = *((struct ref_array_item **)a_);
2350 struct ref_array_item *b = *((struct ref_array_item **)b_);
2351 struct ref_sorting *s;
2352
2353 for (s = ref_sorting; s; s = s->next) {
2354 int cmp = cmp_ref_sorting(s, a, b);
2355 if (cmp)
2356 return cmp;
2357 }
7c5045fc
JK
2358 s = ref_sorting;
2359 return s && s->ignore_case ?
2360 strcasecmp(a->refname, b->refname) :
2361 strcmp(a->refname, b->refname);
c95b7585
KN
2362}
2363
76f9e569
JK
2364void ref_sorting_icase_all(struct ref_sorting *sorting, int flag)
2365{
2366 for (; sorting; sorting = sorting->next)
2367 sorting->ignore_case = !!flag;
c95b7585
KN
2368}
2369
2370void ref_array_sort(struct ref_sorting *sorting, struct ref_array *array)
2371{
83fc4d64 2372 QSORT_S(array->items, array->nr, compare_refs, sorting);
c95b7585
KN
2373}
2374
574e96a2 2375static void append_literal(const char *cp, const char *ep, struct ref_formatting_state *state)
c95b7585 2376{
574e96a2
KN
2377 struct strbuf *s = &state->stack->output;
2378
c95b7585
KN
2379 while (*cp && (!ep || cp < ep)) {
2380 if (*cp == '%') {
2381 if (cp[1] == '%')
2382 cp++;
2383 else {
d2330973 2384 int ch = hex2chr(cp + 1);
c95b7585 2385 if (0 <= ch) {
574e96a2 2386 strbuf_addch(s, ch);
c95b7585
KN
2387 cp += 3;
2388 continue;
2389 }
2390 }
2391 }
574e96a2 2392 strbuf_addch(s, *cp);
c95b7585
KN
2393 cp++;
2394 }
2395}
2396
3019eca9 2397int format_ref_array_item(struct ref_array_item *info,
4a68e36d 2398 const struct ref_format *format,
3019eca9
OT
2399 struct strbuf *final_buf,
2400 struct strbuf *error_buf)
c95b7585
KN
2401{
2402 const char *cp, *sp, *ep;
574e96a2
KN
2403 struct ref_formatting_state state = REF_FORMATTING_STATE_INIT;
2404
4a68e36d 2405 state.quote_style = format->quote_style;
574e96a2 2406 push_stack_element(&state.stack);
c95b7585 2407
4a68e36d 2408 for (cp = format->format; *cp && (sp = find_next(cp)); cp = ep + 1) {
c95b7585 2409 struct atom_value *atomv;
e6ff7b3b 2410 int pos;
c95b7585
KN
2411
2412 ep = strchr(sp, ')');
2413 if (cp < sp)
574e96a2 2414 append_literal(cp, sp, &state);
e6ff7b3b 2415 pos = parse_ref_filter_atom(format, sp + 2, ep, error_buf);
e339611b
OT
2416 if (pos < 0 || get_ref_atom_value(info, pos, &atomv, error_buf) ||
2417 atomv->handler(atomv, &state, error_buf)) {
3fc8439c
OT
2418 pop_stack_element(&state.stack);
2419 return -1;
2420 }
c95b7585
KN
2421 }
2422 if (*cp) {
2423 sp = cp + strlen(cp);
574e96a2 2424 append_literal(cp, sp, &state);
c95b7585 2425 }
bf285ae6 2426 if (format->need_color_reset_at_eol) {
c95b7585 2427 struct atom_value resetv;
51331aad 2428 resetv.s = GIT_COLOR_RESET;
3fc8439c
OT
2429 if (append_atom(&resetv, &state, error_buf)) {
2430 pop_stack_element(&state.stack);
2431 return -1;
2432 }
c95b7585 2433 }
3019eca9
OT
2434 if (state.stack->prev) {
2435 pop_stack_element(&state.stack);
2436 return strbuf_addf_ret(error_buf, -1, _("format: %%(end) atom missing"));
c95b7585 2437 }
99c6a71d 2438 strbuf_addbuf(final_buf, &state.stack->output);
574e96a2 2439 pop_stack_element(&state.stack);
3019eca9 2440 return 0;
99c6a71d
KN
2441}
2442
4a68e36d
JK
2443void show_ref_array_item(struct ref_array_item *info,
2444 const struct ref_format *format)
99c6a71d
KN
2445{
2446 struct strbuf final_buf = STRBUF_INIT;
3019eca9 2447 struct strbuf error_buf = STRBUF_INIT;
99c6a71d 2448
3019eca9
OT
2449 if (format_ref_array_item(info, format, &final_buf, &error_buf))
2450 die("%s", error_buf.buf);
99c6a71d 2451 fwrite(final_buf.buf, 1, final_buf.len, stdout);
3019eca9 2452 strbuf_release(&error_buf);
99c6a71d 2453 strbuf_release(&final_buf);
c95b7585
KN
2454 putchar('\n');
2455}
2456
53df97a2 2457void pretty_print_ref(const char *name, const struct object_id *oid,
4a68e36d 2458 const struct ref_format *format)
2111aa79
LP
2459{
2460 struct ref_array_item *ref_item;
0ffaa00f 2461 ref_item = new_ref_array_item(name, oid);
2111aa79 2462 ref_item->kind = ref_kind_from_refname(name);
4a68e36d 2463 show_ref_array_item(ref_item, format);
2111aa79
LP
2464 free_array_item(ref_item);
2465}
2466
29ef53cd
JK
2467static int parse_sorting_atom(const char *atom)
2468{
ab7ded34
JK
2469 /*
2470 * This parses an atom using a dummy ref_format, since we don't
2471 * actually care about the formatting details.
2472 */
2473 struct ref_format dummy = REF_FORMAT_INIT;
29ef53cd 2474 const char *end = atom + strlen(atom);
e6ff7b3b
OT
2475 struct strbuf err = STRBUF_INIT;
2476 int res = parse_ref_filter_atom(&dummy, atom, end, &err);
2477 if (res < 0)
2478 die("%s", err.buf);
2479 strbuf_release(&err);
2480 return res;
29ef53cd
JK
2481}
2482
c95b7585
KN
2483/* If no sorting option is given, use refname to sort as default */
2484struct ref_sorting *ref_default_sorting(void)
2485{
2486 static const char cstr_name[] = "refname";
2487
2488 struct ref_sorting *sorting = xcalloc(1, sizeof(*sorting));
2489
2490 sorting->next = NULL;
29ef53cd 2491 sorting->atom = parse_sorting_atom(cstr_name);
c95b7585
KN
2492 return sorting;
2493}
2494
18a25650 2495void parse_ref_sorting(struct ref_sorting **sorting_tail, const char *arg)
c95b7585 2496{
c95b7585 2497 struct ref_sorting *s;
c95b7585 2498
c95b7585
KN
2499 s = xcalloc(1, sizeof(*s));
2500 s->next = *sorting_tail;
2501 *sorting_tail = s;
2502
2503 if (*arg == '-') {
2504 s->reverse = 1;
2505 arg++;
2506 }
90c00408
KN
2507 if (skip_prefix(arg, "version:", &arg) ||
2508 skip_prefix(arg, "v:", &arg))
2509 s->version = 1;
29ef53cd 2510 s->atom = parse_sorting_atom(arg);
18a25650
JK
2511}
2512
2513int parse_opt_ref_sorting(const struct option *opt, const char *arg, int unset)
2514{
95be717c
JK
2515 /*
2516 * NEEDSWORK: We should probably clear the list in this case, but we've
2517 * already munged the global used_atoms list, which would need to be
2518 * undone.
2519 */
2520 BUG_ON_OPT_NEG(unset);
2521
18a25650 2522 parse_ref_sorting(opt->value, arg);
c95b7585
KN
2523 return 0;
2524}
5afcb905
KN
2525
2526int parse_opt_merge_filter(const struct option *opt, const char *arg, int unset)
2527{
2528 struct ref_filter *rf = opt->value;
1e43ed98 2529 struct object_id oid;
17d6c744 2530 int no_merged = starts_with(opt->long_name, "no");
5afcb905 2531
517fe807
JK
2532 BUG_ON_OPT_NEG(unset);
2533
17d6c744
ÆAB
2534 if (rf->merge) {
2535 if (no_merged) {
9440b831
NTND
2536 return error(_("option `%s' is incompatible with --merged"),
2537 opt->long_name);
17d6c744 2538 } else {
9440b831
NTND
2539 return error(_("option `%s' is incompatible with --no-merged"),
2540 opt->long_name);
17d6c744
ÆAB
2541 }
2542 }
5afcb905 2543
17d6c744 2544 rf->merge = no_merged
5afcb905
KN
2545 ? REF_FILTER_MERGED_OMIT
2546 : REF_FILTER_MERGED_INCLUDE;
2547
1e43ed98 2548 if (get_oid(arg, &oid))
5afcb905
KN
2549 die(_("malformed object name %s"), arg);
2550
21e1ee8f
SB
2551 rf->merge_commit = lookup_commit_reference_gently(the_repository,
2552 &oid, 0);
5afcb905 2553 if (!rf->merge_commit)
9440b831 2554 return error(_("option `%s' must point to a commit"), opt->long_name);
5afcb905
KN
2555
2556 return 0;
2557}