]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/for-each-ref.c
The sixth batch
[thirdparty/git.git] / builtin / for-each-ref.c
CommitLineData
baffc0e7 1#include "builtin.h"
ec2101ab 2#include "commit.h"
b2141fc1 3#include "config.h"
f394e093 4#include "gettext.h"
9f613ddd 5#include "object.h"
c3428da8 6#include "parse-options.h"
69b1cf91 7#include "ref-filter.h"
88e4e183 8#include "strbuf.h"
b73dec55 9#include "strvec.h"
9f613ddd 10
c3428da8 11static char const * const for_each_ref_usage[] = {
9c9b4f2f 12 N_("git for-each-ref [<options>] [<pattern>]"),
d325406e 13 N_("git for-each-ref [--points-at <object>]"),
21bf9339 14 N_("git for-each-ref [--merged [<commit>]] [--no-merged [<commit>]]"),
ac3f5a34 15 N_("git for-each-ref [--contains [<commit>]] [--no-contains [<commit>]]"),
c3428da8
PH
16 NULL
17};
18
9b1cb507
JC
19int cmd_for_each_ref(int argc,
20 const char **argv,
21 const char *prefix,
d9dce891 22 struct repository *repo)
9f613ddd 23{
98e7ab6d
JH
24 struct ref_sorting *sorting;
25 struct string_list sorting_options = STRING_LIST_INIT_DUP;
33d15b54 26 int icase = 0, include_root_refs = 0, from_stdin = 0;
b9f7daa6 27 struct ref_filter filter = REF_FILTER_INIT;
4a68e36d 28 struct ref_format format = REF_FORMAT_INIT;
33d15b54 29 unsigned int flags = FILTER_REFS_REGULAR;
b73dec55 30 struct strvec vec = STRVEC_INIT;
9f613ddd 31
c3428da8 32 struct option opts[] = {
4a68e36d 33 OPT_BIT('s', "shell", &format.quote_style,
18913521 34 N_("quote placeholders suitably for shells"), QUOTE_SHELL),
4a68e36d 35 OPT_BIT('p', "perl", &format.quote_style,
18913521 36 N_("quote placeholders suitably for perl"), QUOTE_PERL),
4a68e36d 37 OPT_BIT(0 , "python", &format.quote_style,
18913521 38 N_("quote placeholders suitably for python"), QUOTE_PYTHON),
4a68e36d 39 OPT_BIT(0 , "tcl", &format.quote_style,
b799a696 40 N_("quote placeholders suitably for Tcl"), QUOTE_TCL),
9d4fcfe1 41 OPT_BOOL(0, "omit-empty", &format.array_opts.omit_empty,
aabfdc95 42 N_("do not output a newline after empty formatted refs")),
c3428da8
PH
43
44 OPT_GROUP(""),
9d4fcfe1 45 OPT_INTEGER( 0 , "count", &format.array_opts.max_count, N_("show only <n> matched refs")),
4a68e36d 46 OPT_STRING( 0 , "format", &format.format, N_("format"), N_("format to use for the output")),
0c88bf50 47 OPT__COLOR(&format.use_color, N_("respect format colors")),
8255dd8a 48 OPT_REF_FILTER_EXCLUDE(&filter),
98e7ab6d 49 OPT_REF_SORT(&sorting_options),
d325406e
KN
50 OPT_CALLBACK(0, "points-at", &filter.points_at,
51 N_("object"), N_("print only refs which points at the given object"),
52 parse_opt_object_name),
7c328348
KN
53 OPT_MERGED(&filter, N_("print only refs that are merged")),
54 OPT_NO_MERGED(&filter, N_("print only refs that are not merged")),
4a71109a 55 OPT_CONTAINS(&filter.with_commit, N_("print only refs which contain the commit")),
ac3f5a34 56 OPT_NO_CONTAINS(&filter.no_commit, N_("print only refs which don't contain the commit")),
3bb16a8b 57 OPT_BOOL(0, "ignore-case", &icase, N_("sorting and filtering are case insensitive")),
b73dec55 58 OPT_BOOL(0, "stdin", &from_stdin, N_("read reference patterns from stdin")),
33d15b54 59 OPT_BOOL(0, "include-root-refs", &include_root_refs, N_("also include HEAD ref and pseudorefs")),
c3428da8
PH
60 OPT_END(),
61 };
62
4a68e36d
JK
63 format.format = "%(objectname) %(objecttype)\t%(refname)";
64
d9dce891 65 repo_config(repo, git_default_config, NULL);
d8b68686 66
56d26ade
VD
67 /* Set default (refname) sorting */
68 string_list_append(&sorting_options, "refname");
69
37782920 70 parse_options(argc, argv, prefix, opts, for_each_ref_usage, 0);
9d4fcfe1
VD
71 if (format.array_opts.max_count < 0) {
72 error("invalid --count argument: `%d'", format.array_opts.max_count);
c3428da8 73 usage_with_options(for_each_ref_usage, opts);
9f613ddd 74 }
4a68e36d 75 if (HAS_MULTI_BITS(format.quote_style)) {
c9ecf4f1 76 error("more than one quoting style?");
c3428da8
PH
77 usage_with_options(for_each_ref_usage, opts);
78 }
4a68e36d 79 if (verify_ref_format(&format))
c3428da8 80 usage_with_options(for_each_ref_usage, opts);
9f613ddd 81
98e7ab6d 82 sorting = ref_sorting_options(&sorting_options);
7c269a7b 83 ref_sorting_set_sort_flags_all(sorting, REF_SORTING_ICASE, icase);
3bb16a8b 84 filter.ignore_case = icase;
9f613ddd 85
b73dec55
DS
86 if (from_stdin) {
87 struct strbuf line = STRBUF_INIT;
88
89 if (argv[0])
90 die(_("unknown arguments supplied with --stdin"));
91
92 while (strbuf_getline(&line, stdin) != EOF)
93 strvec_push(&vec, line.buf);
94
95 strbuf_release(&line);
96
97 /* vec.v is NULL-terminated, just like 'argv'. */
98 filter.name_patterns = vec.v;
99 } else {
100 filter.name_patterns = argv;
101 }
102
33d15b54 103 if (include_root_refs)
f1701f27 104 flags |= FILTER_REFS_ROOT_REFS | FILTER_REFS_DETACHED_HEAD;
33d15b54 105
bef0e12b 106 filter.match_as_path = 1;
33d15b54 107 filter_and_format_refs(&filter, flags, sorting, &format);
844c3f0b 108
b571fb98 109 ref_filter_clear(&filter);
e5fb0286 110 ref_sorting_release(sorting);
b73dec55 111 strvec_clear(&vec);
9f613ddd
JH
112 return 0;
113}