mailbox.c
8.78 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
/* GNU mailutils - a suite of utilities for electronic mail
Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Library Public License as published by
the Free Software Foundation; either version 2, 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 Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdlib.h>
#include <errno.h>
#include <mailutils/iterator.h>
#include <mailutils/registrar.h>
#include <mailbox0.h>
/* The Mailbox Factory.
We create an iterator for the mailbox_register and see if any scheme
match, if not we check in the mailbox_manager register for a match.
Then we call the mailbox's >url_create() to parse the URL. Last
initiliaze the concrete mailbox. */
int
mailbox_create (mailbox_t *pmbox, const char *name)
{
int status = EINVAL;
record_t record = NULL;
int (*m_init) __P ((mailbox_t)) = NULL;
int (*u_init) __P ((url_t)) = NULL;
iterator_t iterator;
list_t list;
int found = 0;
if (pmbox == NULL)
return EINVAL;
/* Look in the mailbox_register, for a match */
registrar_get_list (&list);
status = iterator_create (&iterator, list);
if (status != 0)
return status;
for (iterator_first (iterator); !iterator_is_done (iterator);
iterator_next (iterator))
{
iterator_current (iterator, (void **)&record);
if (record_is_scheme (record, name))
{
record_get_mailbox (record, &m_init);
record_get_url (record, &u_init);
if (m_init && u_init)
{
found = 1;
break;
}
}
}
iterator_destroy (&iterator);
if (found)
{
url_t url = NULL;
mailbox_t mbox = NULL;
/* Allocate memory for mbox. */
mbox = calloc (1, sizeof (*mbox));
if (mbox == NULL)
return ENOMEM;
/* Initialize the internal lock now, so the concrete mailbox
could use it. */
status = monitor_create (&(mbox->monitor), 0, mbox);
if (status != 0)
{
mailbox_destroy (&mbox);
return status;
}
/* Parse the url, it may be a bad one and we should bailout if this
failed. */
if ((status = url_create (&url, name)) != 0
|| (status = u_init (url)) != 0)
{
mailbox_destroy (&mbox);
return status;
}
mbox->url = url;
/* Create the folder before initializing the concrete mailbox.
The mailbox needs it's back pointer. */
{
folder_t folder;
if (folder_create (&folder, name) == 0)
mbox->folder = folder;
}
/* Create the concrete mailbox type. */
status = m_init (mbox);
if (status != 0)
{
mailbox_destroy (&mbox);
}
else
{
*pmbox = mbox;
}
}
else
status = ENOENT;
return status;
}
void
mailbox_destroy (mailbox_t *pmbox)
{
if (pmbox && *pmbox)
{
mailbox_t mbox = *pmbox;
monitor_t monitor = mbox->monitor;
/* Notify the observers. */
if (mbox->observable)
{
observable_notify (mbox->observable, MU_EVT_MAILBOX_DESTROY);
observable_destroy (&(mbox->observable), mbox);
}
/* Call the concrete mailbox. */
if (mbox->_destroy)
mbox->_destroy (mbox);
monitor_wrlock (monitor);
/* Nuke the stream and close it */
if (mbox->stream)
{
stream_close (mbox->stream);
stream_destroy (&(mbox->stream), mbox);
}
if (mbox->ticket)
ticket_destroy (&(mbox->ticket), mbox);
if (mbox->authority)
authority_destroy (&(mbox->authority), mbox);
if (mbox->url)
url_destroy (&(mbox->url));
if (mbox->locker)
locker_destroy (&(mbox->locker));
if (mbox->debug)
debug_destroy (&(mbox->debug), mbox);
if (mbox->folder)
folder_destroy (&(mbox->folder));
free (mbox);
*pmbox = NULL;
monitor_unlock (monitor);
monitor_destroy (&monitor, mbox);
}
}
/* -------------- stub functions ------------------- */
int
mailbox_open (mailbox_t mbox, int flag)
{
if (mbox == NULL || mbox->_open == NULL)
return ENOSYS;
return mbox->_open (mbox, flag);
}
int
mailbox_close (mailbox_t mbox)
{
if (mbox == NULL || mbox->_close == NULL)
return ENOSYS;
return mbox->_close (mbox);
}
/* messages */
int
mailbox_append_message (mailbox_t mbox, message_t msg)
{
if (mbox == NULL || mbox->_append_message == NULL)
return ENOSYS;
return mbox->_append_message (mbox, msg);
}
int
mailbox_get_message (mailbox_t mbox, size_t msgno, message_t *pmsg)
{
if (mbox == NULL || mbox->_get_message == NULL)
return ENOSYS;
return mbox->_get_message (mbox, msgno, pmsg);
}
int
mailbox_messages_count (mailbox_t mbox, size_t *num)
{
if (mbox == NULL || mbox->_messages_count == NULL)
return ENOSYS;
return mbox->_messages_count (mbox, num);
}
int
mailbox_messages_recent (mailbox_t mbox, size_t *num)
{
if (mbox == NULL || mbox->_messages_recent == NULL)
return ENOSYS;
return mbox->_messages_recent (mbox, num);
}
int
mailbox_message_unseen (mailbox_t mbox, size_t *num)
{
if (mbox == NULL || mbox->_message_unseen == NULL)
return ENOSYS;
return mbox->_message_unseen (mbox, num);
}
int
mailbox_expunge (mailbox_t mbox)
{
if (mbox == NULL || mbox->_expunge == NULL)
return ENOSYS;
return mbox->_expunge (mbox);
}
int
mailbox_is_updated (mailbox_t mbox)
{
if (mbox == NULL || mbox->_is_updated == NULL)
return 0;
return mbox->_is_updated (mbox);
}
int
mailbox_scan (mailbox_t mbox, size_t msgno, size_t *pcount)
{
if (mbox == NULL || mbox->_scan == NULL)
return 0;
return mbox->_scan (mbox, msgno, pcount);
}
int
mailbox_size (mailbox_t mbox, off_t *psize)
{
if (mbox == NULL || mbox->_size == NULL)
return 0;
return mbox->_size (mbox, psize);
}
int
mailbox_uidvalidity (mailbox_t mbox, unsigned long *pvalid)
{
if (mbox == NULL || mbox->_uidvalidity == NULL)
return 0;
return mbox->_uidvalidity (mbox, pvalid);
}
int
mailbox_uidnext (mailbox_t mbox, size_t *puidnext)
{
if (mbox == NULL || mbox->_uidnext == NULL)
return 0;
return mbox->_uidnext (mbox, puidnext);
}
/* locking */
int
mailbox_set_locker (mailbox_t mbox, locker_t locker)
{
if (mbox == NULL)
return EINVAL;
if (mbox->locker)
locker_destroy (&mbox->locker);
mbox->locker = locker;
return 0;
}
int
mailbox_get_locker (mailbox_t mbox, locker_t *plocker)
{
if (mbox == NULL || plocker == NULL)
return EINVAL;
*plocker = mbox->locker;
return 0;
}
int
mailbox_set_authority (mailbox_t mbox, authority_t authority)
{
if (mbox == NULL)
return EINVAL;
if (mbox->authority)
authority_destroy (&(mbox->authority), mbox);
mbox->authority = authority;
return 0;
}
int
mailbox_get_authority (mailbox_t mbox, authority_t *pauthority)
{
if (mbox == NULL || pauthority == NULL)
return EINVAL;
*pauthority = mbox->authority;
return 0;
}
int
mailbox_set_ticket (mailbox_t mbox, ticket_t ticket)
{
if (mbox == NULL)
return EINVAL;
if (mbox->ticket)
ticket_destroy (&(mbox->ticket), mbox);
mbox->ticket = ticket;
return 0;
}
int
mailbox_get_ticket (mailbox_t mbox, ticket_t *pticket)
{
if (mbox == NULL || pticket == NULL)
return EINVAL;
*pticket = mbox->ticket;
return 0;
}
int
mailbox_set_stream (mailbox_t mbox, stream_t stream)
{
if (mbox == NULL)
return EINVAL;
if (mbox->stream)
stream_destroy (&(mbox->stream), mbox);
mbox->stream = stream;
return 0;
}
int
mailbox_get_stream (mailbox_t mbox, stream_t *pstream)
{
if (mbox == NULL || pstream)
return EINVAL;
*pstream = mbox->stream;
return 0;
}
int
mailbox_get_observable (mailbox_t mbox, observable_t *pobservable)
{
if (mbox == NULL || pobservable == NULL)
return EINVAL;
if (mbox->observable == NULL)
{
int status = observable_create (&(mbox->observable), mbox);
if (status != 0)
return status;
}
*pobservable = mbox->observable;
return 0;
}
int
mailbox_set_debug (mailbox_t mbox, debug_t debug)
{
if (mbox == NULL)
return EINVAL;
if (mbox->debug)
debug_destroy (&(mbox->debug), mbox);
mbox->debug = debug;
return 0;
}
int
mailbox_get_debug (mailbox_t mbox, debug_t *pdebug)
{
if (mbox == NULL || pdebug == NULL)
return EINVAL;
if (mbox->debug == NULL)
{
int status = debug_create (&(mbox->debug), mbox);
if (status != 0)
return status;
}
*pdebug = mbox->debug;
return 0;
}
int
mailbox_get_url (mailbox_t mbox, url_t *purl)
{
if (mbox == NULL || purl == NULL)
return EINVAL;
*purl = mbox->url;
return 0;
}