mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-24 03:48:10 +01:00
cli: add utility routine to print error status.
No attention to formatting here, initially just focus on getting the relevant strings out of the library.
This commit is contained in:
parent
d4321162ae
commit
39c54df26d
3 changed files with 31 additions and 0 deletions
|
@ -271,6 +271,7 @@ dataclean: distclean
|
||||||
notmuch_client_srcs = \
|
notmuch_client_srcs = \
|
||||||
command-line-arguments.c\
|
command-line-arguments.c\
|
||||||
debugger.c \
|
debugger.c \
|
||||||
|
status.c \
|
||||||
gmime-filter-reply.c \
|
gmime-filter-reply.c \
|
||||||
hooks.c \
|
hooks.c \
|
||||||
notmuch.c \
|
notmuch.c \
|
||||||
|
|
|
@ -449,6 +449,15 @@ notmuch_database_dump (notmuch_database_t *notmuch,
|
||||||
dump_format_t output_format,
|
dump_format_t output_format,
|
||||||
notmuch_bool_t gzip_output);
|
notmuch_bool_t gzip_output);
|
||||||
|
|
||||||
|
/* If status is non-zero (i.e. error) print appropriate
|
||||||
|
messages to stderr.
|
||||||
|
*/
|
||||||
|
|
||||||
|
notmuch_status_t
|
||||||
|
print_status_query (const char *loc,
|
||||||
|
const notmuch_query_t *query,
|
||||||
|
notmuch_status_t status);
|
||||||
|
|
||||||
#include "command-line-arguments.h"
|
#include "command-line-arguments.h"
|
||||||
|
|
||||||
extern char *notmuch_requested_db_uuid;
|
extern char *notmuch_requested_db_uuid;
|
||||||
|
|
21
status.c
Normal file
21
status.c
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
#include "notmuch-client.h"
|
||||||
|
|
||||||
|
notmuch_status_t
|
||||||
|
print_status_query (const char *loc,
|
||||||
|
const notmuch_query_t *query,
|
||||||
|
notmuch_status_t status)
|
||||||
|
{
|
||||||
|
if (status) {
|
||||||
|
const char *msg;
|
||||||
|
notmuch_database_t *notmuch;
|
||||||
|
|
||||||
|
fprintf (stderr, "%s: %s\n", loc,
|
||||||
|
notmuch_status_to_string (status));
|
||||||
|
|
||||||
|
notmuch = notmuch_query_get_database (query);
|
||||||
|
msg = notmuch_database_status_string (notmuch);
|
||||||
|
if (msg)
|
||||||
|
fputs (msg, stderr);
|
||||||
|
}
|
||||||
|
return status;
|
||||||
|
}
|
Loading…
Reference in a new issue