6 * Copyright (C) 2010 SIPE Project <http://sipe.sourceforge.net/>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 #include <gmime/gmime.h>
28 #include "sipe-common.h"
29 #include "sipe-mime.h"
31 #include "sipe-backend.h"
33 struct gmime_callback_data
{
34 sipe_mime_parts_cb callback
;
38 static void gmime_callback(SIPE_UNUSED_PARAMETER GMimeObject
*parent
,
42 GMimeDataWrapper
*data
= g_mime_part_get_content_object((GMimePart
*)part
);
45 GMimeStream
*stream
= g_mime_data_wrapper_get_stream(data
);
48 ssize_t length
= g_mime_stream_length(stream
);
51 gchar
*content
= g_malloc(length
+ 1);
53 if (g_mime_stream_read(stream
, content
, length
) == length
) {
54 struct gmime_callback_data
*cd
= user_data
;
55 gchar
*type_name
= g_mime_content_type_to_string(
56 g_mime_object_get_content_type(part
));
58 SIPE_DEBUG_INFO("sipe_mime_parts_foreach: type '%s' length %" G_GSSIZE_FORMAT
, type_name
, length
);
60 (*(cd
->callback
))(cd
->user_data
, type_name
, content
, length
);
66 g_object_unref(stream
);
71 void sipe_mime_parts_foreach(const gchar
*type
,
73 sipe_mime_parts_cb callback
,
76 gchar
*doc
= g_strdup_printf("Content-Type: %s\r\n\r\n%s", type
, body
);
77 GMimeStream
*stream
= g_mime_stream_mem_new_with_buffer(doc
, strlen(doc
));
80 GMimeParser
*parser
= g_mime_parser_new_with_stream(stream
);
81 GMimeMultipart
*multipart
= (GMimeMultipart
*)g_mime_parser_construct_part(parser
);
84 struct gmime_callback_data cd
= {callback
, user_data
};
86 SIPE_DEBUG_INFO("sipe_mime_parts_foreach: %d parts", g_mime_multipart_get_count(multipart
));
88 g_mime_multipart_foreach(multipart
, gmime_callback
, &cd
);
91 g_object_unref(parser
);
92 g_object_unref(stream
);