11#include <condition_variable>
13#include "crow/settings.h"
14#include "crow/logging.h"
15#include "crow/utility.h"
16#include "crow/routing.h"
17#include "crow/middleware_context.h"
18#include "crow/http_request.h"
19#include "crow/http_server.h"
20#include "crow/dumb_timer_queue.h"
21#ifdef CROW_ENABLE_COMPRESSION
22#include "crow/compression.h"
25#ifdef CROW_MSVC_WORKAROUND
26#define CROW_ROUTE(app, url) app.route_dynamic(url)
28#define CROW_ROUTE(app, url) app.route<crow::black_magic::get_parameter_tag(url)>(url)
30#define CROW_CATCHALL_ROUTE(app) app.catchall_route()
35 int detail::dumb_timer_queue::tick = 5;
39 using ssl_context_t = boost::asio::ssl::context;
45 template <
typename ... Middlewares>
55 using ssl_server_t =
Server<
Crow, SSLAdaptor, Middlewares...>;
65 template <
typename Adaptor>
68 router_.handle_upgrade(req, res, adaptor);
74 router_.handle(req, res);
80 return router_.new_rule_dynamic(std::move(rule));
84 template <u
int64_t Tag>
86 ->
typename std::result_of<
decltype(&Router::new_rule_tagged<Tag>)(
Router, std::string&&)>::type
88 return router_.new_rule_tagged<Tag>(std::move(rule));
94 return router_.catchall_rule();
103 self_t& signal_add(
int signal_number)
105 signals_.push_back(signal_number);
119 detail::dumb_timer_queue::tick =
timeout;
140 return concurrency(std::thread::hardware_concurrency());
163 crow::logger::setLogLevel(level);
168 template <
typename Duration,
typename Func>
170 tick_interval_ = std::chrono::duration_cast<std::chrono::milliseconds>(d);
175#ifdef CROW_ENABLE_COMPRESSION
176 self_t& use_compression(compression::algorithm algorithm)
178 comp_algorithm_ = algorithm;
183 compression::algorithm compression_algorithm()
185 return comp_algorithm_;
200 std::unique_lock<std::mutex> lock(start_mutex_);
201 server_started_ =
true;
202 cv_started_.notify_all();
208#ifndef CROW_DISABLE_STATIC_DIR
209 route<crow::black_magic::get_parameter_tag(CROW_STATIC_ENDPOINT)>(CROW_STATIC_ENDPOINT)
218#ifdef CROW_ENABLE_SSL
221 ssl_server_ = std::move(std::unique_ptr<ssl_server_t>(
new ssl_server_t(
this, bindaddr_, port_, server_name_, &middlewares_, concurrency_, &ssl_context_)));
222 ssl_server_->set_tick_function(tick_interval_, tick_function_);
223 ssl_server_->signal_clear();
224 for (
auto snum : signals_)
226 ssl_server_->signal_add(snum);
234 server_ = std::move(std::unique_ptr<server_t>(
new server_t(
this, bindaddr_, port_, server_name_, &middlewares_, concurrency_,
nullptr)));
235 server_->set_tick_function(tick_interval_, tick_function_);
236 server_->signal_clear();
237 for (
auto snum : signals_)
239 server_->signal_add(snum);
249#ifdef CROW_ENABLE_SSL
267 CROW_LOG_DEBUG <<
"Routing:";
268 router_.debug_print();
272#ifdef CROW_ENABLE_SSL
275 self_t& ssl_file(
const std::string& crt_filename,
const std::string& key_filename)
278 ssl_context_.set_verify_mode(boost::asio::ssl::verify_peer);
279 ssl_context_.set_verify_mode(boost::asio::ssl::verify_client_once);
280 ssl_context_.use_certificate_file(crt_filename, ssl_context_t::pem);
281 ssl_context_.use_private_key_file(key_filename, ssl_context_t::pem);
282 ssl_context_.set_options(
283 boost::asio::ssl::context::default_workarounds
284 | boost::asio::ssl::context::no_sslv2
285 | boost::asio::ssl::context::no_sslv3
291 self_t& ssl_file(
const std::string& pem_filename)
294 ssl_context_.set_verify_mode(boost::asio::ssl::verify_peer);
295 ssl_context_.set_verify_mode(boost::asio::ssl::verify_client_once);
296 ssl_context_.load_verify_file(pem_filename);
297 ssl_context_.set_options(
298 boost::asio::ssl::context::default_workarounds
299 | boost::asio::ssl::context::no_sslv2
300 | boost::asio::ssl::context::no_sslv3
305 self_t& ssl(boost::asio::ssl::context&& ctx)
308 ssl_context_ = std::move(ctx);
313 bool use_ssl_{
false};
314 ssl_context_t ssl_context_{boost::asio::ssl::context::sslv23};
317 template <
typename T,
typename ... Remain>
318 self_t& ssl_file(T&&, Remain&&...)
323 std::is_base_of<T, void>::value,
324 "Define CROW_ENABLE_SSL to enable ssl support.");
328 template <
typename T>
334 std::is_base_of<T, void>::value,
335 "Define CROW_ENABLE_SSL to enable ssl support.");
341 using context_t = detail::context<Middlewares...>;
342 template <
typename T>
343 typename T::context& get_context(
const request& req)
345 static_assert(black_magic::contains<T, Middlewares...>::value,
"App doesn't have the specified middleware type.");
346 auto& ctx = *
reinterpret_cast<context_t*
>(req.middleware_context);
347 return ctx.template get<T>();
350 template <
typename T>
353 return utility::get_element_by_type<T, Middlewares...>(middlewares_);
359 std::unique_lock<std::mutex> lock(start_mutex_);
362 cv_started_.wait(lock);
367 uint16_t concurrency_ = 1;
368 std::string server_name_ =
"Crow/0.3";
369 std::string bindaddr_ =
"0.0.0.0";
372#ifdef CROW_ENABLE_COMPRESSION
373 compression::algorithm comp_algorithm_;
376 std::chrono::milliseconds tick_interval_;
377 std::function<void()> tick_function_;
379 std::tuple<Middlewares...> middlewares_;
381#ifdef CROW_ENABLE_SSL
382 std::unique_ptr<ssl_server_t> ssl_server_;
384 std::unique_ptr<server_t> server_;
386 std::vector<int> signals_{SIGINT, SIGTERM};
388 bool server_started_{
false};
389 std::condition_variable cv_started_;
390 std::mutex start_mutex_;
392 template <
typename ... Middlewares>
393 using App = Crow<Middlewares...>;
394 using SimpleApp = Crow<>;
Definition: routing.h:276
The main server application.
Definition: app.h:47
void stop()
Stop the server.
Definition: app.h:247
void run()
Run the server.
Definition: app.h:206
self_t & timeout(std::uint8_t timeout)
Set the connection timeout in seconds (default is 5)
Definition: app.h:117
self_t & loglevel(crow::LogLevel level)
Set the server's log level.
Definition: app.h:161
Crow self_t
This crow application.
Definition: app.h:50
Server< Crow, SocketAdaptor, Middlewares... > server_t
The HTTP server.
Definition: app.h:52
void wait_for_server_start()
Wait until the server has properly started.
Definition: app.h:357
self_t & server_name(std::string server_name)
Set the server name (default Crow/0.3)
Definition: app.h:124
void notify_server_start()
Notify anything using wait_for_server_start() to proceed.
Definition: app.h:198
void handle_upgrade(const request &req, response &res, Adaptor &&adaptor)
Process an Upgrade request.
Definition: app.h:66
self_t & multithreaded()
Run the server on multiple threads using all available threads.
Definition: app.h:138
self_t & tick(Duration d, Func f)
Set a custom duration and function to run on every tick.
Definition: app.h:169
DynamicRule & route_dynamic(std::string &&rule)
Create a dynamic route using a rule (Use CROW_ROUTE instead)
Definition: app.h:78
self_t & port(std::uint16_t port)
Set the port that Crow will handle requests on.
Definition: app.h:110
void handle(const request &req, response &res)
Process the request and generate a response for it.
Definition: app.h:72
self_t & bindaddr(std::string bindaddr)
The IP address that Crow will handle requests on (default is 0.0.0.0)
Definition: app.h:131
void validate()
A wrapper for validate() in the router.
Definition: app.h:192
CatchallRule & catchall_route()
Create a route for any requests without a proper route (Use CROW_CATCHALL_ROUTE instead)
Definition: app.h:92
self_t & concurrency(std::uint16_t concurrency)
Run the server on multiple threads using a specific number.
Definition: app.h:144
auto route(std::string &&rule) -> typename std::result_of< decltype(&Router::new_rule_tagged< Tag >)(Router, std::string &&)>::type
Create a route using a rule (Use CROW_ROUTE instead)
Definition: app.h:85
A rule that can change its parameters during runtime.
Definition: routing.h:484
Handles matching requests to existing rules and upgrade requests.
Definition: routing.h:1035
Definition: http_server.h:27
A wrapper for the asio::ip::tcp::socket and asio::ssl::stream.
Definition: socket_adaptors.h:19
An HTTP request.
Definition: http_request.h:27
HTTP response.
Definition: http_response.h:24
void set_static_file_info(std::string path)
Return a static file as the response body.
Definition: http_response.h:199
void end()
Set the response completion flag and call the handler (to send the response).
Definition: http_response.h:151