2007-07-15 01:14:45 +02:00
|
|
|
#include "builtin.h"
|
2006-09-15 22:30:02 +02:00
|
|
|
#include "cache.h"
|
|
|
|
#include "refs.h"
|
|
|
|
#include "object.h"
|
2007-10-13 20:40:46 +02:00
|
|
|
#include "parse-options.h"
|
2015-06-13 21:37:26 +02:00
|
|
|
#include "ref-filter.h"
|
2006-09-15 22:30:02 +02:00
|
|
|
|
2007-10-13 20:40:46 +02:00
|
|
|
static char const * const for_each_ref_usage[] = {
|
2015-01-13 08:44:47 +01:00
|
|
|
N_("git for-each-ref [<options>] [<pattern>]"),
|
2015-07-07 18:06:10 +02:00
|
|
|
N_("git for-each-ref [--points-at <object>]"),
|
2015-07-07 18:06:13 +02:00
|
|
|
N_("git for-each-ref [(--merged | --no-merged) [<object>]]"),
|
2015-07-07 18:06:17 +02:00
|
|
|
N_("git for-each-ref [--contains [<object>]]"),
|
2007-10-13 20:40:46 +02:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
int cmd_for_each_ref(int argc, const char **argv, const char *prefix)
|
2006-09-15 22:30:02 +02:00
|
|
|
{
|
2015-06-13 21:37:22 +02:00
|
|
|
int i;
|
2007-10-13 20:40:46 +02:00
|
|
|
const char *format = "%(objectname) %(objecttype)\t%(refname)";
|
2015-06-13 21:37:25 +02:00
|
|
|
struct ref_sorting *sorting = NULL, **sorting_tail = &sorting;
|
2016-12-04 03:52:25 +01:00
|
|
|
int maxcount = 0, quote_style = 0, icase = 0;
|
2015-06-13 21:37:28 +02:00
|
|
|
struct ref_array array;
|
|
|
|
struct ref_filter filter;
|
2006-09-15 22:30:02 +02:00
|
|
|
|
2007-10-13 20:40:46 +02:00
|
|
|
struct option opts[] = {
|
2007-11-07 11:20:29 +01:00
|
|
|
OPT_BIT('s', "shell", "e_style,
|
2012-08-20 14:32:11 +02:00
|
|
|
N_("quote placeholders suitably for shells"), QUOTE_SHELL),
|
2007-11-07 11:20:29 +01:00
|
|
|
OPT_BIT('p', "perl", "e_style,
|
2012-08-20 14:32:11 +02:00
|
|
|
N_("quote placeholders suitably for perl"), QUOTE_PERL),
|
2007-11-07 11:20:29 +01:00
|
|
|
OPT_BIT(0 , "python", "e_style,
|
2012-08-20 14:32:11 +02:00
|
|
|
N_("quote placeholders suitably for python"), QUOTE_PYTHON),
|
2007-11-07 11:20:29 +01:00
|
|
|
OPT_BIT(0 , "tcl", "e_style,
|
2014-11-28 19:00:11 +01:00
|
|
|
N_("quote placeholders suitably for Tcl"), QUOTE_TCL),
|
2007-10-13 20:40:46 +02:00
|
|
|
|
|
|
|
OPT_GROUP(""),
|
2012-08-20 14:32:11 +02:00
|
|
|
OPT_INTEGER( 0 , "count", &maxcount, N_("show only <n> matched refs")),
|
|
|
|
OPT_STRING( 0 , "format", &format, N_("format"), N_("format to use for the output")),
|
2015-06-13 21:37:25 +02:00
|
|
|
OPT_CALLBACK(0 , "sort", sorting_tail, N_("key"),
|
2015-06-13 21:37:24 +02:00
|
|
|
N_("field name to sort on"), &parse_opt_ref_sorting),
|
2015-07-07 18:06:10 +02:00
|
|
|
OPT_CALLBACK(0, "points-at", &filter.points_at,
|
|
|
|
N_("object"), N_("print only refs which points at the given object"),
|
|
|
|
parse_opt_object_name),
|
2015-07-07 18:06:13 +02:00
|
|
|
OPT_MERGED(&filter, N_("print only refs that are merged")),
|
|
|
|
OPT_NO_MERGED(&filter, N_("print only refs that are not merged")),
|
2015-07-07 18:06:17 +02:00
|
|
|
OPT_CONTAINS(&filter.with_commit, N_("print only refs which contain the commit")),
|
2016-12-04 03:52:25 +01:00
|
|
|
OPT_BOOL(0, "ignore-case", &icase, N_("sorting and filtering are case insensitive")),
|
2007-10-13 20:40:46 +02:00
|
|
|
OPT_END(),
|
|
|
|
};
|
|
|
|
|
2015-07-07 18:06:10 +02:00
|
|
|
memset(&array, 0, sizeof(array));
|
|
|
|
memset(&filter, 0, sizeof(filter));
|
|
|
|
|
2009-05-23 20:53:12 +02:00
|
|
|
parse_options(argc, argv, prefix, opts, for_each_ref_usage, 0);
|
2007-10-13 20:40:46 +02:00
|
|
|
if (maxcount < 0) {
|
|
|
|
error("invalid --count argument: `%d'", maxcount);
|
|
|
|
usage_with_options(for_each_ref_usage, opts);
|
2006-09-15 22:30:02 +02:00
|
|
|
}
|
2007-11-07 11:20:29 +01:00
|
|
|
if (HAS_MULTI_BITS(quote_style)) {
|
2007-12-06 13:24:39 +01:00
|
|
|
error("more than one quoting style?");
|
2007-10-13 20:40:46 +02:00
|
|
|
usage_with_options(for_each_ref_usage, opts);
|
|
|
|
}
|
2015-06-13 21:37:24 +02:00
|
|
|
if (verify_ref_format(format))
|
2007-10-13 20:40:46 +02:00
|
|
|
usage_with_options(for_each_ref_usage, opts);
|
2006-09-15 22:30:02 +02:00
|
|
|
|
2015-06-13 21:37:25 +02:00
|
|
|
if (!sorting)
|
|
|
|
sorting = ref_default_sorting();
|
2016-12-04 03:52:25 +01:00
|
|
|
sorting->ignore_case = icase;
|
|
|
|
filter.ignore_case = icase;
|
2006-09-15 22:30:02 +02:00
|
|
|
|
2009-04-13 12:25:47 +02:00
|
|
|
/* for warn_ambiguous_refs */
|
|
|
|
git_config(git_default_config, NULL);
|
|
|
|
|
2015-06-13 21:37:28 +02:00
|
|
|
filter.name_patterns = argv;
|
2015-09-10 17:48:26 +02:00
|
|
|
filter.match_as_path = 1;
|
2015-06-13 21:37:28 +02:00
|
|
|
filter_refs(&array, &filter, FILTER_REFS_ALL | FILTER_REFS_INCLUDE_BROKEN);
|
|
|
|
ref_array_sort(sorting, &array);
|
2006-09-15 22:30:02 +02:00
|
|
|
|
2015-06-13 21:37:28 +02:00
|
|
|
if (!maxcount || array.nr < maxcount)
|
|
|
|
maxcount = array.nr;
|
2006-09-15 22:30:02 +02:00
|
|
|
for (i = 0; i < maxcount; i++)
|
2015-06-13 21:37:28 +02:00
|
|
|
show_ref_array_item(array.items[i], format, quote_style);
|
|
|
|
ref_array_clear(&array);
|
2006-09-15 22:30:02 +02:00
|
|
|
return 0;
|
|
|
|
}
|