unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
blob 2c6beabc43597c6bb205bc005c480e23b370e2c0 2305 bytes (raw)
name: lib/mailstore.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
 
/* mailstore.c - mail storage backends
 *
 * Copyright © 2009 Carl Worth
 *
 * 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/ .
 */

#include <stdio.h>

#include "notmuch-private.h"

typedef struct _notmuch_mailstore {
    FILE *(*open) (struct _notmuch_mailstore *mailstore, const char *filename);
    int (*rename) (struct _notmuch_mailstore *mailstore, const char *old_filename,
		   const char *new_filename);
} _notmuch_mailstore;

static FILE *
_maildir_open_function (unused (notmuch_mailstore_t *mailstore),
			const char *filename)
{
    return fopen (filename, "r");
}

static int
_maildir_rename_function (unused (notmuch_mailstore_t *mailstore),
			  const char *old_filename, const char *new_filename)
{
    return rename (old_filename, new_filename);
}

/* A mailstore is defined as:
 *
 * - A function used to "open" a mail message. This takes the
 *   "filename" for the file and should return a FILE *.
 *
 * - A function to "rename" a mail message, which is currently only
 *   used in tags_to_maildir_flags.
 *
 * - TODO: A way to scan for new messages?
 *
 * - TODO: A "constructor"?
 */
_notmuch_mailstore
notmuch_mailstore_maildir = { _maildir_open_function, _maildir_rename_function };

_notmuch_mailstore *
notmuch_mailstore_get_by_name (const char *name)
{
    if (strcmp (name, "maildir") == 0)
	return &notmuch_mailstore_maildir;

    return NULL;
}

FILE *
notmuch_mailstore_open (notmuch_mailstore_t *mailstore, const char *filename)
{
    return mailstore->open (mailstore, filename);
}

int
notmuch_mailstore_rename (notmuch_mailstore_t *mailstore, const char *old_filename,
			  const char *new_filename)
{
    return mailstore->rename (mailstore, old_filename, new_filename);
}

debug log:

solving 2c6beab ...
found 2c6beab in https://yhetil.org/notmuch/1329343326-16410-10-git-send-email-glasse@cs.rpi.edu/
found 290da70 in https://yhetil.org/notmuch/1329343326-16410-3-git-send-email-glasse@cs.rpi.edu/

applying [1/2] https://yhetil.org/notmuch/1329343326-16410-3-git-send-email-glasse@cs.rpi.edu/
diff --git a/lib/mailstore.c b/lib/mailstore.c
new file mode 100644
index 0000000..290da70


applying [2/2] https://yhetil.org/notmuch/1329343326-16410-10-git-send-email-glasse@cs.rpi.edu/
diff --git a/lib/mailstore.c b/lib/mailstore.c
index 290da70..2c6beab 100644

Checking patch lib/mailstore.c...
Applied patch lib/mailstore.c cleanly.
Checking patch lib/mailstore.c...
Applied patch lib/mailstore.c cleanly.

index at:
100644 2c6beabc43597c6bb205bc005c480e23b370e2c0	lib/mailstore.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).