aboutsummaryrefslogtreecommitdiffstats
path: root/em-format/e-mail-parser-extension.c
blob: 5497d3a1c600fbd0f91289f5ccedebdec0f34a8a (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
/*
 * e-mail-parser-extension.c
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) version 3.
 *
 * 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with the program; if not, see <http://www.gnu.org/licenses/>
 *
 */

#include <camel/camel.h>

#include "e-mail-parser-extension.h"

G_DEFINE_INTERFACE (
    EMailParserExtension,
    e_mail_parser_extension,
    G_TYPE_OBJECT)

static guint32
mail_parser_extension_get_flags (EMailParserExtension *extension)
{
    return 0;
}

/**
 * EMailParserExtension:
 *
 * The #EMailParserExtension is an abstract interface for all extensions for
 * #EMailParser.
 */

static void
e_mail_parser_extension_default_init (EMailParserExtensionInterface *interface)
{
    interface->get_flags = mail_parser_extension_get_flags;
}

/**
 * e_mail_parser_extension_parse
 * @extension: an #EMailParserExtension
 * @parser: a #EMailParser
 * @mime_part: (allow-none) a #CamelMimePart to parse
 * @part_id: a #GString to which parser will append ID of the parsed part.
 * @flags: #EMailParserFlags
 * @cancellable: (allow-none) A #GCancellable
 * @out_mail_parts: a #GQueue to deposit #EMailPart instances
 *
 * A virtual function reimplemented in all mail parser extensions. The function
 * decodes and parses the @mime_part, appending one or more #EMailPart<!-//>s
 * to the @out_mail_parts queue.
 *
 * When the function is unable to parse the @mime_part (either because it's
 * broken or because it is a different MIME type then the extension is
 * specialized for), the function will return %FALSE to indicate to the
 * #EMailParser that it should pick another extension.
 *
 * When the @mime_part contains for example multipart/mixed of one RFC822
 * message with an attachment and of one image, then parser must make sure
 * that parts are appeded to @out_mail_parts in the correct order.
 *
 * part1.rfc822.plain_text
 * part1.rfc822.attachment
 * part2.image
 *
 * Implementation of this function must be thread-safe.
 *
 * Returns: %TRUE if the @mime_part was handled (even if no
 *          #EMailPart<!-//>s were added to @out_mail_parts), or
 *          %FALSE if the @mime_part was not handled
 */
gboolean
e_mail_parser_extension_parse (EMailParserExtension *extension,
                               EMailParser *parser,
                               CamelMimePart *mime_part,
                               GString *part_id,
                               GCancellable *cancellable,
                               GQueue *out_mail_parts)
{
    EMailParserExtensionInterface *interface;

    g_return_val_if_fail (E_IS_MAIL_PARSER_EXTENSION (extension), FALSE);
    g_return_val_if_fail (E_IS_MAIL_PARSER (parser), FALSE);

    interface = E_MAIL_PARSER_EXTENSION_GET_INTERFACE (extension);
    g_return_val_if_fail (interface->parse != NULL, FALSE);

    /* Check for cancellation before calling the method. */
    if (g_cancellable_is_cancelled (cancellable))
        return FALSE;

    return interface->parse (
        extension, parser, mime_part, part_id,
        cancellable, out_mail_parts);
}

guint32
e_mail_parser_extension_get_flags (EMailParserExtension *extension)
{
    EMailParserExtensionInterface *interface;

    g_return_val_if_fail (E_IS_MAIL_PARSER_EXTENSION (extension), 0);

    interface = E_MAIL_PARSER_EXTENSION_GET_INTERFACE (extension);
    g_return_val_if_fail (interface->get_flags != NULL, 0);

    return interface->get_flags (extension);
}