2014-10-13 20:16:29 +02:00
|
|
|
/*
|
|
|
|
* Builtin "git interpret-trailers"
|
|
|
|
*
|
|
|
|
* Copyright (c) 2013, 2014 Christian Couder <chriscool@tuxfamily.org>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "cache.h"
|
|
|
|
#include "builtin.h"
|
|
|
|
#include "parse-options.h"
|
|
|
|
#include "string-list.h"
|
|
|
|
#include "trailer.h"
|
|
|
|
|
|
|
|
static const char * const git_interpret_trailers_usage[] = {
|
2016-01-14 17:57:55 +01:00
|
|
|
N_("git interpret-trailers [--in-place] [--trim-empty] [(--trailer <token>[(=|:)<value>])...] [<file>...]"),
|
2014-10-13 20:16:29 +02:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2017-08-01 11:03:31 +02:00
|
|
|
static void new_trailers_clear(struct list_head *trailers)
|
|
|
|
{
|
|
|
|
struct list_head *pos, *tmp;
|
|
|
|
struct new_trailer_item *item;
|
|
|
|
|
|
|
|
list_for_each_safe(pos, tmp, trailers) {
|
|
|
|
item = list_entry(pos, struct new_trailer_item, list);
|
|
|
|
list_del(pos);
|
|
|
|
free(item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int option_parse_trailer(const struct option *opt,
|
|
|
|
const char *arg, int unset)
|
|
|
|
{
|
|
|
|
struct list_head *trailers = opt->value;
|
|
|
|
struct new_trailer_item *item;
|
|
|
|
|
|
|
|
if (unset) {
|
|
|
|
new_trailers_clear(trailers);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!arg)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
item = xmalloc(sizeof(*item));
|
|
|
|
item->text = arg;
|
|
|
|
list_add_tail(&item->list, trailers);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-10-13 20:16:29 +02:00
|
|
|
int cmd_interpret_trailers(int argc, const char **argv, const char *prefix)
|
|
|
|
{
|
2016-01-14 17:57:55 +01:00
|
|
|
int in_place = 0;
|
2014-10-13 20:16:29 +02:00
|
|
|
int trim_empty = 0;
|
2017-08-01 11:03:31 +02:00
|
|
|
LIST_HEAD(trailers);
|
2014-10-13 20:16:29 +02:00
|
|
|
|
|
|
|
struct option options[] = {
|
2016-01-14 17:57:55 +01:00
|
|
|
OPT_BOOL(0, "in-place", &in_place, N_("edit files in place")),
|
2014-10-13 20:16:29 +02:00
|
|
|
OPT_BOOL(0, "trim-empty", &trim_empty, N_("trim empty trailers")),
|
2017-08-01 11:03:31 +02:00
|
|
|
|
|
|
|
OPT_CALLBACK(0, "trailer", &trailers, N_("trailer"),
|
|
|
|
N_("trailer(s) to add"), option_parse_trailer),
|
2014-10-13 20:16:29 +02:00
|
|
|
OPT_END()
|
|
|
|
};
|
|
|
|
|
|
|
|
argc = parse_options(argc, argv, prefix, options,
|
|
|
|
git_interpret_trailers_usage, 0);
|
|
|
|
|
|
|
|
if (argc) {
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < argc; i++)
|
2016-01-14 17:57:55 +01:00
|
|
|
process_trailers(argv[i], in_place, trim_empty, &trailers);
|
|
|
|
} else {
|
|
|
|
if (in_place)
|
|
|
|
die(_("no input file given for in-place editing"));
|
|
|
|
process_trailers(NULL, in_place, trim_empty, &trailers);
|
|
|
|
}
|
2014-10-13 20:16:29 +02:00
|
|
|
|
2017-08-01 11:03:31 +02:00
|
|
|
new_trailers_clear(&trailers);
|
2014-10-13 20:16:29 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|