unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
blob 51c2710e05087c987c58cd97bf72f2ce88649bf0 3511 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
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
 
/* 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 <stdarg.h>

#include "notmuch-private.h"

typedef struct _notmuch_mailstore {
    notmuch_status_t (*constructor) (void **data, va_list args);
    FILE *(*open) (struct _notmuch_mailstore *mailstore, const char *filename);
    int (*close) (struct _notmuch_mailstore *mailstore, FILE *);
    int (*rename) (struct _notmuch_mailstore *mailstore, const char *old_filename,
		   const char *new_filename);
    void *data;
} _notmuch_mailstore;

static notmuch_status_t
_maildir_constructor (void **data, unused (va_list ap))
{
    (*data) = NULL;
    return NOTMUCH_STATUS_SUCCESS;
}

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

static int
_maildir_close_function (unused (notmuch_mailstore_t *mailstore),
			 FILE *file)
{
    return fclose (file);
}

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.
 *
 * - A "constructor" that creates a mailstore object of the requisite
 *   type. Arguments are passed via va_args.
 *
 * A mailstore also has a "data" field that can be used to store
 * instance-specific information about this mailstore -- for example,
 * a CouchDB URL or a path. FIXME: mailstores are all statically
 * allocated, so maybe we shouldn't do this.
 */
_notmuch_mailstore
notmuch_mailstore_maildir = { _maildir_constructor,
			      _maildir_open_function, _maildir_close_function,
			      _maildir_rename_function,
			      NULL };

_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);
}

int
notmuch_mailstore_close (notmuch_mailstore_t *mailstore, FILE *file)
{
    return mailstore->close (mailstore, file);
}

notmuch_status_t
notmuch_mailstore_construct (notmuch_mailstore_t *mailstore, ...)
{
    va_list va_args;
    notmuch_status_t status;

    va_start (va_args, mailstore);

    status = mailstore->constructor (&mailstore->data, va_args);

    va_end (va_args);
    return status;
}

debug log:

solving 51c2710 ...
found 51c2710 in https://yhetil.org/notmuch/1329343326-16410-12-git-send-email-glasse@cs.rpi.edu/
found b4d512d in https://yhetil.org/notmuch/1329343326-16410-11-git-send-email-glasse@cs.rpi.edu/
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/4] 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/4] 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


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


applying [4/4] https://yhetil.org/notmuch/1329343326-16410-12-git-send-email-glasse@cs.rpi.edu/
diff --git a/lib/mailstore.c b/lib/mailstore.c
index b4d512d..51c2710 100644

Checking patch lib/mailstore.c...
Applied patch lib/mailstore.c cleanly.
Checking patch lib/mailstore.c...
Applied patch lib/mailstore.c cleanly.
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 51c2710e05087c987c58cd97bf72f2ce88649bf0	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).