summaryrefslogtreecommitdiffstats
path: root/comm/mailnews/mime/src/mimepbuf.h
blob: b0e19ca379219c33e485c977fb3981b8437cd655 (plain)
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
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#ifndef _MIMEPBUF_H_
#define _MIMEPBUF_H_

#include "mimei.h"
#include "modmimee.h"  // for MimeConverterOutputCallback

/* This file provides the ability to save up the entire contents of a MIME
   object (of arbitrary size), and then emit it all at once later.  The
   buffering is done in an efficient way that works well for both very large
   and very small objects.

   This is used in two places:

   = The implementation of multipart/alternative uses this code to do a
     one-part-lookahead.  As it traverses its children, it moves forward
     until it finds a part which cannot be displayed; and then it displays
     the *previous* part (the last which *could* be displayed.)  This code
     is used to hold the previous part until it is needed.
*/

/* An opaque object used to represent the buffered data.
 */
typedef struct MimePartBufferData MimePartBufferData;

/* Create an empty part buffer object.
 */
extern MimePartBufferData* MimePartBufferCreate(void);

/* Assert that the buffer is now full (EOF has been reached on the current
   part.)  This will free some resources, but leaves the part in the buffer.
   After calling MimePartBufferReset, the buffer may be used to store a
   different object.
 */
void MimePartBufferClose(MimePartBufferData* data);

/* Reset a part buffer object to the default state, discarding any currently-
   buffered data.
 */
extern void MimePartBufferReset(MimePartBufferData* data);

/* Free the part buffer itself, and discard any buffered data.
 */
extern void MimePartBufferDestroy(MimePartBufferData* data);

/* Push a chunk of a MIME object into the buffer.
 */
extern int MimePartBufferWrite(MimePartBufferData* data, const char* buf,
                               int32_t size);

/* Read the contents of the buffer back out.  This will invoke the provided
   read_fn with successive chunks of data until the buffer has been drained.
   The provided function may be called once, or multiple times.
 */
extern int MimePartBufferRead(MimePartBufferData* data,
                              MimeConverterOutputCallback read_fn,
                              void* closure);

#endif /* _MIMEPBUF_H_ */