mbox_attribute.c
7.6 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
/* 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 <string.h>
#include <mailutils/error.h>
#include <mailutils/refcount.h>
#include <mailutils/sys/attribute.h>
#include <mailutils/sys/mbox.h>
struct _attribute_mbox
{
struct _attribute base;
mu_refcount_t refcount;
mbox_t mbox;
unsigned int msgno;
};
static int
_attribute_mbox_ref (attribute_t attribute)
{
struct _attribute_mbox *ma = (struct _attribute_mbox *)attribute;
return mu_refcount_inc (ma->refcount);
}
static void
_attribute_mbox_destroy (attribute_t *pattribute)
{
struct _attribute_mbox *ma = (struct _attribute_mbox *)*pattribute;
if (mu_refcount_dec (ma->refcount) == 0)
{
mu_refcount_destroy (&ma->refcount);
if (ma->msgno <= ma->mbox->messages_count)
{
/* If it is the attribute save in the mailbox structure. */
if (ma == (struct _attribute_mbox *)
(ma->mbox->umessages[ma->msgno - 1]->attribute))
ma->mbox->umessages[ma->msgno - 1]->attribute = NULL;
}
free (ma);
}
}
static int
_attribute_mbox_get_flags (attribute_t attribute, int *pflags)
{
struct _attribute_mbox *ma = (struct _attribute_mbox *)attribute;
if (pflags)
{
if (ma->msgno <= ma->mbox->messages_count)
*pflags = ma->mbox->umessages[ma->msgno - 1]->attr_flags;
}
return 0;
}
static int
_attribute_mbox_set_flags (attribute_t attribute, int flags)
{
struct _attribute_mbox *ma = (struct _attribute_mbox *)attribute;
if (ma->msgno <= ma->mbox->messages_count)
ma->mbox->umessages[ma->msgno - 1]->attr_flags |=
(flags | MU_ATTRIBUTE_MODIFIED);
return 0;
}
static int
_attribute_mbox_unset_flags (attribute_t attribute, int flags)
{
struct _attribute_mbox *ma = (struct _attribute_mbox *)attribute;
if (ma->msgno <= ma->mbox->messages_count)
{
ma->mbox->umessages[ma->msgno - 1]->attr_flags &= ~flags;
/* If Modified was being unset do not reset it. */
if (!(flags & MU_ATTRIBUTE_MODIFIED))
ma->mbox->umessages[ma->msgno - 1]->attr_flags |=
MU_ATTRIBUTE_MODIFIED;
}
return 0;
}
static int
_attribute_mbox_clear_flags (attribute_t attribute)
{
struct _attribute_mbox *ma = (struct _attribute_mbox *)attribute;
if (ma->msgno <= ma->mbox->messages_count)
ma->mbox->umessages[ma->msgno - 1]->attr_flags = 0;
return 0;
}
static int
_attribute_mbox_get_userflags (attribute_t attribute, int *puserflags)
{
struct _attribute_mbox *ma = (struct _attribute_mbox *)attribute;
if (puserflags)
{
if (ma->msgno <= ma->mbox->messages_count)
*puserflags = ma->mbox->umessages[ma->msgno - 1]->attr_userflags;
}
return 0;
}
static int
_attribute_mbox_set_userflags (attribute_t attribute, int userflags)
{
struct _attribute_mbox *ma = (struct _attribute_mbox *)attribute;
if (ma->msgno <= ma->mbox->messages_count)
ma->mbox->umessages[ma->msgno - 1]->attr_userflags |=
(userflags | MU_ATTRIBUTE_MODIFIED);
return 0;
}
static int
_attribute_mbox_unset_userflags (attribute_t attribute, int userflags)
{
struct _attribute_mbox *ma = (struct _attribute_mbox *)attribute;
if (ma->msgno <= ma->mbox->messages_count)
{
ma->mbox->umessages[ma->msgno - 1]->attr_userflags &= ~userflags;
/* If Modified was being unset do not reset it. */
if (!(userflags & MU_ATTRIBUTE_MODIFIED))
ma->mbox->umessages[ma->msgno - 1]->attr_userflags |=
MU_ATTRIBUTE_MODIFIED;
}
return 0;
}
static int
_attribute_mbox_clear_userflags (attribute_t attribute)
{
struct _attribute_mbox *ma = (struct _attribute_mbox *)attribute;
if (ma->msgno <= ma->mbox->messages_count)
ma->mbox->umessages[ma->msgno - 1]->attr_userflags = 0;
return 0;
}
static struct _attribute_vtable _attribute_mbox_vtable =
{
_attribute_mbox_ref,
_attribute_mbox_destroy,
_attribute_mbox_get_flags,
_attribute_mbox_set_flags,
_attribute_mbox_unset_flags,
_attribute_mbox_clear_flags,
_attribute_mbox_get_userflags,
_attribute_mbox_set_userflags,
_attribute_mbox_unset_userflags,
_attribute_mbox_clear_userflags
};
static int
_attribute_mbox_ctor (struct _attribute_mbox *ma, mbox_t mbox,
unsigned int msgno)
{
mu_refcount_create (&(ma->refcount));
if (ma->refcount == NULL)
return MU_ERROR_NO_MEMORY;
ma->mbox = mbox;
ma->msgno = msgno;
ma->base.vtable = &_attribute_mbox_vtable;
return 0;
}
void
_attribute_mbox_dtor (attribute_t attribute)
{
struct _attribute_mbox *ma = (struct _attribute_mbox *)attribute;
mu_refcount_destroy (&ma->refcount);
if (ma->msgno <= ma->mbox->messages_count)
{
/* If it is the attribute save in the mailbox structure. */
if (ma == (struct _attribute_mbox *)
(ma->mbox->umessages[ma->msgno - 1]->attribute))
ma->mbox->umessages[ma->msgno - 1]->attribute = NULL;
}
}
int
attribute_mbox_create (attribute_t *pattribute, mbox_t mbox,
unsigned int msgno)
{
struct _attribute_mbox *ma;
int status;
ma = calloc (1, sizeof *ma);
if (ma == NULL)
return MU_ERROR_NO_MEMORY;
status = _attribute_mbox_ctor (ma, mbox, msgno);
if (status != 0)
{
free (ma);
return status;
}
*pattribute = &ma->base;
return 0;
}
int
attribute_mbox_msgno (attribute_t attribute, unsigned int msgno)
{
struct _attribute_mbox *ma = (struct _attribute_mbox *)attribute;
if (ma)
ma->msgno = msgno;
return 0;
}
int
mbox_get_attribute (mbox_t mbox, unsigned int msgno, attribute_t *pattribute)
{
int status = 0;
mbox_debug_print (mbox, "attribute(%d)", msgno);
if (mbox == NULL || msgno == 0 || pattribute == NULL)
return MU_ERROR_INVALID_PARAMETER;
if (msgno > mbox->messages_count)
return MU_ERROR_INVALID_PARAMETER;
msgno--;
if (mbox->umessages[msgno]->attribute)
{
attribute_ref (mbox->umessages[msgno]->attribute);
*pattribute = mbox->umessages[msgno]->attribute;
}
else
{
status = attribute_mbox_create (pattribute, mbox, msgno + 1);
if (status == 0)
mbox->umessages[msgno]->attribute = *pattribute;
}
return status;
}
int
mbox_attribute_to_status (attribute_t attribute, char *buf, size_t buflen,
size_t *pn)
{
char Status[32];
char a[8];
size_t i;
*Status = *a = '\0';
if (attribute)
{
if (attribute_is_seen (attribute))
strcat (a, "O");
if (attribute_is_read (attribute))
strcat (a, "R");
if (attribute_is_answered (attribute))
strcat (a, "A");
if (attribute_is_deleted (attribute))
strcat (a, "d");
if (attribute_is_flagged (attribute))
strcat (a, "F");
if (attribute_is_draft (attribute))
strcat (a, "T");
}
if (*a != '\0')
{
strcpy (Status, "Status: ");
strcat (Status, a);
strcat (Status, "\n");
}
if (buf && buflen)
{
*buf = '\0';
strncpy (buf, Status, buflen - 1);
buf[buflen - 1] = '\0';
i = strlen (buf);
}
else
i = strlen (Status);
if (pn)
*pn = i;
return 0;
}