notmuch.git  about / heads / tags
Unnamed repository; edit this file 'description' to name the repository.
blob 09d82a172ba8315aa5184db0aa6bedfa6651b180 1927 bytes (raw)
name: status.c 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
 
#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;
}

notmuch_status_t
print_status_message (const char *loc,
		      const notmuch_message_t *message,
		      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_message_get_database (message);
	msg = notmuch_database_status_string (notmuch);
	if (msg)
	    fputs (msg, stderr);
    }
    return status;
}

notmuch_status_t
print_status_database (const char *loc,
		       const notmuch_database_t *notmuch,
		       notmuch_status_t status)
{
    if (status) {
	const char *msg;

	fprintf (stderr, "%s: %s\n", loc,
		 notmuch_status_to_string (status));
	msg = notmuch_database_status_string (notmuch);
	if (msg)
	    fputs (msg, stderr);
    }
    return status;
}

int
status_to_exit (notmuch_status_t status)
{
    switch (status) {
    case NOTMUCH_STATUS_SUCCESS:
	return EXIT_SUCCESS;
    case NOTMUCH_STATUS_OUT_OF_MEMORY:
    case NOTMUCH_STATUS_XAPIAN_EXCEPTION:
    case NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID:
    case NOTMUCH_STATUS_FILE_ERROR:
	return EX_TEMPFAIL;
    default:
	return EXIT_FAILURE;
    }
}

notmuch_status_t
print_status_gzbytes (const char *loc, gzFile file, int bytes)
{
    if (bytes <= 0) {
	int errnum;
	const char *errstr = gzerror (file, &errnum);
	fprintf (stderr, "%s: zlib error %s (%d)\n", loc, errstr, errnum);
	return NOTMUCH_STATUS_FILE_ERROR;
    } else {
	return NOTMUCH_STATUS_SUCCESS;
    }
}


(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

git clone https://yhetil.org/notmuch.git