mailbox.c
12.1 KB
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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
/* GNU Mailutils -- a suite of utilities for electronic mail
Copyright (C) 2009-2012 Free Software Foundation, Inc.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 3 of the License, or (at your option) any later version.
This library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General
Public License along with this library. If not, see
<http://www.gnu.org/licenses/>. */
#include "libmu_py.h"
#define PY_MODULE "mailbox"
#define PY_CSNAME "MailboxType"
static PyObject *
_repr (PyObject *self)
{
char buf[80];
sprintf (buf, "<" PY_MODULE "." PY_CSNAME " instance at %p>", self);
return PyString_FromString (buf);
}
static PyTypeObject PyMailboxType = {
PyObject_HEAD_INIT(NULL)
0, /* ob_size */
PY_MODULE "." PY_CSNAME, /* tp_name */
sizeof (PyMailbox), /* tp_basicsize */
0, /* tp_itemsize */
(destructor)_py_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr; __getattr__ */
0, /* tp_setattr; __setattr__ */
0, /* tp_compare; __cmp__ */
_repr, /* tp_repr; __repr__ */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash; __hash__ */
0, /* tp_call; __call__ */
_repr, /* tp_str; __str__ */
0, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT, /* tp_flags */
"", /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
0, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
0, /* tp_new */
};
PyMailbox *
PyMailbox_NEW ()
{
return (PyMailbox *)PyObject_NEW (PyMailbox, &PyMailboxType);
}
int
PyMailbox_Check (PyObject *x)
{
return x->ob_type == &PyMailboxType;
}
static PyObject *
api_mailbox_create (PyObject *self, PyObject *args)
{
int status;
char *name;
PyMailbox *py_mbox;
if (!PyArg_ParseTuple (args, "O!s", &PyMailboxType, &py_mbox, &name))
return NULL;
status = mu_mailbox_create (&py_mbox->mbox, name);
return _ro (PyInt_FromLong (status));
}
static PyObject *
api_mailbox_create_default (PyObject *self, PyObject *args)
{
int status;
char *name;
PyMailbox *py_mbox;
if (!PyArg_ParseTuple (args, "O!z", &PyMailboxType, &py_mbox, &name))
return NULL;
status = mu_mailbox_create_default (&py_mbox->mbox, name);
return _ro (PyInt_FromLong (status));
}
static PyObject *
api_mailbox_destroy (PyObject *self, PyObject *args)
{
PyMailbox *py_mbox;
if (!PyArg_ParseTuple (args, "O!", &PyMailboxType, &py_mbox))
return NULL;
mu_mailbox_destroy (&py_mbox->mbox);
return _ro (Py_None);
}
static PyObject *
api_mailbox_open (PyObject *self, PyObject *args)
{
int status;
int flag;
PyMailbox *py_mbox;
if (!PyArg_ParseTuple (args, "O!i", &PyMailboxType, &py_mbox, &flag))
return NULL;
status = mu_mailbox_open (py_mbox->mbox, flag);
return _ro (PyInt_FromLong (status));
}
static PyObject *
api_mailbox_close (PyObject *self, PyObject *args)
{
int status;
PyMailbox *py_mbox;
if (!PyArg_ParseTuple (args, "O!", &PyMailboxType, &py_mbox))
return NULL;
status = mu_mailbox_close (py_mbox->mbox);
return _ro (PyInt_FromLong (status));
}
static PyObject *
api_mailbox_flush (PyObject *self, PyObject *args)
{
int status, expunge = 0;
PyMailbox *py_mbox;
if (!PyArg_ParseTuple (args, "O!i", &PyMailboxType, &py_mbox, &expunge))
return NULL;
status = mu_mailbox_flush (py_mbox->mbox, expunge);
return _ro (PyInt_FromLong (status));
}
static PyObject *
api_mailbox_messages_count (PyObject *self, PyObject *args)
{
int status;
size_t total = 0;
PyMailbox *py_mbox;
if (!PyArg_ParseTuple (args, "O!", &PyMailboxType, &py_mbox))
return NULL;
status = mu_mailbox_messages_count (py_mbox->mbox, &total);
return status_object (status, PyInt_FromLong (total));
}
static PyObject *
api_mailbox_messages_recent (PyObject *self, PyObject *args)
{
int status;
size_t recent = 0;
PyMailbox *py_mbox;
if (!PyArg_ParseTuple (args, "O!", &PyMailboxType, &py_mbox))
return NULL;
status = mu_mailbox_messages_recent (py_mbox->mbox, &recent);
return status_object (status, PyInt_FromLong (recent));
}
static PyObject *
api_mailbox_message_unseen (PyObject *self, PyObject *args)
{
int status;
size_t unseen = 0;
PyMailbox *py_mbox;
if (!PyArg_ParseTuple (args, "O!", &PyMailboxType, &py_mbox))
return NULL;
status = mu_mailbox_message_unseen (py_mbox->mbox, &unseen);
return status_object (status, PyInt_FromLong (unseen));
}
static PyObject *
api_mailbox_get_message (PyObject *self, PyObject *args)
{
int status;
size_t msgno;
PyMailbox *py_mbox;
PyMessage *py_msg = PyMessage_NEW ();
if (!PyArg_ParseTuple (args, "O!i", &PyMailboxType, &py_mbox, &msgno))
return NULL;
status = mu_mailbox_get_message (py_mbox->mbox, msgno, &py_msg->msg);
Py_INCREF (py_msg);
return status_object (status, (PyObject *)py_msg);
}
static PyObject *
api_mailbox_append_message (PyObject *self, PyObject *args)
{
int status;
PyMailbox *py_mbox;
PyMessage *py_msg;
if (!PyArg_ParseTuple (args, "O!O", &PyMailboxType, &py_mbox, &py_msg))
return NULL;
if (!PyMessage_Check ((PyObject *)py_msg))
{
PyErr_SetString (PyExc_TypeError, "");
return NULL;
}
status = mu_mailbox_append_message (py_mbox->mbox, py_msg->msg);
return _ro (PyInt_FromLong (status));
}
static PyObject *
api_mailbox_expunge (PyObject *self, PyObject *args)
{
int status;
PyMailbox *py_mbox;
if (!PyArg_ParseTuple (args, "O!", &PyMailboxType, &py_mbox))
return NULL;
status = mu_mailbox_expunge (py_mbox->mbox);
return _ro (PyInt_FromLong (status));
}
static PyObject *
api_mailbox_sync (PyObject *self, PyObject *args)
{
int status;
PyMailbox *py_mbox;
if (!PyArg_ParseTuple (args, "O!", &PyMailboxType, &py_mbox))
return NULL;
status = mu_mailbox_sync (py_mbox->mbox);
return _ro (PyInt_FromLong (status));
}
static int
uidls_extractor (void *data, PyObject **dst)
{
struct mu_uidl *uidl = (struct mu_uidl *)data;
*dst = PyTuple_New (2);
PyTuple_SetItem (*dst, 0, PyInt_FromLong (uidl->msgno));
PyTuple_SetItem (*dst, 1, PyString_FromString (uidl->uidl));
return 0;
}
static PyObject *
api_mailbox_get_uidls (PyObject *self, PyObject *args)
{
int status;
PyMailbox *py_mbox;
PyObject *py_list;
mu_list_t c_list = NULL;
if (!PyArg_ParseTuple (args, "O!", &PyMailboxType, &py_mbox))
return NULL;
status = mu_mailbox_get_uidls (py_mbox->mbox, &c_list);
if (c_list)
py_list = mu_py_mulist_to_pylist (c_list, uidls_extractor);
else
py_list = PyTuple_New (0);
return status_object (status, py_list);
}
static PyObject *
api_mailbox_lock (PyObject *self, PyObject *args)
{
int status;
PyMailbox *py_mbox;
if (!PyArg_ParseTuple (args, "O!", &PyMailboxType, &py_mbox))
return NULL;
status = mu_mailbox_lock (py_mbox->mbox);
return _ro (PyInt_FromLong (status));
}
static PyObject *
api_mailbox_unlock (PyObject *self, PyObject *args)
{
int status;
PyMailbox *py_mbox;
if (!PyArg_ParseTuple (args, "O!", &PyMailboxType, &py_mbox))
return NULL;
status = mu_mailbox_unlock (py_mbox->mbox);
return _ro (PyInt_FromLong (status));
}
static PyObject *
api_mailbox_get_size (PyObject *self, PyObject *args)
{
int status;
mu_off_t size = 0;
PyMailbox *py_mbox;
if (!PyArg_ParseTuple (args, "O!", &PyMailboxType, &py_mbox))
return NULL;
status = mu_mailbox_get_size (py_mbox->mbox, &size);
return status_object (status, PyInt_FromLong (size));
}
static PyObject *
api_mailbox_get_folder (PyObject *self, PyObject *args)
{
int status;
PyMailbox *py_mbox;
PyFolder *py_folder = PyFolder_NEW ();
if (!PyArg_ParseTuple (args, "O!", &PyMailboxType, &py_mbox))
return NULL;
py_folder->folder = NULL;
status = mu_mailbox_get_folder (py_mbox->mbox, &py_folder->folder);
Py_INCREF (py_folder);
return status_object (status, (PyObject *)py_folder);
}
static PyObject *
api_mailbox_get_url (PyObject *self, PyObject *args)
{
int status;
PyMailbox *py_mbox;
PyUrl *py_url = PyUrl_NEW ();
if (!PyArg_ParseTuple (args, "O!", &PyMailboxType, &py_mbox))
return NULL;
Py_INCREF (py_url);
status = mu_mailbox_get_url (py_mbox->mbox, &py_url->url);
return status_object (status, (PyObject *)py_url);
}
static PyMethodDef methods[] = {
{ "create", (PyCFunction) api_mailbox_create, METH_VARARGS,
"Allocate and initialize 'mbox'. The concrete mailbox type "
"instantiate is based on the scheme of the url 'name'." },
{ "create_default", (PyCFunction) api_mailbox_create_default, METH_VARARGS,
"Create a mailbox with mu_mailbox_create() based on the "
"environment variable MAIL or the string formed by "
"__PATH_MAILDIR_/USER or LOGNAME if USER is null." },
{ "destroy", (PyCFunction) api_mailbox_destroy, METH_VARARGS,
"Destroy and release resources held by 'mbox'." },
{ "open", (PyCFunction) api_mailbox_open, METH_VARARGS,
"A connection is open, if no stream was provided, a stream is "
"created based on the 'mbox' type. The 'flag' can be OR'ed." },
{ "close", (PyCFunction) api_mailbox_close, METH_VARARGS,
"The stream attached to 'mbox' is closed." },
{ "flush", (PyCFunction) api_mailbox_flush, METH_VARARGS,
"" },
{ "messages_count", (PyCFunction) api_mailbox_messages_count, METH_VARARGS,
"Give the number of messages in 'mbox'." },
{ "messages_recent", (PyCFunction) api_mailbox_messages_recent, METH_VARARGS,
"Give the number of recent messages in 'mbox'." },
{ "message_unseen", (PyCFunction) api_mailbox_message_unseen, METH_VARARGS,
"Give the number of first unseen message in MBOX." },
{ "get_message", (PyCFunction) api_mailbox_get_message, METH_VARARGS,
"Retrieve message number 'msgno', 'message' is allocated and initialized." },
{ "append_message", (PyCFunction) api_mailbox_append_message, METH_VARARGS,
"Append 'message' to the mailbox 'mbox'." },
{ "expunge", (PyCFunction) api_mailbox_expunge, METH_VARARGS,
"Expunge deleted messages from the mailbox 'mbox'." },
{ "sync", (PyCFunction) api_mailbox_sync, METH_VARARGS,
"" },
{ "get_uidls", (PyCFunction) api_mailbox_get_uidls, METH_VARARGS,
"" },
{ "lock", (PyCFunction) api_mailbox_lock, METH_VARARGS,
"" },
{ "unlock", (PyCFunction) api_mailbox_unlock, METH_VARARGS,
"" },
{ "get_size", (PyCFunction) api_mailbox_get_size, METH_VARARGS,
"" },
{ "get_folder", (PyCFunction) api_mailbox_get_folder, METH_VARARGS,
"" },
{ "get_url", (PyCFunction) api_mailbox_get_url, METH_VARARGS,
"" },
{ NULL, NULL, 0, NULL }
};
int
mu_py_init_mailbox (void)
{
PyMailboxType.tp_new = PyType_GenericNew;
return PyType_Ready (&PyMailboxType);
}
void
_mu_py_attach_mailbox (void)
{
PyObject *m;
if ((m = _mu_py_attach_module (PY_MODULE, methods)))
{
Py_INCREF (&PyMailboxType);
PyModule_AddObject (m, PY_CSNAME, (PyObject *)&PyMailboxType);
}
}