body.c
7.75 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
/* 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 <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <mailutils/stream.h>
#include <body0.h>
static int lazy_create __P ((body_t));
static int _body_flush __P ((stream_t));
static int _body_get_fd __P ((stream_t, int *));
static int _body_read __P ((stream_t, char *, size_t, off_t, size_t *));
static int _body_readline __P ((stream_t, char *, size_t, off_t, size_t *));
static int _body_write __P ((stream_t, const char *, size_t, off_t, size_t *));
static int _body_truncate __P ((stream_t, off_t));
static int _body_size __P ((stream_t, off_t *));
int
body_create (body_t *pbody, void *owner)
{
body_t body;
if (pbody == NULL || owner == NULL)
return EINVAL;
body = calloc (1, sizeof (*body));
if (body == NULL)
return ENOMEM;
body->owner = owner;
*pbody = body;
return 0;
}
void
body_destroy (body_t *pbody, void *owner)
{
if (pbody && *pbody)
{
body_t body = *pbody;
if (body->owner == owner)
{
if (body->filename)
{
/* FIXME: should we do this? */
remove (body->filename);
free (body->filename);
}
if (body->stream)
stream_destroy (&(body->stream), body);
if (body->fstream)
{
stream_close (body->fstream);
stream_destroy (&(body->fstream), NULL);
}
if (body->property)
property_destroy (&(body->property), body);
free (body);
}
*pbody = NULL;
}
}
void *
body_get_owner (body_t body)
{
return (body) ? body->owner : NULL;
}
/* FIXME: not implemented. */
int
body_is_modified (body_t body)
{
(void)body;
return 0;
}
/* FIXME: not implemented. */
int
body_clear_modified (body_t body)
{
(void)body;
return 0;
}
int
body_set_property (body_t body, property_t property, void *owner)
{
if (body == NULL)
return EINVAL;
if (body->owner != owner)
return EACCES;
property_destroy (&(body->property), body);
body->property = property;
return 0;
}
int
body_get_property (body_t body, property_t *pproperty)
{
if (body == NULL || pproperty == NULL)
return EINVAL;
if (body->property == NULL)
{
int status = property_create (&(body->property), body);
if (status != 0)
return status;
}
*pproperty = body->property;
return 0;
}
int
body_get_filename (body_t body, char *filename, size_t len, size_t *pn)
{
int n = 0;
if (body == NULL)
return EINVAL;
if (body->filename)
{
n = strlen (body->filename);
if (filename && len > 0)
{
len--; /* Space for the null. */
strncpy (filename, body->filename, len)[len] = '\0';
}
}
if (pn)
*pn = n;
return 0;
}
int
body_get_stream (body_t body, stream_t *pstream)
{
if (body == NULL || pstream == NULL)
return EINVAL;
if (body->stream == NULL)
{
int fd;
int status = stream_create (&(body->stream), MU_STREAM_RDWR, body);
if (status != 0)
return status;
status = file_stream_create (&(body->fstream));
if (status != 0)
return status;
fd = lazy_create (body);
if (fd == -1)
return errno;
status = stream_open (body->fstream, body->filename, 0, MU_STREAM_RDWR);
close (fd);
if (status != 0)
return status;
stream_set_fd (body->stream, _body_get_fd, body);
stream_set_read (body->stream, _body_read, body);
stream_set_readline (body->stream, _body_readline, body);
stream_set_write (body->stream, _body_write, body);
stream_set_truncate (body->stream, _body_truncate, body);
stream_set_size (body->stream, _body_size, body);
stream_set_flush (body->stream, _body_flush, body);
}
*pstream = body->stream;
return 0;
}
int
body_set_stream (body_t body, stream_t stream, void *owner)
{
if (body == NULL)
return EINVAL;
if (body->owner != owner)
return EACCES;
/* make sure we destroy the old one if it is own by the body */
stream_destroy (&(body->stream), body);
body->stream = stream;
return 0;
}
int
body_set_lines (body_t body, int (*_lines)(body_t, size_t *), void *owner)
{
if (body == NULL)
return EINVAL;
if (body->owner == owner)
return EACCES;
body->_lines = _lines;
return 0;
}
int
body_lines (body_t body, size_t *plines)
{
if (body == NULL)
return EINVAL;
if (body->_lines)
return body->_lines (body, plines);
if (plines)
*plines = 0;
return 0;
}
int
body_size (body_t body, size_t *psize)
{
int status = 0;
if (body == NULL)
return EINVAL;
/* Check to see if they want to doit themselves,
* it was probably not a floating message */
if (body->_size)
return body->_size (body, psize);
/* ok we should handle this */
if (body->stream)
{
off_t off = 0;
status = stream_size (body->stream, &off);
if (status == 0)
if (psize)
*psize = off;
}
else if (body->filename)
{
struct stat st;
if (stat (body->filename, &st) == 0)
{
if (psize)
*psize = st.st_size;
}
else
status = errno;
}
else if (psize)
*psize = 0;
return status;
}
int
body_set_size (body_t body, int (*_size)(body_t, size_t*) , void *owner)
{
if (body == NULL)
return EINVAL;
if (body->owner != owner)
return EACCES;
body->_size = _size;
return 0;
}
static int
_body_get_fd (stream_t stream, int *fd)
{
body_t body = stream_get_owner (stream);
return stream_get_fd (body->fstream, fd);
}
static int
_body_read (stream_t stream, char *buffer, size_t n, off_t off, size_t *pn)
{
body_t body = stream_get_owner (stream);
return stream_read (body->fstream, buffer, n, off, pn);
}
static int
_body_readline (stream_t stream, char *buffer, size_t n, off_t off, size_t *pn)
{
body_t body = stream_get_owner (stream);
return stream_readline (body->fstream, buffer, n, off, pn);
}
static int
_body_write (stream_t stream, const char *buf, size_t n, off_t off, size_t *pn)
{
body_t body = stream_get_owner (stream);
return stream_write (body->fstream, buf, n, off, pn);
}
static int
_body_truncate (stream_t stream, off_t n)
{
body_t body = stream_get_owner (stream);
return stream_truncate (body->fstream, n);
}
static int
_body_size (stream_t stream, off_t *size)
{
body_t body = stream_get_owner (stream);
return stream_size (body->fstream, size);
}
static int
_body_flush (stream_t stream)
{
body_t body = stream_get_owner (stream);
return stream_flush (body->fstream);
}
#ifndef P_tmpdir
# define P_tmpdir "/tmp"
#endif
static int
lazy_create (body_t body)
{
const char *tmpdir = getenv ("TMPDIR");
int fd;
if (tmpdir == NULL)
tmpdir = P_tmpdir;
body->filename = calloc (strlen (tmpdir) + 1 + /* "muXXXXXX" */ 8 + 1,
sizeof (char));
if (body->filename == NULL)
return ENOMEM;
sprintf (body->filename, "%s/muXXXXXX", tmpdir);
#ifdef HAVE_MKSTEMP
fd = mkstemp (body->filename);
#else
if (mktemp (body->filename))
fd = open (body->filename, O_RDWR|O_CREAT|O_EXCL, 0600);
else
fd = -1;
#endif
return fd;
}