From: Linus Arver <linusa@xxxxxxxxxx> This is a preparatory refactor for deprecating "new_trailer_item" from the API. Instead of preserving the where/if_exists/if_missing information inside the new_trailer_item struct in parse_trailers_from_command_line_args() (only to look inside it again later on in trailer_add_arg_item()), pass this information directly as a trailer_conf which trailer_add_arg_item() already knows how to handle. This reduces the number of parameters we have to pass to trailer_add_arg_item() without any behavioral change. In the next patch we'll be able to delete "new_trailer_item" altogether. Signed-off-by: Linus Arver <linusa@xxxxxxxxxx> --- trailer.c | 29 +++++++++++++++++------------ trailer.h | 3 +-- 2 files changed, 18 insertions(+), 14 deletions(-) diff --git a/trailer.c b/trailer.c index 9b8cb94c021..6ab5cf7e5d7 100644 --- a/trailer.c +++ b/trailer.c @@ -729,21 +729,12 @@ static struct trailer_item *add_trailer_item(struct list_head *head, char *tok, } void trailer_add_arg_item(struct list_head *arg_head, char *tok, char *val, - const struct trailer_conf *conf, - const struct new_trailer_item *new_trailer_item) + const struct trailer_conf *conf) { struct arg_item *new_item = xcalloc(1, sizeof(*new_item)); new_item->token = tok; new_item->value = val; duplicate_trailer_conf(&new_item->conf, conf); - if (new_trailer_item) { - if (new_trailer_item->where != WHERE_DEFAULT) - new_item->conf.where = new_trailer_item->where; - if (new_trailer_item->if_exists != EXISTS_DEFAULT) - new_item->conf.if_exists = new_trailer_item->if_exists; - if (new_trailer_item->if_missing != MISSING_DEFAULT) - new_item->conf.if_missing = new_trailer_item->if_missing; - } list_add_tail(&new_item->list, arg_head); } @@ -759,7 +750,7 @@ void parse_trailers_from_config(struct list_head *config_head) trailer_add_arg_item(config_head, xstrdup(token_from_item(item, NULL)), xstrdup(""), - &item->conf, NULL); + &item->conf); } } @@ -791,11 +782,25 @@ void parse_trailers_from_command_line_args(struct list_head *arg_head, (int) sb.len, sb.buf); strbuf_release(&sb); } else { + struct trailer_conf *conf_current = new_trailer_conf(); parse_trailer(tr->text, separator_pos, &tok, &val, &conf); + duplicate_trailer_conf(conf_current, conf); + + /* + * Override conf_current with settings specified via CLI flags. + */ + if (tr->where != WHERE_DEFAULT) + trailer_set_conf_where(tr->where, conf_current); + if (tr->if_exists != EXISTS_DEFAULT) + trailer_set_conf_if_exists(tr->if_exists, conf_current); + if (tr->if_missing != MISSING_DEFAULT) + trailer_set_conf_if_missing(tr->if_missing, conf_current); + trailer_add_arg_item(arg_head, strbuf_detach(&tok, NULL), strbuf_detach(&val, NULL), - conf, tr); + conf_current); + free_trailer_conf(conf_current); } } diff --git a/trailer.h b/trailer.h index a2569c10451..32fc93beb33 100644 --- a/trailer.h +++ b/trailer.h @@ -55,8 +55,7 @@ void duplicate_trailer_conf(struct trailer_conf *dst, const struct trailer_conf *src); const char *trailer_default_separators(void); void trailer_add_arg_item(struct list_head *arg_head, char *tok, char *val, - const struct trailer_conf *conf, - const struct new_trailer_item *new_trailer_item); + const struct trailer_conf *conf); struct process_trailer_options { int in_place; -- gitgitgadget