chiark / gitweb /
doc: Document summary values of TOFU_STATS
[gnupg2.git] / tools / mime-parser.h
1 /* mime-parser.h - Parse MIME structures (high level rfc822 parser).
2  * Copyright (C) 2016 g10 Code GmbH
3  *
4  * This file is part of GnuPG.
5  *
6  * GnuPG is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * GnuPG is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, see <https://www.gnu.org/licenses/>.
18  */
19
20 #ifndef GNUPG_MIME_PARSER_H
21 #define GNUPG_MIME_PARSER_H
22
23 struct mime_parser_context_s;
24 typedef struct mime_parser_context_s *mime_parser_t;
25
26 gpg_error_t mime_parser_new (mime_parser_t *r_ctx, void *cookie);
27 void        mime_parser_release (mime_parser_t ctx);
28
29 void mime_parser_set_verbose (mime_parser_t ctx, int level);
30 void mime_parser_set_new_part (mime_parser_t ctx,
31                                gpg_error_t (*fnc) (void *cookie,
32                                                    const char *mediatype,
33                                                    const char *mediasubtype));
34 void mime_parser_set_part_data (mime_parser_t ctx,
35                                 gpg_error_t (*fnc) (void *cookie,
36                                                     const void *data,
37                                                     size_t datalen));
38 void mime_parser_set_collect_encrypted (mime_parser_t ctx,
39                                         gpg_error_t (*fnc) (void *cookie,
40                                                             const char *data));
41 void mime_parser_set_collect_signeddata (mime_parser_t ctx,
42                                          gpg_error_t (*fnc) (void *cookie,
43                                                              const char *data));
44 void mime_parser_set_collect_signature (mime_parser_t ctx,
45                                         gpg_error_t (*fnc) (void *cookie,
46                                                             const char *data));
47
48 gpg_error_t mime_parser_parse (mime_parser_t ctx, estream_t fp);
49
50
51 /* Duplicated declaration of the RFC822 parser context. */
52 struct rfc822parse_context;
53 typedef struct rfc822parse_context *rfc822parse_t;
54
55 rfc822parse_t mime_parser_rfc822parser (mime_parser_t ctx);
56
57
58
59 #endif /*GNUPG_MIME_PARSER_H*/