Now only calls asio::socket::remote_endpoint() when needed
This commit is contained in:
parent
8c14611102
commit
3f1591b6fa
1 changed files with 20 additions and 31 deletions
|
|
@ -33,6 +33,7 @@ namespace SimpleWeb {
|
||||||
template <class socket_type>
|
template <class socket_type>
|
||||||
class ServerBase {
|
class ServerBase {
|
||||||
protected:
|
protected:
|
||||||
|
class Connection;
|
||||||
class Session;
|
class Session;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
@ -225,21 +226,10 @@ namespace SimpleWeb {
|
||||||
friend class Session;
|
friend class Session;
|
||||||
|
|
||||||
asio::streambuf streambuf;
|
asio::streambuf streambuf;
|
||||||
|
std::weak_ptr<Connection> connection;
|
||||||
|
std::string optimization = std::to_string(0); // TODO: figure out what goes wrong in gcc optimization without this line
|
||||||
|
|
||||||
std::string remote_address;
|
Request(std::size_t max_request_streambuf_size, const std::shared_ptr<Connection> &connection_) noexcept : streambuf(max_request_streambuf_size), connection(connection_), content(streambuf) {}
|
||||||
unsigned short remote_port = 0;
|
|
||||||
|
|
||||||
Request(std::size_t max_request_streambuf_size, std::shared_ptr<asio::ip::tcp::endpoint> remote_endpoint_) noexcept
|
|
||||||
: streambuf(max_request_streambuf_size), content(streambuf), remote_endpoint(std::move(remote_endpoint_)) {
|
|
||||||
try {
|
|
||||||
if(remote_endpoint) {
|
|
||||||
remote_address = remote_endpoint->address().to_string(); // TODO: figure out why this speed ups simple benchmarks
|
|
||||||
remote_port = remote_endpoint->port();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
catch(...) {
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
std::string method, path, query_string, http_version;
|
std::string method, path, query_string, http_version;
|
||||||
|
|
@ -251,17 +241,27 @@ namespace SimpleWeb {
|
||||||
/// The result of the resource regular expression match of the request path.
|
/// The result of the resource regular expression match of the request path.
|
||||||
regex::smatch path_match;
|
regex::smatch path_match;
|
||||||
|
|
||||||
std::shared_ptr<asio::ip::tcp::endpoint> remote_endpoint;
|
|
||||||
|
|
||||||
/// The time point when the request header was fully read.
|
/// The time point when the request header was fully read.
|
||||||
std::chrono::system_clock::time_point header_read_time;
|
std::chrono::system_clock::time_point header_read_time;
|
||||||
|
|
||||||
const std::string &remote_endpoint_address() const noexcept {
|
std::string remote_endpoint_address() const noexcept {
|
||||||
return remote_address;
|
try {
|
||||||
|
if(auto connection = this->connection.lock())
|
||||||
|
return connection->socket->lowest_layer().remote_endpoint().address().to_string();
|
||||||
|
}
|
||||||
|
catch(...) {
|
||||||
|
}
|
||||||
|
return std::string();
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned short remote_endpoint_port() const noexcept {
|
unsigned short remote_endpoint_port() const noexcept {
|
||||||
return remote_port;
|
try {
|
||||||
|
if(auto connection = this->connection.lock())
|
||||||
|
return connection->socket->lowest_layer().remote_endpoint().port();
|
||||||
|
}
|
||||||
|
catch(...) {
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Returns query keys with percent-decoded values.
|
/// Returns query keys with percent-decoded values.
|
||||||
|
|
@ -282,8 +282,6 @@ namespace SimpleWeb {
|
||||||
|
|
||||||
std::unique_ptr<asio::steady_timer> timer;
|
std::unique_ptr<asio::steady_timer> timer;
|
||||||
|
|
||||||
std::shared_ptr<asio::ip::tcp::endpoint> remote_endpoint;
|
|
||||||
|
|
||||||
void close() noexcept {
|
void close() noexcept {
|
||||||
error_code ec;
|
error_code ec;
|
||||||
socket->lowest_layer().shutdown(asio::ip::tcp::socket::shutdown_both, ec);
|
socket->lowest_layer().shutdown(asio::ip::tcp::socket::shutdown_both, ec);
|
||||||
|
|
@ -319,16 +317,7 @@ namespace SimpleWeb {
|
||||||
|
|
||||||
class Session {
|
class Session {
|
||||||
public:
|
public:
|
||||||
Session(std::size_t max_request_streambuf_size, std::shared_ptr<Connection> connection_) noexcept : connection(std::move(connection_)) {
|
Session(std::size_t max_request_streambuf_size, std::shared_ptr<Connection> connection_) noexcept : connection(std::move(connection_)), request(new Request(max_request_streambuf_size, connection)) {}
|
||||||
if(!this->connection->remote_endpoint) {
|
|
||||||
try {
|
|
||||||
this->connection->remote_endpoint = std::make_shared<asio::ip::tcp::endpoint>(this->connection->socket->lowest_layer().remote_endpoint());
|
|
||||||
}
|
|
||||||
catch(...) {
|
|
||||||
}
|
|
||||||
}
|
|
||||||
request = std::shared_ptr<Request>(new Request(max_request_streambuf_size, this->connection->remote_endpoint));
|
|
||||||
}
|
|
||||||
|
|
||||||
std::shared_ptr<Connection> connection;
|
std::shared_ptr<Connection> connection;
|
||||||
std::shared_ptr<Request> request;
|
std::shared_ptr<Request> request;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue