attribute.c
5.22 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
/* GNU mailutils - a suite of utilities for electronic mail
Copyright (C) 1999, 2000 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. */
#include <attribute0.h>
#include <sys/types.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
int
attribute_create (attribute_t *pattr, void *owner)
{
attribute_t attr;
if (pattr == NULL || owner == NULL)
return EINVAL;
attr = calloc (1, sizeof(*attr));
if (attr == NULL)
return ENOMEM;
attr->owner = owner;
*pattr = attr;
return 0;
}
void
attribute_destroy (attribute_t *pattr, void *owner)
{
if (pattr && *pattr)
{
attribute_t attr = *pattr;
if (attr->owner == owner)
free (attr);
/* loose the link */
*pattr = NULL;
}
return;
}
int
attribute_set_seen (attribute_t attr)
{
if (attr == NULL)
return EINVAL;
attr->flag |= MU_ATTRIBUTE_SEEN;
return 0;
}
int
attribute_set_answered (attribute_t attr)
{
if (attr == NULL)
return EINVAL;
attr->flag |= MU_ATTRIBUTE_ANSWERED;
return 0;
}
int
attribute_set_flagged (attribute_t attr)
{
if (attr == NULL)
return EINVAL;
attr->flag |= MU_ATTRIBUTE_FLAGGED;
return 0;
}
int
attribute_set_read (attribute_t attr)
{
if (attr == NULL)
return EINVAL;
attr->flag |= MU_ATTRIBUTE_READ;
return 0;
}
int
attribute_set_deleted (attribute_t attr)
{
if (attr == NULL)
return EINVAL;
attr->flag |= MU_ATTRIBUTE_DELETED;
return 0;
}
int
attribute_set_draft (attribute_t attr)
{
if (attr == NULL)
return EINVAL;
attr->flag |= MU_ATTRIBUTE_DRAFT;
return 0;
}
int
attribute_set_recent (attribute_t attr)
{
if (attr == NULL)
return EINVAL;
if (attr == NULL)
{
attr->flag |= MU_ATTRIBUTE_RECENT;
return 0;
}
return EACCES;
}
int
attribute_is_seen (attribute_t attr)
{
if (attr == NULL)
return 0;
return attr->flag & MU_ATTRIBUTE_SEEN;
}
int
attribute_is_answered (attribute_t attr)
{
if (attr == NULL)
return 0;
return attr->flag & MU_ATTRIBUTE_ANSWERED;
}
int
attribute_is_flagged (attribute_t attr)
{
if (attr == NULL)
return 0;
return attr->flag & MU_ATTRIBUTE_FLAGGED;
}
int
attribute_is_read (attribute_t attr)
{
if (attr == NULL)
return 0;
return attr->flag & MU_ATTRIBUTE_READ;
}
int
attribute_is_deleted (attribute_t attr)
{
if (attr == NULL)
return 0;
return attr->flag & MU_ATTRIBUTE_DELETED;
}
int
attribute_is_draft (attribute_t attr)
{
if (attr == NULL)
return 0;
return attr->flag & MU_ATTRIBUTE_DRAFT;
}
int
attribute_is_recent (attribute_t attr)
{
if (attr == NULL)
return 0;
return attr->flag & MU_ATTRIBUTE_RECENT;
}
int
attribute_unset_seen (attribute_t attr)
{
if (attr == NULL)
return 0;
attr->flag &= ~MU_ATTRIBUTE_SEEN;
return 0;
}
int
attribute_unset_answered (attribute_t attr)
{
if (attr == NULL)
return 0;
attr->flag &= ~MU_ATTRIBUTE_ANSWERED;
return 0;
}
int
attribute_unset_flagged (attribute_t attr)
{
if (attr == NULL)
return 0;
attr->flag &= ~MU_ATTRIBUTE_FLAGGED;
return 0;
}
int
attribute_unset_read (attribute_t attr)
{
if (attr == NULL)
return 0;
attr->flag &= ~MU_ATTRIBUTE_READ;
return 0;
}
int
attribute_unset_deleted (attribute_t attr)
{
if (attr == NULL)
return 0;
attr->flag &= ~MU_ATTRIBUTE_DELETED;
return 0;
}
int
attribute_unset_draft (attribute_t attr)
{
if (attr == NULL)
return 0;
attr->flag &= ~MU_ATTRIBUTE_DRAFT;
return 0;
}
int
attribute_unset_recent (attribute_t attr)
{
if (attr == NULL)
return 0;
attr->flag &= ~MU_ATTRIBUTE_RECENT;
return 0;
}
int
attribute_is_equal (attribute_t attr, attribute_t attr2)
{
if (attr == NULL || attr2 == NULL)
return 0;
return attr->flag == attr2->flag;
}
int
attribute_copy (attribute_t dest, attribute_t src)
{
if (dest == NULL || src == NULL)
return EINVAL;
memcpy (dest, src, sizeof (*dest));
return 0;
}
int
string_to_attribute (const char *buffer, size_t len,
attribute_t *pattr, void *owner)
{
char *sep;
int status;
status = attribute_create (pattr, owner);
if (status != 0)
return status;
/* Set the attribute */
if (len > 7 && strncasecmp (buffer, "Status:", 7) == 0)
{
sep = strchr(buffer, ':'); /* pass the ':' */
if (strchr (sep, 'R') != NULL || strchr (sep, 'r') != NULL)
attribute_set_read (*pattr);
if (strchr (sep, 'O') != NULL || strchr (sep, 'o') != NULL)
attribute_set_seen (*pattr);
if (strchr (sep, 'A') != NULL || strchr (sep, 'a') != NULL)
attribute_set_answered (*pattr);
if (strchr (sep, 'F') != NULL || strchr (sep, 'f') != NULL)
attribute_set_flagged (*pattr);
}
return 0;
}