registrar.c
7.51 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
/* GNU Mailutils -- a suite of utilities for electronic mail
Copyright (C) 1999, 2000, 2001, 2004, 2005, 2006
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 2 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, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301 USA */
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#ifdef HAVE_STRINGS_H
# include <strings.h>
#endif
#include <mailutils/iterator.h>
#include <mailutils/list.h>
#include <mailutils/monitor.h>
#include <mailutils/errno.h>
#include <mailutils/nls.h>
#include <mailutils/error.h>
#include <registrar0.h>
/* NOTE: We will leak here since the monitor and the registrar will never
be released. That's ok we can live with this, it's only done once. */
static mu_list_t registrar_list;
struct mu_monitor registrar_monitor = MU_MONITOR_INITIALIZER;
static int
_registrar_get_list (mu_list_t *plist)
{
int status = 0;
if (plist == NULL)
return MU_ERR_OUT_PTR_NULL;
mu_monitor_wrlock (®istrar_monitor);
if (registrar_list == NULL)
status = mu_list_create (®istrar_list);
*plist = registrar_list;
mu_monitor_unlock (®istrar_monitor);
return status;
}
/* Provided for backward compatibility */
int
mu_registrar_get_list (mu_list_t *plist)
{
static int warned;
if (!warned)
{
mu_error (_("Program uses mu_registrar_get_list(), which is deprecated"));
warned = 1;
}
return _registrar_get_list (plist);
}
int
mu_registrar_get_iterator (mu_iterator_t *pitr)
{
int status = 0;
if (pitr == NULL)
return MU_ERR_OUT_PTR_NULL;
mu_monitor_wrlock (®istrar_monitor);
if (registrar_list == NULL)
{
status = mu_list_create (®istrar_list);
if (status)
return status;
}
status = mu_list_get_iterator (registrar_list, pitr);
mu_monitor_unlock (®istrar_monitor);
return status;
}
int
mu_registrar_lookup (const char *name, int flags,
mu_record_t *precord, int *pflags)
{
mu_iterator_t iterator;
int status = mu_registrar_get_iterator (&iterator);
if (status != 0)
return status;
status = MU_ERR_NOENT;
for (mu_iterator_first (iterator); !mu_iterator_is_done (iterator);
mu_iterator_next (iterator))
{
int rc;
mu_record_t record;
mu_iterator_current (iterator, (void **)&record);
if ((rc = mu_record_is_scheme (record, name, flags)))
{
status = 0;
if (precord)
*precord = record;
if (pflags)
*pflags = rc;
break;
}
}
mu_iterator_destroy (&iterator);
return status;
}
/* For compatibility with earlier versions */
int
mu_0_6_registrar_lookup (const char *name, mu_record_t *precord, int flags)
{
int status = mu_registrar_lookup (name, flags, precord, &flags);
return (status == 0) ? flags : 0;
}
static int
_compare_prio (const void *item, const void *value)
{
const mu_record_t a = (const mu_record_t) item;
const mu_record_t b = (const mu_record_t) value;
if (a->priority > b->priority)
return 0;
return -1;
}
int
mu_registrar_record (mu_record_t record)
{
int status;
mu_list_t list;
mu_list_comparator_t comp;
if (!record)
return 0;
_registrar_get_list (&list);
comp = mu_list_set_comparator (list, _compare_prio);
status = mu_list_insert (list, record, record, 1);
if (status == MU_ERR_NOENT)
status = mu_list_append (list, record);
mu_list_set_comparator (list, comp);
return status;
}
int
mu_unregistrar_record (mu_record_t record)
{
mu_list_t list;
_registrar_get_list (&list);
mu_list_remove (list, record);
return 0;
}
int
mu_record_is_scheme (mu_record_t record, const char *scheme, int flags)
{
if (record == NULL)
return 0;
/* Overload. */
if (record->_is_scheme)
return record->_is_scheme (record, scheme, flags);
if (scheme
&& record->scheme
&& strncasecmp (record->scheme, scheme, strlen (record->scheme)) == 0)
return MU_FOLDER_ATTRIBUTE_ALL;
return 0;
}
int
mu_record_set_scheme (mu_record_t record, const char *scheme)
{
if (record == NULL)
return EINVAL;
record->scheme = scheme;
return 0;
}
int
mu_record_set_is_scheme (mu_record_t record, int (*_is_scheme)
(mu_record_t, const char *, int))
{
if (record == NULL)
return EINVAL;
record->_is_scheme = _is_scheme;
return 0;
}
int
mu_record_get_url (mu_record_t record, int (*(*_purl)) (mu_url_t))
{
if (record == NULL)
return EINVAL;
if (_purl == NULL)
return MU_ERR_OUT_PTR_NULL;
/* Overload. */
if (record->_get_url)
return record->_get_url (record, _purl);
*_purl = record->_url;
return 0;
}
int
mu_record_set_url (mu_record_t record, int (*_mu_url) (mu_url_t))
{
if (record == NULL)
return EINVAL;
record->_url = _mu_url;
return 0;
}
int
mu_record_set_get_url (mu_record_t record, int (*_get_url)
(mu_record_t, int (*(*)) (mu_url_t)))
{
if (record == NULL)
return EINVAL;
record->_get_url = _get_url;
return 0;
}
int
mu_record_get_mailbox (mu_record_t record, int (*(*_pmailbox)) (mu_mailbox_t))
{
if (record == NULL)
return EINVAL;
if (_pmailbox == NULL)
return MU_ERR_OUT_PTR_NULL;
/* Overload. */
if (record->_get_mailbox)
return record->_get_mailbox (record, _pmailbox);
*_pmailbox = record->_mailbox;
return 0;
}
int
mu_record_set_mailbox (mu_record_t record, int (*_mu_mailbox) (mu_mailbox_t))
{
if (record)
return EINVAL;
record->_mailbox = _mu_mailbox;
return 0;
}
int
mu_record_set_get_mailbox (mu_record_t record,
int (*_get_mailbox) (mu_record_t, int (*(*)) (mu_mailbox_t)))
{
if (record)
return EINVAL;
record->_get_mailbox = _get_mailbox;
return 0;
}
int
mu_record_get_mailer (mu_record_t record, int (*(*_pmailer)) (mu_mailer_t))
{
if (record == NULL)
return EINVAL;
if (_pmailer == NULL)
return MU_ERR_OUT_PTR_NULL;
/* Overload. */
if (record->_get_mailer)
return record->_get_mailer (record, _pmailer);
*_pmailer = record->_mailer;
return 0;
}
int
mu_record_set_mailer (mu_record_t record, int (*_mu_mailer) (mu_mailer_t))
{
if (record)
return EINVAL;
record->_mailer = _mu_mailer;
return 0;
}
int
mu_record_set_get_mailer (mu_record_t record,
int (*_get_mailer) (mu_record_t, int (*(*)) (mu_mailer_t)))
{
if (record == NULL)
return EINVAL;
record->_get_mailer = _get_mailer;
return 0;
}
int
mu_record_get_folder (mu_record_t record, int (*(*_pfolder)) (mu_folder_t))
{
if (record == NULL)
return EINVAL;
if (_pfolder == NULL)
return MU_ERR_OUT_PTR_NULL;
/* Overload. */
if (record->_get_folder)
return record->_get_folder (record, _pfolder);
*_pfolder = record->_folder;
return 0;
}
int
mu_record_set_folder (mu_record_t record, int (*_mu_folder) (mu_folder_t))
{
if (record == NULL)
return EINVAL;
record->_folder = _mu_folder;
return 0;
}
int
mu_record_set_get_folder (mu_record_t record,
int (*_get_folder) (mu_record_t, int (*(*)) (mu_folder_t)))
{
if (record == NULL)
return EINVAL;
record->_get_folder = _get_folder;
return 0;
}