-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstream_article.c
174 lines (137 loc) · 4.19 KB
/
stream_article.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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
/*
$NiH: stream_article.c,v 1.5 2002/04/16 22:46:11 wiz Exp $
stream_article.c -- read article
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 <[email protected]>
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 <ctype.h>
#include <errno.h>
#include <stddef.h>
#include <string.h>
#include "header.h"
#include "mime.h"
#include "stream.h"
#include "stream_types.h"
#include "util.h"
enum art_state { AR_EMPTY, AR_HEADER, AR_BODY };
struct stream_art {
stream st;
enum art_state state;
int kept; /* have we kept (part of) a header */
int bufno; /* buffer number to use for next header */
char *buf[2]; /* buffers */
int buflen[2]; /* length of line in buffers */
int buf_alen[2]; /* allocation length of buffers */
};
static int art_close(struct stream_art *st);
static token *art_get(struct stream_art *st);
static void grow_buffer(struct stream_art *this, int bufno, int size);
stream *
stream_article_open(struct stream *source)
{
struct stream_art *this;
this = (struct stream_art *)stream_new(sizeof(struct stream_art),
art_get, art_close, source);
this->state = AR_EMPTY;
this->bufno = this->kept = 0;
this->buflen[0] = this->buflen[1] = 0;
this->buf_alen[0] = this->buf_alen[1] = 0;
this->buf[0] = this->buf[1] = NULL;
return (stream *)this;
}
static int
art_close(struct stream_art *this)
{
/* XXX: skip to EOF? */
free(this->buf[0]);
free(this->buf[1]);
stream_free((stream *)this);
return 0;
}
static token *
art_get(struct stream_art *this)
{
token *t;
int len;
for (;;) {
t=stream_get(this->st.source);
if (this->state != AR_BODY) {
if (t->type == TOK_LINE) {
len = strlen(t->line);
if (len == 0) {
if (this->kept) {
token_set(stream_enqueue((stream *)this),
TOK_LINE, this->buf[this->bufno]);
this->kept = 0;
this->bufno = 1-this->bufno;
}
this->state = AR_BODY;
return token_set(&this->st.tok, TOK_EOH, NULL);
}
else if (!isspace(t->line[0])) {
/* XXX: check if valid header line */
this->state = AR_HEADER;
this->bufno = 1-this->bufno;
if (len+1 >= this->buf_alen[this->bufno])
grow_buffer(this, this->bufno, len+1);
strcpy(this->buf[this->bufno], t->line);
this->buflen[this->bufno] = len;
if (this->kept) {
return token_set(&this->st.tok,
TOK_LINE, this->buf[1-this->bufno]);
}
else
this->kept = 1;
}
else {
if (this->buflen[this->bufno]+len+1
>= this->buf_alen[this->bufno])
grow_buffer(this, this->bufno,
this->buflen[this->bufno]+len+1);
strcpy(this->buf[this->bufno]+this->buflen[this->bufno],
t->line);
this->buflen[this->bufno] += len;
}
}
else if (t->type == TOK_EOA || t->type == TOK_EOF) {
if (this->kept) {
token_set(stream_enqueue((stream *)this),
TOK_LINE, this->buf[this->bufno]);
this->kept = 0;
this->bufno = 1-this->bufno;
}
if (this->state == AR_HEADER)
token_set(stream_enqueue((stream *)this), TOK_EOH, NULL);
return t;
}
else
return t;
}
else {
if (t->type == TOK_EOA)
this->state = AR_EMPTY;
return t;
}
}
}
static void
grow_buffer(struct stream_art *this, int bufno, int size)
{
if (this->buf_alen[bufno] == 0)
this->buf_alen[bufno] = 64;
while (this->buf_alen[bufno] <= size)
this->buf_alen[bufno] *= 2;
this->buf[bufno] = xrealloc(this->buf[bufno], this->buf_alen[bufno]);
}