Skip to content

Commit bf285ae

Browse files
peffgitster
authored andcommitted
ref-filter: move need_color_reset_at_eol into ref_format
Calling verify_ref_format() doesn't just confirm that the format is sane; it actually sets some global variables that will be used later when formatting the refs. These logically should belong to the ref_format, which would make it possible to use multiple formats within a single program invocation. Let's move one such flag into the ref_format struct. There are still others that would need to be moved before it would be safe to use multiple formats, but this commit gives a blueprint for how that should look. Signed-off-by: Jeff King <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 4a68e36 commit bf285ae

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

ref-filter.c

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,6 @@ static struct used_atom {
9797
} u;
9898
} *used_atom;
9999
static int used_atom_cnt, need_tagged, need_symref;
100-
static int need_color_reset_at_eol;
101100

102101
static void color_atom_parser(struct used_atom *atom, const char *color_value)
103102
{
@@ -661,7 +660,7 @@ int verify_ref_format(struct ref_format *format)
661660
{
662661
const char *cp, *sp;
663662

664-
need_color_reset_at_eol = 0;
663+
format->need_color_reset_at_eol = 0;
665664
for (cp = format->format; *cp && (sp = find_next(cp)); ) {
666665
const char *color, *ep = strchr(sp, ')');
667666
int at;
@@ -673,7 +672,7 @@ int verify_ref_format(struct ref_format *format)
673672
cp = ep + 1;
674673

675674
if (skip_prefix(used_atom[at].name, "color:", &color))
676-
need_color_reset_at_eol = !!strcmp(color, "reset");
675+
format->need_color_reset_at_eol = !!strcmp(color, "reset");
677676
}
678677
return 0;
679678
}
@@ -2083,7 +2082,7 @@ void format_ref_array_item(struct ref_array_item *info,
20832082
sp = cp + strlen(cp);
20842083
append_literal(cp, sp, &state);
20852084
}
2086-
if (need_color_reset_at_eol) {
2085+
if (format->need_color_reset_at_eol) {
20872086
struct atom_value resetv;
20882087
resetv.s = GIT_COLOR_RESET;
20892088
append_atom(&resetv, &state);

ref-filter.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,9 @@ struct ref_format {
7979
*/
8080
const char *format;
8181
int quote_style;
82+
83+
/* Internal state to ref-filter */
84+
int need_color_reset_at_eol;
8285
};
8386

8487
#define REF_FORMAT_INIT { NULL, 0 }

0 commit comments

Comments
 (0)