forked from etr/libhttpserver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhttp_response.cpp
More file actions
172 lines (155 loc) · 5.77 KB
/
http_response.cpp
File metadata and controls
172 lines (155 loc) · 5.77 KB
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
/*
This file is part of libhttpserver
Copyright (C) 2011 Sebastiano Merlino
This library 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 2.1 of the License, or (at your option) any later version.
This library 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 library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <cstdio>
#include "http_utils.hpp"
#include "webserver.hpp"
#include "http_response.hpp"
#include <iostream>
using namespace std;
namespace httpserver
{
const std::vector<std::pair<std::string, std::string> > http_response::get_headers()
{
std::vector<std::pair<std::string, std::string> > to_ret;
std::map<std::string, std::string, header_comparator>::const_iterator it;
for(it = headers.begin(); it != headers.end(); ++it)
to_ret.push_back(*it);
return to_ret;
}
size_t http_response::get_headers(std::vector<std::pair<std::string, std::string> >& result)
{
std::map<std::string, std::string, header_comparator>::const_iterator it;
for(it = headers.begin(); it != headers.end(); ++it)
result.push_back(*it);
return result.size();
}
size_t http_response::get_headers(std::map<std::string, std::string, header_comparator>& result)
{
result = this->headers;
return result.size();
}
const std::vector<std::pair<std::string, std::string> > http_response::get_footers()
{
std::vector<std::pair<std::string, std::string> > to_ret;
std::map<std::string, std::string, header_comparator>::const_iterator it;
for(it = footers.begin(); it != footers.end(); ++it)
to_ret.push_back(*it);
return to_ret;
}
size_t http_response::get_footers(std::vector<std::pair<std::string, std::string> >& result)
{
std::map<std::string, std::string, arg_comparator>::const_iterator it;
for(it = footers.begin(); it != footers.end(); ++it)
result.push_back(*it);
return result.size();
}
size_t http_response::get_footers(std::map<std::string, std::string, header_comparator>& result)
{
result = this->footers;
return result.size();
}
//RESPONSE
shoutCAST_response::shoutCAST_response
(
const std::string& content,
int response_code,
const std::string& content_type,
bool autodelete
):
http_response(http_response::SHOUTCAST_CONTENT, content, response_code | http_utils::shoutcast_response, content_type, autodelete)
{
}
void http_response::get_raw_response(MHD_Response** response, bool* found, webserver* ws)
{
size_t size = &(*content.end()) - &(*content.begin());
*response = MHD_create_response_from_buffer(size, (void*) content.c_str(), MHD_RESPMEM_PERSISTENT);
}
void http_file_response::get_raw_response(MHD_Response** response, bool* found, webserver* ws)
{
char* page = NULL;
size_t size = http::load_file(filename.c_str(), &page);
if(size)
*response = MHD_create_response_from_buffer(size, page, MHD_RESPMEM_MUST_FREE);
else
*found = false;
}
void long_polling_receive_response::get_raw_response(MHD_Response** response, bool* found, webserver* ws)
{
#ifdef USE_COMET
this->ws = ws;
this->connection_id = MHD_get_connection_info(this->underlying_connection, MHD_CONNECTION_INFO_FD)->socket_fd;
*response = MHD_create_response_from_callback(MHD_SIZE_UNKNOWN, 80,
&long_polling_receive_response::data_generator, (void*) this, NULL);
ws->register_to_topics(topics, connection_id, keepalive_secs, keepalive_msg);
#else //USE_COMET
http_response::get_raw_response(response, found, ws);
#endif //USE_COMET
}
ssize_t long_polling_receive_response::data_generator (void* cls, uint64_t pos, char* buf, size_t max)
{
#ifdef USE_COMET
long_polling_receive_response* _this = static_cast<long_polling_receive_response*>(cls);
if(_this->ws->pop_signaled(_this->connection_id))
{
string message;
int size = _this->ws->read_message(_this->connection_id, message);
memcpy(buf, message.c_str(), size);
return size;
}
else
return 0;
#else //USE_COMET
return 0;
#endif //USE_COMET
}
void long_polling_send_response::get_raw_response(MHD_Response** response, bool* found, webserver* ws)
{
http_response::get_raw_response(response, found, ws);
#ifdef USE_COMET
ws->send_message_to_topic(send_topic, content);
#endif //USE_COMET
}
void clone_response(const http_response& hr, http_response** dhrs)
{
switch(hr.response_type)
{
case(http_response::STRING_CONTENT):
*dhrs = new http_string_response(hr);
return;
case(http_response::FILE_CONTENT):
*dhrs = new http_file_response(hr);
return;
case(http_response::SHOUTCAST_CONTENT):
*dhrs = new shoutCAST_response(hr);
return;
case(http_response::DIGEST_AUTH_FAIL):
*dhrs = new http_digest_auth_fail_response(hr);
return;
case(http_response::BASIC_AUTH_FAIL):
*dhrs = new http_basic_auth_fail_response(hr);
return;
case(http_response::SWITCH_PROTOCOL):
*dhrs = new switch_protocol_response(hr);
return;
case(http_response::LONG_POLLING_RECEIVE):
*dhrs = new long_polling_receive_response(hr);
return;
case(http_response::LONG_POLLING_SEND):
*dhrs = new long_polling_send_response(hr);
return;
}
}
};