mirror of
https://github.com/yhirose/cpp-httplib.git
synced 2025-05-10 09:43:51 +00:00
Fixed #28. (Keep-Alive connection support)
This commit is contained in:
parent
ca7b942196
commit
23c8f0c738
@ -35,7 +35,7 @@ std::string log(const Request& req, const Response& res)
|
|||||||
|
|
||||||
s += "================================\n";
|
s += "================================\n";
|
||||||
|
|
||||||
snprintf(buf, sizeof(buf), "%s %s", req.method.c_str(), req.path.c_str());
|
snprintf(buf, sizeof(buf), "%s %s %s", req.method.c_str(), req.path.c_str(), req.version.c_str());
|
||||||
s += buf;
|
s += buf;
|
||||||
|
|
||||||
std::string query;
|
std::string query;
|
||||||
@ -52,9 +52,10 @@ std::string log(const Request& req, const Response& res)
|
|||||||
|
|
||||||
s += "--------------------------------\n";
|
s += "--------------------------------\n";
|
||||||
|
|
||||||
snprintf(buf, sizeof(buf), "%d\n", res.status);
|
snprintf(buf, sizeof(buf), "%d %s\n", res.status, res.version.c_str());
|
||||||
s += buf;
|
s += buf;
|
||||||
s += dump_headers(res.headers);
|
s += dump_headers(res.headers);
|
||||||
|
s += "\n";
|
||||||
|
|
||||||
if (!res.body.empty()) {
|
if (!res.body.empty()) {
|
||||||
s += res.body;
|
s += res.body;
|
||||||
@ -67,10 +68,12 @@ std::string log(const Request& req, const Response& res)
|
|||||||
|
|
||||||
int main(void)
|
int main(void)
|
||||||
{
|
{
|
||||||
|
auto version = httplib::HttpVersion::v1_1;
|
||||||
|
|
||||||
#ifdef CPPHTTPLIB_OPENSSL_SUPPORT
|
#ifdef CPPHTTPLIB_OPENSSL_SUPPORT
|
||||||
SSLServer svr(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE);
|
SSLServer svr(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE, version);
|
||||||
#else
|
#else
|
||||||
Server svr;
|
Server svr(version);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (!svr.is_valid()) {
|
if (!svr.is_valid()) {
|
||||||
|
@ -67,7 +67,7 @@ string log(const Request& req, const Response& res)
|
|||||||
|
|
||||||
s += "================================\n";
|
s += "================================\n";
|
||||||
|
|
||||||
snprintf(buf, sizeof(buf), "%s %s", req.method.c_str(), req.path.c_str());
|
snprintf(buf, sizeof(buf), "%s %s %s", req.method.c_str(), req.path.c_str(), req.version.c_str());
|
||||||
s += buf;
|
s += buf;
|
||||||
|
|
||||||
string query;
|
string query;
|
||||||
@ -99,10 +99,12 @@ int main(int argc, const char** argv)
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
auto version = httplib::HttpVersion::v1_1;
|
||||||
|
|
||||||
#ifdef CPPHTTPLIB_OPENSSL_SUPPORT
|
#ifdef CPPHTTPLIB_OPENSSL_SUPPORT
|
||||||
SSLServer svr(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE);
|
SSLServer svr(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE, version);
|
||||||
#else
|
#else
|
||||||
Server svr;
|
Server svr(version);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
svr.post("/multipart", [](const auto& req, auto& res) {
|
svr.post("/multipart", [](const auto& req, auto& res) {
|
||||||
|
334
httplib.h
334
httplib.h
@ -2,7 +2,7 @@
|
|||||||
// httplib.h
|
// httplib.h
|
||||||
//
|
//
|
||||||
// Copyright (c) 2017 Yuji Hirose. All rights reserved.
|
// Copyright (c) 2017 Yuji Hirose. All rights reserved.
|
||||||
// The Boost Software License 1.0
|
// MIT License
|
||||||
//
|
//
|
||||||
|
|
||||||
#ifndef _CPPHTTPLIB_HTTPLIB_H_
|
#ifndef _CPPHTTPLIB_HTTPLIB_H_
|
||||||
@ -63,6 +63,13 @@ typedef int socket_t;
|
|||||||
#include <openssl/ssl.h>
|
#include <openssl/ssl.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Configuration
|
||||||
|
*/
|
||||||
|
#define CPPHTTPLIB_KEEPALIVE_MAX_COUNT 5
|
||||||
|
#define CPPHTTPLIB_KEEPALIVE_TIMEOUT_SECOND 5
|
||||||
|
#define CPPHTTPLIB_KEEPALIVE_TIMEOUT_USECOND 0
|
||||||
|
|
||||||
namespace httplib
|
namespace httplib
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -74,7 +81,7 @@ struct ci {
|
|||||||
s1.begin(), s1.end(),
|
s1.begin(), s1.end(),
|
||||||
s2.begin(), s2.end(),
|
s2.begin(), s2.end(),
|
||||||
[](char c1, char c2) {
|
[](char c1, char c2) {
|
||||||
return std::tolower(c1) < std::tolower(c2);
|
return ::tolower(c1) < ::tolower(c2);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -101,6 +108,7 @@ struct MultipartFile {
|
|||||||
typedef std::multimap<std::string, MultipartFile> MultipartFiles;
|
typedef std::multimap<std::string, MultipartFile> MultipartFiles;
|
||||||
|
|
||||||
struct Request {
|
struct Request {
|
||||||
|
std::string version;
|
||||||
std::string method;
|
std::string method;
|
||||||
std::string path;
|
std::string path;
|
||||||
Headers headers;
|
Headers headers;
|
||||||
@ -113,6 +121,7 @@ struct Request {
|
|||||||
|
|
||||||
bool has_header(const char* key) const;
|
bool has_header(const char* key) const;
|
||||||
std::string get_header_value(const char* key) const;
|
std::string get_header_value(const char* key) const;
|
||||||
|
void set_header(const char* key, const char* val);
|
||||||
|
|
||||||
bool has_param(const char* key) const;
|
bool has_param(const char* key) const;
|
||||||
std::string get_param_value(const char* key) const;
|
std::string get_param_value(const char* key) const;
|
||||||
@ -122,6 +131,7 @@ struct Request {
|
|||||||
};
|
};
|
||||||
|
|
||||||
struct Response {
|
struct Response {
|
||||||
|
std::string version;
|
||||||
int status;
|
int status;
|
||||||
Headers headers;
|
Headers headers;
|
||||||
std::string body;
|
std::string body;
|
||||||
@ -166,7 +176,8 @@ public:
|
|||||||
typedef std::function<void (const Request&, Response&)> Handler;
|
typedef std::function<void (const Request&, Response&)> Handler;
|
||||||
typedef std::function<void (const Request&, const Response&)> Logger;
|
typedef std::function<void (const Request&, const Response&)> Logger;
|
||||||
|
|
||||||
Server();
|
Server(HttpVersion http_version = HttpVersion::v1_0);
|
||||||
|
|
||||||
virtual ~Server();
|
virtual ~Server();
|
||||||
|
|
||||||
virtual bool is_valid() const;
|
virtual bool is_valid() const;
|
||||||
@ -180,10 +191,14 @@ public:
|
|||||||
void set_logger(Logger logger);
|
void set_logger(Logger logger);
|
||||||
|
|
||||||
bool listen(const char* host, int port, int socket_flags = 0);
|
bool listen(const char* host, int port, int socket_flags = 0);
|
||||||
|
|
||||||
|
bool is_running() const;
|
||||||
void stop();
|
void stop();
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void process_request(Stream& strm);
|
bool process_request(Stream& strm, bool last_connection);
|
||||||
|
|
||||||
|
const HttpVersion http_version_;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
typedef std::vector<std::pair<std::regex, Handler>> Handlers;
|
typedef std::vector<std::pair<std::regex, Handler>> Handlers;
|
||||||
@ -192,8 +207,8 @@ private:
|
|||||||
bool handle_file_request(Request& req, Response& res);
|
bool handle_file_request(Request& req, Response& res);
|
||||||
bool dispatch_request(Request& req, Response& res, Handlers& handlers);
|
bool dispatch_request(Request& req, Response& res, Handlers& handlers);
|
||||||
|
|
||||||
bool read_request_line(Stream& strm, Request& req);
|
bool parse_request_line(const char* s, Request& req);
|
||||||
void write_response(Stream& strm, const Request& req, Response& res);
|
void write_response(Stream& strm, bool last_connection, const Request& req, Response& res);
|
||||||
|
|
||||||
virtual bool read_and_close_socket(socket_t sock);
|
virtual bool read_and_close_socket(socket_t sock);
|
||||||
|
|
||||||
@ -224,10 +239,10 @@ public:
|
|||||||
std::shared_ptr<Response> post(const char* path, const Params& params);
|
std::shared_ptr<Response> post(const char* path, const Params& params);
|
||||||
std::shared_ptr<Response> post(const char* path, const Headers& headers, const Params& params);
|
std::shared_ptr<Response> post(const char* path, const Headers& headers, const Params& params);
|
||||||
|
|
||||||
bool send(const Request& req, Response& res);
|
bool send(Request& req, Response& res);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
bool process_request(Stream& strm, const Request& req, Response& res);
|
bool process_request(Stream& strm, Request& req, Response& res);
|
||||||
|
|
||||||
const std::string host_;
|
const std::string host_;
|
||||||
const int port_;
|
const int port_;
|
||||||
@ -236,9 +251,9 @@ protected:
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
bool read_response_line(Stream& strm, Response& res);
|
bool read_response_line(Stream& strm, Response& res);
|
||||||
void write_request(Stream& strm, const Request& req, const char* ver);
|
void write_request(Stream& strm, Request& req);
|
||||||
|
|
||||||
virtual bool read_and_close_socket(socket_t sock, const Request& req, Response& res);
|
virtual bool read_and_close_socket(socket_t sock, Request& req, Response& res);
|
||||||
};
|
};
|
||||||
|
|
||||||
#ifdef CPPHTTPLIB_OPENSSL_SUPPORT
|
#ifdef CPPHTTPLIB_OPENSSL_SUPPORT
|
||||||
@ -257,7 +272,10 @@ private:
|
|||||||
|
|
||||||
class SSLServer : public Server {
|
class SSLServer : public Server {
|
||||||
public:
|
public:
|
||||||
SSLServer(const char* cert_path, const char* private_key_path);
|
SSLServer(
|
||||||
|
const char* cert_path, const char* private_key_path,
|
||||||
|
HttpVersion http_version = HttpVersion::v1_0);
|
||||||
|
|
||||||
virtual ~SSLServer();
|
virtual ~SSLServer();
|
||||||
|
|
||||||
virtual bool is_valid() const;
|
virtual bool is_valid() const;
|
||||||
@ -276,7 +294,7 @@ public:
|
|||||||
virtual bool is_valid() const;
|
virtual bool is_valid() const;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
virtual bool read_and_close_socket(socket_t sock, const Request& req, Response& res);
|
virtual bool read_and_close_socket(socket_t sock, Request& req, Response& res);
|
||||||
|
|
||||||
SSL_CTX* ctx_;
|
SSL_CTX* ctx_;
|
||||||
};
|
};
|
||||||
@ -330,13 +348,13 @@ public:
|
|||||||
fixed_buffer_used_size_ = 0;
|
fixed_buffer_used_size_ = 0;
|
||||||
glowable_buffer_.clear();
|
glowable_buffer_.clear();
|
||||||
|
|
||||||
size_t i = 0;
|
for (size_t i = 0; ; i++) {
|
||||||
|
|
||||||
for (;;) {
|
|
||||||
char byte;
|
char byte;
|
||||||
auto n = strm_.read(&byte, 1);
|
auto n = strm_.read(&byte, 1);
|
||||||
|
|
||||||
if (n < 1) {
|
if (n < 0) {
|
||||||
|
return false;
|
||||||
|
} else if (n == 0) {
|
||||||
if (i == 0) {
|
if (i == 0) {
|
||||||
return false;
|
return false;
|
||||||
} else {
|
} else {
|
||||||
@ -351,17 +369,18 @@ public:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
append('\0');
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void append(char c) {
|
void append(char c) {
|
||||||
if (fixed_buffer_used_size_ < fixed_buffer_size_) {
|
if (fixed_buffer_used_size_ < fixed_buffer_size_ - 1) {
|
||||||
fixed_buffer_[fixed_buffer_used_size_++] = c;
|
fixed_buffer_[fixed_buffer_used_size_++] = c;
|
||||||
|
fixed_buffer_[fixed_buffer_used_size_] = '\0';
|
||||||
} else {
|
} else {
|
||||||
if (glowable_buffer_.empty()) {
|
if (glowable_buffer_.empty()) {
|
||||||
glowable_buffer_.assign(fixed_buffer_, fixed_buffer_size_);
|
assert(fixed_buffer_[fixed_buffer_used_size_] == '\0');
|
||||||
|
glowable_buffer_.assign(fixed_buffer_, fixed_buffer_used_size_);
|
||||||
}
|
}
|
||||||
glowable_buffer_ += c;
|
glowable_buffer_ += c;
|
||||||
}
|
}
|
||||||
@ -383,11 +402,43 @@ inline int close_socket(socket_t sock)
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
inline int select(socket_t sock, size_t sec, size_t usec)
|
||||||
inline bool read_and_close_socket(socket_t sock, T callback)
|
|
||||||
{
|
{
|
||||||
|
fd_set fds;
|
||||||
|
FD_ZERO(&fds);
|
||||||
|
FD_SET(sock, &fds);
|
||||||
|
|
||||||
|
timeval tv;
|
||||||
|
tv.tv_sec = sec;
|
||||||
|
tv.tv_usec = usec;
|
||||||
|
|
||||||
|
return ::select(sock + 1, &fds, NULL, NULL, &tv);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
|
inline bool read_and_close_socket(socket_t sock, bool keep_alive, T callback)
|
||||||
|
{
|
||||||
|
bool ret = false;
|
||||||
|
|
||||||
|
if (keep_alive) {
|
||||||
|
auto count = CPPHTTPLIB_KEEPALIVE_MAX_COUNT;
|
||||||
|
while (count > 0 &&
|
||||||
|
detail::select(sock,
|
||||||
|
CPPHTTPLIB_KEEPALIVE_TIMEOUT_SECOND,
|
||||||
|
CPPHTTPLIB_KEEPALIVE_TIMEOUT_USECOND) > 0) {
|
||||||
|
auto last_connection = count == 1;
|
||||||
SocketStream strm(sock);
|
SocketStream strm(sock);
|
||||||
auto ret = callback(strm);
|
ret = callback(strm, last_connection);
|
||||||
|
if (!ret) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
count--;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
SocketStream strm(sock);
|
||||||
|
ret = callback(strm, true);
|
||||||
|
}
|
||||||
|
|
||||||
close_socket(sock);
|
close_socket(sock);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
@ -641,12 +692,12 @@ bool read_content_with_length(Stream& strm, T& x, size_t len, Progress progress)
|
|||||||
x.body.assign(len, 0);
|
x.body.assign(len, 0);
|
||||||
size_t r = 0;
|
size_t r = 0;
|
||||||
while (r < len){
|
while (r < len){
|
||||||
auto r_incr = strm.read(&x.body[r], len - r);
|
auto n = strm.read(&x.body[r], len - r);
|
||||||
if (r_incr <= 0) {
|
if (n <= 0) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
r += r_incr;
|
r += n;
|
||||||
|
|
||||||
if (progress) {
|
if (progress) {
|
||||||
progress(r, len);
|
progress(r, len);
|
||||||
@ -665,7 +716,7 @@ bool read_content_without_length(Stream& strm, T& x)
|
|||||||
if (n < 0) {
|
if (n < 0) {
|
||||||
return false;
|
return false;
|
||||||
} else if (n == 0) {
|
} else if (n == 0) {
|
||||||
break;
|
return true;
|
||||||
}
|
}
|
||||||
x.body += byte;
|
x.body += byte;
|
||||||
}
|
}
|
||||||
@ -738,17 +789,10 @@ bool read_content(Stream& strm, T& x, Progress progress = Progress())
|
|||||||
template <typename T>
|
template <typename T>
|
||||||
inline void write_headers(Stream& strm, const T& info)
|
inline void write_headers(Stream& strm, const T& info)
|
||||||
{
|
{
|
||||||
strm.write("Connection: close\r\n");
|
|
||||||
|
|
||||||
for (const auto& x: info.headers) {
|
for (const auto& x: info.headers) {
|
||||||
if (x.first != "Content-Type" && x.first != "Content-Length") {
|
|
||||||
strm.write_format("%s: %s\r\n", x.first.c_str(), x.second.c_str());
|
strm.write_format("%s: %s\r\n", x.first.c_str(), x.second.c_str());
|
||||||
}
|
}
|
||||||
}
|
strm.write("\r\n");
|
||||||
|
|
||||||
auto t = get_header_value(info.headers, "Content-Type", "text/plain");
|
|
||||||
strm.write_format("Content-Type: %s\r\n", t);
|
|
||||||
strm.write_format("Content-Length: %ld\r\n", info.body.size());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
inline std::string encode_url(const std::string& s)
|
inline std::string encode_url(const std::string& s)
|
||||||
@ -1065,6 +1109,11 @@ inline std::string Request::get_header_value(const char* key) const
|
|||||||
return detail::get_header_value(headers, key, "");
|
return detail::get_header_value(headers, key, "");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
inline void Request::set_header(const char* key, const char* val)
|
||||||
|
{
|
||||||
|
headers.emplace(key, val);
|
||||||
|
}
|
||||||
|
|
||||||
inline bool Request::has_param(const char* key) const
|
inline bool Request::has_param(const char* key) const
|
||||||
{
|
{
|
||||||
return params.find(key) != params.end();
|
return params.find(key) != params.end();
|
||||||
@ -1134,7 +1183,11 @@ inline void Stream::write_format(const char* fmt, const Args& ...args)
|
|||||||
const auto bufsiz = 2048;
|
const auto bufsiz = 2048;
|
||||||
char buf[bufsiz];
|
char buf[bufsiz];
|
||||||
|
|
||||||
|
#if defined(_MSC_VER) && _MSC_VER < 1900
|
||||||
|
auto n = _snprintf_s(buf, bufsiz, bufsiz - 1, fmt, args...);
|
||||||
|
#else
|
||||||
auto n = snprintf(buf, bufsiz - 1, fmt, args...);
|
auto n = snprintf(buf, bufsiz - 1, fmt, args...);
|
||||||
|
#endif
|
||||||
if (n > 0) {
|
if (n > 0) {
|
||||||
if (n >= bufsiz - 1) {
|
if (n >= bufsiz - 1) {
|
||||||
std::vector<char> glowable_buf(bufsiz);
|
std::vector<char> glowable_buf(bufsiz);
|
||||||
@ -1179,8 +1232,9 @@ inline int SocketStream::write(const char* ptr)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// HTTP server implementation
|
// HTTP server implementation
|
||||||
inline Server::Server()
|
inline Server::Server(HttpVersion http_version)
|
||||||
: svr_sock_(-1)
|
: http_version_(http_version)
|
||||||
|
, svr_sock_(-1)
|
||||||
{
|
{
|
||||||
#ifndef _WIN32
|
#ifndef _WIN32
|
||||||
signal(SIGPIPE, SIG_IGN);
|
signal(SIGPIPE, SIG_IGN);
|
||||||
@ -1236,6 +1290,16 @@ inline bool Server::listen(const char* host, int port, int socket_flags)
|
|||||||
auto ret = true;
|
auto ret = true;
|
||||||
|
|
||||||
for (;;) {
|
for (;;) {
|
||||||
|
auto val = detail::select(svr_sock_, 0, 100000);
|
||||||
|
|
||||||
|
if (val == 0) { // Timeout
|
||||||
|
if (svr_sock_ == -1) {
|
||||||
|
// The server socket was closed by 'stop' method.
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
socket_t sock = accept(svr_sock_, NULL, NULL);
|
socket_t sock = accept(svr_sock_, NULL, NULL);
|
||||||
|
|
||||||
if (sock == -1) {
|
if (sock == -1) {
|
||||||
@ -1248,19 +1312,20 @@ inline bool Server::listen(const char* host, int port, int socket_flags)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: should be async
|
// TODO: Use thread pool...
|
||||||
#ifdef CPPHTTPLIB_NO_MULTI_THREAD_SUPPORT
|
|
||||||
read_and_close_socket(sock);
|
|
||||||
#else
|
|
||||||
std::thread([=]() {
|
std::thread([=]() {
|
||||||
read_and_close_socket(sock);
|
read_and_close_socket(sock);
|
||||||
}).detach();
|
}).detach();
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
inline bool Server::is_running() const
|
||||||
|
{
|
||||||
|
return svr_sock_ != -1;
|
||||||
|
}
|
||||||
|
|
||||||
inline void Server::stop()
|
inline void Server::stop()
|
||||||
{
|
{
|
||||||
detail::shutdown_socket(svr_sock_);
|
detail::shutdown_socket(svr_sock_);
|
||||||
@ -1268,21 +1333,13 @@ inline void Server::stop()
|
|||||||
svr_sock_ = -1;
|
svr_sock_ = -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
inline bool Server::read_request_line(Stream& strm, Request& req)
|
inline bool Server::parse_request_line(const char* s, Request& req)
|
||||||
{
|
{
|
||||||
const auto bufsiz = 2048;
|
static std::regex re("(GET|HEAD|POST) ([^?]+)(?:\\?(.+?))? (HTTP/1\\.[01])\r\n");
|
||||||
char buf[bufsiz];
|
|
||||||
|
|
||||||
detail::stream_line_reader reader(strm, buf, bufsiz);
|
|
||||||
|
|
||||||
if (!reader.getline()) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
static std::regex re("(GET|HEAD|POST) ([^?]+)(?:\\?(.+?))? HTTP/1\\.[01]\r\n");
|
|
||||||
|
|
||||||
std::cmatch m;
|
std::cmatch m;
|
||||||
if (std::regex_match(reader.ptr(), m, re)) {
|
if (std::regex_match(s, m, re)) {
|
||||||
|
req.version = std::string(m[4]);
|
||||||
req.method = std::string(m[1]);
|
req.method = std::string(m[1]);
|
||||||
req.path = detail::decode_url(m[2]);
|
req.path = detail::decode_url(m[2]);
|
||||||
|
|
||||||
@ -1298,7 +1355,7 @@ inline bool Server::read_request_line(Stream& strm, Request& req)
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
inline void Server::write_response(Stream& strm, const Request& req, Response& res)
|
inline void Server::write_response(Stream& strm, bool last_connection, const Request& req, Response& res)
|
||||||
{
|
{
|
||||||
assert(res.status != -1);
|
assert(res.status != -1);
|
||||||
|
|
||||||
@ -1306,17 +1363,34 @@ inline void Server::write_response(Stream& strm, const Request& req, Response& r
|
|||||||
error_handler_(req, res);
|
error_handler_(req, res);
|
||||||
}
|
}
|
||||||
|
|
||||||
strm.write_format(
|
// Response line
|
||||||
"HTTP/1.0 %d %s\r\n",
|
strm.write_format("%s %d %s\r\n",
|
||||||
res.status, detail::status_message(res.status));
|
detail::http_version_strings[static_cast<size_t>(http_version_)],
|
||||||
|
res.status,
|
||||||
|
detail::status_message(res.status));
|
||||||
|
|
||||||
|
// Headers
|
||||||
|
if (!res.has_header("Connection") && (last_connection || req.version == "HTTP/1.0")) {
|
||||||
|
res.set_header("Connection", "close");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!res.body.empty()) {
|
||||||
|
if (!res.has_header("Content-Type")) {
|
||||||
|
res.set_header("Content-Type", "application/octet-stream");
|
||||||
|
}
|
||||||
|
|
||||||
|
auto length = std::to_string(res.body.size());
|
||||||
|
res.set_header("Content-Length", length.c_str());
|
||||||
|
}
|
||||||
|
|
||||||
detail::write_headers(strm, res);
|
detail::write_headers(strm, res);
|
||||||
strm.write("\r\n");
|
|
||||||
|
|
||||||
|
// Body
|
||||||
if (!res.body.empty() && req.method != "HEAD") {
|
if (!res.body.empty() && req.method != "HEAD") {
|
||||||
strm.write(res.body.c_str(), res.body.size());
|
strm.write(res.body.c_str(), res.body.size());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Log
|
||||||
if (logger_) {
|
if (logger_) {
|
||||||
logger_(req, res);
|
logger_(req, res);
|
||||||
}
|
}
|
||||||
@ -1373,22 +1447,41 @@ inline bool Server::dispatch_request(Request& req, Response& res, Handlers& hand
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
inline void Server::process_request(Stream& strm)
|
inline bool Server::process_request(Stream& strm, bool last_connection)
|
||||||
{
|
{
|
||||||
|
const auto bufsiz = 2048;
|
||||||
|
char buf[bufsiz];
|
||||||
|
|
||||||
|
detail::stream_line_reader reader(strm, buf, bufsiz);
|
||||||
|
|
||||||
|
// Connection has been closed on client
|
||||||
|
if (!reader.getline()) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
Request req;
|
Request req;
|
||||||
Response res;
|
Response res;
|
||||||
|
|
||||||
if (!read_request_line(strm, req) || !detail::read_headers(strm, req.headers)) {
|
res.version = detail::http_version_strings[static_cast<size_t>(http_version_)];
|
||||||
|
|
||||||
|
// Request line and headers
|
||||||
|
if (!parse_request_line(reader.ptr(), req) || !detail::read_headers(strm, req.headers)) {
|
||||||
res.status = 400;
|
res.status = 400;
|
||||||
write_response(strm, req, res);
|
write_response(strm, last_connection, req, res);
|
||||||
return;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
auto ret = true;
|
||||||
|
if (req.get_header_value("Connection") == "close") {
|
||||||
|
ret = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Body
|
||||||
if (req.method == "POST") {
|
if (req.method == "POST") {
|
||||||
if (!detail::read_content(strm, req)) {
|
if (!detail::read_content(strm, req)) {
|
||||||
res.status = 400;
|
res.status = 400;
|
||||||
write_response(strm, req, res);
|
write_response(strm, last_connection, req, res);
|
||||||
return;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
const auto& content_type = req.get_header_value("Content-Type");
|
const auto& content_type = req.get_header_value("Content-Type");
|
||||||
@ -1400,8 +1493,8 @@ inline void Server::process_request(Stream& strm)
|
|||||||
if (!detail::parse_multipart_boundary(content_type, boundary) ||
|
if (!detail::parse_multipart_boundary(content_type, boundary) ||
|
||||||
!detail::parse_multipart_formdata(boundary, req.body, req.files)) {
|
!detail::parse_multipart_formdata(boundary, req.body, req.files)) {
|
||||||
res.status = 400;
|
res.status = 400;
|
||||||
write_response(strm, req, res);
|
write_response(strm, last_connection, req, res);
|
||||||
return;
|
return ret;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1414,7 +1507,8 @@ inline void Server::process_request(Stream& strm)
|
|||||||
res.status = 404;
|
res.status = 404;
|
||||||
}
|
}
|
||||||
|
|
||||||
write_response(strm, req, res);
|
write_response(strm, last_connection, req, res);
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
inline bool Server::is_valid() const
|
inline bool Server::is_valid() const
|
||||||
@ -1424,9 +1518,13 @@ inline bool Server::is_valid() const
|
|||||||
|
|
||||||
inline bool Server::read_and_close_socket(socket_t sock)
|
inline bool Server::read_and_close_socket(socket_t sock)
|
||||||
{
|
{
|
||||||
return detail::read_and_close_socket(sock, [this](Stream& strm) {
|
auto keep_alive = http_version_ == HttpVersion::v1_1;
|
||||||
process_request(strm);
|
|
||||||
return true;
|
return detail::read_and_close_socket(
|
||||||
|
sock,
|
||||||
|
keep_alive,
|
||||||
|
[this](Stream& strm, bool last_connection) {
|
||||||
|
return process_request(strm, last_connection);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1469,7 +1567,7 @@ inline bool Client::read_response_line(Stream& strm, Response& res)
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
inline bool Client::send(const Request& req, Response& res)
|
inline bool Client::send(Request& req, Response& res)
|
||||||
{
|
{
|
||||||
if (req.path.empty()) {
|
if (req.path.empty()) {
|
||||||
return false;
|
return false;
|
||||||
@ -1483,29 +1581,43 @@ inline bool Client::send(const Request& req, Response& res)
|
|||||||
return read_and_close_socket(sock, req, res);
|
return read_and_close_socket(sock, req, res);
|
||||||
}
|
}
|
||||||
|
|
||||||
inline void Client::write_request(Stream& strm, const Request& req, const char* ver)
|
inline void Client::write_request(Stream& strm, Request& req)
|
||||||
{
|
{
|
||||||
auto path = detail::encode_url(req.path);
|
auto path = detail::encode_url(req.path);
|
||||||
|
|
||||||
// Request line
|
// Request line
|
||||||
strm.write_format(
|
strm.write_format("%s %s %s\r\n",
|
||||||
"%s %s %s\r\n", req.method.c_str(), path.c_str(), ver);
|
req.method.c_str(),
|
||||||
|
path.c_str(),
|
||||||
|
detail::http_version_strings[static_cast<size_t>(http_version_)]);
|
||||||
|
|
||||||
// Headers
|
// Headers
|
||||||
strm.write_format("Host: %s\r\n", host_and_port_.c_str());
|
req.set_header("Host", host_and_port_.c_str());
|
||||||
|
|
||||||
if (!req.has_header("Accept")) {
|
if (!req.has_header("Accept")) {
|
||||||
strm.write("Accept: */*\r\n");
|
req.set_header("Accept", "*/*");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!req.has_header("User-Agent")) {
|
if (!req.has_header("User-Agent")) {
|
||||||
strm.write("User-Agent: cpp-httplib/0.1\r\n");
|
req.set_header("User-Agent", "cpp-httplib/0.2");
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO: if (!req.has_header("Connection") && (last_connection || http_version_ == detail::HttpVersion::v1_0)) {
|
||||||
|
if (!req.has_header("Connection")) {
|
||||||
|
req.set_header("Connection", "close");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!req.body.empty()) {
|
||||||
|
if (!req.has_header("Content-Type")) {
|
||||||
|
req.set_header("Content-Type", "application/octet-stream");
|
||||||
|
}
|
||||||
|
|
||||||
|
auto length = std::to_string(req.body.size());
|
||||||
|
req.set_header("Content-Length", length.c_str());
|
||||||
}
|
}
|
||||||
|
|
||||||
detail::write_headers(strm, req);
|
detail::write_headers(strm, req);
|
||||||
|
|
||||||
strm.write("\r\n");
|
|
||||||
|
|
||||||
// Body
|
// Body
|
||||||
if (!req.body.empty()) {
|
if (!req.body.empty()) {
|
||||||
if (req.has_header("application/x-www-form-urlencoded")) {
|
if (req.has_header("application/x-www-form-urlencoded")) {
|
||||||
@ -1517,18 +1629,19 @@ inline void Client::write_request(Stream& strm, const Request& req, const char*
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
inline bool Client::process_request(Stream& strm, const Request& req, Response& res)
|
inline bool Client::process_request(Stream& strm, Request& req, Response& res)
|
||||||
{
|
{
|
||||||
// Send request
|
// Send request
|
||||||
auto ver = detail::http_version_strings[static_cast<size_t>(http_version_)];
|
write_request(strm, req);
|
||||||
write_request(strm, req, ver);
|
|
||||||
|
|
||||||
// Receive response
|
// Receive response and headers
|
||||||
if (!read_response_line(strm, res) ||
|
if (!read_response_line(strm, res) || !detail::read_headers(strm, res.headers)) {
|
||||||
!detail::read_headers(strm, res.headers)) {
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: Check if 'Connection' header is 'close' or HTTP version is 1.0, then close socket...
|
||||||
|
|
||||||
|
// Body
|
||||||
if (req.method != "HEAD") {
|
if (req.method != "HEAD") {
|
||||||
if (!detail::read_content(strm, res, req.progress)) {
|
if (!detail::read_content(strm, res, req.progress)) {
|
||||||
return false;
|
return false;
|
||||||
@ -1538,9 +1651,9 @@ inline bool Client::process_request(Stream& strm, const Request& req, Response&
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
inline bool Client::read_and_close_socket(socket_t sock, const Request& req, Response& res)
|
inline bool Client::read_and_close_socket(socket_t sock, Request& req, Response& res)
|
||||||
{
|
{
|
||||||
return detail::read_and_close_socket(sock, [&](Stream& strm) {
|
return detail::read_and_close_socket(sock, false, [&](Stream& strm, bool /*last_connection*/) {
|
||||||
return process_request(strm, req, res);
|
return process_request(strm, req, res);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@ -1629,7 +1742,10 @@ inline std::shared_ptr<Response> Client::post(const char* path, const Headers& h
|
|||||||
namespace detail {
|
namespace detail {
|
||||||
|
|
||||||
template <typename U, typename V, typename T>
|
template <typename U, typename V, typename T>
|
||||||
inline bool read_and_close_socket_ssl(socket_t sock, SSL_CTX* ctx, U SSL_connect_or_accept, V setup, T callback)
|
inline bool read_and_close_socket_ssl(
|
||||||
|
socket_t sock, bool keep_alive,
|
||||||
|
SSL_CTX* ctx, U SSL_connect_or_accept, V setup,
|
||||||
|
T callback)
|
||||||
{
|
{
|
||||||
auto ssl = SSL_new(ctx);
|
auto ssl = SSL_new(ctx);
|
||||||
if (!ssl) {
|
if (!ssl) {
|
||||||
@ -1643,8 +1759,26 @@ inline bool read_and_close_socket_ssl(socket_t sock, SSL_CTX* ctx, U SSL_connect
|
|||||||
|
|
||||||
SSL_connect_or_accept(ssl);
|
SSL_connect_or_accept(ssl);
|
||||||
|
|
||||||
|
bool ret = false;
|
||||||
|
|
||||||
|
if (keep_alive) {
|
||||||
|
auto count = CPPHTTPLIB_KEEPALIVE_MAX_COUNT;
|
||||||
|
while (count > 0 &&
|
||||||
|
detail::select(sock,
|
||||||
|
CPPHTTPLIB_KEEPALIVE_TIMEOUT_SECOND,
|
||||||
|
CPPHTTPLIB_KEEPALIVE_TIMEOUT_USECOND) > 0) {
|
||||||
|
auto last_connection = count == 1;
|
||||||
SSLSocketStream strm(ssl);
|
SSLSocketStream strm(ssl);
|
||||||
auto ret = callback(strm);
|
ret = callback(strm, last_connection);
|
||||||
|
if (!ret) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
count--;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
SSLSocketStream strm(ssl);
|
||||||
|
ret = callback(strm, true);
|
||||||
|
}
|
||||||
|
|
||||||
SSL_shutdown(ssl);
|
SSL_shutdown(ssl);
|
||||||
SSL_free(ssl);
|
SSL_free(ssl);
|
||||||
@ -1689,7 +1823,8 @@ inline int SSLSocketStream::write(const char* ptr)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// SSL HTTP server implementation
|
// SSL HTTP server implementation
|
||||||
inline SSLServer::SSLServer(const char* cert_path, const char* private_key_path)
|
inline SSLServer::SSLServer(const char* cert_path, const char* private_key_path, HttpVersion http_version)
|
||||||
|
: Server(http_version)
|
||||||
{
|
{
|
||||||
ctx_ = SSL_CTX_new(SSLv23_server_method());
|
ctx_ = SSL_CTX_new(SSLv23_server_method());
|
||||||
|
|
||||||
@ -1725,13 +1860,16 @@ inline bool SSLServer::is_valid() const
|
|||||||
|
|
||||||
inline bool SSLServer::read_and_close_socket(socket_t sock)
|
inline bool SSLServer::read_and_close_socket(socket_t sock)
|
||||||
{
|
{
|
||||||
|
auto keep_alive = http_version_ == HttpVersion::v1_1;
|
||||||
|
|
||||||
return detail::read_and_close_socket_ssl(
|
return detail::read_and_close_socket_ssl(
|
||||||
sock, ctx_,
|
sock,
|
||||||
|
keep_alive,
|
||||||
|
ctx_,
|
||||||
SSL_accept,
|
SSL_accept,
|
||||||
[](SSL* /*ssl*/) {},
|
[](SSL* /*ssl*/) {},
|
||||||
[this](Stream& strm) {
|
[this](Stream& strm, bool last_connection) {
|
||||||
process_request(strm);
|
return process_request(strm, last_connection);
|
||||||
return true;
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1754,15 +1892,15 @@ inline bool SSLClient::is_valid() const
|
|||||||
return ctx_;
|
return ctx_;
|
||||||
}
|
}
|
||||||
|
|
||||||
inline bool SSLClient::read_and_close_socket(socket_t sock, const Request& req, Response& res)
|
inline bool SSLClient::read_and_close_socket(socket_t sock, Request& req, Response& res)
|
||||||
{
|
{
|
||||||
return is_valid() && detail::read_and_close_socket_ssl(
|
return is_valid() && detail::read_and_close_socket_ssl(
|
||||||
sock, ctx_,
|
sock, false,
|
||||||
SSL_connect,
|
ctx_, SSL_connect,
|
||||||
[&](SSL* ssl) {
|
[&](SSL* ssl) {
|
||||||
SSL_set_tlsext_host_name(ssl, host_.c_str());
|
SSL_set_tlsext_host_name(ssl, host_.c_str());
|
||||||
},
|
},
|
||||||
[&](Stream& strm) {
|
[&](Stream& strm, bool /*last_connection*/) {
|
||||||
return process_request(strm, req, res);
|
return process_request(strm, req, res);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
20
test/test.cc
20
test/test.cc
@ -139,11 +139,12 @@ TEST(GetHeaderValueTest, Range)
|
|||||||
void testChunkedEncoding(httplib::HttpVersion ver)
|
void testChunkedEncoding(httplib::HttpVersion ver)
|
||||||
{
|
{
|
||||||
auto host = "www.httpwatch.com";
|
auto host = "www.httpwatch.com";
|
||||||
auto port = 80;
|
|
||||||
|
|
||||||
#ifdef CPPHTTPLIB_OPENSSL_SUPPORT
|
#ifdef CPPHTTPLIB_OPENSSL_SUPPORT
|
||||||
|
auto port = 443;
|
||||||
httplib::SSLClient cli(host, port, ver);
|
httplib::SSLClient cli(host, port, ver);
|
||||||
#else
|
#else
|
||||||
|
auto port = 80;
|
||||||
httplib::Client cli(host, port, ver);
|
httplib::Client cli(host, port, ver);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -166,11 +167,12 @@ TEST(ChunkedEncodingTest, FromHTTPWatch)
|
|||||||
TEST(RangeTest, FromHTTPBin)
|
TEST(RangeTest, FromHTTPBin)
|
||||||
{
|
{
|
||||||
auto host = "httpbin.org";
|
auto host = "httpbin.org";
|
||||||
auto port = 80;
|
|
||||||
|
|
||||||
#ifdef CPPHTTPLIB_OPENSSL_SUPPORT
|
#ifdef CPPHTTPLIB_OPENSSL_SUPPORT
|
||||||
|
auto port = 443;
|
||||||
httplib::SSLClient cli(host, port, httplib::HttpVersion::v1_1);
|
httplib::SSLClient cli(host, port, httplib::HttpVersion::v1_1);
|
||||||
#else
|
#else
|
||||||
|
auto port = 80;
|
||||||
httplib::Client cli(host, port, httplib::HttpVersion::v1_1);
|
httplib::Client cli(host, port, httplib::HttpVersion::v1_1);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -265,27 +267,23 @@ protected:
|
|||||||
EXPECT_EQ("application/octet-stream", file.content_type);
|
EXPECT_EQ("application/octet-stream", file.content_type);
|
||||||
EXPECT_EQ(0u, file.length);
|
EXPECT_EQ(0u, file.length);
|
||||||
}
|
}
|
||||||
})
|
|
||||||
.get("/stop", [&](const Request& /*req*/, Response& /*res*/) {
|
|
||||||
svr_.stop();
|
|
||||||
});
|
});
|
||||||
|
|
||||||
persons_["john"] = "programmer";
|
persons_["john"] = "programmer";
|
||||||
|
|
||||||
f_ = async([&](){
|
t_ = thread([&](){
|
||||||
up_ = true;
|
up_ = true;
|
||||||
svr_.listen(HOST, PORT);
|
svr_.listen(HOST, PORT);
|
||||||
});
|
});
|
||||||
|
|
||||||
while (!up_) {
|
while (!svr_.is_running()) {
|
||||||
msleep(1);
|
msleep(1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void TearDown() {
|
virtual void TearDown() {
|
||||||
//svr_.stop(); // NOTE: This causes dead lock on Windows.
|
svr_.stop();
|
||||||
cli_.get("/stop");
|
t_.join();
|
||||||
f_.get();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
map<string, string> persons_;
|
map<string, string> persons_;
|
||||||
@ -296,7 +294,7 @@ protected:
|
|||||||
Client cli_;
|
Client cli_;
|
||||||
Server svr_;
|
Server svr_;
|
||||||
#endif
|
#endif
|
||||||
future<void> f_;
|
thread t_;
|
||||||
bool up_;
|
bool up_;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user