aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-mime-part-utils.c
blob: bd0ad1954623c006473d23cc7639a5ee2f8972c6 (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
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/* camel-mime-part-utils : Utility for mime parsing and so on */


/* 
 *
 * Author : 
 *  Bertrand Guiheneuf <bertrand@helixcode.com>
 *
 * Copyright 1999, 2000 Helix Code, Inc. (http://www.helixcode.com)
 *
 * This program is free software; you can redistribute it and/or 
 * modify it under the terms of the GNU 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 * USA
 */
#include <config.h>
#include "gmime-content-field.h"
#include "string-utils.h"
#include "camel-log.h"
#include "gmime-utils.h"
#include "camel-simple-data-wrapper.h"
#include "data-wrapper-repository.h" 
 
#include "camel-mime-part-utils.h"



/* declare this function because it is public
   but it must not be called except here */
void        camel_mime_part_set_content_type              (CamelMimePart *mime_part, 
                               gchar *content_type);


void
camel_mime_part_construct_headers_from_stream (CamelMimePart *mime_part, 
                           CamelStream *stream)
{
    GArray *header_array;
    Rfc822Header *cur_header;
    int i;

    CAMEL_LOG_FULL_DEBUG ("CamelMimePartUtils:: "
                  "Entering _construct_headers_from_stream\n");
    g_assert (stream);
    CAMEL_LOG_FULL_DEBUG ("CamelMimePartUtils::construct_headers_from_stream "
                  "parsing headers\n");
    /* 
     * parse all header lines 
     */
    header_array = get_header_array_from_stream (stream);
    if (header_array) {
        for (i=0; i<header_array->len; i++) {
            cur_header = (Rfc822Header *)header_array->data + i;
            camel_medium_add_header ( CAMEL_MEDIUM (mime_part), 
                          cur_header->name, 
                          cur_header->value);
            g_free (cur_header->name);
            g_free (cur_header->value);
        }

        g_array_free (header_array, TRUE);

        CAMEL_LOG_FULL_DEBUG ("CamelMimePartUtils::construct_headers_from_stream headers parsed. Leaving\n");
    }
}





void
camel_mime_part_construct_content_from_stream (CamelMimePart *mime_part, 
                           CamelStream *stream)
{
    GMimeContentField *content_type = NULL;
    gchar *mime_type = NULL;
    GtkType content_object_type;
    CamelDataWrapper *content_object = NULL;
    
    
    /* 
     * find content mime type 
     */
    CAMEL_LOG_FULL_DEBUG ("CamelMimePartUtils::construct_content_from_stream "
                  "parsing content\n");

    content_type = camel_mime_part_get_content_type (mime_part);
    /* here we should have a mime type */
    if (content_type)
        mime_type = gmime_content_field_get_mime_type (content_type);

    /* 
     * no mime type found for the content, 
     * using text/plain is the default 
     */
    if (!mime_type) {
        CAMEL_LOG_FULL_DEBUG ("CamelMimePartUtils::construct_content_from_stream "
                      "content type field not found " 
                      "using default \"text/plain\"\n");
        mime_type = g_strdup ("text/plain");
        camel_mime_part_set_content_type (mime_part, mime_type);
    }
    
    /* 
     * find in the repository what particular data wrapper is 
     * associated to this mime type 
     */
    content_object_type = 
        data_wrapper_repository_get_data_wrapper_type (mime_type);
    CAMEL_LOG_FULL_DEBUG ("CamelMimePartUtils::construct_content_from_stream content"
                  " type object type used: %s\n", 
                  gtk_type_name (content_object_type));

    g_free (mime_type);

    /* 
     * create the content object data wrapper with the type 
     * returned by the data wrapper repository 
     */
    content_object = CAMEL_DATA_WRAPPER (gtk_type_new (content_object_type));
    camel_data_wrapper_set_mime_type_field (content_object, 
                        camel_mime_part_get_content_type (mime_part));
    camel_medium_set_content_object ( CAMEL_MEDIUM (mime_part), content_object);

    /* set the input stream for the content object */
    camel_data_wrapper_set_input_stream (content_object, stream);

    /* 
     * the object is referenced in the set_content_object method, 
     * so unref it here 
     */
    gtk_object_unref (GTK_OBJECT (content_object));
    
    
    CAMEL_LOG_FULL_DEBUG ("CamelMimePartUtils::construct_content_from_stream "
                  "content parsed\n");
        
    CAMEL_LOG_FULL_DEBUG ("CamelMimePartUtils:: Leaving _construct_content_from_stream\n");
}



void
camel_mime_part_store_stream_in_buffer (CamelMimePart *mime_part, 
                    CamelStream *stream)
{
    gint nb_bytes_read_total = 0;
    gint nb_bytes_read_chunk;
    GByteArray *buffer;
#define STREAM_READ_CHUNK_SZ  100

    CAMEL_LOG_FULL_DEBUG ("CamelMimePartUtils::store_stream_in_buffer entering\n");

    if (mime_part->temp_message_buffer == NULL)
        mime_part->temp_message_buffer = g_byte_array_new ();
    
    buffer = mime_part->temp_message_buffer;

    g_byte_array_set_size (buffer, nb_bytes_read_total + STREAM_READ_CHUNK_SZ);
    nb_bytes_read_chunk = camel_stream_read (stream,
                         buffer->data + nb_bytes_read_total, 
                         STREAM_READ_CHUNK_SZ);

    if (nb_bytes_read_chunk>0) {
        nb_bytes_read_total += nb_bytes_read_chunk;
        
        while (nb_bytes_read_chunk >0) {
            g_byte_array_set_size (buffer, nb_bytes_read_total + STREAM_READ_CHUNK_SZ);
            nb_bytes_read_chunk = camel_stream_read (stream,
                                 buffer->data + nb_bytes_read_total, 
                                 STREAM_READ_CHUNK_SZ);
            nb_bytes_read_total += nb_bytes_read_chunk;
        }
    }

    g_byte_array_set_size (buffer, nb_bytes_read_total);
    CAMEL_LOG_FULL_DEBUG ("CamelMimePartUtils::store_stream_in_buffer entering\n");

}