Minor enhancement: move some smart pointers around instead of copying them (#1954)
This commit is contained in:
parent
da7f065a6f
commit
88d06684f2
|
@ -6,6 +6,6 @@ void JsonCtrl::asyncHandleHttpRequest(
|
||||||
{
|
{
|
||||||
Json::Value ret;
|
Json::Value ret;
|
||||||
ret["message"] = "Hello, World!";
|
ret["message"] = "Hello, World!";
|
||||||
auto resp = HttpResponse::newHttpJsonResponse(ret);
|
auto resp = HttpResponse::newHttpJsonResponse(std::move(ret));
|
||||||
callback(resp);
|
callback(resp);
|
||||||
}
|
}
|
||||||
|
|
|
@ -99,8 +99,8 @@ bool HttpRequestParser::processRequestLine(const char *begin, const char *end)
|
||||||
|
|
||||||
HttpRequestImplPtr HttpRequestParser::makeRequestForPool(HttpRequestImpl *ptr)
|
HttpRequestImplPtr HttpRequestParser::makeRequestForPool(HttpRequestImpl *ptr)
|
||||||
{
|
{
|
||||||
std::weak_ptr<HttpRequestParser> weakPtr = shared_from_this();
|
return std::shared_ptr<HttpRequestImpl>(
|
||||||
return std::shared_ptr<HttpRequestImpl>(ptr, [weakPtr](HttpRequestImpl *p) {
|
ptr, [weakPtr = weak_from_this()](HttpRequestImpl *p) {
|
||||||
auto thisPtr = weakPtr.lock();
|
auto thisPtr = weakPtr.lock();
|
||||||
if (thisPtr)
|
if (thisPtr)
|
||||||
{
|
{
|
||||||
|
@ -112,7 +112,8 @@ HttpRequestImplPtr HttpRequestParser::makeRequestForPool(HttpRequestImpl *ptr)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
thisPtr->loop_->queueInLoop([thisPtr, p]() {
|
auto &loop = thisPtr->loop_;
|
||||||
|
loop->queueInLoop([thisPtr = std::move(thisPtr), p]() {
|
||||||
p->reset();
|
p->reset();
|
||||||
thisPtr->requestsPool_.emplace_back(
|
thisPtr->requestsPool_.emplace_back(
|
||||||
thisPtr->makeRequestForPool(p));
|
thisPtr->makeRequestForPool(p));
|
||||||
|
|
|
@ -546,11 +546,12 @@ void HttpServer::httpRequestHandling(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
binderPtr->handleRequest(
|
auto &binderRef = *binderPtr;
|
||||||
|
binderRef.handleRequest(
|
||||||
req,
|
req,
|
||||||
// This is the actual callback being passed to controller
|
// This is the actual callback being passed to controller
|
||||||
[req, binderPtr, callback = std::move(callback)](
|
[req, binderPtr = std::move(binderPtr), callback = std::move(callback)](
|
||||||
const HttpResponsePtr &resp) {
|
const HttpResponsePtr &resp) mutable {
|
||||||
// Check if we need to cache the response
|
// Check if we need to cache the response
|
||||||
if (resp->expiredTime() >= 0 && resp->statusCode() != k404NotFound)
|
if (resp->expiredTime() >= 0 && resp->statusCode() != k404NotFound)
|
||||||
{
|
{
|
||||||
|
@ -562,7 +563,8 @@ void HttpServer::httpRequestHandling(
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
loop->queueInLoop([binderPtr, resp]() {
|
loop->queueInLoop(
|
||||||
|
[binderPtr = std::move(binderPtr), resp]() {
|
||||||
binderPtr->responseCache_.setThreadData(resp);
|
binderPtr->responseCache_.setThreadData(resp);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue