2012-09-12 16:04:43 +02:00
|
|
|
#include "cache.h"
|
|
|
|
#include "string-list.h"
|
|
|
|
|
2012-09-12 16:04:44 +02:00
|
|
|
/*
|
|
|
|
* Parse an argument into a string list. arg should either be a
|
|
|
|
* ':'-separated list of strings, or "-" to indicate an empty string
|
|
|
|
* list (as opposed to "", which indicates a string list containing a
|
|
|
|
* single empty string). list->strdup_strings must be set.
|
|
|
|
*/
|
2012-09-15 18:18:42 +02:00
|
|
|
static void parse_string_list(struct string_list *list, const char *arg)
|
2012-09-12 16:04:44 +02:00
|
|
|
{
|
|
|
|
if (!strcmp(arg, "-"))
|
|
|
|
return;
|
|
|
|
|
|
|
|
(void)string_list_split(list, arg, ':', -1);
|
|
|
|
}
|
|
|
|
|
2012-09-15 18:18:42 +02:00
|
|
|
static void write_list(const struct string_list *list)
|
2012-09-12 16:04:43 +02:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < list->nr; i++)
|
|
|
|
printf("[%d]: \"%s\"\n", i, list->items[i].string);
|
|
|
|
}
|
|
|
|
|
2012-09-15 18:18:42 +02:00
|
|
|
static void write_list_compact(const struct string_list *list)
|
2012-09-12 16:04:44 +02:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
if (!list->nr)
|
|
|
|
printf("-\n");
|
|
|
|
else {
|
|
|
|
printf("%s", list->items[0].string);
|
|
|
|
for (i = 1; i < list->nr; i++)
|
|
|
|
printf(":%s", list->items[i].string);
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-15 18:18:42 +02:00
|
|
|
static int prefix_cb(struct string_list_item *item, void *cb_data)
|
2012-09-12 16:04:44 +02:00
|
|
|
{
|
|
|
|
const char *prefix = (const char *)cb_data;
|
2013-11-30 21:55:40 +01:00
|
|
|
return starts_with(item->string, prefix);
|
2012-09-12 16:04:44 +02:00
|
|
|
}
|
|
|
|
|
add an extra level of indirection to main()
There are certain startup tasks that we expect every git
process to do. In some cases this is just to improve the
quality of the program (e.g., setting up gettext()). In
others it is a requirement for using certain functions in
libgit.a (e.g., system_path() expects that you have called
git_extract_argv0_path()).
Most commands are builtins and are covered by the git.c
version of main(). However, there are still a few external
commands that use their own main(). Each of these has to
remember to include the correct startup sequence, and we are
not always consistent.
Rather than just fix the inconsistencies, let's make this
harder to get wrong by providing a common main() that can
run this standard startup.
We basically have two options to do this:
- the compat/mingw.h file already does something like this by
adding a #define that replaces the definition of main with a
wrapper that calls mingw_startup().
The upside is that the code in each program doesn't need
to be changed at all; it's rewritten on the fly by the
preprocessor.
The downside is that it may make debugging of the startup
sequence a bit more confusing, as the preprocessor is
quietly inserting new code.
- the builtin functions are all of the form cmd_foo(),
and git.c's main() calls them.
This is much more explicit, which may make things more
obvious to somebody reading the code. It's also more
flexible (because of course we have to figure out _which_
cmd_foo() to call).
The downside is that each of the builtins must define
cmd_foo(), instead of just main().
This patch chooses the latter option, preferring the more
explicit approach, even though it is more invasive. We
introduce a new file common-main.c, with the "real" main. It
expects to call cmd_main() from whatever other objects it is
linked against.
We link common-main.o against anything that links against
libgit.a, since we know that such programs will need to do
this setup. Note that common-main.o can't actually go inside
libgit.a, as the linker would not pick up its main()
function automatically (it has no callers).
The rest of the patch is just adjusting all of the various
external programs (mostly in t/helper) to use cmd_main().
I've provided a global declaration for cmd_main(), which
means that all of the programs also need to match its
signature. In particular, many functions need to switch to
"const char **" instead of "char **" for argv. This effect
ripples out to a few other variables and functions, as well.
This makes the patch even more invasive, but the end result
is much better. We should be treating argv strings as const
anyway, and now all programs conform to the same signature
(which also matches the way builtins are defined).
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2016-07-01 07:58:58 +02:00
|
|
|
int cmd_main(int argc, const char **argv)
|
2012-09-12 16:04:43 +02:00
|
|
|
{
|
|
|
|
if (argc == 5 && !strcmp(argv[1], "split")) {
|
|
|
|
struct string_list list = STRING_LIST_INIT_DUP;
|
|
|
|
int i;
|
|
|
|
const char *s = argv[2];
|
|
|
|
int delim = *argv[3];
|
|
|
|
int maxsplit = atoi(argv[4]);
|
|
|
|
|
|
|
|
i = string_list_split(&list, s, delim, maxsplit);
|
|
|
|
printf("%d\n", i);
|
|
|
|
write_list(&list);
|
|
|
|
string_list_clear(&list, 0);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argc == 5 && !strcmp(argv[1], "split_in_place")) {
|
|
|
|
struct string_list list = STRING_LIST_INIT_NODUP;
|
|
|
|
int i;
|
|
|
|
char *s = xstrdup(argv[2]);
|
|
|
|
int delim = *argv[3];
|
|
|
|
int maxsplit = atoi(argv[4]);
|
|
|
|
|
|
|
|
i = string_list_split_in_place(&list, s, delim, maxsplit);
|
|
|
|
printf("%d\n", i);
|
|
|
|
write_list(&list);
|
|
|
|
string_list_clear(&list, 0);
|
|
|
|
free(s);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-09-12 16:04:44 +02:00
|
|
|
if (argc == 4 && !strcmp(argv[1], "filter")) {
|
|
|
|
/*
|
|
|
|
* Retain only the items that have the specified prefix.
|
|
|
|
* Arguments: list|- prefix
|
|
|
|
*/
|
|
|
|
struct string_list list = STRING_LIST_INIT_DUP;
|
|
|
|
const char *prefix = argv[3];
|
|
|
|
|
|
|
|
parse_string_list(&list, argv[2]);
|
|
|
|
filter_string_list(&list, 0, prefix_cb, (void *)prefix);
|
|
|
|
write_list_compact(&list);
|
|
|
|
string_list_clear(&list, 0);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-09-12 16:04:45 +02:00
|
|
|
if (argc == 3 && !strcmp(argv[1], "remove_duplicates")) {
|
|
|
|
struct string_list list = STRING_LIST_INIT_DUP;
|
|
|
|
|
|
|
|
parse_string_list(&list, argv[2]);
|
|
|
|
string_list_remove_duplicates(&list, 0);
|
|
|
|
write_list_compact(&list);
|
|
|
|
string_list_clear(&list, 0);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-01-22 18:53:57 +01:00
|
|
|
if (argc == 2 && !strcmp(argv[1], "sort")) {
|
|
|
|
struct string_list list = STRING_LIST_INIT_NODUP;
|
|
|
|
struct strbuf sb = STRBUF_INIT;
|
|
|
|
struct string_list_item *item;
|
|
|
|
|
|
|
|
strbuf_read(&sb, 0, 0);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Split by newline, but don't create a string_list item
|
|
|
|
* for the empty string after the last separator.
|
|
|
|
*/
|
2017-10-03 16:36:40 +02:00
|
|
|
if (sb.len && sb.buf[sb.len - 1] == '\n')
|
2017-01-22 18:53:57 +01:00
|
|
|
strbuf_setlen(&sb, sb.len - 1);
|
|
|
|
string_list_split_in_place(&list, sb.buf, '\n', -1);
|
|
|
|
|
|
|
|
string_list_sort(&list);
|
|
|
|
|
|
|
|
for_each_string_list_item(item, &list)
|
|
|
|
puts(item->string);
|
|
|
|
|
|
|
|
string_list_clear(&list, 0);
|
|
|
|
strbuf_release(&sb);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-09-12 16:04:43 +02:00
|
|
|
fprintf(stderr, "%s: unknown function name: %s\n", argv[0],
|
|
|
|
argv[1] ? argv[1] : "(there was none)");
|
|
|
|
return 1;
|
|
|
|
}
|