-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathheader.c
135 lines (106 loc) · 2.63 KB
/
header.c
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
/*
$NiH: header.c,v 1.10 2002/04/10 16:23:28 wiz Exp $
header.c -- RFC 822 header parsing
Copyright (C) 2002 Dieter Baron and Thomas Klausner
This file is part of cg, a program to assemble and decode binary Usenet
postings. The authors can be contacted at <nih@giga.or.at>
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., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "util.h"
#include "header.h"
#define HDR_MAX 5
char *hdr_string[HDR_MAX] = {
"Subject",
"Mime-Version",
"Content-Type",
"Content-Transfer-Encoding",
"Content-Disposition"
};
symbol hdr_sym[HDR_MAX];
void
header_init(void)
{
int i;
for (i=0; i<HDR_MAX; i++)
hdr_sym[i] = intern(hdr_string[i]);
}
struct header *
header_read(stream *in, out_state *out)
{
struct header h, *act;
token *t;
char *p;
act = &h;
h.next = NULL;
h.value = NULL;
h.type = NULL;
while ((t=stream_get(in))->type != TOK_EOH && t->type != TOK_EOF) {
if (t->type == TOK_LINE) {
if (strncmp(t->line, "From ", 5) == 0) {
/* mbox envelope */
continue;
}
else {
for (p=t->line; (*p > ' ') && (*p < 127); p++) {
if (*p == ':') {
if ((*(p+1) == ' ') || (*(p+1) == '\t')) {
*(p++) = '\0';
act->next = xmalloc(sizeof(struct header));
act = act->next;
act->next = NULL;
act->value = NULL;
if ((act->type=intern_caps(t->line)) == NULL) {
/* XXX: better handling */
break;
}
p = p + strspn (p, " \t");
if (strlen(p) > 0)
act->value = xstrdup(p);
break;
}
else {
/* not really a header after all */
break;
}
}
}
}
}
else
output(out, t);
}
return h.next;
}
void
header_free(struct header *h)
{
struct header *h2;
while (h) {
h2 = h;
h = h->next;
free(h2->value);
free(h2);
}
}
char *
header_get(struct header *h, symbol field)
{
for (; h; h=h->next) {
if (h->type == field)
return h->value;
}
return NULL;
}