-
Notifications
You must be signed in to change notification settings - Fork 114
/
response.c
103 lines (88 loc) · 2.67 KB
/
response.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
/*
Copyright (C) 2011 Raphters authors,
This file is part of Raphters.
Raphters 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 3 of the License, or
(at your option) any later version.
Raphters 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 this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "response.h"
#include "fcgi_stdio.h"
#include "stdlib.h"
#include "stdbool.h"
#include "string.h"
struct header {
char *name;
char *value;
struct header *next;
};
typedef struct header header;
struct text_segment {
char *text;
struct text_segment *next;
};
typedef struct text_segment text_segment;
struct response {
header *header_head;
header *header_tail;
text_segment *segment_head;
text_segment *segment_tail;
};
response *response_empty() {
response *result = malloc(sizeof(response));
result->header_head = NULL;
result->header_tail = NULL;
result->segment_head = NULL;
result->segment_tail = NULL;
return result;
}
void response_write(response *res, const char *text) {
text_segment *segment = malloc(sizeof(text_segment));
segment->text = strdup(text);
segment->next = NULL;
if (res->segment_head == NULL) {
res->segment_head = segment;
} else {
res->segment_tail->next = segment;
}
res->segment_tail = segment;
}
void response_add_header(response *res, const char *name, const char *val) {
header *h = malloc(sizeof(header));
h->name = strdup(name);
h->value = strdup(val);
h->next = NULL;
if (res->header_head == NULL) {
res->header_head = h;
} else {
res->header_tail->next = h;
}
res->header_tail = h;
}
void response_send(response *res) {
header *cur_h;
for (cur_h = res->header_head; cur_h != NULL;) {
printf("%s: %s\n", cur_h->name, cur_h->value);
free(cur_h->name);
free(cur_h->value);
header *next = cur_h->next;
free(cur_h);
cur_h = next;
}
printf("\n");
text_segment *cur_s;
for (cur_s = res->segment_head; cur_s != NULL;) {
printf("%s", cur_s->text);
free(cur_s->text);
text_segment *next = cur_s->next;
free(cur_s);
cur_s = next;
}
free(res);
}