| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309 |
- //
- // httpsvrkit.h
- //
- // Copyright (c) 2012 Yuji Hirose. All rights reserved.
- // The Boost Software License 1.0
- //
- #ifdef _WIN32
- //#define _CRT_SECURE_NO_WARNINGS
- #define _CRT_NONSTDC_NO_DEPRECATE
- #include <fcntl.h>
- #include <io.h>
- #include <winsock2.h>
- typedef SOCKET socket_t;
- #else
- #include <pthread.h>
- #include <unistd.h>
- #include <netdb.h>
- #include <netinet/in.h>
- #include <arpa/inet.h>
- #include <sys/socket.h>
- typedef int socket_t;
- #endif
- #include <functional>
- #include <map>
- #include <regex>
- #include <string>
- #include <assert.h>
- namespace httpsvrkit
- {
- typedef std::map<std::string, std::string> Map;
- typedef std::multimap<std::string, std::string> MultiMap;
- // HTTP request
- struct Request {
- Map headers;
- std::string body;
- std::string pattern;
- Map params;
- };
- // HTTP response
- struct Response {
- MultiMap headers;
- std::string body;
- };
- struct Context {
- const Request request;
- Response response;
- };
- // HTTP server
- class Server {
- public:
- typedef std::function<void (Context& context)> Handler;
- Server();
- ~Server();
- void get(const char* pattern, Handler handler);
- void post(const char* pattern, Handler handler);
- bool run(const char* ipaddr_or_hostname, int port);
- void stop();
- private:
- void process_request(FILE* fp_read, FILE* fp_write);
- socket_t sock_;
- std::multimap<std::string, Handler> handlers_;
- };
- // Implementation
- inline socket_t create_server_socket(const const char* ipaddr_or_hostname, int port)
- {
- // Create a server socket
- socket_t sock = socket(AF_INET, SOCK_STREAM, 0);
- if (sock == -1) {
- return -1;
- }
- // Make 'reuse address' option available
- int opt = 1;
- setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (char*)&opt, sizeof(opt));
- // Get a host entry info
- struct hostent* hp;
- if (!(hp = gethostbyname(ipaddr_or_hostname))) {
- return -1;
- }
- // 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);
- addr.sin_family = AF_INET;
- addr.sin_port = htons(port);
- if (::bind(sock, (struct sockaddr*)&addr, sizeof(addr)) != 0) {
- puts("(error)\n");
- return -1;
- }
- // Listen through 5 channels
- if (listen(sock, 5) != 0) {
- return -1;
- }
- return sock;
- }
- inline void close_socket(socket_t sock)
- {
- #ifdef _WIN32
- closesocket(sock);
- #else
- shutdown(sock, SHUT_RDWR);
- close(sock);
- #endif
- }
- inline Server::Server()
- : sock_(-1)
- {
- #ifdef _WIN32
- WSADATA wsaData;
- WSAStartup(0x0002, &wsaData);
- #ifndef SO_SYNCHRONOUS_NONALERT
- #define SO_SYNCHRONOUS_NONALERT 0x20;
- #endif
- #ifndef SO_OPENTYPE
- #define SO_OPENTYPE 0x7008
- #endif
- int opt = SO_SYNCHRONOUS_NONALERT;
- setsockopt(INVALID_SOCKET, SOL_SOCKET, SO_OPENTYPE, (char*)&opt, sizeof(opt));
- #endif
- }
- inline Server::~Server()
- {
- #ifdef _WIN32
- WSACleanup();
- #endif
- }
- inline void Server::get(const char* pattern, Handler handler)
- {
- handlers_.insert(std::make_pair(pattern, handler));
- }
- inline void Server::post(const char* pattern, Handler handler)
- {
- handlers_.insert(std::make_pair(pattern, handler));
- }
- inline bool Server::run(const const char*ipaddr_or_hostname, int port)
- {
- sock_ = create_server_socket(ipaddr_or_hostname, port);
- if (sock_ == -1) {
- return false;
- }
- for (;;) {
- socket_t fd = accept(sock_, NULL, NULL);
- if (fd == -1) {
- // The server socket was closed by user.
- if (sock_ == -1) {
- return true;
- }
- close_socket(sock_);
- return false;
- }
- #ifdef _WIN32
- int osfhandle = _open_osfhandle(fd, _O_RDONLY);
- FILE* fp_read = fdopen(osfhandle, "r");
- FILE* fp_write = fdopen(osfhandle, "w");
- #else
- FILE* fp_read = fdopen(fd, "r");
- FILE* fp_write = fdopen(fd, "w");
- #endif
- process_request(fp_read, fp_write);
- fflush(fp_write);
- close_socket(fd);
- }
- // NOTREACHED
- }
- inline void Server::stop()
- {
- close_socket(sock_);
- sock_ = -1;
- }
- inline bool read_request_line(FILE* fp, std::string& method, std::string& url)
- {
- static std::regex re("(GET|POST) (.+) HTTP/1\\.1\r\n");
- const size_t BUFSIZ_REQUESTLINE = 2048;
- char buf[BUFSIZ_REQUESTLINE];
- fgets(buf, BUFSIZ_REQUESTLINE, fp);
- std::cmatch m;
- if (std::regex_match(buf, m, re)) {
- method = std::string(m[1]);
- url = std::string(m[2]);
- return true;
- }
- return false;
- }
- inline void read_headers(FILE* fp, Map& 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[key] = val;
- }
- }
- }
- inline void write_plain_text(FILE* fp, const char* s)
- {
- fprintf(fp, "HTTP/1.0 200 OK\r\n");
- fprintf(fp, "Content-type: text/plain\r\n");
- fprintf(fp, "Connection: close\r\n");
- fprintf(fp, "\r\n");
- fprintf(fp, "%s", s);
- }
- inline void write_error(FILE* fp, int code)
- {
- const char* msg = NULL;
- switch (code) {
- case 400:
- msg = "Bad Request";
- break;
- case 404:
- msg = "Not Found";
- break;
- default:
- code = 500;
- msg = "Internal Server Error";
- break;
- }
- assert(msg);
- fprintf(fp, "HTTP/1.0 %d %s\r\n", code, msg);
- fprintf(fp, "Content-type: text/plain\r\n");
- fprintf(fp, "Connection: close\r\n");
- fprintf(fp, "\r\n");
- fprintf(fp, "Status: %d\r\n", code);
- }
- inline void Server::process_request(FILE* fp_read, FILE* fp_write)
- {
- // Read and parse request line
- std::string method, url;
- if (!read_request_line(fp_read, method, url)) {
- write_error(fp_write, 400);
- return;
- }
- // Read headers
- Map headers;
- read_headers(fp_read, headers);
- // Write content
- char buf[BUFSIZ];
- std::string content;
- sprintf(buf, "Method: %s, URL: %s\n", method.c_str(), url.c_str());
- content += buf;
- //for (const auto& x : headers) {
- for (auto it = headers.begin(); it != headers.end(); ++it) {
- const auto& x = *it;
- sprintf(buf, "%s: %s\n", x.first.c_str(), x.second.c_str());
- content += buf;
- }
- write_plain_text(fp_write, content.c_str());
- }
- } // namespace httpsvrkit
- // vim: et ts=4 sw=4 cin cino={1s ff=unix
|