cpp-httplib/httplib.h

588 lines
13 KiB
C
Raw Normal View History

2012-09-22 21:40:46 -07:00
//
2012-09-27 18:05:36 -07:00
// httplib.h
2012-09-22 21:40:46 -07:00
//
// Copyright (c) 2012 Yuji Hirose. All rights reserved.
// The Boost Software License 1.0
//
2012-09-25 19:09:56 -07:00
#ifndef HTTPSVRKIT_H
#define HTTPSVRKIT_H
2012-09-22 21:40:46 -07:00
#ifdef _WIN32
2012-09-26 08:49:04 -07:00
#define _CRT_SECURE_NO_WARNINGS
#define _CRT_NONSTDC_NO_DEPRECATE
2012-09-25 19:09:56 -07:00
#ifndef SO_SYNCHRONOUS_NONALERT
#define SO_SYNCHRONOUS_NONALERT 0x20;
#endif
#ifndef SO_OPENTYPE
#define SO_OPENTYPE 0x7008
#endif
#include <fcntl.h>
#include <io.h>
2012-09-22 21:40:46 -07:00
#include <winsock2.h>
typedef SOCKET socket_t;
2012-09-26 08:49:04 -07:00
#define snprintf sprintf_s
2012-09-22 21:40:46 -07:00
#else
#include <pthread.h>
#include <unistd.h>
#include <netdb.h>
2012-09-22 21:40:46 -07:00
#include <netinet/in.h>
#include <arpa/inet.h>
#include <sys/socket.h>
2012-09-22 21:40:46 -07:00
typedef int socket_t;
#endif
#include <functional>
#include <map>
#include <regex>
#include <string>
#include <assert.h>
2012-09-27 18:05:36 -07:00
namespace httplib
2012-09-22 21:40:46 -07:00
{
2012-09-24 04:57:09 -07:00
typedef std::map<std::string, std::string> Map;
2012-09-24 20:13:01 -07:00
typedef std::vector<std::string> Array;
2012-09-24 04:57:09 -07:00
typedef std::multimap<std::string, std::string> MultiMap;
2012-09-22 21:40:46 -07:00
2012-09-24 04:57:09 -07:00
struct Request {
2012-09-24 20:13:01 -07:00
std::string method;
std::string url;
2012-10-02 17:39:13 -07:00
MultiMap headers;
2012-09-24 04:57:09 -07:00
std::string body;
2012-09-24 20:13:01 -07:00
Map query;
Array params;
2012-09-22 21:40:46 -07:00
};
2012-09-24 04:57:09 -07:00
struct Response {
2012-09-25 19:09:56 -07:00
int status;
2012-09-24 04:57:09 -07:00
MultiMap headers;
std::string body;
2012-09-25 19:09:56 -07:00
void set_redirect(const char* url);
void set_content(const std::string& s, const char* content_type = "text/plain");
2012-09-24 04:57:09 -07:00
};
struct Connection {
2012-09-24 20:13:01 -07:00
Request request;
Response response;
2012-09-22 21:40:46 -07:00
};
class Server {
public:
typedef std::function<void (Connection& c)> Handler;
2012-09-22 21:40:46 -07:00
2012-10-02 17:39:13 -07:00
Server(const char* host, int port);
2012-09-22 21:40:46 -07:00
~Server();
void get(const char* pattern, Handler handler);
void post(const char* pattern, Handler handler);
2012-10-02 19:37:14 -07:00
void error(Handler handler);
2012-09-22 21:40:46 -07:00
2012-10-02 17:39:13 -07:00
void set_logger(std::function<void (const Connection&)> logger);
2012-09-27 17:54:54 -07:00
2012-09-25 19:09:56 -07:00
bool run();
2012-09-22 21:40:46 -07:00
void stop();
private:
void process_request(FILE* fp_read, FILE* fp_write);
2012-09-22 21:40:46 -07:00
2012-10-02 19:37:14 -07:00
bool read_request_line(FILE* fp, Request& req);
void write_response(FILE* fp, const Response& res);
2012-10-02 17:39:13 -07:00
const std::string host_;
2012-09-25 19:09:56 -07:00
const int port_;
socket_t sock_;
2012-09-27 17:54:54 -07:00
std::vector<std::pair<std::regex, Handler>> get_handlers_;
2012-09-24 20:13:01 -07:00
std::vector<std::pair<std::string, Handler>> post_handlers_;
2012-10-02 19:37:14 -07:00
Handler error_handler_;
2012-10-02 17:39:13 -07:00
std::function<void (const Connection&)> logger_;
};
class Client {
public:
Client(const char* host, int port);
~Client();
2012-10-02 20:24:23 -07:00
bool get(const char* url, Response& res);
2012-10-02 17:39:13 -07:00
private:
2012-10-02 19:37:14 -07:00
bool read_response_line(FILE* fp, Response& res);
2012-10-02 17:39:13 -07:00
const std::string host_;
const int port_;
2012-09-22 21:40:46 -07:00
};
// Implementation
2012-09-24 20:13:01 -07:00
template <class Fn>
void split(const char* b, const char* e, char d, Fn fn)
{
int i = 0;
int beg = 0;
while (e ? (b + i != e) : (b[i] != '\0')) {
if (b[i] == d) {
fn(&b[beg], &b[i]);
beg = i + 1;
}
i++;
}
2012-10-02 17:39:13 -07:00
if (i) {
2012-09-24 20:13:01 -07:00
fn(&b[beg], &b[i]);
}
}
2012-10-02 17:39:13 -07:00
inline void get_flie_pointers(int fd, FILE*& fp_read, FILE*& fp_write)
{
#ifdef _WIN32
int osfhandle = _open_osfhandle(fd, _O_RDONLY);
fp_read = fdopen(osfhandle, "rb");
fp_write = fdopen(osfhandle, "wb");
#else
fp_read = fdopen(fd, "rb");
fp_write = fdopen(fd, "wb");
#endif
}
template <typename Fn>
inline socket_t create_socket(const char* host, int port, Fn fn)
2012-09-22 21:40:46 -07:00
{
2012-09-25 19:09:56 -07:00
#ifdef _WIN32
int opt = SO_SYNCHRONOUS_NONALERT;
setsockopt(INVALID_SOCKET, SOL_SOCKET, SO_OPENTYPE, (char*)&opt, sizeof(opt));
#endif
2012-09-22 21:40:46 -07:00
// Create a server socket
socket_t sock = socket(AF_INET, SOCK_STREAM, 0);
if (sock == -1) {
return -1;
}
// Make 'reuse address' option available
2012-09-25 19:09:56 -07:00
int yes = 1;
setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (char*)&yes, sizeof(yes));
2012-09-22 21:40:46 -07:00
// Get a host entry info
struct hostent* hp;
2012-10-02 17:39:13 -07:00
if (!(hp = gethostbyname(host))) {
return -1;
}
2012-09-22 21:40:46 -07:00
// Bind the socket to the given address
struct sockaddr_in addr;
memset(&addr, 0, sizeof(addr));
memcpy(&addr.sin_addr, hp->h_addr, hp->h_length);
2012-09-22 21:40:46 -07:00
addr.sin_family = AF_INET;
addr.sin_port = htons(port);
2012-09-22 21:40:46 -07:00
2012-10-02 17:39:13 -07:00
return fn(sock, addr);
}
2012-09-22 21:40:46 -07:00
2012-10-02 17:39:13 -07:00
inline socket_t create_server_socket(const char* host, int port)
{
return create_socket(host, port, [](socket_t sock, struct sockaddr_in& addr) -> socket_t {
if (::bind(sock, (struct sockaddr*)&addr, sizeof(addr))) {
return -1;
}
2012-09-22 21:40:46 -07:00
2012-10-02 17:39:13 -07:00
// Listen through 5 channels
if (listen(sock, 5)) {
return -1;
}
return sock;
});
2012-09-22 21:40:46 -07:00
}
2012-09-26 18:35:49 -07:00
inline int close_server_socket(socket_t sock)
2012-09-22 21:40:46 -07:00
{
#ifdef _WIN32
2012-09-26 18:35:49 -07:00
shutdown(sock, SD_BOTH);
return closesocket(sock);
2012-09-22 21:40:46 -07:00
#else
shutdown(sock, SHUT_RDWR);
2012-09-26 18:35:49 -07:00
return close(sock);
2012-09-22 21:40:46 -07:00
#endif
}
2012-10-02 17:39:13 -07:00
inline socket_t create_client_socket(const char* host, int port)
2012-09-25 20:21:57 -07:00
{
2012-10-02 17:39:13 -07:00
return create_socket(host, port,
[](socket_t sock, struct sockaddr_in& addr) -> socket_t {
2012-09-25 20:21:57 -07:00
2012-10-02 17:39:13 -07:00
if (connect(sock, (struct sockaddr*)&addr, sizeof(struct sockaddr_in))) {
return -1;
}
2012-09-25 20:21:57 -07:00
2012-10-02 17:39:13 -07:00
return sock;
});
}
2012-09-25 20:21:57 -07:00
2012-10-02 17:39:13 -07:00
inline int close_client_socket(socket_t sock)
{
#ifdef _WIN32
return closesocket(sock);
#else
return close(sock);
#endif
}
2012-10-02 19:37:14 -07:00
inline const char* status_message(int status)
{
const char* s = NULL;
switch (status) {
case 400:
s = "Bad Request";
break;
case 404:
s = "Not Found";
break;
default:
status = 500;
s = "Internal Server Error";
break;
}
return s;
}
2012-10-02 17:39:13 -07:00
inline const char* get_header_value(const MultiMap& map, const char* key, const char* def)
{
auto it = map.find(key);
if (it != map.end()) {
return it->second.c_str();
}
return def;
}
inline int get_header_value_int(const MultiMap& map, const char* key, int def)
{
auto it = map.find(key);
if (it != map.end()) {
return std::atoi(it->second.c_str());
}
return def;
}
inline void read_headers(FILE* fp, MultiMap& headers)
{
static std::regex re("(.+?): (.+?)\r\n");
const size_t BUFSIZ_HEADER = 2048;
char buf[BUFSIZ_HEADER];
while (fgets(buf, BUFSIZ_HEADER, fp) && strcmp(buf, "\r\n")) {
std::cmatch m;
if (std::regex_match(buf, m, re)) {
auto key = std::string(m[1]);
auto val = std::string(m[2]);
headers.insert(std::make_pair(key, val));
}
2012-09-25 20:21:57 -07:00
}
2012-10-02 17:39:13 -07:00
}
inline std::string dump_headers(const MultiMap& headers)
{
std::string s;
char buf[BUFSIZ];
2012-09-25 20:21:57 -07:00
2012-10-02 17:39:13 -07:00
for (auto it = headers.begin(); it != headers.end(); ++it) {
2012-09-25 20:21:57 -07:00
const auto& x = *it;
2012-09-26 08:49:04 -07:00
snprintf(buf, sizeof(buf), "%s: %s\n", x.first.c_str(), x.second.c_str());
2012-09-25 20:21:57 -07:00
s += buf;
}
return s;
}
2012-10-02 17:39:13 -07:00
// HTTP server implementation
inline void Response::set_redirect(const char* url)
2012-09-25 19:09:56 -07:00
{
headers.insert(std::make_pair("Location", url));
status = 302;
}
2012-10-02 17:39:13 -07:00
inline void Response::set_content(const std::string& s, const char* content_type)
2012-09-25 19:09:56 -07:00
{
body = s;
headers.insert(std::make_pair("Content-Type", content_type));
}
2012-10-02 17:39:13 -07:00
inline Server::Server(const char* host, int port)
: host_(host)
2012-09-25 19:09:56 -07:00
, port_(port)
, sock_(-1)
2012-09-22 21:40:46 -07:00
{
#ifdef _WIN32
WSADATA wsaData;
WSAStartup(0x0002, &wsaData);
#endif
}
inline Server::~Server()
{
#ifdef _WIN32
WSACleanup();
#endif
}
inline void Server::get(const char* pattern, Handler handler)
2012-09-22 21:40:46 -07:00
{
2012-09-24 20:13:01 -07:00
get_handlers_.push_back(std::make_pair(pattern, handler));
2012-09-22 21:40:46 -07:00
}
inline void Server::post(const char* pattern, Handler handler)
2012-09-22 21:40:46 -07:00
{
2012-09-24 20:13:01 -07:00
post_handlers_.push_back(std::make_pair(pattern, handler));
2012-09-22 21:40:46 -07:00
}
2012-10-02 19:37:14 -07:00
inline void Server::error(Handler handler)
2012-09-27 17:54:54 -07:00
{
2012-10-02 19:37:14 -07:00
error_handler_ = handler;
2012-09-27 17:54:54 -07:00
}
2012-10-02 17:39:13 -07:00
inline void Server::set_logger(std::function<void (const Connection&)> logger)
{
logger_ = logger;
}
2012-09-25 19:09:56 -07:00
inline bool Server::run()
2012-09-22 21:40:46 -07:00
{
2012-10-02 17:39:13 -07:00
sock_ = create_server_socket(host_.c_str(), port_);
2012-09-22 21:40:46 -07:00
if (sock_ == -1) {
return false;
}
2012-09-27 17:54:54 -07:00
2012-09-22 21:40:46 -07:00
for (;;) {
socket_t fd = accept(sock_, NULL, NULL);
if (fd == -1) {
// The server socket was closed by user.
if (sock_ == -1) {
return true;
}
2012-09-26 18:35:49 -07:00
close_server_socket(sock_);
2012-09-22 21:40:46 -07:00
return false;
}
2012-10-02 17:39:13 -07:00
FILE* fp_read;
FILE* fp_write;
get_flie_pointers(fd, fp_read, fp_write);
process_request(fp_read, fp_write);
fflush(fp_write);
2012-09-26 18:35:49 -07:00
close_server_socket(fd);
2012-09-22 21:40:46 -07:00
}
// NOTREACHED
}
inline void Server::stop()
{
2012-09-26 18:35:49 -07:00
close_server_socket(sock_);
2012-09-22 21:40:46 -07:00
sock_ = -1;
}
2012-10-02 19:37:14 -07:00
inline bool Server::read_request_line(FILE* fp, Request& req)
2012-09-22 21:40:46 -07:00
{
2012-09-24 04:57:09 -07:00
const size_t BUFSIZ_REQUESTLINE = 2048;
char buf[BUFSIZ_REQUESTLINE];
2012-10-02 17:39:13 -07:00
if (!fgets(buf, BUFSIZ_REQUESTLINE, fp)) {
return false;
}
static std::regex re("(GET|POST) ([^?]+)(?:\\?(.+?))? HTTP/1\\.[01]\r\n");
2012-09-24 04:57:09 -07:00
2012-09-22 21:40:46 -07:00
std::cmatch m;
2012-09-24 04:57:09 -07:00
if (std::regex_match(buf, m, re)) {
2012-10-02 19:37:14 -07:00
req.method = std::string(m[1]);
req.url = std::string(m[2]);
2012-09-24 20:13:01 -07:00
// Parse query text
auto len = std::distance(m[3].first, m[3].second);
if (len > 0) {
const auto& pos = m[3];
split(pos.first, pos.second, '&', [&](const char* b, const char* e) {
std::string key;
std::string val;
split(b, e, '=', [&](const char* b, const char* e) {
if (key.empty()) {
key.assign(b, e);
} else {
val.assign(b, e);
}
});
2012-10-02 19:37:14 -07:00
req.query[key] = val;
2012-09-24 20:13:01 -07:00
});
}
2012-09-22 21:40:46 -07:00
return true;
}
2012-09-24 04:57:09 -07:00
2012-09-22 21:40:46 -07:00
return false;
}
2012-10-02 19:37:14 -07:00
inline void Server::write_response(FILE* fp, const Response& res)
2012-09-25 19:09:56 -07:00
{
2012-10-02 19:37:14 -07:00
fprintf(fp, "HTTP/1.0 %d %s\r\n", res.status, status_message(res.status));
fprintf(fp, "Connection: close\r\n");
2012-09-25 19:09:56 -07:00
2012-10-02 19:37:14 -07:00
for (auto it = res.headers.begin(); it != res.headers.end(); ++it) {
2012-09-25 19:09:56 -07:00
if (it->first != "Content-Type" && it->second != "Content-Length") {
fprintf(fp, "%s: %s\r\n", it->first.c_str(), it->second.c_str());
}
}
2012-10-02 19:37:14 -07:00
if (!res.body.empty()) {
auto content_type = get_header_value(res.headers, "Content-Type", "text/plain");
2012-09-25 19:09:56 -07:00
fprintf(fp, "Content-Type: %s\r\n", content_type);
2012-10-02 19:37:14 -07:00
fprintf(fp, "Content-Length: %ld\r\n", res.body.size());
2012-09-25 19:09:56 -07:00
}
fprintf(fp, "\r\n");
2012-09-25 19:09:56 -07:00
2012-10-02 19:37:14 -07:00
if (!res.body.empty()) {
fprintf(fp, "%s", res.body.c_str());
2012-09-22 21:40:46 -07:00
}
}
inline void Server::process_request(FILE* fp_read, FILE* fp_write)
2012-09-22 21:40:46 -07:00
{
Connection c;
2012-09-24 20:13:01 -07:00
if (!read_request_line(fp_read, c.request)) {
2012-09-24 20:13:01 -07:00
return;
}
read_headers(fp_read, c.request.headers);
2012-09-25 20:21:57 -07:00
2012-09-24 20:13:01 -07:00
// Routing
2012-10-02 19:37:14 -07:00
c.response.status = 0;
2012-09-24 20:13:01 -07:00
if (c.request.method == "GET") {
2012-09-24 20:13:01 -07:00
for (auto it = get_handlers_.begin(); it != get_handlers_.end(); ++it) {
const auto& pattern = it->first;
const auto& handler = it->second;
std::smatch m;
if (std::regex_match(c.request.url, m, pattern)) {
2012-09-24 20:13:01 -07:00
for (size_t i = 1; i < m.size(); i++) {
c.request.params.push_back(m[i]);
2012-09-24 20:13:01 -07:00
}
handler(c);
2012-10-02 19:37:14 -07:00
if (!c.response.status) {
c.response.status = 200;
}
2012-09-25 19:09:56 -07:00
break;
2012-09-24 20:13:01 -07:00
}
}
} else if (c.request.method == "POST") {
2012-09-24 20:13:01 -07:00
// TODO: parse body
} else {
c.response.status = 400;
2012-09-24 20:13:01 -07:00
}
2012-10-02 19:37:14 -07:00
if (!c.response.status) {
c.response.status = 404;
}
if (400 <= c.response.status) {
if (error_handler_) {
error_handler_(c);
}
}
2012-10-02 17:39:13 -07:00
if (logger_) {
logger_(c);
}
2012-10-02 19:37:14 -07:00
write_response(fp_write, c.response);
2012-09-22 21:40:46 -07:00
}
2012-10-02 17:39:13 -07:00
// HTTP client implementation
inline Client::Client(const char* host, int port)
: host_(host)
, port_(port)
{
#ifdef _WIN32
WSADATA wsaData;
WSAStartup(0x0002, &wsaData);
#endif
}
inline Client::~Client()
{
#ifdef _WIN32
WSACleanup();
#endif
}
2012-10-02 19:37:14 -07:00
inline bool Client::read_response_line(FILE* fp, Response& res)
2012-10-02 17:39:13 -07:00
{
const size_t BUFSIZ_RESPONSELINE = 2048;
char buf[BUFSIZ_RESPONSELINE];
if (!fgets(buf, BUFSIZ_RESPONSELINE, fp)) {
return false;
}
static std::regex re("HTTP/1\\.[01] (\\d+?) .+\r\n");
std::cmatch m;
if (std::regex_match(buf, m, re)) {
2012-10-02 19:37:14 -07:00
res.status = std::atoi(std::string(m[1]).c_str());
2012-10-02 17:39:13 -07:00
}
return true;
}
2012-10-02 20:24:23 -07:00
inline bool Client::get(const char* url, Response& res)
2012-10-02 17:39:13 -07:00
{
socket_t sock = create_client_socket(host_.c_str(), port_);
if (sock == -1) {
2012-10-02 20:24:23 -07:00
return false;
2012-10-02 17:39:13 -07:00
}
FILE* fp_read;
FILE* fp_write;
get_flie_pointers(sock, fp_read, fp_write);
// Send request
fprintf(fp_write, "GET %s HTTP/1.0\r\n\r\n", url);
fflush(fp_write);
2012-10-02 19:37:14 -07:00
if (!read_response_line(fp_read, res)) {
2012-10-02 20:24:23 -07:00
return false;
2012-10-02 17:39:13 -07:00
}
2012-10-02 19:37:14 -07:00
read_headers(fp_read, res.headers);
2012-10-02 17:39:13 -07:00
// Read content body
2012-10-02 19:37:14 -07:00
auto len = get_header_value_int(res.headers, "Content-Length", 0);
2012-10-02 17:39:13 -07:00
if (len) {
2012-10-02 19:37:14 -07:00
res.body.assign(len, 0);
if (!fgets(&res.body[0], res.body.size() + 1, fp_read)) {
2012-10-02 20:24:23 -07:00
return false;
2012-10-02 17:39:13 -07:00
}
}
close_client_socket(sock);
2012-10-02 20:24:23 -07:00
return res.status == 200;
2012-10-02 17:39:13 -07:00
}
2012-09-27 18:05:36 -07:00
} // namespace httplib
2012-09-22 21:40:46 -07:00
2012-09-25 19:09:56 -07:00
#endif
2012-09-22 21:40:46 -07:00
// vim: et ts=4 sw=4 cin cino={1s ff=unix