diff --git a/gateway/httplib.h b/gateway/httplib.h index 4aeec7e..ee7417c 100644 --- a/gateway/httplib.h +++ b/gateway/httplib.h @@ -1,6 +1,6 @@ // // httplib.h -// +// Copyright (c) 2018 Albert S. All rights reserved. // Copyright (c) 2017 Yuji Hirose. All rights reserved. // MIT License // @@ -59,7 +59,7 @@ typedef int socket_t; #include #include #include -#include +#include #include #include #include @@ -106,7 +106,7 @@ template std::pair make_range_header(uint64_t value, Args... args); typedef std::multimap Params; -typedef std::smatch Match; +typedef boost::smatch Match; typedef std::function Progress; struct MultipartFile { @@ -224,7 +224,7 @@ protected: size_t keep_alive_max_count_; private: - typedef std::vector> Handlers; + typedef std::vector> Handlers; socket_t create_server_socket(const char* host, int port, int socket_flags) const; int bind_internal(const char* host, int port, int socket_flags); @@ -688,9 +688,9 @@ inline void read_file(const std::string& path, std::string& out) inline std::string file_extension(const std::string& path) { - std::smatch m; - auto pat = std::regex("\\.([a-zA-Z0-9]+)$"); - if (std::regex_search(path, m, pat)) { + boost::smatch m; + auto pat = boost::regex("\\.([a-zA-Z0-9]+)$"); + if (boost::regex_search(path, m, pat)) { return m[1].str(); } return std::string(); @@ -772,7 +772,7 @@ inline int get_header_value_int(const Headers& headers, const char* key, int def inline bool read_headers(Stream& strm, Headers& headers) { - static std::regex re(R"((.+?):\s*(.+?)\s*\r\n)"); + static boost::regex re(R"((.+?):\s*(.+?)\s*\r\n)"); const auto bufsiz = 2048; char buf[bufsiz]; @@ -786,8 +786,8 @@ inline bool read_headers(Stream& strm, Headers& headers) if (!strcmp(reader.ptr(), "\r\n")) { break; } - std::cmatch m; - if (std::regex_match(reader.ptr(), m, re)) { + boost::cmatch m; + if (boost::regex_match(reader.ptr(), m, re)) { auto key = std::string(m[1]); auto val = std::string(m[2]); headers.emplace(key, val); @@ -1092,12 +1092,12 @@ inline bool parse_multipart_formdata( static std::string dash = "--"; static std::string crlf = "\r\n"; - static std::regex re_content_type( - "Content-Type: (.*?)", std::regex_constants::icase); + static boost::regex re_content_type( + "Content-Type: (.*?)", boost::regex_constants::icase); - static std::regex re_content_disposition( + static boost::regex re_content_disposition( "Content-Disposition: form-data; name=\"(.*?)\"(?:; filename=\"(.*?)\")?", - std::regex_constants::icase); + boost::regex_constants::icase); auto dash_boundary = dash + boundary; @@ -1127,10 +1127,10 @@ inline bool parse_multipart_formdata( auto header = body.substr(pos, (next_pos - pos)); while (pos != next_pos) { - std::smatch m; - if (std::regex_match(header, m, re_content_type)) { + boost::smatch m; + if (boost::regex_match(header, m, re_content_type)) { file.content_type = m[1]; - } else if (std::regex_match(header, m, re_content_disposition)) { + } else if (boost::regex_match(header, m, re_content_disposition)) { name = m[1]; file.filename = m[2]; } @@ -1462,31 +1462,31 @@ inline Server::~Server() inline Server& Server::Get(const char* pattern, Handler handler) { - get_handlers_.push_back(std::make_pair(std::regex(pattern), handler)); + get_handlers_.push_back(std::make_pair(boost::regex(pattern), handler)); return *this; } inline Server& Server::Post(const char* pattern, Handler handler) { - post_handlers_.push_back(std::make_pair(std::regex(pattern), handler)); + post_handlers_.push_back(std::make_pair(boost::regex(pattern), handler)); return *this; } inline Server& Server::Put(const char* pattern, Handler handler) { - put_handlers_.push_back(std::make_pair(std::regex(pattern), handler)); + put_handlers_.push_back(std::make_pair(boost::regex(pattern), handler)); return *this; } inline Server& Server::Delete(const char* pattern, Handler handler) { - delete_handlers_.push_back(std::make_pair(std::regex(pattern), handler)); + delete_handlers_.push_back(std::make_pair(boost::regex(pattern), handler)); return *this; } inline Server& Server::Options(const char* pattern, Handler handler) { - options_handlers_.push_back(std::make_pair(std::regex(pattern), handler)); + options_handlers_.push_back(std::make_pair(boost::regex(pattern), handler)); return *this; } @@ -1548,10 +1548,10 @@ inline void Server::stop() inline bool Server::parse_request_line(const char* s, Request& req) { - static std::regex re("(GET|HEAD|POST|PUT|DELETE|OPTIONS) (([^?]+)(?:\\?(.+?))?) (HTTP/1\\.[01])\r\n"); + static boost::regex re("(GET|HEAD|POST|PUT|DELETE|OPTIONS) (([^?]+)(?:\\?(.+?))?) (HTTP/1\\.[01])\r\n"); - std::cmatch m; - if (std::regex_match(s, m, re)) { + boost::cmatch m; + if (boost::regex_match(s, m, re)) { req.version = std::string(m[5]); req.method = std::string(m[1]); req.target = std::string(m[2]); @@ -1797,7 +1797,7 @@ inline bool Server::dispatch_request(Request& req, Response& res, Handlers& hand const auto& pattern = x.first; const auto& handler = x.second; - if (std::regex_match(req.path, req.matches, pattern)) { + if (boost::regex_match(req.path, req.matches, pattern)) { handler(req, res); return true; } @@ -1945,10 +1945,10 @@ inline bool Client::read_response_line(Stream& strm, Response& res) return false; } - const static std::regex re("(HTTP/1\\.[01]) (\\d+?) .+\r\n"); + const static boost::regex re("(HTTP/1\\.[01]) (\\d+?) .+\r\n"); - std::cmatch m; - if (std::regex_match(reader.ptr(), m, re)) { + boost::cmatch m; + if (boost::regex_match(reader.ptr(), m, re)) { res.version = std::string(m[1]); res.status = std::stoi(std::string(m[2])); }