unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
blob 4d7cc79b219719e651426aac32fd9f7b4f294aee 6761 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
 
/* 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 <couchdb-session.h>
#include <couchdb-database.h>
#include <couchdb-document.h>
#include <glib.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);
}

struct _couchdb_data {
    char *db_path;
    CouchdbDatabase *database;
    GHashTable *files_to_documents;
};

/* CouchDB mailstore */
static notmuch_status_t
_couchdb_constructor (void **data, va_list ap)
{
    CouchdbSession *session = NULL;
    CouchdbDatabase *database = NULL;
    GError *error = NULL;
    char *uri = NULL;
    char *db_name = NULL;
    struct _couchdb_data *my_data = NULL;

    uri = va_arg (ap, char*);
    session = couchdb_session_new (uri);

    db_name = va_arg (ap, char*);
    database = couchdb_session_get_database (session, db_name, &error);
    if (database == NULL) {
	fprintf (stderr, "Couldn't access database %s: %s\n", db_name,
		 error->message);
	return NOTMUCH_STATUS_FILE_ERROR;
    }

    my_data = talloc_size (NULL, sizeof (struct _couchdb_data));
    my_data->database = database;
    my_data->db_path  = va_arg (ap, char*);
    my_data->files_to_documents = g_hash_table_new (NULL, NULL);
    (*data) = (void*)my_data;

    return NOTMUCH_STATUS_SUCCESS;
}

static FILE *
_couchdb_open_function (notmuch_mailstore_t *mailstore,
			const char *filename)
{
    CouchdbDatabase *database = NULL;
    CouchdbDocument *document = NULL;
    GError *error = NULL;
    const char *text = NULL;
    const char *relative = NULL;
    struct _couchdb_data *data = (struct _couchdb_data *)mailstore->data;
    FILE *ret = NULL;
    database = data->database;
    /* message assumes all files should be contained within db_path.
     * This isn't true for us, so remove the db_path.
     * I'd like to use _notmuch_database_relative_path but I don't have
     * a notmuch_database_t*.
     */
    relative = filename;
    if (strncmp (filename, data->db_path, strlen (data->db_path)) == 0) {
	relative = filename + strlen (data->db_path);
	while (*relative == '/' && *(relative+1) == '/')
	    relative++;
    }

    document = couchdb_database_get_document (database, relative, &error);
    if (document == NULL)
	/* file doesn't exist. Maybe it got deleted? */
	return NULL;

    text = couchdb_document_get_string_field (document, "text");
    /* FIXME: null bytes in the mail file? */
    ret = fmemopen ((char *)text, strlen(text), "r");
    g_hash_table_insert (data->files_to_documents, ret, document);
    return ret;
}

static int
_couchdb_close_function (notmuch_mailstore_t *mailstore, FILE *file)
{
    struct _couchdb_data *data = (struct _couchdb_data *)mailstore->data;
    GHashTable *hash = data->files_to_documents;
    CouchdbDocument *document;
    document = g_hash_table_lookup (hash, file);
    g_object_unref (document);
    fclose (file); /* just to be polite ;) */
    g_hash_table_remove (hash, file);
    return 0;
}

static int
_couchdb_rename_function (unused (notmuch_mailstore_t *mailstore),
			  unused (const char *old_filename),
			  unused (const char *new_filename))
{
    /* Pass for now. */
    return 0;
}

/* 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_couchdb = { _couchdb_constructor,
			      _couchdb_open_function, _couchdb_close_function,
			      _couchdb_rename_function,
			      NULL};


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

    if (strcmp (name, "couchdb") == 0)
	return &notmuch_mailstore_couchdb;

    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 4d7cc79 ...
found 4d7cc79 in https://yhetil.org/notmuch/1329343326-16410-14-git-send-email-glasse@cs.rpi.edu/
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/5] 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/5] 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/5] 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/5] 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


applying [5/5] https://yhetil.org/notmuch/1329343326-16410-14-git-send-email-glasse@cs.rpi.edu/
diff --git a/lib/mailstore.c b/lib/mailstore.c
index 51c2710..4d7cc79 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.
Checking patch lib/mailstore.c...
Applied patch lib/mailstore.c cleanly.

index at:
100644 4d7cc79b219719e651426aac32fd9f7b4f294aee	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).