t3502: validate '-m 1' argument is now accepted for non-merge commits
[git.git] / builtin / interpret-trailers.c
blob8ae40dec4746571cf80d2f76bbad067c33a972fa
1 /*
2 * Builtin "git interpret-trailers"
4 * Copyright (c) 2013, 2014 Christian Couder <chriscool@tuxfamily.org>
6 */
8 #include "cache.h"
9 #include "builtin.h"
10 #include "parse-options.h"
11 #include "string-list.h"
12 #include "trailer.h"
14 static const char * const git_interpret_trailers_usage[] = {
15 N_("git interpret-trailers [--in-place] [--trim-empty] [(--trailer <token>[(=|:)<value>])...] [<file>...]"),
16 NULL
19 static enum trailer_where where;
20 static enum trailer_if_exists if_exists;
21 static enum trailer_if_missing if_missing;
23 static int option_parse_where(const struct option *opt,
24 const char *arg, int unset)
26 return trailer_set_where(&where, arg);
29 static int option_parse_if_exists(const struct option *opt,
30 const char *arg, int unset)
32 return trailer_set_if_exists(&if_exists, arg);
35 static int option_parse_if_missing(const struct option *opt,
36 const char *arg, int unset)
38 return trailer_set_if_missing(&if_missing, arg);
41 static void new_trailers_clear(struct list_head *trailers)
43 struct list_head *pos, *tmp;
44 struct new_trailer_item *item;
46 list_for_each_safe(pos, tmp, trailers) {
47 item = list_entry(pos, struct new_trailer_item, list);
48 list_del(pos);
49 free(item);
53 static int option_parse_trailer(const struct option *opt,
54 const char *arg, int unset)
56 struct list_head *trailers = opt->value;
57 struct new_trailer_item *item;
59 if (unset) {
60 new_trailers_clear(trailers);
61 return 0;
64 if (!arg)
65 return -1;
67 item = xmalloc(sizeof(*item));
68 item->text = arg;
69 item->where = where;
70 item->if_exists = if_exists;
71 item->if_missing = if_missing;
72 list_add_tail(&item->list, trailers);
73 return 0;
76 static int parse_opt_parse(const struct option *opt, const char *arg,
77 int unset)
79 struct process_trailer_options *v = opt->value;
80 v->only_trailers = 1;
81 v->only_input = 1;
82 v->unfold = 1;
83 BUG_ON_OPT_NEG(unset);
84 BUG_ON_OPT_ARG(arg);
85 return 0;
88 int cmd_interpret_trailers(int argc, const char **argv, const char *prefix)
90 struct process_trailer_options opts = PROCESS_TRAILER_OPTIONS_INIT;
91 LIST_HEAD(trailers);
93 struct option options[] = {
94 OPT_BOOL(0, "in-place", &opts.in_place, N_("edit files in place")),
95 OPT_BOOL(0, "trim-empty", &opts.trim_empty, N_("trim empty trailers")),
97 OPT_CALLBACK(0, "where", NULL, N_("action"),
98 N_("where to place the new trailer"), option_parse_where),
99 OPT_CALLBACK(0, "if-exists", NULL, N_("action"),
100 N_("action if trailer already exists"), option_parse_if_exists),
101 OPT_CALLBACK(0, "if-missing", NULL, N_("action"),
102 N_("action if trailer is missing"), option_parse_if_missing),
104 OPT_BOOL(0, "only-trailers", &opts.only_trailers, N_("output only the trailers")),
105 OPT_BOOL(0, "only-input", &opts.only_input, N_("do not apply config rules")),
106 OPT_BOOL(0, "unfold", &opts.unfold, N_("join whitespace-continued values")),
107 { OPTION_CALLBACK, 0, "parse", &opts, NULL, N_("set parsing options"),
108 PARSE_OPT_NOARG | PARSE_OPT_NONEG, parse_opt_parse },
109 OPT_BOOL(0, "no-divider", &opts.no_divider, N_("do not treat --- specially")),
110 OPT_CALLBACK(0, "trailer", &trailers, N_("trailer"),
111 N_("trailer(s) to add"), option_parse_trailer),
112 OPT_END()
115 argc = parse_options(argc, argv, prefix, options,
116 git_interpret_trailers_usage, 0);
118 if (opts.only_input && !list_empty(&trailers))
119 usage_msg_opt(
120 _("--trailer with --only-input does not make sense"),
121 git_interpret_trailers_usage,
122 options);
124 if (argc) {
125 int i;
126 for (i = 0; i < argc; i++)
127 process_trailers(argv[i], &opts, &trailers);
128 } else {
129 if (opts.in_place)
130 die(_("no input file given for in-place editing"));
131 process_trailers(NULL, &opts, &trailers);
134 new_trailers_clear(&trailers);
136 return 0;