aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-mime-filter-bestenc.c
blob: eccd5111a8c11d71ed0d530226f5c8dd5e18c903 (plain) (blame)
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
/*
 *  Copyright (C) 2000 Ximian Inc.
 *
 *  Authors: Michael Zucchi <notzed@ximian.com>
 *
 *  This program is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Library General Public License
 *  as published by the Free Software Foundation; either version 2 of
 *  the License, 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 <string.h>

#include "camel-mime-filter-bestenc.h"

static void camel_mime_filter_bestenc_class_init (CamelMimeFilterBestencClass *klass);
static void camel_mime_filter_bestenc_init       (CamelMimeFilter *obj);

static CamelMimeFilterClass *camel_mime_filter_bestenc_parent;

CamelType
camel_mime_filter_bestenc_get_type (void)
{
    static CamelType type = CAMEL_INVALID_TYPE;
    
    if (type == CAMEL_INVALID_TYPE) {
        type = camel_type_register (camel_mime_filter_get_type (), "CamelMimeFilterBestenc",
                        sizeof (CamelMimeFilterBestenc),
                        sizeof (CamelMimeFilterBestencClass),
                        (CamelObjectClassInitFunc) camel_mime_filter_bestenc_class_init,
                        NULL,
                        (CamelObjectInitFunc) camel_mime_filter_bestenc_init,
                        NULL);
    }
    
    return type;
}

static void
reset(CamelMimeFilter *mf)
{
    CamelMimeFilterBestenc *f = (CamelMimeFilterBestenc *)mf;

    f->count0 = 0;
    f->count8 = 0;
    f->countline = 0;
    f->total = 0;
    f->lastc = ~0;
    f->crlfnoorder = FALSE;
    f->fromcount = 0;
    f->hadfrom = FALSE;
    f->startofline = TRUE;

    camel_charset_init(&f->charset);
}

static void
filter(CamelMimeFilter *mf, char *in, size_t len, size_t prespace, char **out, size_t *outlen, size_t *outprespace)
{
    CamelMimeFilterBestenc *f = (CamelMimeFilterBestenc *)mf;
    register unsigned char *p, *pend;

    if (len == 0)
        goto donothing;

    if (f->flags & CAMEL_BESTENC_GET_ENCODING) {
        register unsigned int /* hopefully reg's are assinged in the order they appear? */
            c,
            lastc=f->lastc, 
            countline=f->countline,
            count0=f->count0,
            count8 = f->count8;

        /* Check ^From  lines first call, or have the start of a new line waiting? */
        if ((f->flags & CAMEL_BESTENC_NO_FROM) && !f->hadfrom
            && (f->fromcount > 0 || f->startofline)) {
            if (f->fromcount + len >=5) {
                memcpy(&f->fromsave[f->fromcount], in, 5-f->fromcount);
                f->hadfrom = strncmp(f->fromsave, "From ", 5) == 0;
                f->fromcount = 0;
            } else {
                memcpy(&f->fromsave[f->fromcount], in, len);
                f->fromcount += len;
            }
        }

        f->startofline = FALSE;

        /* See rfc2045 section 2 for definitions of 7bit/8bit/binary */
        p = in;
        pend = p + len;
        while (p<pend) {
            c = *p++;
            /* check for 8 bit characters */
            if (c & 0x80)
                count8++;

            /* check for nul's */
            if (c == 0)
                count0++;

            /* check for wild '\r's in a unix format stream */
            if (c == '\r' && (f->flags & CAMEL_BESTENC_LF_IS_CRLF)) {
                f->crlfnoorder = TRUE;
            }

            /* check for end of line */
            if (c == '\n') {
                /* check for wild '\n's in canonical format stream */
                if (lastc == '\r' || (f->flags & CAMEL_BESTENC_LF_IS_CRLF)) {
                    if (countline > f->maxline)
                        f->maxline = countline;
                    countline = 0;

                    /* Check for "^From " lines */
                    if ((f->flags & CAMEL_BESTENC_NO_FROM) && !f->hadfrom) {
                        if (pend-p >= 5) {
                            f->hadfrom = strncmp(p, "From ", 5) == 0;
                        } else if (pend-p == 0) {
                            f->startofline = TRUE;
                        } else {
                            f->fromcount = pend-p;
                            memcpy(f->fromsave, p, pend-p);
                        }
                    }
                } else {
                    f->crlfnoorder = TRUE;
                }
            } else {
                countline++;
            }
            lastc = c;
        }
        f->count8 = count8;
        f->count0 = count0;
        f->countline = countline;
        f->lastc = lastc;
    }

    f->total += len;

    if (f->flags & CAMEL_BESTENC_GET_CHARSET)
        camel_charset_step(&f->charset, in, len);

donothing:
    *out = in;
    *outlen = len;
    *outprespace = prespace;
}

static void
complete(CamelMimeFilter *mf, char *in, size_t len, size_t prespace, char **out, size_t *outlen, size_t *outprespace)
{
    CamelMimeFilterBestenc *f = (CamelMimeFilterBestenc *)mf;

    filter(mf, in, len, prespace, out, outlen, outprespace);

    if (f->countline > f->maxline)
        f->maxline = f->countline;
    f->countline = 0;
}

static void
camel_mime_filter_bestenc_class_init (CamelMimeFilterBestencClass *klass)
{
    CamelMimeFilterClass *filter_class = (CamelMimeFilterClass *) klass;

    camel_mime_filter_bestenc_parent = (CamelMimeFilterClass *)(camel_type_get_global_classfuncs (camel_mime_filter_get_type ()));

    filter_class->reset = reset;
    filter_class->filter = filter;
    filter_class->complete = complete;
}

static void
camel_mime_filter_bestenc_init (CamelMimeFilter *f)
{
    reset(f);
}

/**
 * camel_mime_filter_bestenc_new:
 * @flags: A bitmask of data required.
 *
 * Create a new CamelMimeFilterBestenc object. 
 * 
 * Return value:
 **/
CamelMimeFilterBestenc *
camel_mime_filter_bestenc_new (unsigned int flags)
{
    CamelMimeFilterBestenc *new = (CamelMimeFilterBestenc *)camel_object_new(camel_mime_filter_bestenc_get_type());
    new->flags = flags;
    return new;
}

/**
 * camel_mime_filter_bestenc_get_best_encoding:
 * @f: 
 * @required: maximum level of output encoding allowed.
 * 
 * Return the best encoding, given specific constraints, that can be used to
 * encode a stream of bytes.
 * 
 * Return value: 
 **/
CamelMimePartEncodingType
camel_mime_filter_bestenc_get_best_encoding(CamelMimeFilterBestenc *f, CamelBestencEncoding required)
{
    CamelMimePartEncodingType bestenc;

#if 0
    printf("count0 = %d, count8 = %d, total = %d\n", f->count0, f->count8, f->total);
    printf("maxline = %d, crlfnoorder = %s\n", f->maxline, f->crlfnoorder?"TRUE":"FALSE");
    printf(" %d%% require encoding?\n", (f->count0+f->count8)*100 / f->total);
#endif

    /* if we're not allowed to have From lines and we had one, use an encoding
       that will never let it show.  Unfortunately only base64 can at present,
       although qp could be modified to allow it too */
    if ((f->flags & CAMEL_BESTENC_NO_FROM) && f->hadfrom)
        return CAMEL_MIME_PART_ENCODING_BASE64;

    /* if we need to encode, see how we do it */
    if (required == CAMEL_BESTENC_BINARY)
        bestenc = CAMEL_MIME_PART_ENCODING_BINARY;
    else if (f->count8 + f->count0 >= (f->total*17/100))
        bestenc = CAMEL_MIME_PART_ENCODING_BASE64;
    else
        bestenc = CAMEL_MIME_PART_ENCODING_QUOTEDPRINTABLE;
    
    /* if we have nocrlf order, or long lines, we need to encode always */
    if (f->crlfnoorder || f->maxline >= 998)
        return bestenc;

    /* if we have no 8 bit chars or nul's, we can just use 7 bit */
    if (f->count8 + f->count0 == 0)
        return CAMEL_MIME_PART_ENCODING_7BIT;

    /* otherwise, we see if we can use 8 bit, or not */
    switch(required) {
    case CAMEL_BESTENC_7BIT:
        return bestenc;
    case CAMEL_BESTENC_8BIT:
    case CAMEL_BESTENC_BINARY:
        if (f->count0 == 0)
            return CAMEL_MIME_PART_ENCODING_8BIT;
        else
            return bestenc;
    }

    return CAMEL_MIME_PART_ENCODING_DEFAULT;
}

/**
 * camel_mime_filter_bestenc_get_best_charset:
 * @f: 
 * 
 * Gets the best charset that can be used to contain this content.
 * 
 * Return value: 
 **/
const char *
camel_mime_filter_bestenc_get_best_charset(CamelMimeFilterBestenc *f)
{
    return camel_charset_best_name(&f->charset);
}

/**
 * camel_mime_filter_bestenc_set_flags:
 * @f: 
 * @flags: 
 * 
 * Set the flags for subsequent operations.
 **/
void
camel_mime_filter_bestenc_set_flags(CamelMimeFilterBestenc *f, unsigned int flags)
{
    f->flags = flags;
}