unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
blob fc32044ea40310e6fedf7d9c53a1e2a2ac3f8f98 1896 bytes (raw)
name: notmuch-hook.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
 
/* notmuch - Not much of an email program, (just index and search)
 *
 * This file is part of notmuch.
 *
 * Copyright © 2011 Jani Nikula
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see http://www.gnu.org/licenses/ .
 *
 * Author: Jani Nikula <jani@nikula.org>
 */

#include "notmuch-client.h"

int
notmuch_run_hook (const char *db_path, const char *hook)
{
    char *hook_path;
    int status = 0;

    if (asprintf (&hook_path, "%s/%s/%s/%s", db_path, ".notmuch", "hooks",
		  hook) == -1)
	return NOTMUCH_STATUS_OUT_OF_MEMORY;

    if (access (hook_path, X_OK) == -1) {
	/* Ignore ENOENT. It's okay not to have a hook, hook dir, or even
	 * notmuch dir. Dangling symbolic links also result in ENOENT, but
	 * we'll ignore that too for simplicity. */
	if (errno != ENOENT) {
	    fprintf (stderr, "Error: %s hook access failed: %s\n", hook,
		     strerror (errno));
	    status = NOTMUCH_STATUS_FILE_ERROR;
	}
	goto DONE;
    }

    status = system (hook_path);
    if (status) {
	if (WIFSIGNALED(status))
	    fprintf(stderr, "Error: %s hook terminated with signal %d\n", hook,
		    WTERMSIG(status));
	else
	    fprintf(stderr, "Error: %s hook failed with status %d\n", hook,
		    WEXITSTATUS(status));

	status = NOTMUCH_STATUS_FILE_ERROR; /* Close enough */
    }

  DONE:
    free (hook_path);

    return status;
}

debug log:

solving fc32044 ...
found fc32044 in https://yhetil.org/notmuch/6688b09fffa2a66b496af78008102f88ab4e9450.1322953841.git.jani@nikula.org/

applying [1/1] https://yhetil.org/notmuch/6688b09fffa2a66b496af78008102f88ab4e9450.1322953841.git.jani@nikula.org/
diff --git a/notmuch-hook.c b/notmuch-hook.c
new file mode 100644
index 0000000..fc32044

Checking patch notmuch-hook.c...
Applied patch notmuch-hook.c cleanly.

index at:
100644 fc32044ea40310e6fedf7d9c53a1e2a2ac3f8f98	notmuch-hook.c

(*) 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.^

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).