summaryrefslogtreecommitdiffstats
path: root/color.c
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2018-12-25 18:00:14 -0500
committerTavian Barnes <tavianator@tavianator.com>2019-01-02 16:33:02 -0500
commit7fc7e98df2ea9c34dd1e0cb188554bed933a16df (patch)
tree6318a0afd2da2b2343a361e8abbc3896cd10a5a4 /color.c
parentebcef71ef803940bff9ceb2c8d3ac5a1018bc084 (diff)
downloadbfs-7fc7e98df2ea9c34dd1e0cb188554bed933a16df.tar.xz
diag: Unify diagnostic formatting
This adds a bfs: prefix to error/warning messages for consistency with other command line tools, and leaves only the "error:"/"warning:" part colored like GCC. It also uniformly adds full stops after messages.
Diffstat (limited to 'color.c')
-rw-r--r--color.c45
1 files changed, 22 insertions, 23 deletions
diff --git a/color.c b/color.c
index 1d0fa30..9a19990 100644
--- a/color.c
+++ b/color.c
@@ -473,58 +473,61 @@ done:
}
int cfprintf(CFILE *cfile, const char *format, ...) {
+ va_list args;
+ va_start(args, format);
+ int ret = cvfprintf(cfile, format, args);
+ va_end(args);
+ return ret;
+}
+
+int cvfprintf(CFILE *cfile, const char *format, va_list args) {
const struct colors *colors = cfile->colors;
FILE *file = cfile->file;
-
- int ret = -1;
int error = errno;
- va_list args;
- va_start(args, format);
-
for (const char *i = format; *i; ++i) {
const char *percent = strchr(i, '%');
if (!percent) {
if (fputs(i, file) == EOF) {
- goto done;
+ return -1;
}
break;
}
size_t len = percent - i;
if (fwrite(i, 1, len, file) != len) {
- goto done;
+ return -1;
}
i = percent + 1;
switch (*i) {
case '%':
if (fputc('%', file) == EOF) {
- goto done;
+ return -1;
}
break;
case 'c':
if (fputc(va_arg(args, int), file) == EOF) {
- goto done;
+ return -1;
}
break;
case 'd':
if (fprintf(file, "%d", va_arg(args, int)) < 0) {
- goto done;
+ return -1;
}
break;
case 'g':
if (fprintf(file, "%g", va_arg(args, double)) < 0) {
- goto done;
+ return -1;
}
break;
case 's':
if (fputs(va_arg(args, const char *), file) == EOF) {
- goto done;
+ return -1;
}
break;
@@ -534,25 +537,25 @@ int cfprintf(CFILE *cfile, const char *format, ...) {
goto invalid;
}
if (fprintf(file, "%zu", va_arg(args, size_t)) < 0) {
- goto done;
+ return -1;
}
break;
case 'm':
if (fputs(strerror(error), file) == EOF) {
- goto done;
+ return -1;
}
break;
case 'P':
if (print_path(cfile, va_arg(args, const struct BFTW *)) != 0) {
- goto done;
+ return -1;
}
break;
case 'L':
if (print_link(cfile, va_arg(args, const struct BFTW *)) != 0) {
- goto done;
+ return -1;
}
break;
@@ -578,7 +581,7 @@ int cfprintf(CFILE *cfile, const char *format, ...) {
}
if (*esc) {
if (print_esc(*esc, file) != 0) {
- goto done;
+ return -1;
}
}
@@ -590,13 +593,9 @@ int cfprintf(CFILE *cfile, const char *format, ...) {
invalid:
assert(false);
errno = EINVAL;
- goto done;
+ return -1;
}
}
- ret = 0;
-
-done:
- va_end(args);
- return ret;
+ return 0;
}