Skip to content

Commit 18568ee

Browse files
avargitster
authored andcommitted
usage.c: add a die_message() routine
We have code in various places that would like to call die(), but wants to defer the exit(128) it would invoke, e.g. to print an additional message, or adjust the exit code. Add a die_message() helper routine to bridge this gap in the API. Functionally this behaves just like the error() routine, except it'll print a "fatal: " prefix, and it will return with 128 instead of -1, this is so that caller can pass the return value to "exit()", instead of having to hardcode "exit(128)". Note that as with the other routines the "die_message_builtin" needs to return "void" and otherwise conform to the "report_fn" signature. As we'll see in a subsequent commit callers will want to replace e.g. their default "die_routine" with a "die_message_routine". For now we're just adding the routine and making die_builtin() in usage.c itself use it. In order to do that we need to add a get_die_message_routine() function, which works like the other get_*_routine() functions in usage.c. There is no set_die_message_rotine(), as it hasn't been needed yet. We can add it if we ever need it. Signed-off-by: Ævar Arnfjörð Bjarmason <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent abe6bb3 commit 18568ee

File tree

2 files changed

+27
-3
lines changed

2 files changed

+27
-3
lines changed

git-compat-util.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -479,6 +479,7 @@ NORETURN void usage(const char *err);
479479
NORETURN void usagef(const char *err, ...) __attribute__((format (printf, 1, 2)));
480480
NORETURN void die(const char *err, ...) __attribute__((format (printf, 1, 2)));
481481
NORETURN void die_errno(const char *err, ...) __attribute__((format (printf, 1, 2)));
482+
int die_message(const char *err, ...) __attribute__((format (printf, 1, 2)));
482483
int error(const char *err, ...) __attribute__((format (printf, 1, 2)));
483484
int error_errno(const char *err, ...) __attribute__((format (printf, 1, 2)));
484485
void warning(const char *err, ...) __attribute__((format (printf, 1, 2)));
@@ -513,6 +514,7 @@ static inline int const_error(void)
513514
typedef void (*report_fn)(const char *, va_list params);
514515

515516
void set_die_routine(NORETURN_PTR report_fn routine);
517+
report_fn get_die_message_routine(void);
516518
void set_error_routine(report_fn routine);
517519
report_fn get_error_routine(void);
518520
void set_warn_routine(report_fn routine);

usage.c

Lines changed: 25 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,17 +55,22 @@ static NORETURN void usage_builtin(const char *err, va_list params)
5555
exit(129);
5656
}
5757

58+
static void die_message_builtin(const char *err, va_list params)
59+
{
60+
trace2_cmd_error_va(err, params);
61+
vreportf("fatal: ", err, params);
62+
}
63+
5864
/*
5965
* We call trace2_cmd_error_va() in the below functions first and
6066
* expect it to va_copy 'params' before using it (because an 'ap' can
6167
* only be walked once).
6268
*/
6369
static NORETURN void die_builtin(const char *err, va_list params)
6470
{
65-
trace2_cmd_error_va(err, params);
66-
67-
vreportf("fatal: ", err, params);
71+
report_fn die_message_fn = get_die_message_routine();
6872

73+
die_message_fn(err, params);
6974
exit(128);
7075
}
7176

@@ -109,6 +114,7 @@ static int die_is_recursing_builtin(void)
109114
* (ugh), so keep things static. */
110115
static NORETURN_PTR report_fn usage_routine = usage_builtin;
111116
static NORETURN_PTR report_fn die_routine = die_builtin;
117+
static report_fn die_message_routine = die_message_builtin;
112118
static report_fn error_routine = error_builtin;
113119
static report_fn warn_routine = warn_builtin;
114120
static int (*die_is_recursing)(void) = die_is_recursing_builtin;
@@ -118,6 +124,11 @@ void set_die_routine(NORETURN_PTR report_fn routine)
118124
die_routine = routine;
119125
}
120126

127+
report_fn get_die_message_routine(void)
128+
{
129+
return die_message_routine;
130+
}
131+
121132
void set_error_routine(report_fn routine)
122133
{
123134
error_routine = routine;
@@ -211,6 +222,17 @@ void NORETURN die_errno(const char *fmt, ...)
211222
va_end(params);
212223
}
213224

225+
#undef die_message
226+
int die_message(const char *err, ...)
227+
{
228+
va_list params;
229+
230+
va_start(params, err);
231+
die_message_routine(err, params);
232+
va_end(params);
233+
return 128;
234+
}
235+
214236
#undef error_errno
215237
int error_errno(const char *fmt, ...)
216238
{

0 commit comments

Comments
 (0)