2011-08-30 [colin] 3.7.10cvs8
[claws.git] / src / procheader.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2011 Hiroyuki Yamamoto and the Claws Mail team
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
17  * 
18  */
19
20 #ifndef __PROCHEADER_H__
21 #define __PROCHEADER_H__
22
23 #include <glib.h>
24 #include <stdio.h>
25 #include <time.h>
26
27 #include "procmsg.h"
28
29 typedef struct _HeaderEntry     HeaderEntry;
30 typedef struct _Header          Header;
31
32 struct _HeaderEntry
33 {
34         gchar    *name;
35         gchar    *body;
36         gboolean  unfold;
37 };
38
39 struct _Header
40 {
41         gchar *name;
42         gchar *body;
43 };
44
45 gint procheader_get_one_field           (gchar          *buf,
46                                          size_t          len,
47                                          FILE           *fp,
48                                          HeaderEntry     hentry[]);
49 gint procheader_get_one_field_asis      (gchar          *buf,
50                                          size_t          len,
51                                          FILE           *fp);
52 gchar *procheader_get_unfolded_line     (gchar          *buf,
53                                          size_t          len,
54                                          FILE           *fp);
55
56 GPtrArray *procheader_get_header_array_asis     (FILE           *fp);
57 void procheader_header_array_destroy            (GPtrArray      *harray);
58 void procheader_header_free                     (Header         *header);
59
60 void procheader_get_header_fields       (FILE           *fp,
61                                          HeaderEntry     hentry[]);
62 MsgInfo *procheader_parse_file          (const gchar    *file,
63                                          MsgFlags        flags,
64                                          gboolean        full,
65                                          gboolean        decrypted);
66 MsgInfo *procheader_parse_str           (const gchar    *str,
67                                          MsgFlags        flags,
68                                          gboolean        full,
69                                          gboolean        decrypted);
70 MsgInfo *procheader_parse_stream        (FILE           *fp,
71                                          MsgFlags        flags,
72                                          gboolean        full,
73                                          gboolean        decrypted);
74
75 gchar *procheader_get_fromname          (const gchar    *str);
76
77 gboolean procheader_date_parse_to_tm    (const gchar    *str,
78                                          struct tm      *t,
79                                          char           *zone);
80
81 time_t procheader_date_parse            (gchar          *dest,
82                                          const gchar    *src,
83                                          gint            len);
84 void procheader_date_get_localtime      (gchar          *dest,
85                                          gint            len,
86                                          const time_t    timer);
87 Header * procheader_parse_header        (gchar * buf);
88
89 gboolean procheader_headername_equal    (char * hdr1, char * hdr2);
90 void procheader_header_free             (Header * header);
91
92 gint procheader_get_header_from_msginfo(MsgInfo *msginfo, gchar *buf, gint len,gchar *header);
93 #endif /* __PROCHEADER_H__ */